[llvm] [VPlan] Impl VPlan-based pattern match for ExtendedRed and MulAccRed (PR #113903)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 19 09:12:51 PDT 2025
================
@@ -2262,6 +2299,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, bool IsNonNeg, DebugLoc DL)
+ : VPRecipeWithIRFlags(SC, Operands, NonNegFlagsTy(IsNonNeg), DL),
+ RdxDesc(R), IsOrdered(IsOrdered), IsConditional(CondOp) {
+ if (CondOp)
+ addOperand(CondOp);
+ }
+
+ /// For VPMulAccumulateReductionRecipe.
+ /// Note that the NUW/NSW and DL are for mul instruction.
+ VPReductionRecipe(const unsigned char SC, const RecurrenceDescriptor &R,
+ ArrayRef<VPValue *> Operands, VPValue *CondOp,
+ bool IsOrdered, bool NUW, bool NSW, DebugLoc DL)
----------------
fhahn wrote:
Can we pass WrapFlagsTy to tighten the interface?
https://github.com/llvm/llvm-project/pull/113903
More information about the llvm-commits
mailing list