summaryrefslogtreecommitdiffstats
path: root/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2015-11-13 19:18:49 +0000
committerDavid Blaikie <dblaikie@gmail.com>2015-11-13 19:18:49 +0000
commit8e8dd57e0bd9bfe5a1a7a26f61798501af016a8d (patch)
treeec373cfa0d0dcc28248578d0183e34e59c5a6056 /llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp
parent4f7f57e1660c9a025d7737bda5d543cc4286227b (diff)
downloadbcm5719-llvm-8e8dd57e0bd9bfe5a1a7a26f61798501af016a8d.tar.gz
bcm5719-llvm-8e8dd57e0bd9bfe5a1a7a26f61798501af016a8d.zip
dwarfdump: Add support for dumping the table contents of DWP indexes
This is a recommit of 252842 which was reverted in 252859. The issue was using %s format specifier for a StringRef - used Format's left_justify(StringRef, int) instead. It'd be nice to have __attribute__((format(..))) on llvm::format, but apparently it's only implemented for c-style variadics, not C++ variadic templates. Perhaps we could fix that & conditionalize the attribute on such... llvm-svn: 253065
Diffstat (limited to 'llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp')
-rw-r--r--llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp64
1 files changed, 59 insertions, 5 deletions
diff --git a/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp b/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp
index f97a68f860a..37d78313af9 100644
--- a/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp
+++ b/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp
@@ -26,10 +26,7 @@ bool DWARFUnitIndex::Header::parse(DataExtractor IndexData,
}
void DWARFUnitIndex::Header::dump(raw_ostream &OS) const {
- OS << "Index header:\n" << format(" version: %u\n", Version)
- << format(" columns: %u\n", NumColumns)
- << format(" units: %u\n", NumUnits)
- << format(" buckets: %u\n", NumBuckets);
+ OS << format("version = %u slots = %u\n\n", Version, NumBuckets);
}
bool DWARFUnitIndex::parse(DataExtractor IndexData) {
@@ -42,6 +39,45 @@ bool DWARFUnitIndex::parse(DataExtractor IndexData) {
(2 * Header.NumUnits + 1) * 4 * Header.NumColumns))
return false;
+ Rows = llvm::make_unique<HashRow[]>(Header.NumBuckets);
+ auto Contribs =
+ llvm::make_unique<HashRow::SectionContribution *[]>(Header.NumUnits);
+ ColumnKinds = llvm::make_unique<DwarfSection[]>(Header.NumColumns);
+
+ // Read Hash Table of Signatures
+ for (unsigned i = 0; i != Header.NumBuckets; ++i)
+ Rows[i].Signature = IndexData.getU64(&Offset);
+
+ // Read Parallel Table of Indexes
+ for (unsigned i = 0; i != Header.NumBuckets; ++i) {
+ auto Index = IndexData.getU32(&Offset);
+ if (!Index)
+ continue;
+ Rows[i].Contributions =
+ llvm::make_unique<HashRow::SectionContribution[]>(Header.NumColumns);
+ Contribs[Index - 1] = Rows[i].Contributions.get();
+ }
+
+ // Read the Column Headers
+ for (unsigned i = 0; i != Header.NumColumns; ++i)
+ ColumnKinds[i] = static_cast<DwarfSection>(IndexData.getU32(&Offset));
+
+ // Read Table of Section Offsets
+ for (unsigned i = 0; i != Header.NumUnits; ++i) {
+ auto *Contrib = Contribs[i];
+ for (unsigned i = 0; i != Header.NumColumns; ++i) {
+ Contrib[i].Offset = IndexData.getU32(&Offset);
+ }
+ }
+
+ // Read Table of Section Sizes
+ for (unsigned i = 0; i != Header.NumUnits; ++i) {
+ auto *Contrib = Contribs[i];
+ for (unsigned i = 0; i != Header.NumColumns; ++i) {
+ Contrib[i].Size = IndexData.getU32(&Offset);
+ }
+ }
+
return true;
}
@@ -64,6 +100,24 @@ StringRef DWARFUnitIndex::getColumnHeader(DwarfSection DS) {
void DWARFUnitIndex::dump(raw_ostream &OS) const {
Header.dump(OS);
+ OS << "Index Signature ";
+ for (unsigned i = 0; i != Header.NumColumns; ++i)
+ OS << ' ' << left_justify(getColumnHeader(ColumnKinds[i]), 24);
+ OS << "\n----- ------------------";
+ for (unsigned i = 0; i != Header.NumColumns; ++i)
+ OS << " ------------------------";
+ OS << '\n';
+ for (unsigned i = 0; i != Header.NumBuckets; ++i) {
+ auto &Row = Rows[i];
+ if (auto *Contribs = Row.Contributions.get()) {
+ OS << format("%5u 0x%016" PRIx64 " ", i, Row.Signature);
+ for (unsigned i = 0; i != Header.NumColumns; ++i) {
+ auto &Contrib = Contribs[i];
+ OS << format("[0x%08u, 0x%08u) ", Contrib.Offset,
+ Contrib.Offset + Contrib.Size);
+ }
+ OS << '\n';
+ }
+ }
}
-
}
OpenPOWER on IntegriCloud