[llvm] [CodeGen] Avoid repeated hash lookups (NFC) (PR #131495)

Kazu Hirata via llvm-commits llvm-commits at lists.llvm.org
Sat Mar 15 21:25:17 PDT 2025


https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/131495

None

>From c9bb1d8733622156047ed50486036c156b8b3de9 Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Sat, 15 Mar 2025 09:15:50 -0700
Subject: [PATCH] [CodeGen] Avoid repeated hash lookups (NFC)

---
 llvm/lib/CodeGen/MachineDebugify.cpp | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/llvm/lib/CodeGen/MachineDebugify.cpp b/llvm/lib/CodeGen/MachineDebugify.cpp
index bffdd51bfbca7..d0e325824c89a 100644
--- a/llvm/lib/CodeGen/MachineDebugify.cpp
+++ b/llvm/lib/CodeGen/MachineDebugify.cpp
@@ -123,10 +123,13 @@ 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.try_emplace(Line).first;
+      }
+      DILocalVariable *LocalVar = It->second;
       assert(LocalVar && "No variable for current line?");
       VarSet.insert(LocalVar);
 



More information about the llvm-commits mailing list