Use rsp instead of esp to save 64-bit stack pointer.
Signed-off-by: Elvin Li <elvin.li@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14812 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -146,8 +146,8 @@ L_64Eip: .space 4
|
||||
L_SavedCs: .space 2
|
||||
L_64BitCode:
|
||||
.byte 0x90
|
||||
.byte 0x67,0xbc # mov esp, imm32
|
||||
L_SavedSp: .space 4 # restore stack
|
||||
.byte 0x48,0xbc # mov rsp, imm64
|
||||
L_SavedSp: .space 8 # restore stack
|
||||
nop
|
||||
ret
|
||||
|
||||
@@ -307,7 +307,7 @@ ASM_PFX(InternalAsmThunk16):
|
||||
pushq %r8
|
||||
movl %cs, %r8d
|
||||
movw %r8w, (L_SavedCs - L_SavedCr4)(%rcx)
|
||||
movl %esp, (L_SavedSp - L_SavedCr4)(%rcx)
|
||||
movq %rsp, (L_SavedSp - L_SavedCr4)(%rcx)
|
||||
.byte 0xff, 0x69 # jmp (_EntryPoint - L_SavedCr4)(%rcx)
|
||||
.set Ltemp1, _EntryPoint - L_SavedCr4
|
||||
.byte Ltemp1
|
||||
|
Reference in New Issue
Block a user