-
Notifications
You must be signed in to change notification settings - Fork 13.6k
[SLP][REVEC] Make ShuffleCostEstimator and ShuffleInstructionBuilder support vector instructions. #99499
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
[SLP][REVEC] Make ShuffleCostEstimator and ShuffleInstructionBuilder support vector instructions. #99499
Changes from 9 commits
968f97d
c43c8e4
fdaef59
1bfa95d
534f25c
3e632e1
a58871f
201cf72
ed8f565
ccd6f2b
ae35ae0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -253,6 +253,21 @@ static FixedVectorType *getWidenedType(Type *ScalarTy, unsigned VF) { | |
VF * getNumElements(ScalarTy)); | ||
} | ||
|
||
static void transformScalarShuffleIndiciesToVector(unsigned VecTyNumElements, | ||
SmallVectorImpl<int> &Mask) { | ||
// The ShuffleBuilder implementation use shufflevector to splat an "element". | ||
// But the element have different meaning for SLP (scalar) and REVEC | ||
// (vector). We need to expand Mask into masks which shufflevector can use | ||
// directly. | ||
SmallVector<int> NewMask(Mask.size() * VecTyNumElements); | ||
for (unsigned I : seq<unsigned>(Mask.size())) | ||
for (auto [J, MaskV] : enumerate(MutableArrayRef(NewMask).slice( | ||
I * VecTyNumElements, VecTyNumElements))) | ||
MaskV = Mask[I] == PoisonMaskElem ? PoisonMaskElem | ||
: Mask[I] * VecTyNumElements + J; | ||
Mask.swap(NewMask); | ||
} | ||
|
||
/// \returns True if the value is a constant (but not globals/constant | ||
/// expressions). | ||
static bool isConstant(Value *V) { | ||
|
@@ -7762,6 +7777,31 @@ namespace { | |
/// The base class for shuffle instruction emission and shuffle cost estimation. | ||
class BaseShuffleAnalysis { | ||
protected: | ||
Type *ScalarTy = nullptr; | ||
|
||
BaseShuffleAnalysis(Type *ScalarTy) : ScalarTy(ScalarTy) {} | ||
|
||
/// V is expected to be a vectorized value. | ||
/// When REVEC is disabled, there is no difference between VF and | ||
/// VNumElements. | ||
/// When REVEC is enabled, VF is VNumElements / ScalarTyNumElements. | ||
/// e.g., if ScalarTy is <4 x Ty> and V1 is <8 x Ty>, 2 is returned instead | ||
/// of 8. | ||
unsigned getVF(Value *V) const { | ||
assert(V && "V cannot be nullptr"); | ||
assert(isa<FixedVectorType>(V->getType()) && | ||
"V does not have FixedVectorType"); | ||
assert(ScalarTy && "ScalarTy cannot be nullptr"); | ||
unsigned ScalarTyNumElements = getNumElements(ScalarTy); | ||
unsigned VNumElements = | ||
cast<FixedVectorType>(V->getType())->getNumElements(); | ||
assert(VNumElements > ScalarTyNumElements && | ||
"the number of elements of V is not large enough"); | ||
assert(VNumElements % ScalarTyNumElements == 0 && | ||
"the number of elements of V is not a vectorized value"); | ||
return VNumElements / ScalarTyNumElements; | ||
} | ||
|
||
/// Checks if the mask is an identity mask. | ||
/// \param IsStrict if is true the function returns false if mask size does | ||
/// not match vector size. | ||
|
@@ -8258,7 +8298,6 @@ class BoUpSLP::ShuffleCostEstimator : public BaseShuffleAnalysis { | |
bool IsFinalized = false; | ||
SmallVector<int> CommonMask; | ||
SmallVector<PointerUnion<Value *, const TreeEntry *>, 2> InVectors; | ||
Type *ScalarTy = nullptr; | ||
const TargetTransformInfo &TTI; | ||
InstructionCost Cost = 0; | ||
SmallDenseSet<Value *> VectorizedVals; | ||
|
@@ -8840,14 +8879,14 @@ class BoUpSLP::ShuffleCostEstimator : public BaseShuffleAnalysis { | |
} else if (V1 && P2.isNull()) { | ||
// Shuffle single vector. | ||
ExtraCost += GetValueMinBWAffectedCost(V1); | ||
CommonVF = cast<FixedVectorType>(V1->getType())->getNumElements(); | ||
CommonVF = getVF(V1); | ||
assert( | ||
all_of(Mask, | ||
[=](int Idx) { return Idx < static_cast<int>(CommonVF); }) && | ||
"All elements in mask must be less than CommonVF."); | ||
} else if (V1 && !V2) { | ||
// Shuffle vector and tree node. | ||
unsigned VF = cast<FixedVectorType>(V1->getType())->getNumElements(); | ||
unsigned VF = getVF(V1); | ||
const TreeEntry *E2 = P2.get<const TreeEntry *>(); | ||
CommonVF = std::max(VF, E2->getVectorFactor()); | ||
assert(all_of(Mask, | ||
|
@@ -8873,7 +8912,7 @@ class BoUpSLP::ShuffleCostEstimator : public BaseShuffleAnalysis { | |
V2 = getAllOnesValue(*R.DL, getWidenedType(ScalarTy, CommonVF)); | ||
} else if (!V1 && V2) { | ||
// Shuffle vector and tree node. | ||
unsigned VF = cast<FixedVectorType>(V2->getType())->getNumElements(); | ||
unsigned VF = getVF(V2); | ||
const TreeEntry *E1 = P1.get<const TreeEntry *>(); | ||
CommonVF = std::max(VF, E1->getVectorFactor()); | ||
assert(all_of(Mask, | ||
|
@@ -8901,9 +8940,8 @@ class BoUpSLP::ShuffleCostEstimator : public BaseShuffleAnalysis { | |
V2 = getAllOnesValue(*R.DL, getWidenedType(ScalarTy, CommonVF)); | ||
} else { | ||
assert(V1 && V2 && "Expected both vectors."); | ||
unsigned VF = cast<FixedVectorType>(V1->getType())->getNumElements(); | ||
CommonVF = | ||
std::max(VF, cast<FixedVectorType>(V2->getType())->getNumElements()); | ||
unsigned VF = getVF(V1); | ||
CommonVF = std::max(VF, getVF(V2)); | ||
assert(all_of(Mask, | ||
[=](int Idx) { | ||
return Idx < 2 * static_cast<int>(CommonVF); | ||
|
@@ -8921,6 +8959,9 @@ class BoUpSLP::ShuffleCostEstimator : public BaseShuffleAnalysis { | |
V2 = getAllOnesValue(*R.DL, getWidenedType(ScalarTy, CommonVF)); | ||
} | ||
} | ||
if (auto *VecTy = dyn_cast<FixedVectorType>(ScalarTy)) | ||
transformScalarShuffleIndiciesToVector(VecTy->getNumElements(), | ||
CommonMask); | ||
InVectors.front() = | ||
Constant::getNullValue(getWidenedType(ScalarTy, CommonMask.size())); | ||
if (InVectors.size() == 2) | ||
|
@@ -8933,7 +8974,7 @@ class BoUpSLP::ShuffleCostEstimator : public BaseShuffleAnalysis { | |
ShuffleCostEstimator(Type *ScalarTy, TargetTransformInfo &TTI, | ||
ArrayRef<Value *> VectorizedVals, BoUpSLP &R, | ||
SmallPtrSetImpl<Value *> &CheckedExtracts) | ||
: ScalarTy(ScalarTy), TTI(TTI), | ||
: BaseShuffleAnalysis(ScalarTy), TTI(TTI), | ||
VectorizedVals(VectorizedVals.begin(), VectorizedVals.end()), R(R), | ||
CheckedExtracts(CheckedExtracts) {} | ||
Value *adjustExtracts(const TreeEntry *E, MutableArrayRef<int> Mask, | ||
|
@@ -9138,7 +9179,7 @@ class BoUpSLP::ShuffleCostEstimator : public BaseShuffleAnalysis { | |
} | ||
assert(!InVectors.empty() && !CommonMask.empty() && | ||
"Expected only tree entries from extracts/reused buildvectors."); | ||
unsigned VF = cast<FixedVectorType>(V1->getType())->getNumElements(); | ||
unsigned VF = getVF(V1); | ||
if (InVectors.size() == 2) { | ||
Cost += createShuffle(InVectors.front(), InVectors.back(), CommonMask); | ||
transformMaskAfterShuffle(CommonMask, CommonMask); | ||
|
@@ -9172,12 +9213,30 @@ class BoUpSLP::ShuffleCostEstimator : public BaseShuffleAnalysis { | |
} | ||
Vals.push_back(Constant::getNullValue(V->getType())); | ||
} | ||
if (auto *VecTy = dyn_cast<FixedVectorType>(Vals.front()->getType())) { | ||
// When REVEC is enabled, we need to expand vector types into scalar | ||
// types. | ||
unsigned VecTyNumElements = VecTy->getNumElements(); | ||
SmallVector<Constant *> NewVals; | ||
NewVals.reserve(VL.size() * VecTyNumElements); | ||
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. SmallVector<Constant *> NewVals(VL.size() * VecTyNumElements, PoisonValue::get()); 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.
|
||
for (Constant *V : Vals) | ||
for (unsigned I = 0; I != VecTyNumElements; ++I) { | ||
Type *ScalarTy = V->getType()->getScalarType(); | ||
if (isa<PoisonValue>(V)) | ||
NewVals.push_back(PoisonValue::get(ScalarTy)); | ||
else if (isa<UndefValue>(V)) | ||
NewVals.push_back(UndefValue::get(ScalarTy)); | ||
else | ||
NewVals.push_back(Constant::getNullValue(ScalarTy)); | ||
} | ||
Vals.swap(NewVals); | ||
} | ||
return ConstantVector::get(Vals); | ||
} | ||
return ConstantVector::getSplat( | ||
ElementCount::getFixed( | ||
cast<FixedVectorType>(Root->getType())->getNumElements()), | ||
getAllOnesValue(*R.DL, ScalarTy)); | ||
getAllOnesValue(*R.DL, ScalarTy->getScalarType())); | ||
} | ||
InstructionCost createFreeze(InstructionCost Cost) { return Cost; } | ||
/// Finalize emission of the shuffles. | ||
|
@@ -11677,8 +11736,8 @@ Value *BoUpSLP::gather(ArrayRef<Value *> VL, Value *Root, Type *ScalarTy) { | |
Type *Ty) { | ||
Value *Scalar = V; | ||
if (Scalar->getType() != Ty) { | ||
assert(Scalar->getType()->isIntegerTy() && Ty->isIntegerTy() && | ||
"Expected integer types only."); | ||
assert(Scalar->getType()->isIntOrIntVectorTy() && | ||
Ty->isIntOrIntVectorTy() && "Expected integer types only."); | ||
Value *V = Scalar; | ||
if (auto *CI = dyn_cast<CastInst>(Scalar); | ||
isa_and_nonnull<SExtInst, ZExtInst>(CI)) { | ||
|
@@ -11691,10 +11750,20 @@ Value *BoUpSLP::gather(ArrayRef<Value *> VL, Value *Root, Type *ScalarTy) { | |
V, Ty, !isKnownNonNegative(Scalar, SimplifyQuery(*DL))); | ||
} | ||
|
||
Vec = Builder.CreateInsertElement(Vec, Scalar, Builder.getInt32(Pos)); | ||
auto *InsElt = dyn_cast<InsertElementInst>(Vec); | ||
if (!InsElt) | ||
return Vec; | ||
Instruction *InsElt; | ||
if (auto *VecTy = dyn_cast<FixedVectorType>(Scalar->getType())) { | ||
Vec = InsElt = Builder.CreateInsertVector( | ||
Vec->getType(), Vec, V, | ||
Builder.getInt64(Pos * VecTy->getNumElements())); | ||
auto *II = dyn_cast<IntrinsicInst>(InsElt); | ||
if (!II || II->getIntrinsicID() != Intrinsic::vector_insert) | ||
return Vec; | ||
} else { | ||
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. No need for else after return 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. The else is for |
||
Vec = Builder.CreateInsertElement(Vec, Scalar, Builder.getInt32(Pos)); | ||
InsElt = dyn_cast<InsertElementInst>(Vec); | ||
if (!InsElt) | ||
return Vec; | ||
} | ||
GatherShuffleExtractSeq.insert(InsElt); | ||
CSEBlocks.insert(InsElt->getParent()); | ||
// Add to our 'need-to-extract' list. | ||
|
@@ -11795,7 +11864,6 @@ class BoUpSLP::ShuffleInstructionBuilder final : public BaseShuffleAnalysis { | |
/// resulting shuffle and the second operand sets to be the newly added | ||
/// operand. The \p CommonMask is transformed in the proper way after that. | ||
SmallVector<Value *, 2> InVectors; | ||
Type *ScalarTy = nullptr; | ||
IRBuilderBase &Builder; | ||
BoUpSLP &R; | ||
|
||
|
@@ -11921,7 +11989,7 @@ class BoUpSLP::ShuffleInstructionBuilder final : public BaseShuffleAnalysis { | |
|
||
public: | ||
ShuffleInstructionBuilder(Type *ScalarTy, IRBuilderBase &Builder, BoUpSLP &R) | ||
: ScalarTy(ScalarTy), Builder(Builder), R(R) {} | ||
: BaseShuffleAnalysis(ScalarTy), Builder(Builder), R(R) {} | ||
|
||
/// Adjusts extractelements after reusing them. | ||
Value *adjustExtracts(const TreeEntry *E, MutableArrayRef<int> Mask, | ||
|
@@ -12178,7 +12246,7 @@ class BoUpSLP::ShuffleInstructionBuilder final : public BaseShuffleAnalysis { | |
break; | ||
} | ||
} | ||
int VF = cast<FixedVectorType>(V1->getType())->getNumElements(); | ||
int VF = getVF(V1); | ||
for (unsigned Idx = 0, Sz = CommonMask.size(); Idx < Sz; ++Idx) | ||
if (Mask[Idx] != PoisonMaskElem && CommonMask[Idx] == PoisonMaskElem) | ||
CommonMask[Idx] = Mask[Idx] + (It == InVectors.begin() ? 0 : VF); | ||
|
@@ -12201,6 +12269,14 @@ class BoUpSLP::ShuffleInstructionBuilder final : public BaseShuffleAnalysis { | |
finalize(ArrayRef<int> ExtMask, unsigned VF = 0, | ||
function_ref<void(Value *&, SmallVectorImpl<int> &)> Action = {}) { | ||
IsFinalized = true; | ||
SmallVector<int> NewExtMask(ExtMask); | ||
if (auto *VecTy = dyn_cast<FixedVectorType>(ScalarTy)) { | ||
transformScalarShuffleIndiciesToVector(VecTy->getNumElements(), | ||
CommonMask); | ||
transformScalarShuffleIndiciesToVector(VecTy->getNumElements(), | ||
NewExtMask); | ||
ExtMask = NewExtMask; | ||
} | ||
if (Action) { | ||
Value *Vec = InVectors.front(); | ||
if (InVectors.size() == 2) { | ||
|
@@ -13984,6 +14060,16 @@ Value *BoUpSLP::vectorizeTree( | |
if (GEP->hasName()) | ||
CloneGEP->takeName(GEP); | ||
Ex = CloneGEP; | ||
} else if (auto *VecTy = | ||
dyn_cast<FixedVectorType>(Scalar->getType())) { | ||
unsigned VecTyNumElements = VecTy->getNumElements(); | ||
HanKuanChen marked this conversation as resolved.
Show resolved
Hide resolved
|
||
// When REVEC is enabled, we need to extract a vector. | ||
// Note: The element size of Scalar may be different from the | ||
// element size of Vec. | ||
Ex = Builder.CreateExtractVector( | ||
FixedVectorType::get(Vec->getType()->getScalarType(), | ||
VecTyNumElements), | ||
Vec, Builder.getInt64(ExternalUse.Lane * VecTyNumElements)); | ||
} else { | ||
Ex = Builder.CreateExtractElement(Vec, Lane); | ||
} | ||
|
Uh oh!
There was an error while loading. Please reload this page.