From 327e7a16083c0bec70841288876815554e5f4367 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Fri, 13 Jul 2018 17:21:51 +0000 Subject: [PATCH] [dwarfdump] Add pretty printer for accelerator table based on Atom. For instance, When dumping .apple_types, the second atom represents the DW_TAG. In addition to printing the raw value, we now also pretty print the value if the ATOM tells us how. llvm-svn: 337026 --- llvm/include/llvm/BinaryFormat/Dwarf.h | 4 ++++ llvm/lib/BinaryFormat/Dwarf.cpp | 11 +++++++++++ llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp | 12 +++++++++--- llvm/test/tools/dsymutil/X86/objc.test | 2 +- 4 files changed, 25 insertions(+), 4 deletions(-) diff --git a/llvm/include/llvm/BinaryFormat/Dwarf.h b/llvm/include/llvm/BinaryFormat/Dwarf.h index 15724a9..9036f40 100644 --- a/llvm/include/llvm/BinaryFormat/Dwarf.h +++ b/llvm/include/llvm/BinaryFormat/Dwarf.h @@ -540,6 +540,10 @@ bool isValidFormForVersion(Form F, unsigned Version, bool ExtensionsOk = true); /// for attribute Attr. StringRef AttributeValueString(uint16_t Attr, unsigned Val); +/// Returns the symbolic string representing Val when used as a value +/// for atom Atom. +StringRef AtomValueString(uint16_t Atom, unsigned Val); + /// Describes an entry of the various gnu_pub* debug sections. /// /// The gnu_pub* kind looks like: diff --git a/llvm/lib/BinaryFormat/Dwarf.cpp b/llvm/lib/BinaryFormat/Dwarf.cpp index a2e86c7..5984de7 100644 --- a/llvm/lib/BinaryFormat/Dwarf.cpp +++ b/llvm/lib/BinaryFormat/Dwarf.cpp @@ -571,6 +571,17 @@ StringRef llvm::dwarf::AttributeValueString(uint16_t Attr, unsigned Val) { return StringRef(); } +StringRef llvm::dwarf::AtomValueString(uint16_t Atom, unsigned Val) { + switch (Atom) { + case DW_ATOM_null: + return "NULL"; + case DW_ATOM_die_tag: + return TagString(Val); + } + + return StringRef(); +} + StringRef llvm::dwarf::IndexString(unsigned Idx) { switch (Idx) { default: diff --git a/llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp b/llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp index 0ded97c..4582e03 100644 --- a/llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp +++ b/llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp @@ -183,12 +183,18 @@ bool AppleAcceleratorTable::dumpName(ScopedPrinter &W, ListScope DataScope(W, ("Data " + Twine(Data)).str()); unsigned i = 0; for (auto &Atom : AtomForms) { - W.startLine() << format("Atom[%d]: ", i++); - if (Atom.extractValue(AccelSection, DataOffset, FormParams)) + W.startLine() << format("Atom[%d]: ", i); + if (Atom.extractValue(AccelSection, DataOffset, FormParams)) { Atom.dump(W.getOStream()); - else + if (Optional Val = Atom.getAsUnsignedConstant()) { + StringRef Str = dwarf::AtomValueString(HdrData.Atoms[i].first, *Val); + if (!Str.empty()) + W.getOStream() << " (" << Str << ")"; + } + } else W.getOStream() << "Error extracting the value"; W.getOStream() << "\n"; + i++; } } return true; // more entries follow diff --git a/llvm/test/tools/dsymutil/X86/objc.test b/llvm/test/tools/dsymutil/X86/objc.test index 7acb7c7..47dfef5 100644 --- a/llvm/test/tools/dsymutil/X86/objc.test +++ b/llvm/test/tools/dsymutil/X86/objc.test @@ -5,7 +5,7 @@ CHECK: .apple_types contents: CHECK: String: 0x00000066 "A" CHECK-NEXT: Data 0 [ CHECK-NEXT: Atom[0]: 0x0000012d -CHECK-NEXT: Atom[1]: 0x0013 +CHECK-NEXT: Atom[1]: 0x0013 (DW_TAG_structure_type) CHECK-NEXT: Atom[2]: 0x02 CHECK-NEXT: Atom[3]: 0x0b87b15a CHECK-NEXT: ] -- 2.7.4