[llvm] [CodeGen] Avoid repeated hash lookups (NFC) (PR #131422)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 14 19:37:16 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-debuginfo
Author: Kazu Hirata (kazutakahirata)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/131422.diff
1 Files Affected:
- (modified) llvm/lib/CodeGen/LiveDebugValues/InstrRefBasedImpl.cpp (+8-6)
``````````diff
diff --git a/llvm/lib/CodeGen/LiveDebugValues/InstrRefBasedImpl.cpp b/llvm/lib/CodeGen/LiveDebugValues/InstrRefBasedImpl.cpp
index 2510b77c6d5be..a9afc8ff65ea7 100644
--- a/llvm/lib/CodeGen/LiveDebugValues/InstrRefBasedImpl.cpp
+++ b/llvm/lib/CodeGen/LiveDebugValues/InstrRefBasedImpl.cpp
@@ -2772,14 +2772,15 @@ void InstrRefBasedLDV::buildMLocValueMap(
// visited this pass, if they're not going to be already.
for (auto *s : MBB->successors()) {
// Does branching to this successor represent a back-edge?
- if (BBToOrder[s] > BBToOrder[MBB]) {
+ unsigned Order = BBToOrder[s];
+ if (Order > BBToOrder[MBB]) {
// No: visit it during this dataflow iteration.
if (OnWorklist.insert(s).second)
- Worklist.push(BBToOrder[s]);
+ Worklist.push(Order);
} else {
// Yes: visit it on the next iteration.
if (OnPending.insert(s).second)
- Pending.push(BBToOrder[s]);
+ Pending.push(Order);
}
}
}
@@ -3349,11 +3350,12 @@ void InstrRefBasedLDV::buildVLocValueMap(
if (!LiveInIdx.contains(s))
continue;
- if (BBToOrder[s] > BBToOrder[MBB]) {
+ unsigned Order = BBToOrder[s];
+ if (Order > BBToOrder[MBB]) {
if (OnWorklist.insert(s).second)
- Worklist.push(BBToOrder[s]);
+ Worklist.push(Order);
} else if (OnPending.insert(s).second && (FirstTrip || OLChanged)) {
- Pending.push(BBToOrder[s]);
+ Pending.push(Order);
}
}
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/131422
More information about the llvm-commits
mailing list