Differences From Artifact [d964627f1b]:
- File src/forwarding/forwarding-arm64-elf.S — part of check-in [d73a388eca] at 2024-02-24 21:08:39 on branch 1.0 — Add bti instructions (user: js, size: 2593) [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...]
︙ | ︙ | |||
20 21 22 23 24 25 26 | .globl OFForward .globl OFForward_stret .section .text OFForward: OFForward_stret: #ifdef HAVE_BTI | | | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | .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 */ |
︙ | ︙ |