]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/SwitchStack.c
fix build broken issue
[mirror_edk2.git] / MdePkg / Library / BaseLib / SwitchStack.c
1 /** @file
2 Switch Stack functions.
3
4 Copyright (c) 2006, Intel Corporation<BR>
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 Module Name: SwitchStack.c
14
15 **/
16
17 #include <BaseLibInternals.h>
18
19 /**
20 Transfers control to a function starting with a new stack.
21
22 Transfers control to the function specified by EntryPoint using the new stack
23 specified by NewStack and passing in the parameters specified by Context1 and
24 Context2. Context1 and Context2 are optional and may be NULL. The function
25 EntryPoint must never return.
26
27 If EntryPoint is NULL, then ASSERT().
28 If NewStack is NULL, then ASSERT().
29 For IPF CPUs, if NewStack is not aligned on a 16-byte boundary, then ASSERT().
30
31 @param EntryPoint A pointer to function to call with the new stack.
32 @param Context1 A pointer to the context to pass into the EntryPoint
33 function.
34 @param Context2 A pointer to the context to pass into the EntryPoint
35 function.
36 @param NewStack A pointer to the new stack to use for the EntryPoint
37 function.
38
39 **/
40 VOID
41 EFIAPI
42 SwitchStack (
43 IN SWITCH_STACK_ENTRY_POINT EntryPoint,
44 IN VOID *Context1,
45 IN VOID *Context2,
46 IN VOID *NewStack
47 )
48 {
49 ASSERT (EntryPoint != NULL && NewStack != NULL);
50
51 #ifdef MDE_CPU_IPF
52 ASSERT (((UINTN)NewStack & 0xf) == 0);
53 #endif
54
55 InternalSwitchStack (EntryPoint, Context1, Context2, NewStack);
56 }