Differences From Artifact [ae09f773a9]:
- File
src/forwarding/forwarding-amd64-win64.S
— part of check-in
[b7a4e61b88]
at
2023-04-22 20:22:08
on branch trunk
— Rename x86_64 to AMD64
It's just a less awkward name and also what the BSDs use. (user: js, size: 3673) [annotate] [blame] [check-ins using] [more...]
- File src/forwarding/forwarding-x86_64-win64.S — part of check-in [8939cbdb52] at 2023-01-06 09:04:02 on branch trunk — Update copyright (user: js, size: 3673) [annotate] [blame] [check-ins using]
To Artifact [231a1b0400]:
- File
src/forwarding/forwarding-amd64-win64.S
— part of check-in
[de552578e7]
at
2024-02-26 20:32:55
on branch 1.0
— Use <cet.h> and _CET_ENDBR macro
This only uses endbr32/endbr64 when actually needed and emits the
necessary .note.gnu.property. (user: js, size: 3782) [annotate] [blame] [check-ins using] [more...]
1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | - + + + + + + + + + | /* |
| ︙ | |||
91 92 93 94 95 96 97 98 99 100 101 102 103 104 | 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | + + | jmp OFMethodNotFound .def OFForward .scl 2 .type 32 .endef OFForward_stret: _CET_ENDBR pushq %rbp movq %rsp, %rbp /* Save all arguments */ subq $0x90, %rsp /* 16-byte alignment */ movq %rax, -0x28(%rbp) movq %rcx, -0x30(%rbp) |
| ︙ | |||
168 169 170 171 172 173 174 175 176 177 178 179 180 181 | 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 | + + | jmp OFMethodNotFound_stret .def OFForward_stret .scl 2 .type 32 .endef init: _CET_ENDBR leaq module(%rip), %rcx jmp __objc_exec_class .section .ctors, "aw" .quad init .section .rodata |
| ︙ |