]> git.proxmox.com Git - mirror_edk2.git/blame - EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ebc/SwitchStack.c
Maintainers.txt: Remove EdkCompatibilityPkg information
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Library / EdkIIGlueLib / Library / BaseLib / Ebc / SwitchStack.c
CommitLineData
3eb9473e 1/*++\r
2\r
2c7e5c2f
HT
3Copyright (c) 2004 - 2006, Intel Corporation. All rights reserved.<BR>\r
4This program and the accompanying materials \r
3eb9473e 5are licensed and made available under the terms and conditions of the BSD License \r
6which accompanies this distribution. The full text of the license may be found at \r
7http://opensource.org/licenses/bsd-license.php \r
8 \r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
11\r
12\r
13Module Name:\r
14\r
15 SwitchStack.c\r
16 \r
17Abstract: \r
18\r
19\r
20--*/\r
21\r
c7f33ca4 22#include "BaseLibInternals.h"\r
3eb9473e 23\r
24/**\r
25 Transfers control to a function starting with a new stack.\r
26\r
27 Transfers control to the function specified by EntryPoint using the new stack\r
28 specified by NewStack and passing in the parameters specified by Context1 and\r
c7f33ca4 29 by Context1 and Context2. Context1 and Context2 are optional and may\r
30 be NULL. The function EntryPoint must never return.\r
31 Marker will be ignored on IA-32, x64, and EBC.\r
32 IPF CPUs expect one additional parameter of type VOID * that specifies\r
33 the new backing store pointer.\r
3eb9473e 34\r
35 If EntryPoint is NULL, then ASSERT().\r
36 If NewStack is NULL, then ASSERT().\r
37\r
38 @param EntryPoint A pointer to function to call with the new stack.\r
39 @param Context1 A pointer to the context to pass into the EntryPoint\r
40 function.\r
41 @param Context2 A pointer to the context to pass into the EntryPoint\r
42 function.\r
43 @param NewStack A pointer to the new stack to use for the EntryPoint\r
44 function.\r
c7f33ca4 45 @param Marker VA_LIST marker for the variable argument list.\r
3eb9473e 46\r
47**/\r
48VOID\r
49EFIAPI\r
50InternalSwitchStack (\r
51 IN SWITCH_STACK_ENTRY_POINT EntryPoint,\r
c7f33ca4 52 IN VOID *Context1, OPTIONAL\r
53 IN VOID *Context2, OPTIONAL\r
54 IN VOID *NewStack,\r
55 IN VA_LIST Marker\r
3eb9473e 56 )\r
c7f33ca4 57\r
3eb9473e 58{\r
59 //\r
60 // This version of this function does not actually change the stack pointer\r
61 // This is to support compilation of CPU types that do not support assemblers\r
62 // such as EBC\r
63 //\r
c7f33ca4 64\r
65 //\r
66 // Stack should be aligned with CPU_STACK_ALIGNMENT\r
67 //\r
68 ASSERT (((UINTN)NewStack & (CPU_STACK_ALIGNMENT - 1)) == 0);\r
69\r
3eb9473e 70 EntryPoint (Context1, Context2);\r
71}\r