blob: 888b5cef2f8c5b47c413c114551a7dc3bcce62ce [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
Hal Finkel8f2e7002013-09-11 19:25:43 +000090void TargetTransformInfo::getUnrollingPreferences(Loop *L,
91 UnrollingPreferences &UP) const {
92 PrevTTI->getUnrollingPreferences(L, UP);
93}
94
Chandler Carruth539edf42013-01-05 11:43:11 +000095bool TargetTransformInfo::isLegalAddImmediate(int64_t Imm) const {
96 return PrevTTI->isLegalAddImmediate(Imm);
97}
98
99bool TargetTransformInfo::isLegalICmpImmediate(int64_t Imm) const {
100 return PrevTTI->isLegalICmpImmediate(Imm);
101}
102
103bool TargetTransformInfo::isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV,
104 int64_t BaseOffset,
105 bool HasBaseReg,
106 int64_t Scale) const {
107 return PrevTTI->isLegalAddressingMode(Ty, BaseGV, BaseOffset, HasBaseReg,
108 Scale);
109}
110
Quentin Colombetbf490d42013-05-31 21:29:03 +0000111int TargetTransformInfo::getScalingFactorCost(Type *Ty, GlobalValue *BaseGV,
112 int64_t BaseOffset,
113 bool HasBaseReg,
114 int64_t Scale) const {
115 return PrevTTI->getScalingFactorCost(Ty, BaseGV, BaseOffset, HasBaseReg,
116 Scale);
117}
118
Chandler Carruth539edf42013-01-05 11:43:11 +0000119bool TargetTransformInfo::isTruncateFree(Type *Ty1, Type *Ty2) const {
120 return PrevTTI->isTruncateFree(Ty1, Ty2);
121}
122
123bool TargetTransformInfo::isTypeLegal(Type *Ty) const {
124 return PrevTTI->isTypeLegal(Ty);
125}
126
127unsigned TargetTransformInfo::getJumpBufAlignment() const {
128 return PrevTTI->getJumpBufAlignment();
129}
130
131unsigned TargetTransformInfo::getJumpBufSize() const {
132 return PrevTTI->getJumpBufSize();
133}
134
135bool TargetTransformInfo::shouldBuildLookupTables() const {
136 return PrevTTI->shouldBuildLookupTables();
137}
138
Chandler Carruth50a36cd2013-01-07 03:16:03 +0000139TargetTransformInfo::PopcntSupportKind
140TargetTransformInfo::getPopcntSupport(unsigned IntTyWidthInBit) const {
141 return PrevTTI->getPopcntSupport(IntTyWidthInBit);
Chandler Carruth539edf42013-01-05 11:43:11 +0000142}
143
Richard Sandiford37cd6cf2013-08-23 10:27:02 +0000144bool TargetTransformInfo::haveFastSqrt(Type *Ty) const {
145 return PrevTTI->haveFastSqrt(Ty);
146}
147
Chandler Carruth539edf42013-01-05 11:43:11 +0000148unsigned TargetTransformInfo::getIntImmCost(const APInt &Imm, Type *Ty) const {
149 return PrevTTI->getIntImmCost(Imm, Ty);
150}
151
Juergen Ributzkaf0dff492014-03-21 06:04:45 +0000152unsigned TargetTransformInfo::getIntImmCost(unsigned Opc, unsigned Idx,
153 const APInt &Imm, Type *Ty) const {
154 return PrevTTI->getIntImmCost(Opc, Idx, Imm, Ty);
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000155}
156
Juergen Ributzkaf0dff492014-03-21 06:04:45 +0000157unsigned TargetTransformInfo::getIntImmCost(Intrinsic::ID IID, unsigned Idx,
158 const APInt &Imm, Type *Ty) const {
159 return PrevTTI->getIntImmCost(IID, Idx, Imm, Ty);
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000160}
161
Chandler Carruth539edf42013-01-05 11:43:11 +0000162unsigned TargetTransformInfo::getNumberOfRegisters(bool Vector) const {
163 return PrevTTI->getNumberOfRegisters(Vector);
164}
165
Nadav Rotemb1791a72013-01-09 22:29:00 +0000166unsigned TargetTransformInfo::getRegisterBitWidth(bool Vector) const {
167 return PrevTTI->getRegisterBitWidth(Vector);
168}
169
Nadav Rotemb696c362013-01-09 01:15:42 +0000170unsigned TargetTransformInfo::getMaximumUnrollFactor() const {
171 return PrevTTI->getMaximumUnrollFactor();
172}
173
Chandler Carruth539edf42013-01-05 11:43:11 +0000174unsigned TargetTransformInfo::getArithmeticInstrCost(unsigned Opcode,
Arnold Schwaighoferb9773872013-04-04 23:26:21 +0000175 Type *Ty,
176 OperandValueKind Op1Info,
177 OperandValueKind Op2Info) const {
178 return PrevTTI->getArithmeticInstrCost(Opcode, Ty, Op1Info, Op2Info);
Chandler Carruth539edf42013-01-05 11:43:11 +0000179}
180
181unsigned TargetTransformInfo::getShuffleCost(ShuffleKind Kind, Type *Tp,
182 int Index, Type *SubTp) const {
183 return PrevTTI->getShuffleCost(Kind, Tp, Index, SubTp);
184}
185
186unsigned TargetTransformInfo::getCastInstrCost(unsigned Opcode, Type *Dst,
187 Type *Src) const {
188 return PrevTTI->getCastInstrCost(Opcode, Dst, Src);
189}
190
191unsigned TargetTransformInfo::getCFInstrCost(unsigned Opcode) const {
192 return PrevTTI->getCFInstrCost(Opcode);
193}
194
195unsigned TargetTransformInfo::getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
196 Type *CondTy) const {
197 return PrevTTI->getCmpSelInstrCost(Opcode, ValTy, CondTy);
198}
199
200unsigned TargetTransformInfo::getVectorInstrCost(unsigned Opcode, Type *Val,
201 unsigned Index) const {
202 return PrevTTI->getVectorInstrCost(Opcode, Val, Index);
203}
204
205unsigned TargetTransformInfo::getMemoryOpCost(unsigned Opcode, Type *Src,
206 unsigned Alignment,
207 unsigned AddressSpace) const {
208 return PrevTTI->getMemoryOpCost(Opcode, Src, Alignment, AddressSpace);
209 ;
210}
211
212unsigned
213TargetTransformInfo::getIntrinsicInstrCost(Intrinsic::ID ID,
214 Type *RetTy,
215 ArrayRef<Type *> Tys) const {
216 return PrevTTI->getIntrinsicInstrCost(ID, RetTy, Tys);
217}
218
219unsigned TargetTransformInfo::getNumberOfParts(Type *Tp) const {
220 return PrevTTI->getNumberOfParts(Tp);
221}
222
Arnold Schwaighofer9da9a432013-07-12 19:16:02 +0000223unsigned TargetTransformInfo::getAddressComputationCost(Type *Tp,
224 bool IsComplex) const {
225 return PrevTTI->getAddressComputationCost(Tp, IsComplex);
Arnold Schwaighofer594fa2d2013-02-08 14:50:48 +0000226}
Chandler Carruth539edf42013-01-05 11:43:11 +0000227
Arnold Schwaighofercae87352013-09-17 18:06:50 +0000228unsigned TargetTransformInfo::getReductionCost(unsigned Opcode, Type *Ty,
229 bool IsPairwise) const {
230 return PrevTTI->getReductionCost(Opcode, Ty, IsPairwise);
231}
232
Chandler Carruth539edf42013-01-05 11:43:11 +0000233namespace {
234
Craig Topper77dfe452014-03-02 08:08:51 +0000235struct NoTTI final : ImmutablePass, TargetTransformInfo {
Chandler Carruth511aa762013-01-21 01:27:39 +0000236 const DataLayout *DL;
237
Craig Topper9f008862014-04-15 04:59:12 +0000238 NoTTI() : ImmutablePass(ID), DL(nullptr) {
Chandler Carruth539edf42013-01-05 11:43:11 +0000239 initializeNoTTIPass(*PassRegistry::getPassRegistry());
240 }
241
Craig Topper73156022014-03-02 09:09:27 +0000242 virtual void initializePass() override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000243 // Note that this subclass is special, and must *not* call initializeTTI as
244 // it does not chain.
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000245 TopTTI = this;
Craig Topper9f008862014-04-15 04:59:12 +0000246 PrevTTI = nullptr;
Rafael Espindola93512512014-02-25 17:30:31 +0000247 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
Craig Topper9f008862014-04-15 04:59:12 +0000248 DL = DLP ? &DLP->getDataLayout() : nullptr;
Chandler Carruth664e3542013-01-07 01:37:14 +0000249 }
250
Craig Topper73156022014-03-02 09:09:27 +0000251 virtual void getAnalysisUsage(AnalysisUsage &AU) const override {
Chandler Carruth539edf42013-01-05 11:43:11 +0000252 // Note that this subclass is special, and must *not* call
253 // TTI::getAnalysisUsage as it breaks the recursion.
254 }
255
256 /// Pass identification.
257 static char ID;
258
259 /// Provide necessary pointer adjustments for the two base classes.
Craig Topper73156022014-03-02 09:09:27 +0000260 virtual void *getAdjustedAnalysisPointer(const void *ID) override {
Chandler Carruth539edf42013-01-05 11:43:11 +0000261 if (ID == &TargetTransformInfo::ID)
262 return (TargetTransformInfo*)this;
263 return this;
264 }
265
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000266 unsigned getOperationCost(unsigned Opcode, Type *Ty,
Craig Topper73156022014-03-02 09:09:27 +0000267 Type *OpTy) const override {
Chandler Carruth511aa762013-01-21 01:27:39 +0000268 switch (Opcode) {
269 default:
270 // By default, just classify everything as 'basic'.
271 return TCC_Basic;
272
273 case Instruction::GetElementPtr:
274 llvm_unreachable("Use getGEPCost for GEP operations!");
275
276 case Instruction::BitCast:
277 assert(OpTy && "Cast instructions must provide the operand type");
278 if (Ty == OpTy || (Ty->isPointerTy() && OpTy->isPointerTy()))
279 // Identity and pointer-to-pointer casts are free.
280 return TCC_Free;
281
282 // Otherwise, the default basic cost is used.
283 return TCC_Basic;
284
Matt Arsenault54c3cbc2013-08-28 22:41:57 +0000285 case Instruction::IntToPtr: {
286 if (!DL)
287 return TCC_Basic;
288
Chandler Carruth511aa762013-01-21 01:27:39 +0000289 // An inttoptr cast is free so long as the input is a legal integer type
290 // which doesn't contain values outside the range of a pointer.
Matt Arsenault54c3cbc2013-08-28 22:41:57 +0000291 unsigned OpSize = OpTy->getScalarSizeInBits();
292 if (DL->isLegalInteger(OpSize) &&
293 OpSize <= DL->getPointerTypeSizeInBits(Ty))
Chandler Carruth511aa762013-01-21 01:27:39 +0000294 return TCC_Free;
295
296 // Otherwise it's not a no-op.
297 return TCC_Basic;
Matt Arsenault54c3cbc2013-08-28 22:41:57 +0000298 }
299 case Instruction::PtrToInt: {
300 if (!DL)
301 return TCC_Basic;
Chandler Carruth511aa762013-01-21 01:27:39 +0000302
Chandler Carruth511aa762013-01-21 01:27:39 +0000303 // A ptrtoint cast is free so long as the result is large enough to store
304 // the pointer, and a legal integer type.
Matt Arsenault54c3cbc2013-08-28 22:41:57 +0000305 unsigned DestSize = Ty->getScalarSizeInBits();
306 if (DL->isLegalInteger(DestSize) &&
307 DestSize >= DL->getPointerTypeSizeInBits(OpTy))
Chandler Carruth511aa762013-01-21 01:27:39 +0000308 return TCC_Free;
309
310 // Otherwise it's not a no-op.
311 return TCC_Basic;
Matt Arsenault54c3cbc2013-08-28 22:41:57 +0000312 }
Chandler Carruth511aa762013-01-21 01:27:39 +0000313 case Instruction::Trunc:
314 // trunc to a native type is free (assuming the target has compare and
315 // shift-right of the same width).
316 if (DL && DL->isLegalInteger(DL->getTypeSizeInBits(Ty)))
317 return TCC_Free;
318
319 return TCC_Basic;
320 }
321 }
322
323 unsigned getGEPCost(const Value *Ptr,
Craig Topper73156022014-03-02 09:09:27 +0000324 ArrayRef<const Value *> Operands) const override {
Chandler Carruth511aa762013-01-21 01:27:39 +0000325 // In the basic model, we just assume that all-constant GEPs will be folded
326 // into their uses via addressing modes.
327 for (unsigned Idx = 0, Size = Operands.size(); Idx != Size; ++Idx)
328 if (!isa<Constant>(Operands[Idx]))
329 return TCC_Basic;
330
331 return TCC_Free;
332 }
333
Craig Topper73156022014-03-02 09:09:27 +0000334 unsigned getCallCost(FunctionType *FTy, int NumArgs = -1) const override
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000335 {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000336 assert(FTy && "FunctionType must be provided to this routine.");
337
338 // The target-independent implementation just measures the size of the
339 // function by approximating that each argument will take on average one
340 // instruction to prepare.
341
342 if (NumArgs < 0)
343 // Set the argument number to the number of explicit arguments in the
344 // function.
345 NumArgs = FTy->getNumParams();
346
347 return TCC_Basic * (NumArgs + 1);
348 }
349
Craig Topper73156022014-03-02 09:09:27 +0000350 unsigned getCallCost(const Function *F, int NumArgs = -1) const override
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000351 {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000352 assert(F && "A concrete function must be provided to this routine.");
353
354 if (NumArgs < 0)
355 // Set the argument number to the number of explicit arguments in the
356 // function.
357 NumArgs = F->arg_size();
358
359 if (Intrinsic::ID IID = (Intrinsic::ID)F->getIntrinsicID()) {
360 FunctionType *FTy = F->getFunctionType();
361 SmallVector<Type *, 8> ParamTys(FTy->param_begin(), FTy->param_end());
362 return TopTTI->getIntrinsicCost(IID, FTy->getReturnType(), ParamTys);
363 }
364
365 if (!TopTTI->isLoweredToCall(F))
366 return TCC_Basic; // Give a basic cost if it will be lowered directly.
367
368 return TopTTI->getCallCost(F->getFunctionType(), NumArgs);
369 }
370
371 unsigned getCallCost(const Function *F,
Craig Topper73156022014-03-02 09:09:27 +0000372 ArrayRef<const Value *> Arguments) const override {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000373 // Simply delegate to generic handling of the call.
374 // FIXME: We should use instsimplify or something else to catch calls which
375 // will constant fold with these arguments.
376 return TopTTI->getCallCost(F, Arguments.size());
377 }
378
379 unsigned getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
Craig Topper73156022014-03-02 09:09:27 +0000380 ArrayRef<Type *> ParamTys) const override {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000381 switch (IID) {
382 default:
383 // Intrinsics rarely (if ever) have normal argument setup constraints.
384 // Model them as having a basic instruction cost.
385 // FIXME: This is wrong for libc intrinsics.
386 return TCC_Basic;
387
Hal Finkel93046912014-07-25 21:13:35 +0000388 case Intrinsic::assume:
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000389 case Intrinsic::dbg_declare:
390 case Intrinsic::dbg_value:
391 case Intrinsic::invariant_start:
392 case Intrinsic::invariant_end:
393 case Intrinsic::lifetime_start:
394 case Intrinsic::lifetime_end:
395 case Intrinsic::objectsize:
396 case Intrinsic::ptr_annotation:
397 case Intrinsic::var_annotation:
398 // These intrinsics don't actually represent code after lowering.
399 return TCC_Free;
400 }
401 }
402
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000403 unsigned
404 getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
Craig Topper73156022014-03-02 09:09:27 +0000405 ArrayRef<const Value *> Arguments) const override {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000406 // Delegate to the generic intrinsic handling code. This mostly provides an
407 // opportunity for targets to (for example) special case the cost of
408 // certain intrinsics based on constants used as arguments.
409 SmallVector<Type *, 8> ParamTys;
410 ParamTys.reserve(Arguments.size());
411 for (unsigned Idx = 0, Size = Arguments.size(); Idx != Size; ++Idx)
412 ParamTys.push_back(Arguments[Idx]->getType());
413 return TopTTI->getIntrinsicCost(IID, RetTy, ParamTys);
414 }
415
Craig Topper73156022014-03-02 09:09:27 +0000416 unsigned getUserCost(const User *U) const override {
Chandler Carruthbb9caa92013-01-21 13:04:33 +0000417 if (isa<PHINode>(U))
418 return TCC_Free; // Model all PHI nodes as free.
419
Hal Finkelb4e001c2014-04-01 18:50:06 +0000420 if (const GEPOperator *GEP = dyn_cast<GEPOperator>(U)) {
421 SmallVector<const Value *, 4> Indices(GEP->idx_begin(), GEP->idx_end());
422 return TopTTI->getGEPCost(GEP->getPointerOperand(), Indices);
423 }
Chandler Carruth511aa762013-01-21 01:27:39 +0000424
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000425 if (ImmutableCallSite CS = U) {
426 const Function *F = CS.getCalledFunction();
427 if (!F) {
428 // Just use the called value type.
429 Type *FTy = CS.getCalledValue()->getType()->getPointerElementType();
430 return TopTTI->getCallCost(cast<FunctionType>(FTy), CS.arg_size());
Chandler Carruth511aa762013-01-21 01:27:39 +0000431 }
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000432
Benjamin Kramer3c29c072014-02-10 14:17:42 +0000433 SmallVector<const Value *, 8> Arguments(CS.arg_begin(), CS.arg_end());
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000434 return TopTTI->getCallCost(F, Arguments);
Chandler Carruth511aa762013-01-21 01:27:39 +0000435 }
436
437 if (const CastInst *CI = dyn_cast<CastInst>(U)) {
438 // Result of a cmp instruction is often extended (to be used by other
439 // cmp instructions, logical or return instructions). These are usually
440 // nop on most sane targets.
441 if (isa<CmpInst>(CI->getOperand(0)))
442 return TCC_Free;
443 }
444
445 // Otherwise delegate to the fully generic implementations.
446 return getOperationCost(Operator::getOpcode(U), U->getType(),
447 U->getNumOperands() == 1 ?
Craig Topper9f008862014-04-15 04:59:12 +0000448 U->getOperand(0)->getType() : nullptr);
Chandler Carruth511aa762013-01-21 01:27:39 +0000449 }
Chandler Carruth539edf42013-01-05 11:43:11 +0000450
Craig Topper73156022014-03-02 09:09:27 +0000451 bool hasBranchDivergence() const override { return false; }
Tom Stellard8b1e0212013-07-27 00:01:07 +0000452
Craig Topper73156022014-03-02 09:09:27 +0000453 bool isLoweredToCall(const Function *F) const override {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000454 // FIXME: These should almost certainly not be handled here, and instead
455 // handled with the help of TLI or the target itself. This was largely
456 // ported from existing analysis heuristics here so that such refactorings
457 // can take place in the future.
458
459 if (F->isIntrinsic())
460 return false;
461
462 if (F->hasLocalLinkage() || !F->hasName())
463 return true;
464
465 StringRef Name = F->getName();
466
467 // These will all likely lower to a single selection DAG node.
468 if (Name == "copysign" || Name == "copysignf" || Name == "copysignl" ||
469 Name == "fabs" || Name == "fabsf" || Name == "fabsl" || Name == "sin" ||
470 Name == "sinf" || Name == "sinl" || Name == "cos" || Name == "cosf" ||
471 Name == "cosl" || Name == "sqrt" || Name == "sqrtf" || Name == "sqrtl")
472 return false;
473
474 // These are all likely to be optimized into something smaller.
475 if (Name == "pow" || Name == "powf" || Name == "powl" || Name == "exp2" ||
476 Name == "exp2l" || Name == "exp2f" || Name == "floor" || Name ==
477 "floorf" || Name == "ceil" || Name == "round" || Name == "ffs" ||
478 Name == "ffsl" || Name == "abs" || Name == "labs" || Name == "llabs")
479 return false;
480
481 return true;
482 }
483
Craig Topper73156022014-03-02 09:09:27 +0000484 void getUnrollingPreferences(Loop *, UnrollingPreferences &) const override {
485 }
Hal Finkel8f2e7002013-09-11 19:25:43 +0000486
Craig Topper73156022014-03-02 09:09:27 +0000487 bool isLegalAddImmediate(int64_t Imm) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000488 return false;
Chandler Carruth539edf42013-01-05 11:43:11 +0000489 }
490
Craig Topper73156022014-03-02 09:09:27 +0000491 bool isLegalICmpImmediate(int64_t Imm) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000492 return false;
Chandler Carruth539edf42013-01-05 11:43:11 +0000493 }
494
495 bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
Craig Topper73156022014-03-02 09:09:27 +0000496 bool HasBaseReg, int64_t Scale) const override
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000497 {
Chandler Carruth26c59fa2013-01-07 14:41:08 +0000498 // Guess that reg+reg addressing is allowed. This heuristic is taken from
499 // the implementation of LSR.
500 return !BaseGV && BaseOffset == 0 && Scale <= 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000501 }
502
Quentin Colombetbf490d42013-05-31 21:29:03 +0000503 int getScalingFactorCost(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
Craig Topper73156022014-03-02 09:09:27 +0000504 bool HasBaseReg, int64_t Scale) const override {
Quentin Colombetbf490d42013-05-31 21:29:03 +0000505 // Guess that all legal addressing mode are free.
506 if(isLegalAddressingMode(Ty, BaseGV, BaseOffset, HasBaseReg, Scale))
507 return 0;
508 return -1;
509 }
510
Craig Topper73156022014-03-02 09:09:27 +0000511 bool isTruncateFree(Type *Ty1, Type *Ty2) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000512 return false;
Chandler Carruth539edf42013-01-05 11:43:11 +0000513 }
514
Craig Topper73156022014-03-02 09:09:27 +0000515 bool isTypeLegal(Type *Ty) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000516 return false;
Chandler Carruth539edf42013-01-05 11:43:11 +0000517 }
518
Craig Topper73156022014-03-02 09:09:27 +0000519 unsigned getJumpBufAlignment() const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000520 return 0;
Chandler Carruth539edf42013-01-05 11:43:11 +0000521 }
522
Craig Topper73156022014-03-02 09:09:27 +0000523 unsigned getJumpBufSize() const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000524 return 0;
Chandler Carruth539edf42013-01-05 11:43:11 +0000525 }
526
Craig Topper73156022014-03-02 09:09:27 +0000527 bool shouldBuildLookupTables() const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000528 return true;
Chandler Carruth539edf42013-01-05 11:43:11 +0000529 }
530
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000531 PopcntSupportKind
Craig Topper73156022014-03-02 09:09:27 +0000532 getPopcntSupport(unsigned IntTyWidthInBit) const override {
Chandler Carruth50a36cd2013-01-07 03:16:03 +0000533 return PSK_Software;
Chandler Carruth539edf42013-01-05 11:43:11 +0000534 }
535
Craig Topper73156022014-03-02 09:09:27 +0000536 bool haveFastSqrt(Type *Ty) const override {
Richard Sandiford37cd6cf2013-08-23 10:27:02 +0000537 return false;
538 }
539
Craig Topper73156022014-03-02 09:09:27 +0000540 unsigned getIntImmCost(const APInt &Imm, Type *Ty) const override {
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000541 return TCC_Basic;
542 }
543
Juergen Ributzkaf0dff492014-03-21 06:04:45 +0000544 unsigned getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm,
Craig Topper73156022014-03-02 09:09:27 +0000545 Type *Ty) const override {
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000546 return TCC_Free;
547 }
548
Juergen Ributzkaf0dff492014-03-21 06:04:45 +0000549 unsigned getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
Craig Topper73156022014-03-02 09:09:27 +0000550 Type *Ty) const override {
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000551 return TCC_Free;
Chandler Carruth539edf42013-01-05 11:43:11 +0000552 }
553
Craig Topper73156022014-03-02 09:09:27 +0000554 unsigned getNumberOfRegisters(bool Vector) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000555 return 8;
Chandler Carruth539edf42013-01-05 11:43:11 +0000556 }
557
Craig Topper73156022014-03-02 09:09:27 +0000558 unsigned getRegisterBitWidth(bool Vector) const override {
Nadav Rotemb1791a72013-01-09 22:29:00 +0000559 return 32;
560 }
561
Craig Topper73156022014-03-02 09:09:27 +0000562 unsigned getMaximumUnrollFactor() const override {
Nadav Rotemb696c362013-01-09 01:15:42 +0000563 return 1;
564 }
565
Arnold Schwaighoferb9773872013-04-04 23:26:21 +0000566 unsigned getArithmeticInstrCost(unsigned Opcode, Type *Ty, OperandValueKind,
Craig Topper73156022014-03-02 09:09:27 +0000567 OperandValueKind) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000568 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000569 }
570
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000571 unsigned getShuffleCost(ShuffleKind Kind, Type *Ty,
Craig Topper9f008862014-04-15 04:59:12 +0000572 int Index = 0, Type *SubTp = nullptr) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000573 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000574 }
575
576 unsigned getCastInstrCost(unsigned Opcode, Type *Dst,
Craig Topper73156022014-03-02 09:09:27 +0000577 Type *Src) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000578 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000579 }
580
Craig Topper73156022014-03-02 09:09:27 +0000581 unsigned getCFInstrCost(unsigned Opcode) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000582 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000583 }
584
585 unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
Craig Topper9f008862014-04-15 04:59:12 +0000586 Type *CondTy = nullptr) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000587 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000588 }
589
590 unsigned getVectorInstrCost(unsigned Opcode, Type *Val,
Craig Topper73156022014-03-02 09:09:27 +0000591 unsigned Index = -1) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000592 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000593 }
594
Craig Topper73156022014-03-02 09:09:27 +0000595 unsigned getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
596 unsigned AddressSpace) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000597 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000598 }
599
Craig Topper73156022014-03-02 09:09:27 +0000600 unsigned getIntrinsicInstrCost(Intrinsic::ID ID, Type *RetTy,
601 ArrayRef<Type*> Tys) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000602 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000603 }
604
Craig Topper73156022014-03-02 09:09:27 +0000605 unsigned getNumberOfParts(Type *Tp) const override {
Chandler Carruth664e3542013-01-07 01:37:14 +0000606 return 0;
Chandler Carruth539edf42013-01-05 11:43:11 +0000607 }
Arnold Schwaighofer594fa2d2013-02-08 14:50:48 +0000608
Craig Topper73156022014-03-02 09:09:27 +0000609 unsigned getAddressComputationCost(Type *Tp, bool) const override {
Arnold Schwaighofer594fa2d2013-02-08 14:50:48 +0000610 return 0;
611 }
Arnold Schwaighofercae87352013-09-17 18:06:50 +0000612
Craig Topper73156022014-03-02 09:09:27 +0000613 unsigned getReductionCost(unsigned, Type *, bool) const override {
Arnold Schwaighofercae87352013-09-17 18:06:50 +0000614 return 1;
615 }
Chandler Carruth539edf42013-01-05 11:43:11 +0000616};
617
618} // end anonymous namespace
619
Chandler Carruth664e3542013-01-07 01:37:14 +0000620INITIALIZE_AG_PASS(NoTTI, TargetTransformInfo, "notti",
Chandler Carruth539edf42013-01-05 11:43:11 +0000621 "No target information", true, true, true)
622char NoTTI::ID = 0;
623
Chandler Carruth664e3542013-01-07 01:37:14 +0000624ImmutablePass *llvm::createNoTargetTransformInfoPass() {
625 return new NoTTI();
Chandler Carruth539edf42013-01-05 11:43:11 +0000626}