[llvm] [CodeGen] Avoid repeated hash lookups (NFC) (PR #131422)
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 14 19:36:43 PDT 2025
https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/131422
None
>From 6b789de97770eb914dd1a03d416509e817de3114 Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Fri, 14 Mar 2025 07:25:57 -0700
Subject: [PATCH] [CodeGen] Avoid repeated hash lookups (NFC)
---
.../CodeGen/LiveDebugValues/InstrRefBasedImpl.cpp | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
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);
}
}
}
More information about the llvm-commits
mailing list