f865ce8790b25b3de9eb434638e050ad814a44df
2 Processor or Compiler specific defines and types x64 (Intel(r) EM64T, AMD64).
4 Copyright (c) 2006, Intel Corporation
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
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.
13 Module Name: ProcessorBind.h
17 #ifndef __PROCESSOR_BIND_H__
18 #define __PROCESSOR_BIND_H__
21 // Define the processor type so other code can make processor based choices
27 // Make sure we are useing the correct packing rules per EFI specification
35 // Disable warning that make it impossible to compile at /W4
36 // This only works for Microsoft* tools
40 // Disabling bitfield type checking warnings.
42 #pragma warning ( disable : 4214 )
45 // Disabling the unreferenced formal parameter warnings.
47 #pragma warning ( disable : 4100 )
50 // Disable slightly different base types warning as CHAR8 * can not be set
51 // to a constant string.
53 #pragma warning ( disable : 4057 )
56 // ASSERT(FALSE) or while (TRUE) are legal constructes so supress this warning
58 #pragma warning ( disable : 4127 )
64 #if (__STDC_VERSION__ < 199901L)
66 // No ANSI C 2000 stdint.h integer width declarations, so define equivalents
73 // use Microsoft C complier dependent interger width types
75 typedef unsigned __int64 UINT64
;
76 typedef __int64 INT64
;
77 typedef unsigned __int32 UINT32
;
78 typedef __int32 INT32
;
79 typedef unsigned short UINT16
;
80 typedef unsigned short CHAR16
;
82 typedef unsigned char BOOLEAN
;
83 typedef unsigned char UINT8
;
89 // P64 - is Intel Itanium(TM) speak for pointers being 64-bit and longs and ints
92 typedef unsigned long long UINT64
;
93 typedef long long INT64
;
94 typedef unsigned int UINT32
;
96 typedef unsigned short CHAR16
;
97 typedef unsigned short UINT16
;
99 typedef unsigned char BOOLEAN
;
100 typedef unsigned char UINT8
;
105 // Assume LP64 - longs and pointers are 64-bit. Ints are 32-bit.
107 typedef unsigned long UINT64
;
109 typedef unsigned int UINT32
;
111 typedef unsigned short UINT16
;
112 typedef unsigned short CHAR16
;
114 typedef unsigned char BOOLEAN
;
115 typedef unsigned char UINT8
;
121 #define UINT8_MAX 0xff
125 // Use ANSI C 2000 stdint.h integer width declarations
128 typedef uint8_t BOOLEAN
;
130 typedef uint8_t UINT8
;
131 typedef int16_t INT16
;
132 typedef uint16_t UINT16
;
133 typedef int32_t INT32
;
134 typedef uint32_t UINT32
;
135 typedef int64_t INT64
;
136 typedef uint64_t UINT64
;
138 typedef uint16_t CHAR16
;
142 typedef UINT64 UINTN
;
147 // Processor specific defines
149 #define MAX_BIT 0x8000000000000000
150 #define MAX_2_BITS 0xC000000000000000
153 // Maximum legal Itanium-based address
155 #define MAX_ADDRESS 0xFFFFFFFFFFFFFFFF
158 // Modifier to ensure that all protocol member functions and EFI intrinsics
159 // use the correct C calling convention. All protocol member functions and
160 // EFI intrinsics are required to modify thier member functions with EFIAPI.
164 /// Define the standard calling convention reguardless of optimization level.
165 /// __cdecl is Microsoft* specific C extension.
167 #define EFIAPI __cdecl
170 /// Define the standard calling convention reguardless of optimization level.
171 /// efidecl is an extension to GCC that supports the differnece between x64
172 /// GCC ABI and x64 Microsoft* ABI. EFI is closer to the Microsoft* ABI and
173 /// EFIAPI makes sure the right ABI is used for public interfaces.
174 /// eficecl is a work in progress and we do not yet have the compiler
182 // The Microsoft* C compiler can removed references to unreferenced data items
183 // if the /OPT:REF linker option is used. We defined a macro as this is a
184 // a non standard extension
187 #define GLOBAL_REMOVE_IF_UNREFERENCED __declspec(selectany)
189 #define GLOBAL_REMOVE_IF_UNREFERENCED