-
Notifications
You must be signed in to change notification settings - Fork 15.2k
[SLP]Initial support for non-power-of-2 (but still whole register) number of elements in operands. #107273
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
alexey-bataev
merged 7 commits into
main
from
users/alexey-bataev/spr/slpinitial-support-for-non-power-of-2-but-still-whole-register-number-of-elements-in-operands-1
Sep 25, 2024
Merged
[SLP]Initial support for non-power-of-2 (but still whole register) number of elements in operands. #107273
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
f927502
[𝘀𝗽𝗿] initial version
alexey-bataev a79159b
Fix formatting
alexey-bataev 0a78a26
Rebase, address comments
alexey-bataev b8b1527
Rebase, address comments
alexey-bataev 7c68dbf
Rebase, restored some code, some optimizations
alexey-bataev affdc53
Rebase, address comments
alexey-bataev 13c2844
Rebase
alexey-bataev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -260,6 +260,20 @@ static FixedVectorType *getWidenedType(Type *ScalarTy, unsigned VF) { | |
| VF * getNumElements(ScalarTy)); | ||
| } | ||
|
|
||
| /// Returns the number of elements of the given type \p Ty, not less than \p Sz, | ||
| /// which forms type, which splits by \p TTI into whole vector types during | ||
| /// legalization. | ||
| static unsigned getFullVectorNumberOfElements(const TargetTransformInfo &TTI, | ||
| Type *Ty, unsigned Sz) { | ||
| if (!isValidElementType(Ty)) | ||
| return bit_ceil(Sz); | ||
| // Find the number of elements, which forms full vectors. | ||
| const unsigned NumParts = TTI.getNumberOfParts(getWidenedType(Ty, Sz)); | ||
| if (NumParts == 0 || NumParts >= Sz) | ||
| return bit_ceil(Sz); | ||
| return bit_ceil(divideCeil(Sz, NumParts)) * NumParts; | ||
| } | ||
|
|
||
| static void transformScalarShuffleIndiciesToVector(unsigned VecTyNumElements, | ||
| SmallVectorImpl<int> &Mask) { | ||
| // The ShuffleBuilder implementation use shufflevector to splat an "element". | ||
|
|
@@ -394,7 +408,7 @@ static bool isVectorLikeInstWithConstOps(Value *V) { | |
| /// total number of elements \p Size and number of registers (parts) \p | ||
| /// NumParts. | ||
| static unsigned getPartNumElems(unsigned Size, unsigned NumParts) { | ||
| return PowerOf2Ceil(divideCeil(Size, NumParts)); | ||
| return std::min<unsigned>(Size, bit_ceil(divideCeil(Size, NumParts))); | ||
| } | ||
|
|
||
| /// Returns correct remaining number of elements, considering total amount \p | ||
|
|
@@ -1222,6 +1236,22 @@ static bool doesNotNeedToSchedule(ArrayRef<Value *> VL) { | |
| (all_of(VL, isUsedOutsideBlock) || all_of(VL, areAllOperandsNonInsts)); | ||
| } | ||
|
|
||
| /// Returns true if widened type of \p Ty elements with size \p Sz represents | ||
| /// full vector type, i.e. adding extra element results in extra parts upon type | ||
| /// legalization. | ||
| static bool hasFullVectorsOrPowerOf2(const TargetTransformInfo &TTI, Type *Ty, | ||
| unsigned Sz) { | ||
| if (Sz <= 1) | ||
| return false; | ||
| if (!isValidElementType(Ty) && !isa<FixedVectorType>(Ty)) | ||
| return false; | ||
| if (has_single_bit(Sz)) | ||
| return true; | ||
| const unsigned NumParts = TTI.getNumberOfParts(getWidenedType(Ty, Sz)); | ||
| return NumParts > 0 && NumParts < Sz && has_single_bit(Sz / NumParts) && | ||
| Sz % NumParts == 0; | ||
| } | ||
|
|
||
| namespace slpvectorizer { | ||
|
|
||
| /// Bottom Up SLP Vectorizer. | ||
|
|
@@ -3311,6 +3341,15 @@ class BoUpSLP { | |
| /// Return true if this is a non-power-of-2 node. | ||
| bool isNonPowOf2Vec() const { | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Request: Please leave the original method, and add a new one called isAllowedNonPowOfTwo. |
||
| bool IsNonPowerOf2 = !has_single_bit(Scalars.size()); | ||
| return IsNonPowerOf2; | ||
| } | ||
|
|
||
| /// Return true if this is a node, which tries to vectorize number of | ||
| /// elements, forming whole vectors. | ||
| bool | ||
| hasNonWholeRegisterOrNonPowerOf2Vec(const TargetTransformInfo &TTI) const { | ||
| bool IsNonPowerOf2 = !hasFullVectorsOrPowerOf2( | ||
| TTI, getValueType(Scalars.front()), Scalars.size()); | ||
| assert((!IsNonPowerOf2 || ReuseShuffleIndices.empty()) && | ||
| "Reshuffling not supported with non-power-of-2 vectors yet."); | ||
| return IsNonPowerOf2; | ||
|
|
@@ -3430,8 +3469,10 @@ class BoUpSLP { | |
| Last->State = EntryState; | ||
| // FIXME: Remove once support for ReuseShuffleIndices has been implemented | ||
| // for non-power-of-two vectors. | ||
| assert((has_single_bit(VL.size()) || ReuseShuffleIndices.empty()) && | ||
| "Reshuffling scalars not yet supported for nodes with padding"); | ||
| assert( | ||
| (hasFullVectorsOrPowerOf2(*TTI, getValueType(VL.front()), VL.size()) || | ||
| ReuseShuffleIndices.empty()) && | ||
| "Reshuffling scalars not yet supported for nodes with padding"); | ||
| Last->ReuseShuffleIndices.append(ReuseShuffleIndices.begin(), | ||
| ReuseShuffleIndices.end()); | ||
| if (ReorderIndices.empty()) { | ||
|
|
@@ -5269,7 +5310,7 @@ BoUpSLP::getReorderingData(const TreeEntry &TE, bool TopToBottom) { | |
| // node. | ||
| if (!TE.ReuseShuffleIndices.empty()) { | ||
| // FIXME: Support ReuseShuffleIndices for non-power-of-two vectors. | ||
| assert(!TE.isNonPowOf2Vec() && | ||
| assert(!TE.hasNonWholeRegisterOrNonPowerOf2Vec(*TTI) && | ||
| "Reshuffling scalars not yet supported for nodes with padding"); | ||
|
|
||
| if (isSplat(TE.Scalars)) | ||
|
|
@@ -5509,7 +5550,7 @@ BoUpSLP::getReorderingData(const TreeEntry &TE, bool TopToBottom) { | |
| } | ||
| // FIXME: Remove the non-power-of-two check once findReusedOrderedScalars | ||
| // has been auditted for correctness with non-power-of-two vectors. | ||
| if (!TE.isNonPowOf2Vec()) | ||
| if (!TE.hasNonWholeRegisterOrNonPowerOf2Vec(*TTI)) | ||
| if (std::optional<OrdersType> CurrentOrder = findReusedOrderedScalars(TE)) | ||
| return CurrentOrder; | ||
| } | ||
|
|
@@ -5662,15 +5703,18 @@ void BoUpSLP::reorderTopToBottom() { | |
| }); | ||
|
|
||
| // Reorder the graph nodes according to their vectorization factor. | ||
| for (unsigned VF = VectorizableTree.front()->getVectorFactor(); VF > 1; | ||
| VF = bit_ceil(VF) / 2) { | ||
| for (unsigned VF = VectorizableTree.front()->getVectorFactor(); | ||
| !VFToOrderedEntries.empty() && VF > 1; VF -= 2 - (VF & 1U)) { | ||
| auto It = VFToOrderedEntries.find(VF); | ||
| if (It == VFToOrderedEntries.end()) | ||
| continue; | ||
| // Try to find the most profitable order. We just are looking for the most | ||
| // used order and reorder scalar elements in the nodes according to this | ||
| // mostly used order. | ||
| ArrayRef<TreeEntry *> OrderedEntries = It->second.getArrayRef(); | ||
| // Delete VF entry upon exit. | ||
| auto Cleanup = make_scope_exit([&]() { VFToOrderedEntries.erase(It); }); | ||
|
|
||
| // All operands are reordered and used only in this node - propagate the | ||
| // most used order to the user node. | ||
| MapVector<OrdersType, unsigned, | ||
|
|
@@ -7529,33 +7573,36 @@ void BoUpSLP::buildTree_rec(ArrayRef<Value *> VL, unsigned Depth, | |
| UniqueValues.emplace_back(V); | ||
| } | ||
| size_t NumUniqueScalarValues = UniqueValues.size(); | ||
| if (NumUniqueScalarValues == VL.size()) { | ||
| bool IsFullVectors = hasFullVectorsOrPowerOf2( | ||
| *TTI, UniqueValues.front()->getType(), NumUniqueScalarValues); | ||
| if (NumUniqueScalarValues == VL.size() && | ||
| (VectorizeNonPowerOf2 || IsFullVectors)) { | ||
| ReuseShuffleIndices.clear(); | ||
| } else { | ||
| // FIXME: Reshuffing scalars is not supported yet for non-power-of-2 ops. | ||
| if ((UserTreeIdx.UserTE && UserTreeIdx.UserTE->isNonPowOf2Vec()) || | ||
| !llvm::has_single_bit(VL.size())) { | ||
| if ((UserTreeIdx.UserTE && | ||
| UserTreeIdx.UserTE->hasNonWholeRegisterOrNonPowerOf2Vec(*TTI)) || | ||
| !has_single_bit(VL.size())) { | ||
| LLVM_DEBUG(dbgs() << "SLP: Reshuffling scalars not yet supported " | ||
| "for nodes with padding.\n"); | ||
| newTreeEntry(VL, std::nullopt /*not vectorized*/, S, UserTreeIdx); | ||
| return false; | ||
| } | ||
| LLVM_DEBUG(dbgs() << "SLP: Shuffle for reused scalars.\n"); | ||
| if (NumUniqueScalarValues <= 1 || | ||
| (UniquePositions.size() == 1 && all_of(UniqueValues, | ||
| [](Value *V) { | ||
| return isa<UndefValue>(V) || | ||
| !isConstant(V); | ||
| })) || | ||
| !llvm::has_single_bit<uint32_t>(NumUniqueScalarValues)) { | ||
| if (NumUniqueScalarValues <= 1 || !IsFullVectors || | ||
| (UniquePositions.size() == 1 && all_of(UniqueValues, [](Value *V) { | ||
| return isa<UndefValue>(V) || !isConstant(V); | ||
| }))) { | ||
| if (DoNotFail && UniquePositions.size() > 1 && | ||
| NumUniqueScalarValues > 1 && S.MainOp->isSafeToRemove() && | ||
| all_of(UniqueValues, [=](Value *V) { | ||
| return isa<ExtractElementInst>(V) || | ||
| areAllUsersVectorized(cast<Instruction>(V), | ||
| UserIgnoreList); | ||
| })) { | ||
| unsigned PWSz = PowerOf2Ceil(UniqueValues.size()); | ||
| // Find the number of elements, which forms full vectors. | ||
| unsigned PWSz = getFullVectorNumberOfElements( | ||
| *TTI, UniqueValues.front()->getType(), UniqueValues.size()); | ||
| if (PWSz == VL.size()) { | ||
| ReuseShuffleIndices.clear(); | ||
| } else { | ||
|
|
@@ -9793,9 +9840,6 @@ class BoUpSLP::ShuffleCostEstimator : public BaseShuffleAnalysis { | |
| return nullptr; | ||
| Value *VecBase = nullptr; | ||
| ArrayRef<Value *> VL = E->Scalars; | ||
| // If the resulting type is scalarized, do not adjust the cost. | ||
| if (NumParts == VL.size()) | ||
| return nullptr; | ||
| // Check if it can be considered reused if same extractelements were | ||
| // vectorized already. | ||
| bool PrevNodeFound = any_of( | ||
|
|
@@ -10449,7 +10493,7 @@ BoUpSLP::getEntryCost(const TreeEntry *E, ArrayRef<Value *> VectorizedVals, | |
| InsertMask[Idx] = I + 1; | ||
| } | ||
| unsigned VecScalarsSz = PowerOf2Ceil(NumElts); | ||
| if (NumOfParts > 0) | ||
| if (NumOfParts > 0 && NumOfParts < NumElts) | ||
| VecScalarsSz = PowerOf2Ceil((NumElts + NumOfParts - 1) / NumOfParts); | ||
| unsigned VecSz = (1 + OffsetEnd / VecScalarsSz - OffsetBeg / VecScalarsSz) * | ||
| VecScalarsSz; | ||
|
|
@@ -17778,7 +17822,7 @@ bool SLPVectorizerPass::tryToVectorizeList(ArrayRef<Value *> VL, BoUpSLP &R, | |
| for (unsigned I = NextInst; I < MaxInst; ++I) { | ||
| unsigned ActualVF = std::min(MaxInst - I, VF); | ||
|
|
||
| if (!has_single_bit(ActualVF)) | ||
| if (!hasFullVectorsOrPowerOf2(*TTI, ScalarTy, ActualVF)) | ||
| continue; | ||
|
|
||
| if (MaxVFOnly && ActualVF < MaxVF) | ||
|
|
||
28 changes: 18 additions & 10 deletions
28
llvm/test/Transforms/SLPVectorizer/reduction-whole-regs-loads.ll
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think there's any requirement that a power of two VL is a full register? Consider SEW=64, VL=2 on RISCV. With zvl256b this is at most half of a register. At zvl128b, it might be a full register (or might not.)
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cust currently SLP supports power-of-2 elements, no matter if it uses full registers or not. This check just checks for what we currently have in the compiler by default, it is not new requirement. I'll rename the function.