]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Include/x64/ProcessorBind.h
Updated EFAPI definition for x64 GCC. Original thinking was to add optional EFIAPI...
[mirror_edk2.git] / MdePkg / Include / x64 / ProcessorBind.h
index c61966e154e3362d32c81ba1d23c127e25d733e5..3a2fea26ceb32aae143e10d5d536332f9f414a0d 100644 (file)
 //\r
 #pragma warning ( disable : 4127 )\r
 \r
+//\r
+// This warning is caused by functions defined but not used. For precompiled header only.\r
+//\r
+#pragma warning ( disable : 4505 )\r
+\r
+//\r
+// This warning is caused by empty (after preprocessing) souce file. For precompiled header only.\r
+//\r
+#pragma warning ( disable : 4206 )\r
 \r
 #endif\r
 \r
@@ -168,13 +177,18 @@ typedef INT64   INTN;
 #elif __GNUC__\r
   ///\r
   /// Define the standard calling convention reguardless of optimization level.\r
-  /// efidecl is an extension to GCC that supports the differnece between x64\r
-  /// GCC ABI and x64 Microsoft* ABI. EFI is closer to the Microsoft* ABI and\r
-  /// EFIAPI makes sure the right ABI is used for public interfaces. \r
-  /// eficecl is a work in progress and we do not yet have the compiler\r
+  /// The GCC support assumes a GCC compiler that supports the EFI ABI. The EFI\r
+  /// ABI is much closer to the x64 Microsoft* ABI than standard x64 (x86-64) \r
+  /// GCC ABI. Thus a standard x64 (x86-64) GCC compiler can not be used for \r
+  /// x64. Warning the assembly code in the MDE x64 does not follow the correct \r
+  /// ABI for the standard x64 (x86-64) GCC.\r
   ///\r
-  #define EFIAPI __attribute__((efidecl))    \r
+  #define EFIAPI \r
 #else\r
+  ///\r
+  /// The default for a non Microsoft* or GCC compiler is to assume the EFI ABI\r
+  /// is the standard. \r
+  ///\r
   #define EFIAPI       \r
 #endif\r
 \r