[llvm] [DebugInfo] Avoid repeated hash lookups (NFC) (PR #127446)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Feb 16 22:17:50 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-debuginfo
Author: Kazu Hirata (kazutakahirata)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/127446.diff
1 Files Affected:
- (modified) llvm/lib/DebugInfo/LogicalView/Readers/LVBinaryReader.cpp (+8-4)
``````````diff
diff --git a/llvm/lib/DebugInfo/LogicalView/Readers/LVBinaryReader.cpp b/llvm/lib/DebugInfo/LogicalView/Readers/LVBinaryReader.cpp
index 932346e1b011b..513b0d312345e 100644
--- a/llvm/lib/DebugInfo/LogicalView/Readers/LVBinaryReader.cpp
+++ b/llvm/lib/DebugInfo/LogicalView/Readers/LVBinaryReader.cpp
@@ -65,20 +65,24 @@ LVSectionIndex LVSymbolTable::update(LVScope *Function) {
Name = Function->getName();
std::string SymbolName(Name);
- if (SymbolName.empty() || (SymbolNames.find(SymbolName) == SymbolNames.end()))
+ if (SymbolName.empty())
+ return SectionIndex;
+
+ auto It = SymbolNames.find(SymbolName);
+ if (It == SymbolNames.end())
return SectionIndex;
// Update a recorded entry with its logical scope, only if the scope has
// ranges. That is the case when in DWARF there are 2 DIEs connected via
// the DW_AT_specification.
if (Function->getHasRanges()) {
- SymbolNames[SymbolName].Scope = Function;
- SectionIndex = SymbolNames[SymbolName].SectionIndex;
+ It->second.Scope = Function;
+ SectionIndex = It->second.SectionIndex;
} else {
SectionIndex = UndefinedSectionIndex;
}
- if (SymbolNames[SymbolName].IsComdat)
+ if (It->second.IsComdat)
Function->setIsComdat();
LLVM_DEBUG({ print(dbgs()); });
``````````
</details>
https://github.com/llvm/llvm-project/pull/127446
More information about the llvm-commits
mailing list