summaryrefslogtreecommitdiff
path: root/OvmfPkg/Library/XenHypercallLib/Ia32/hypercall.nasm
blob: e0fa71bb5ba8a4c19aa09247db29943eeec91257 (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
SECTION .text

; INTN
; EFIAPI
; __XenHypercall2 (
;   IN     VOID *HypercallAddr,
;   IN OUT INTN Arg1,
;   IN OUT INTN Arg2
;   );
global ASM_PFX(__XenHypercall2)
ASM_PFX(__XenHypercall2):
  ; Save only ebx, ecx is supposed to be a scratch register and needs to be
  ; saved by the caller
  push ebx
  ; Copy HypercallAddr to eax
  mov eax, [esp + 8]
  ; Copy Arg1 to the register expected by Xen
  mov ebx, [esp + 12]
  ; Copy Arg2 to the register expected by Xen
  mov ecx, [esp + 16]
  ; Call HypercallAddr
  call eax
  pop ebx
  ret