Differences From Artifact [0aaed32730]:
- File src/forwarding/forwarding-arm64-elf.S — part of check-in [da242983b2] at 2023-08-29 22:48:02 on branch trunk — Add .note.GNU-stack on Haiku (user: js, size: 2530) [annotate] [blame] [check-ins using] [more...]
To Artifact [09fe8e02cc]:
- File
src/forwarding/forwarding-arm64-elf.S
— part of check-in
[21244a7e62]
at
2024-02-24 22:30:47
on branch 1.0
— Use `bti c` instead of `bti jc`
The `j` isn't necessary, as tail call eliminations can just use x16/x17,
which allow any type. (user: js, size: 2592) [annotate] [blame] [check-ins using] [more...]
1 | 1 2 3 4 5 6 7 8 9 | - + | /* |
| ︙ | |||
19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | + + + + | .globl OFForward .globl OFForward_stret .section .text OFForward: OFForward_stret: #ifdef HAVE_BTI bti c #endif stp fp, lr, [sp, #-208]! mov fp, sp sub sp, sp, #208 /* Save all arguments, x8 and x19 */ stp x0, x1, [sp] stp x2, x3, [sp, #16] |
| ︙ | |||
99 100 101 102 103 104 105 106 107 108 109 110 111 112 | 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | + + + + | b OFMethodNotFound .type OFForward, %function .size OFForward, .-OFForward .type OFForward_stret, %function .size OFForward_stret, .-OFForward_stret init: #ifdef HAVE_BTI bti c #endif adrp x0, module add x0, x0, :lo12:module b __objc_exec_class .section .init_array, "aw", %init_array .xword init |
| ︙ |