forked from OSchip/llvm-project
[AVX512][AVX2]Cost calculation for interleave load/store patterns {v8i8,v16i8,v32i8,v64i8}
This patch adds accurate instructions cost. The formula presents two cases(stride 3 and stride 4) and calculates the cost according to the VF and stride. Reviewers: 1. delena 2. Farhana 3. zvi 4. dorit 5. Ayal Differential Revision: https://reviews.llvm.org/D38762 Change-Id: If4cfbd4ac0e63694e8144cb78c7fa34850647ff7 llvm-svn: 316072
This commit is contained in:
parent
5388e66d3a
commit
49293264cc
|
@ -2617,8 +2617,8 @@ int X86TTIImpl::getInterleavedMemoryOpCostAVX2(unsigned Opcode, Type *VecTy,
|
|||
{ 3, MVT::v2i8, 10 }, //(load 6i8 and) deinterleave into 3 x 2i8
|
||||
{ 3, MVT::v4i8, 4 }, //(load 12i8 and) deinterleave into 3 x 4i8
|
||||
{ 3, MVT::v8i8, 9 }, //(load 24i8 and) deinterleave into 3 x 8i8
|
||||
{ 3, MVT::v16i8, 18}, //(load 48i8 and) deinterleave into 3 x 16i8
|
||||
{ 3, MVT::v32i8, 42 }, //(load 96i8 and) deinterleave into 3 x 32i8
|
||||
{ 3, MVT::v16i8, 11}, //(load 48i8 and) deinterleave into 3 x 16i8
|
||||
{ 3, MVT::v32i8, 13}, //(load 96i8 and) deinterleave into 3 x 32i8
|
||||
|
||||
{ 4, MVT::v2i8, 12 }, //(load 8i8 and) deinterleave into 4 x 2i8
|
||||
{ 4, MVT::v4i8, 4 }, //(load 16i8 and) deinterleave into 4 x 4i8
|
||||
|
@ -2631,14 +2631,14 @@ int X86TTIImpl::getInterleavedMemoryOpCostAVX2(unsigned Opcode, Type *VecTy,
|
|||
{ 3, MVT::v2i8, 7 }, //interleave 3 x 2i8 into 6i8 (and store)
|
||||
{ 3, MVT::v4i8, 8 }, //interleave 3 x 4i8 into 12i8 (and store)
|
||||
{ 3, MVT::v8i8, 11 }, //interleave 3 x 8i8 into 24i8 (and store)
|
||||
{ 3, MVT::v16i8, 17 }, //interleave 3 x 16i8 into 48i8 (and store)
|
||||
{ 3, MVT::v32i8, 32 }, //interleave 3 x 32i8 into 96i8 (and store)
|
||||
{ 3, MVT::v16i8, 11 }, //interleave 3 x 16i8 into 48i8 (and store)
|
||||
{ 3, MVT::v32i8, 13 }, //interleave 3 x 32i8 into 96i8 (and store)
|
||||
|
||||
{ 4, MVT::v2i8, 12 }, //interleave 4 x 2i8 into 8i8 (and store)
|
||||
{ 4, MVT::v4i8, 9 }, //interleave 4 x 4i8 into 16i8 (and store)
|
||||
{ 4, MVT::v8i8, 16 }, //interleave 4 x 8i8 into 32i8 (and store)
|
||||
{ 4, MVT::v16i8, 20 }, //interleave 4 x 16i8 into 64i8 (and store)
|
||||
{ 4, MVT::v32i8, 40 } //interleave 4 x 32i8 into 128i8 (and store)
|
||||
{ 4, MVT::v8i8, 10 }, //interleave 4 x 8i8 into 32i8 (and store)
|
||||
{ 4, MVT::v16i8, 10 }, //interleave 4 x 16i8 into 64i8 (and store)
|
||||
{ 4, MVT::v32i8, 12 } //interleave 4 x 32i8 into 128i8 (and store)
|
||||
};
|
||||
|
||||
if (Opcode == Instruction::Load) {
|
||||
|
@ -2684,7 +2684,27 @@ int X86TTIImpl::getInterleavedMemoryOpCostAVX512(unsigned Opcode, Type *VecTy,
|
|||
unsigned MemOpCost =
|
||||
getMemoryOpCost(Opcode, SingleMemOpTy, Alignment, AddressSpace);
|
||||
|
||||
unsigned VF = VecTy->getVectorNumElements() / Factor;
|
||||
MVT VT = MVT::getVectorVT(MVT::getVT(VecTy->getScalarType()), VF);
|
||||
|
||||
if (Opcode == Instruction::Load) {
|
||||
// The tables (AVX512InterleavedLoadTbl and AVX512InterleavedStoreTbl)
|
||||
// contain the cost of the optimized shuffle sequence that the
|
||||
// X86InterleavedAccess pass will generate.
|
||||
// The cost of loads and stores are computed separately from the table.
|
||||
|
||||
// X86InterleavedAccess support only the following interleaved-access group.
|
||||
static const CostTblEntry AVX512InterleavedLoadTbl[] = {
|
||||
{3, MVT::v16i8, 12}, //(load 48i8 and) deinterleave into 3 x 16i8
|
||||
{3, MVT::v32i8, 14}, //(load 96i8 and) deinterleave into 3 x 32i8
|
||||
{3, MVT::v64i8, 22}, //(load 96i8 and) deinterleave into 3 x 32i8
|
||||
};
|
||||
|
||||
if (const auto *Entry =
|
||||
CostTableLookup(AVX512InterleavedLoadTbl, Factor, VT))
|
||||
return NumOfMemOps * MemOpCost + Entry->Cost;
|
||||
//If an entry does not exist, fallback to the default implementation.
|
||||
|
||||
// Kind of shuffle depends on number of loaded values.
|
||||
// If we load the entire data in one register, we can use a 1-src shuffle.
|
||||
// Otherwise, we'll merge 2 sources in each operation.
|
||||
|
@ -2727,6 +2747,22 @@ int X86TTIImpl::getInterleavedMemoryOpCostAVX512(unsigned Opcode, Type *VecTy,
|
|||
// Store.
|
||||
assert(Opcode == Instruction::Store &&
|
||||
"Expected Store Instruction at this point");
|
||||
// X86InterleavedAccess support only the following interleaved-access group.
|
||||
static const CostTblEntry AVX512InterleavedStoreTbl[] = {
|
||||
{3, MVT::v16i8, 12}, // interleave 3 x 16i8 into 48i8 (and store)
|
||||
{3, MVT::v32i8, 14}, // interleave 3 x 32i8 into 96i8 (and store)
|
||||
{3, MVT::v64i8, 26}, // interleave 3 x 64i8 into 96i8 (and store)
|
||||
|
||||
{4, MVT::v8i8, 10}, // interleave 4 x 8i8 into 32i8 (and store)
|
||||
{4, MVT::v16i8, 11}, // interleave 4 x 16i8 into 64i8 (and store)
|
||||
{4, MVT::v32i8, 14}, // interleave 4 x 32i8 into 128i8 (and store)
|
||||
{4, MVT::v64i8, 24} // interleave 4 x 32i8 into 256i8 (and store)
|
||||
};
|
||||
|
||||
if (const auto *Entry =
|
||||
CostTableLookup(AVX512InterleavedStoreTbl, Factor, VT))
|
||||
return NumOfMemOps * MemOpCost + Entry->Cost;
|
||||
//If an entry does not exist, fallback to the default implementation.
|
||||
|
||||
// There is no strided stores meanwhile. And store can't be folded in
|
||||
// shuffle.
|
||||
|
|
|
@ -10,8 +10,8 @@ define i32 @doit_stride3(i8* nocapture readonly %Ptr, i32 %Nels) {
|
|||
;CHECK: LV: Found an estimated cost of 11 for VF 2 For instruction: %0 = load i8
|
||||
;CHECK: LV: Found an estimated cost of 5 for VF 4 For instruction: %0 = load i8
|
||||
;CHECK: LV: Found an estimated cost of 10 for VF 8 For instruction: %0 = load i8
|
||||
;CHECK: LV: Found an estimated cost of 20 for VF 16 For instruction: %0 = load i8
|
||||
;CHECK: LV: Found an estimated cost of 45 for VF 32 For instruction: %0 = load i8
|
||||
;CHECK: LV: Found an estimated cost of 13 for VF 16 For instruction: %0 = load i8
|
||||
;CHECK: LV: Found an estimated cost of 16 for VF 32 For instruction: %0 = load i8
|
||||
entry:
|
||||
%cmp13 = icmp sgt i32 %Nels, 0
|
||||
br i1 %cmp13, label %for.body.preheader, label %for.end
|
||||
|
|
|
@ -10,8 +10,8 @@ define void @doit_stride3(i8* nocapture %Ptr, i32 %Nels) local_unnamed_addr {
|
|||
;CHECK: LV: Found an estimated cost of 8 for VF 2 For instruction: store i8 %conv4
|
||||
;CHECK: LV: Found an estimated cost of 9 for VF 4 For instruction: store i8 %conv4
|
||||
;CHECK: LV: Found an estimated cost of 12 for VF 8 For instruction: store i8 %conv4
|
||||
;CHECK: LV: Found an estimated cost of 19 for VF 16 For instruction: store i8 %conv4
|
||||
;CHECK: LV: Found an estimated cost of 35 for VF 32 For instruction: store i8 %conv4
|
||||
;CHECK: LV: Found an estimated cost of 13 for VF 16 For instruction: store i8 %conv4
|
||||
;CHECK: LV: Found an estimated cost of 16 for VF 32 For instruction: store i8 %conv4
|
||||
entry:
|
||||
%cmp14 = icmp sgt i32 %Nels, 0
|
||||
br i1 %cmp14, label %for.body.lr.ph, label %for.end
|
||||
|
@ -47,9 +47,9 @@ define void @doit_stride4(i8* nocapture %Ptr, i32 %Nels) local_unnamed_addr {
|
|||
;CHECK: LV: Found an estimated cost of 1 for VF 1 For instruction: store i8 %conv7
|
||||
;CHECK: LV: Found an estimated cost of 13 for VF 2 For instruction: store i8 %conv7
|
||||
;CHECK: LV: Found an estimated cost of 10 for VF 4 For instruction: store i8 %conv7
|
||||
;CHECK: LV: Found an estimated cost of 17 for VF 8 For instruction: store i8 %conv7
|
||||
;CHECK: LV: Found an estimated cost of 22 for VF 16 For instruction: store i8 %conv7
|
||||
;CHECK: LV: Found an estimated cost of 44 for VF 32 For instruction: store i8 %conv7
|
||||
;CHECK: LV: Found an estimated cost of 11 for VF 8 For instruction: store i8 %conv7
|
||||
;CHECK: LV: Found an estimated cost of 12 for VF 16 For instruction: store i8 %conv7
|
||||
;CHECK: LV: Found an estimated cost of 16 for VF 32 For instruction: store i8 %conv7
|
||||
entry:
|
||||
%cmp19 = icmp sgt i32 %Nels, 0
|
||||
br i1 %cmp19, label %for.body.lr.ph, label %for.end
|
||||
|
|
|
@ -41,9 +41,9 @@ define void @load_i8_stride3() {
|
|||
;CHECK: Found an estimated cost of 1 for VF 2 For instruction: %1 = load
|
||||
;CHECK: Found an estimated cost of 1 for VF 4 For instruction: %1 = load
|
||||
;CHECK: Found an estimated cost of 3 for VF 8 For instruction: %1 = load
|
||||
;CHECK: Found an estimated cost of 8 for VF 16 For instruction: %1 = load
|
||||
;CHECK: Found an estimated cost of 20 for VF 32 For instruction: %1 = load
|
||||
;CHECK: Found an estimated cost of 39 for VF 64 For instruction: %1 = load
|
||||
;CHECK: Found an estimated cost of 13 for VF 16 For instruction: %1 = load
|
||||
;CHECK: Found an estimated cost of 16 for VF 32 For instruction: %1 = load
|
||||
;CHECK: Found an estimated cost of 25 for VF 64 For instruction: %1 = load
|
||||
entry:
|
||||
br label %for.body
|
||||
|
||||
|
|
Loading…
Reference in New Issue