[llvm] [SLP] SLP's copyable elements based upon Main/Alt operations. (PR #124242)

Alexey Bataev via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 13 04:06:43 PDT 2025


================
@@ -2488,8 +2627,16 @@ class BoUpSLP {
           }
           bool IsInverseOperation = !isCommutative(cast<Instruction>(VL[Lane]));
           bool APO = (OpIdx == 0) ? false : IsInverseOperation;
-          OpsVec[OpIdx][Lane] = {cast<Instruction>(VL[Lane])->getOperand(OpIdx),
-                                 APO, false};
+          Instruction *Inst = cast<Instruction>(VL[Lane]);
+          if (Inst->getOpcode() != MainOp->getOpcode() &&
+              OpIdx > (Inst->getNumOperands() - 1)) {
----------------
alexey-bataev wrote:

How OpIdx can be greater than number of operands?

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


More information about the llvm-commits mailing list