Commit | Line | Data |
---|---|---|
959ccb23 | 1 | /** @file\r |
d1057d4e | 2 | Processor or Compiler specific defines and types for Ia32 architecture.\r |
959ccb23 | 3 | \r |
3963c4bf | 4 | Copyright (c) 2006, Intel Corporation<BR> \r |
959ccb23 | 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 | |
3566565a | 18 | ///\r |
19 | /// Define the processor type so other code can make processor based choices\r | |
20 | ///\r | |
959ccb23 | 21 | #define MDE_CPU_IA32\r |
22 | \r | |
23 | //\r | |
3963c4bf | 24 | // Make sure we are using the correct packing rules per EFI specification\r |
959ccb23 | 25 | //\r |
26 | #ifndef __GNUC__\r | |
27 | #pragma pack()\r | |
28 | #endif\r | |
29 | \r | |
b483e395 | 30 | #if __INTEL_COMPILER\r |
ed300ce2 | 31 | //\r |
32 | // Disable ICC's remark #869: "Parameter" was never referenced warning.\r | |
33 | // This is legal ANSI C code so we disable the remark that is turned on with -Wall\r | |
34 | //\r | |
35 | #pragma warning ( disable : 869 )\r | |
36 | \r | |
b483e395 A |
37 | //\r |
38 | // Disable ICC's remark #1418: external function definition with no prior declaration.\r | |
39 | // This is legal ANSI C code so we disable the remark that is turned on with /W4\r | |
40 | //\r | |
41 | #pragma warning ( disable : 1418 )\r | |
42 | \r | |
b483e395 A |
43 | //\r |
44 | // Disable ICC's remark #1419: external declaration in primary source file\r | |
45 | // This is legal ANSI C code so we disable the remark that is turned on with /W4\r | |
46 | //\r | |
47 | #pragma warning ( disable : 1419 )\r | |
48 | \r | |
49 | #endif\r | |
50 | \r | |
51 | \r | |
959ccb23 | 52 | #if _MSC_EXTENSIONS\r |
53 | \r | |
54 | //\r | |
55 | // Disable warning that make it impossible to compile at /W4\r | |
56 | // This only works for Microsoft* tools\r | |
57 | //\r | |
58 | \r | |
59 | //\r | |
60 | // Disabling bitfield type checking warnings.\r | |
61 | //\r | |
62 | #pragma warning ( disable : 4214 )\r | |
63 | \r | |
64 | //\r | |
65 | // Disabling the unreferenced formal parameter warnings.\r | |
66 | //\r | |
67 | #pragma warning ( disable : 4100 )\r | |
68 | \r | |
69 | //\r | |
70 | // Disable slightly different base types warning as CHAR8 * can not be set\r | |
71 | // to a constant string.\r | |
72 | //\r | |
73 | #pragma warning ( disable : 4057 )\r | |
74 | \r | |
75 | //\r | |
76 | // ASSERT(FALSE) or while (TRUE) are legal constructes so supress this warning\r | |
77 | //\r | |
78 | #pragma warning ( disable : 4127 )\r | |
79 | \r | |
80 | //\r | |
81 | // This warning is caused by functions defined but not used. For precompiled header only.\r | |
82 | //\r | |
83 | #pragma warning ( disable : 4505 )\r | |
84 | \r | |
85 | //\r | |
3963c4bf | 86 | // This warning is caused by empty (after preprocessing) source file. For precompiled header only.\r |
959ccb23 | 87 | //\r |
88 | #pragma warning ( disable : 4206 )\r | |
89 | \r | |
90 | #endif\r | |
91 | \r | |
92 | \r | |
93 | #if !defined(__GNUC__) && (__STDC_VERSION__ < 199901L)\r | |
94 | //\r | |
95 | // No ANSI C 2000 stdint.h integer width declarations, so define equivalents\r | |
96 | //\r | |
97 | \r | |
98 | #if _MSC_EXTENSIONS \r | |
9510db65 | 99 | \r |
959ccb23 | 100 | //\r |
101 | // use Microsoft* C complier dependent interger width types \r | |
102 | //\r | |
103 | typedef unsigned __int64 UINT64;\r | |
104 | typedef __int64 INT64;\r | |
105 | typedef unsigned __int32 UINT32;\r | |
106 | typedef __int32 INT32;\r | |
107 | typedef unsigned short UINT16;\r | |
108 | typedef unsigned short CHAR16;\r | |
109 | typedef short INT16;\r | |
110 | typedef unsigned char BOOLEAN;\r | |
111 | typedef unsigned char UINT8;\r | |
112 | typedef char CHAR8;\r | |
113 | typedef char INT8;\r | |
114 | #else\r | |
115 | \r | |
116 | //\r | |
117 | // Assume standard IA-32 alignment. \r | |
118 | // Need to check portability of long long\r | |
119 | //\r | |
120 | typedef unsigned long long UINT64;\r | |
121 | typedef long long INT64;\r | |
122 | typedef unsigned int UINT32;\r | |
123 | typedef int INT32;\r | |
124 | typedef unsigned short UINT16;\r | |
125 | typedef unsigned short CHAR16;\r | |
126 | typedef short INT16;\r | |
127 | typedef unsigned char BOOLEAN;\r | |
128 | typedef unsigned char UINT8;\r | |
129 | typedef char CHAR8;\r | |
130 | typedef char INT8;\r | |
131 | #endif\r | |
132 | \r | |
133 | #define UINT8_MAX 0xff\r | |
134 | \r | |
135 | #else\r | |
136 | //\r | |
137 | // Use ANSI C 2000 stdint.h integer width declarations\r | |
138 | //\r | |
139 | #include "stdint.h"\r | |
140 | typedef uint8_t BOOLEAN;\r | |
141 | typedef int8_t INT8;\r | |
142 | typedef uint8_t UINT8;\r | |
143 | typedef int16_t INT16;\r | |
144 | typedef uint16_t UINT16;\r | |
145 | typedef int32_t INT32;\r | |
146 | typedef uint32_t UINT32;\r | |
147 | typedef int64_t INT64;\r | |
148 | typedef uint64_t UINT64;\r | |
149 | typedef char CHAR8;\r | |
150 | typedef uint16_t CHAR16;\r | |
151 | \r | |
152 | #endif\r | |
153 | \r | |
154 | typedef UINT32 UINTN;\r | |
155 | typedef INT32 INTN;\r | |
156 | \r | |
157 | \r | |
3566565a | 158 | ///\r |
159 | /// Processor specific defines\r | |
160 | ///\r | |
959ccb23 | 161 | #define MAX_BIT 0x80000000\r |
162 | #define MAX_2_BITS 0xC0000000\r | |
163 | \r | |
3566565a | 164 | ///\r |
165 | /// Maximum legal IA-32 address\r | |
166 | ///\r | |
959ccb23 | 167 | #define MAX_ADDRESS 0xFFFFFFFF\r |
168 | \r | |
3566565a | 169 | ///\r |
170 | /// The stack alignment required for IA-32\r | |
171 | ///\r | |
959ccb23 | 172 | #define CPU_STACK_ALIGNMENT sizeof(UINTN)\r |
173 | \r | |
174 | //\r | |
175 | // Modifier to ensure that all protocol member functions and EFI intrinsics\r | |
176 | // use the correct C calling convention. All protocol member functions and\r | |
3963c4bf | 177 | // EFI intrinsics are required to modify their member functions with EFIAPI.\r |
959ccb23 | 178 | //\r |
179 | #if _MSC_EXTENSIONS\r | |
3566565a | 180 | ///\r |
181 | /// Microsoft* compiler requires _EFIAPI useage, __cdecl is Microsoft* specific C.\r | |
182 | /// \r | |
959ccb23 | 183 | #define EFIAPI __cdecl \r |
86b2b825 | 184 | #else\r |
185 | #if __GNUC__\r | |
186 | #define EFIAPI __attribute__((cdecl)) \r | |
187 | #endif \r | |
959ccb23 | 188 | #endif\r |
189 | \r | |
190 | //\r | |
191 | // The Microsoft* C compiler can removed references to unreferenced data items\r | |
192 | // if the /OPT:REF linker option is used. We defined a macro as this is a \r | |
193 | // a non standard extension\r | |
194 | //\r | |
195 | #if _MSC_EXTENSIONS\r | |
196 | #define GLOBAL_REMOVE_IF_UNREFERENCED __declspec(selectany)\r | |
197 | #else\r | |
198 | #define GLOBAL_REMOVE_IF_UNREFERENCED\r | |
199 | #endif\r | |
200 | \r | |
27af6b87 | 201 | //\r |
202 | // For symbol name in GNU assembly code, an extra "_" is necessary\r | |
203 | //\r | |
204 | #if __GNUC__\r | |
ed0b86b1 | 205 | #if defined(linux)\r |
206 | #define ASM_PFX(name) name\r | |
207 | #else\r | |
208 | #define ASM_PFX(name) _##name\r | |
209 | #endif \r | |
27af6b87 | 210 | #endif\r |
211 | \r | |
14996c96 LG |
212 | /**\r |
213 | Return the pointer to the first instruction of a function given a function pointer.\r | |
214 | On IA32 CPU architectures, these two pointer values are the same, \r | |
215 | so the implementation of this macro is very simple.\r | |
216 | \r | |
3963c4bf | 217 | @param FunctionPointer A pointer to a function.\r |
14996c96 LG |
218 | \r |
219 | @return The pointer to the first instruction of a function given a function pointer.\r | |
3963c4bf | 220 | \r |
14996c96 | 221 | **/\r |
9a1d00cb | 222 | #define FUNCTION_ENTRY_POINT(FunctionPointer) (VOID *)(UINTN)(FunctionPointer)\r |
24a7505c | 223 | \r |
959ccb23 | 224 | #endif\r |
225 | \r |