[llvm] 48bccee - [Hexagon] Avoid repeated hash lookups (NFC) (#128302)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Feb 22 02:13:19 PST 2025
Author: Kazu Hirata
Date: 2025-02-22T02:13:16-08:00
New Revision: 48bccee6b3aceaed79df9e83e8226e53cd340488
URL: https://github.com/llvm/llvm-project/commit/48bccee6b3aceaed79df9e83e8226e53cd340488
DIFF: https://github.com/llvm/llvm-project/commit/48bccee6b3aceaed79df9e83e8226e53cd340488.diff
LOG: [Hexagon] Avoid repeated hash lookups (NFC) (#128302)
Added:
Modified:
llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp b/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
index c2e878d338e2f..a11452cb86cda 100644
--- a/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
+++ b/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
@@ -2281,18 +2281,20 @@ void HexagonFrameLowering::optimizeSpillSlots(MachineFunction &MF,
continue;
IndexType Index = IndexMap.getIndex(&In);
+ auto &LS = LastStore[FI];
+ auto &LL = LastLoad[FI];
if (Load) {
- if (LastStore[FI] == IndexType::None)
- LastStore[FI] = IndexType::Entry;
- LastLoad[FI] = Index;
+ if (LS == IndexType::None)
+ LS = IndexType::Entry;
+ LL = Index;
} else if (Store) {
HexagonBlockRanges::RangeList &RL = FIRangeMap[FI].Map[&B];
- if (LastStore[FI] != IndexType::None)
- RL.add(LastStore[FI], LastLoad[FI], false, false);
- else if (LastLoad[FI] != IndexType::None)
- RL.add(IndexType::Entry, LastLoad[FI], false, false);
- LastLoad[FI] = IndexType::None;
- LastStore[FI] = Index;
+ if (LS != IndexType::None)
+ RL.add(LS, LL, false, false);
+ else if (LL != IndexType::None)
+ RL.add(IndexType::Entry, LL, false, false);
+ LL = IndexType::None;
+ LS = Index;
} else {
BadFIs.insert(FI);
}
More information about the llvm-commits
mailing list