2 Null Base Debug Library instance with empty functions.
4 Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16 #include <Library/DebugLib.h>
19 Prints a debug message to the debug output device if the specified error level is enabled.
21 If any bit in ErrorLevel is also set in PcdDebugPrintErrorLevel, then print
22 the message specified by Format and the associated variable argument list to
23 the debug output device.
25 If Format is NULL, then ASSERT().
27 @param ErrorLevel The error level of the debug message.
28 @param Format Format string for the debug message to print.
29 @param ... Variable argument list whose contents are accessed
30 based on the format string specified by Format.
37 IN CONST CHAR8
*Format
,
45 Prints an assert message containing a filename, line number, and description.
46 This may be followed by a breakpoint or a dead loop.
48 Print a message of the form "ASSERT <FileName>(<LineNumber>): <Description>\n"
49 to the debug output device. If DEBUG_PROPERTY_ASSERT_BREAKPOINT_ENABLED bit of
50 PcdDebugProperyMask is set then CpuBreakpoint() is called. Otherwise, if
51 DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED bit of PcdDebugProperyMask is set then
52 CpuDeadLoop() is called. If neither of these bits are set, then this function
53 returns immediately after the message is printed to the debug output device.
54 DebugAssert() must actively prevent recursion. If DebugAssert() is called while
55 processing another DebugAssert(), then DebugAssert() must return immediately.
57 If FileName is NULL, then a <FileName> string of "(NULL) Filename" is printed.
58 If Description is NULL, then a <Description> string of "(NULL) Description" is printed.
60 @param FileName Pointer to the name of the source file that generated the assert condition.
61 @param LineNumber The line number in the source file that generated the assert condition
62 @param Description Pointer to the description of the assert condition.
68 IN CONST CHAR8
*FileName
,
70 IN CONST CHAR8
*Description
77 Fills a target buffer with PcdDebugClearMemoryValue, and returns the target buffer.
79 This function fills Length bytes of Buffer with the value specified by
80 PcdDebugClearMemoryValue, and returns Buffer.
82 If Buffer is NULL, then ASSERT().
83 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
85 @param Buffer Pointer to the target buffer to be filled with PcdDebugClearMemoryValue.
86 @param Length Number of bytes in Buffer to fill with zeros PcdDebugClearMemoryValue.
88 @return Buffer Pointer to the target buffer filled with PcdDebugClearMemoryValue.
103 Returns TRUE if ASSERT() macros are enabled.
105 This function returns TRUE if the DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of
106 PcdDebugProperyMask is set. Otherwise FALSE is returned.
108 @retval TRUE The DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of PcdDebugProperyMask is set.
109 @retval FALSE The DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of PcdDebugProperyMask is clear.
123 Returns TRUE if DEBUG() macros are enabled.
125 This function returns TRUE if the DEBUG_PROPERTY_DEBUG_PRINT_ENABLED bit of
126 PcdDebugProperyMask is set. Otherwise FALSE is returned.
128 @retval TRUE The DEBUG_PROPERTY_DEBUG_PRINT_ENABLED bit of PcdDebugProperyMask is set.
129 @retval FALSE The DEBUG_PROPERTY_DEBUG_PRINT_ENABLED bit of PcdDebugProperyMask is clear.
143 Returns TRUE if DEBUG_CODE() macros are enabled.
145 This function returns TRUE if the DEBUG_PROPERTY_DEBUG_CODE_ENABLED bit of
146 PcdDebugProperyMask is set. Otherwise FALSE is returned.
148 @retval TRUE The DEBUG_PROPERTY_DEBUG_CODE_ENABLED bit of PcdDebugProperyMask is set.
149 @retval FALSE The DEBUG_PROPERTY_DEBUG_CODE_ENABLED bit of PcdDebugProperyMask is clear.
163 Returns TRUE if DEBUG_CLEAR_MEMORY() macro is enabled.
165 This function returns TRUE if the DEBUG_PROPERTY_CLEAR_MEMORY_ENABLED bit of
166 PcdDebugProperyMask is set. Otherwise FALSE is returned.
168 @retval TRUE The DEBUG_PROPERTY_CLEAR_MEMORY_ENABLED bit of PcdDebugProperyMask is set.
169 @retval FALSE The DEBUG_PROPERTY_CLEAR_MEMORY_ENABLED bit of PcdDebugProperyMask is clear.
174 DebugClearMemoryEnabled (