[llvm] [Scalar] Avoid repeated hash lookups (NFC) (PR #129825)
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 4 20:49:12 PST 2025
https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/129825
None
>From 437be988610ff0a7d5276fb229f62a788bab4ffd Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Tue, 4 Mar 2025 07:38:15 -0800
Subject: [PATCH] [Scalar] Avoid repeated hash lookups (NFC)
---
llvm/lib/Transforms/Scalar/LICM.cpp | 24 +++++++++++-------------
1 file changed, 11 insertions(+), 13 deletions(-)
diff --git a/llvm/lib/Transforms/Scalar/LICM.cpp b/llvm/lib/Transforms/Scalar/LICM.cpp
index 0ccbe6ec144c9..4bad19e6fb7be 100644
--- a/llvm/lib/Transforms/Scalar/LICM.cpp
+++ b/llvm/lib/Transforms/Scalar/LICM.cpp
@@ -766,8 +766,8 @@ class ControlFlowHoister {
if (!ControlFlowHoisting)
return CurLoop->getLoopPreheader();
// If BB has already been hoisted, return that
- if (HoistDestinationMap.count(BB))
- return HoistDestinationMap[BB];
+ if (auto It = HoistDestinationMap.find(BB); It != HoistDestinationMap.end())
+ return It->second;
// Check if this block is conditional based on a pending branch
auto HasBBAsSuccessor =
@@ -800,11 +800,12 @@ class ControlFlowHoister {
// Create hoisted versions of blocks that currently don't have them
auto CreateHoistedBlock = [&](BasicBlock *Orig) {
- if (HoistDestinationMap.count(Orig))
- return HoistDestinationMap[Orig];
+ auto [It, Inserted] = HoistDestinationMap.try_emplace(Orig);
+ if (!Inserted)
+ return It->second;
BasicBlock *New =
BasicBlock::Create(C, Orig->getName() + ".licm", Orig->getParent());
- HoistDestinationMap[Orig] = New;
+ It->second = New;
DT->addNewBlock(New, HoistTarget);
if (CurLoop->getParentLoop())
CurLoop->getParentLoop()->addBasicBlockToLoop(New, *LI);
@@ -1531,14 +1532,11 @@ static Instruction *sinkThroughTriviallyReplaceablePHI(
assert(isTriviallyReplaceablePHI(*TPN, *I) &&
"Expect only trivially replaceable PHI");
BasicBlock *ExitBlock = TPN->getParent();
- Instruction *New;
- auto It = SunkCopies.find(ExitBlock);
- if (It != SunkCopies.end())
- New = It->second;
- else
- New = SunkCopies[ExitBlock] = cloneInstructionInExitBlock(
- *I, *ExitBlock, *TPN, LI, SafetyInfo, MSSAU);
- return New;
+ auto [It, Inserted] = SunkCopies.try_emplace(ExitBlock);
+ if (Inserted)
+ It->second = cloneInstructionInExitBlock(*I, *ExitBlock, *TPN, LI,
+ SafetyInfo, MSSAU);
+ return It->second;
}
static bool canSplitPredecessors(PHINode *PN, LoopSafetyInfo *SafetyInfo) {
More information about the llvm-commits
mailing list