summaryrefslogtreecommitdiffstats
path: root/EmulatorPkg/Sec/X64/SwitchRam.asm
blob: 73530bff39c2fd7897a8feee6d22dc070488bfb3 (plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
;------------------------------------------------------------------------------
;
; Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR>
; Portitions copyright (c) 2011, Apple Inc. All rights reserved.
; SPDX-License-Identifier: BSD-2-Clause-Patent
;
;------------------------------------------------------------------------------

EXTERN CopyMem:PROC
EXTERN ZeroMem:PROC

    .code

;------------------------------------------------------------------------------
;  EFI_STATUS
;  EFIAPI
;  SecTemporaryRamSupport (
;    IN CONST EFI_PEI_SERVICES   **PeiServices,         // %rcx
;    IN EFI_PHYSICAL_ADDRESS     TemporaryMemoryBase,   // %rdx
;    IN EFI_PHYSICAL_ADDRESS     PermanentMemoryBase,   // %r8
;    IN UINTN                    CopySize               // %r9
;    )
;------------------------------------------------------------------------------
SecTemporaryRamSupport PROC
  ; Adjust callers %rbp to account for stack move
  sub     rbp, rdx      ; Calc offset of %rbp in Temp Memory
  add     rbp, r8       ; add in permanent base to offset

  push    rbp           ; stack frame is for the debugger
  mov     rbp, rsp

  push    rdx           ; Save TemporaryMemoryBase
  push    r8            ; Save PermanentMemoryBase
  push    r9            ; Save CopySize

  ;
  ; Copy all of temp RAM to permanent memory, including stack
  ;
  ; CopyMem (PermanentMemoryBase, TemporaryMemoryBase, CopySize);
  ;          %rcx,                %rdx,                %r8
  mov     rcx, r8       ; Shift arguments
  mov     r8, r9
  sub     rsp, 028h     ; Allocate register spill area & 16-byte align stack
  call    CopyMem
  ; Temp mem stack now copied to permanent location. %esp still in temp memory
  add     rsp, 028h

  pop     r9            ; CopySize (old stack)
  pop     r8            ; PermanentMemoryBase (old stack)
  pop     rdx           ; TemporaryMemoryBase (old stack)

  mov     rcx, rsp      ; Move to new stack
  sub     rcx, rdx      ; Calc offset of stack in Temp Memory
  add     rcx, r8       ; Calc PermanentMemoryBase address
  mov     rsp, rcx      ; Update stack
  ; Stack now points to permanent memory

  ; ZeroMem (TemporaryMemoryBase /* rcx */, CopySize /* rdx */);
  mov     rcx, rdx
  mov     rdx, r9
  sub     rsp, 028h     ; Allocate register spill area & 16-byte align stack
  call    ZeroMem
  add     rsp, 028h

  ; This data comes off the NEW stack
  pop     rbp
  ret
SecTemporaryRamSupport ENDP

  END