[llvm] [SelectionDAG] Avoid repeated hash lookups (NFC) (PR #128999)
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 26 20:39:21 PST 2025
https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/128999
None
>From 7447e0e0e96c976062596a4470e733d1146d506c Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Wed, 26 Feb 2025 07:43:26 -0800
Subject: [PATCH] [SelectionDAG] Avoid repeated hash lookups (NFC)
---
llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp b/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
index 33c6341744478..95d0c39b84aba 100644
--- a/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
@@ -343,9 +343,10 @@ void FunctionLoweringInfo::set(const Function &fn, MachineFunction &mf,
for (auto &KV : EHInfo.UnwindDestToSrcs) {
const auto *Dest = cast<const BasicBlock *>(KV.first);
MachineBasicBlock *DestMBB = getMBB(Dest);
- UnwindDestToSrcs[DestMBB] = SmallPtrSet<BBOrMBB, 4>();
+ auto &Srcs = UnwindDestToSrcs[DestMBB];
+ Srcs = SmallPtrSet<BBOrMBB, 4>();
for (const auto P : KV.second)
- UnwindDestToSrcs[DestMBB].insert(getMBB(cast<const BasicBlock *>(P)));
+ Srcs.insert(getMBB(cast<const BasicBlock *>(P)));
}
EHInfo.UnwindDestToSrcs = std::move(UnwindDestToSrcs);
}
More information about the llvm-commits
mailing list