]> git.proxmox.com Git - mirror_edk2.git/blame - EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/x86FxSave.c
Add in the 1st version of ECP.
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Library / EdkIIGlueLib / Library / BaseLib / x86FxSave.c
CommitLineData
3eb9473e 1/*++\r
2\r
3Copyright (c) 2004 - 2006, Intel Corporation \r
4All rights reserved. This program and the accompanying materials \r
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 x86FxSave.c\r
16 \r
17Abstract: \r
18\r
19 IA-32/x64 specific functions.\r
20\r
21--*/\r
22\r
23#include "BaseLibInternal.h"\r
24\r
25/**\r
26 Save the current floating point/SSE/SSE2 context to a buffer.\r
27\r
28 Saves the current floating point/SSE/SSE2 state to the buffer specified by\r
29 Buffer. Buffer must be aligned on a 16-byte boundary. This function is only\r
30 available on IA-32 and X64.\r
31\r
32 If Buffer is NULL, then ASSERT().\r
33 If Buffer is not aligned on a 16-byte boundary, then ASSERT().\r
34\r
35 @param Buffer Pointer to a buffer to save the floating point/SSE/SSE2 context.\r
36\r
37**/\r
38VOID\r
39EFIAPI\r
40AsmFxSave (\r
41 OUT IA32_FX_BUFFER *Buffer\r
42 )\r
43{\r
44 ASSERT (Buffer != NULL);\r
45 ASSERT (((UINTN)Buffer & 0xf) == 0);\r
46\r
47 InternalX86FxSave (Buffer);\r
48\r
49 //\r
50 // Mark one flag at end of Buffer, it will be check by AsmFxRestor()\r
51 //\r
52 *(UINT32 *) (&Buffer[sizeof (IA32_FX_BUFFER) - 4]) = 0xAA5555AA;\r
53}\r