MdeModulePkg/EbcDxe: Make variable name follow rules

For variable name, it should contain lower case characters.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
This commit is contained in:
Dandan Bi 2016-12-19 11:11:15 +08:00 committed by Hao Wu
parent 3a9ac06921
commit 789b86acfb
3 changed files with 14 additions and 14 deletions

View File

@ -166,7 +166,7 @@ DebuggerDisplaySymbolAccrodingToAddress (
// EDBPrint (L" 0xFFFFFFFF00000000 ( F) TestMain\n"); // EDBPrint (L" 0xFFFFFFFF00000000 ( F) TestMain\n");
EDBPrint ( EDBPrint (
L" 0x%016lx %s %a\n", L" 0x%016lx %s %a\n",
(UINT64)Entry->RVA + Object->BaseAddress, (UINT64)Entry->Rva + Object->BaseAddress,
EdbSymbolTypeToStr (Entry->Type), EdbSymbolTypeToStr (Entry->Type),
Entry->Name Entry->Name
); );
@ -176,7 +176,7 @@ DebuggerDisplaySymbolAccrodingToAddress (
// EDBPrint (L" 0xFFFF0000 ( F) TestMain\n"); // EDBPrint (L" 0xFFFF0000 ( F) TestMain\n");
EDBPrint ( EDBPrint (
L" 0x%08x %s %a\n", L" 0x%08x %s %a\n",
Entry->RVA + Object->BaseAddress, Entry->Rva + Object->BaseAddress,
EdbSymbolTypeToStr (Entry->Type), EdbSymbolTypeToStr (Entry->Type),
Entry->Name Entry->Name
); );
@ -273,7 +273,7 @@ DebuggerDisplaySymbolAccrodingToName (
if (sizeof(UINTN) == sizeof(UINT64)) { if (sizeof(UINTN) == sizeof(UINT64)) {
EDBPrint ( EDBPrint (
L" 0x%016lx %s %a (%a)\n", L" 0x%016lx %s %a (%a)\n",
(UINT64)Entry->RVA + Object->BaseAddress, (UINT64)Entry->Rva + Object->BaseAddress,
EdbSymbolTypeToStr (Entry->Type), EdbSymbolTypeToStr (Entry->Type),
Entry->Name, Entry->Name,
Entry->ObjName Entry->ObjName
@ -281,7 +281,7 @@ DebuggerDisplaySymbolAccrodingToName (
} else { } else {
EDBPrint ( EDBPrint (
L" 0x%08x %s %a (%a)\n", L" 0x%08x %s %a (%a)\n",
Entry->RVA + Object->BaseAddress, Entry->Rva + Object->BaseAddress,
EdbSymbolTypeToStr (Entry->Type), EdbSymbolTypeToStr (Entry->Type),
Entry->Name, Entry->Name,
Entry->ObjName Entry->ObjName

View File

@ -90,7 +90,7 @@ typedef enum {
typedef struct { typedef struct {
CHAR8 Name[EFI_DEBUGGER_SYMBOL_NAME_MAX]; CHAR8 Name[EFI_DEBUGGER_SYMBOL_NAME_MAX];
UINTN RVA; UINTN Rva;
EFI_DEBUGGER_SYMBOL_TYPE Type; EFI_DEBUGGER_SYMBOL_TYPE Type;
CHAR8 ObjName[EFI_DEBUGGER_SYMBOL_NAME_MAX]; CHAR8 ObjName[EFI_DEBUGGER_SYMBOL_NAME_MAX];
CHAR8 *CodBuffer; CHAR8 *CodBuffer;

View File

@ -67,7 +67,7 @@ EdbLoadSymbolSingleEntry (
if (ObjName != NULL) { if (ObjName != NULL) {
AsciiStrnCpyS (Entry->ObjName, sizeof(Entry->ObjName), ObjName, sizeof(Entry->ObjName) - 1); AsciiStrnCpyS (Entry->ObjName, sizeof(Entry->ObjName), ObjName, sizeof(Entry->ObjName) - 1);
} }
Entry->RVA = Address % EFI_DEBUGGER_DEFAULT_LINK_IMAGEBASE; Entry->Rva = Address % EFI_DEBUGGER_DEFAULT_LINK_IMAGEBASE;
Entry->Type = Type; Entry->Type = Type;
// //
@ -515,16 +515,16 @@ EbdFindSymbolAddress (
// //
Entry = Object->Entry; Entry = Object->Entry;
for (SubIndex = 0; SubIndex < Object->EntryCount; SubIndex++, Entry++) { for (SubIndex = 0; SubIndex < Object->EntryCount; SubIndex++, Entry++) {
if (Address != Entry->RVA + Object->BaseAddress) { if (Address != Entry->Rva + Object->BaseAddress) {
// //
// Check for nearest address // Check for nearest address
// //
if (Address > Entry->RVA + Object->BaseAddress) { if (Address > Entry->Rva + Object->BaseAddress) {
// //
// Record it if Current RVA < Address // Record it if Current RVA < Address
// //
if (CandidateLowerAddress < Entry->RVA + Object->BaseAddress) { if (CandidateLowerAddress < Entry->Rva + Object->BaseAddress) {
CandidateLowerAddress = Entry->RVA + Object->BaseAddress; CandidateLowerAddress = Entry->Rva + Object->BaseAddress;
LowEntry = Entry; LowEntry = Entry;
LowObject = Object; LowObject = Object;
} }
@ -532,8 +532,8 @@ EbdFindSymbolAddress (
// //
// Record it if Current RVA > Address // Record it if Current RVA > Address
// //
if (CandidateUpperAddress > Entry->RVA + Object->BaseAddress) { if (CandidateUpperAddress > Entry->Rva + Object->BaseAddress) {
CandidateUpperAddress = Entry->RVA + Object->BaseAddress; CandidateUpperAddress = Entry->Rva + Object->BaseAddress;
UpperEntry = Entry; UpperEntry = Entry;
UpperObject = Object; UpperObject = Object;
} }
@ -1712,7 +1712,7 @@ FindSymbolStr (
// //
// if Address match, return Name // if Address match, return Name
// //
if (Address == (Entry[EntryIndex].RVA + Object[ObjectIndex].BaseAddress)) { if (Address == (Entry[EntryIndex].Rva + Object[ObjectIndex].BaseAddress)) {
return Entry[EntryIndex].Name; return Entry[EntryIndex].Name;
} }
} }
@ -2219,7 +2219,7 @@ Symboltoi (
// //
// record Address // record Address
// //
*Address = (Entry[EntryIndex].RVA + Object[ObjectIndex].BaseAddress); *Address = (Entry[EntryIndex].Rva + Object[ObjectIndex].BaseAddress);
} }
} }
} }