]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/Ebc/SetJumpLongJump.c
remove unnecessary comments introduced by tools from MdePkg. The regular express...
[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 <BaseLibInternals.h>
16
17 /**
18 Worker function that checks ASSERT condition for JumpBuffer
19
20 Checks ASSERT condition for JumpBuffer.
21
22 If JumpBuffer is NULL, then ASSERT().
23 For IPF CPUs, if JumpBuffer is not aligned on a 16-byte boundary, then ASSERT().
24
25 @param JumpBuffer A pointer to CPU context buffer.
26
27 **/
28 VOID
29 EFIAPI
30 InternalAssertJumpBuffer (
31 IN BASE_LIBRARY_JUMP_BUFFER *JumpBuffer
32 );
33
34 /**
35 Saves the current CPU context that can be restored with a call to LongJump() and returns 0.
36
37 Saves the current CPU context in the buffer specified by JumpBuffer and returns 0. The initial
38 call to SetJump() must always return 0. Subsequent calls to LongJump() cause a non-zero
39 value to be returned by SetJump().
40
41 If JumpBuffer is NULL, then ASSERT().
42 For IPF CPUs, if JumpBuffer is not aligned on a 16-byte boundary, then ASSERT().
43
44 @param JumpBuffer A pointer to CPU context buffer.
45
46 **/
47 UINTN
48 EFIAPI
49 SetJump (
50 IN BASE_LIBRARY_JUMP_BUFFER *JumpBuffer
51 )
52 {
53 InternalAssertJumpBuffer (JumpBuffer);
54 return 0;
55 }
56
57 /**
58 Restores the CPU context that was saved with SetJump().
59
60 Restores the CPU context from the buffer specified by JumpBuffer.
61 This function never returns to the caller.
62 Instead is resumes execution based on the state of JumpBuffer.
63
64 @param JumpBuffer A pointer to CPU context buffer.
65 @param Value The value to return when the SetJump() context is restored.
66
67 **/
68 VOID
69 EFIAPI
70 InternalLongJump (
71 IN BASE_LIBRARY_JUMP_BUFFER *JumpBuffer,
72 IN UINTN Value
73 )
74 {
75 //
76 // This function cannot work on EBC
77 //
78 ASSERT (FALSE);
79 }