[llvm] [Vectorize] Simplify code with MapVector::operator[] (NFC) (PR #115592)
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Sat Nov 9 08:16:28 PST 2024
https://github.com/kazutakahirata updated https://github.com/llvm/llvm-project/pull/115592
>From 93fc3a4957c6c0d2a410d6813e7a4ab79bafab15 Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Fri, 8 Nov 2024 07:42:25 -0800
Subject: [PATCH 1/2] [Vectorize] Simplify code with MapVector::operator[]
(NFC)
---
llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
index 82d85b112397f3..1ebc62f9843905 100644
--- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
@@ -6858,8 +6858,8 @@ void LoopVectorizationCostModel::collectValuesToIgnore() {
if ((SI = dyn_cast<StoreInst>(&I)) &&
Legal->isInvariantAddressOfReduction(SI->getPointerOperand())) {
ValuesToIgnore.insert(&I);
- auto I = DeadInvariantStoreOps.insert({SI->getPointerOperand(), {}});
- I.first->second.push_back(SI->getValueOperand());
+ DeadInvariantStoreOps[SI->getPointerOperand()].push_back(
+ SI->getValueOperand());
}
if (VecValuesToIgnore.contains(&I) || ValuesToIgnore.contains(&I))
@@ -8084,9 +8084,9 @@ void VPRecipeBuilder::createSwitchEdgeMasks(SwitchInst *SI) {
// ignored - they will get there anyhow.
if (Dst == DefaultDst)
continue;
- auto I = Dst2Compares.insert({Dst, {}});
+ auto &Compares = Dst2Compares[Dst];
VPValue *V = getVPValueOrAddLiveIn(C.getCaseValue());
- I.first->second.push_back(Builder.createICmp(CmpInst::ICMP_EQ, Cond, V));
+ Compares.push_back(Builder.createICmp(CmpInst::ICMP_EQ, Cond, V));
}
// We need to handle 2 separate cases below for all entries in Dst2Compares,
>From 20235f71733e07acee1292b17c55601e1919f765 Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Sat, 9 Nov 2024 08:16:15 -0800
Subject: [PATCH 2/2] Trigger build
More information about the llvm-commits
mailing list