[llvm] [SystemZ] Avoid repeated hash lookups (NFC) (PR #130392)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 7 19:56:07 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-backend-systemz
Author: Kazu Hirata (kazutakahirata)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/130392.diff
1 Files Affected:
- (modified) llvm/lib/Target/SystemZ/SystemZMachineScheduler.cpp (+5-3)
``````````diff
diff --git a/llvm/lib/Target/SystemZ/SystemZMachineScheduler.cpp b/llvm/lib/Target/SystemZ/SystemZMachineScheduler.cpp
index 4bc979de795dc..5e2365f1dc513 100644
--- a/llvm/lib/Target/SystemZ/SystemZMachineScheduler.cpp
+++ b/llvm/lib/Target/SystemZ/SystemZMachineScheduler.cpp
@@ -94,14 +94,16 @@ void SystemZPostRASchedStrategy::enterMBB(MachineBasicBlock *NextMBB) {
// scheduled. If this is not possible, we are done.
MachineBasicBlock *SinglePredMBB =
getSingleSchedPred(MBB, MLI->getLoopFor(MBB));
- if (SinglePredMBB == nullptr ||
- SchedStates.find(SinglePredMBB) == SchedStates.end())
+ if (SinglePredMBB == nullptr)
+ return;
+ auto It = SchedStates.find(SinglePredMBB);
+ if (It == SchedStates.end())
return;
LLVM_DEBUG(dbgs() << "** Continued scheduling from "
<< printMBBReference(*SinglePredMBB) << "\n";);
- HazardRec->copyState(SchedStates[SinglePredMBB]);
+ HazardRec->copyState(It->second);
LLVM_DEBUG(HazardRec->dumpState(););
// Emit incoming terminator(s). Be optimistic and assume that branch
``````````
</details>
https://github.com/llvm/llvm-project/pull/130392
More information about the llvm-commits
mailing list