From da36f3f4820a3d9aa20cd32b9ca21e54f53bec82 Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Wed, 12 Sep 2018 23:39:51 +0000 Subject: [PATCH] dwarfdump: Improve performance on large DWP files llvm-svn: 342099 --- llvm/include/llvm/ADT/STLExtras.h | 7 +++++ .../llvm/DebugInfo/DWARF/DWARFUnitIndex.h | 1 + llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp | 29 ++++++++++++++----- 3 files changed, 29 insertions(+), 8 deletions(-) diff --git a/llvm/include/llvm/ADT/STLExtras.h b/llvm/include/llvm/ADT/STLExtras.h index 3197d3a73890..8b8a35573e75 100644 --- a/llvm/include/llvm/ADT/STLExtras.h +++ b/llvm/include/llvm/ADT/STLExtras.h @@ -1130,6 +1130,13 @@ auto lower_bound(R &&Range, ForwardIt I) -> decltype(adl_begin(Range)) { return std::lower_bound(adl_begin(Range), adl_end(Range), I); } +/// Provide wrappers to std::upper_bound which take ranges instead of having to +/// pass begin/end explicitly. +template +auto upper_bound(R &&Range, ForwardIt I) -> decltype(adl_begin(Range)) { + return std::upper_bound(adl_begin(Range), adl_end(Range), I); +} + /// Wrapper function around std::equal to detect if all elements /// in a container are same. template diff --git a/llvm/include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h b/llvm/include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h index 49ed4bb222f3..16be5f9401c0 100644 --- a/llvm/include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h +++ b/llvm/include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h @@ -74,6 +74,7 @@ private: int InfoColumn = -1; std::unique_ptr ColumnKinds; std::unique_ptr Rows; + mutable std::vector OffsetLookup; static StringRef getColumnHeader(DWARFSectionKind DS); diff --git a/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp b/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp index 17f17572a309..3b39bf58b3c0 100644 --- a/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp +++ b/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp @@ -164,14 +164,27 @@ DWARFUnitIndex::Entry::getOffset() const { const DWARFUnitIndex::Entry * DWARFUnitIndex::getFromOffset(uint32_t Offset) const { - for (uint32_t i = 0; i != Header.NumBuckets; ++i) - if (const auto &Contribs = Rows[i].Contributions) { - const auto &InfoContrib = Contribs[InfoColumn]; - if (InfoContrib.Offset <= Offset && - Offset < (InfoContrib.Offset + InfoContrib.Length)) - return &Rows[i]; - } - return nullptr; + if (OffsetLookup.empty()) { + for (uint32_t i = 0; i != Header.NumBuckets; ++i) + if (const auto &Contribs = Rows[i].Contributions) + OffsetLookup.push_back(&Rows[i]); + llvm::sort(OffsetLookup, [&](Entry *E1, Entry *E2) { + return E1->Contributions[InfoColumn].Offset < + E2->Contributions[InfoColumn].Offset; + }); + } + auto I = + llvm::upper_bound(OffsetLookup, Offset, [&](uint32_t Offset, Entry *E2) { + return Offset < E2->Contributions[InfoColumn].Offset; + }); + if (I == OffsetLookup.begin()) + return nullptr; + --I; + const auto *E = *I; + const auto &InfoContrib = E->Contributions[InfoColumn]; + if ((InfoContrib.Offset + InfoContrib.Length) <= Offset) + return nullptr; + return E; } const DWARFUnitIndex::Entry *DWARFUnitIndex::getFromHash(uint64_t S) const {