2007-06-08 13:31:52 +02:00
|
|
|
/** @file
|
2009-06-04 18:16:15 +02:00
|
|
|
Processor or Compiler specific defines and types for Intel Itanium(TM) processors.
|
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>
|
2010-03-13 00:19:05 +01:00
|
|
|
This program and the accompanying materials 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.
|
2007-06-08 13:31:52 +02:00
|
|
|
|
2010-03-13 00:19:05 +01:00
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2007-06-08 13:31:52 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __PROCESSOR_BIND_H__
|
|
|
|
#define __PROCESSOR_BIND_H__
|
|
|
|
|
|
|
|
|
2008-08-14 06:30:49 +02:00
|
|
|
///
|
2010-03-13 00:19:05 +01:00
|
|
|
/// Define the processor type so other code can make processor-based choices.
|
2008-08-14 06:30:49 +02:00
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
#define MDE_CPU_IPF
|
|
|
|
|
|
|
|
|
|
|
|
//
|
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
|
|
|
//
|
|
|
|
#pragma pack()
|
|
|
|
|
|
|
|
|
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 12:25:53 +02:00
|
|
|
//
|
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
|
2007-07-06 12:25:53 +02:00
|
|
|
//
|
|
|
|
#pragma warning ( disable : 1418 )
|
|
|
|
|
|
|
|
//
|
2007-07-06 20:48:06 +02:00
|
|
|
// 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
|
2007-07-06 12:25:53 +02:00
|
|
|
//
|
|
|
|
#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 12:25:53 +02:00
|
|
|
#endif
|
|
|
|
|
2007-07-06 20:48:06 +02:00
|
|
|
|
2009-02-23 06:51:02 +01:00
|
|
|
#if defined(_MSC_EXTENSIONS)
|
2007-07-06 20:48:06 +02:00
|
|
|
//
|
|
|
|
// Disable warning that make it impossible to compile at /W4
|
2008-12-08 00:10:08 +01:00
|
|
|
// This only works for Microsoft* tools
|
2007-07-06 20:48:06 +02:00
|
|
|
//
|
|
|
|
|
2007-06-08 13:31:52 +02:00
|
|
|
//
|
|
|
|
// Disabling bitfield type checking warnings.
|
|
|
|
//
|
|
|
|
#pragma warning ( disable : 4214 )
|
|
|
|
|
2008-12-08 00:10:08 +01:00
|
|
|
//
|
2007-06-08 13:31:52 +02:00
|
|
|
// 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 )
|
|
|
|
|
|
|
|
//
|
|
|
|
// Disable warning on conversion from function pointer to a data pointer
|
|
|
|
//
|
|
|
|
#pragma warning ( disable : 4054 )
|
|
|
|
|
|
|
|
//
|
|
|
|
// ASSERT(FALSE) or while (TRUE) are legal constructes so supress this warning
|
|
|
|
//
|
|
|
|
#pragma warning ( disable : 4127 )
|
|
|
|
|
|
|
|
//
|
2007-07-04 11:53:21 +02:00
|
|
|
// Can not cast a function pointer to a data pointer. We need to do this on
|
2009-06-04 18:16:15 +02:00
|
|
|
// Itanium processors to get access to the PLABEL.
|
2007-06-08 13:31:52 +02:00
|
|
|
//
|
|
|
|
#pragma warning ( disable : 4514 )
|
|
|
|
|
|
|
|
//
|
|
|
|
// 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 compiler 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
|
|
|
///
|
2010-03-13 00:19:05 +01:00
|
|
|
/// 8-byte unsigned value.
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
|
|
|
typedef unsigned __int64 UINT64;
|
|
|
|
///
|
2010-03-13 00:19:05 +01:00
|
|
|
/// 8-byte signed value.
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
|
|
|
typedef __int64 INT64;
|
|
|
|
///
|
2010-03-13 00:19:05 +01:00
|
|
|
/// 4-byte unsigned value.
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
|
|
|
typedef unsigned __int32 UINT32;
|
|
|
|
///
|
2010-03-13 00:19:05 +01:00
|
|
|
/// 4-byte signed value.
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
|
|
|
typedef __int32 INT32;
|
|
|
|
///
|
2010-03-13 00:19:05 +01:00
|
|
|
/// 2-byte unsigned value.
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
|
|
|
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;
|
|
|
|
///
|
2010-03-13 00:19:05 +01:00
|
|
|
/// 2-byte signed value.
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
|
|
|
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;
|
|
|
|
///
|
2010-03-13 00:19:05 +01:00
|
|
|
/// 1-byte unsigned value.
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
|
|
|
typedef unsigned char UINT8;
|
|
|
|
///
|
2010-03-13 00:19:05 +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-13 00:19:05 +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;
|
|
|
|
#else
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-13 00:19:05 +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-13 00:19:05 +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-13 00:19:05 +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
|
|
|
///
|
2010-03-13 00:19:05 +01:00
|
|
|
/// 4-byte signed value.
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef int INT32;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-13 00:19:05 +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-13 00:19:05 +01:00
|
|
|
/// 2-byte signed value.
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
|
|
|
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;
|
|
|
|
///
|
2010-03-13 00:19:05 +01:00
|
|
|
/// 1-byte unsigned value.
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
|
|
|
typedef unsigned char UINT8;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-13 00:19:05 +01:00
|
|
|
/// 1-byte Character.
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef char CHAR8;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-13 00:19:05 +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
|
|
|
///
|
2010-03-13 00:19:05 +01:00
|
|
|
/// Unsigned value of native width. (4 bytes on supported 32-bit processor instructions;
|
|
|
|
/// 8 bytes on supported 64-bit processor instructions.)
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
typedef UINT64 UINTN;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-13 00:19:05 +01:00
|
|
|
/// Signed value of native width. (4 bytes on supported 32-bit processor instructions;
|
|
|
|
/// 8 bytes on supported 64-bit processor instructions.)
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
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
|
|
|
///
|
2010-03-13 00:19:05 +01:00
|
|
|
/// The maximum legal Itanium-based address
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
#define MAX_ADDRESS 0xFFFFFFFFFFFFFFFFULL
|
|
|
|
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
|
|
|
/// Per the Itanium Software Conventions and Runtime Architecture Guide,
|
|
|
|
/// section 3.3.4, IPF stack must always be 16-byte aligned.
|
|
|
|
///
|
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-05 03:28:51 +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)
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-13 00:19:05 +01:00
|
|
|
/// Microsoft* compiler-specific method for EFIAPI calling convention.
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2007-07-04 11:53:21 +02:00
|
|
|
#define EFIAPI __cdecl
|
2007-06-08 13:31:52 +02:00
|
|
|
#else
|
2007-07-04 11:53:21 +02:00
|
|
|
#define EFIAPI
|
2007-06-08 13:31:52 +02:00
|
|
|
#endif
|
|
|
|
|
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
|
|
|
|
|
2008-08-14 06:30:49 +02:00
|
|
|
///
|
|
|
|
/// A pointer to a function in IPF points to a plabel.
|
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
typedef struct {
|
|
|
|
UINT64 EntryPoint;
|
|
|
|
UINT64 GP;
|
|
|
|
} EFI_PLABEL;
|
|
|
|
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
|
|
|
/// PAL Call return structure.
|
|
|
|
///
|
2007-06-28 00:53:31 +02:00
|
|
|
typedef struct {
|
|
|
|
UINT64 Status;
|
|
|
|
UINT64 r9;
|
|
|
|
UINT64 r10;
|
|
|
|
UINT64 r11;
|
|
|
|
} PAL_CALL_RETURN;
|
|
|
|
|
2008-12-04 09:35:07 +01:00
|
|
|
/**
|
|
|
|
Return the pointer to the first instruction of a function given a function pointer.
|
2009-06-04 18:16:15 +02:00
|
|
|
For Itanium processors, all function calls are made through a PLABEL, so a pointer to a function
|
2008-12-04 09:35:07 +01:00
|
|
|
is actually a pointer to a PLABEL. The pointer to the first instruction of the function
|
|
|
|
is contained within the PLABEL. This macro may be used to retrieve a pointer to the first
|
|
|
|
instruction of a function independent of the CPU architecture being used. This is very
|
|
|
|
useful when printing function addresses through DEBUG() macros.
|
|
|
|
|
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)(((EFI_PLABEL *)(FunctionPointer))->EntryPoint)
|
2007-11-27 03:48:59 +01:00
|
|
|
|
2007-06-08 13:31:52 +02:00
|
|
|
#endif
|
|
|
|
|