959ccb23 |
1 | /** @file\r |
2 | Processor or Compiler specific defines and types for x64.\r |
3 | \r |
4 | Copyright (c) 2006, Intel Corporation \r |
5 | All rights reserved. This program and the accompanying materials \r |
6 | are licensed and made available under the terms and conditions of the BSD License \r |
7 | which accompanies this distribution. The full text of the license may be found at \r |
8 | http://opensource.org/licenses/bsd-license.php \r |
9 | \r |
10 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r |
11 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r |
12 | \r |
959ccb23 |
13 | **/\r |
14 | \r |
15 | #ifndef __PROCESSOR_BIND_H__\r |
16 | #define __PROCESSOR_BIND_H__\r |
17 | \r |
18 | //\r |
19 | // Define the processor type so other code can make processor based choices\r |
20 | //\r |
21 | #define MDE_CPU_IA32\r |
22 | \r |
23 | //\r |
24 | // Make sure we are useing the correct packing rules per EFI specification\r |
25 | //\r |
26 | #ifndef __GNUC__\r |
27 | #pragma pack()\r |
28 | #endif\r |
29 | \r |
30 | #if _MSC_EXTENSIONS\r |
31 | \r |
32 | //\r |
33 | // Disable warning that make it impossible to compile at /W4\r |
34 | // This only works for Microsoft* tools\r |
35 | //\r |
36 | \r |
37 | //\r |
38 | // Disabling bitfield type checking warnings.\r |
39 | //\r |
40 | #pragma warning ( disable : 4214 )\r |
41 | \r |
42 | //\r |
43 | // Disabling the unreferenced formal parameter warnings.\r |
44 | //\r |
45 | #pragma warning ( disable : 4100 )\r |
46 | \r |
47 | //\r |
48 | // Disable slightly different base types warning as CHAR8 * can not be set\r |
49 | // to a constant string.\r |
50 | //\r |
51 | #pragma warning ( disable : 4057 )\r |
52 | \r |
53 | //\r |
54 | // ASSERT(FALSE) or while (TRUE) are legal constructes so supress this warning\r |
55 | //\r |
56 | #pragma warning ( disable : 4127 )\r |
57 | \r |
58 | //\r |
59 | // This warning is caused by functions defined but not used. For precompiled header only.\r |
60 | //\r |
61 | #pragma warning ( disable : 4505 )\r |
62 | \r |
63 | //\r |
64 | // This warning is caused by empty (after preprocessing) souce file. For precompiled header only.\r |
65 | //\r |
66 | #pragma warning ( disable : 4206 )\r |
67 | \r |
68 | #endif\r |
69 | \r |
70 | \r |
71 | #if !defined(__GNUC__) && (__STDC_VERSION__ < 199901L)\r |
72 | //\r |
73 | // No ANSI C 2000 stdint.h integer width declarations, so define equivalents\r |
74 | //\r |
75 | \r |
76 | #if _MSC_EXTENSIONS \r |
77 | \r |
78 | //\r |
79 | // use Microsoft* C complier dependent interger width types \r |
80 | //\r |
81 | typedef unsigned __int64 UINT64;\r |
82 | typedef __int64 INT64;\r |
83 | typedef unsigned __int32 UINT32;\r |
84 | typedef __int32 INT32;\r |
85 | typedef unsigned short UINT16;\r |
86 | typedef unsigned short CHAR16;\r |
87 | typedef short INT16;\r |
88 | typedef unsigned char BOOLEAN;\r |
89 | typedef unsigned char UINT8;\r |
90 | typedef char CHAR8;\r |
91 | typedef char INT8;\r |
92 | #else\r |
93 | \r |
94 | //\r |
95 | // Assume standard IA-32 alignment. \r |
96 | // Need to check portability of long long\r |
97 | //\r |
98 | typedef unsigned long long UINT64;\r |
99 | typedef long long INT64;\r |
100 | typedef unsigned int UINT32;\r |
101 | typedef int INT32;\r |
102 | typedef unsigned short UINT16;\r |
103 | typedef unsigned short CHAR16;\r |
104 | typedef short INT16;\r |
105 | typedef unsigned char BOOLEAN;\r |
106 | typedef unsigned char UINT8;\r |
107 | typedef char CHAR8;\r |
108 | typedef char INT8;\r |
109 | #endif\r |
110 | \r |
111 | #define UINT8_MAX 0xff\r |
112 | \r |
113 | #else\r |
114 | //\r |
115 | // Use ANSI C 2000 stdint.h integer width declarations\r |
116 | //\r |
117 | #include "stdint.h"\r |
118 | typedef uint8_t BOOLEAN;\r |
119 | typedef int8_t INT8;\r |
120 | typedef uint8_t UINT8;\r |
121 | typedef int16_t INT16;\r |
122 | typedef uint16_t UINT16;\r |
123 | typedef int32_t INT32;\r |
124 | typedef uint32_t UINT32;\r |
125 | typedef int64_t INT64;\r |
126 | typedef uint64_t UINT64;\r |
127 | typedef char CHAR8;\r |
128 | typedef uint16_t CHAR16;\r |
129 | \r |
130 | #endif\r |
131 | \r |
132 | typedef UINT32 UINTN;\r |
133 | typedef INT32 INTN;\r |
134 | \r |
135 | \r |
136 | //\r |
137 | // Processor specific defines\r |
138 | //\r |
139 | #define MAX_BIT 0x80000000\r |
140 | #define MAX_2_BITS 0xC0000000\r |
141 | \r |
142 | //\r |
143 | // Maximum legal IA-32 address\r |
144 | //\r |
145 | #define MAX_ADDRESS 0xFFFFFFFF\r |
146 | \r |
147 | //\r |
148 | // The stack alignment required for IA-32\r |
149 | //\r |
150 | #define CPU_STACK_ALIGNMENT sizeof(UINTN)\r |
151 | \r |
152 | //\r |
153 | // Modifier to ensure that all protocol member functions and EFI intrinsics\r |
154 | // use the correct C calling convention. All protocol member functions and\r |
155 | // EFI intrinsics are required to modify thier member functions with EFIAPI.\r |
156 | //\r |
157 | #if _MSC_EXTENSIONS\r |
158 | //\r |
159 | // Microsoft* compiler requires _EFIAPI useage, __cdecl is Microsoft* specific C.\r |
160 | // \r |
161 | #define EFIAPI __cdecl \r |
162 | #endif\r |
163 | \r |
164 | #if __GNUC__\r |
165 | #define EFIAPI __attribute__((cdecl)) \r |
166 | #endif\r |
167 | \r |
168 | //\r |
169 | // The Microsoft* C compiler can removed references to unreferenced data items\r |
170 | // if the /OPT:REF linker option is used. We defined a macro as this is a \r |
171 | // a non standard extension\r |
172 | //\r |
173 | #if _MSC_EXTENSIONS\r |
174 | #define GLOBAL_REMOVE_IF_UNREFERENCED __declspec(selectany)\r |
175 | #else\r |
176 | #define GLOBAL_REMOVE_IF_UNREFERENCED\r |
177 | #endif\r |
178 | \r |
179 | #endif\r |
180 | \r |