blob: 3d8a37811bac563b1b74e51ab28223279aa98a2d [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
104bool TargetTransformInfo::isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV,
105 int64_t BaseOffset,
106 bool HasBaseReg,
107 int64_t Scale) const {
108 return PrevTTI->isLegalAddressingMode(Ty, BaseGV, BaseOffset, HasBaseReg,
109 Scale);
110}
111
Quentin Colombetbf490d42013-05-31 21:29:03 +0000112int TargetTransformInfo::getScalingFactorCost(Type *Ty, GlobalValue *BaseGV,
113 int64_t BaseOffset,
114 bool HasBaseReg,
115 int64_t Scale) const {
116 return PrevTTI->getScalingFactorCost(Ty, BaseGV, BaseOffset, HasBaseReg,
117 Scale);
118}
119
Chandler Carruth539edf42013-01-05 11:43:11 +0000120bool TargetTransformInfo::isTruncateFree(Type *Ty1, Type *Ty2) const {
121 return PrevTTI->isTruncateFree(Ty1, Ty2);
122}
123
124bool TargetTransformInfo::isTypeLegal(Type *Ty) const {
125 return PrevTTI->isTypeLegal(Ty);
126}
127
128unsigned TargetTransformInfo::getJumpBufAlignment() const {
129 return PrevTTI->getJumpBufAlignment();
130}
131
132unsigned TargetTransformInfo::getJumpBufSize() const {
133 return PrevTTI->getJumpBufSize();
134}
135
136bool TargetTransformInfo::shouldBuildLookupTables() const {
137 return PrevTTI->shouldBuildLookupTables();
138}
139
Chandler Carruth50a36cd2013-01-07 03:16:03 +0000140TargetTransformInfo::PopcntSupportKind
141TargetTransformInfo::getPopcntSupport(unsigned IntTyWidthInBit) const {
142 return PrevTTI->getPopcntSupport(IntTyWidthInBit);
Chandler Carruth539edf42013-01-05 11:43:11 +0000143}
144
Richard Sandiford37cd6cf2013-08-23 10:27:02 +0000145bool TargetTransformInfo::haveFastSqrt(Type *Ty) const {
146 return PrevTTI->haveFastSqrt(Ty);
147}
148
Chandler Carruth539edf42013-01-05 11:43:11 +0000149unsigned TargetTransformInfo::getIntImmCost(const APInt &Imm, Type *Ty) const {
150 return PrevTTI->getIntImmCost(Imm, Ty);
151}
152
Juergen Ributzkaf0dff492014-03-21 06:04:45 +0000153unsigned TargetTransformInfo::getIntImmCost(unsigned Opc, unsigned Idx,
154 const APInt &Imm, Type *Ty) const {
155 return PrevTTI->getIntImmCost(Opc, Idx, Imm, Ty);
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000156}
157
Juergen Ributzkaf0dff492014-03-21 06:04:45 +0000158unsigned TargetTransformInfo::getIntImmCost(Intrinsic::ID IID, unsigned Idx,
159 const APInt &Imm, Type *Ty) const {
160 return PrevTTI->getIntImmCost(IID, Idx, Imm, Ty);
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000161}
162
Chandler Carruth539edf42013-01-05 11:43:11 +0000163unsigned TargetTransformInfo::getNumberOfRegisters(bool Vector) const {
164 return PrevTTI->getNumberOfRegisters(Vector);
165}
166
Nadav Rotemb1791a72013-01-09 22:29:00 +0000167unsigned TargetTransformInfo::getRegisterBitWidth(bool Vector) const {
168 return PrevTTI->getRegisterBitWidth(Vector);
169}
170
Sanjay Patelb653de12014-09-10 17:58:16 +0000171unsigned TargetTransformInfo::getMaxInterleaveFactor() const {
172 return PrevTTI->getMaxInterleaveFactor();
Nadav Rotemb696c362013-01-09 01:15:42 +0000173}
174
Karthik Bhat7f33ff72014-08-25 04:56:54 +0000175unsigned TargetTransformInfo::getArithmeticInstrCost(
176 unsigned Opcode, Type *Ty, OperandValueKind Op1Info,
177 OperandValueKind Op2Info, OperandValueProperties Opd1PropInfo,
178 OperandValueProperties Opd2PropInfo) const {
179 return PrevTTI->getArithmeticInstrCost(Opcode, Ty, Op1Info, Op2Info,
180 Opd1PropInfo, Opd2PropInfo);
Chandler Carruth539edf42013-01-05 11:43:11 +0000181}
182
183unsigned TargetTransformInfo::getShuffleCost(ShuffleKind Kind, Type *Tp,
184 int Index, Type *SubTp) const {
185 return PrevTTI->getShuffleCost(Kind, Tp, Index, SubTp);
186}
187
188unsigned TargetTransformInfo::getCastInstrCost(unsigned Opcode, Type *Dst,
189 Type *Src) const {
190 return PrevTTI->getCastInstrCost(Opcode, Dst, Src);
191}
192
193unsigned TargetTransformInfo::getCFInstrCost(unsigned Opcode) const {
194 return PrevTTI->getCFInstrCost(Opcode);
195}
196
197unsigned TargetTransformInfo::getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
198 Type *CondTy) const {
199 return PrevTTI->getCmpSelInstrCost(Opcode, ValTy, CondTy);
200}
201
202unsigned TargetTransformInfo::getVectorInstrCost(unsigned Opcode, Type *Val,
203 unsigned Index) const {
204 return PrevTTI->getVectorInstrCost(Opcode, Val, Index);
205}
206
207unsigned TargetTransformInfo::getMemoryOpCost(unsigned Opcode, Type *Src,
208 unsigned Alignment,
209 unsigned AddressSpace) const {
210 return PrevTTI->getMemoryOpCost(Opcode, Src, Alignment, AddressSpace);
211 ;
212}
213
214unsigned
215TargetTransformInfo::getIntrinsicInstrCost(Intrinsic::ID ID,
216 Type *RetTy,
217 ArrayRef<Type *> Tys) const {
218 return PrevTTI->getIntrinsicInstrCost(ID, RetTy, Tys);
219}
220
221unsigned TargetTransformInfo::getNumberOfParts(Type *Tp) const {
222 return PrevTTI->getNumberOfParts(Tp);
223}
224
Arnold Schwaighofer9da9a432013-07-12 19:16:02 +0000225unsigned TargetTransformInfo::getAddressComputationCost(Type *Tp,
226 bool IsComplex) const {
227 return PrevTTI->getAddressComputationCost(Tp, IsComplex);
Arnold Schwaighofer594fa2d2013-02-08 14:50:48 +0000228}
Chandler Carruth539edf42013-01-05 11:43:11 +0000229
Arnold Schwaighofercae87352013-09-17 18:06:50 +0000230unsigned TargetTransformInfo::getReductionCost(unsigned Opcode, Type *Ty,
231 bool IsPairwise) const {
232 return PrevTTI->getReductionCost(Opcode, Ty, IsPairwise);
233}
234
James Molloy2b8933c2014-08-05 12:30:34 +0000235unsigned TargetTransformInfo::getCostOfKeepingLiveOverCall(ArrayRef<Type*> Tys)
236 const {
237 return PrevTTI->getCostOfKeepingLiveOverCall(Tys);
238}
239
Chandler Carruth539edf42013-01-05 11:43:11 +0000240namespace {
241
Craig Topper77dfe452014-03-02 08:08:51 +0000242struct NoTTI final : ImmutablePass, TargetTransformInfo {
Chandler Carruth511aa762013-01-21 01:27:39 +0000243 const DataLayout *DL;
244
Craig Topper9f008862014-04-15 04:59:12 +0000245 NoTTI() : ImmutablePass(ID), DL(nullptr) {
Chandler Carruth539edf42013-01-05 11:43:11 +0000246 initializeNoTTIPass(*PassRegistry::getPassRegistry());
247 }
248
Craig Topperfd38cbe2014-08-30 16:48:34 +0000249 void initializePass() override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000250 // Note that this subclass is special, and must *not* call initializeTTI as
251 // it does not chain.
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000252 TopTTI = this;
Craig Topper9f008862014-04-15 04:59:12 +0000253 PrevTTI = nullptr;
Rafael Espindola93512512014-02-25 17:30:31 +0000254 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
Craig Topper9f008862014-04-15 04:59:12 +0000255 DL = DLP ? &DLP->getDataLayout() : nullptr;
Chandler Carruth664e3542013-01-07 01:37:14 +0000256 }
257
Craig Topperfd38cbe2014-08-30 16:48:34 +0000258 void getAnalysisUsage(AnalysisUsage &AU) const override {
Chandler Carruth539edf42013-01-05 11:43:11 +0000259 // Note that this subclass is special, and must *not* call
260 // TTI::getAnalysisUsage as it breaks the recursion.
261 }
262
263 /// Pass identification.
264 static char ID;
265
266 /// Provide necessary pointer adjustments for the two base classes.
Craig Topperfd38cbe2014-08-30 16:48:34 +0000267 void *getAdjustedAnalysisPointer(const void *ID) override {
Chandler Carruth539edf42013-01-05 11:43:11 +0000268 if (ID == &TargetTransformInfo::ID)
269 return (TargetTransformInfo*)this;
270 return this;
271 }
272
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000273 unsigned getOperationCost(unsigned Opcode, Type *Ty,
Craig Topper73156022014-03-02 09:09:27 +0000274 Type *OpTy) const override {
Chandler Carruth511aa762013-01-21 01:27:39 +0000275 switch (Opcode) {
276 default:
277 // By default, just classify everything as 'basic'.
278 return TCC_Basic;
279
280 case Instruction::GetElementPtr:
281 llvm_unreachable("Use getGEPCost for GEP operations!");
282
283 case Instruction::BitCast:
284 assert(OpTy && "Cast instructions must provide the operand type");
285 if (Ty == OpTy || (Ty->isPointerTy() && OpTy->isPointerTy()))
286 // Identity and pointer-to-pointer casts are free.
287 return TCC_Free;
288
289 // Otherwise, the default basic cost is used.
290 return TCC_Basic;
291
Matt Arsenault54c3cbc2013-08-28 22:41:57 +0000292 case Instruction::IntToPtr: {
293 if (!DL)
294 return TCC_Basic;
295
Chandler Carruth511aa762013-01-21 01:27:39 +0000296 // An inttoptr cast is free so long as the input is a legal integer type
297 // which doesn't contain values outside the range of a pointer.
Matt Arsenault54c3cbc2013-08-28 22:41:57 +0000298 unsigned OpSize = OpTy->getScalarSizeInBits();
299 if (DL->isLegalInteger(OpSize) &&
300 OpSize <= DL->getPointerTypeSizeInBits(Ty))
Chandler Carruth511aa762013-01-21 01:27:39 +0000301 return TCC_Free;
302
303 // Otherwise it's not a no-op.
304 return TCC_Basic;
Matt Arsenault54c3cbc2013-08-28 22:41:57 +0000305 }
306 case Instruction::PtrToInt: {
307 if (!DL)
308 return TCC_Basic;
Chandler Carruth511aa762013-01-21 01:27:39 +0000309
Chandler Carruth511aa762013-01-21 01:27:39 +0000310 // A ptrtoint cast is free so long as the result is large enough to store
311 // the pointer, and a legal integer type.
Matt Arsenault54c3cbc2013-08-28 22:41:57 +0000312 unsigned DestSize = Ty->getScalarSizeInBits();
313 if (DL->isLegalInteger(DestSize) &&
314 DestSize >= DL->getPointerTypeSizeInBits(OpTy))
Chandler Carruth511aa762013-01-21 01:27:39 +0000315 return TCC_Free;
316
317 // Otherwise it's not a no-op.
318 return TCC_Basic;
Matt Arsenault54c3cbc2013-08-28 22:41:57 +0000319 }
Chandler Carruth511aa762013-01-21 01:27:39 +0000320 case Instruction::Trunc:
321 // trunc to a native type is free (assuming the target has compare and
322 // shift-right of the same width).
323 if (DL && DL->isLegalInteger(DL->getTypeSizeInBits(Ty)))
324 return TCC_Free;
325
326 return TCC_Basic;
327 }
328 }
329
330 unsigned getGEPCost(const Value *Ptr,
Craig Topper73156022014-03-02 09:09:27 +0000331 ArrayRef<const Value *> Operands) const override {
Chandler Carruth511aa762013-01-21 01:27:39 +0000332 // In the basic model, we just assume that all-constant GEPs will be folded
333 // into their uses via addressing modes.
334 for (unsigned Idx = 0, Size = Operands.size(); Idx != Size; ++Idx)
335 if (!isa<Constant>(Operands[Idx]))
336 return TCC_Basic;
337
338 return TCC_Free;
339 }
340
Craig Topper73156022014-03-02 09:09:27 +0000341 unsigned getCallCost(FunctionType *FTy, int NumArgs = -1) const override
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000342 {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000343 assert(FTy && "FunctionType must be provided to this routine.");
344
345 // The target-independent implementation just measures the size of the
346 // function by approximating that each argument will take on average one
347 // instruction to prepare.
348
349 if (NumArgs < 0)
350 // Set the argument number to the number of explicit arguments in the
351 // function.
352 NumArgs = FTy->getNumParams();
353
354 return TCC_Basic * (NumArgs + 1);
355 }
356
Craig Topper73156022014-03-02 09:09:27 +0000357 unsigned getCallCost(const Function *F, int NumArgs = -1) const override
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000358 {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000359 assert(F && "A concrete function must be provided to this routine.");
360
361 if (NumArgs < 0)
362 // Set the argument number to the number of explicit arguments in the
363 // function.
364 NumArgs = F->arg_size();
365
366 if (Intrinsic::ID IID = (Intrinsic::ID)F->getIntrinsicID()) {
367 FunctionType *FTy = F->getFunctionType();
368 SmallVector<Type *, 8> ParamTys(FTy->param_begin(), FTy->param_end());
369 return TopTTI->getIntrinsicCost(IID, FTy->getReturnType(), ParamTys);
370 }
371
372 if (!TopTTI->isLoweredToCall(F))
373 return TCC_Basic; // Give a basic cost if it will be lowered directly.
374
375 return TopTTI->getCallCost(F->getFunctionType(), NumArgs);
376 }
377
378 unsigned getCallCost(const Function *F,
Craig Topper73156022014-03-02 09:09:27 +0000379 ArrayRef<const Value *> Arguments) const override {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000380 // Simply delegate to generic handling of the call.
381 // FIXME: We should use instsimplify or something else to catch calls which
382 // will constant fold with these arguments.
383 return TopTTI->getCallCost(F, Arguments.size());
384 }
385
386 unsigned getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
Craig Topper73156022014-03-02 09:09:27 +0000387 ArrayRef<Type *> ParamTys) const override {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000388 switch (IID) {
389 default:
390 // Intrinsics rarely (if ever) have normal argument setup constraints.
391 // Model them as having a basic instruction cost.
392 // FIXME: This is wrong for libc intrinsics.
393 return TCC_Basic;
394
David Peixotto472b05b2014-09-26 17:48:40 +0000395 case Intrinsic::annotation:
Hal Finkel93046912014-07-25 21:13:35 +0000396 case Intrinsic::assume:
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000397 case Intrinsic::dbg_declare:
398 case Intrinsic::dbg_value:
399 case Intrinsic::invariant_start:
400 case Intrinsic::invariant_end:
401 case Intrinsic::lifetime_start:
402 case Intrinsic::lifetime_end:
403 case Intrinsic::objectsize:
404 case Intrinsic::ptr_annotation:
405 case Intrinsic::var_annotation:
Philip Reames337c4bd2014-12-01 21:18:12 +0000406 case Intrinsic::experimental_gc_result_int:
407 case Intrinsic::experimental_gc_result_float:
408 case Intrinsic::experimental_gc_result_ptr:
409 case Intrinsic::experimental_gc_relocate:
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000410 // These intrinsics don't actually represent code after lowering.
411 return TCC_Free;
412 }
413 }
414
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000415 unsigned
416 getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
Craig Topper73156022014-03-02 09:09:27 +0000417 ArrayRef<const Value *> Arguments) const override {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000418 // Delegate to the generic intrinsic handling code. This mostly provides an
419 // opportunity for targets to (for example) special case the cost of
420 // certain intrinsics based on constants used as arguments.
421 SmallVector<Type *, 8> ParamTys;
422 ParamTys.reserve(Arguments.size());
423 for (unsigned Idx = 0, Size = Arguments.size(); Idx != Size; ++Idx)
424 ParamTys.push_back(Arguments[Idx]->getType());
425 return TopTTI->getIntrinsicCost(IID, RetTy, ParamTys);
426 }
427
Craig Topper73156022014-03-02 09:09:27 +0000428 unsigned getUserCost(const User *U) const override {
Chandler Carruthbb9caa92013-01-21 13:04:33 +0000429 if (isa<PHINode>(U))
430 return TCC_Free; // Model all PHI nodes as free.
431
Hal Finkelb4e001c2014-04-01 18:50:06 +0000432 if (const GEPOperator *GEP = dyn_cast<GEPOperator>(U)) {
433 SmallVector<const Value *, 4> Indices(GEP->idx_begin(), GEP->idx_end());
434 return TopTTI->getGEPCost(GEP->getPointerOperand(), Indices);
435 }
Chandler Carruth511aa762013-01-21 01:27:39 +0000436
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000437 if (ImmutableCallSite CS = U) {
438 const Function *F = CS.getCalledFunction();
439 if (!F) {
440 // Just use the called value type.
441 Type *FTy = CS.getCalledValue()->getType()->getPointerElementType();
442 return TopTTI->getCallCost(cast<FunctionType>(FTy), CS.arg_size());
Chandler Carruth511aa762013-01-21 01:27:39 +0000443 }
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000444
Benjamin Kramer3c29c072014-02-10 14:17:42 +0000445 SmallVector<const Value *, 8> Arguments(CS.arg_begin(), CS.arg_end());
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000446 return TopTTI->getCallCost(F, Arguments);
Chandler Carruth511aa762013-01-21 01:27:39 +0000447 }
448
449 if (const CastInst *CI = dyn_cast<CastInst>(U)) {
450 // Result of a cmp instruction is often extended (to be used by other
451 // cmp instructions, logical or return instructions). These are usually
452 // nop on most sane targets.
453 if (isa<CmpInst>(CI->getOperand(0)))
454 return TCC_Free;
455 }
456
457 // Otherwise delegate to the fully generic implementations.
458 return getOperationCost(Operator::getOpcode(U), U->getType(),
459 U->getNumOperands() == 1 ?
Craig Topper9f008862014-04-15 04:59:12 +0000460 U->getOperand(0)->getType() : nullptr);
Chandler Carruth511aa762013-01-21 01:27:39 +0000461 }
Chandler Carruth539edf42013-01-05 11:43:11 +0000462
Craig Topper73156022014-03-02 09:09:27 +0000463 bool hasBranchDivergence() const override { return false; }
Tom Stellard8b1e0212013-07-27 00:01:07 +0000464
Craig Topper73156022014-03-02 09:09:27 +0000465 bool isLoweredToCall(const Function *F) const override {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000466 // FIXME: These should almost certainly not be handled here, and instead
467 // handled with the help of TLI or the target itself. This was largely
468 // ported from existing analysis heuristics here so that such refactorings
469 // can take place in the future.
470
471 if (F->isIntrinsic())
472 return false;
473
474 if (F->hasLocalLinkage() || !F->hasName())
475 return true;
476
477 StringRef Name = F->getName();
478
479 // These will all likely lower to a single selection DAG node.
480 if (Name == "copysign" || Name == "copysignf" || Name == "copysignl" ||
481 Name == "fabs" || Name == "fabsf" || Name == "fabsl" || Name == "sin" ||
Matt Arsenaultd6511b42014-10-21 23:00:20 +0000482 Name == "fmin" || Name == "fminf" || Name == "fminl" ||
483 Name == "fmax" || Name == "fmaxf" || Name == "fmaxl" ||
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000484 Name == "sinf" || Name == "sinl" || Name == "cos" || Name == "cosf" ||
485 Name == "cosl" || Name == "sqrt" || Name == "sqrtf" || Name == "sqrtl")
486 return false;
487
488 // These are all likely to be optimized into something smaller.
489 if (Name == "pow" || Name == "powf" || Name == "powl" || Name == "exp2" ||
490 Name == "exp2l" || Name == "exp2f" || Name == "floor" || Name ==
491 "floorf" || Name == "ceil" || Name == "round" || Name == "ffs" ||
492 Name == "ffsl" || Name == "abs" || Name == "labs" || Name == "llabs")
493 return false;
494
495 return true;
496 }
497
Eric Christopherd85ffb12014-09-18 00:34:14 +0000498 void getUnrollingPreferences(const Function *, Loop *,
499 UnrollingPreferences &) const override {}
Hal Finkel8f2e7002013-09-11 19:25:43 +0000500
Craig Topper73156022014-03-02 09:09:27 +0000501 bool isLegalAddImmediate(int64_t Imm) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000502 return false;
Chandler Carruth539edf42013-01-05 11:43:11 +0000503 }
504
Craig Topper73156022014-03-02 09:09:27 +0000505 bool isLegalICmpImmediate(int64_t Imm) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000506 return false;
Chandler Carruth539edf42013-01-05 11:43:11 +0000507 }
508
509 bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
Craig Topper73156022014-03-02 09:09:27 +0000510 bool HasBaseReg, int64_t Scale) const override
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000511 {
Chandler Carruth26c59fa2013-01-07 14:41:08 +0000512 // Guess that reg+reg addressing is allowed. This heuristic is taken from
513 // the implementation of LSR.
514 return !BaseGV && BaseOffset == 0 && Scale <= 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000515 }
516
Quentin Colombetbf490d42013-05-31 21:29:03 +0000517 int getScalingFactorCost(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
Craig Topper73156022014-03-02 09:09:27 +0000518 bool HasBaseReg, int64_t Scale) const override {
Quentin Colombetbf490d42013-05-31 21:29:03 +0000519 // Guess that all legal addressing mode are free.
520 if(isLegalAddressingMode(Ty, BaseGV, BaseOffset, HasBaseReg, Scale))
521 return 0;
522 return -1;
523 }
524
Craig Topper73156022014-03-02 09:09:27 +0000525 bool isTruncateFree(Type *Ty1, Type *Ty2) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000526 return false;
Chandler Carruth539edf42013-01-05 11:43:11 +0000527 }
528
Craig Topper73156022014-03-02 09:09:27 +0000529 bool isTypeLegal(Type *Ty) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000530 return false;
Chandler Carruth539edf42013-01-05 11:43:11 +0000531 }
532
Craig Topper73156022014-03-02 09:09:27 +0000533 unsigned getJumpBufAlignment() const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000534 return 0;
Chandler Carruth539edf42013-01-05 11:43:11 +0000535 }
536
Craig Topper73156022014-03-02 09:09:27 +0000537 unsigned getJumpBufSize() const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000538 return 0;
Chandler Carruth539edf42013-01-05 11:43:11 +0000539 }
540
Craig Topper73156022014-03-02 09:09:27 +0000541 bool shouldBuildLookupTables() const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000542 return true;
Chandler Carruth539edf42013-01-05 11:43:11 +0000543 }
544
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000545 PopcntSupportKind
Craig Topper73156022014-03-02 09:09:27 +0000546 getPopcntSupport(unsigned IntTyWidthInBit) const override {
Chandler Carruth50a36cd2013-01-07 03:16:03 +0000547 return PSK_Software;
Chandler Carruth539edf42013-01-05 11:43:11 +0000548 }
549
Craig Topper73156022014-03-02 09:09:27 +0000550 bool haveFastSqrt(Type *Ty) const override {
Richard Sandiford37cd6cf2013-08-23 10:27:02 +0000551 return false;
552 }
553
Craig Topper73156022014-03-02 09:09:27 +0000554 unsigned getIntImmCost(const APInt &Imm, Type *Ty) const override {
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000555 return TCC_Basic;
556 }
557
Juergen Ributzkaf0dff492014-03-21 06:04:45 +0000558 unsigned getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm,
Craig Topper73156022014-03-02 09:09:27 +0000559 Type *Ty) const override {
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000560 return TCC_Free;
561 }
562
Juergen Ributzkaf0dff492014-03-21 06:04:45 +0000563 unsigned getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
Craig Topper73156022014-03-02 09:09:27 +0000564 Type *Ty) const override {
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000565 return TCC_Free;
Chandler Carruth539edf42013-01-05 11:43:11 +0000566 }
567
Craig Topper73156022014-03-02 09:09:27 +0000568 unsigned getNumberOfRegisters(bool Vector) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000569 return 8;
Chandler Carruth539edf42013-01-05 11:43:11 +0000570 }
571
Craig Topper73156022014-03-02 09:09:27 +0000572 unsigned getRegisterBitWidth(bool Vector) const override {
Nadav Rotemb1791a72013-01-09 22:29:00 +0000573 return 32;
574 }
575
Sanjay Patelb653de12014-09-10 17:58:16 +0000576 unsigned getMaxInterleaveFactor() const override {
Nadav Rotemb696c362013-01-09 01:15:42 +0000577 return 1;
578 }
579
Arnold Schwaighoferb9773872013-04-04 23:26:21 +0000580 unsigned getArithmeticInstrCost(unsigned Opcode, Type *Ty, OperandValueKind,
Karthik Bhat7f33ff72014-08-25 04:56:54 +0000581 OperandValueKind, OperandValueProperties,
582 OperandValueProperties) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000583 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000584 }
585
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000586 unsigned getShuffleCost(ShuffleKind Kind, Type *Ty,
Craig Topper9f008862014-04-15 04:59:12 +0000587 int Index = 0, Type *SubTp = nullptr) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000588 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000589 }
590
591 unsigned getCastInstrCost(unsigned Opcode, Type *Dst,
Craig Topper73156022014-03-02 09:09:27 +0000592 Type *Src) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000593 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000594 }
595
Craig Topper73156022014-03-02 09:09:27 +0000596 unsigned getCFInstrCost(unsigned Opcode) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000597 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000598 }
599
600 unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
Craig Topper9f008862014-04-15 04:59:12 +0000601 Type *CondTy = nullptr) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000602 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000603 }
604
605 unsigned getVectorInstrCost(unsigned Opcode, Type *Val,
Craig Topper73156022014-03-02 09:09:27 +0000606 unsigned Index = -1) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000607 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000608 }
609
Craig Topper73156022014-03-02 09:09:27 +0000610 unsigned getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
611 unsigned AddressSpace) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000612 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000613 }
614
Craig Topper73156022014-03-02 09:09:27 +0000615 unsigned getIntrinsicInstrCost(Intrinsic::ID ID, Type *RetTy,
616 ArrayRef<Type*> Tys) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000617 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000618 }
619
Craig Topper73156022014-03-02 09:09:27 +0000620 unsigned getNumberOfParts(Type *Tp) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000621 return 0;
Chandler Carruth539edf42013-01-05 11:43:11 +0000622 }
Arnold Schwaighofer594fa2d2013-02-08 14:50:48 +0000623
Craig Topper73156022014-03-02 09:09:27 +0000624 unsigned getAddressComputationCost(Type *Tp, bool) const override {
Arnold Schwaighofer594fa2d2013-02-08 14:50:48 +0000625 return 0;
626 }
Arnold Schwaighofercae87352013-09-17 18:06:50 +0000627
Craig Topper73156022014-03-02 09:09:27 +0000628 unsigned getReductionCost(unsigned, Type *, bool) const override {
Arnold Schwaighofercae87352013-09-17 18:06:50 +0000629 return 1;
630 }
James Molloy2b8933c2014-08-05 12:30:34 +0000631
632 unsigned getCostOfKeepingLiveOverCall(ArrayRef<Type*> Tys) const override {
633 return 0;
634 }
635
Chandler Carruth539edf42013-01-05 11:43:11 +0000636};
637
638} // end anonymous namespace
639
Chandler Carruth664e3542013-01-07 01:37:14 +0000640INITIALIZE_AG_PASS(NoTTI, TargetTransformInfo, "notti",
Chandler Carruth539edf42013-01-05 11:43:11 +0000641 "No target information", true, true, true)
642char NoTTI::ID = 0;
643
Chandler Carruth664e3542013-01-07 01:37:14 +0000644ImmutablePass *llvm::createNoTargetTransformInfoPass() {
645 return new NoTTI();
Chandler Carruth539edf42013-01-05 11:43:11 +0000646}