[llvm] [SLP]Represent SLP graph as a tree (PR #126771)

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 19 05:10:49 PST 2025


================
@@ -5951,6 +5985,67 @@ static void combineOrders(MutableArrayRef<unsigned> Order,
   }
 }
 
+bool BoUpSLP::isProfitableToReorder() const {
+  constexpr unsigned TinyVF = 2;
+  constexpr unsigned TinyTree = 10;
+  if (VectorizableTree.size() <= TinyTree)
+    return true;
+  if (VectorizableTree.front()->hasState() &&
+      !VectorizableTree.front()->isGather() &&
+      (VectorizableTree.front()->getOpcode() == Instruction::Store ||
+       VectorizableTree.front()->getOpcode() == Instruction::PHI ||
+       (VectorizableTree.front()->getVectorFactor() == TinyVF &&
----------------
RKSimon wrote:

Is using `== TinyVF` a good comparison to use? It feels like its too linked to TinyVF being equal to 2?

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


More information about the llvm-commits mailing list