[llvm] [CodeGen] Avoid repeated hash lookups (NFC) (PR #131722)
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 17 22:06:50 PDT 2025
https://github.com/kazutakahirata updated https://github.com/llvm/llvm-project/pull/131722
>From a68a644070ba433b518723d3c8cd86d55124b4b0 Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Mon, 17 Mar 2025 08:56:30 -0700
Subject: [PATCH 1/2] [CodeGen] Avoid repeated hash lookups (NFC)
---
.../CodeGen/SelectionDAG/StatepointLowering.cpp | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
diff --git a/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
index 735dcef8c28bf..f01f066367509 100644
--- a/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
@@ -916,13 +916,15 @@ SDValue SelectionDAGBuilder::LowerAsSTATEPOINT(
bool IsLocal = (Relocate->getParent() == StatepointInstr->getParent());
RecordType Record;
- if (IsLocal && LowerAsVReg.count(SDV)) {
- // Result is already stored in StatepointLowering
- Record.type = RecordType::SDValueNode;
- } else if (LowerAsVReg.count(SDV)) {
- Record.type = RecordType::VReg;
- assert(VirtRegs.count(SDV));
- Record.payload.Reg = VirtRegs[SDV];
+ if (LowerAsVReg.count(SDV)) {
+ if (IsLocal) {
+ // Result is already stored in StatepointLowering
+ Record.type = RecordType::SDValueNode;
+ } else {
+ Record.type = RecordType::VReg;
+ assert(VirtRegs.count(SDV));
+ Record.payload.Reg = VirtRegs[SDV];
+ }
} else if (Loc.getNode()) {
Record.type = RecordType::Spill;
Record.payload.FI = cast<FrameIndexSDNode>(Loc)->getIndex();
>From c86d068d022d217be68c5349032b12cee7e6f0d4 Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Mon, 17 Mar 2025 22:06:19 -0700
Subject: [PATCH 2/2] Address a comment.
---
llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
index f01f066367509..80aeefe8e068a 100644
--- a/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
@@ -922,8 +922,9 @@ SDValue SelectionDAGBuilder::LowerAsSTATEPOINT(
Record.type = RecordType::SDValueNode;
} else {
Record.type = RecordType::VReg;
- assert(VirtRegs.count(SDV));
- Record.payload.Reg = VirtRegs[SDV];
+ auto It = VirtRegs.find(SDV);
+ assert(It != VirtRegs.end());
+ Record.payload.Reg = It->second;
}
} else if (Loc.getNode()) {
Record.type = RecordType::Spill;
More information about the llvm-commits
mailing list