2007-06-08 13:31:52 +02:00
|
|
|
/** @file
|
2009-06-04 18:16:15 +02:00
|
|
|
Processor or Compiler specific defines and types x64 (Intel 64, AMD64).
|
2007-06-08 13:31:52 +02:00
|
|
|
|
2019-08-01 08:07:55 +02:00
|
|
|
Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:06:00 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2007-06-08 13:31:52 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __PROCESSOR_BIND_H__
|
|
|
|
#define __PROCESSOR_BIND_H__
|
|
|
|
|
2008-08-14 06:30:49 +02:00
|
|
|
///
|
|
|
|
/// Define the processor type so other code can make processor based choices
|
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
#define MDE_CPU_X64
|
|
|
|
|
|
|
|
//
|
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-09-04 01:20:24 +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)
|
2008-09-04 01:20:24 +02:00
|
|
|
|
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 )
|
|
|
|
|
2020-02-03 09:20:48 +01:00
|
|
|
#if defined (_MSC_VER) && _MSC_VER >= 1800
|
2015-01-09 05:50:11 +01:00
|
|
|
|
|
|
|
//
|
2018-06-27 15:11:33 +02:00
|
|
|
// This warning is for potentially uninitialized local variable, and it may cause false
|
2023-03-21 23:45:35 +01:00
|
|
|
// positive issues in 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
|
2023-03-21 23:45:35 +01:00
|
|
|
// false positive issues in 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)
|
2021-12-05 23:54:05 +01:00
|
|
|
//
|
2016-09-12 10:35:39 +02:00
|
|
|
// use Microsoft C compiler dependent integer width types
|
2021-12-05 23:54:05 +01:00
|
|
|
//
|
2007-06-08 13:31:52 +02:00
|
|
|
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
|
|
|
/// 8-byte unsigned value
|
|
|
|
///
|
|
|
|
typedef unsigned __int64 UINT64;
|
|
|
|
///
|
|
|
|
/// 8-byte signed value
|
|
|
|
///
|
|
|
|
typedef __int64 INT64;
|
|
|
|
///
|
|
|
|
/// 4-byte unsigned value
|
|
|
|
///
|
|
|
|
typedef unsigned __int32 UINT32;
|
|
|
|
///
|
|
|
|
/// 4-byte signed value
|
|
|
|
///
|
|
|
|
typedef __int32 INT32;
|
2024-07-22 11:54:00 +02:00
|
|
|
#elif defined (__clang__)
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
2024-07-22 11:54:00 +02:00
|
|
|
/// 8-byte unsigned value
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2024-07-22 11:54:00 +02:00
|
|
|
typedef __UINT64_TYPE__ UINT64;
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
2024-07-22 11:54:00 +02:00
|
|
|
/// 8-byte signed value
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
2024-07-22 11:54:00 +02:00
|
|
|
typedef __INT64_TYPE__ INT64;
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
2024-07-22 11:54:00 +02:00
|
|
|
/// 4-byte unsigned value
|
2010-03-11 21:52:54 +01:00
|
|
|
///
|
2024-07-22 11:54:00 +02:00
|
|
|
typedef unsigned int UINT32;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2024-07-22 11:54:00 +02:00
|
|
|
/// 4-byte signed value
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2024-07-22 11:54:00 +02:00
|
|
|
typedef signed int INT32;
|
2010-03-11 21:52:54 +01:00
|
|
|
#else
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +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-11 21:52:54 +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-11 21:52:54 +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
|
|
|
///
|
|
|
|
/// 4-byte signed value
|
|
|
|
///
|
2010-03-11 21:52:54 +01:00
|
|
|
typedef int INT32;
|
2024-07-22 11:54:00 +02:00
|
|
|
#endif
|
|
|
|
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
2010-03-11 21:52:54 +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-11 21:52:54 +01:00
|
|
|
/// 2-byte signed value
|
|
|
|
///
|
|
|
|
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;
|
|
|
|
///
|
|
|
|
/// 1-byte unsigned value
|
|
|
|
///
|
|
|
|
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
|
|
|
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
|
|
|
/// Unsigned value of native width. (4 bytes on supported 32-bit processor instructions,
|
|
|
|
/// 8 bytes on supported 64-bit processor instructions)
|
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
typedef UINT64 UINTN;
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
|
|
|
/// Signed value of native width. (4 bytes on supported 32-bit processor instructions,
|
|
|
|
/// 8 bytes on supported 64-bit processor instructions)
|
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
typedef INT64 INTN;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Processor specific defines
|
|
|
|
//
|
2008-12-08 00:10:08 +01:00
|
|
|
|
|
|
|
///
|
|
|
|
/// A value of native width with the highest bit set.
|
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
#define MAX_BIT 0x8000000000000000ULL
|
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 0xC000000000000000ULL
|
|
|
|
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
|
|
|
/// Maximum legal x64 address
|
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
#define MAX_ADDRESS 0xFFFFFFFFFFFFFFFFULL
|
|
|
|
|
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 x64 INTN and UINTN values.
|
|
|
|
///
|
|
|
|
#define MAX_INTN ((INTN)0x7FFFFFFFFFFFFFFFULL)
|
|
|
|
#define MAX_UINTN ((UINTN)0xFFFFFFFFFFFFFFFFULL)
|
|
|
|
|
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 x64 INTN value.
|
|
|
|
///
|
|
|
|
#define MIN_INTN (((INTN)-9223372036854775807LL) - 1)
|
|
|
|
|
2008-12-08 00:10:08 +01:00
|
|
|
///
|
|
|
|
/// The stack alignment required for x64
|
|
|
|
///
|
2007-06-08 13:31:52 +02:00
|
|
|
#define CPU_STACK_ALIGNMENT 16
|
|
|
|
|
2017-03-03 16:11:31 +01:00
|
|
|
///
|
|
|
|
/// Page allocation granularity for x64
|
|
|
|
///
|
|
|
|
#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-08 00:10:08 +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)
|
2007-06-08 13:31:52 +02:00
|
|
|
///
|
2014-11-04 10:17:37 +01:00
|
|
|
/// Microsoft* compiler specific method for EFIAPI calling convention.
|
2018-06-27 15:11:33 +02:00
|
|
|
///
|
|
|
|
#define EFIAPI __cdecl
|
2009-02-23 06:51:02 +01:00
|
|
|
#elif defined (__GNUC__)
|
2007-06-08 13:31:52 +02:00
|
|
|
///
|
2014-11-04 10:17:37 +01:00
|
|
|
/// Define the standard calling convention regardless of optimization level.
|
2007-06-08 13:31:52 +02:00
|
|
|
/// The GCC support assumes a GCC compiler that supports the EFI ABI. The EFI
|
2018-06-27 15:11:33 +02:00
|
|
|
/// ABI is much closer to the x64 Microsoft* ABI than standard x64 (x86-64)
|
|
|
|
/// GCC ABI. Thus a standard x64 (x86-64) GCC compiler can not be used for
|
|
|
|
/// x64. Warning the assembly code in the MDE x64 does not follow the correct
|
2007-06-08 13:31:52 +02:00
|
|
|
/// ABI for the standard x64 (x86-64) GCC.
|
|
|
|
///
|
2018-06-27 15:11:33 +02:00
|
|
|
#define EFIAPI
|
2007-06-08 13:31:52 +02:00
|
|
|
#else
|
|
|
|
///
|
|
|
|
/// 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.
|
2007-06-08 13:31:52 +02:00
|
|
|
///
|
2018-06-27 15:11:33 +02:00
|
|
|
#define EFIAPI
|
2007-06-08 13:31:52 +02:00
|
|
|
#endif
|
|
|
|
|
2019-10-17 08:55:48 +02:00
|
|
|
#if defined (__GNUC__) || defined (__clang__)
|
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 x64 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
|