[llvm] [CodeGen] Avoid repeated hash lookups (NFC) (PR #130889)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 11 21:26:36 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-llvm-regalloc
Author: Kazu Hirata (kazutakahirata)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/130889.diff
1 Files Affected:
- (modified) llvm/lib/CodeGen/LiveRangeShrink.cpp (+5-5)
``````````diff
diff --git a/llvm/lib/CodeGen/LiveRangeShrink.cpp b/llvm/lib/CodeGen/LiveRangeShrink.cpp
index bb824566047e1..dae7e14e54aae 100644
--- a/llvm/lib/CodeGen/LiveRangeShrink.cpp
+++ b/llvm/lib/CodeGen/LiveRangeShrink.cpp
@@ -153,13 +153,13 @@ bool LiveRangeShrink::runOnMachineFunction(MachineFunction &MF) {
continue;
if (MO.isUse())
UseMap[MO.getReg()] = std::make_pair(CurrentOrder, &MI);
- else if (MO.isDead() && UseMap.count(MO.getReg()))
+ else if (MO.isDead()) {
// Barrier is the last instruction where MO get used. MI should not
// be moved above Barrier.
- if (Barrier < UseMap[MO.getReg()].first) {
- Barrier = UseMap[MO.getReg()].first;
- BarrierMI = UseMap[MO.getReg()].second;
- }
+ auto It = UseMap.find(MO.getReg());
+ if (It != UseMap.end() && Barrier < It->second.first)
+ std::tie(Barrier, BarrierMI) = It->second;
+ }
}
if (!MI.isSafeToMove(SawStore)) {
``````````
</details>
https://github.com/llvm/llvm-project/pull/130889
More information about the llvm-commits
mailing list