@@ -51,23 +51,23 @@ LEAF_ENTRY _ZN12LinearScanMD26SaveAllRegistersEP13BailOutRecord, _TEXT
51
51
mov [ rax + 15 * 8 ], r15
52
52
53
53
// Save all XMM regs (full width)
54
- movups xmmword ptr [ rax + 80h ], xmm0 // [ rax + 16 * 8 + 0 * 16 ] = xmm0
55
- movups xmmword ptr [ rax + 90h ], xmm1 // [ rax + 16 * 8 + 1 * 16 ] = xmm1
56
- movups xmmword ptr [ rax + 0a0h ], xmm2 // ...
57
- // movups xmmword ptr [ rax + 0b0h ], xmm3 // xpl at : WHY this one fails to compile...
54
+ movups xmmword ptr [ rax + 0x80 ], xmm0 // [ rax + 16 * 8 + 0 * 16 ] = xmm0
55
+ movups xmmword ptr [ rax + 0x90 ], xmm1 // [ rax + 16 * 8 + 1 * 16 ] = xmm1
56
+ movups xmmword ptr [ rax + 0x0a0 ], xmm2 // ...
57
+ // movups xmmword ptr [ rax + 0x0b0 ], xmm3 // xpl at : WHY this one fails to compile...
58
58
movups xmmword ptr [ rax + 11 * 16 ], xmm3
59
- movups xmmword ptr [ rax + 0c0h ], xmm4
60
- movups xmmword ptr [ rax + 0d0h ], xmm5
61
- movups xmmword ptr [ rax + 0e0h ], xmm6
62
- movups xmmword ptr [ rax + 0f0h ], xmm7
63
- movups xmmword ptr [ rax + 100h ], xmm8
64
- movups xmmword ptr [ rax + 110h ], xmm9
65
- movups xmmword ptr [ rax + 120h ], xmm10
66
- movups xmmword ptr [ rax + 130h ], xmm11
67
- movups xmmword ptr [ rax + 140h ], xmm12
68
- movups xmmword ptr [ rax + 150h ], xmm13
69
- movups xmmword ptr [ rax + 160h ], xmm14
70
- movups xmmword ptr [ rax + 170h ], xmm15 // [ rax + 16 * 8 + 15 * 16 ] = xmm15
59
+ movups xmmword ptr [ rax + 0x0c0 ], xmm4
60
+ movups xmmword ptr [ rax + 0x0d0 ], xmm5
61
+ movups xmmword ptr [ rax + 0x0e0 ], xmm6
62
+ movups xmmword ptr [ rax + 0x0f0 ], xmm7
63
+ movups xmmword ptr [ rax + 0x100 ], xmm8
64
+ movups xmmword ptr [ rax + 0x110 ], xmm9
65
+ movups xmmword ptr [ rax + 0x120 ], xmm10
66
+ movups xmmword ptr [ rax + 0x130 ], xmm11
67
+ movups xmmword ptr [ rax + 0x140 ], xmm12
68
+ movups xmmword ptr [ rax + 0x150 ], xmm13
69
+ movups xmmword ptr [ rax + 0x160 ], xmm14
70
+ movups xmmword ptr [ rax + 0x170 ], xmm15 // [ rax + 16 * 8 + 15 * 16 ] = xmm15
71
71
72
72
ret
73
73
@@ -91,12 +91,12 @@ NESTED_ENTRY _ZN12LinearScanMD26SaveAllRegistersAndBailOutEP13BailOutRecord, _TE
91
91
92
92
mov [ rsp + 3 * 8 ], rsi
93
93
94
- sub rsp , 28h // use the same as Windows x64 so register locations are the same
94
+ sub rsp , 0x28 // use the same as Windows x64 so register locations are the same
95
95
.cfi_adjust_cfa_offset 0x28
96
96
97
97
call C_FUNC(_ZN12LinearScanMD26SaveAllRegistersEP13BailOutRecord)
98
98
99
- add rsp , 28h // deallocate stack space
99
+ add rsp , 0x28 // deallocate stack space
100
100
.cfi_adjust_cfa_offset - 0x28
101
101
102
102
jmp C_FUNC(_ZN13BailOutRecord7BailOutEPKS_)
@@ -117,12 +117,12 @@ NESTED_ENTRY _ZN12LinearScanMD32SaveAllRegistersAndBranchBailOutEP19BranchBailOu
117
117
// rdi == bailOutRecord
118
118
// rsi == condition
119
119
120
- sub rsp , 28h // use the same as Windows x64 so register locations are the same
120
+ sub rsp , 0x28 // use the same as Windows x64 so register locations are the same
121
121
.cfi_adjust_cfa_offset 0x28
122
122
123
123
call C_FUNC(_ZN12LinearScanMD26SaveAllRegistersEP13BailOutRecord)
124
124
125
- add rsp , 28h // deallocate stack space
125
+ add rsp , 0x28 // deallocate stack space
126
126
.cfi_adjust_cfa_offset - 0x28
127
127
128
128
jmp C_FUNC(_ZN19BranchBailOutRecord7BailOutEPKS_i)
0 commit comments