]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/Ebc/SetJumpLongJump.c
Removed MdePkg usage of ModuleName: in file headers
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ebc / SetJumpLongJump.c
1 /** @file
2 Switch Stack functions.
3
4 Copyright (c) 2006, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14 //
15 // Include common header file for this module.
16 //
17 #include <BaseLibInternals.h>
18
19 /**
20 Worker function that checks ASSERT condition for JumpBuffer
21
22 Checks ASSERT condition for JumpBuffer.
23
24 If JumpBuffer is NULL, then ASSERT().
25 For IPF CPUs, if JumpBuffer is not aligned on a 16-byte boundary, then ASSERT().
26
27 @param JumpBuffer A pointer to CPU context buffer.
28
29 **/
30 VOID
31 InternalAssertJumpBuffer (
32 IN BASE_LIBRARY_JUMP_BUFFER *JumpBuffer
33 );
34
35 /**
36 Saves the current CPU context that can be restored with a call to LongJump() and returns 0.
37
38 Saves the current CPU context in the buffer specified by JumpBuffer and returns 0. The initial
39 call to SetJump() must always return 0. Subsequent calls to LongJump() cause a non-zero
40 value to be returned by SetJump().
41
42 If JumpBuffer is NULL, then ASSERT().
43 For IPF CPUs, if JumpBuffer is not aligned on a 16-byte boundary, then ASSERT().
44
45 @param JumpBuffer A pointer to CPU context buffer.
46
47 **/
48 UINTN
49 EFIAPI
50 SetJump (
51 IN BASE_LIBRARY_JUMP_BUFFER *JumpBuffer
52 )
53 {
54 InternalAssertJumpBuffer (JumpBuffer);
55 return 0;
56 }
57
58 /**
59 Restores the CPU context that was saved with SetJump().
60
61 Restores the CPU context from the buffer specified by JumpBuffer.
62 This function never returns to the caller.
63 Instead is resumes execution based on the state of JumpBuffer.
64
65 @param JumpBuffer A pointer to CPU context buffer.
66 @param Value The value to return when the SetJump() context is restored.
67
68 **/
69 VOID
70 EFIAPI
71 InternalLongJump (
72 IN BASE_LIBRARY_JUMP_BUFFER *JumpBuffer,
73 IN UINTN Value
74 )
75 {
76 //
77 // This function cannot work on EBC
78 //
79 ASSERT (FALSE);
80 }