]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Include/Base.h
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / MdePkg / Include / Base.h
index 4fcc3a1bf651ecca2d22a7d981fcb23eaebab3c1..d209e6de280a0bb7a730b3c4f2ce515fd06b1fcc 100644 (file)
@@ -6,19 +6,12 @@
   environment. There are a set of base libraries in the Mde Package that can\r
   be used to implement base modules.\r
 \r
-Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>\r
+Copyright (c) 2006 - 2021, Intel Corporation. All rights reserved.<BR>\r
 Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>\r
-This program and the accompanying materials\r
-are licensed and made available under the terms and conditions of the BSD License\r
-which accompanies this distribution.  The full text of the license may be found at\r
-http://opensource.org/licenses/bsd-license.php.\r
-\r
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+SPDX-License-Identifier: BSD-2-Clause-Patent\r
 \r
 **/\r
 \r
-\r
 #ifndef __BASE_H__\r
 #define __BASE_H__\r
 \r
@@ -27,105 +20,217 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 //\r
 #include <ProcessorBind.h>\r
 \r
-\r
-/**\r
-  Verifies the storage size of a given data type.\r
-\r
-  This macro generates a divide by zero error or a zero size array declaration in\r
-  the preprocessor if the size is incorrect.  These are declared as "extern" so\r
-  the space for these arrays will not be in the modules.\r
-\r
-  @param  TYPE  The date type to determine the size of.\r
-  @param  Size  The expected size for the TYPE.\r
-\r
-**/\r
-#define VERIFY_SIZE_OF(TYPE, Size) extern UINT8 _VerifySizeof##TYPE[(sizeof(TYPE) == (Size)) / (sizeof(TYPE) == (Size))]\r
-\r
+#if defined (_MSC_EXTENSIONS)\r
 //\r
-// Verify that ProcessorBind.h produced UEFI Data Types that are compliant with\r
-// Section 2.3.1 of the UEFI 2.3 Specification.\r
+// Disable warning when last field of data structure is a zero sized array.\r
 //\r
-VERIFY_SIZE_OF (BOOLEAN, 1);\r
-VERIFY_SIZE_OF (INT8, 1);\r
-VERIFY_SIZE_OF (UINT8, 1);\r
-VERIFY_SIZE_OF (INT16, 2);\r
-VERIFY_SIZE_OF (UINT16, 2);\r
-VERIFY_SIZE_OF (INT32, 4);\r
-VERIFY_SIZE_OF (UINT32, 4);\r
-VERIFY_SIZE_OF (INT64, 8);\r
-VERIFY_SIZE_OF (UINT64, 8);\r
-VERIFY_SIZE_OF (CHAR8, 1);\r
-VERIFY_SIZE_OF (CHAR16, 2);\r
+  #pragma warning ( disable : 4200 )\r
+#endif\r
 \r
 //\r
 // The Microsoft* C compiler can removed references to unreferenced data items\r
 //  if the /OPT:REF linker option is used. We defined a macro as this is a\r
 //  a non standard extension\r
 //\r
-#if defined(_MSC_EXTENSIONS) && !defined (MDE_CPU_EBC)\r
-  ///\r
-  /// Remove global variable from the linked image if there are no references to\r
-  /// it after all compiler and linker optimizations have been performed.\r
-  ///\r
-  ///\r
-  #define GLOBAL_REMOVE_IF_UNREFERENCED __declspec(selectany)\r
+#if defined (_MSC_VER) && _MSC_VER < 1800 && !defined (MDE_CPU_EBC)\r
+///\r
+/// Remove global variable from the linked image if there are no references to\r
+/// it after all compiler and linker optimizations have been performed.\r
+///\r
+///\r
+#define GLOBAL_REMOVE_IF_UNREFERENCED  __declspec(selectany)\r
 #else\r
-  ///\r
-  /// Remove the global variable from the linked image if there are no references\r
-  ///  to it after all compiler and linker optimizations have been performed.\r
-  ///\r
-  ///\r
-  #define GLOBAL_REMOVE_IF_UNREFERENCED\r
+///\r
+/// Remove the global variable from the linked image if there are no references\r
+///  to it after all compiler and linker optimizations have been performed.\r
+///\r
+///\r
+#define GLOBAL_REMOVE_IF_UNREFERENCED\r
 #endif\r
 \r
 //\r
-// For symbol name in GNU assembly code, an extra "_" is necessary\r
+// Should be used in combination with NORETURN to avoid 'noreturn' returns\r
+// warnings.\r
 //\r
-#if defined(__GNUC__)\r
-  ///\r
-  /// Private worker functions for ASM_PFX()\r
-  ///\r
-  #define _CONCATENATE(a, b)  __CONCATENATE(a, b)\r
-  #define __CONCATENATE(a, b) a ## b\r
+#ifndef UNREACHABLE\r
+  #ifdef __GNUC__\r
+///\r
+/// Signal compilers and analyzers that this call is not reachable.  It is\r
+/// up to the compiler to remove any code past that point.\r
+///\r
+#define UNREACHABLE()  __builtin_unreachable ()\r
+  #elif defined (__has_feature)\r
+    #if __has_builtin (__builtin_unreachable)\r
+///\r
+/// Signal compilers and analyzers that this call is not reachable.  It is\r
+/// up to the compiler to remove any code past that point.\r
+///\r
+#define UNREACHABLE()  __builtin_unreachable ()\r
+    #endif\r
+  #endif\r
 \r
-  ///\r
-  /// The __USER_LABEL_PREFIX__ macro predefined by GNUC represents the prefix\r
-  /// on symbols in assembly language.\r
-  ///\r
-  #define ASM_PFX(name) _CONCATENATE (__USER_LABEL_PREFIX__, name)\r
+  #ifndef UNREACHABLE\r
+///\r
+/// Signal compilers and analyzers that this call is not reachable.  It is\r
+/// up to the compiler to remove any code past that point.\r
+///\r
+#define UNREACHABLE()\r
+  #endif\r
 #endif\r
 \r
-#if __APPLE__\r
-  //\r
-  // Apple extension that is used by the linker to optimize code size\r
-  // with assembly functions. Put at the end of your .S files\r
-  //\r
-  #define ASM_FUNCTION_REMOVE_IF_UNREFERENCED  .subsections_via_symbols\r
-#else\r
-  #define ASM_FUNCTION_REMOVE_IF_UNREFERENCED\r
+//\r
+// Signaling compilers and analyzers that a certain function cannot return may\r
+// remove all following code and thus lead to better optimization and less\r
+// false positives.\r
+//\r
+#ifndef NORETURN\r
+  #if defined (__GNUC__) || defined (__clang__)\r
+///\r
+/// Signal compilers and analyzers that the function cannot return.\r
+/// It is up to the compiler to remove any code past a call to functions\r
+/// flagged with this attribute.\r
+///\r
+#define NORETURN  __attribute__((noreturn))\r
+  #elif defined (_MSC_EXTENSIONS) && !defined (MDE_CPU_EBC)\r
+///\r
+/// Signal compilers and analyzers that the function cannot return.\r
+/// It is up to the compiler to remove any code past a call to functions\r
+/// flagged with this attribute.\r
+///\r
+#define NORETURN  __declspec(noreturn)\r
+  #else\r
+///\r
+/// Signal compilers and analyzers that the function cannot return.\r
+/// It is up to the compiler to remove any code past a call to functions\r
+/// flagged with this attribute.\r
+///\r
+#define NORETURN\r
+  #endif\r
 #endif\r
 \r
-#ifdef __CC_ARM\r
-  //\r
-  // Older RVCT ARM compilers don't fully support #pragma pack and require __packed\r
-  // as a prefix for the structure.\r
-  //\r
-  #define PACKED  __packed\r
+//\r
+// Should be used in combination with ANALYZER_NORETURN to avoid 'noreturn'\r
+// returns warnings.\r
+//\r
+#ifndef ANALYZER_UNREACHABLE\r
+  #ifdef __clang_analyzer__\r
+    #if __has_builtin (__builtin_unreachable)\r
+///\r
+/// Signal the analyzer that this call is not reachable.\r
+/// This excludes compilers.\r
+///\r
+#define ANALYZER_UNREACHABLE()  __builtin_unreachable ()\r
+    #endif\r
+  #endif\r
+\r
+  #ifndef ANALYZER_UNREACHABLE\r
+///\r
+/// Signal the analyzer that this call is not reachable.\r
+/// This excludes compilers.\r
+///\r
+#define ANALYZER_UNREACHABLE()\r
+  #endif\r
+#endif\r
+\r
+//\r
+// Static Analyzers may issue errors about potential NULL-dereferences when\r
+// dereferencing a pointer, that has been checked before, outside of a\r
+// NULL-check.  This may lead to false positives, such as when using ASSERT()\r
+// for verification.\r
+//\r
+#ifndef ANALYZER_NORETURN\r
+  #ifdef __has_feature\r
+    #if __has_feature (attribute_analyzer_noreturn)\r
+///\r
+/// Signal analyzers that the function cannot return.\r
+/// This excludes compilers.\r
+///\r
+#define ANALYZER_NORETURN  __attribute__((analyzer_noreturn))\r
+    #endif\r
+  #endif\r
+\r
+  #ifndef ANALYZER_NORETURN\r
+///\r
+/// Signal the analyzer that the function cannot return.\r
+/// This excludes compilers.\r
+///\r
+#define ANALYZER_NORETURN\r
+  #endif\r
+#endif\r
+\r
+///\r
+/// Tell the code optimizer that the function will return twice.\r
+/// This prevents wrong optimizations which can cause bugs.\r
+///\r
+#ifndef RETURNS_TWICE\r
+  #if defined (__GNUC__) || defined (__clang__)\r
+///\r
+/// Tell the code optimizer that the function will return twice.\r
+/// This prevents wrong optimizations which can cause bugs.\r
+///\r
+#define RETURNS_TWICE  __attribute__((returns_twice))\r
+  #else\r
+///\r
+/// Tell the code optimizer that the function will return twice.\r
+/// This prevents wrong optimizations which can cause bugs.\r
+///\r
+#define RETURNS_TWICE\r
+  #endif\r
+#endif\r
+\r
+//\r
+// For symbol name in assembly code, an extra "_" is sometimes necessary\r
+//\r
+\r
+///\r
+/// Private worker functions for ASM_PFX()\r
+///\r
+#define _CONCATENATE(a, b)   __CONCATENATE(a, b)\r
+#define __CONCATENATE(a, b)  a ## b\r
+\r
+///\r
+/// The __USER_LABEL_PREFIX__ macro predefined by GNUC represents the prefix\r
+/// on symbols in assembly language.\r
+///\r
+#define ASM_PFX(name)  _CONCATENATE (__USER_LABEL_PREFIX__, name)\r
+\r
+#ifdef __APPLE__\r
+//\r
+// Apple extension that is used by the linker to optimize code size\r
+// with assembly functions. Put at the end of your .S files\r
+//\r
+#define ASM_FUNCTION_REMOVE_IF_UNREFERENCED  .subsections_via_symbols\r
 #else\r
-  #define PACKED\r
+#define ASM_FUNCTION_REMOVE_IF_UNREFERENCED\r
 #endif\r
 \r
+#define PACKED\r
+\r
 ///\r
 /// 128 bit buffer containing a unique identifier value.\r
 /// Unless otherwise specified, aligned on a 64 bit boundary.\r
 ///\r
 typedef struct {\r
-  UINT32  Data1;\r
-  UINT16  Data2;\r
-  UINT16  Data3;\r
-  UINT8   Data4[8];\r
+  UINT32    Data1;\r
+  UINT16    Data2;\r
+  UINT16    Data3;\r
+  UINT8     Data4[8];\r
 } GUID;\r
 \r
+///\r
+/// 4-byte buffer. An IPv4 internet protocol address.\r
+///\r
+typedef struct {\r
+  UINT8    Addr[4];\r
+} IPv4_ADDRESS;\r
+\r
+///\r
+/// 16-byte buffer. An IPv6 internet protocol address.\r
+///\r
+typedef struct {\r
+  UINT8    Addr[16];\r
+} IPv6_ADDRESS;\r
+\r
 //\r
 // 8-bytes unsigned value that represents a physical system address.\r
 //\r
@@ -140,8 +245,8 @@ typedef struct _LIST_ENTRY LIST_ENTRY;
 /// _LIST_ENTRY structure definition.\r
 ///\r
 struct _LIST_ENTRY {\r
-  LIST_ENTRY  *ForwardLink;\r
-  LIST_ENTRY  *BackLink;\r
+  LIST_ENTRY    *ForwardLink;\r
+  LIST_ENTRY    *BackLink;\r
 };\r
 \r
 //\r
@@ -151,17 +256,17 @@ struct _LIST_ENTRY {
 ///\r
 /// Datum is read-only.\r
 ///\r
-#define CONST     const\r
+#define CONST  const\r
 \r
 ///\r
 /// Datum is scoped to the current file or function.\r
 ///\r
-#define STATIC    static\r
+#define STATIC  static\r
 \r
 ///\r
 /// Undeclared type.\r
 ///\r
-#define VOID      void\r
+#define VOID  void\r
 \r
 //\r
 // Modifiers for Data Types used to self document code.\r
@@ -186,7 +291,7 @@ struct _LIST_ENTRY {
 \r
 //\r
 //  UEFI specification claims 1 and 0. We are concerned about the\r
-//  complier portability so we did it this way.\r
+//  compiler portability so we did it this way.\r
 //\r
 \r
 ///\r
@@ -199,78 +304,110 @@ struct _LIST_ENTRY {
 /// Boolean false value.  UEFI Specification defines this value to be 0,\r
 /// but this form is more portable.\r
 ///\r
-#define FALSE ((BOOLEAN)(0==1))\r
+#define FALSE  ((BOOLEAN)(0==1))\r
 \r
 ///\r
 /// NULL pointer (VOID *)\r
 ///\r
+#if defined (__cplusplus)\r
+  #if defined (_MSC_EXTENSIONS)\r
+#define NULL  nullptr\r
+  #else\r
+#define NULL  __null\r
+  #endif\r
+#else\r
 #define NULL  ((VOID *) 0)\r
+#endif\r
 \r
-\r
-#define  BIT0     0x00000001\r
-#define  BIT1     0x00000002\r
-#define  BIT2     0x00000004\r
-#define  BIT3     0x00000008\r
-#define  BIT4     0x00000010\r
-#define  BIT5     0x00000020\r
-#define  BIT6     0x00000040\r
-#define  BIT7     0x00000080\r
-#define  BIT8     0x00000100\r
-#define  BIT9     0x00000200\r
-#define  BIT10    0x00000400\r
-#define  BIT11    0x00000800\r
-#define  BIT12    0x00001000\r
-#define  BIT13    0x00002000\r
-#define  BIT14    0x00004000\r
-#define  BIT15    0x00008000\r
-#define  BIT16    0x00010000\r
-#define  BIT17    0x00020000\r
-#define  BIT18    0x00040000\r
-#define  BIT19    0x00080000\r
-#define  BIT20    0x00100000\r
-#define  BIT21    0x00200000\r
-#define  BIT22    0x00400000\r
-#define  BIT23    0x00800000\r
-#define  BIT24    0x01000000\r
-#define  BIT25    0x02000000\r
-#define  BIT26    0x04000000\r
-#define  BIT27    0x08000000\r
-#define  BIT28    0x10000000\r
-#define  BIT29    0x20000000\r
-#define  BIT30    0x40000000\r
-#define  BIT31    0x80000000\r
-#define  BIT32    0x0000000100000000ULL\r
-#define  BIT33    0x0000000200000000ULL\r
-#define  BIT34    0x0000000400000000ULL\r
-#define  BIT35    0x0000000800000000ULL\r
-#define  BIT36    0x0000001000000000ULL\r
-#define  BIT37    0x0000002000000000ULL\r
-#define  BIT38    0x0000004000000000ULL\r
-#define  BIT39    0x0000008000000000ULL\r
-#define  BIT40    0x0000010000000000ULL\r
-#define  BIT41    0x0000020000000000ULL\r
-#define  BIT42    0x0000040000000000ULL\r
-#define  BIT43    0x0000080000000000ULL\r
-#define  BIT44    0x0000100000000000ULL\r
-#define  BIT45    0x0000200000000000ULL\r
-#define  BIT46    0x0000400000000000ULL\r
-#define  BIT47    0x0000800000000000ULL\r
-#define  BIT48    0x0001000000000000ULL\r
-#define  BIT49    0x0002000000000000ULL\r
-#define  BIT50    0x0004000000000000ULL\r
-#define  BIT51    0x0008000000000000ULL\r
-#define  BIT52    0x0010000000000000ULL\r
-#define  BIT53    0x0020000000000000ULL\r
-#define  BIT54    0x0040000000000000ULL\r
-#define  BIT55    0x0080000000000000ULL\r
-#define  BIT56    0x0100000000000000ULL\r
-#define  BIT57    0x0200000000000000ULL\r
-#define  BIT58    0x0400000000000000ULL\r
-#define  BIT59    0x0800000000000000ULL\r
-#define  BIT60    0x1000000000000000ULL\r
-#define  BIT61    0x2000000000000000ULL\r
-#define  BIT62    0x4000000000000000ULL\r
-#define  BIT63    0x8000000000000000ULL\r
+//\r
+// Null character\r
+//\r
+#define CHAR_NULL  0x0000\r
+\r
+///\r
+/// Maximum values for common UEFI Data Types\r
+///\r
+#define MAX_INT8    ((INT8)0x7F)\r
+#define MAX_UINT8   ((UINT8)0xFF)\r
+#define MAX_INT16   ((INT16)0x7FFF)\r
+#define MAX_UINT16  ((UINT16)0xFFFF)\r
+#define MAX_INT32   ((INT32)0x7FFFFFFF)\r
+#define MAX_UINT32  ((UINT32)0xFFFFFFFF)\r
+#define MAX_INT64   ((INT64)0x7FFFFFFFFFFFFFFFULL)\r
+#define MAX_UINT64  ((UINT64)0xFFFFFFFFFFFFFFFFULL)\r
+\r
+///\r
+/// Minimum values for the signed UEFI Data Types\r
+///\r
+#define MIN_INT8   (((INT8)  -127) - 1)\r
+#define MIN_INT16  (((INT16) -32767) - 1)\r
+#define MIN_INT32  (((INT32) -2147483647) - 1)\r
+#define MIN_INT64  (((INT64) -9223372036854775807LL) - 1)\r
+\r
+#define  BIT0   0x00000001\r
+#define  BIT1   0x00000002\r
+#define  BIT2   0x00000004\r
+#define  BIT3   0x00000008\r
+#define  BIT4   0x00000010\r
+#define  BIT5   0x00000020\r
+#define  BIT6   0x00000040\r
+#define  BIT7   0x00000080\r
+#define  BIT8   0x00000100\r
+#define  BIT9   0x00000200\r
+#define  BIT10  0x00000400\r
+#define  BIT11  0x00000800\r
+#define  BIT12  0x00001000\r
+#define  BIT13  0x00002000\r
+#define  BIT14  0x00004000\r
+#define  BIT15  0x00008000\r
+#define  BIT16  0x00010000\r
+#define  BIT17  0x00020000\r
+#define  BIT18  0x00040000\r
+#define  BIT19  0x00080000\r
+#define  BIT20  0x00100000\r
+#define  BIT21  0x00200000\r
+#define  BIT22  0x00400000\r
+#define  BIT23  0x00800000\r
+#define  BIT24  0x01000000\r
+#define  BIT25  0x02000000\r
+#define  BIT26  0x04000000\r
+#define  BIT27  0x08000000\r
+#define  BIT28  0x10000000\r
+#define  BIT29  0x20000000\r
+#define  BIT30  0x40000000\r
+#define  BIT31  0x80000000\r
+#define  BIT32  0x0000000100000000ULL\r
+#define  BIT33  0x0000000200000000ULL\r
+#define  BIT34  0x0000000400000000ULL\r
+#define  BIT35  0x0000000800000000ULL\r
+#define  BIT36  0x0000001000000000ULL\r
+#define  BIT37  0x0000002000000000ULL\r
+#define  BIT38  0x0000004000000000ULL\r
+#define  BIT39  0x0000008000000000ULL\r
+#define  BIT40  0x0000010000000000ULL\r
+#define  BIT41  0x0000020000000000ULL\r
+#define  BIT42  0x0000040000000000ULL\r
+#define  BIT43  0x0000080000000000ULL\r
+#define  BIT44  0x0000100000000000ULL\r
+#define  BIT45  0x0000200000000000ULL\r
+#define  BIT46  0x0000400000000000ULL\r
+#define  BIT47  0x0000800000000000ULL\r
+#define  BIT48  0x0001000000000000ULL\r
+#define  BIT49  0x0002000000000000ULL\r
+#define  BIT50  0x0004000000000000ULL\r
+#define  BIT51  0x0008000000000000ULL\r
+#define  BIT52  0x0010000000000000ULL\r
+#define  BIT53  0x0020000000000000ULL\r
+#define  BIT54  0x0040000000000000ULL\r
+#define  BIT55  0x0080000000000000ULL\r
+#define  BIT56  0x0100000000000000ULL\r
+#define  BIT57  0x0200000000000000ULL\r
+#define  BIT58  0x0400000000000000ULL\r
+#define  BIT59  0x0800000000000000ULL\r
+#define  BIT60  0x1000000000000000ULL\r
+#define  BIT61  0x2000000000000000ULL\r
+#define  BIT62  0x4000000000000000ULL\r
+#define  BIT63  0x8000000000000000ULL\r
 \r
 #define  SIZE_1KB    0x00000400\r
 #define  SIZE_2KB    0x00000800\r
@@ -383,20 +520,24 @@ struct _LIST_ENTRY {
 #define  BASE_8EB    0x8000000000000000ULL\r
 \r
 //\r
-//  Support for variable length argument lists using the ANSI standard.\r
+//  Support for variable argument lists in freestanding edk2 modules.\r
 //\r
-//  Since we are using the ANSI standard we used the standard naming and\r
-//  did not follow the coding convention\r
+//  For modules that use the ISO C library interfaces for variable\r
+//  argument lists, refer to "StdLib/Include/stdarg.h".\r
 //\r
 //  VA_LIST  - typedef for argument list.\r
 //  VA_START (VA_LIST Marker, argument before the ...) - Init Marker for use.\r
 //  VA_END (VA_LIST Marker) - Clear Marker\r
-//  VA_ARG (VA_LIST Marker, var arg size) - Use Marker to get an argument from\r
-//    the ... list. You must know the size and pass it in this macro.\r
+//  VA_ARG (VA_LIST Marker, var arg type) - Use Marker to get an argument from\r
+//    the ... list. You must know the type and pass it in this macro.  Type\r
+//    must be compatible with the type of the actual next argument (as promoted\r
+//    according to the default argument promotions.)\r
+//  VA_COPY (VA_LIST Dest, VA_LIST Start) - Initialize Dest as a copy of Start.\r
 //\r
-//  example:\r
+//  Example:\r
 //\r
 //  UINTN\r
+//  EFIAPI\r
 //  ExampleVarArg (\r
 //    IN UINTN  NumberOfArgs,\r
 //    ...\r
@@ -412,15 +553,21 @@ struct _LIST_ENTRY {
 //    VA_START (Marker, NumberOfArgs);\r
 //    for (Index = 0, Result = 0; Index < NumberOfArgs; Index++) {\r
 //      //\r
-//      // The ... list is a series of UINTN values, so average them up.\r
+//      // The ... list is a series of UINTN values, so sum them up.\r
 //      //\r
 //      Result += VA_ARG (Marker, UINTN);\r
 //    }\r
 //\r
 //    VA_END (Marker);\r
-//    return Result\r
+//    return Result;\r
 //  }\r
 //\r
+//  Notes:\r
+//  - Functions that call VA_START() / VA_END() must have a variable\r
+//    argument list and must be declared EFIAPI.\r
+//  - Functions that call VA_COPY() / VA_END() must be declared EFIAPI.\r
+//  - Functions that only use VA_LIST and VA_ARG() need not be EFIAPI.\r
+//\r
 \r
 /**\r
   Return the size of argument that has been aligned to sizeof (UINTN).\r
@@ -429,32 +576,45 @@ struct _LIST_ENTRY {
 \r
   @return The aligned size.\r
 **/\r
-#define _INT_SIZE_OF(n) ((sizeof (n) + sizeof (UINTN) - 1) &~(sizeof (UINTN) - 1))\r
+#define _INT_SIZE_OF(n)  ((sizeof (n) + sizeof (UINTN) - 1) &~(sizeof (UINTN) - 1))\r
+\r
+#if defined (_M_ARM) || defined (_M_ARM64)\r
+//\r
+// MSFT ARM variable argument list support.\r
+//\r
+\r
+typedef char *VA_LIST;\r
+\r
+#define VA_START(Marker, Parameter)  __va_start (&Marker, &Parameter, _INT_SIZE_OF (Parameter), __alignof(Parameter), &Parameter)\r
+#define VA_ARG(Marker, TYPE)         (*(TYPE *) ((Marker += _INT_SIZE_OF (TYPE) + ((-(INTN)Marker) & (sizeof(TYPE) - 1))) - _INT_SIZE_OF (TYPE)))\r
+#define VA_END(Marker)               (Marker = (VA_LIST) 0)\r
+#define VA_COPY(Dest, Start)         ((void)((Dest) = (Start)))\r
 \r
-#if defined(__CC_ARM)\r
+#elif defined (__GNUC__) || defined (__clang__)\r
+\r
+  #if defined (MDE_CPU_X64) && !defined (NO_MSABI_VA_FUNCS)\r
 //\r
-// RVCT ARM variable argument list support.\r
+// X64 only. Use MS ABI version of GCC built-in macros for variable argument lists.\r
 //\r
+///\r
+/// Both GCC and LLVM 3.8 for X64 support new variable argument intrinsics for Microsoft ABI\r
+///\r
 \r
 ///\r
 /// Variable used to traverse the list of arguments. This type can vary by\r
 /// implementation and could be an array or structure.\r
 ///\r
-#ifdef __APCS_ADSABI\r
-  typedef int         *va_list[1];\r
-  #define VA_LIST     va_list\r
-#else\r
-  typedef struct __va_list { void *__ap; } va_list;\r
-  #define VA_LIST                          va_list\r
-#endif\r
+typedef __builtin_ms_va_list VA_LIST;\r
 \r
-#define VA_START(Marker, Parameter)   __va_start(Marker, Parameter)\r
+#define VA_START(Marker, Parameter)  __builtin_ms_va_start (Marker, Parameter)\r
 \r
-#define VA_ARG(Marker, TYPE)          __va_arg(Marker, TYPE)\r
+#define VA_ARG(Marker, TYPE)  ((sizeof (TYPE) < sizeof (UINTN)) ? (TYPE)(__builtin_va_arg (Marker, UINTN)) : (TYPE)(__builtin_va_arg (Marker, TYPE)))\r
 \r
-#define VA_END(Marker)                ((void)0)\r
+#define VA_END(Marker)  __builtin_ms_va_end (Marker)\r
 \r
-#elif defined(__GNUC__) && !defined(NO_BUILTIN_VA_FUNCS)\r
+#define VA_COPY(Dest, Start)  __builtin_ms_va_copy (Dest, Start)\r
+\r
+  #else\r
 //\r
 // Use GCC built-in macros for variable argument lists.\r
 //\r
@@ -467,9 +627,13 @@ typedef __builtin_va_list VA_LIST;
 \r
 #define VA_START(Marker, Parameter)  __builtin_va_start (Marker, Parameter)\r
 \r
-#define VA_ARG(Marker, TYPE)         ((sizeof (TYPE) < sizeof (UINTN)) ? (TYPE)(__builtin_va_arg (Marker, UINTN)) : (TYPE)(__builtin_va_arg (Marker, TYPE)))\r
+#define VA_ARG(Marker, TYPE)  ((sizeof (TYPE) < sizeof (UINTN)) ? (TYPE)(__builtin_va_arg (Marker, UINTN)) : (TYPE)(__builtin_va_arg (Marker, TYPE)))\r
+\r
+#define VA_END(Marker)  __builtin_va_end (Marker)\r
+\r
+#define VA_COPY(Dest, Start)  __builtin_va_copy (Dest, Start)\r
 \r
-#define VA_END(Marker)               __builtin_va_end (Marker)\r
+  #endif\r
 \r
 #else\r
 ///\r
@@ -494,7 +658,7 @@ typedef CHAR8 *VA_LIST;
   @return  A pointer to the beginning of a variable argument list.\r
 \r
 **/\r
-#define VA_START(Marker, Parameter) (Marker = (VA_LIST) ((UINTN) & (Parameter) + _INT_SIZE_OF (Parameter)))\r
+#define VA_START(Marker, Parameter)  (Marker = (VA_LIST) ((UINTN) & (Parameter) + _INT_SIZE_OF (Parameter)))\r
 \r
 /**\r
   Returns an argument of a specified type from a variable argument list and updates\r
@@ -512,7 +676,7 @@ typedef CHAR8 *VA_LIST;
   @return  An argument of the type specified by TYPE.\r
 \r
 **/\r
-#define VA_ARG(Marker, TYPE)   (*(TYPE *) ((Marker += _INT_SIZE_OF (TYPE)) - _INT_SIZE_OF (TYPE)))\r
+#define VA_ARG(Marker, TYPE)  (*(TYPE *) ((Marker += _INT_SIZE_OF (TYPE)) - _INT_SIZE_OF (TYPE)))\r
 \r
 /**\r
   Terminates the use of a variable argument list.\r
@@ -524,14 +688,27 @@ typedef CHAR8 *VA_LIST;
   @param   Marker   VA_LIST used to traverse the list of arguments.\r
 \r
 **/\r
-#define VA_END(Marker)      (Marker = (VA_LIST) 0)\r
+#define VA_END(Marker)  (Marker = (VA_LIST) 0)\r
+\r
+/**\r
+  Initializes a VA_LIST as a copy of an existing VA_LIST.\r
+\r
+  This macro initializes Dest as a copy of Start, as if the VA_START macro had been applied to Dest\r
+  followed by the same sequence of uses of the VA_ARG macro as had previously been used to reach\r
+  the present state of Start.\r
+\r
+  @param   Dest   VA_LIST used to traverse the list of arguments.\r
+  @param   Start  VA_LIST used to traverse the list of arguments.\r
+\r
+**/\r
+#define VA_COPY(Dest, Start)  ((void)((Dest) = (Start)))\r
 \r
 #endif\r
 \r
 ///\r
 /// Pointer to the start of a variable argument list stored in a memory buffer. Same as UINT8 *.\r
 ///\r
-typedef UINTN  *BASE_LIST;\r
+typedef UINTN *BASE_LIST;\r
 \r
 /**\r
   Returns the size of a data type in sizeof(UINTN) units rounded up to the nearest UINTN boundary.\r
@@ -540,7 +717,7 @@ typedef UINTN  *BASE_LIST;
 \r
   @return The size of TYPE in sizeof (UINTN) units rounded up to the nearest UINTN boundary.\r
 **/\r
-#define _BASE_INT_SIZE_OF(TYPE) ((sizeof (TYPE) + sizeof (UINTN) - 1) / sizeof (UINTN))\r
+#define _BASE_INT_SIZE_OF(TYPE)  ((sizeof (TYPE) + sizeof (UINTN) - 1) / sizeof (UINTN))\r
 \r
 /**\r
   Returns an argument of a specified type from a variable argument list and updates\r
@@ -558,7 +735,7 @@ typedef UINTN  *BASE_LIST;
   @return  An argument of the type specified by TYPE.\r
 \r
 **/\r
-#define BASE_ARG(Marker, TYPE)   (*(TYPE *) ((Marker += _BASE_INT_SIZE_OF (TYPE)) - _BASE_INT_SIZE_OF (TYPE)))\r
+#define BASE_ARG(Marker, TYPE)  (*(TYPE *) ((Marker += _BASE_INT_SIZE_OF (TYPE)) - _BASE_INT_SIZE_OF (TYPE)))\r
 \r
 /**\r
   The macro that returns the byte offset of a field in a data structure.\r
@@ -573,16 +750,72 @@ typedef UINTN  *BASE_LIST;
   @return  Offset, in bytes, of field.\r
 \r
 **/\r
-#ifdef __GNUC__\r
-#if __GNUC__ >= 4\r
-#define OFFSET_OF(TYPE, Field) ((UINTN) __builtin_offsetof(TYPE, Field))\r
-#endif\r
+#if (defined (__GNUC__) && __GNUC__ >= 4) || defined (__clang__)\r
+#define OFFSET_OF(TYPE, Field)  ((UINTN) __builtin_offsetof(TYPE, Field))\r
 #endif\r
 \r
 #ifndef OFFSET_OF\r
-#define OFFSET_OF(TYPE, Field) ((UINTN) &(((TYPE *)0)->Field))\r
+#define OFFSET_OF(TYPE, Field)  ((UINTN) &(((TYPE *)0)->Field))\r
+#endif\r
+\r
+/**\r
+  Portable definition for compile time assertions.\r
+  Equivalent to C11 static_assert macro from assert.h.\r
+\r
+  @param  Expression  Boolean expression.\r
+  @param  Message     Raised compiler diagnostic message when expression is false.\r
+\r
+**/\r
+#ifdef MDE_CPU_EBC\r
+#define STATIC_ASSERT(Expression, Message)\r
+#elif defined (_MSC_EXTENSIONS) || defined (__cplusplus)\r
+#define STATIC_ASSERT  static_assert\r
+#else\r
+#define STATIC_ASSERT  _Static_assert\r
 #endif\r
 \r
+//\r
+// Verify that ProcessorBind.h produced UEFI Data Types that are compliant with\r
+// Section 2.3.1 of the UEFI 2.3 Specification.\r
+//\r
+\r
+STATIC_ASSERT (sizeof (BOOLEAN) == 1, "sizeof (BOOLEAN) does not meet UEFI Specification Data Type requirements");\r
+STATIC_ASSERT (sizeof (INT8)    == 1, "sizeof (INT8) does not meet UEFI Specification Data Type requirements");\r
+STATIC_ASSERT (sizeof (UINT8)   == 1, "sizeof (UINT8) does not meet UEFI Specification Data Type requirements");\r
+STATIC_ASSERT (sizeof (INT16)   == 2, "sizeof (INT16) does not meet UEFI Specification Data Type requirements");\r
+STATIC_ASSERT (sizeof (UINT16)  == 2, "sizeof (UINT16) does not meet UEFI Specification Data Type requirements");\r
+STATIC_ASSERT (sizeof (INT32)   == 4, "sizeof (INT32) does not meet UEFI Specification Data Type requirements");\r
+STATIC_ASSERT (sizeof (UINT32)  == 4, "sizeof (UINT32) does not meet UEFI Specification Data Type requirements");\r
+STATIC_ASSERT (sizeof (INT64)   == 8, "sizeof (INT64) does not meet UEFI Specification Data Type requirements");\r
+STATIC_ASSERT (sizeof (UINT64)  == 8, "sizeof (UINT64) does not meet UEFI Specification Data Type requirements");\r
+STATIC_ASSERT (sizeof (CHAR8)   == 1, "sizeof (CHAR8) does not meet UEFI Specification Data Type requirements");\r
+STATIC_ASSERT (sizeof (CHAR16)  == 2, "sizeof (CHAR16) does not meet UEFI Specification Data Type requirements");\r
+STATIC_ASSERT (sizeof (L'A')    == 2, "sizeof (L'A') does not meet UEFI Specification Data Type requirements");\r
+STATIC_ASSERT (sizeof (L"A")    == 4, "sizeof (L\"A\") does not meet UEFI Specification Data Type requirements");\r
+\r
+//\r
+// The following three enum types are used to verify that the compiler\r
+// configuration for enum types is compliant with Section 2.3.1 of the\r
+// UEFI 2.3 Specification. These enum types and enum values are not\r
+// intended to be used. A prefix of '__' is used avoid conflicts with\r
+// other types.\r
+//\r
+typedef enum {\r
+  __VerifyUint8EnumValue = 0xff\r
+} __VERIFY_UINT8_ENUM_SIZE;\r
+\r
+typedef enum {\r
+  __VerifyUint16EnumValue = 0xffff\r
+} __VERIFY_UINT16_ENUM_SIZE;\r
+\r
+typedef enum {\r
+  __VerifyUint32EnumValue = 0xffffffff\r
+} __VERIFY_UINT32_ENUM_SIZE;\r
+\r
+STATIC_ASSERT (sizeof (__VERIFY_UINT8_ENUM_SIZE) == 4, "Size of enum does not meet UEFI Specification Data Type requirements");\r
+STATIC_ASSERT (sizeof (__VERIFY_UINT16_ENUM_SIZE) == 4, "Size of enum does not meet UEFI Specification Data Type requirements");\r
+STATIC_ASSERT (sizeof (__VERIFY_UINT32_ENUM_SIZE) == 4, "Size of enum does not meet UEFI Specification Data Type requirements");\r
+\r
 /**\r
   Macro that returns a pointer to the data structure that contains a specified field of\r
   that data structure.  This is a lightweight method to hide information by placing a\r
@@ -602,7 +835,7 @@ typedef UINTN  *BASE_LIST;
   @return  A pointer to the structure from one of it's elements.\r
 \r
 **/\r
-#define BASE_CR(Record, TYPE, Field)  ((TYPE *) ((CHAR8 *) (Record) - (CHAR8 *) &(((TYPE *) 0)->Field)))\r
+#define BASE_CR(Record, TYPE, Field)  ((TYPE *) ((CHAR8 *) (Record) - OFFSET_OF (TYPE, Field)))\r
 \r
 /**\r
   Rounds a value up to the next boundary using a specified alignment.\r
@@ -616,7 +849,7 @@ typedef UINTN  *BASE_LIST;
   @return  A value up to the next boundary.\r
 \r
 **/\r
-#define ALIGN_VALUE(Value, Alignment) ((Value) + (((Alignment) - (Value)) & ((Alignment) - 1)))\r
+#define ALIGN_VALUE(Value, Alignment)  ((Value) + (((Alignment) - (Value)) & ((Alignment) - 1)))\r
 \r
 /**\r
   Adjust a pointer by adding the minimum offset required for it to be aligned on\r
@@ -631,7 +864,7 @@ typedef UINTN  *BASE_LIST;
   @return  Pointer to the aligned address.\r
 \r
 **/\r
-#define ALIGN_POINTER(Pointer, Alignment) ((VOID *) (ALIGN_VALUE ((UINTN)(Pointer), (Alignment))))\r
+#define ALIGN_POINTER(Pointer, Alignment)  ((VOID *) (ALIGN_VALUE ((UINTN)(Pointer), (Alignment))))\r
 \r
 /**\r
   Rounds a value up to the next natural boundary for the current CPU.\r
@@ -647,7 +880,6 @@ typedef UINTN  *BASE_LIST;
 **/\r
 #define ALIGN_VARIABLE(Value)  ALIGN_VALUE ((Value), sizeof (UINTN))\r
 \r
-\r
 /**\r
   Return the maximum of two operands.\r
 \r
@@ -706,7 +938,7 @@ typedef UINTN RETURN_STATUS;
   @return The value specified by StatusCode with the highest bit set.\r
 \r
 **/\r
-#define ENCODE_ERROR(StatusCode)     ((RETURN_STATUS)(MAX_BIT | (StatusCode)))\r
+#define ENCODE_ERROR(StatusCode)  ((RETURN_STATUS)(MAX_BIT | (StatusCode)))\r
 \r
 /**\r
   Produces a RETURN_STATUS code with the highest bit clear.\r
@@ -717,7 +949,7 @@ typedef UINTN RETURN_STATUS;
   @return The value specified by StatusCode with the highest bit clear.\r
 \r
 **/\r
-#define ENCODE_WARNING(StatusCode)   ((RETURN_STATUS)(StatusCode))\r
+#define ENCODE_WARNING(StatusCode)  ((RETURN_STATUS)(StatusCode))\r
 \r
 /**\r
   Returns TRUE if a specified RETURN_STATUS code is an error code.\r
@@ -730,138 +962,138 @@ typedef UINTN RETURN_STATUS;
   @retval FALSE         The high bit of StatusCode is clear.\r
 \r
 **/\r
-#define RETURN_ERROR(StatusCode)     (((INTN)(RETURN_STATUS)(StatusCode)) < 0)\r
+#define RETURN_ERROR(StatusCode)  (((INTN)(RETURN_STATUS)(StatusCode)) < 0)\r
 \r
 ///\r
 /// The operation completed successfully.\r
 ///\r
-#define RETURN_SUCCESS               0\r
+#define RETURN_SUCCESS  (RETURN_STATUS)(0)\r
 \r
 ///\r
 /// The image failed to load.\r
 ///\r
-#define RETURN_LOAD_ERROR            ENCODE_ERROR (1)\r
+#define RETURN_LOAD_ERROR  ENCODE_ERROR (1)\r
 \r
 ///\r
 /// The parameter was incorrect.\r
 ///\r
-#define RETURN_INVALID_PARAMETER     ENCODE_ERROR (2)\r
+#define RETURN_INVALID_PARAMETER  ENCODE_ERROR (2)\r
 \r
 ///\r
 /// The operation is not supported.\r
 ///\r
-#define RETURN_UNSUPPORTED           ENCODE_ERROR (3)\r
+#define RETURN_UNSUPPORTED  ENCODE_ERROR (3)\r
 \r
 ///\r
 /// The buffer was not the proper size for the request.\r
 ///\r
-#define RETURN_BAD_BUFFER_SIZE       ENCODE_ERROR (4)\r
+#define RETURN_BAD_BUFFER_SIZE  ENCODE_ERROR (4)\r
 \r
 ///\r
 /// The buffer was not large enough to hold the requested data.\r
 /// The required buffer size is returned in the appropriate\r
 /// parameter when this error occurs.\r
 ///\r
-#define RETURN_BUFFER_TOO_SMALL      ENCODE_ERROR (5)\r
+#define RETURN_BUFFER_TOO_SMALL  ENCODE_ERROR (5)\r
 \r
 ///\r
 /// There is no data pending upon return.\r
 ///\r
-#define RETURN_NOT_READY             ENCODE_ERROR (6)\r
+#define RETURN_NOT_READY  ENCODE_ERROR (6)\r
 \r
 ///\r
 /// The physical device reported an error while attempting the\r
 /// operation.\r
 ///\r
-#define RETURN_DEVICE_ERROR          ENCODE_ERROR (7)\r
+#define RETURN_DEVICE_ERROR  ENCODE_ERROR (7)\r
 \r
 ///\r
 /// The device can not be written to.\r
 ///\r
-#define RETURN_WRITE_PROTECTED       ENCODE_ERROR (8)\r
+#define RETURN_WRITE_PROTECTED  ENCODE_ERROR (8)\r
 \r
 ///\r
 /// The resource has run out.\r
 ///\r
-#define RETURN_OUT_OF_RESOURCES      ENCODE_ERROR (9)\r
+#define RETURN_OUT_OF_RESOURCES  ENCODE_ERROR (9)\r
 \r
 ///\r
 /// An inconsistency was detected on the file system causing the\r
 /// operation to fail.\r
 ///\r
-#define RETURN_VOLUME_CORRUPTED      ENCODE_ERROR (10)\r
+#define RETURN_VOLUME_CORRUPTED  ENCODE_ERROR (10)\r
 \r
 ///\r
 /// There is no more space on the file system.\r
 ///\r
-#define RETURN_VOLUME_FULL           ENCODE_ERROR (11)\r
+#define RETURN_VOLUME_FULL  ENCODE_ERROR (11)\r
 \r
 ///\r
 /// The device does not contain any medium to perform the\r
 /// operation.\r
 ///\r
-#define RETURN_NO_MEDIA              ENCODE_ERROR (12)\r
+#define RETURN_NO_MEDIA  ENCODE_ERROR (12)\r
 \r
 ///\r
 /// The medium in the device has changed since the last\r
 /// access.\r
 ///\r
-#define RETURN_MEDIA_CHANGED         ENCODE_ERROR (13)\r
+#define RETURN_MEDIA_CHANGED  ENCODE_ERROR (13)\r
 \r
 ///\r
 /// The item was not found.\r
 ///\r
-#define RETURN_NOT_FOUND             ENCODE_ERROR (14)\r
+#define RETURN_NOT_FOUND  ENCODE_ERROR (14)\r
 \r
 ///\r
 /// Access was denied.\r
 ///\r
-#define RETURN_ACCESS_DENIED         ENCODE_ERROR (15)\r
+#define RETURN_ACCESS_DENIED  ENCODE_ERROR (15)\r
 \r
 ///\r
 /// The server was not found or did not respond to the request.\r
 ///\r
-#define RETURN_NO_RESPONSE           ENCODE_ERROR (16)\r
+#define RETURN_NO_RESPONSE  ENCODE_ERROR (16)\r
 \r
 ///\r
 /// A mapping to the device does not exist.\r
 ///\r
-#define RETURN_NO_MAPPING            ENCODE_ERROR (17)\r
+#define RETURN_NO_MAPPING  ENCODE_ERROR (17)\r
 \r
 ///\r
 /// A timeout time expired.\r
 ///\r
-#define RETURN_TIMEOUT               ENCODE_ERROR (18)\r
+#define RETURN_TIMEOUT  ENCODE_ERROR (18)\r
 \r
 ///\r
 /// The protocol has not been started.\r
 ///\r
-#define RETURN_NOT_STARTED           ENCODE_ERROR (19)\r
+#define RETURN_NOT_STARTED  ENCODE_ERROR (19)\r
 \r
 ///\r
 /// The protocol has already been started.\r
 ///\r
-#define RETURN_ALREADY_STARTED       ENCODE_ERROR (20)\r
+#define RETURN_ALREADY_STARTED  ENCODE_ERROR (20)\r
 \r
 ///\r
 /// The operation was aborted.\r
 ///\r
-#define RETURN_ABORTED               ENCODE_ERROR (21)\r
+#define RETURN_ABORTED  ENCODE_ERROR (21)\r
 \r
 ///\r
 /// An ICMP error occurred during the network operation.\r
 ///\r
-#define RETURN_ICMP_ERROR            ENCODE_ERROR (22)\r
+#define RETURN_ICMP_ERROR  ENCODE_ERROR (22)\r
 \r
 ///\r
 /// A TFTP error occurred during the network operation.\r
 ///\r
-#define RETURN_TFTP_ERROR            ENCODE_ERROR (23)\r
+#define RETURN_TFTP_ERROR  ENCODE_ERROR (23)\r
 \r
 ///\r
 /// A protocol error occurred during the network operation.\r
 ///\r
-#define RETURN_PROTOCOL_ERROR        ENCODE_ERROR (24)\r
+#define RETURN_PROTOCOL_ERROR  ENCODE_ERROR (24)\r
 \r
 ///\r
 /// A function encountered an internal version that was\r
@@ -872,63 +1104,73 @@ typedef UINTN RETURN_STATUS;
 ///\r
 /// The function was not performed due to a security violation.\r
 ///\r
-#define RETURN_SECURITY_VIOLATION    ENCODE_ERROR (26)\r
+#define RETURN_SECURITY_VIOLATION  ENCODE_ERROR (26)\r
 \r
 ///\r
 /// A CRC error was detected.\r
 ///\r
-#define RETURN_CRC_ERROR             ENCODE_ERROR (27)\r
+#define RETURN_CRC_ERROR  ENCODE_ERROR (27)\r
 \r
 ///\r
 /// The beginning or end of media was reached.\r
 ///\r
-#define RETURN_END_OF_MEDIA          ENCODE_ERROR (28)\r
+#define RETURN_END_OF_MEDIA  ENCODE_ERROR (28)\r
 \r
 ///\r
 /// The end of the file was reached.\r
 ///\r
-#define RETURN_END_OF_FILE           ENCODE_ERROR (31)\r
+#define RETURN_END_OF_FILE  ENCODE_ERROR (31)\r
 \r
 ///\r
 /// The language specified was invalid.\r
 ///\r
-#define RETURN_INVALID_LANGUAGE      ENCODE_ERROR (32)\r
+#define RETURN_INVALID_LANGUAGE  ENCODE_ERROR (32)\r
 \r
 ///\r
 /// The security status of the data is unknown or compromised\r
 /// and the data must be updated or replaced to restore a valid\r
 /// security status.\r
 ///\r
-#define RETURN_COMPROMISED_DATA      ENCODE_ERROR (33)\r
+#define RETURN_COMPROMISED_DATA  ENCODE_ERROR (33)\r
+\r
+///\r
+/// A HTTP error occurred during the network operation.\r
+///\r
+#define RETURN_HTTP_ERROR  ENCODE_ERROR (35)\r
 \r
 ///\r
 /// The string contained one or more characters that\r
 /// the device could not render and were skipped.\r
 ///\r
-#define RETURN_WARN_UNKNOWN_GLYPH    ENCODE_WARNING (1)\r
+#define RETURN_WARN_UNKNOWN_GLYPH  ENCODE_WARNING (1)\r
 \r
 ///\r
 /// The handle was closed, but the file was not deleted.\r
 ///\r
-#define RETURN_WARN_DELETE_FAILURE   ENCODE_WARNING (2)\r
+#define RETURN_WARN_DELETE_FAILURE  ENCODE_WARNING (2)\r
 \r
 ///\r
 /// The handle was closed, but the data to the file was not\r
 /// flushed properly.\r
 ///\r
-#define RETURN_WARN_WRITE_FAILURE    ENCODE_WARNING (3)\r
+#define RETURN_WARN_WRITE_FAILURE  ENCODE_WARNING (3)\r
 \r
 ///\r
 /// The resulting buffer was too small, and the data was\r
 /// truncated to the buffer size.\r
 ///\r
-#define RETURN_WARN_BUFFER_TOO_SMALL ENCODE_WARNING (4)\r
+#define RETURN_WARN_BUFFER_TOO_SMALL  ENCODE_WARNING (4)\r
 \r
 ///\r
 /// The data has not been updated within the timeframe set by\r
 /// local policy for this type of data.\r
 ///\r
-#define RETURN_WARN_STALE_DATA       ENCODE_WARNING (5)\r
+#define RETURN_WARN_STALE_DATA  ENCODE_WARNING (5)\r
+\r
+///\r
+/// The resulting buffer contains UEFI-compliant file system.\r
+///\r
+#define RETURN_WARN_FILE_SYSTEM  ENCODE_WARNING (6)\r
 \r
 /**\r
   Returns a 16-bit signature built from 2 ASCII characters.\r
@@ -942,7 +1184,7 @@ typedef UINTN RETURN_STATUS;
   @return A 16-bit value built from the two ASCII characters specified by A and B.\r
 \r
 **/\r
-#define SIGNATURE_16(A, B)        ((A) | (B << 8))\r
+#define SIGNATURE_16(A, B)  ((A) | (B << 8))\r
 \r
 /**\r
   Returns a 32-bit signature built from 4 ASCII characters.\r
@@ -983,5 +1225,65 @@ typedef UINTN RETURN_STATUS;
 #define SIGNATURE_64(A, B, C, D, E, F, G, H) \\r
     (SIGNATURE_32 (A, B, C, D) | ((UINT64) (SIGNATURE_32 (E, F, G, H)) << 32))\r
 \r
+#if defined (_MSC_EXTENSIONS) && !defined (__INTEL_COMPILER) && !defined (MDE_CPU_EBC)\r
+void *\r
+_ReturnAddress (\r
+  void\r
+  );\r
+\r
+  #pragma intrinsic(_ReturnAddress)\r
+\r
+/**\r
+  Get the return address of the calling function.\r
+\r
+  Based on intrinsic function _ReturnAddress that provides the address of\r
+  the instruction in the calling function that will be executed after\r
+  control returns to the caller.\r
+\r
+  @param L    Return Level.\r
+\r
+  @return The return address of the calling function or 0 if L != 0.\r
+\r
+**/\r
+#define RETURN_ADDRESS(L)  ((L == 0) ? _ReturnAddress() : (VOID *) 0)\r
+#elif defined (__GNUC__) || defined (__clang__)\r
+\r
+/**\r
+  Get the return address of the calling function.\r
+\r
+  Based on built-in Function __builtin_return_address that returns\r
+  the return address of the current function, or of one of its callers.\r
+\r
+  @param L    Return Level.\r
+\r
+  @return The return address of the calling function.\r
+\r
+**/\r
+#define RETURN_ADDRESS(L)  __builtin_return_address (L)\r
+#else\r
+\r
+/**\r
+  Get the return address of the calling function.\r
+\r
+  @param L    Return Level.\r
+\r
+  @return 0 as compilers don't support this feature.\r
+\r
+**/\r
+#define RETURN_ADDRESS(L)  ((VOID *) 0)\r
 #endif\r
 \r
+/**\r
+  Return the number of elements in an array.\r
+\r
+  @param  Array  An object of array type. Array is only used as an argument to\r
+                 the sizeof operator, therefore Array is never evaluated. The\r
+                 caller is responsible for ensuring that Array's type is not\r
+                 incomplete; that is, Array must have known constant size.\r
+\r
+  @return The number of elements in Array. The result has type UINTN.\r
+\r
+**/\r
+#define ARRAY_SIZE(Array)  (sizeof (Array) / sizeof ((Array)[0]))\r
+\r
+#endif\r