]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/X64/ProcessorBind.h
MdePkg: Disable VS2015 warning C4701 & C4703
[mirror_edk2.git] / MdePkg / Include / X64 / ProcessorBind.h
CommitLineData
959ccb23 1/** @file\r
1a2f870c 2 Processor or Compiler specific defines and types x64 (Intel 64, AMD64).\r
959ccb23 3\r
a5077fd0 4 Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>\r
9df063a0 5 This program and the accompanying materials \r
959ccb23 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
fb5148a0 18///\r
19/// Define the processor type so other code can make processor based choices\r
20///\r
959ccb23 21#define MDE_CPU_X64\r
22\r
959ccb23 23//\r
3963c4bf 24// Make sure we are using the correct packing rules per EFI specification\r
959ccb23 25//\r
5cfbd055 26#if !defined(__GNUC__)\r
959ccb23 27#pragma pack()\r
28#endif\r
29\r
b483e395 30\r
5cfbd055 31#if defined(__INTEL_COMPILER)\r
1fb24cc4 32//\r
33// Disable ICC's remark #869: "Parameter" was never referenced warning.\r
34// This is legal ANSI C code so we disable the remark that is turned on with -Wall\r
35//\r
36#pragma warning ( disable : 869 )\r
37\r
b483e395
A
38//\r
39// Disable ICC's remark #1418: external function definition with no prior declaration.\r
40// This is legal ANSI C code so we disable the remark that is turned on with /W4\r
41//\r
42#pragma warning ( disable : 1418 )\r
43\r
b483e395
A
44//\r
45// Disable ICC's remark #1419: external declaration in primary source file\r
46// This is legal ANSI C code so we disable the remark that is turned on with /W4\r
47//\r
48#pragma warning ( disable : 1419 )\r
49\r
8fe69f13 50//\r
51// Disable ICC's remark #593: "Variable" was set but never used.\r
52// This is legal ANSI C code so we disable the remark that is turned on with /W4\r
53//\r
54#pragma warning ( disable : 593 )\r
55\r
b483e395
A
56#endif\r
57\r
58\r
5cfbd055 59#if defined(_MSC_EXTENSIONS)\r
1fb24cc4 60\r
959ccb23 61//\r
62// Disable warning that make it impossible to compile at /W4\r
63// This only works for Microsoft* tools\r
64//\r
65\r
66//\r
67// Disabling bitfield type checking warnings.\r
68//\r
69#pragma warning ( disable : 4214 )\r
70\r
71//\r
72// Disabling the unreferenced formal parameter warnings.\r
73//\r
74#pragma warning ( disable : 4100 )\r
75\r
76//\r
77// Disable slightly different base types warning as CHAR8 * can not be set\r
78// to a constant string.\r
79//\r
80#pragma warning ( disable : 4057 )\r
81\r
82//\r
83// ASSERT(FALSE) or while (TRUE) are legal constructes so supress this warning\r
84//\r
85#pragma warning ( disable : 4127 )\r
86\r
87//\r
88// This warning is caused by functions defined but not used. For precompiled header only.\r
89//\r
90#pragma warning ( disable : 4505 )\r
91\r
92//\r
3963c4bf 93// This warning is caused by empty (after preprocessing) source file. For precompiled header only.\r
959ccb23 94//\r
95#pragma warning ( disable : 4206 )\r
96\r
592a3790 97#if _MSC_VER == 1800 || _MSC_VER == 1900\r
a5077fd0
SQ
98\r
99//\r
100// Disable these warnings for VS2013.\r
101//\r
102\r
103//\r
104// This warning is for potentially uninitialized local variable, and it may cause false \r
592a3790 105// positive issues in VS2013 and VS2015 build\r
a5077fd0
SQ
106//\r
107#pragma warning ( disable : 4701 )\r
108 \r
109//\r
110// This warning is for potentially uninitialized local pointer variable, and it may cause \r
592a3790 111// false positive issues in VS2013 and VS2015 build\r
a5077fd0
SQ
112//\r
113#pragma warning ( disable : 4703 )\r
114 \r
115#endif\r
116\r
959ccb23 117#endif\r
118\r
119\r
52aa9e13 120#if defined(_MSC_EXTENSIONS)\r
959ccb23 121 //\r
52aa9e13 122 // use Microsoft C complier dependent integer width types \r
959ccb23 123 //\r
f4ec40ab 124\r
52aa9e13
EB
125 ///\r
126 /// 8-byte unsigned value\r
127 ///\r
128 typedef unsigned __int64 UINT64;\r
129 ///\r
130 /// 8-byte signed value\r
131 ///\r
132 typedef __int64 INT64;\r
133 ///\r
134 /// 4-byte unsigned value\r
135 ///\r
136 typedef unsigned __int32 UINT32;\r
137 ///\r
138 /// 4-byte signed value\r
139 ///\r
140 typedef __int32 INT32;\r
141 ///\r
142 /// 2-byte unsigned value\r
143 ///\r
144 typedef unsigned short UINT16;\r
145 ///\r
146 /// 2-byte Character. Unless otherwise specified all strings are stored in the\r
147 /// UTF-16 encoding format as defined by Unicode 2.1 and ISO/IEC 10646 standards.\r
148 ///\r
149 typedef unsigned short CHAR16;\r
150 ///\r
151 /// 2-byte signed value\r
152 ///\r
153 typedef short INT16;\r
f4ec40ab 154 ///\r
155 /// Logical Boolean. 1-byte value containing 0 for FALSE or a 1 for TRUE. Other\r
156 /// values are undefined.\r
157 ///\r
52aa9e13
EB
158 typedef unsigned char BOOLEAN;\r
159 ///\r
160 /// 1-byte unsigned value\r
161 ///\r
162 typedef unsigned char UINT8;\r
163 ///\r
164 /// 1-byte Character\r
165 ///\r
166 typedef char CHAR8;\r
f4ec40ab 167 ///\r
168 /// 1-byte signed value\r
169 ///\r
d22ebbe3 170 typedef signed char INT8;\r
52aa9e13 171#else\r
f4ec40ab 172 ///\r
52aa9e13 173 /// 8-byte unsigned value\r
f4ec40ab 174 ///\r
52aa9e13 175 typedef unsigned long long UINT64;\r
f4ec40ab 176 ///\r
52aa9e13 177 /// 8-byte signed value\r
f4ec40ab 178 ///\r
52aa9e13 179 typedef long long INT64;\r
f4ec40ab 180 ///\r
52aa9e13 181 /// 4-byte unsigned value\r
f4ec40ab 182 ///\r
52aa9e13 183 typedef unsigned int UINT32;\r
f4ec40ab 184 ///\r
185 /// 4-byte signed value\r
186 ///\r
52aa9e13 187 typedef int INT32;\r
f4ec40ab 188 ///\r
52aa9e13 189 /// 2-byte unsigned value\r
f4ec40ab 190 ///\r
52aa9e13 191 typedef unsigned short UINT16;\r
f4ec40ab 192 ///\r
52aa9e13
EB
193 /// 2-byte Character. Unless otherwise specified all strings are stored in the\r
194 /// UTF-16 encoding format as defined by Unicode 2.1 and ISO/IEC 10646 standards.\r
f4ec40ab 195 ///\r
52aa9e13 196 typedef unsigned short CHAR16;\r
f4ec40ab 197 ///\r
52aa9e13
EB
198 /// 2-byte signed value\r
199 ///\r
200 typedef short INT16;\r
201 ///\r
202 /// Logical Boolean. 1-byte value containing 0 for FALSE or a 1 for TRUE. Other\r
203 /// values are undefined.\r
f4ec40ab 204 ///\r
52aa9e13
EB
205 typedef unsigned char BOOLEAN;\r
206 ///\r
207 /// 1-byte unsigned value\r
208 ///\r
209 typedef unsigned char UINT8;\r
f4ec40ab 210 ///\r
211 /// 1-byte Character\r
212 ///\r
52aa9e13 213 typedef char CHAR8;\r
f4ec40ab 214 ///\r
52aa9e13 215 /// 1-byte signed value\r
f4ec40ab 216 ///\r
d22ebbe3 217 typedef signed char INT8;\r
959ccb23 218#endif\r
219\r
f4ec40ab 220///\r
221/// Unsigned value of native width. (4 bytes on supported 32-bit processor instructions,\r
222/// 8 bytes on supported 64-bit processor instructions)\r
223///\r
959ccb23 224typedef UINT64 UINTN;\r
f4ec40ab 225///\r
226/// Signed value of native width. (4 bytes on supported 32-bit processor instructions,\r
227/// 8 bytes on supported 64-bit processor instructions)\r
228///\r
959ccb23 229typedef INT64 INTN;\r
230\r
231\r
232//\r
233// Processor specific defines\r
234//\r
f4ec40ab 235\r
236///\r
237/// A value of native width with the highest bit set.\r
238///\r
959ccb23 239#define MAX_BIT 0x8000000000000000ULL\r
f4ec40ab 240///\r
241/// A value of native width with the two highest bits set.\r
242///\r
959ccb23 243#define MAX_2_BITS 0xC000000000000000ULL\r
244\r
f4ec40ab 245///\r
246/// Maximum legal x64 address\r
247///\r
959ccb23 248#define MAX_ADDRESS 0xFFFFFFFFFFFFFFFFULL\r
249\r
068a82fc
LG
250///\r
251/// Maximum legal x64 INTN and UINTN values.\r
252///\r
253#define MAX_INTN ((INTN)0x7FFFFFFFFFFFFFFFULL)\r
254#define MAX_UINTN ((UINTN)0xFFFFFFFFFFFFFFFFULL)\r
255\r
f4ec40ab 256///\r
257/// The stack alignment required for x64\r
258///\r
959ccb23 259#define CPU_STACK_ALIGNMENT 16\r
260\r
261//\r
262// Modifier to ensure that all protocol member functions and EFI intrinsics\r
263// use the correct C calling convention. All protocol member functions and\r
f4ec40ab 264// EFI intrinsics are required to modify their member functions with EFIAPI.\r
959ccb23 265//\r
6149e6bb 266#ifdef EFIAPI\r
267 ///\r
268 /// If EFIAPI is already defined, then we use that definition.\r
269 ///\r
270#elif defined(_MSC_EXTENSIONS)\r
959ccb23 271 ///\r
f9080cdd 272 /// Microsoft* compiler specific method for EFIAPI calling convention.\r
959ccb23 273 /// \r
274 #define EFIAPI __cdecl \r
5cfbd055 275#elif defined(__GNUC__)\r
959ccb23 276 ///\r
f9080cdd 277 /// Define the standard calling convention regardless of optimization level.\r
959ccb23 278 /// The GCC support assumes a GCC compiler that supports the EFI ABI. The EFI\r
279 /// ABI is much closer to the x64 Microsoft* ABI than standard x64 (x86-64) \r
280 /// GCC ABI. Thus a standard x64 (x86-64) GCC compiler can not be used for \r
281 /// x64. Warning the assembly code in the MDE x64 does not follow the correct \r
282 /// ABI for the standard x64 (x86-64) GCC.\r
283 ///\r
284 #define EFIAPI \r
285#else\r
286 ///\r
287 /// The default for a non Microsoft* or GCC compiler is to assume the EFI ABI\r
288 /// is the standard. \r
289 ///\r
290 #define EFIAPI \r
291#endif\r
292\r
5cfbd055 293#if defined(__GNUC__)\r
68167fed 294 ///\r
295 /// For GNU assembly code, .global or .globl can declare global symbols.\r
296 /// Define this macro to unify the usage.\r
297 ///\r
298 #define ASM_GLOBAL .globl\r
27af6b87 299#endif\r
300\r
14996c96
LG
301/**\r
302 Return the pointer to the first instruction of a function given a function pointer.\r
303 On x64 CPU architectures, these two pointer values are the same, \r
304 so the implementation of this macro is very simple.\r
305 \r
3963c4bf 306 @param FunctionPointer A pointer to a function.\r
14996c96
LG
307\r
308 @return The pointer to the first instruction of a function given a function pointer.\r
3963c4bf 309 \r
14996c96 310**/\r
9a1d00cb 311#define FUNCTION_ENTRY_POINT(FunctionPointer) (VOID *)(UINTN)(FunctionPointer)\r
24a7505c 312\r
02eef553
JJ
313#ifndef __USER_LABEL_PREFIX__\r
314#define __USER_LABEL_PREFIX__\r
315#endif\r
316\r
959ccb23 317#endif\r
318\r