[llvm] [DebugInfo] Avoid repeated hash lookups (NFC) (PR #127446)
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Sun Feb 16 22:17:14 PST 2025
https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/127446
None
>From 8db5c841e2b2c6b61b9b9a2f5f0bb8ac5d1bd89c Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Sun, 16 Feb 2025 08:28:00 -0800
Subject: [PATCH] [DebugInfo] Avoid repeated hash lookups (NFC)
---
.../DebugInfo/LogicalView/Readers/LVBinaryReader.cpp | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
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()); });
More information about the llvm-commits
mailing list