2007-06-08 13:31:52 +02:00
|
|
|
/** @file
|
2009-06-04 18:16:15 +02:00
|
|
|
Processor or Compiler specific defines and types x64 (Intel 64, AMD64).
|
2007-06-08 13:31:52 +02:00
|
|
|
|
2010-04-23 17:46:20 +02:00
|
|
|
Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
|
|
|
This program and the accompanying materials
|
2007-06-08 13:31:52 +02:00
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __PROCESSOR_BIND_H__
|
|
|
|
#define __PROCESSOR_BIND_H__
|
|
|
|
|
2008-08-14 06:30:49 +02:00
|
|
|
///
|
|
|
|
/// Define the processor type so other code can make processor based choices
|
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
#define MDE_CPU_X64
|
|
|
|
|
|
|
|
//
|
2008-12-05 03:28:51 +01:00
|
|
|
// Make sure we are using the correct packing rules per EFI specification
|
2007-06-08 13:31:52 +02:00
|
|
|
//
|
2009-02-23 06:51:02 +01:00
|
|
|
#if !defined(__GNUC__)
|
2007-06-08 13:31:52 +02:00
|
|
|
#pragma pack()
|
|
|
|
#endif
|
|
|
|
|
2007-07-06 20:48:06 +02:00
|
|
|
|
2009-02-23 06:51:02 +01:00
|
|
|
#if defined(__INTEL_COMPILER)
|
2008-09-04 01:20:24 +02:00
|
|
|
//
|
|
|
|
// Disable ICC's remark #869: "Parameter" was never referenced warning.
|
|
|
|
// This is legal ANSI C code so we disable the remark that is turned on with -Wall
|
|
|
|
//
|
|
|
|
#pragma warning ( disable : 869 )
|
|
|
|
|
2007-07-06 20:48:06 +02:00
|
|
|
//
|
|
|
|
// Disable ICC's remark #1418: external function definition with no prior declaration.
|
|
|
|
// This is legal ANSI C code so we disable the remark that is turned on with /W4
|
|
|
|
//
|
|
|
|
#pragma warning ( disable : 1418 )
|
|
|
|
|
|
|
|
//
|
|
|
|
// Disable ICC's remark #1419: external declaration in primary source file
|
|
|
|
// This is legal ANSI C code so we disable the remark that is turned on with /W4
|
|
|
|
//
|
|
|
|
#pragma warning ( disable : 1419 )
|
|
|
|
|
2010-01-11 03:29:54 +01:00
|
|
|
//
|
|
|
|
// Disable ICC's remark #593: "Variable" was set but never used.
|
|
|
|
// This is legal ANSI C code so we disable the remark that is turned on with /W4
|
|
|
|
//
|
|
|
|
#pragma warning ( disable : 593 )
|
|
|
|
|
2007-07-06 20:48:06 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2009-02-23 06:51:02 +01:00
|
|
|
#if defined(_MSC_EXTENSIONS)
|
2008-09-04 01:20:24 +02:00
|
|
|
|
2007-06-08 13:31:52 +02:00
|
|
|
//
|
|
|
|
// Disable warning that make it impossible to compile at /W4
|
|
|
|
// This only works for Microsoft* tools
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
// Disabling bitfield type checking warnings.
|
|
|
|
//
|
|
|
|
#pragma warning ( disable : 4214 )
|
|
|
|
|
|
|
|
//
|
|
|
|
// Disabling the unreferenced formal parameter warnings.
|
|
|
|
//
|
|
|
|
#pragma warning ( disable : 4100 )
|
|
|
|
|
|
|
|
//
|
|
|
|
// Disable slightly different base types warning as CHAR8 * can not be set
|
|
|
|
// to a constant string.
|
|
|
|
//
|
|
|
|
#pragma warning ( disable : 4057 )
|
|
|
|
|
|
|
|
//
|
|
|
|
// ASSERT(FALSE) or while (TRUE) are legal constructes so supress this warning
|
|
|
|
//
|
|
|
|
#pragma warning ( disable : 4127 )
|
|
|
|
|
|
|
|
//
|
|
|
|
// This warning is caused by functions defined but not used. For precompiled header only.
|
|
|
|
//
|
|
|
|
#pragma warning ( disable : 4505 )
|
|
|
|
|
|
|
|
//
|
2008-12-05 03:28:51 +01:00
|
|
|
// This warning is caused by empty (after preprocessing) source file. For precompiled header only.
|
2007-06-08 13:31:52 +02:00
|
|
|
//
|
|
|
|
#pragma warning ( disable : 4206 )
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2010-03-11 21:52:54 +01:00
|
|
|
#if defined(_MSC_EXTENSIONS)
|
2007-06-08 13:31:52 +02:00
|
|
|
//
|
2010-03-11 21:52:54 +01:00
|
|
|
// use Microsoft C complier dependent integer width types
|
2007-06-08 13:31:52 +02:00
|
|
|
//
|
2008-12-08 00:10:08 +01:00
|
|
|
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
|
|
|
/// 8-byte unsigned value
|
|
|
|
///
|
|
|
|
typedef unsigned __int64 UINT64;
|
|
|
|
///
|
|
|
|
/// 8-byte signed value
|
|
|
|
///
|
|
|
|
typedef __int64 INT64;
|
|
|
|
///
|
|
|
|
/// 4-byte unsigned value
|
|
|
|
///
|
|
|
|
typedef unsigned __int32 UINT32;
|
|
|
|
///
|
|
|
|
/// 4-byte signed value
|
|
|
|
///
|
|
|
|
typedef __int32 INT32;
|
|
|
|
///
|
|
|
|
/// 2-byte unsigned value
|
|
|
|
///
|
|
|
|
typedef unsigned short UINT16;
|
|
|
|
///
|
|
|
|
/// 2-byte Character. Unless otherwise specified all strings are stored in the
|
|
|
|
/// UTF-16 encoding format as defined by Unicode 2.1 and ISO/IEC 10646 standards.
|
|
|
|
///
|
|
|
|
typedef unsigned short CHAR16;
|
|
|
|
///
|
|
|
|
/// 2-byte signed value
|
|
|
|
///
|
|
|
|
typedef short INT16;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
|
|
|
/// Logical Boolean. 1-byte value containing 0 for FALSE or a 1 for TRUE. Other
|
|
|
|
/// values are undefined.
|
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef unsigned char BOOLEAN;
|
|
|
|
///
|
|
|
|
/// 1-byte unsigned value
|
|
|
|
///
|
|
|
|
typedef unsigned char UINT8;
|
|
|
|
///
|
|
|
|
/// 1-byte Character
|
|
|
|
///
|
|
|
|
typedef char CHAR8;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
|
|
|
/// 1-byte signed value
|
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef char INT8;
|
|
|
|
#else
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
/// 8-byte unsigned value
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef unsigned long long UINT64;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
/// 8-byte signed value
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef long long INT64;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
/// 4-byte unsigned value
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef unsigned int UINT32;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
|
|
|
/// 4-byte signed value
|
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef int INT32;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
/// 2-byte unsigned value
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef unsigned short UINT16;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
/// 2-byte Character. Unless otherwise specified all strings are stored in the
|
|
|
|
/// UTF-16 encoding format as defined by Unicode 2.1 and ISO/IEC 10646 standards.
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef unsigned short CHAR16;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
/// 2-byte signed value
|
|
|
|
///
|
|
|
|
typedef short INT16;
|
|
|
|
///
|
|
|
|
/// Logical Boolean. 1-byte value containing 0 for FALSE or a 1 for TRUE. Other
|
|
|
|
/// values are undefined.
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef unsigned char BOOLEAN;
|
|
|
|
///
|
|
|
|
/// 1-byte unsigned value
|
|
|
|
///
|
|
|
|
typedef unsigned char UINT8;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
|
|
|
/// 1-byte Character
|
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef char CHAR8;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
/// 1-byte signed value
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef char INT8;
|
2007-06-08 13:31:52 +02:00
|
|
|
#endif
|
|
|
|
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
|
|
|
/// Unsigned value of native width. (4 bytes on supported 32-bit processor instructions,
|
|
|
|
/// 8 bytes on supported 64-bit processor instructions)
|
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
typedef UINT64 UINTN;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
|
|
|
/// Signed value of native width. (4 bytes on supported 32-bit processor instructions,
|
|
|
|
/// 8 bytes on supported 64-bit processor instructions)
|
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
typedef INT64 INTN;
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Processor specific defines
|
|
|
|
//
|
2008-12-08 00:10:08 +01:00
|
|
|
|
|
|
|
///
|
|
|
|
/// A value of native width with the highest bit set.
|
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
#define MAX_BIT 0x8000000000000000ULL
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
|
|
|
/// A value of native width with the two highest bits set.
|
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
#define MAX_2_BITS 0xC000000000000000ULL
|
|
|
|
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
|
|
|
/// Maximum legal x64 address
|
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
#define MAX_ADDRESS 0xFFFFFFFFFFFFFFFFULL
|
|
|
|
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
|
|
|
/// The stack alignment required for x64
|
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
#define CPU_STACK_ALIGNMENT 16
|
|
|
|
|
|
|
|
//
|
|
|
|
// Modifier to ensure that all protocol member functions and EFI intrinsics
|
|
|
|
// use the correct C calling convention. All protocol member functions and
|
2008-12-08 00:10:08 +01:00
|
|
|
// EFI intrinsics are required to modify their member functions with EFIAPI.
|
2007-06-08 13:31:52 +02:00
|
|
|
//
|
2009-04-10 22:58:10 +02:00
|
|
|
#ifdef EFIAPI
|
|
|
|
///
|
|
|
|
/// If EFIAPI is already defined, then we use that definition.
|
|
|
|
///
|
|
|
|
#elif defined(_MSC_EXTENSIONS)
|
2007-06-08 13:31:52 +02:00
|
|
|
///
|
2008-12-08 00:10:08 +01:00
|
|
|
/// Microsoft* compiler specific method for EFIAPI calling convension
|
2007-06-08 13:31:52 +02:00
|
|
|
///
|
|
|
|
#define EFIAPI __cdecl
|
2009-02-23 06:51:02 +01:00
|
|
|
#elif defined(__GNUC__)
|
2007-06-08 13:31:52 +02:00
|
|
|
///
|
|
|
|
/// Define the standard calling convention reguardless of optimization level.
|
|
|
|
/// The GCC support assumes a GCC compiler that supports the EFI ABI. The EFI
|
|
|
|
/// ABI is much closer to the x64 Microsoft* ABI than standard x64 (x86-64)
|
|
|
|
/// GCC ABI. Thus a standard x64 (x86-64) GCC compiler can not be used for
|
|
|
|
/// x64. Warning the assembly code in the MDE x64 does not follow the correct
|
|
|
|
/// ABI for the standard x64 (x86-64) GCC.
|
|
|
|
///
|
|
|
|
#define EFIAPI
|
|
|
|
#else
|
|
|
|
///
|
|
|
|
/// The default for a non Microsoft* or GCC compiler is to assume the EFI ABI
|
|
|
|
/// is the standard.
|
|
|
|
///
|
|
|
|
#define EFIAPI
|
|
|
|
#endif
|
|
|
|
|
2009-02-23 06:51:02 +01:00
|
|
|
#if defined(__GNUC__)
|
2009-06-04 20:57:44 +02:00
|
|
|
///
|
|
|
|
/// For GNU assembly code, .global or .globl can declare global symbols.
|
|
|
|
/// Define this macro to unify the usage.
|
|
|
|
///
|
|
|
|
#define ASM_GLOBAL .globl
|
2007-07-24 07:34:35 +02:00
|
|
|
#endif
|
|
|
|
|
2008-12-04 09:35:07 +01:00
|
|
|
/**
|
|
|
|
Return the pointer to the first instruction of a function given a function pointer.
|
|
|
|
On x64 CPU architectures, these two pointer values are the same,
|
|
|
|
so the implementation of this macro is very simple.
|
|
|
|
|
2008-12-05 03:28:51 +01:00
|
|
|
@param FunctionPointer A pointer to a function.
|
2008-12-04 09:35:07 +01:00
|
|
|
|
|
|
|
@return The pointer to the first instruction of a function given a function pointer.
|
2008-12-05 03:28:51 +01:00
|
|
|
|
2008-12-04 09:35:07 +01:00
|
|
|
**/
|
2008-12-06 00:23:59 +01:00
|
|
|
#define FUNCTION_ENTRY_POINT(FunctionPointer) (VOID *)(UINTN)(FunctionPointer)
|
2007-11-27 03:48:59 +01:00
|
|
|
|
2007-06-08 13:31:52 +02:00
|
|
|
#endif
|
|
|
|
|