]> git.proxmox.com Git - mirror_edk2.git/blame - OldMdePkg/Library/UefiDebugLibConOut/DebugLib.c
correct on bug in DebugLib instance.
[mirror_edk2.git] / OldMdePkg / Library / UefiDebugLibConOut / DebugLib.c
CommitLineData
878ddf1f 1/** @file\r
2 UEFI Debug Library that uses PrintLib to send messages to CONOUT.\r
3\r
abb23475 4 Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
878ddf1f 5 All rights reserved. This program and the accompanying materials \r
6 are licensed and made available under the terms and conditions of the BSD License \r
7 which accompanies this distribution. The full text of the license may be found at \r
8 http://opensource.org/licenses/bsd-license.php \r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
12\r
13**/\r
14\r
15//\r
16// Define the maximum debug and assert message length that this library supports \r
17//\r
18#define MAX_DEBUG_MESSAGE_LENGTH 0x100\r
19\r
20\r
21/**\r
22\r
23 Prints a debug message to the debug output device if the specified error level is enabled.\r
24\r
25 If any bit in ErrorLevel is also set in PcdDebugPrintErrorLevel, then print \r
26 the message specified by Format and the associated variable argument list to \r
27 the debug output device.\r
28\r
29 If Format is NULL, then ASSERT().\r
30\r
31 @param ErrorLevel The error level of the debug message.\r
32 @param Format Format string for the debug message to print.\r
33\r
34**/\r
35VOID\r
36EFIAPI\r
37DebugPrint (\r
d3665c47 38 IN UINTN ErrorLevel,\r
39 IN CONST CHAR8 *Format,\r
878ddf1f 40 ...\r
41 )\r
42{\r
43 CHAR16 Buffer[MAX_DEBUG_MESSAGE_LENGTH];\r
fe123a5e 44 CHAR8 AsciiBuffer[MAX_DEBUG_MESSAGE_LENGTH];\r
878ddf1f 45 VA_LIST Marker;\r
46\r
47 //\r
48 // If Format is NULL, then ASSERT().\r
49 //\r
50 ASSERT (Format != NULL);\r
51\r
52 //\r
53 // Check driver debug mask value and global mask\r
54 //\r
55 if ((ErrorLevel & PcdGet32(PcdDebugPrintErrorLevel)) == 0) {\r
56 return;\r
57 }\r
58\r
59 //\r
60 // Convert the DEBUG() message to a Unicode String\r
61 //\r
62 VA_START (Marker, Format);\r
fe123a5e 63 AsciiVSPrint (AsciiBuffer, sizeof (AsciiBuffer), Format, Marker);\r
64 AsciiStrToUnicodeStr (AsciiBuffer, Buffer);\r
878ddf1f 65 VA_END (Marker);\r
66\r
fe123a5e 67\r
878ddf1f 68 //\r
69 // Send the print string to the Console Output device\r
70 //\r
abb23475 71 if ((gST != NULL) && (gST->ConOut != NULL)) {\r
878ddf1f 72 gST->ConOut->OutputString (gST->ConOut, Buffer);\r
73 }\r
74}\r
75\r
76\r
77/**\r
78\r
79 Prints an assert message containing a filename, line number, and description. \r
80 This may be followed by a breakpoint or a dead loop.\r
81\r
8960cdeb 82 Print a message of the form "ASSERT <FileName>(<LineNumber>): <Description>\n" \r
878ddf1f 83 to the debug output device. If DEBUG_PROPERTY_ASSERT_BREAKPOINT_ENABLED bit of \r
84 PcdDebugProperyMask is set then CpuBreakpoint() is called. Otherwise, if \r
85 DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED bit of PcdDebugProperyMask is set then \r
86 CpuDeadLoop() is called. If neither of these bits are set, then this function \r
87 returns immediately after the message is printed to the debug output device.\r
88 DebugAssert() must actively prevent recusrsion. If DebugAssert() is called while\r
89 processing another DebugAssert(), then DebugAssert() must return immediately.\r
90\r
8960cdeb 91 If FileName is NULL, then a <FileName> string of "(NULL) Filename" is printed.\r
878ddf1f 92\r
8960cdeb 93 If Description is NULL, then a <Description> string of "(NULL) Description" is printed.\r
878ddf1f 94\r
95 @param FileName Pointer to the name of the source file that generated the assert condition.\r
96 @param LineNumber The line number in the source file that generated the assert condition\r
97 @param Description Pointer to the description of the assert condition.\r
98\r
99**/\r
100VOID\r
101EFIAPI\r
102DebugAssert (\r
d3665c47 103 IN CONST CHAR8 *FileName,\r
cd14fe3d 104 IN UINTN LineNumber,\r
d3665c47 105 IN CONST CHAR8 *Description\r
878ddf1f 106 )\r
107{\r
108 CHAR16 Buffer[MAX_DEBUG_MESSAGE_LENGTH];\r
fe123a5e 109 CHAR8 AsciiBuffer[MAX_DEBUG_MESSAGE_LENGTH];\r
878ddf1f 110\r
111 //\r
112 // Generate the ASSERT() message in Unicode format\r
113 //\r
fe123a5e 114 AsciiSPrint (AsciiBuffer, sizeof (AsciiBuffer), "ASSERT %a(%d): %a\n", FileName, LineNumber, Description);\r
115 AsciiStrToUnicodeStr (AsciiBuffer, Buffer);\r
878ddf1f 116\r
117 //\r
118 // Send the print string to the Console Output device\r
119 //\r
abb23475 120 if ((gST != NULL) && (gST->ConOut != NULL)) {\r
878ddf1f 121 gST->ConOut->OutputString (gST->ConOut, Buffer);\r
122 }\r
123\r
124 //\r
125 // Generate a Breakpoint, DeadLoop, or NOP based on PCD settings\r
126 //\r
127 if ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_ASSERT_BREAKPOINT_ENABLED) != 0) {\r
128 CpuBreakpoint ();\r
129 } else if ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED) != 0) {\r
130 CpuDeadLoop ();\r
131 }\r
132}\r
133\r
134\r
135/**\r
136\r
137 Fills a target buffer with PcdDebugClearMemoryValue, and returns the target buffer.\r
138\r
139 This function fills Length bytes of Buffer with the value specified by \r
140 PcdDebugClearMemoryValue, and returns Buffer.\r
141\r
142 If Buffer is NULL, then ASSERT().\r
143\r
511710d6 144 If Length is greater than (MAX_ADDRESS ? Buffer + 1), then ASSERT(). \r
878ddf1f 145\r
146 @param Buffer Pointer to the target buffer to fill with PcdDebugClearMemoryValue.\r
147 @param Length Number of bytes in Buffer to fill with zeros PcdDebugClearMemoryValue. \r
148\r
149 @return Buffer\r
150\r
151**/\r
152VOID *\r
153EFIAPI\r
154DebugClearMemory (\r
155 OUT VOID *Buffer,\r
156 IN UINTN Length\r
157 )\r
158{\r
159 //\r
160 // If Buffer is NULL, then ASSERT().\r
161 //\r
162 ASSERT (Buffer != NULL);\r
163\r
164 //\r
165 // SetMem() checks for the the ASSERT() condition on Length and returns Buffer\r
166 //\r
167 return SetMem (Buffer, Length, PcdGet8(PcdDebugClearMemoryValue));\r
168}\r
169\r
170\r
171/**\r
172 \r
173 Returns TRUE if ASSERT() macros are enabled.\r
174\r
175 This function returns TRUE if the DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of \r
176 PcdDebugProperyMask is set. Otherwise FALSE is returned.\r
177\r
178 @retval TRUE The DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of PcdDebugProperyMask is set.\r
179 @retval FALSE The DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of PcdDebugProperyMask is clear.\r
180\r
181**/\r
182BOOLEAN\r
183EFIAPI\r
184DebugAssertEnabled (\r
185 VOID\r
186 )\r
187{\r
58251024 188 return (BOOLEAN) ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED) != 0);\r
878ddf1f 189}\r
190\r
191\r
192/**\r
193 \r
194 Returns TRUE if DEBUG()macros are enabled.\r
195\r
196 This function returns TRUE if the DEBUG_PROPERTY_DEBUG_PRINT_ENABLED bit of \r
197 PcdDebugProperyMask is set. Otherwise FALSE is returned.\r
198\r
199 @retval TRUE The DEBUG_PROPERTY_DEBUG_PRINT_ENABLED bit of PcdDebugProperyMask is set.\r
200 @retval FALSE The DEBUG_PROPERTY_DEBUG_PRINT_ENABLED bit of PcdDebugProperyMask is clear.\r
201\r
202**/\r
203BOOLEAN\r
204EFIAPI\r
205DebugPrintEnabled (\r
206 VOID\r
207 )\r
208{\r
58251024 209 return (BOOLEAN) ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_DEBUG_PRINT_ENABLED) != 0);\r
878ddf1f 210}\r
211\r
212\r
213/**\r
214 \r
215 Returns TRUE if DEBUG_CODE()macros are enabled.\r
216\r
217 This function returns TRUE if the DEBUG_PROPERTY_DEBUG_CODE_ENABLED bit of \r
218 PcdDebugProperyMask is set. Otherwise FALSE is returned.\r
219\r
220 @retval TRUE The DEBUG_PROPERTY_DEBUG_CODE_ENABLED bit of PcdDebugProperyMask is set.\r
221 @retval FALSE The DEBUG_PROPERTY_DEBUG_CODE_ENABLED bit of PcdDebugProperyMask is clear.\r
222\r
223**/\r
224BOOLEAN\r
225EFIAPI\r
226DebugCodeEnabled (\r
227 VOID\r
228 )\r
229{\r
58251024 230 return (BOOLEAN) ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_DEBUG_CODE_ENABLED) != 0);\r
878ddf1f 231}\r
232\r
233\r
234/**\r
235 \r
236 Returns TRUE if DEBUG_CLEAR_MEMORY()macro is enabled.\r
237\r
238 This function returns TRUE if the DEBUG_PROPERTY_DEBUG_CLEAR_MEMORY_ENABLED bit of \r
239 PcdDebugProperyMask is set. Otherwise FALSE is returned.\r
240\r
241 @retval TRUE The DEBUG_PROPERTY_DEBUG_CLEAR_MEMORY_ENABLED bit of PcdDebugProperyMask is set.\r
242 @retval FALSE The DEBUG_PROPERTY_DEBUG_CLEAR_MEMORY_ENABLED bit of PcdDebugProperyMask is clear.\r
243\r
244**/\r
245BOOLEAN\r
246EFIAPI\r
247DebugClearMemoryEnabled (\r
248 VOID\r
249 )\r
250{\r
58251024 251 return (BOOLEAN) ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_CLEAR_MEMORY_ENABLED) != 0);\r
878ddf1f 252}\r