[llvm] [SLP][REVEC] Ignore UserTreeIndex if it is empty. (PR #131993)

Han-Kuan Chen via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 19 07:51:40 PDT 2025


================
@@ -6449,9 +6449,10 @@ void BoUpSLP::reorderTopToBottom() {
             assert(SLPReVec && "Only supported by REVEC.");
             // ShuffleVectorInst does not do reorderOperands (and it should not
             // because ShuffleVectorInst supports only a limited set of
-            // patterns). Only do reorderNodeWithReuses if all of the users are
-            // not ShuffleVectorInst.
-            if (isa<ShuffleVectorInst>(TE->UserTreeIndex.UserTE->getMainOp()))
+            // patterns). Only do reorderNodeWithReuses if the user is not
+            // ShuffleVectorInst.
+            if (TE->UserTreeIndex &&
+                isa<ShuffleVectorInst>(TE->UserTreeIndex.UserTE->getMainOp()))
----------------
HanKuanChen wrote:

How? If a TreeEntry has a user, that means the user must have MainOp inside InstructionsState. Otherwise, buildTree_rec cannot work.

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


More information about the llvm-commits mailing list