]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Include/Ebc/ProcessorBind.h
MdePkg UefiDevicePathLib: Validate before touch input buffer.
[mirror_edk2.git] / MdePkg / Include / Ebc / ProcessorBind.h
index 437816d4610f00439a3ee15823fc414661284f97..075f768c7691b4dd3bc5c227138b7326132f9ddd 100644 (file)
@@ -4,7 +4,7 @@
   We currently only have one EBC compiler so there may be some Intel compiler\r
   specific functions in this file.\r
 \r
-Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>\r
+Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR>\r
 This program and the accompanying materials are licensed and made available under \r
 the terms and conditions of the BSD License that accompanies this distribution.  \r
 The full text of the license may be found at\r
@@ -30,7 +30,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 ///\r
 /// 1-byte signed value\r
 ///\r
-typedef char                  INT8;\r
+typedef signed char           INT8;\r
 ///\r
 /// Logical Boolean.  1-byte value containing 0 for FALSE or a 1 for TRUE.  Other\r
 /// values are undefined.\r
@@ -103,6 +103,12 @@ typedef unsigned long         UINTN;
 ///\r
 #define MAX_ADDRESS   ((UINTN) ~0)\r
 \r
+///\r
+/// Maximum legal EBC INTN and UINTN values.\r
+///\r
+#define MAX_UINTN  ((UINTN) ~0)\r
+#define MAX_INTN   ((INTN)~MAX_BIT)\r
+\r
 ///\r
 /// The stack alignment required for EBC\r
 ///\r
@@ -132,5 +138,9 @@ typedef unsigned long         UINTN;
 **/\r
 #define FUNCTION_ENTRY_POINT(FunctionPointer) (VOID *)(UINTN)(FunctionPointer)\r
 \r
+#ifndef __USER_LABEL_PREFIX__\r
+#define __USER_LABEL_PREFIX__\r
+#endif\r
+\r
 #endif \r
 \r