blob: fefb479da97fd96ce476e821ca5f8bdc496972a2 [file] [log] [blame]
Chandler Carruth664e3542013-01-07 01:37:14 +00001//===-- X86TargetTransformInfo.cpp - X86 specific TTI pass ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9/// \file
10/// This file implements a TargetTransformInfo analysis pass specific to the
11/// X86 target machine. It uses the target's detailed information to provide
12/// more precise answers to certain TTI queries, while letting the target
13/// independent and default TTI implementations handle the rest.
14///
15//===----------------------------------------------------------------------===//
16
17#define DEBUG_TYPE "x86tti"
18#include "X86.h"
19#include "X86TargetMachine.h"
Chandler Carruthd3e73552013-01-07 03:08:10 +000020#include "llvm/Analysis/TargetTransformInfo.h"
Chandler Carruth664e3542013-01-07 01:37:14 +000021#include "llvm/Support/Debug.h"
22#include "llvm/Target/TargetLowering.h"
Renato Golind4c392e2013-01-24 23:01:00 +000023#include "llvm/Target/CostTable.h"
Chandler Carruth664e3542013-01-07 01:37:14 +000024using namespace llvm;
25
26// Declare the pass initialization routine locally as target-specific passes
27// don't havve a target-wide initialization entry point, and so we rely on the
28// pass constructor initialization.
29namespace llvm {
30void initializeX86TTIPass(PassRegistry &);
31}
32
33namespace {
34
35class X86TTI : public ImmutablePass, public TargetTransformInfo {
36 const X86TargetMachine *TM;
37 const X86Subtarget *ST;
38 const X86TargetLowering *TLI;
39
40 /// Estimate the overhead of scalarizing an instruction. Insert and Extract
41 /// are set if the result needs to be inserted and/or extracted from vectors.
42 unsigned getScalarizationOverhead(Type *Ty, bool Insert, bool Extract) const;
43
44public:
45 X86TTI() : ImmutablePass(ID), TM(0), ST(0), TLI(0) {
46 llvm_unreachable("This pass cannot be directly constructed");
47 }
48
49 X86TTI(const X86TargetMachine *TM)
50 : ImmutablePass(ID), TM(TM), ST(TM->getSubtargetImpl()),
51 TLI(TM->getTargetLowering()) {
52 initializeX86TTIPass(*PassRegistry::getPassRegistry());
53 }
54
55 virtual void initializePass() {
56 pushTTIStack(this);
57 }
58
59 virtual void finalizePass() {
60 popTTIStack();
61 }
62
63 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
64 TargetTransformInfo::getAnalysisUsage(AU);
65 }
66
67 /// Pass identification.
68 static char ID;
69
70 /// Provide necessary pointer adjustments for the two base classes.
71 virtual void *getAdjustedAnalysisPointer(const void *ID) {
72 if (ID == &TargetTransformInfo::ID)
73 return (TargetTransformInfo*)this;
74 return this;
75 }
76
77 /// \name Scalar TTI Implementations
78 /// @{
Chandler Carruth50a36cd2013-01-07 03:16:03 +000079 virtual PopcntSupportKind getPopcntSupport(unsigned TyWidth) const;
Chandler Carruth664e3542013-01-07 01:37:14 +000080
81 /// @}
82
83 /// \name Vector TTI Implementations
84 /// @{
85
86 virtual unsigned getNumberOfRegisters(bool Vector) const;
Nadav Rotemb1791a72013-01-09 22:29:00 +000087 virtual unsigned getRegisterBitWidth(bool Vector) const;
Nadav Rotemb696c362013-01-09 01:15:42 +000088 virtual unsigned getMaximumUnrollFactor() const;
Chandler Carruth664e3542013-01-07 01:37:14 +000089 virtual unsigned getArithmeticInstrCost(unsigned Opcode, Type *Ty) const;
90 virtual unsigned getShuffleCost(ShuffleKind Kind, Type *Tp,
91 int Index, Type *SubTp) const;
92 virtual unsigned getCastInstrCost(unsigned Opcode, Type *Dst,
93 Type *Src) const;
94 virtual unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
95 Type *CondTy) const;
96 virtual unsigned getVectorInstrCost(unsigned Opcode, Type *Val,
97 unsigned Index) const;
98 virtual unsigned getMemoryOpCost(unsigned Opcode, Type *Src,
99 unsigned Alignment,
100 unsigned AddressSpace) const;
101
102 /// @}
103};
104
105} // end anonymous namespace
106
107INITIALIZE_AG_PASS(X86TTI, TargetTransformInfo, "x86tti",
108 "X86 Target Transform Info", true, true, false)
109char X86TTI::ID = 0;
110
111ImmutablePass *
112llvm::createX86TargetTransformInfoPass(const X86TargetMachine *TM) {
113 return new X86TTI(TM);
114}
115
116
117//===----------------------------------------------------------------------===//
118//
119// X86 cost model.
120//
121//===----------------------------------------------------------------------===//
122
Chandler Carruth50a36cd2013-01-07 03:16:03 +0000123X86TTI::PopcntSupportKind X86TTI::getPopcntSupport(unsigned TyWidth) const {
Chandler Carruth664e3542013-01-07 01:37:14 +0000124 assert(isPowerOf2_32(TyWidth) && "Ty width must be power of 2");
125 // TODO: Currently the __builtin_popcount() implementation using SSE3
126 // instructions is inefficient. Once the problem is fixed, we should
127 // call ST->hasSSE3() instead of ST->hasSSE4().
Chandler Carruth50a36cd2013-01-07 03:16:03 +0000128 return ST->hasSSE41() ? PSK_FastHardware : PSK_Software;
Chandler Carruth664e3542013-01-07 01:37:14 +0000129}
130
131unsigned X86TTI::getNumberOfRegisters(bool Vector) const {
Nadav Rotemb1791a72013-01-09 22:29:00 +0000132 if (Vector && !ST->hasSSE1())
133 return 0;
134
Chandler Carruth664e3542013-01-07 01:37:14 +0000135 if (ST->is64Bit())
136 return 16;
137 return 8;
138}
139
Nadav Rotemb1791a72013-01-09 22:29:00 +0000140unsigned X86TTI::getRegisterBitWidth(bool Vector) const {
141 if (Vector) {
142 if (ST->hasAVX()) return 256;
143 if (ST->hasSSE1()) return 128;
144 return 0;
145 }
146
147 if (ST->is64Bit())
148 return 64;
149 return 32;
150
151}
152
Nadav Rotemb696c362013-01-09 01:15:42 +0000153unsigned X86TTI::getMaximumUnrollFactor() const {
154 if (ST->isAtom())
155 return 1;
156
157 // Sandybridge and Haswell have multiple execution ports and pipelined
158 // vector units.
159 if (ST->hasAVX())
160 return 4;
161
162 return 2;
163}
164
Chandler Carruth664e3542013-01-07 01:37:14 +0000165unsigned X86TTI::getArithmeticInstrCost(unsigned Opcode, Type *Ty) const {
166 // Legalize the type.
167 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(Ty);
168
169 int ISD = TLI->InstructionOpcodeToISD(Opcode);
170 assert(ISD && "Invalid opcode");
171
Renato Golind4c392e2013-01-24 23:01:00 +0000172 static const CostTblEntry<MVT> AVX1CostTable[] = {
Renato Goline1fb0592013-01-20 20:57:20 +0000173 // We don't have to scalarize unsupported ops. We can issue two half-sized
174 // operations and we only need to extract the upper YMM half.
175 // Two ops + 1 extract + 1 insert = 4.
176 { ISD::MUL, MVT::v8i32, 4 },
177 { ISD::SUB, MVT::v8i32, 4 },
178 { ISD::ADD, MVT::v8i32, 4 },
179 { ISD::MUL, MVT::v4i64, 4 },
180 { ISD::SUB, MVT::v4i64, 4 },
181 { ISD::ADD, MVT::v4i64, 4 },
182 };
Chandler Carruth664e3542013-01-07 01:37:14 +0000183
184 // Look for AVX1 lowering tricks.
185 if (ST->hasAVX()) {
Renato Golind4c392e2013-01-24 23:01:00 +0000186 int Idx = CostTableLookup<MVT>(AVX1CostTable, array_lengthof(AVX1CostTable), ISD,
Renato Goline1fb0592013-01-20 20:57:20 +0000187 LT.second);
188 if (Idx != -1)
189 return LT.first * AVX1CostTable[Idx].Cost;
Chandler Carruth664e3542013-01-07 01:37:14 +0000190 }
191 // Fallback to the default implementation.
192 return TargetTransformInfo::getArithmeticInstrCost(Opcode, Ty);
193}
194
195unsigned X86TTI::getShuffleCost(ShuffleKind Kind, Type *Tp, int Index,
196 Type *SubTp) const {
197 // We only estimate the cost of reverse shuffles.
Chandler Carruth2109f472013-01-07 03:20:02 +0000198 if (Kind != SK_Reverse)
Chandler Carruth664e3542013-01-07 01:37:14 +0000199 return TargetTransformInfo::getShuffleCost(Kind, Tp, Index, SubTp);
200
201 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(Tp);
202 unsigned Cost = 1;
203 if (LT.second.getSizeInBits() > 128)
204 Cost = 3; // Extract + insert + copy.
205
206 // Multiple by the number of parts.
207 return Cost * LT.first;
208}
209
210unsigned X86TTI::getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src) const {
211 int ISD = TLI->InstructionOpcodeToISD(Opcode);
212 assert(ISD && "Invalid opcode");
213
214 EVT SrcTy = TLI->getValueType(Src);
215 EVT DstTy = TLI->getValueType(Dst);
216
217 if (!SrcTy.isSimple() || !DstTy.isSimple())
218 return TargetTransformInfo::getCastInstrCost(Opcode, Dst, Src);
219
Renato Golind4c392e2013-01-24 23:01:00 +0000220 static const TypeConversionCostTblEntry<MVT> AVXConversionTbl[] = {
Renato Goline1fb0592013-01-20 20:57:20 +0000221 { ISD::SIGN_EXTEND, MVT::v8i32, MVT::v8i16, 1 },
222 { ISD::ZERO_EXTEND, MVT::v8i32, MVT::v8i16, 1 },
223 { ISD::SIGN_EXTEND, MVT::v4i64, MVT::v4i32, 1 },
224 { ISD::ZERO_EXTEND, MVT::v4i64, MVT::v4i32, 1 },
225 { ISD::TRUNCATE, MVT::v4i32, MVT::v4i64, 1 },
226 { ISD::TRUNCATE, MVT::v8i16, MVT::v8i32, 1 },
227 { ISD::SINT_TO_FP, MVT::v8f32, MVT::v8i8, 1 },
228 { ISD::SINT_TO_FP, MVT::v4f32, MVT::v4i8, 1 },
229 { ISD::UINT_TO_FP, MVT::v8f32, MVT::v8i8, 1 },
230 { ISD::UINT_TO_FP, MVT::v4f32, MVT::v4i8, 1 },
231 { ISD::FP_TO_SINT, MVT::v8i8, MVT::v8f32, 1 },
232 { ISD::FP_TO_SINT, MVT::v4i8, MVT::v4f32, 1 },
233 { ISD::ZERO_EXTEND, MVT::v8i32, MVT::v8i1, 6 },
234 { ISD::SIGN_EXTEND, MVT::v8i32, MVT::v8i1, 9 },
Elena Demikhovsky0ccdd132013-02-20 12:42:54 +0000235 { ISD::SIGN_EXTEND, MVT::v4i64, MVT::v4i1, 8 },
236 { ISD::SIGN_EXTEND, MVT::v4i64, MVT::v4i8, 8 },
237 { ISD::SIGN_EXTEND, MVT::v4i64, MVT::v4i16, 8 },
Renato Goline1fb0592013-01-20 20:57:20 +0000238 { ISD::TRUNCATE, MVT::v8i32, MVT::v8i64, 3 },
Chandler Carruth664e3542013-01-07 01:37:14 +0000239 };
240
241 if (ST->hasAVX()) {
Renato Golind4c392e2013-01-24 23:01:00 +0000242 int Idx = ConvertCostTableLookup<MVT>(AVXConversionTbl,
Renato Goline1fb0592013-01-20 20:57:20 +0000243 array_lengthof(AVXConversionTbl),
244 ISD, DstTy.getSimpleVT(), SrcTy.getSimpleVT());
245 if (Idx != -1)
246 return AVXConversionTbl[Idx].Cost;
Chandler Carruth664e3542013-01-07 01:37:14 +0000247 }
248
249 return TargetTransformInfo::getCastInstrCost(Opcode, Dst, Src);
250}
251
252unsigned X86TTI::getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
253 Type *CondTy) const {
254 // Legalize the type.
255 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(ValTy);
256
257 MVT MTy = LT.second;
258
259 int ISD = TLI->InstructionOpcodeToISD(Opcode);
260 assert(ISD && "Invalid opcode");
261
Renato Golind4c392e2013-01-24 23:01:00 +0000262 static const CostTblEntry<MVT> SSE42CostTbl[] = {
Renato Goline1fb0592013-01-20 20:57:20 +0000263 { ISD::SETCC, MVT::v2f64, 1 },
264 { ISD::SETCC, MVT::v4f32, 1 },
265 { ISD::SETCC, MVT::v2i64, 1 },
266 { ISD::SETCC, MVT::v4i32, 1 },
267 { ISD::SETCC, MVT::v8i16, 1 },
268 { ISD::SETCC, MVT::v16i8, 1 },
Chandler Carruth664e3542013-01-07 01:37:14 +0000269 };
270
Renato Golind4c392e2013-01-24 23:01:00 +0000271 static const CostTblEntry<MVT> AVX1CostTbl[] = {
Renato Goline1fb0592013-01-20 20:57:20 +0000272 { ISD::SETCC, MVT::v4f64, 1 },
273 { ISD::SETCC, MVT::v8f32, 1 },
Chandler Carruth664e3542013-01-07 01:37:14 +0000274 // AVX1 does not support 8-wide integer compare.
Renato Goline1fb0592013-01-20 20:57:20 +0000275 { ISD::SETCC, MVT::v4i64, 4 },
276 { ISD::SETCC, MVT::v8i32, 4 },
277 { ISD::SETCC, MVT::v16i16, 4 },
278 { ISD::SETCC, MVT::v32i8, 4 },
Chandler Carruth664e3542013-01-07 01:37:14 +0000279 };
280
Renato Golind4c392e2013-01-24 23:01:00 +0000281 static const CostTblEntry<MVT> AVX2CostTbl[] = {
Renato Goline1fb0592013-01-20 20:57:20 +0000282 { ISD::SETCC, MVT::v4i64, 1 },
283 { ISD::SETCC, MVT::v8i32, 1 },
284 { ISD::SETCC, MVT::v16i16, 1 },
285 { ISD::SETCC, MVT::v32i8, 1 },
Chandler Carruth664e3542013-01-07 01:37:14 +0000286 };
287
288 if (ST->hasAVX2()) {
Renato Golind4c392e2013-01-24 23:01:00 +0000289 int Idx = CostTableLookup<MVT>(AVX2CostTbl, array_lengthof(AVX2CostTbl), ISD, MTy);
Renato Goline1fb0592013-01-20 20:57:20 +0000290 if (Idx != -1)
291 return LT.first * AVX2CostTbl[Idx].Cost;
Chandler Carruth664e3542013-01-07 01:37:14 +0000292 }
293
294 if (ST->hasAVX()) {
Renato Golind4c392e2013-01-24 23:01:00 +0000295 int Idx = CostTableLookup<MVT>(AVX1CostTbl, array_lengthof(AVX1CostTbl), ISD, MTy);
Renato Goline1fb0592013-01-20 20:57:20 +0000296 if (Idx != -1)
297 return LT.first * AVX1CostTbl[Idx].Cost;
Chandler Carruth664e3542013-01-07 01:37:14 +0000298 }
299
300 if (ST->hasSSE42()) {
Renato Golind4c392e2013-01-24 23:01:00 +0000301 int Idx = CostTableLookup<MVT>(SSE42CostTbl, array_lengthof(SSE42CostTbl), ISD, MTy);
Renato Goline1fb0592013-01-20 20:57:20 +0000302 if (Idx != -1)
303 return LT.first * SSE42CostTbl[Idx].Cost;
Chandler Carruth664e3542013-01-07 01:37:14 +0000304 }
305
306 return TargetTransformInfo::getCmpSelInstrCost(Opcode, ValTy, CondTy);
307}
308
309unsigned X86TTI::getVectorInstrCost(unsigned Opcode, Type *Val,
310 unsigned Index) const {
311 assert(Val->isVectorTy() && "This must be a vector type");
312
313 if (Index != -1U) {
314 // Legalize the type.
315 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(Val);
316
317 // This type is legalized to a scalar type.
318 if (!LT.second.isVector())
319 return 0;
320
321 // The type may be split. Normalize the index to the new type.
322 unsigned Width = LT.second.getVectorNumElements();
323 Index = Index % Width;
324
325 // Floating point scalars are already located in index #0.
326 if (Val->getScalarType()->isFloatingPointTy() && Index == 0)
327 return 0;
328 }
329
330 return TargetTransformInfo::getVectorInstrCost(Opcode, Val, Index);
331}
332
333unsigned X86TTI::getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
334 unsigned AddressSpace) const {
335 // Legalize the type.
336 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(Src);
337 assert((Opcode == Instruction::Load || Opcode == Instruction::Store) &&
338 "Invalid Opcode");
339
340 // Each load/store unit costs 1.
341 unsigned Cost = LT.first * 1;
342
343 // On Sandybridge 256bit load/stores are double pumped
344 // (but not on Haswell).
345 if (LT.second.getSizeInBits() > 128 && !ST->hasAVX2())
346 Cost*=2;
347
348 return Cost;
349}