@@ -51,23 +51,23 @@ LEAF_ENTRY _ZN12LinearScanMD26SaveAllRegistersEP13BailOutRecord, _TEXT
5151 mov [ rax + 15 * 8 ], r15
5252
5353 // 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...
5858 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
7171
7272 ret
7373
@@ -91,12 +91,12 @@ NESTED_ENTRY _ZN12LinearScanMD26SaveAllRegistersAndBailOutEP13BailOutRecord, _TE
9191
9292 mov [ rsp + 3 * 8 ], rsi
9393
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
9595 .cfi_adjust_cfa_offset 0x28
9696
9797 call C_FUNC(_ZN12LinearScanMD26SaveAllRegistersEP13BailOutRecord)
9898
99- add rsp , 28h // deallocate stack space
99+ add rsp , 0x28 // deallocate stack space
100100 .cfi_adjust_cfa_offset - 0x28
101101
102102 jmp C_FUNC(_ZN13BailOutRecord7BailOutEPKS_)
@@ -117,12 +117,12 @@ NESTED_ENTRY _ZN12LinearScanMD32SaveAllRegistersAndBranchBailOutEP19BranchBailOu
117117 // rdi == bailOutRecord
118118 // rsi == condition
119119
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
121121 .cfi_adjust_cfa_offset 0x28
122122
123123 call C_FUNC(_ZN12LinearScanMD26SaveAllRegistersEP13BailOutRecord)
124124
125- add rsp , 28h // deallocate stack space
125+ add rsp , 0x28 // deallocate stack space
126126 .cfi_adjust_cfa_offset - 0x28
127127
128128 jmp C_FUNC(_ZN19BranchBailOutRecord7BailOutEPKS_i)
0 commit comments