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

Alexey Bataev via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 19 13:57:10 PDT 2025


================
@@ -1088,6 +1144,69 @@ static InstructionsState getSameOpcode(ArrayRef<Value *> VL,
   return InstructionsState(MainOp, AltOp);
 }
 
+/// \returns analysis of the Instructions in \p VL described in
+/// InstructionsState in propose to vectorize with copyable instructions.
+static InstructionsState getCopyableOpcode(ArrayRef<Value *> VL,
+                                           const TargetLibraryInfo &TLI) {
+  if (!all_of(VL, IsaPred<Instruction>) || !VectorizeCopyable)
+    return InstructionsState::invalid();
+  Instruction *MainOp = cast<Instruction>(VL[0]);
+  Instruction *AltOp = nullptr;
+  unsigned Opcode = MainOp->getOpcode();
+  unsigned AltOpcode = Opcode;
+  auto getAltOp = [Opcode, &AltOpcode, &AltOp](ArrayRef<Value *> VL) {
+    for (Value *V : VL) {
+      Instruction *I = cast<Instruction>(V);
+      if (I->isIntDivRem() || I->isFPDivRem())
+        return false;
+      if (isa<PHINode>(I)) {
+        return false;
+      }
----------------
alexey-bataev wrote:

1. Drop extra parens.
2. Why PHI cannot be treated as copyable?

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


More information about the llvm-commits mailing list