[llvm-branch-commits] [llvm] [LoopVectorizer] Bundle partial reductions with different extensions (PR #136997)

Gaëtan Bossu via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Tue May 13 12:02:29 PDT 2025


================
@@ -2586,22 +2590,21 @@ class VPMulAccumulateReductionRecipe : public VPReductionRecipe {
   VPValue *getVecOp1() const { return getOperand(2); }
 
   /// Return if this MulAcc recipe contains extend instructions.
-  bool isExtended() const { return ExtOp != Instruction::CastOps::CastOpsEnd; }
+  bool isExtended() const {
+    return getVecOp0Info().ExtOp != Instruction::CastOps::CastOpsEnd;
----------------
gbossu wrote:

But could it happen that Op0 is not extended, and Op1 is? (Probably a stupid question because I'm reading this code without prior knowledge about `VPlan` stuff 😄)

https://github.com/llvm/llvm-project/pull/136997


More information about the llvm-branch-commits mailing list