]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdePkg/Include/Ia32/ProcessorBind.h
1. Add defines for MAX values for UEFI data types.
[mirror_edk2.git] / MdePkg / Include / Ia32 / ProcessorBind.h
... / ...
CommitLineData
1/** @file\r
2 Processor or Compiler specific defines and types for IA-32 architecture.\r
3\r
4Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR>\r
5This program and the accompanying materials are licensed and made available under \r
6the terms and conditions of the BSD License that accompanies this distribution. \r
7The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php. \r
9 \r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
12\r
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 using the correct packing rules per EFI specification\r
25//\r
26#if !defined(__GNUC__)\r
27#pragma pack()\r
28#endif\r
29\r
30#if defined(__INTEL_COMPILER)\r
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
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
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//\r
50// Disable ICC's remark #593: "Variable" was set but never used.\r
51// This is legal ANSI C code so we disable the remark that is turned on with /W4\r
52//\r
53#pragma warning ( disable : 593 )\r
54\r
55#endif\r
56\r
57\r
58#if defined(_MSC_EXTENSIONS)\r
59\r
60//\r
61// Disable warning that make it impossible to compile at /W4\r
62// This only works for Microsoft* tools\r
63//\r
64\r
65//\r
66// Disabling bitfield type checking warnings.\r
67//\r
68#pragma warning ( disable : 4214 )\r
69\r
70//\r
71// Disabling the unreferenced formal parameter warnings.\r
72//\r
73#pragma warning ( disable : 4100 )\r
74\r
75//\r
76// Disable slightly different base types warning as CHAR8 * can not be set\r
77// to a constant string.\r
78//\r
79#pragma warning ( disable : 4057 )\r
80\r
81//\r
82// ASSERT(FALSE) or while (TRUE) are legal constructes so supress this warning\r
83//\r
84#pragma warning ( disable : 4127 )\r
85\r
86//\r
87// This warning is caused by functions defined but not used. For precompiled header only.\r
88//\r
89#pragma warning ( disable : 4505 )\r
90\r
91//\r
92// This warning is caused by empty (after preprocessing) source file. For precompiled header only.\r
93//\r
94#pragma warning ( disable : 4206 )\r
95\r
96#endif\r
97\r
98\r
99#if defined(_MSC_EXTENSIONS)\r
100\r
101 //\r
102 // use Microsoft C complier dependent integer width types \r
103 //\r
104\r
105 ///\r
106 /// 8-byte unsigned value.\r
107 ///\r
108 typedef unsigned __int64 UINT64;\r
109 ///\r
110 /// 8-byte signed value.\r
111 ///\r
112 typedef __int64 INT64;\r
113 ///\r
114 /// 4-byte unsigned value.\r
115 ///\r
116 typedef unsigned __int32 UINT32;\r
117 ///\r
118 /// 4-byte signed value.\r
119 ///\r
120 typedef __int32 INT32;\r
121 ///\r
122 /// 2-byte unsigned value.\r
123 ///\r
124 typedef unsigned short UINT16;\r
125 ///\r
126 /// 2-byte Character. Unless otherwise specified all strings are stored in the\r
127 /// UTF-16 encoding format as defined by Unicode 2.1 and ISO/IEC 10646 standards.\r
128 ///\r
129 typedef unsigned short CHAR16;\r
130 ///\r
131 /// 2-byte signed value.\r
132 ///\r
133 typedef short INT16;\r
134 ///\r
135 /// Logical Boolean. 1-byte value containing 0 for FALSE or a 1 for TRUE. Other\r
136 /// values are undefined.\r
137 ///\r
138 typedef unsigned char BOOLEAN;\r
139 ///\r
140 /// 1-byte unsigned value.\r
141 ///\r
142 typedef unsigned char UINT8;\r
143 ///\r
144 /// 1-byte Character.\r
145 ///\r
146 typedef char CHAR8;\r
147 ///\r
148 /// 1-byte signed value.\r
149 ///\r
150 typedef signed char INT8;\r
151#else \r
152 ///\r
153 /// 8-byte unsigned value.\r
154 ///\r
155 typedef unsigned long long UINT64;\r
156 ///\r
157 /// 8-byte signed value.\r
158 ///\r
159 typedef long long INT64;\r
160 ///\r
161 /// 4-byte unsigned value.\r
162 ///\r
163 typedef unsigned int UINT32;\r
164 ///\r
165 /// 4-byte signed value.\r
166 ///\r
167 typedef int INT32;\r
168 ///\r
169 /// 2-byte unsigned value.\r
170 ///\r
171 typedef unsigned short UINT16;\r
172 ///\r
173 /// 2-byte Character. Unless otherwise specified all strings are stored in the\r
174 /// UTF-16 encoding format as defined by Unicode 2.1 and ISO/IEC 10646 standards.\r
175 ///\r
176 typedef unsigned short CHAR16;\r
177 ///\r
178 /// 2-byte signed value.\r
179 ///\r
180 typedef short INT16;\r
181 ///\r
182 /// Logical Boolean. 1-byte value containing 0 for FALSE or a 1 for TRUE. Other\r
183 /// values are undefined.\r
184 ///\r
185 typedef unsigned char BOOLEAN;\r
186 ///\r
187 /// 1-byte unsigned value.\r
188 ///\r
189 typedef unsigned char UINT8;\r
190 ///\r
191 /// 1-byte Character\r
192 ///\r
193 typedef char CHAR8;\r
194 ///\r
195 /// 1-byte signed value\r
196 ///\r
197 typedef signed char INT8;\r
198#endif\r
199\r
200///\r
201/// Unsigned value of native width. (4 bytes on supported 32-bit processor instructions;\r
202/// 8 bytes on supported 64-bit processor instructions.)\r
203///\r
204typedef UINT32 UINTN;\r
205///\r
206/// Signed value of native width. (4 bytes on supported 32-bit processor instructions;\r
207/// 8 bytes on supported 64-bit processor instructions.)\r
208///\r
209typedef INT32 INTN;\r
210\r
211//\r
212// Processor specific defines\r
213//\r
214\r
215///\r
216/// A value of native width with the highest bit set.\r
217///\r
218#define MAX_BIT 0x80000000\r
219///\r
220/// A value of native width with the two highest bits set.\r
221///\r
222#define MAX_2_BITS 0xC0000000\r
223\r
224///\r
225/// Maximum legal IA-32 address.\r
226///\r
227#define MAX_ADDRESS 0xFFFFFFFF\r
228\r
229///\r
230/// Maximum legal IA-32 INTN and UINTN values.\r
231///\r
232#define MAX_INTN ((INTN)0x7FFFFFFF)\r
233#define MAX_UINTN ((UINTN)0xFFFFFFFF)\r
234\r
235///\r
236/// The stack alignment required for IA-32.\r
237///\r
238#define CPU_STACK_ALIGNMENT sizeof(UINTN)\r
239\r
240//\r
241// Modifier to ensure that all protocol member functions and EFI intrinsics\r
242// use the correct C calling convention. All protocol member functions and\r
243// EFI intrinsics are required to modify their member functions with EFIAPI.\r
244//\r
245#ifdef EFIAPI\r
246 ///\r
247 /// If EFIAPI is already defined, then we use that definition.\r
248 ///\r
249#elif defined(_MSC_EXTENSIONS)\r
250 ///\r
251 /// Microsoft* compiler specific method for EFIAPI calling convention.\r
252 /// \r
253 #define EFIAPI __cdecl \r
254#elif defined(__GNUC__)\r
255 ///\r
256 /// GCC specific method for EFIAPI calling convention.\r
257 /// \r
258 #define EFIAPI __attribute__((cdecl)) \r
259#else\r
260 ///\r
261 /// The default for a non Microsoft* or GCC compiler is to assume the EFI ABI\r
262 /// is the standard. \r
263 ///\r
264 #define EFIAPI\r
265#endif\r
266\r
267#if defined(__GNUC__)\r
268 ///\r
269 /// For GNU assembly code, .global or .globl can declare global symbols.\r
270 /// Define this macro to unify the usage.\r
271 ///\r
272 #define ASM_GLOBAL .globl\r
273#endif\r
274\r
275/**\r
276 Return the pointer to the first instruction of a function given a function pointer.\r
277 On IA-32 CPU architectures, these two pointer values are the same, \r
278 so the implementation of this macro is very simple.\r
279 \r
280 @param FunctionPointer A pointer to a function.\r
281\r
282 @return The pointer to the first instruction of a function given a function pointer.\r
283 \r
284**/\r
285#define FUNCTION_ENTRY_POINT(FunctionPointer) (VOID *)(UINTN)(FunctionPointer)\r
286\r
287#endif\r
288\r