]> git.proxmox.com Git - mirror_edk2.git/blobdiff - IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/DebugLib.c
Remove extra #includes where possible to make build more efficient
[mirror_edk2.git] / IntelFrameworkModulePkg / Library / PeiDxeDebugLibReportStatusCode / DebugLib.c
index 6f4db10e8892e2cc485d21024e054bf97bc15d2c..29639e9424f6ce1a9ffdba21c71e32e29e76a615 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
-  Debug Library that fowards all messages to ReportStatusCode()\r
+  Debug Library based on report status code library.\r
 \r
-  Copyright (c) 2006, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2009, Intel Corporation<BR>\r
   All rights reserved. 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
 \r
 **/\r
 \r
-\r
-\r
 #include <FrameworkPei.h>\r
-#include <FrameworkModuleBase.h>\r
+\r
 #include <Guid/StatusCodeDataTypeId.h>\r
+#include <Guid/StatusCodeDataTypeDebug.h>\r
 \r
 #include <Library/DebugLib.h>\r
 #include <Library/BaseLib.h>\r
 #include <Library/ReportStatusCodeLib.h>\r
 #include <Library/PcdLib.h>\r
 \r
-#include <DebugInfo.h>\r
-\r
 /**\r
-\r
   Prints a debug message to the debug output device if the specified error level is enabled.\r
 \r
-  If any bit in ErrorLevel is also set in PcdDebugPrintErrorLevel, then print\r
-  the message specified by Format and the associated variable argument list to\r
+  If any bit in ErrorLevel is also set in PcdDebugPrintErrorLevel, then print \r
+  the message specified by Format and the associated variable argument list to \r
   the debug output device.\r
 \r
   If Format is NULL, then ASSERT().\r
 \r
   @param  ErrorLevel  The error level of the debug message.\r
   @param  Format      Format string for the debug message to print.\r
+  @param  ...         Variable argument list whose contents are accessed \r
+                      based on the format string specified by Format.\r
 \r
 **/\r
 VOID\r
@@ -48,12 +46,14 @@ DebugPrint (
   ...\r
   )\r
 {\r
-  UINT64          Buffer[EFI_STATUS_CODE_DATA_MAX_SIZE / sizeof (UINT64)];\r
+  UINT64          Buffer[(EFI_STATUS_CODE_DATA_MAX_SIZE / sizeof (UINT64)) + 1];\r
   EFI_DEBUG_INFO  *DebugInfo;\r
   UINTN           TotalSize;\r
-  UINTN           Index;\r
-  VA_LIST         Marker;\r
-  UINT64          *ArgumentPointer;\r
+  VA_LIST         VaListMarker;\r
+  BASE_LIST       BaseListMarker;\r
+  CHAR8           *FormatString;\r
+  BOOLEAN         Long;\r
+  BOOLEAN         Done;\r
 \r
   //\r
   // If Format is NULL, then ASSERT().\r
@@ -63,31 +63,163 @@ DebugPrint (
   //\r
   // Check driver Debug Level value and global debug level\r
   //\r
-  if ((ErrorLevel & PcdGet32(PcdDebugPrintErrorLevel)) == 0) {\r
+  if ((ErrorLevel & PcdGet32 (PcdDebugPrintErrorLevel)) == 0) {\r
     return;\r
   }\r
 \r
-  TotalSize = sizeof (EFI_DEBUG_INFO) + 12 * sizeof (UINT64) + AsciiStrLen (Format) + 1;\r
-  if (TotalSize > EFI_STATUS_CODE_DATA_MAX_SIZE) {\r
+  //\r
+  // Compute the total size of the record\r
+  //\r
+  TotalSize = sizeof (EFI_DEBUG_INFO) + 12 * sizeof (UINT64) + AsciiStrSize (Format);\r
+\r
+  //\r
+  // If the TotalSize is larger than the maximum record size, then return\r
+  //\r
+  if (TotalSize > sizeof (Buffer)) {\r
     return;\r
   }\r
 \r
   //\r
-  // Then EFI_DEBUG_INFO\r
+  // Fill in EFI_DEBUG_INFO\r
+  //\r
+  // Here we skip the first 4 bytes of Buffer, because we must ensure BaseListMarker is\r
+  // 64-bit aligned, otherwise retrieving 64-bit parameter from BaseListMarker will cause\r
+  // exception on IPF. Buffer starts at 64-bit aligned address, so skipping 4 types (sizeof(EFI_DEBUG_INFO))\r
+  // just makes addess of BaseListMarker, which follows DebugInfo, 64-bit aligned.\r
   //\r
-  DebugInfo = (EFI_DEBUG_INFO *)Buffer;\r
+  DebugInfo             = (EFI_DEBUG_INFO *)(Buffer) + 1;\r
   DebugInfo->ErrorLevel = (UINT32)ErrorLevel;\r
+  BaseListMarker        = (BASE_LIST)(DebugInfo + 1);\r
+  FormatString          = (CHAR8 *)((UINT64 *)(DebugInfo + 1) + 12);\r
 \r
   //\r
-  // 256 byte mini Var Arg stack. That is followed by the format string.\r
+  // Copy the Format string into the record\r
   //\r
-  VA_START (Marker, Format);\r
-  for (Index = 0, ArgumentPointer = (UINT64 *)(DebugInfo + 1); Index < 12; Index++, ArgumentPointer++) {\r
-    WriteUnaligned64(ArgumentPointer, VA_ARG (Marker, UINT64));\r
+  AsciiStrCpy (FormatString, Format);\r
+\r
+  //\r
+  // The first 12 * sizeof (UINT64) bytes following EFI_DEBUG_INFO are for variable arguments\r
+  // of format in DEBUG string, which is followed by the DEBUG format string.\r
+  // Here we will process the variable arguments and pack them in this area.\r
+  //\r
+  VA_START (VaListMarker, Format);\r
+  for (; *Format != '\0'; Format++) {\r
+    //\r
+    // Only format with prefix % is processed.\r
+    //\r
+    if (*Format != '%') {\r
+      continue;\r
+    }\r
+    Long = FALSE;\r
+    //\r
+    // Parse Flags and Width\r
+    //\r
+    for (Done = FALSE; !Done; ) {\r
+      Format++;\r
+      switch (*Format) {\r
+      case '.': \r
+      case '-': \r
+      case '+': \r
+      case ' ': \r
+      case ',': \r
+      case '0':\r
+      case '1':\r
+      case '2':\r
+      case '3':\r
+      case '4':\r
+      case '5':\r
+      case '6':\r
+      case '7':\r
+      case '8':\r
+      case '9':\r
+        //\r
+        // These characters in format field are omitted.\r
+        //\r
+        break;\r
+      case 'L':\r
+      case 'l': \r
+        //\r
+        // 'L" or "l" in format field means the number being printed is a UINT64\r
+        //\r
+        Long = TRUE;\r
+        break;\r
+      case '*':\r
+        //\r
+        // '*' in format field means the precision of the field is specified by\r
+        // a UINTN argument in the argument list.\r
+        //\r
+        BASE_ARG (BaseListMarker, UINTN) = VA_ARG (VaListMarker, UINTN);\r
+        break;\r
+      case '\0':\r
+        //\r
+        // Make no output if Format string terminates unexpectedly when\r
+        // looking up for flag, width, precision and type. \r
+        //\r
+        Format--;\r
+        //\r
+        // break skipped on purpose.\r
+        //\r
+      default:\r
+        //\r
+        // When valid argument type detected or format string terminates unexpectedly,\r
+        // the inner loop is done.\r
+        //\r
+        Done = TRUE;\r
+        break;\r
+      }\r
+    } \r
+        \r
+    //\r
+    // Pack variable arguments into the storage area following EFI_DEBUG_INFO.\r
+    //\r
+    switch (*Format) {\r
+    case 'p':\r
+      if (sizeof (VOID *) > 4) {\r
+        Long = TRUE;\r
+      }\r
+    case 'X':\r
+    case 'x':\r
+    case 'd':\r
+      if (Long) {\r
+        BASE_ARG (BaseListMarker, INT64) = VA_ARG (VaListMarker, INT64);\r
+      } else {\r
+        BASE_ARG (BaseListMarker, int) = VA_ARG (VaListMarker, int);\r
+      }\r
+      break;\r
+    case 's':\r
+    case 'S':\r
+    case 'a':\r
+    case 'g':\r
+    case 't':\r
+      BASE_ARG (BaseListMarker, VOID *) = VA_ARG (VaListMarker, VOID *);\r
+      break;\r
+    case 'c':\r
+      BASE_ARG (BaseListMarker, UINTN) = VA_ARG (VaListMarker, UINTN);\r
+      break;\r
+    case 'r':\r
+      BASE_ARG (BaseListMarker, RETURN_STATUS) = VA_ARG (VaListMarker, RETURN_STATUS);\r
+      break;\r
+    }\r
+\r
+    //\r
+    // If the converted BASE_LIST is larger than the 12 * sizeof (UINT64) allocated bytes, then ASSERT()\r
+    // This indicates that the DEBUG() macro is passing in more argument than can be handled by \r
+    // the EFI_DEBUG_INFO record\r
+    //\r
+    ASSERT ((CHAR8 *)BaseListMarker <= FormatString);\r
+\r
+    //\r
+    // If the converted BASE_LIST is larger than the 12 * sizeof (UINT64) allocated bytes, then return\r
+    //\r
+    if ((CHAR8 *)BaseListMarker > FormatString) {\r
+      return;\r
+    }\r
   }\r
-  VA_END (Marker);\r
-  AsciiStrCpy ((CHAR8 *)ArgumentPointer, Format);\r
+  VA_END (VaListMarker);\r
 \r
+  //\r
+  // Send the DebugInfo record\r
+  //\r
   REPORT_STATUS_CODE_EX (\r
     EFI_DEBUG_CODE,\r
     (EFI_SOFTWARE_DXE_BS_DRIVER | EFI_DC_UNSPECIFIED),\r
@@ -99,23 +231,20 @@ DebugPrint (
     );\r
 }\r
 \r
-\r
 /**\r
-\r
-  Prints an assert message containing a filename, line number, and description.\r
+  Prints an assert message containing a filename, line number, and description.  \r
   This may be followed by a breakpoint or a dead loop.\r
 \r
   Print a message of the form "ASSERT <FileName>(<LineNumber>): <Description>\n"\r
-  to the debug output device.  If DEBUG_PROPERTY_ASSERT_BREAKPOINT_ENABLED bit of\r
-  PcdDebugProperyMask is set then CpuBreakpoint() is called. Otherwise, if\r
-  DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED bit of PcdDebugProperyMask is set then\r
-  CpuDeadLoop() is called.  If neither of these bits are set, then this function\r
+  to the debug output device.  If DEBUG_PROPERTY_ASSERT_BREAKPOINT_ENABLED bit of \r
+  PcdDebugProperyMask is set then CpuBreakpoint() is called. Otherwise, if \r
+  DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED bit of PcdDebugProperyMask is set then \r
+  CpuDeadLoop() is called.  If neither of these bits are set, then this function \r
   returns immediately after the message is printed to the debug output device.\r
-  DebugAssert() must actively prevent recusrsion.  If DebugAssert() is called while\r
+  DebugAssert() must actively prevent recursion.  If DebugAssert() is called while\r
   processing another DebugAssert(), then DebugAssert() must return immediately.\r
 \r
   If FileName is NULL, then a <FileName> string of "(NULL) Filename" is printed.\r
-\r
   If Description is NULL, then a <Description> string of "(NULL) Description" is printed.\r
 \r
   @param  FileName     Pointer to the name of the source file that generated the assert condition.\r
@@ -135,16 +264,16 @@ DebugAssert (
   EFI_DEBUG_ASSERT_DATA  *AssertData;\r
   UINTN                  TotalSize;\r
   CHAR8                  *Temp;\r
-  UINTN                  FileNameLength;\r
-  UINTN                  DescriptionLength;\r
+  UINTN                  FileNameSize;\r
+  UINTN                  DescriptionSize;\r
 \r
   //\r
   // Make sure it will all fit in the passed in buffer\r
   //\r
-  FileNameLength    = AsciiStrLen (FileName);\r
-  DescriptionLength = AsciiStrLen (Description);\r
-  TotalSize = sizeof (EFI_DEBUG_ASSERT_DATA) + FileNameLength + 1 + DescriptionLength + 1;\r
-  if (TotalSize <= EFI_STATUS_CODE_DATA_MAX_SIZE) {\r
+  FileNameSize    = AsciiStrSize (FileName);\r
+  DescriptionSize = AsciiStrSize (Description);\r
+  TotalSize = sizeof (EFI_DEBUG_ASSERT_DATA) + FileNameSize + DescriptionSize;\r
+  if (TotalSize <= sizeof (Buffer)) {\r
     //\r
     // Fill in EFI_DEBUG_ASSERT_DATA\r
     //\r
@@ -159,11 +288,14 @@ DebugAssert (
     //\r
     // Copy Ascii Description\r
     //\r
-    AsciiStrCpy (Temp + AsciiStrLen (FileName) + 1, Description);\r
+    AsciiStrCpy (Temp + FileNameSize, Description);\r
 \r
-    REPORT_STATUS_CODE_WITH_EXTENDED_DATA (\r
+    REPORT_STATUS_CODE_EX (\r
       (EFI_ERROR_CODE | EFI_ERROR_UNRECOVERED),\r
       (EFI_SOFTWARE_DXE_BS_DRIVER | EFI_SW_EC_ILLEGAL_SOFTWARE_STATE),\r
+      0,\r
+      NULL,\r
+      NULL,\r
       AssertData,\r
       TotalSize\r
       );\r
@@ -172,29 +304,27 @@ DebugAssert (
   //\r
   // Generate a Breakpoint, DeadLoop, or NOP based on PCD settings\r
   //\r
-  if ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_ASSERT_BREAKPOINT_ENABLED) != 0) {\r
+  if ((PcdGet8 (PcdDebugPropertyMask) & DEBUG_PROPERTY_ASSERT_BREAKPOINT_ENABLED) != 0) {\r
     CpuBreakpoint ();\r
-  } else if ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED) != 0) {\r
+  } else if ((PcdGet8 (PcdDebugPropertyMask) & DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED) != 0) {\r
     CpuDeadLoop ();\r
   }\r
 }\r
 \r
 \r
 /**\r
-\r
   Fills a target buffer with PcdDebugClearMemoryValue, and returns the target buffer.\r
 \r
-  This function fills Length bytes of Buffer with the value specified by\r
+  This function fills Length bytes of Buffer with the value specified by \r
   PcdDebugClearMemoryValue, and returns Buffer.\r
 \r
   If Buffer is NULL, then ASSERT().\r
+  If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). \r
 \r
-  If Length is greater than (MAX_ADDRESS ? Buffer + 1), then ASSERT().\r
-\r
-  @param   Buffer  Pointer to the target buffer to fill with PcdDebugClearMemoryValue.\r
-  @param   Length  Number of bytes in Buffer to fill with zeros PcdDebugClearMemoryValue.\r
+  @param   Buffer  Pointer to the target buffer to be filled with PcdDebugClearMemoryValue.\r
+  @param   Length  Number of bytes in Buffer to fill with zeros PcdDebugClearMemoryValue. \r
 \r
-  @return  Buffer\r
+  @return  Buffer  Pointer to the target buffer filled with PcdDebugClearMemoryValue.\r
 \r
 **/\r
 VOID *\r
@@ -204,23 +334,16 @@ DebugClearMemory (
   IN UINTN  Length\r
   )\r
 {\r
-  //\r
-  // If Buffer is NULL, then ASSERT().\r
-  //\r
   ASSERT (Buffer != NULL);\r
 \r
-  //\r
-  // SetMem() checks for the the ASSERT() condition on Length and returns Buffer\r
-  //\r
-  return SetMem (Buffer, Length, PcdGet8(PcdDebugClearMemoryValue));\r
+  return SetMem (Buffer, Length, PcdGet8 (PcdDebugClearMemoryValue));\r
 }\r
 \r
 \r
 /**\r
-\r
   Returns TRUE if ASSERT() macros are enabled.\r
 \r
-  This function returns TRUE if the DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of\r
+  This function returns TRUE if the DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of \r
   PcdDebugProperyMask is set.  Otherwise FALSE is returned.\r
 \r
   @retval  TRUE    The DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of PcdDebugProperyMask is set.\r
@@ -233,15 +356,14 @@ DebugAssertEnabled (
   VOID\r
   )\r
 {\r
-  return (BOOLEAN) ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED) != 0);\r
+  return (BOOLEAN) ((PcdGet8 (PcdDebugPropertyMask) & DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED) != 0);\r
 }\r
 \r
 \r
-/**\r
+/**  \r
+  Returns TRUE if DEBUG() macros are enabled.\r
 \r
-  Returns TRUE if DEBUG()macros are enabled.\r
-\r
-  This function returns TRUE if the DEBUG_PROPERTY_DEBUG_PRINT_ENABLED bit of\r
+  This function returns TRUE if the DEBUG_PROPERTY_DEBUG_PRINT_ENABLED bit of \r
   PcdDebugProperyMask is set.  Otherwise FALSE is returned.\r
 \r
   @retval  TRUE    The DEBUG_PROPERTY_DEBUG_PRINT_ENABLED bit of PcdDebugProperyMask is set.\r
@@ -254,15 +376,14 @@ DebugPrintEnabled (
   VOID\r
   )\r
 {\r
-  return (BOOLEAN) ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_DEBUG_PRINT_ENABLED) != 0);\r
+  return (BOOLEAN) ((PcdGet8 (PcdDebugPropertyMask) & DEBUG_PROPERTY_DEBUG_PRINT_ENABLED) != 0);\r
 }\r
 \r
 \r
-/**\r
-\r
-  Returns TRUE if DEBUG_CODE()macros are enabled.\r
+/**  \r
+  Returns TRUE if DEBUG_CODE() macros are enabled.\r
 \r
-  This function returns TRUE if the DEBUG_PROPERTY_DEBUG_CODE_ENABLED bit of\r
+  This function returns TRUE if the DEBUG_PROPERTY_DEBUG_CODE_ENABLED bit of \r
   PcdDebugProperyMask is set.  Otherwise FALSE is returned.\r
 \r
   @retval  TRUE    The DEBUG_PROPERTY_DEBUG_CODE_ENABLED bit of PcdDebugProperyMask is set.\r
@@ -275,19 +396,18 @@ DebugCodeEnabled (
   VOID\r
   )\r
 {\r
-  return (BOOLEAN) ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_DEBUG_CODE_ENABLED) != 0);\r
+  return (BOOLEAN) ((PcdGet8 (PcdDebugPropertyMask) & DEBUG_PROPERTY_DEBUG_CODE_ENABLED) != 0);\r
 }\r
 \r
 \r
-/**\r
-\r
-  Returns TRUE if DEBUG_CLEAR_MEMORY()macro is enabled.\r
+/**  \r
+  Returns TRUE if DEBUG_CLEAR_MEMORY() macro is enabled.\r
 \r
-  This function returns TRUE if the DEBUG_PROPERTY_DEBUG_CLEAR_MEMORY_ENABLED bit of\r
+  This function returns TRUE if the DEBUG_PROPERTY_CLEAR_MEMORY_ENABLED bit of \r
   PcdDebugProperyMask is set.  Otherwise FALSE is returned.\r
 \r
-  @retval  TRUE    The DEBUG_PROPERTY_DEBUG_CLEAR_MEMORY_ENABLED bit of PcdDebugProperyMask is set.\r
-  @retval  FALSE   The DEBUG_PROPERTY_DEBUG_CLEAR_MEMORY_ENABLED bit of PcdDebugProperyMask is clear.\r
+  @retval  TRUE    The DEBUG_PROPERTY_CLEAR_MEMORY_ENABLED bit of PcdDebugProperyMask is set.\r
+  @retval  FALSE   The DEBUG_PROPERTY_CLEAR_MEMORY_ENABLED bit of PcdDebugProperyMask is clear.\r
 \r
 **/\r
 BOOLEAN\r
@@ -296,5 +416,5 @@ DebugClearMemoryEnabled (
   VOID\r
   )\r
 {\r
-  return (BOOLEAN) ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_CLEAR_MEMORY_ENABLED) != 0);\r
+  return (BOOLEAN) ((PcdGet8 (PcdDebugPropertyMask) & DEBUG_PROPERTY_CLEAR_MEMORY_ENABLED) != 0);\r
 }\r