]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Ia32/ProcessorBind.h
Initial import.
[mirror_edk2.git] / MdePkg / Include / Ia32 / ProcessorBind.h
CommitLineData
878ddf1f 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
13 Module Name: ProcessorBind.h\r
14\r
15**/\r
16\r
17#ifndef __PROCESSOR_BIND_H__\r
18#define __PROCESSOR_BIND_H__\r
19\r
20//\r
21// Define the processor type so other code can make processor based choices\r
22//\r
23#define MDE_CPU_IA32\r
24\r
25//\r
26// Make sure we are useing the correct packing rules per EFI specification\r
27//\r
28#ifndef __GNUC__\r
29#pragma pack()\r
30#endif\r
31\r
32#if _MSC_EXTENSIONS\r
33\r
34//\r
35// Disable warning that make it impossible to compile at /W4\r
36// This only works for Microsoft* tools\r
37//\r
38\r
39//\r
40// Disabling bitfield type checking warnings.\r
41//\r
42#pragma warning ( disable : 4214 )\r
43\r
44//\r
45// Disabling the unreferenced formal parameter warnings.\r
46//\r
47#pragma warning ( disable : 4100 )\r
48\r
49//\r
50// Disable slightly different base types warning as CHAR8 * can not be set\r
51// to a constant string.\r
52//\r
53#pragma warning ( disable : 4057 )\r
54\r
55//\r
56// ASSERT(FALSE) or while (TRUE) are legal constructes so supress this warning\r
57//\r
58#pragma warning ( disable : 4127 )\r
59\r
60\r
61#endif\r
62\r
63\r
64#if !defined(__GNUC__) && (__STDC_VERSION__ < 199901L)\r
65 //\r
66 // No ANSI C 2000 stdint.h integer width declarations, so define equivalents\r
67 //\r
68 \r
69 #if _MSC_EXTENSIONS \r
70 \r
71 //\r
72 // use Microsoft* C complier dependent interger width types \r
73 //\r
74 typedef unsigned __int64 UINT64;\r
75 typedef __int64 INT64;\r
76 typedef unsigned __int32 UINT32;\r
77 typedef __int32 INT32;\r
78 typedef unsigned short UINT16;\r
79 typedef unsigned short CHAR16;\r
80 typedef short INT16;\r
81 typedef unsigned char BOOLEAN;\r
82 typedef unsigned char UINT8;\r
83 typedef char CHAR8;\r
84 typedef char INT8;\r
85 #else\r
86\r
87 //\r
88 // Assume standard IA-32 alignment. \r
89 // BugBug: Need to check portability of long long\r
90 //\r
91 typedef unsigned long long UINT64;\r
92 typedef long long INT64;\r
93 typedef unsigned int UINT32;\r
94 typedef int INT32;\r
95 typedef unsigned short UINT16;\r
96 typedef unsigned short CHAR16;\r
97 typedef short INT16;\r
98 typedef unsigned char BOOLEAN;\r
99 typedef unsigned char UINT8;\r
100 typedef char CHAR8;\r
101 typedef char INT8;\r
102 #endif\r
103\r
104 #define UINT8_MAX 0xff\r
105\r
106#else\r
107 //\r
108 // Use ANSI C 2000 stdint.h integer width declarations\r
109 //\r
110 #include "stdint.h"\r
111 typedef uint8_t BOOLEAN;\r
112 typedef int8_t INT8;\r
113 typedef uint8_t UINT8;\r
114 typedef int16_t INT16;\r
115 typedef uint16_t UINT16;\r
116 typedef int32_t INT32;\r
117 typedef uint32_t UINT32;\r
118 typedef int64_t INT64;\r
119 typedef uint64_t UINT64;\r
120 typedef char CHAR8;\r
121 typedef uint16_t CHAR16;\r
122\r
123#endif\r
124\r
125typedef UINT32 UINTN;\r
126typedef INT32 INTN;\r
127\r
128\r
129//\r
130// Processor specific defines\r
131//\r
132#define MAX_BIT 0x80000000\r
133#define MAX_2_BITS 0xC0000000\r
134\r
135//\r
136// Maximum legal IA-32 address\r
137//\r
138#define MAX_ADDRESS 0xFFFFFFFF\r
139\r
140//\r
141// Modifier to ensure that all protocol member functions and EFI intrinsics\r
142// use the correct C calling convention. All protocol member functions and\r
143// EFI intrinsics are required to modify thier member functions with EFIAPI.\r
144//\r
145#if _MSC_EXTENSIONS\r
146 //\r
147 // Microsoft* compiler requires _EFIAPI useage, __cdecl is Microsoft* specific C.\r
148 // \r
149 #define EFIAPI __cdecl \r
150#endif\r
151\r
152#if __GNUC__\r
153 #define EFIAPI __attribute__((cdecl)) \r
154#endif\r
155\r
156//\r
157// The Microsoft* C compiler can removed references to unreferenced data items\r
158// if the /OPT:REF linker option is used. We defined a macro as this is a \r
159// a non standard extension\r
160//\r
161#if _MSC_EXTENSIONS\r
162 #define GLOBAL_REMOVE_IF_UNREFERENCED __declspec(selectany)\r
163#else\r
164 #define GLOBAL_REMOVE_IF_UNREFERENCED\r
165#endif\r
166\r
167#endif\r