[llvm] [CodeGen] Avoid repeated hash lookups (NFC) (PR #131495)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 16 02:02:24 PDT 2025
================
@@ -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;
----------------
nikic wrote:
I'm not sure this matches the intent of this code. Does using find() here instead work?
https://github.com/llvm/llvm-project/pull/131495
More information about the llvm-commits
mailing list