[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:52 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)
----------------
fhahn wrote:
Can we pass NonNegFlagsTy instead of bool to make the distinction clearer?
https://github.com/llvm/llvm-project/pull/113903
More information about the llvm-commits
mailing list