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