[llvm] [SLP]Support revectorization of the previously vectorized scalars (PR #133091)
Alexey Bataev via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 27 06:54:45 PDT 2025
================
@@ -9567,14 +9564,34 @@ void BoUpSLP::buildTree_rec(ArrayRef<Value *> VL, unsigned Depth,
// We now know that this is a vector of instructions of the same type from
// the same block.
- // Check that none of the instructions in the bundle are already in the tree.
- for (Value *V : VL) {
- if ((!IsScatterVectorizeUserTE && !isa<Instruction>(V)) ||
- doesNotNeedToBeScheduled(V))
- continue;
- if (isVectorized(V)) {
- LLVM_DEBUG(dbgs() << "SLP: The instruction (" << *V
- << ") is already in tree.\n");
+ // Check that none of the instructions in the bundle are already in the tree
+ // and the node may be not profitable for the vectorization as the small
+ // alternate node.
+ if (S && S.isAltShuffle()) {
+ unsigned NumVectorized = 0;
+ unsigned NumExtracted = 0;
+ for (Value *V : VL) {
+ auto *I = dyn_cast<Instruction>(V);
+ if (!I || doesNotNeedToBeScheduled(V) ||
+ all_of(I->operands(), [&](const Use &U) {
+ return isa<ExtractElementInst>(U.get());
+ }))
+ continue;
+ if (isVectorized(V))
+ ++NumVectorized;
+ else if (!V->hasOneUser() && !areAllUsersVectorized(I, UserIgnoreList))
+ ++NumExtracted;
+ }
+ constexpr TTI::TargetCostKind Kind = TTI::TCK_RecipThroughput;
+ if (NumVectorized > 0 &&
+ (VL.size() == 2 ||
+ (getShuffleCost(*TTI, TTI::SK_PermuteTwoSrc,
+ getWidenedType(VL.front()->getType(), VL.size()), {},
+ Kind) +
+ NumExtracted >
+ VL.size() - NumVectorized))) {
----------------
alexey-bataev wrote:
Done
https://github.com/llvm/llvm-project/pull/133091
More information about the llvm-commits
mailing list