]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/X64/LongJump.asm
Created as wrapper for SwitchStack() to add assert()
[mirror_edk2.git] / MdePkg / Library / BaseLib / X64 / LongJump.asm
1 ;------------------------------------------------------------------------------
2 ;
3 ; Copyright (c) 2006, Intel Corporation
4 ; All rights reserved. This program and the accompanying materials
5 ; are licensed and made available under the terms and conditions of the BSD License
6 ; which accompanies this distribution. The full text of the license may be found at
7 ; http://opensource.org/licenses/bsd-license.php
8 ;
9 ; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 ; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11 ;
12 ; Module Name:
13 ;
14 ; LongJump.Asm
15 ;
16 ; Abstract:
17 ;
18 ; Implementation of LongJump() on x64.
19 ;
20 ;------------------------------------------------------------------------------
21
22 .code
23
24 LongJump PROC
25 mov rbx, [rcx]
26 mov rsp, [rcx + 8]
27 mov rbp, [rcx + 10h]
28 mov rdi, [rcx + 18h]
29 mov rsi, [rcx + 20h]
30 mov r12, [rcx + 28h]
31 mov r13, [rcx + 30h]
32 mov r14, [rcx + 38h]
33 mov r15, [rcx + 40h]
34 mov rax, rdx
35 jmp qword ptr [rcx + 48h]
36 LongJump ENDP
37
38 END