[llvm] 206b42c - [LV] Use VPBuilder to create ComputeReductionResult. (NFC)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 23 09:10:25 PDT 2025
Author: Florian Hahn
Date: 2025-03-23T16:10:07Z
New Revision: 206b42c98e2073175e1bfa4a02f13bc7ed1482a5
URL: https://github.com/llvm/llvm-project/commit/206b42c98e2073175e1bfa4a02f13bc7ed1482a5
DIFF: https://github.com/llvm/llvm-project/commit/206b42c98e2073175e1bfa4a02f13bc7ed1482a5.diff
LOG: [LV] Use VPBuilder to create ComputeReductionResult. (NFC)
Update code to use VPBuilder, to simplify follow-up changes.
Added:
Modified:
llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
index 8484288456634..92160a421e59c 100644
--- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
@@ -9861,15 +9861,16 @@ void LoopVectorizationPlanner::adjustRecipesForReductions(
// bc.merge.rdx phi nodes, hence it needs to be created unconditionally here
// even for in-loop reductions, until the reduction resume value handling is
// also modeled in VPlan.
- auto *FinalReductionResult = new VPInstruction(
+ VPBuilder::InsertPointGuard Guard(Builder);
+ Builder.setInsertPoint(MiddleVPBB, IP);
+ auto *FinalReductionResult = Builder.createNaryOp(
VPInstruction::ComputeReductionResult, {PhiR, NewExitingVPV}, ExitDL);
// Update all users outside the vector region.
OrigExitingVPV->replaceUsesWithIf(
- FinalReductionResult, [](VPUser &User, unsigned) {
+ FinalReductionResult, [FinalReductionResult](VPUser &User, unsigned) {
auto *Parent = cast<VPRecipeBase>(&User)->getParent();
- return Parent && !Parent->getParent();
+ return FinalReductionResult != &User && !Parent->getParent();
});
- FinalReductionResult->insertBefore(*MiddleVPBB, IP);
// Adjust AnyOf reductions; replace the reduction phi for the selected value
// with a boolean reduction phi node to check if the condition is true in
@@ -9891,7 +9892,6 @@ void LoopVectorizationPlanner::adjustRecipesForReductions(
if (CmpR->getOperand(I) == PhiR)
CmpR->setOperand(I, PhiR->getStartValue());
}
- VPBuilder::InsertPointGuard Guard(Builder);
Builder.setInsertPoint(Select);
// If the true value of the select is the reduction phi, the new value is
More information about the llvm-commits
mailing list