[llvm] [SLP] Sort PHIs by ExtractElements when relevant (PR #131229)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 18:01:10 PDT 2025
================
@@ -22690,8 +22690,41 @@ bool SLPVectorizerPass::vectorizeChainsInBlock(BasicBlock *BB, BoUpSLP &R) {
if (NodeI1 != NodeI2)
return NodeI1->getDFSNumIn() < NodeI2->getDFSNumIn();
InstructionsState S = getSameOpcode({I1, I2}, *TLI);
- if (S && !S.isAltShuffle())
+ if (S && !S.isAltShuffle()) {
+ if (!isa<ExtractElementInst>(I1) || !isa<ExtractElementInst>(I2))
+ continue;
+
+ auto E1 = cast<ExtractElementInst>(I1);
+ auto E2 = cast<ExtractElementInst>(I2);
----------------
arsenm wrote:
dyn_cast instead of isa and cast. Also const auto *
https://github.com/llvm/llvm-project/pull/131229
More information about the llvm-commits
mailing list