2 Processor or Compiler specific defines and types for x64.
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
26 // 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 !defined(__GNUC__) && (__STDC_VERSION__ < 199901L)
66 // No ANSI C 2000 stdint.h integer width declarations, so define equivalents
72 // use Microsoft* C complier dependent interger width types
74 typedef unsigned __int64 UINT64
;
75 typedef __int64 INT64
;
76 typedef unsigned __int32 UINT32
;
77 typedef __int32 INT32
;
78 typedef unsigned short UINT16
;
79 typedef unsigned short CHAR16
;
81 typedef unsigned char BOOLEAN
;
82 typedef unsigned char UINT8
;
88 // Assume standard IA-32 alignment.
89 // BugBug: Need to check portability of long long
91 typedef unsigned long long UINT64
;
92 typedef long long INT64
;
93 typedef unsigned int UINT32
;
95 typedef unsigned short UINT16
;
96 typedef unsigned short CHAR16
;
98 typedef unsigned char BOOLEAN
;
99 typedef unsigned char UINT8
;
104 #define UINT8_MAX 0xff
108 // Use ANSI C 2000 stdint.h integer width declarations
111 typedef uint8_t BOOLEAN
;
113 typedef uint8_t UINT8
;
114 typedef int16_t INT16
;
115 typedef uint16_t UINT16
;
116 typedef int32_t INT32
;
117 typedef uint32_t UINT32
;
118 typedef int64_t INT64
;
119 typedef uint64_t UINT64
;
121 typedef uint16_t CHAR16
;
125 typedef UINT32 UINTN
;
130 // Processor specific defines
132 #define MAX_BIT 0x80000000
133 #define MAX_2_BITS 0xC0000000
136 // Maximum legal IA-32 address
138 #define MAX_ADDRESS 0xFFFFFFFF
141 // Modifier to ensure that all protocol member functions and EFI intrinsics
142 // use the correct C calling convention. All protocol member functions and
143 // EFI intrinsics are required to modify thier member functions with EFIAPI.
147 // Microsoft* compiler requires _EFIAPI useage, __cdecl is Microsoft* specific C.
149 #define EFIAPI __cdecl
153 #define EFIAPI __attribute__((cdecl))
157 // The Microsoft* C compiler can removed references to unreferenced data items
158 // if the /OPT:REF linker option is used. We defined a macro as this is a
159 // a non standard extension
162 #define GLOBAL_REMOVE_IF_UNREFERENCED __declspec(selectany)
164 #define GLOBAL_REMOVE_IF_UNREFERENCED