Quellcode durchsuchen

Ensure 16B stack alignment for x86

Gary Guo vor 1 Jahr
Ursprung
Commit
73c9fbf66e
1 geänderte Dateien mit 6 neuen und 6 gelöschten Zeilen
  1. 6 6
      src/unwinder/arch/x86.rs

+ 6 - 6
src/unwinder/arch/x86.rs

@@ -61,14 +61,14 @@ pub extern "C-unwind" fn save_context(f: extern "C" fn(&mut Context, *mut ()), p
     unsafe {
         asm!(
             "
-            sub esp, 44
+            sub esp, 52
 
             mov [esp + 4], ecx
             mov [esp + 8], edx
             mov [esp + 12], ebx
 
             /* Adjust the stack to account for the return address */
-            lea eax, [esp + 48]
+            lea eax, [esp + 56]
             mov [esp + 16], eax
 
             mov [esp + 20], ebp
@@ -76,19 +76,19 @@ pub extern "C-unwind" fn save_context(f: extern "C" fn(&mut Context, *mut ()), p
             mov [esp + 28], edi
 
             /* Return address */
-            mov eax, [esp + 44]
+            mov eax, [esp + 52]
             mov [esp + 32], eax
 
             stmxcsr [esp + 36]
             fnstcw [esp + 40]
 
-            mov eax, [esp + 52]
+            mov eax, [esp + 60]
             mov ecx, esp
             push eax
             push ecx
-            call [esp + 56]
+            call [esp + 64]
 
-            add esp, 52
+            add esp, 60
             ret
             ",
             options(noreturn)