2007-06-08 13:31:52 +02:00
|
|
|
/** @file
|
2009-06-04 18:16:15 +02:00
|
|
|
Processor or Compiler specific defines and types for IA-32 architecture.
|
2007-06-08 13:31:52 +02:00
|
|
|
|
2018-06-27 15:11:33 +02:00
|
|
|
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
|
|
|
This program and the accompanying materials are licensed and made available under
|
|
|
|
the terms and conditions of the BSD License that accompanies this distribution.
|
2010-03-13 00:09:20 +01:00
|
|
|
The full text of the license may be found at
|
2018-06-27 15:11:33 +02:00
|
|
|
http://opensource.org/licenses/bsd-license.php.
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2007-06-08 13:31:52 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __PROCESSOR_BIND_H__
|
|
|
|
#define __PROCESSOR_BIND_H__
|
|
|
|
|
2008-08-14 04:56:09 +02:00
|
|
|
///
|
2010-03-13 00:09:20 +01:00
|
|
|
/// Define the processor type so other code can make processor based choices.
|
2008-08-14 04:56:09 +02:00
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
#define MDE_CPU_IA32
|
|
|
|
|
|
|
|
//
|
2008-12-05 03:28:51 +01:00
|
|
|
// Make sure we are using the correct packing rules per EFI specification
|
2007-06-08 13:31:52 +02:00
|
|
|
//
|
2009-02-23 06:51:02 +01:00
|
|
|
#if !defined(__GNUC__)
|
2007-06-08 13:31:52 +02:00
|
|
|
#pragma pack()
|
|
|
|
#endif
|
|
|
|
|
2009-02-23 06:51:02 +01:00
|
|
|
#if defined(__INTEL_COMPILER)
|
2008-08-30 01:04:44 +02:00
|
|
|
//
|
|
|
|
// Disable ICC's remark #869: "Parameter" was never referenced warning.
|
|
|
|
// This is legal ANSI C code so we disable the remark that is turned on with -Wall
|
|
|
|
//
|
|
|
|
#pragma warning ( disable : 869 )
|
|
|
|
|
2007-07-06 20:48:06 +02:00
|
|
|
//
|
|
|
|
// Disable ICC's remark #1418: external function definition with no prior declaration.
|
|
|
|
// This is legal ANSI C code so we disable the remark that is turned on with /W4
|
|
|
|
//
|
|
|
|
#pragma warning ( disable : 1418 )
|
|
|
|
|
|
|
|
//
|
|
|
|
// Disable ICC's remark #1419: external declaration in primary source file
|
|
|
|
// This is legal ANSI C code so we disable the remark that is turned on with /W4
|
|
|
|
//
|
|
|
|
#pragma warning ( disable : 1419 )
|
|
|
|
|
2010-01-11 03:29:54 +01:00
|
|
|
//
|
|
|
|
// Disable ICC's remark #593: "Variable" was set but never used.
|
|
|
|
// This is legal ANSI C code so we disable the remark that is turned on with /W4
|
|
|
|
//
|
|
|
|
#pragma warning ( disable : 593 )
|
|
|
|
|
2007-07-06 20:48:06 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2009-02-23 06:51:02 +01:00
|
|
|
#if defined(_MSC_EXTENSIONS)
|
2007-06-08 13:31:52 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Disable warning that make it impossible to compile at /W4
|
|
|
|
// This only works for Microsoft* tools
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
// Disabling bitfield type checking warnings.
|
|
|
|
//
|
|
|
|
#pragma warning ( disable : 4214 )
|
|
|
|
|
|
|
|
//
|
|
|
|
// Disabling the unreferenced formal parameter warnings.
|
|
|
|
//
|
|
|
|
#pragma warning ( disable : 4100 )
|
|
|
|
|
|
|
|
//
|
|
|
|
// Disable slightly different base types warning as CHAR8 * can not be set
|
|
|
|
// to a constant string.
|
|
|
|
//
|
|
|
|
#pragma warning ( disable : 4057 )
|
|
|
|
|
|
|
|
//
|
2016-09-12 10:35:39 +02:00
|
|
|
// ASSERT(FALSE) or while (TRUE) are legal constructs so suppress this warning
|
2007-06-08 13:31:52 +02:00
|
|
|
//
|
|
|
|
#pragma warning ( disable : 4127 )
|
|
|
|
|
|
|
|
//
|
|
|
|
// This warning is caused by functions defined but not used. For precompiled header only.
|
|
|
|
//
|
|
|
|
#pragma warning ( disable : 4505 )
|
|
|
|
|
|
|
|
//
|
2008-12-05 03:28:51 +01:00
|
|
|
// This warning is caused by empty (after preprocessing) source file. For precompiled header only.
|
2007-06-08 13:31:52 +02:00
|
|
|
//
|
|
|
|
#pragma warning ( disable : 4206 )
|
|
|
|
|
2017-11-22 17:26:07 +01:00
|
|
|
#if _MSC_VER == 1800 || _MSC_VER == 1900 || _MSC_VER >= 1910
|
2015-01-09 05:50:11 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// Disable these warnings for VS2013.
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
2018-06-27 15:11:33 +02:00
|
|
|
// This warning is for potentially uninitialized local variable, and it may cause false
|
2015-12-04 04:05:28 +01:00
|
|
|
// positive issues in VS2013 and VS2015 build
|
2015-01-09 05:50:11 +01:00
|
|
|
//
|
|
|
|
#pragma warning ( disable : 4701 )
|
2018-06-27 15:11:33 +02:00
|
|
|
|
2015-01-09 05:50:11 +01:00
|
|
|
//
|
2018-06-27 15:11:33 +02:00
|
|
|
// This warning is for potentially uninitialized local pointer variable, and it may cause
|
2015-12-04 04:05:28 +01:00
|
|
|
// false positive issues in VS2013 and VS2015 build
|
2015-01-09 05:50:11 +01:00
|
|
|
//
|
|
|
|
#pragma warning ( disable : 4703 )
|
2018-06-27 15:11:33 +02:00
|
|
|
|
2015-01-09 05:50:11 +01:00
|
|
|
#endif
|
|
|
|
|
2007-06-08 13:31:52 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2010-03-11 21:52:54 +01:00
|
|
|
#if defined(_MSC_EXTENSIONS)
|
2008-12-08 00:10:08 +01:00
|
|
|
|
2007-06-08 13:31:52 +02:00
|
|
|
//
|
2016-09-12 10:35:39 +02:00
|
|
|
// use Microsoft C compiler dependent integer width types
|
2007-06-08 13:31:52 +02:00
|
|
|
//
|
2008-12-08 00:10:08 +01:00
|
|
|
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
2010-03-13 00:09:20 +01:00
|
|
|
/// 8-byte unsigned value.
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
|
|
|
typedef unsigned __int64 UINT64;
|
|
|
|
///
|
2010-03-13 00:09:20 +01:00
|
|
|
/// 8-byte signed value.
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
|
|
|
typedef __int64 INT64;
|
|
|
|
///
|
2010-03-13 00:09:20 +01:00
|
|
|
/// 4-byte unsigned value.
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
|
|
|
typedef unsigned __int32 UINT32;
|
|
|
|
///
|
2010-03-13 00:09:20 +01:00
|
|
|
/// 4-byte signed value.
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
|
|
|
typedef __int32 INT32;
|
|
|
|
///
|
2010-03-13 00:09:20 +01:00
|
|
|
/// 2-byte unsigned value.
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
|
|
|
typedef unsigned short UINT16;
|
|
|
|
///
|
|
|
|
/// 2-byte Character. Unless otherwise specified all strings are stored in the
|
|
|
|
/// UTF-16 encoding format as defined by Unicode 2.1 and ISO/IEC 10646 standards.
|
|
|
|
///
|
|
|
|
typedef unsigned short CHAR16;
|
|
|
|
///
|
2010-03-13 00:09:20 +01:00
|
|
|
/// 2-byte signed value.
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
|
|
|
typedef short INT16;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
|
|
|
/// Logical Boolean. 1-byte value containing 0 for FALSE or a 1 for TRUE. Other
|
|
|
|
/// values are undefined.
|
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef unsigned char BOOLEAN;
|
|
|
|
///
|
2010-03-13 00:09:20 +01:00
|
|
|
/// 1-byte unsigned value.
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
|
|
|
typedef unsigned char UINT8;
|
|
|
|
///
|
2010-03-13 00:09:20 +01:00
|
|
|
/// 1-byte Character.
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
|
|
|
typedef char CHAR8;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-13 00:09:20 +01:00
|
|
|
/// 1-byte signed value.
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2012-05-16 02:42:21 +02:00
|
|
|
typedef signed char INT8;
|
2018-06-27 15:11:33 +02:00
|
|
|
#else
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-13 00:09:20 +01:00
|
|
|
/// 8-byte unsigned value.
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef unsigned long long UINT64;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-13 00:09:20 +01:00
|
|
|
/// 8-byte signed value.
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef long long INT64;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-13 00:09:20 +01:00
|
|
|
/// 4-byte unsigned value.
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef unsigned int UINT32;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-13 00:09:20 +01:00
|
|
|
/// 4-byte signed value.
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef int INT32;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-13 00:09:20 +01:00
|
|
|
/// 2-byte unsigned value.
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef unsigned short UINT16;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
/// 2-byte Character. Unless otherwise specified all strings are stored in the
|
|
|
|
/// UTF-16 encoding format as defined by Unicode 2.1 and ISO/IEC 10646 standards.
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef unsigned short CHAR16;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-13 00:09:20 +01:00
|
|
|
/// 2-byte signed value.
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
|
|
|
typedef short INT16;
|
|
|
|
///
|
|
|
|
/// Logical Boolean. 1-byte value containing 0 for FALSE or a 1 for TRUE. Other
|
|
|
|
/// values are undefined.
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef unsigned char BOOLEAN;
|
|
|
|
///
|
2010-03-13 00:09:20 +01:00
|
|
|
/// 1-byte unsigned value.
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
|
|
|
typedef unsigned char UINT8;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
|
|
|
/// 1-byte Character
|
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef char CHAR8;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
/// 1-byte signed value
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2012-05-16 02:42:21 +02:00
|
|
|
typedef signed char INT8;
|
2007-06-08 13:31:52 +02:00
|
|
|
#endif
|
|
|
|
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-13 00:09:20 +01:00
|
|
|
/// Unsigned value of native width. (4 bytes on supported 32-bit processor instructions;
|
|
|
|
/// 8 bytes on supported 64-bit processor instructions.)
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
typedef UINT32 UINTN;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-13 00:09:20 +01:00
|
|
|
/// Signed value of native width. (4 bytes on supported 32-bit processor instructions;
|
|
|
|
/// 8 bytes on supported 64-bit processor instructions.)
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
typedef INT32 INTN;
|
|
|
|
|
2008-12-08 00:10:08 +01:00
|
|
|
//
|
|
|
|
// Processor specific defines
|
|
|
|
//
|
2007-06-08 13:31:52 +02:00
|
|
|
|
2008-08-14 04:56:09 +02:00
|
|
|
///
|
2008-12-08 00:10:08 +01:00
|
|
|
/// A value of native width with the highest bit set.
|
2008-08-14 04:56:09 +02:00
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
#define MAX_BIT 0x80000000
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
|
|
|
/// A value of native width with the two highest bits set.
|
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
#define MAX_2_BITS 0xC0000000
|
|
|
|
|
2008-08-14 04:56:09 +02:00
|
|
|
///
|
2010-03-13 00:09:20 +01:00
|
|
|
/// Maximum legal IA-32 address.
|
2008-08-14 04:56:09 +02:00
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
#define MAX_ADDRESS 0xFFFFFFFF
|
|
|
|
|
2018-12-07 11:27:32 +01:00
|
|
|
///
|
|
|
|
/// Maximum usable address at boot time
|
|
|
|
///
|
|
|
|
#define MAX_ALLOC_ADDRESS MAX_ADDRESS
|
|
|
|
|
2013-07-12 04:48:08 +02:00
|
|
|
///
|
|
|
|
/// Maximum legal IA-32 INTN and UINTN values.
|
|
|
|
///
|
|
|
|
#define MAX_INTN ((INTN)0x7FFFFFFF)
|
|
|
|
#define MAX_UINTN ((UINTN)0xFFFFFFFF)
|
|
|
|
|
MdePkg/BaseSafeIntLib: Add SafeIntLib class and instance
https://bugzilla.tianocore.org/show_bug.cgi?id=798
SafeIntLib provides helper functions to prevent integer overflow
during type conversion, addition, subtraction, and multiplication.
Conversion Functions
====================
* Converting from a signed type to an unsigned type of the same
size, or vice-versa.
* Converting to a smaller type that could possibly overflow.
* Converting from a signed type to a larger unsigned type.
Unsigned Addition, Subtraction, Multiplication
===============================================
* Unsigned integer math functions protect from overflow and
underflow (in case of subtraction).
Signed Addition, Subtraction, Multiplication
============================================
* Strongly consider using unsigned numbers.
* Signed numbers are often used where unsigned numbers should
be used. For example file sizes and array indices should always
be unsigned. Subtracting a larger positive signed number from a
smaller positive signed number with SafeInt32Sub() will succeed,
producing a negative number, that then must not be used as an
array index (but can occasionally be used as a pointer index.)
Similarly for adding a larger magnitude negative number to a
smaller magnitude positive number.
* SafeIntLib does not protect you from such errors. It tells you
if your integer operations overflowed, not if you are doing the
right thing with your non-overflowed integers.
* Likewise you can overflow a buffer with a non-overflowed
unsigned index.
Based on content from the following branch/commits:
https://github.com/Microsoft/MS_UEFI/tree/share/MsCapsuleSupport
https://github.com/Microsoft/MS_UEFI/commit/21ef3a321c907b40fa93797619c9f6c686dd92e0
https://github.com/Microsoft/MS_UEFI/commit/ca516b1a61315c2d823f453e12d2135098f53d61
https://github.com/Microsoft/MS_UEFI/commit/33bab4031a417d7d5a7d356c15a14c2e60302b2d
Cc: Sean Brogan <sean.brogan@microsoft.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>
Reviewed-by: Sean Brogan <sean.brogan@microsoft.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
2017-04-25 01:37:20 +02:00
|
|
|
///
|
|
|
|
/// Minimum legal IA-32 INTN value.
|
|
|
|
///
|
|
|
|
#define MIN_INTN (((INTN)-2147483647) - 1)
|
|
|
|
|
2008-08-14 04:56:09 +02:00
|
|
|
///
|
2010-03-13 00:09:20 +01:00
|
|
|
/// The stack alignment required for IA-32.
|
2008-08-14 04:56:09 +02:00
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
#define CPU_STACK_ALIGNMENT sizeof(UINTN)
|
|
|
|
|
2017-03-03 16:11:31 +01:00
|
|
|
///
|
|
|
|
/// Page allocation granularity for IA-32.
|
|
|
|
///
|
|
|
|
#define DEFAULT_PAGE_ALLOCATION_GRANULARITY (0x1000)
|
|
|
|
#define RUNTIME_PAGE_ALLOCATION_GRANULARITY (0x1000)
|
|
|
|
|
2007-06-08 13:31:52 +02:00
|
|
|
//
|
|
|
|
// Modifier to ensure that all protocol member functions and EFI intrinsics
|
|
|
|
// use the correct C calling convention. All protocol member functions and
|
2008-12-05 03:28:51 +01:00
|
|
|
// EFI intrinsics are required to modify their member functions with EFIAPI.
|
2007-06-08 13:31:52 +02:00
|
|
|
//
|
2009-04-10 22:58:10 +02:00
|
|
|
#ifdef EFIAPI
|
|
|
|
///
|
|
|
|
/// If EFIAPI is already defined, then we use that definition.
|
|
|
|
///
|
|
|
|
#elif defined(_MSC_EXTENSIONS)
|
2008-08-14 04:56:09 +02:00
|
|
|
///
|
2010-03-13 00:09:20 +01:00
|
|
|
/// Microsoft* compiler specific method for EFIAPI calling convention.
|
2018-06-27 15:11:33 +02:00
|
|
|
///
|
|
|
|
#define EFIAPI __cdecl
|
2011-06-13 05:58:18 +02:00
|
|
|
#elif defined(__GNUC__)
|
|
|
|
///
|
|
|
|
/// GCC specific method for EFIAPI calling convention.
|
2018-06-27 15:11:33 +02:00
|
|
|
///
|
|
|
|
#define EFIAPI __attribute__((cdecl))
|
2008-06-02 04:22:31 +02:00
|
|
|
#else
|
2011-06-13 05:58:18 +02:00
|
|
|
///
|
|
|
|
/// The default for a non Microsoft* or GCC compiler is to assume the EFI ABI
|
2018-06-27 15:11:33 +02:00
|
|
|
/// is the standard.
|
2011-06-13 05:58:18 +02:00
|
|
|
///
|
|
|
|
#define EFIAPI
|
2007-06-08 13:31:52 +02:00
|
|
|
#endif
|
|
|
|
|
2009-02-23 06:51:02 +01:00
|
|
|
#if defined(__GNUC__)
|
2009-06-04 20:57:44 +02:00
|
|
|
///
|
|
|
|
/// For GNU assembly code, .global or .globl can declare global symbols.
|
|
|
|
/// Define this macro to unify the usage.
|
|
|
|
///
|
|
|
|
#define ASM_GLOBAL .globl
|
2007-07-24 07:34:35 +02:00
|
|
|
#endif
|
|
|
|
|
2008-12-04 09:35:07 +01:00
|
|
|
/**
|
|
|
|
Return the pointer to the first instruction of a function given a function pointer.
|
2018-06-27 15:11:33 +02:00
|
|
|
On IA-32 CPU architectures, these two pointer values are the same,
|
2008-12-04 09:35:07 +01:00
|
|
|
so the implementation of this macro is very simple.
|
2018-06-27 15:11:33 +02:00
|
|
|
|
2008-12-05 03:28:51 +01:00
|
|
|
@param FunctionPointer A pointer to a function.
|
2008-12-04 09:35:07 +01:00
|
|
|
|
|
|
|
@return The pointer to the first instruction of a function given a function pointer.
|
2018-06-27 15:11:33 +02:00
|
|
|
|
2008-12-04 09:35:07 +01:00
|
|
|
**/
|
2008-12-06 00:23:59 +01:00
|
|
|
#define FUNCTION_ENTRY_POINT(FunctionPointer) (VOID *)(UINTN)(FunctionPointer)
|
2007-11-27 03:48:59 +01:00
|
|
|
|
2014-09-01 19:23:10 +02:00
|
|
|
#ifndef __USER_LABEL_PREFIX__
|
|
|
|
#define __USER_LABEL_PREFIX__ _
|
|
|
|
#endif
|
|
|
|
|
2007-06-08 13:31:52 +02:00
|
|
|
#endif
|
|
|
|
|