blob: e33178517146bdb968567a7cd9897533b70325de [file] [log] [blame]
Chandler Carruthd3e73552013-01-07 03:08:10 +00001//===- llvm/Analysis/TargetTransformInfo.cpp ------------------------------===//
Nadav Rotem5dc203e2012-10-18 23:22:48 +00002//
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
Chandler Carruthd3e73552013-01-07 03:08:10 +000010#include "llvm/Analysis/TargetTransformInfo.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000011#include "llvm/IR/CallSite.h"
Chandler Carruth511aa762013-01-21 01:27:39 +000012#include "llvm/IR/DataLayout.h"
Chandler Carruth511aa762013-01-21 01:27:39 +000013#include "llvm/IR/Instruction.h"
Chandler Carruth511aa762013-01-21 01:27:39 +000014#include "llvm/IR/Instructions.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000015#include "llvm/IR/IntrinsicInst.h"
16#include "llvm/IR/Operator.h"
Nadav Rotem5dc203e2012-10-18 23:22:48 +000017#include "llvm/Support/ErrorHandling.h"
18
19using namespace llvm;
20
Chandler Carruthf1221bd2014-04-22 02:48:03 +000021#define DEBUG_TYPE "tti"
22
Chandler Carruth539edf42013-01-05 11:43:11 +000023// Setup the analysis group to manage the TargetTransformInfo passes.
24INITIALIZE_ANALYSIS_GROUP(TargetTransformInfo, "Target Information", NoTTI)
Nadav Rotem5dc203e2012-10-18 23:22:48 +000025char TargetTransformInfo::ID = 0;
26
Chandler Carruth539edf42013-01-05 11:43:11 +000027TargetTransformInfo::~TargetTransformInfo() {
28}
29
Chandler Carruth664e3542013-01-07 01:37:14 +000030void TargetTransformInfo::pushTTIStack(Pass *P) {
31 TopTTI = this;
32 PrevTTI = &P->getAnalysis<TargetTransformInfo>();
33
34 // Walk up the chain and update the top TTI pointer.
35 for (TargetTransformInfo *PTTI = PrevTTI; PTTI; PTTI = PTTI->PrevTTI)
36 PTTI->TopTTI = this;
37}
38
Chandler Carruth539edf42013-01-05 11:43:11 +000039void TargetTransformInfo::getAnalysisUsage(AnalysisUsage &AU) const {
40 AU.addRequired<TargetTransformInfo>();
41}
42
Chandler Carruth511aa762013-01-21 01:27:39 +000043unsigned TargetTransformInfo::getOperationCost(unsigned Opcode, Type *Ty,
44 Type *OpTy) const {
45 return PrevTTI->getOperationCost(Opcode, Ty, OpTy);
46}
47
48unsigned TargetTransformInfo::getGEPCost(
49 const Value *Ptr, ArrayRef<const Value *> Operands) const {
50 return PrevTTI->getGEPCost(Ptr, Operands);
51}
52
Chandler Carruth0ba8db42013-01-22 11:26:02 +000053unsigned TargetTransformInfo::getCallCost(FunctionType *FTy,
54 int NumArgs) const {
55 return PrevTTI->getCallCost(FTy, NumArgs);
56}
57
58unsigned TargetTransformInfo::getCallCost(const Function *F,
59 int NumArgs) const {
60 return PrevTTI->getCallCost(F, NumArgs);
61}
62
63unsigned TargetTransformInfo::getCallCost(
64 const Function *F, ArrayRef<const Value *> Arguments) const {
65 return PrevTTI->getCallCost(F, Arguments);
66}
67
68unsigned TargetTransformInfo::getIntrinsicCost(
69 Intrinsic::ID IID, Type *RetTy, ArrayRef<Type *> ParamTys) const {
70 return PrevTTI->getIntrinsicCost(IID, RetTy, ParamTys);
71}
72
73unsigned TargetTransformInfo::getIntrinsicCost(
74 Intrinsic::ID IID, Type *RetTy, ArrayRef<const Value *> Arguments) const {
75 return PrevTTI->getIntrinsicCost(IID, RetTy, Arguments);
76}
77
Chandler Carruth511aa762013-01-21 01:27:39 +000078unsigned TargetTransformInfo::getUserCost(const User *U) const {
79 return PrevTTI->getUserCost(U);
80}
81
Tom Stellard8b1e0212013-07-27 00:01:07 +000082bool TargetTransformInfo::hasBranchDivergence() const {
83 return PrevTTI->hasBranchDivergence();
84}
85
Chandler Carruth0ba8db42013-01-22 11:26:02 +000086bool TargetTransformInfo::isLoweredToCall(const Function *F) const {
87 return PrevTTI->isLoweredToCall(F);
88}
89
Eric Christopherd85ffb12014-09-18 00:34:14 +000090void
91TargetTransformInfo::getUnrollingPreferences(const Function *F, Loop *L,
92 UnrollingPreferences &UP) const {
93 PrevTTI->getUnrollingPreferences(F, L, UP);
Hal Finkel8f2e7002013-09-11 19:25:43 +000094}
95
Chandler Carruth539edf42013-01-05 11:43:11 +000096bool TargetTransformInfo::isLegalAddImmediate(int64_t Imm) const {
97 return PrevTTI->isLegalAddImmediate(Imm);
98}
99
100bool TargetTransformInfo::isLegalICmpImmediate(int64_t Imm) const {
101 return PrevTTI->isLegalICmpImmediate(Imm);
102}
103
Elena Demikhovsky3fcafa22014-12-14 09:43:50 +0000104bool TargetTransformInfo::isLegalMaskedLoad(Type *DataType,
105 int Consecutive) const {
Elena Demikhovskyf1de34b2014-12-04 09:40:44 +0000106 return false;
107}
108
Elena Demikhovsky3fcafa22014-12-14 09:43:50 +0000109bool TargetTransformInfo::isLegalMaskedStore(Type *DataType,
110 int Consecutive) const {
Elena Demikhovskyf1de34b2014-12-04 09:40:44 +0000111 return false;
112}
113
114
Chandler Carruth539edf42013-01-05 11:43:11 +0000115bool TargetTransformInfo::isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV,
116 int64_t BaseOffset,
117 bool HasBaseReg,
118 int64_t Scale) const {
119 return PrevTTI->isLegalAddressingMode(Ty, BaseGV, BaseOffset, HasBaseReg,
120 Scale);
121}
122
Quentin Colombetbf490d42013-05-31 21:29:03 +0000123int TargetTransformInfo::getScalingFactorCost(Type *Ty, GlobalValue *BaseGV,
124 int64_t BaseOffset,
125 bool HasBaseReg,
126 int64_t Scale) const {
127 return PrevTTI->getScalingFactorCost(Ty, BaseGV, BaseOffset, HasBaseReg,
128 Scale);
129}
130
Chandler Carruth539edf42013-01-05 11:43:11 +0000131bool TargetTransformInfo::isTruncateFree(Type *Ty1, Type *Ty2) const {
132 return PrevTTI->isTruncateFree(Ty1, Ty2);
133}
134
135bool TargetTransformInfo::isTypeLegal(Type *Ty) const {
136 return PrevTTI->isTypeLegal(Ty);
137}
138
139unsigned TargetTransformInfo::getJumpBufAlignment() const {
140 return PrevTTI->getJumpBufAlignment();
141}
142
143unsigned TargetTransformInfo::getJumpBufSize() const {
144 return PrevTTI->getJumpBufSize();
145}
146
147bool TargetTransformInfo::shouldBuildLookupTables() const {
148 return PrevTTI->shouldBuildLookupTables();
149}
150
Chandler Carruth50a36cd2013-01-07 03:16:03 +0000151TargetTransformInfo::PopcntSupportKind
152TargetTransformInfo::getPopcntSupport(unsigned IntTyWidthInBit) const {
153 return PrevTTI->getPopcntSupport(IntTyWidthInBit);
Chandler Carruth539edf42013-01-05 11:43:11 +0000154}
155
Richard Sandiford37cd6cf2013-08-23 10:27:02 +0000156bool TargetTransformInfo::haveFastSqrt(Type *Ty) const {
157 return PrevTTI->haveFastSqrt(Ty);
158}
159
Chandler Carruth539edf42013-01-05 11:43:11 +0000160unsigned TargetTransformInfo::getIntImmCost(const APInt &Imm, Type *Ty) const {
161 return PrevTTI->getIntImmCost(Imm, Ty);
162}
163
Juergen Ributzkaf0dff492014-03-21 06:04:45 +0000164unsigned TargetTransformInfo::getIntImmCost(unsigned Opc, unsigned Idx,
165 const APInt &Imm, Type *Ty) const {
166 return PrevTTI->getIntImmCost(Opc, Idx, Imm, Ty);
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000167}
168
Juergen Ributzkaf0dff492014-03-21 06:04:45 +0000169unsigned TargetTransformInfo::getIntImmCost(Intrinsic::ID IID, unsigned Idx,
170 const APInt &Imm, Type *Ty) const {
171 return PrevTTI->getIntImmCost(IID, Idx, Imm, Ty);
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000172}
173
Chandler Carruth539edf42013-01-05 11:43:11 +0000174unsigned TargetTransformInfo::getNumberOfRegisters(bool Vector) const {
175 return PrevTTI->getNumberOfRegisters(Vector);
176}
177
Nadav Rotemb1791a72013-01-09 22:29:00 +0000178unsigned TargetTransformInfo::getRegisterBitWidth(bool Vector) const {
179 return PrevTTI->getRegisterBitWidth(Vector);
180}
181
Sanjay Patelb653de12014-09-10 17:58:16 +0000182unsigned TargetTransformInfo::getMaxInterleaveFactor() const {
183 return PrevTTI->getMaxInterleaveFactor();
Nadav Rotemb696c362013-01-09 01:15:42 +0000184}
185
Karthik Bhat7f33ff72014-08-25 04:56:54 +0000186unsigned TargetTransformInfo::getArithmeticInstrCost(
187 unsigned Opcode, Type *Ty, OperandValueKind Op1Info,
188 OperandValueKind Op2Info, OperandValueProperties Opd1PropInfo,
189 OperandValueProperties Opd2PropInfo) const {
190 return PrevTTI->getArithmeticInstrCost(Opcode, Ty, Op1Info, Op2Info,
191 Opd1PropInfo, Opd2PropInfo);
Chandler Carruth539edf42013-01-05 11:43:11 +0000192}
193
194unsigned TargetTransformInfo::getShuffleCost(ShuffleKind Kind, Type *Tp,
195 int Index, Type *SubTp) const {
196 return PrevTTI->getShuffleCost(Kind, Tp, Index, SubTp);
197}
198
199unsigned TargetTransformInfo::getCastInstrCost(unsigned Opcode, Type *Dst,
200 Type *Src) const {
201 return PrevTTI->getCastInstrCost(Opcode, Dst, Src);
202}
203
204unsigned TargetTransformInfo::getCFInstrCost(unsigned Opcode) const {
205 return PrevTTI->getCFInstrCost(Opcode);
206}
207
208unsigned TargetTransformInfo::getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
209 Type *CondTy) const {
210 return PrevTTI->getCmpSelInstrCost(Opcode, ValTy, CondTy);
211}
212
213unsigned TargetTransformInfo::getVectorInstrCost(unsigned Opcode, Type *Val,
214 unsigned Index) const {
215 return PrevTTI->getVectorInstrCost(Opcode, Val, Index);
216}
217
218unsigned TargetTransformInfo::getMemoryOpCost(unsigned Opcode, Type *Src,
219 unsigned Alignment,
220 unsigned AddressSpace) const {
221 return PrevTTI->getMemoryOpCost(Opcode, Src, Alignment, AddressSpace);
Chandler Carruth539edf42013-01-05 11:43:11 +0000222}
223
224unsigned
225TargetTransformInfo::getIntrinsicInstrCost(Intrinsic::ID ID,
226 Type *RetTy,
227 ArrayRef<Type *> Tys) const {
228 return PrevTTI->getIntrinsicInstrCost(ID, RetTy, Tys);
229}
230
231unsigned TargetTransformInfo::getNumberOfParts(Type *Tp) const {
232 return PrevTTI->getNumberOfParts(Tp);
233}
234
Arnold Schwaighofer9da9a432013-07-12 19:16:02 +0000235unsigned TargetTransformInfo::getAddressComputationCost(Type *Tp,
236 bool IsComplex) const {
237 return PrevTTI->getAddressComputationCost(Tp, IsComplex);
Arnold Schwaighofer594fa2d2013-02-08 14:50:48 +0000238}
Chandler Carruth539edf42013-01-05 11:43:11 +0000239
Arnold Schwaighofercae87352013-09-17 18:06:50 +0000240unsigned TargetTransformInfo::getReductionCost(unsigned Opcode, Type *Ty,
241 bool IsPairwise) const {
242 return PrevTTI->getReductionCost(Opcode, Ty, IsPairwise);
243}
244
James Molloy2b8933c2014-08-05 12:30:34 +0000245unsigned TargetTransformInfo::getCostOfKeepingLiveOverCall(ArrayRef<Type*> Tys)
246 const {
247 return PrevTTI->getCostOfKeepingLiveOverCall(Tys);
248}
249
Chandler Carruth539edf42013-01-05 11:43:11 +0000250namespace {
251
Craig Topper77dfe452014-03-02 08:08:51 +0000252struct NoTTI final : ImmutablePass, TargetTransformInfo {
Chandler Carruth511aa762013-01-21 01:27:39 +0000253 const DataLayout *DL;
254
Craig Topper9f008862014-04-15 04:59:12 +0000255 NoTTI() : ImmutablePass(ID), DL(nullptr) {
Chandler Carruth539edf42013-01-05 11:43:11 +0000256 initializeNoTTIPass(*PassRegistry::getPassRegistry());
257 }
258
Craig Topperfd38cbe2014-08-30 16:48:34 +0000259 void initializePass() override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000260 // Note that this subclass is special, and must *not* call initializeTTI as
261 // it does not chain.
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000262 TopTTI = this;
Craig Topper9f008862014-04-15 04:59:12 +0000263 PrevTTI = nullptr;
Rafael Espindola93512512014-02-25 17:30:31 +0000264 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
Craig Topper9f008862014-04-15 04:59:12 +0000265 DL = DLP ? &DLP->getDataLayout() : nullptr;
Chandler Carruth664e3542013-01-07 01:37:14 +0000266 }
267
Craig Topperfd38cbe2014-08-30 16:48:34 +0000268 void getAnalysisUsage(AnalysisUsage &AU) const override {
Chandler Carruth539edf42013-01-05 11:43:11 +0000269 // Note that this subclass is special, and must *not* call
270 // TTI::getAnalysisUsage as it breaks the recursion.
271 }
272
273 /// Pass identification.
274 static char ID;
275
276 /// Provide necessary pointer adjustments for the two base classes.
Craig Topperfd38cbe2014-08-30 16:48:34 +0000277 void *getAdjustedAnalysisPointer(const void *ID) override {
Chandler Carruth539edf42013-01-05 11:43:11 +0000278 if (ID == &TargetTransformInfo::ID)
279 return (TargetTransformInfo*)this;
280 return this;
281 }
282
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000283 unsigned getOperationCost(unsigned Opcode, Type *Ty,
Craig Topper73156022014-03-02 09:09:27 +0000284 Type *OpTy) const override {
Chandler Carruth511aa762013-01-21 01:27:39 +0000285 switch (Opcode) {
286 default:
287 // By default, just classify everything as 'basic'.
288 return TCC_Basic;
289
290 case Instruction::GetElementPtr:
291 llvm_unreachable("Use getGEPCost for GEP operations!");
292
293 case Instruction::BitCast:
294 assert(OpTy && "Cast instructions must provide the operand type");
295 if (Ty == OpTy || (Ty->isPointerTy() && OpTy->isPointerTy()))
296 // Identity and pointer-to-pointer casts are free.
297 return TCC_Free;
298
299 // Otherwise, the default basic cost is used.
300 return TCC_Basic;
301
Matt Arsenault54c3cbc2013-08-28 22:41:57 +0000302 case Instruction::IntToPtr: {
303 if (!DL)
304 return TCC_Basic;
305
Chandler Carruth511aa762013-01-21 01:27:39 +0000306 // An inttoptr cast is free so long as the input is a legal integer type
307 // which doesn't contain values outside the range of a pointer.
Matt Arsenault54c3cbc2013-08-28 22:41:57 +0000308 unsigned OpSize = OpTy->getScalarSizeInBits();
309 if (DL->isLegalInteger(OpSize) &&
310 OpSize <= DL->getPointerTypeSizeInBits(Ty))
Chandler Carruth511aa762013-01-21 01:27:39 +0000311 return TCC_Free;
312
313 // Otherwise it's not a no-op.
314 return TCC_Basic;
Matt Arsenault54c3cbc2013-08-28 22:41:57 +0000315 }
316 case Instruction::PtrToInt: {
317 if (!DL)
318 return TCC_Basic;
Chandler Carruth511aa762013-01-21 01:27:39 +0000319
Chandler Carruth511aa762013-01-21 01:27:39 +0000320 // A ptrtoint cast is free so long as the result is large enough to store
321 // the pointer, and a legal integer type.
Matt Arsenault54c3cbc2013-08-28 22:41:57 +0000322 unsigned DestSize = Ty->getScalarSizeInBits();
323 if (DL->isLegalInteger(DestSize) &&
324 DestSize >= DL->getPointerTypeSizeInBits(OpTy))
Chandler Carruth511aa762013-01-21 01:27:39 +0000325 return TCC_Free;
326
327 // Otherwise it's not a no-op.
328 return TCC_Basic;
Matt Arsenault54c3cbc2013-08-28 22:41:57 +0000329 }
Chandler Carruth511aa762013-01-21 01:27:39 +0000330 case Instruction::Trunc:
331 // trunc to a native type is free (assuming the target has compare and
332 // shift-right of the same width).
333 if (DL && DL->isLegalInteger(DL->getTypeSizeInBits(Ty)))
334 return TCC_Free;
335
336 return TCC_Basic;
337 }
338 }
339
340 unsigned getGEPCost(const Value *Ptr,
Craig Topper73156022014-03-02 09:09:27 +0000341 ArrayRef<const Value *> Operands) const override {
Chandler Carruth511aa762013-01-21 01:27:39 +0000342 // In the basic model, we just assume that all-constant GEPs will be folded
343 // into their uses via addressing modes.
344 for (unsigned Idx = 0, Size = Operands.size(); Idx != Size; ++Idx)
345 if (!isa<Constant>(Operands[Idx]))
346 return TCC_Basic;
347
348 return TCC_Free;
349 }
350
Craig Topper73156022014-03-02 09:09:27 +0000351 unsigned getCallCost(FunctionType *FTy, int NumArgs = -1) const override
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000352 {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000353 assert(FTy && "FunctionType must be provided to this routine.");
354
355 // The target-independent implementation just measures the size of the
356 // function by approximating that each argument will take on average one
357 // instruction to prepare.
358
359 if (NumArgs < 0)
360 // Set the argument number to the number of explicit arguments in the
361 // function.
362 NumArgs = FTy->getNumParams();
363
364 return TCC_Basic * (NumArgs + 1);
365 }
366
Craig Topper73156022014-03-02 09:09:27 +0000367 unsigned getCallCost(const Function *F, int NumArgs = -1) const override
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000368 {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000369 assert(F && "A concrete function must be provided to this routine.");
370
371 if (NumArgs < 0)
372 // Set the argument number to the number of explicit arguments in the
373 // function.
374 NumArgs = F->arg_size();
375
376 if (Intrinsic::ID IID = (Intrinsic::ID)F->getIntrinsicID()) {
377 FunctionType *FTy = F->getFunctionType();
378 SmallVector<Type *, 8> ParamTys(FTy->param_begin(), FTy->param_end());
379 return TopTTI->getIntrinsicCost(IID, FTy->getReturnType(), ParamTys);
380 }
381
382 if (!TopTTI->isLoweredToCall(F))
383 return TCC_Basic; // Give a basic cost if it will be lowered directly.
384
385 return TopTTI->getCallCost(F->getFunctionType(), NumArgs);
386 }
387
388 unsigned getCallCost(const Function *F,
Craig Topper73156022014-03-02 09:09:27 +0000389 ArrayRef<const Value *> Arguments) const override {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000390 // Simply delegate to generic handling of the call.
391 // FIXME: We should use instsimplify or something else to catch calls which
392 // will constant fold with these arguments.
393 return TopTTI->getCallCost(F, Arguments.size());
394 }
395
396 unsigned getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
Craig Topper73156022014-03-02 09:09:27 +0000397 ArrayRef<Type *> ParamTys) const override {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000398 switch (IID) {
399 default:
400 // Intrinsics rarely (if ever) have normal argument setup constraints.
401 // Model them as having a basic instruction cost.
402 // FIXME: This is wrong for libc intrinsics.
403 return TCC_Basic;
404
David Peixotto472b05b2014-09-26 17:48:40 +0000405 case Intrinsic::annotation:
Hal Finkel93046912014-07-25 21:13:35 +0000406 case Intrinsic::assume:
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000407 case Intrinsic::dbg_declare:
408 case Intrinsic::dbg_value:
409 case Intrinsic::invariant_start:
410 case Intrinsic::invariant_end:
411 case Intrinsic::lifetime_start:
412 case Intrinsic::lifetime_end:
413 case Intrinsic::objectsize:
414 case Intrinsic::ptr_annotation:
415 case Intrinsic::var_annotation:
Philip Reames337c4bd2014-12-01 21:18:12 +0000416 case Intrinsic::experimental_gc_result_int:
417 case Intrinsic::experimental_gc_result_float:
418 case Intrinsic::experimental_gc_result_ptr:
Ramkumar Ramachandra75a4f352015-01-22 20:14:38 +0000419 case Intrinsic::experimental_gc_result:
Philip Reames337c4bd2014-12-01 21:18:12 +0000420 case Intrinsic::experimental_gc_relocate:
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000421 // These intrinsics don't actually represent code after lowering.
422 return TCC_Free;
423 }
424 }
425
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000426 unsigned
427 getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
Craig Topper73156022014-03-02 09:09:27 +0000428 ArrayRef<const Value *> Arguments) const override {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000429 // Delegate to the generic intrinsic handling code. This mostly provides an
430 // opportunity for targets to (for example) special case the cost of
431 // certain intrinsics based on constants used as arguments.
432 SmallVector<Type *, 8> ParamTys;
433 ParamTys.reserve(Arguments.size());
434 for (unsigned Idx = 0, Size = Arguments.size(); Idx != Size; ++Idx)
435 ParamTys.push_back(Arguments[Idx]->getType());
436 return TopTTI->getIntrinsicCost(IID, RetTy, ParamTys);
437 }
438
Craig Topper73156022014-03-02 09:09:27 +0000439 unsigned getUserCost(const User *U) const override {
Chandler Carruthbb9caa92013-01-21 13:04:33 +0000440 if (isa<PHINode>(U))
441 return TCC_Free; // Model all PHI nodes as free.
442
Hal Finkelb4e001c2014-04-01 18:50:06 +0000443 if (const GEPOperator *GEP = dyn_cast<GEPOperator>(U)) {
444 SmallVector<const Value *, 4> Indices(GEP->idx_begin(), GEP->idx_end());
445 return TopTTI->getGEPCost(GEP->getPointerOperand(), Indices);
446 }
Chandler Carruth511aa762013-01-21 01:27:39 +0000447
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000448 if (ImmutableCallSite CS = U) {
449 const Function *F = CS.getCalledFunction();
450 if (!F) {
451 // Just use the called value type.
452 Type *FTy = CS.getCalledValue()->getType()->getPointerElementType();
453 return TopTTI->getCallCost(cast<FunctionType>(FTy), CS.arg_size());
Chandler Carruth511aa762013-01-21 01:27:39 +0000454 }
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000455
Benjamin Kramer3c29c072014-02-10 14:17:42 +0000456 SmallVector<const Value *, 8> Arguments(CS.arg_begin(), CS.arg_end());
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000457 return TopTTI->getCallCost(F, Arguments);
Chandler Carruth511aa762013-01-21 01:27:39 +0000458 }
459
460 if (const CastInst *CI = dyn_cast<CastInst>(U)) {
461 // Result of a cmp instruction is often extended (to be used by other
462 // cmp instructions, logical or return instructions). These are usually
463 // nop on most sane targets.
464 if (isa<CmpInst>(CI->getOperand(0)))
465 return TCC_Free;
466 }
467
468 // Otherwise delegate to the fully generic implementations.
469 return getOperationCost(Operator::getOpcode(U), U->getType(),
470 U->getNumOperands() == 1 ?
Craig Topper9f008862014-04-15 04:59:12 +0000471 U->getOperand(0)->getType() : nullptr);
Chandler Carruth511aa762013-01-21 01:27:39 +0000472 }
Chandler Carruth539edf42013-01-05 11:43:11 +0000473
Craig Topper73156022014-03-02 09:09:27 +0000474 bool hasBranchDivergence() const override { return false; }
Tom Stellard8b1e0212013-07-27 00:01:07 +0000475
Craig Topper73156022014-03-02 09:09:27 +0000476 bool isLoweredToCall(const Function *F) const override {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000477 // FIXME: These should almost certainly not be handled here, and instead
478 // handled with the help of TLI or the target itself. This was largely
479 // ported from existing analysis heuristics here so that such refactorings
480 // can take place in the future.
481
482 if (F->isIntrinsic())
483 return false;
484
485 if (F->hasLocalLinkage() || !F->hasName())
486 return true;
487
488 StringRef Name = F->getName();
489
490 // These will all likely lower to a single selection DAG node.
491 if (Name == "copysign" || Name == "copysignf" || Name == "copysignl" ||
492 Name == "fabs" || Name == "fabsf" || Name == "fabsl" || Name == "sin" ||
Matt Arsenaultd6511b42014-10-21 23:00:20 +0000493 Name == "fmin" || Name == "fminf" || Name == "fminl" ||
494 Name == "fmax" || Name == "fmaxf" || Name == "fmaxl" ||
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000495 Name == "sinf" || Name == "sinl" || Name == "cos" || Name == "cosf" ||
496 Name == "cosl" || Name == "sqrt" || Name == "sqrtf" || Name == "sqrtl")
497 return false;
498
499 // These are all likely to be optimized into something smaller.
500 if (Name == "pow" || Name == "powf" || Name == "powl" || Name == "exp2" ||
501 Name == "exp2l" || Name == "exp2f" || Name == "floor" || Name ==
502 "floorf" || Name == "ceil" || Name == "round" || Name == "ffs" ||
503 Name == "ffsl" || Name == "abs" || Name == "labs" || Name == "llabs")
504 return false;
505
506 return true;
507 }
508
Eric Christopherd85ffb12014-09-18 00:34:14 +0000509 void getUnrollingPreferences(const Function *, Loop *,
510 UnrollingPreferences &) const override {}
Hal Finkel8f2e7002013-09-11 19:25:43 +0000511
Craig Topper73156022014-03-02 09:09:27 +0000512 bool isLegalAddImmediate(int64_t Imm) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000513 return false;
Chandler Carruth539edf42013-01-05 11:43:11 +0000514 }
515
Craig Topper73156022014-03-02 09:09:27 +0000516 bool isLegalICmpImmediate(int64_t Imm) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000517 return false;
Chandler Carruth539edf42013-01-05 11:43:11 +0000518 }
519
520 bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
Craig Topper73156022014-03-02 09:09:27 +0000521 bool HasBaseReg, int64_t Scale) const override
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000522 {
Chandler Carruth26c59fa2013-01-07 14:41:08 +0000523 // Guess that reg+reg addressing is allowed. This heuristic is taken from
524 // the implementation of LSR.
525 return !BaseGV && BaseOffset == 0 && Scale <= 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000526 }
527
Quentin Colombetbf490d42013-05-31 21:29:03 +0000528 int getScalingFactorCost(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
Craig Topper73156022014-03-02 09:09:27 +0000529 bool HasBaseReg, int64_t Scale) const override {
Quentin Colombetbf490d42013-05-31 21:29:03 +0000530 // Guess that all legal addressing mode are free.
531 if(isLegalAddressingMode(Ty, BaseGV, BaseOffset, HasBaseReg, Scale))
532 return 0;
533 return -1;
534 }
535
Craig Topper73156022014-03-02 09:09:27 +0000536 bool isTruncateFree(Type *Ty1, Type *Ty2) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000537 return false;
Chandler Carruth539edf42013-01-05 11:43:11 +0000538 }
539
Craig Topper73156022014-03-02 09:09:27 +0000540 bool isTypeLegal(Type *Ty) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000541 return false;
Chandler Carruth539edf42013-01-05 11:43:11 +0000542 }
543
Craig Topper73156022014-03-02 09:09:27 +0000544 unsigned getJumpBufAlignment() const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000545 return 0;
Chandler Carruth539edf42013-01-05 11:43:11 +0000546 }
547
Craig Topper73156022014-03-02 09:09:27 +0000548 unsigned getJumpBufSize() const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000549 return 0;
Chandler Carruth539edf42013-01-05 11:43:11 +0000550 }
551
Craig Topper73156022014-03-02 09:09:27 +0000552 bool shouldBuildLookupTables() const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000553 return true;
Chandler Carruth539edf42013-01-05 11:43:11 +0000554 }
555
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000556 PopcntSupportKind
Craig Topper73156022014-03-02 09:09:27 +0000557 getPopcntSupport(unsigned IntTyWidthInBit) const override {
Chandler Carruth50a36cd2013-01-07 03:16:03 +0000558 return PSK_Software;
Chandler Carruth539edf42013-01-05 11:43:11 +0000559 }
560
Craig Topper73156022014-03-02 09:09:27 +0000561 bool haveFastSqrt(Type *Ty) const override {
Richard Sandiford37cd6cf2013-08-23 10:27:02 +0000562 return false;
563 }
564
Craig Topper73156022014-03-02 09:09:27 +0000565 unsigned getIntImmCost(const APInt &Imm, Type *Ty) const override {
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000566 return TCC_Basic;
567 }
568
Juergen Ributzkaf0dff492014-03-21 06:04:45 +0000569 unsigned getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm,
Craig Topper73156022014-03-02 09:09:27 +0000570 Type *Ty) const override {
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000571 return TCC_Free;
572 }
573
Juergen Ributzkaf0dff492014-03-21 06:04:45 +0000574 unsigned getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
Craig Topper73156022014-03-02 09:09:27 +0000575 Type *Ty) const override {
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000576 return TCC_Free;
Chandler Carruth539edf42013-01-05 11:43:11 +0000577 }
578
Craig Topper73156022014-03-02 09:09:27 +0000579 unsigned getNumberOfRegisters(bool Vector) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000580 return 8;
Chandler Carruth539edf42013-01-05 11:43:11 +0000581 }
582
Craig Topper73156022014-03-02 09:09:27 +0000583 unsigned getRegisterBitWidth(bool Vector) const override {
Nadav Rotemb1791a72013-01-09 22:29:00 +0000584 return 32;
585 }
586
Sanjay Patelb653de12014-09-10 17:58:16 +0000587 unsigned getMaxInterleaveFactor() const override {
Nadav Rotemb696c362013-01-09 01:15:42 +0000588 return 1;
589 }
590
Arnold Schwaighoferb9773872013-04-04 23:26:21 +0000591 unsigned getArithmeticInstrCost(unsigned Opcode, Type *Ty, OperandValueKind,
Karthik Bhat7f33ff72014-08-25 04:56:54 +0000592 OperandValueKind, OperandValueProperties,
593 OperandValueProperties) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000594 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000595 }
596
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000597 unsigned getShuffleCost(ShuffleKind Kind, Type *Ty,
Craig Topper9f008862014-04-15 04:59:12 +0000598 int Index = 0, Type *SubTp = nullptr) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000599 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000600 }
601
602 unsigned getCastInstrCost(unsigned Opcode, Type *Dst,
Craig Topper73156022014-03-02 09:09:27 +0000603 Type *Src) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000604 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000605 }
606
Craig Topper73156022014-03-02 09:09:27 +0000607 unsigned getCFInstrCost(unsigned Opcode) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000608 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000609 }
610
611 unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
Craig Topper9f008862014-04-15 04:59:12 +0000612 Type *CondTy = nullptr) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000613 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000614 }
615
616 unsigned getVectorInstrCost(unsigned Opcode, Type *Val,
Craig Topper73156022014-03-02 09:09:27 +0000617 unsigned Index = -1) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000618 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000619 }
620
Craig Topper73156022014-03-02 09:09:27 +0000621 unsigned getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
622 unsigned AddressSpace) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000623 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000624 }
625
Craig Topper73156022014-03-02 09:09:27 +0000626 unsigned getIntrinsicInstrCost(Intrinsic::ID ID, Type *RetTy,
627 ArrayRef<Type*> Tys) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000628 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000629 }
630
Craig Topper73156022014-03-02 09:09:27 +0000631 unsigned getNumberOfParts(Type *Tp) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000632 return 0;
Chandler Carruth539edf42013-01-05 11:43:11 +0000633 }
Arnold Schwaighofer594fa2d2013-02-08 14:50:48 +0000634
Craig Topper73156022014-03-02 09:09:27 +0000635 unsigned getAddressComputationCost(Type *Tp, bool) const override {
Arnold Schwaighofer594fa2d2013-02-08 14:50:48 +0000636 return 0;
637 }
Arnold Schwaighofercae87352013-09-17 18:06:50 +0000638
Craig Topper73156022014-03-02 09:09:27 +0000639 unsigned getReductionCost(unsigned, Type *, bool) const override {
Arnold Schwaighofercae87352013-09-17 18:06:50 +0000640 return 1;
641 }
James Molloy2b8933c2014-08-05 12:30:34 +0000642
643 unsigned getCostOfKeepingLiveOverCall(ArrayRef<Type*> Tys) const override {
644 return 0;
645 }
646
Chandler Carruth539edf42013-01-05 11:43:11 +0000647};
648
649} // end anonymous namespace
650
Chandler Carruth664e3542013-01-07 01:37:14 +0000651INITIALIZE_AG_PASS(NoTTI, TargetTransformInfo, "notti",
Chandler Carruth539edf42013-01-05 11:43:11 +0000652 "No target information", true, true, true)
653char NoTTI::ID = 0;
654
Chandler Carruth664e3542013-01-07 01:37:14 +0000655ImmutablePass *llvm::createNoTargetTransformInfoPass() {
656 return new NoTTI();
Chandler Carruth539edf42013-01-05 11:43:11 +0000657}