[llvm] [VPlan] Impl VPlan-based pattern match for ExtendedRed and MulAccRed (PR #113903)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 24 03:31:37 PDT 2025
================
@@ -2262,6 +2294,28 @@ class VPReductionRecipe : public VPRecipeWithIRFlags {
setUnderlyingValue(I);
}
+ /// For VPExtendedReductionRecipe.
+ /// Note that IsNonNeg flag and the debug location are for extend instruction.
+ VPReductionRecipe(const unsigned char SC, const RecurrenceDescriptor &R,
+ ArrayRef<VPValue *> Operands, VPValue *CondOp,
+ bool IsOrdered, NonNegFlagsTy NonNeg, DebugLoc DL)
+ : VPRecipeWithIRFlags(SC, Operands, NonNeg, DL), RdxDesc(R),
+ IsOrdered(IsOrdered), IsConditional(CondOp) {
+ if (CondOp)
+ addOperand(CondOp);
+ }
+
+ /// For VPMulAccumulateReductionRecipe.
+ /// Note that the NUW/NSW and DL are for mul instruction.
----------------
fhahn wrote:
```suggestion
/// Note that the NUW/NSW and DL are from the Mul instruction.
```
https://github.com/llvm/llvm-project/pull/113903
More information about the llvm-commits
mailing list