MdeModulePkg: Apply uncrustify changes
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the MdeModulePkg package Cc: Andrew Fish <afish@apple.com> Cc: Leif Lindholm <leif@nuviainc.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
This commit is contained in:
committed by
mergify[bot]
parent
7c7184e201
commit
1436aea4d5
@ -8,7 +8,6 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
|
||||
#include "Edb.h"
|
||||
|
||||
|
||||
/**
|
||||
|
||||
Display memory unit.
|
||||
@ -25,34 +24,34 @@ EdbDisplayMemoryUnit (
|
||||
IN EDB_DATA_WIDTH Width
|
||||
)
|
||||
{
|
||||
UINT8 Data8;
|
||||
UINT16 Data16;
|
||||
UINT32 Data32;
|
||||
UINT64 Data64;
|
||||
UINT8 Data8;
|
||||
UINT16 Data16;
|
||||
UINT32 Data32;
|
||||
UINT64 Data64;
|
||||
|
||||
//
|
||||
// Print according to width
|
||||
//
|
||||
switch (Width) {
|
||||
case EdbWidthUint8:
|
||||
CopyMem (&Data8, (VOID *)Address, sizeof(UINT8));
|
||||
EDBPrint (L"%02x ", Data8);
|
||||
return sizeof(UINT8);
|
||||
case EdbWidthUint16:
|
||||
CopyMem (&Data16, (VOID *)Address, sizeof(UINT16));
|
||||
EDBPrint (L"%04x ", Data16);
|
||||
return sizeof(UINT16);
|
||||
case EdbWidthUint32:
|
||||
CopyMem (&Data32, (VOID *)Address, sizeof(UINT32));
|
||||
EDBPrint (L"%08x ", Data32);
|
||||
return sizeof(UINT32);
|
||||
case EdbWidthUint64:
|
||||
CopyMem (&Data64, (VOID *)Address, sizeof(UINT64));
|
||||
EDBPrint (L"%016lx ", Data64);
|
||||
return sizeof(UINT64);
|
||||
default:
|
||||
ASSERT (FALSE);
|
||||
break;
|
||||
case EdbWidthUint8:
|
||||
CopyMem (&Data8, (VOID *)Address, sizeof (UINT8));
|
||||
EDBPrint (L"%02x ", Data8);
|
||||
return sizeof (UINT8);
|
||||
case EdbWidthUint16:
|
||||
CopyMem (&Data16, (VOID *)Address, sizeof (UINT16));
|
||||
EDBPrint (L"%04x ", Data16);
|
||||
return sizeof (UINT16);
|
||||
case EdbWidthUint32:
|
||||
CopyMem (&Data32, (VOID *)Address, sizeof (UINT32));
|
||||
EDBPrint (L"%08x ", Data32);
|
||||
return sizeof (UINT32);
|
||||
case EdbWidthUint64:
|
||||
CopyMem (&Data64, (VOID *)Address, sizeof (UINT64));
|
||||
EDBPrint (L"%016lx ", Data64);
|
||||
return sizeof (UINT64);
|
||||
default:
|
||||
ASSERT (FALSE);
|
||||
break;
|
||||
}
|
||||
|
||||
//
|
||||
@ -72,9 +71,9 @@ EdbDisplayMemoryUnit (
|
||||
**/
|
||||
VOID
|
||||
EdbDisplayMemory (
|
||||
IN UINTN Address,
|
||||
IN UINTN Count,
|
||||
IN EDB_DATA_WIDTH Width
|
||||
IN UINTN Address,
|
||||
IN UINTN Count,
|
||||
IN EDB_DATA_WIDTH Width
|
||||
)
|
||||
{
|
||||
UINTN LineNumber;
|
||||
@ -84,27 +83,27 @@ EdbDisplayMemory (
|
||||
UINTN NumberInLine;
|
||||
|
||||
if (Count == 0) {
|
||||
return ;
|
||||
return;
|
||||
}
|
||||
|
||||
//
|
||||
// Get line number and byte number
|
||||
//
|
||||
switch (Width) {
|
||||
case EdbWidthUint8:
|
||||
NumberInLine = 16;
|
||||
break;
|
||||
case EdbWidthUint16:
|
||||
NumberInLine = 8;
|
||||
break;
|
||||
case EdbWidthUint32:
|
||||
NumberInLine = 4;
|
||||
break;
|
||||
case EdbWidthUint64:
|
||||
NumberInLine = 2;
|
||||
break;
|
||||
default:
|
||||
return;
|
||||
case EdbWidthUint8:
|
||||
NumberInLine = 16;
|
||||
break;
|
||||
case EdbWidthUint16:
|
||||
NumberInLine = 8;
|
||||
break;
|
||||
case EdbWidthUint32:
|
||||
NumberInLine = 4;
|
||||
break;
|
||||
case EdbWidthUint64:
|
||||
NumberInLine = 2;
|
||||
break;
|
||||
default:
|
||||
return;
|
||||
}
|
||||
|
||||
LineNumber = Count / NumberInLine;
|
||||
@ -118,12 +117,12 @@ EdbDisplayMemory (
|
||||
// Print each line
|
||||
//
|
||||
for (LineIndex = 0; LineIndex < LineNumber; LineIndex++) {
|
||||
|
||||
//
|
||||
// Break check
|
||||
//
|
||||
if (((LineIndex % EFI_DEBUGGER_LINE_NUMBER_IN_PAGE) == 0) &&
|
||||
(LineIndex != 0)) {
|
||||
(LineIndex != 0))
|
||||
{
|
||||
if (SetPageBreak ()) {
|
||||
break;
|
||||
}
|
||||
@ -133,6 +132,7 @@ EdbDisplayMemory (
|
||||
for (ByteIndex = 0; ByteIndex < NumberInLine; ByteIndex++) {
|
||||
Address += EdbDisplayMemoryUnit (Address, Width);
|
||||
}
|
||||
|
||||
EDBPrint (L"\n");
|
||||
}
|
||||
|
||||
@ -140,7 +140,8 @@ EdbDisplayMemory (
|
||||
// Break check
|
||||
//
|
||||
if (((LineIndex % EFI_DEBUGGER_LINE_NUMBER_IN_PAGE) == 0) &&
|
||||
(LineIndex != 0)) {
|
||||
(LineIndex != 0))
|
||||
{
|
||||
if (SetPageBreak ()) {
|
||||
return;
|
||||
}
|
||||
@ -154,7 +155,7 @@ EdbDisplayMemory (
|
||||
Address += EdbDisplayMemoryUnit (Address, Width);
|
||||
}
|
||||
|
||||
return ;
|
||||
return;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -168,29 +169,29 @@ EdbDisplayMemory (
|
||||
**/
|
||||
VOID
|
||||
EdbEnterMemory (
|
||||
IN UINTN Address,
|
||||
IN VOID *Value,
|
||||
IN EDB_DATA_WIDTH Width
|
||||
IN UINTN Address,
|
||||
IN VOID *Value,
|
||||
IN EDB_DATA_WIDTH Width
|
||||
)
|
||||
{
|
||||
switch (Width) {
|
||||
case EdbWidthUint8:
|
||||
CopyMem ((VOID *)Address, Value, sizeof(UINT8));
|
||||
break;
|
||||
case EdbWidthUint16:
|
||||
CopyMem ((VOID *)Address, Value, sizeof(UINT16));
|
||||
break;
|
||||
case EdbWidthUint32:
|
||||
CopyMem ((VOID *)Address, Value, sizeof(UINT32));
|
||||
break;
|
||||
case EdbWidthUint64:
|
||||
CopyMem ((VOID *)Address, Value, sizeof(UINT64));
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
case EdbWidthUint8:
|
||||
CopyMem ((VOID *)Address, Value, sizeof (UINT8));
|
||||
break;
|
||||
case EdbWidthUint16:
|
||||
CopyMem ((VOID *)Address, Value, sizeof (UINT16));
|
||||
break;
|
||||
case EdbWidthUint32:
|
||||
CopyMem ((VOID *)Address, Value, sizeof (UINT32));
|
||||
break;
|
||||
case EdbWidthUint64:
|
||||
CopyMem ((VOID *)Address, Value, sizeof (UINT64));
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return ;
|
||||
return;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -207,14 +208,14 @@ EdbEnterMemory (
|
||||
**/
|
||||
EFI_STATUS
|
||||
EdbGetMemoryAddressCount (
|
||||
IN CHAR16 *CommandArg,
|
||||
IN UINTN *Address,
|
||||
IN UINTN *Count
|
||||
IN CHAR16 *CommandArg,
|
||||
IN UINTN *Address,
|
||||
IN UINTN *Count
|
||||
)
|
||||
{
|
||||
CHAR16 *CommandStr;
|
||||
UINTN MemAddress;
|
||||
EFI_STATUS Status;
|
||||
CHAR16 *CommandStr;
|
||||
UINTN MemAddress;
|
||||
EFI_STATUS Status;
|
||||
|
||||
//
|
||||
// Get Address
|
||||
@ -224,10 +225,11 @@ EdbGetMemoryAddressCount (
|
||||
EDBPrint (L"Memory: Address error!\n");
|
||||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
Status = Symboltoi (CommandStr, &MemAddress);
|
||||
if (EFI_ERROR (Status)) {
|
||||
if (Status == EFI_NOT_FOUND) {
|
||||
MemAddress = Xtoi(CommandStr);
|
||||
MemAddress = Xtoi (CommandStr);
|
||||
} else {
|
||||
//
|
||||
// Something wrong, let Symboltoi print error info.
|
||||
@ -236,6 +238,7 @@ EdbGetMemoryAddressCount (
|
||||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
}
|
||||
|
||||
*Address = MemAddress;
|
||||
|
||||
//
|
||||
@ -245,7 +248,7 @@ EdbGetMemoryAddressCount (
|
||||
if (CommandStr == NULL) {
|
||||
*Count = 1;
|
||||
} else {
|
||||
*Count = Xtoi(CommandStr);
|
||||
*Count = Xtoi (CommandStr);
|
||||
}
|
||||
|
||||
//
|
||||
@ -268,14 +271,14 @@ EdbGetMemoryAddressCount (
|
||||
**/
|
||||
EFI_STATUS
|
||||
EdbGetMemoryAddressValue (
|
||||
IN CHAR16 *CommandArg,
|
||||
IN UINTN *Address,
|
||||
IN UINT64 *Value
|
||||
IN CHAR16 *CommandArg,
|
||||
IN UINTN *Address,
|
||||
IN UINT64 *Value
|
||||
)
|
||||
{
|
||||
CHAR16 *CommandStr;
|
||||
UINTN MemAddress;
|
||||
EFI_STATUS Status;
|
||||
CHAR16 *CommandStr;
|
||||
UINTN MemAddress;
|
||||
EFI_STATUS Status;
|
||||
|
||||
//
|
||||
// Get Address
|
||||
@ -285,10 +288,11 @@ EdbGetMemoryAddressValue (
|
||||
EDBPrint (L"Memory: Address error!\n");
|
||||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
Status = Symboltoi (CommandStr, &MemAddress);
|
||||
if (EFI_ERROR (Status)) {
|
||||
if (Status == EFI_NOT_FOUND) {
|
||||
MemAddress = Xtoi(CommandStr);
|
||||
MemAddress = Xtoi (CommandStr);
|
||||
} else {
|
||||
//
|
||||
// Something wrong, let Symboltoi print error info.
|
||||
@ -297,6 +301,7 @@ EdbGetMemoryAddressValue (
|
||||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
}
|
||||
|
||||
*Address = MemAddress;
|
||||
|
||||
//
|
||||
@ -307,7 +312,8 @@ EdbGetMemoryAddressValue (
|
||||
EDBPrint (L"Memory: Value error!\n");
|
||||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
*Value = LXtoi(CommandStr);
|
||||
|
||||
*Value = LXtoi (CommandStr);
|
||||
|
||||
//
|
||||
// Done
|
||||
@ -327,19 +333,19 @@ EdbGetMemoryAddressValue (
|
||||
**/
|
||||
EFI_DEBUG_STATUS
|
||||
DebuggerMemoryDisplay (
|
||||
IN CHAR16 *CommandArg,
|
||||
IN EDB_DATA_WIDTH Width
|
||||
IN CHAR16 *CommandArg,
|
||||
IN EDB_DATA_WIDTH Width
|
||||
)
|
||||
{
|
||||
EFI_STATUS Status;
|
||||
UINTN Address;
|
||||
UINTN Count;
|
||||
EFI_STATUS Status;
|
||||
UINTN Address;
|
||||
UINTN Count;
|
||||
|
||||
//
|
||||
// Get memory address and count
|
||||
//
|
||||
Status = EdbGetMemoryAddressCount (CommandArg, &Address, &Count);
|
||||
if (EFI_ERROR(Status)) {
|
||||
if (EFI_ERROR (Status)) {
|
||||
return EFI_DEBUG_CONTINUE;
|
||||
}
|
||||
|
||||
@ -366,19 +372,19 @@ DebuggerMemoryDisplay (
|
||||
**/
|
||||
EFI_DEBUG_STATUS
|
||||
DebuggerMemoryEnter (
|
||||
IN CHAR16 *CommandArg,
|
||||
IN EDB_DATA_WIDTH Width
|
||||
IN CHAR16 *CommandArg,
|
||||
IN EDB_DATA_WIDTH Width
|
||||
)
|
||||
{
|
||||
EFI_STATUS Status;
|
||||
UINTN Address;
|
||||
UINT64 Value;
|
||||
EFI_STATUS Status;
|
||||
UINTN Address;
|
||||
UINT64 Value;
|
||||
|
||||
//
|
||||
// Get memory address and value
|
||||
//
|
||||
Status = EdbGetMemoryAddressValue (CommandArg, &Address, &Value);
|
||||
if (EFI_ERROR(Status)) {
|
||||
if (EFI_ERROR (Status)) {
|
||||
return EFI_DEBUG_CONTINUE;
|
||||
}
|
||||
|
||||
@ -407,10 +413,10 @@ DebuggerMemoryEnter (
|
||||
**/
|
||||
EFI_DEBUG_STATUS
|
||||
DebuggerMemoryDB (
|
||||
IN CHAR16 *CommandArg,
|
||||
IN EFI_DEBUGGER_PRIVATE_DATA *DebuggerPrivate,
|
||||
IN EFI_EXCEPTION_TYPE ExceptionType,
|
||||
IN OUT EFI_SYSTEM_CONTEXT SystemContext
|
||||
IN CHAR16 *CommandArg,
|
||||
IN EFI_DEBUGGER_PRIVATE_DATA *DebuggerPrivate,
|
||||
IN EFI_EXCEPTION_TYPE ExceptionType,
|
||||
IN OUT EFI_SYSTEM_CONTEXT SystemContext
|
||||
)
|
||||
{
|
||||
return DebuggerMemoryDisplay (CommandArg, EdbWidthUint8);
|
||||
@ -430,10 +436,10 @@ DebuggerMemoryDB (
|
||||
**/
|
||||
EFI_DEBUG_STATUS
|
||||
DebuggerMemoryDW (
|
||||
IN CHAR16 *CommandArg,
|
||||
IN EFI_DEBUGGER_PRIVATE_DATA *DebuggerPrivate,
|
||||
IN EFI_EXCEPTION_TYPE ExceptionType,
|
||||
IN OUT EFI_SYSTEM_CONTEXT SystemContext
|
||||
IN CHAR16 *CommandArg,
|
||||
IN EFI_DEBUGGER_PRIVATE_DATA *DebuggerPrivate,
|
||||
IN EFI_EXCEPTION_TYPE ExceptionType,
|
||||
IN OUT EFI_SYSTEM_CONTEXT SystemContext
|
||||
)
|
||||
{
|
||||
return DebuggerMemoryDisplay (CommandArg, EdbWidthUint16);
|
||||
@ -453,10 +459,10 @@ DebuggerMemoryDW (
|
||||
**/
|
||||
EFI_DEBUG_STATUS
|
||||
DebuggerMemoryDD (
|
||||
IN CHAR16 *CommandArg,
|
||||
IN EFI_DEBUGGER_PRIVATE_DATA *DebuggerPrivate,
|
||||
IN EFI_EXCEPTION_TYPE ExceptionType,
|
||||
IN OUT EFI_SYSTEM_CONTEXT SystemContext
|
||||
IN CHAR16 *CommandArg,
|
||||
IN EFI_DEBUGGER_PRIVATE_DATA *DebuggerPrivate,
|
||||
IN EFI_EXCEPTION_TYPE ExceptionType,
|
||||
IN OUT EFI_SYSTEM_CONTEXT SystemContext
|
||||
)
|
||||
{
|
||||
return DebuggerMemoryDisplay (CommandArg, EdbWidthUint32);
|
||||
@ -476,10 +482,10 @@ DebuggerMemoryDD (
|
||||
**/
|
||||
EFI_DEBUG_STATUS
|
||||
DebuggerMemoryDQ (
|
||||
IN CHAR16 *CommandArg,
|
||||
IN EFI_DEBUGGER_PRIVATE_DATA *DebuggerPrivate,
|
||||
IN EFI_EXCEPTION_TYPE ExceptionType,
|
||||
IN OUT EFI_SYSTEM_CONTEXT SystemContext
|
||||
IN CHAR16 *CommandArg,
|
||||
IN EFI_DEBUGGER_PRIVATE_DATA *DebuggerPrivate,
|
||||
IN EFI_EXCEPTION_TYPE ExceptionType,
|
||||
IN OUT EFI_SYSTEM_CONTEXT SystemContext
|
||||
)
|
||||
{
|
||||
return DebuggerMemoryDisplay (CommandArg, EdbWidthUint64);
|
||||
@ -499,10 +505,10 @@ DebuggerMemoryDQ (
|
||||
**/
|
||||
EFI_DEBUG_STATUS
|
||||
DebuggerMemoryEB (
|
||||
IN CHAR16 *CommandArg,
|
||||
IN EFI_DEBUGGER_PRIVATE_DATA *DebuggerPrivate,
|
||||
IN EFI_EXCEPTION_TYPE ExceptionType,
|
||||
IN OUT EFI_SYSTEM_CONTEXT SystemContext
|
||||
IN CHAR16 *CommandArg,
|
||||
IN EFI_DEBUGGER_PRIVATE_DATA *DebuggerPrivate,
|
||||
IN EFI_EXCEPTION_TYPE ExceptionType,
|
||||
IN OUT EFI_SYSTEM_CONTEXT SystemContext
|
||||
)
|
||||
{
|
||||
return DebuggerMemoryEnter (CommandArg, EdbWidthUint8);
|
||||
@ -522,10 +528,10 @@ DebuggerMemoryEB (
|
||||
**/
|
||||
EFI_DEBUG_STATUS
|
||||
DebuggerMemoryEW (
|
||||
IN CHAR16 *CommandArg,
|
||||
IN EFI_DEBUGGER_PRIVATE_DATA *DebuggerPrivate,
|
||||
IN EFI_EXCEPTION_TYPE ExceptionType,
|
||||
IN OUT EFI_SYSTEM_CONTEXT SystemContext
|
||||
IN CHAR16 *CommandArg,
|
||||
IN EFI_DEBUGGER_PRIVATE_DATA *DebuggerPrivate,
|
||||
IN EFI_EXCEPTION_TYPE ExceptionType,
|
||||
IN OUT EFI_SYSTEM_CONTEXT SystemContext
|
||||
)
|
||||
{
|
||||
return DebuggerMemoryEnter (CommandArg, EdbWidthUint16);
|
||||
@ -545,10 +551,10 @@ DebuggerMemoryEW (
|
||||
**/
|
||||
EFI_DEBUG_STATUS
|
||||
DebuggerMemoryED (
|
||||
IN CHAR16 *CommandArg,
|
||||
IN EFI_DEBUGGER_PRIVATE_DATA *DebuggerPrivate,
|
||||
IN EFI_EXCEPTION_TYPE ExceptionType,
|
||||
IN OUT EFI_SYSTEM_CONTEXT SystemContext
|
||||
IN CHAR16 *CommandArg,
|
||||
IN EFI_DEBUGGER_PRIVATE_DATA *DebuggerPrivate,
|
||||
IN EFI_EXCEPTION_TYPE ExceptionType,
|
||||
IN OUT EFI_SYSTEM_CONTEXT SystemContext
|
||||
)
|
||||
{
|
||||
return DebuggerMemoryEnter (CommandArg, EdbWidthUint32);
|
||||
@ -568,10 +574,10 @@ DebuggerMemoryED (
|
||||
**/
|
||||
EFI_DEBUG_STATUS
|
||||
DebuggerMemoryEQ (
|
||||
IN CHAR16 *CommandArg,
|
||||
IN EFI_DEBUGGER_PRIVATE_DATA *DebuggerPrivate,
|
||||
IN EFI_EXCEPTION_TYPE ExceptionType,
|
||||
IN OUT EFI_SYSTEM_CONTEXT SystemContext
|
||||
IN CHAR16 *CommandArg,
|
||||
IN EFI_DEBUGGER_PRIVATE_DATA *DebuggerPrivate,
|
||||
IN EFI_EXCEPTION_TYPE ExceptionType,
|
||||
IN OUT EFI_SYSTEM_CONTEXT SystemContext
|
||||
)
|
||||
{
|
||||
return DebuggerMemoryEnter (CommandArg, EdbWidthUint64);
|
||||
|
Reference in New Issue
Block a user