Differences From Artifact [13eae8467e]:
- File
src/runtime/lookup-asm/lookup-asm-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: 1948) [annotate] [blame] [check-ins using] [more...]
- File src/runtime/lookup-asm/lookup-asm-x86_64-win64.S — part of check-in [8939cbdb52] at 2023-01-06 09:04:02 on branch trunk — Update copyright (user: js, size: 1948) [annotate] [blame] [check-ins using]
To Artifact [df92e91b57]:
- File
src/runtime/lookup-asm/lookup-asm-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: 2044) [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 38 39 40 | - + + + + + + + + + | /* |
| ︙ | |||
71 72 73 74 75 76 77 78 79 80 81 82 83 84 | 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | + + | .scl 2 .type 32 .endef .endm .macro GENERATE_LOOKUP_SUPER name lookup \name: _CET_ENDBR movq %rcx, %r8 movq (%rcx), %rcx testq %rcx, %rcx jz returnNilMethod movq 8(%r8), %r8 movq 56(%r8), %r8 |
| ︙ |