[llvm] b648576 - [CodeGen] Avoid repeated hash lookups (NFC) (#131495)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 16 11:03:01 PDT 2025
Author: Kazu Hirata
Date: 2025-03-16T11:02:57-07:00
New Revision: b6485765284a40297c667386e7ac662045195366
URL: https://github.com/llvm/llvm-project/commit/b6485765284a40297c667386e7ac662045195366
DIFF: https://github.com/llvm/llvm-project/commit/b6485765284a40297c667386e7ac662045195366.diff
LOG: [CodeGen] Avoid repeated hash lookups (NFC) (#131495)
Added:
Modified:
llvm/lib/CodeGen/MachineDebugify.cpp
Removed:
################################################################################
diff --git a/llvm/lib/CodeGen/MachineDebugify.cpp b/llvm/lib/CodeGen/MachineDebugify.cpp
index bffdd51bfbca7..9b9cebc74054d 100644
--- a/llvm/lib/CodeGen/MachineDebugify.cpp
+++ b/llvm/lib/CodeGen/MachineDebugify.cpp
@@ -123,10 +123,14 @@ bool applyDebugifyMetadataToMachineFunction(MachineModuleInfo &MMI,
// Find a suitable local variable for the DBG_VALUE.
unsigned Line = MI.getDebugLoc().getLine();
- if (!Line2Var.count(Line))
+ auto It = Line2Var.find(Line);
+ if (It == Line2Var.end()) {
Line = EarliestDVI ? EarliestDVI->getDebugLoc().getLine()
: EarliestDVR->getDebugLoc().getLine();
- DILocalVariable *LocalVar = Line2Var[Line];
+ It = Line2Var.find(Line);
+ assert(It != Line2Var.end());
+ }
+ DILocalVariable *LocalVar = It->second;
assert(LocalVar && "No variable for current line?");
VarSet.insert(LocalVar);
More information about the llvm-commits
mailing list