diff options
| author | Nadav Rotem <nrotem@apple.com> | 2012-11-05 21:12:13 +0000 |
|---|---|---|
| committer | Nadav Rotem <nrotem@apple.com> | 2012-11-05 21:12:13 +0000 |
| commit | 856ffa6677c8666bf61ca69a2861d1280f50ec59 (patch) | |
| tree | 34bdac50632830197fd6db0032479595d4d098a4 /llvm | |
| parent | 020be9dc29070407c483e15f65aa2e8624a2beec (diff) | |
| download | bcm5719-llvm-856ffa6677c8666bf61ca69a2861d1280f50ec59.tar.gz bcm5719-llvm-856ffa6677c8666bf61ca69a2861d1280f50ec59.zip | |
Cost Model: Normalize the insert/extract index when splitting types
llvm-svn: 167402
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/Target/X86/X86ISelLowering.cpp | 23 | ||||
| -rw-r--r-- | llvm/test/Analysis/CostModel/X86/insert-extract-at-zero.ll | 7 |
2 files changed, 27 insertions, 3 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp index 575d30df2e0..a42b25b65f7 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/lib/Target/X86/X86ISelLowering.cpp @@ -17556,9 +17556,26 @@ X86VectorTargetTransformInfo::getArithmeticInstrCost(unsigned Opcode, unsigned X86VectorTargetTransformInfo::getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index) const { - // Floating point scalars are already located in index #0. - if (Val->getScalarType()->isFloatingPointTy() && Index == 0) - return 0; + assert(Val->isVectorTy() && "This must be a vector type"); + + if (Index != -1) { + // Legalize the type. + std::pair<unsigned, MVT> LT = + getTypeLegalizationCost(Val->getContext(), TLI->getValueType(Val)); + + // This type is legalized to a scalar type. + if (!LT.second.isVector()) + return 0; + + // The type may be split. Normalize the index to the new type. + unsigned Width = LT.second.getVectorNumElements(); + Index = Index % Width; + + // Floating point scalars are already located in index #0. + if (Val->getScalarType()->isFloatingPointTy() && Index == 0) + return 0; + } + return VectorTargetTransformImpl::getVectorInstrCost(Opcode, Val, Index); } diff --git a/llvm/test/Analysis/CostModel/X86/insert-extract-at-zero.ll b/llvm/test/Analysis/CostModel/X86/insert-extract-at-zero.ll index eea5b601d01..87bf7c488b9 100644 --- a/llvm/test/Analysis/CostModel/X86/insert-extract-at-zero.ll +++ b/llvm/test/Analysis/CostModel/X86/insert-extract-at-zero.ll @@ -29,5 +29,12 @@ define i32 @insert-extract-at-zero-idx(i32 %arg, float %fl) { ;CHECK: cost of 0 {{.*}} insert %J = insertelement <4 x double> undef, double undef, i32 0 + ;CHECK: cost of 0 {{.*}} insert + %K = insertelement <8 x double> undef, double undef, i32 4 + ;CHECK: cost of 0 {{.*}} insert + %L = insertelement <16 x double> undef, double undef, i32 8 + ;CHECK: cost of 1 {{.*}} insert + %M = insertelement <16 x double> undef, double undef, i32 9 ret i32 0 } + |

