Skip to content

Commit 5e296e3

Browse files
committed
[DebugInfo] Extract a helper function to return the DWARF format name, NFC [1/10]
Differential Revision: https://reviews.llvm.org/D80523
1 parent b596ecd commit 5e296e3

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

llvm/include/llvm/BinaryFormat/Dwarf.h

+1
Original file line numberDiff line numberDiff line change
@@ -481,6 +481,7 @@ StringRef AtomTypeString(unsigned Atom);
481481
StringRef GDBIndexEntryKindString(GDBIndexEntryKind Kind);
482482
StringRef GDBIndexEntryLinkageString(GDBIndexEntryLinkage Linkage);
483483
StringRef IndexString(unsigned Idx);
484+
StringRef FormatString(DwarfFormat Format);
484485
/// @}
485486

486487
/// \defgroup DwarfConstantsParsing Dwarf constants parsing functions

llvm/lib/BinaryFormat/Dwarf.cpp

+10
Original file line numberDiff line numberDiff line change
@@ -770,6 +770,16 @@ bool llvm::dwarf::isValidFormForVersion(Form F, unsigned Version,
770770
return ExtensionsOk;
771771
}
772772

773+
StringRef llvm::dwarf::FormatString(DwarfFormat Format) {
774+
switch (Format) {
775+
case DWARF32:
776+
return "DWARF32";
777+
case DWARF64:
778+
return "DWARF64";
779+
}
780+
return StringRef();
781+
}
782+
773783
constexpr char llvm::dwarf::EnumTraits<Attribute>::Type[];
774784
constexpr char llvm::dwarf::EnumTraits<Form>::Type[];
775785
constexpr char llvm::dwarf::EnumTraits<Index>::Type[];

llvm/lib/DebugInfo/DWARF/DWARFContext.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ static void dumpStringOffsetsSection(raw_ostream &OS, DIDumpOptions DumpOpts,
190190
// version field and the padding, a total of 4 bytes). Add them back in
191191
// for reporting.
192192
OS << "Contribution size = " << (Contribution->Size + (Version < 5 ? 0 : 4))
193-
<< ", Format = " << (Format == DWARF32 ? "DWARF32" : "DWARF64")
193+
<< ", Format = " << dwarf::FormatString(Format)
194194
<< ", Version = " << Version << "\n";
195195

196196
Offset = Contribution->Base;

0 commit comments

Comments
 (0)