blob: 0353295345ced0cd0c4d1582cb1c67da940a370e [file] [log] [blame]
Chandler Carruthbe049292013-01-07 03:08:10 +00001//===- llvm/Analysis/TargetTransformInfo.cpp ------------------------------===//
Nadav Rotemcbd9a192012-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 Carruthaeef83c2013-01-07 01:37:14 +000010#define DEBUG_TYPE "tti"
Chandler Carruthbe049292013-01-07 03:08:10 +000011#include "llvm/Analysis/TargetTransformInfo.h"
Chandler Carruth1e05bd92013-01-21 01:27:39 +000012#include "llvm/IR/DataLayout.h"
13#include "llvm/IR/Operator.h"
14#include "llvm/IR/Instruction.h"
15#include "llvm/IR/IntrinsicInst.h"
16#include "llvm/IR/Instructions.h"
Chandler Carruth13086a62013-01-22 11:26:02 +000017#include "llvm/Support/CallSite.h"
Nadav Rotemcbd9a192012-10-18 23:22:48 +000018#include "llvm/Support/ErrorHandling.h"
19
20using namespace llvm;
21
Chandler Carruth7bdf6b02013-01-05 11:43:11 +000022// Setup the analysis group to manage the TargetTransformInfo passes.
23INITIALIZE_ANALYSIS_GROUP(TargetTransformInfo, "Target Information", NoTTI)
Nadav Rotemcbd9a192012-10-18 23:22:48 +000024char TargetTransformInfo::ID = 0;
25
Chandler Carruth7bdf6b02013-01-05 11:43:11 +000026TargetTransformInfo::~TargetTransformInfo() {
27}
28
Chandler Carruthaeef83c2013-01-07 01:37:14 +000029void TargetTransformInfo::pushTTIStack(Pass *P) {
30 TopTTI = this;
31 PrevTTI = &P->getAnalysis<TargetTransformInfo>();
32
33 // Walk up the chain and update the top TTI pointer.
34 for (TargetTransformInfo *PTTI = PrevTTI; PTTI; PTTI = PTTI->PrevTTI)
35 PTTI->TopTTI = this;
36}
37
38void TargetTransformInfo::popTTIStack() {
39 TopTTI = 0;
40
41 // Walk up the chain and update the top TTI pointer.
42 for (TargetTransformInfo *PTTI = PrevTTI; PTTI; PTTI = PTTI->PrevTTI)
43 PTTI->TopTTI = PrevTTI;
44
45 PrevTTI = 0;
46}
47
Chandler Carruth7bdf6b02013-01-05 11:43:11 +000048void TargetTransformInfo::getAnalysisUsage(AnalysisUsage &AU) const {
49 AU.addRequired<TargetTransformInfo>();
50}
51
Chandler Carruth1e05bd92013-01-21 01:27:39 +000052unsigned TargetTransformInfo::getOperationCost(unsigned Opcode, Type *Ty,
53 Type *OpTy) const {
54 return PrevTTI->getOperationCost(Opcode, Ty, OpTy);
55}
56
57unsigned TargetTransformInfo::getGEPCost(
58 const Value *Ptr, ArrayRef<const Value *> Operands) const {
59 return PrevTTI->getGEPCost(Ptr, Operands);
60}
61
Chandler Carruth13086a62013-01-22 11:26:02 +000062unsigned TargetTransformInfo::getCallCost(FunctionType *FTy,
63 int NumArgs) const {
64 return PrevTTI->getCallCost(FTy, NumArgs);
65}
66
67unsigned TargetTransformInfo::getCallCost(const Function *F,
68 int NumArgs) const {
69 return PrevTTI->getCallCost(F, NumArgs);
70}
71
72unsigned TargetTransformInfo::getCallCost(
73 const Function *F, ArrayRef<const Value *> Arguments) const {
74 return PrevTTI->getCallCost(F, Arguments);
75}
76
77unsigned TargetTransformInfo::getIntrinsicCost(
78 Intrinsic::ID IID, Type *RetTy, ArrayRef<Type *> ParamTys) const {
79 return PrevTTI->getIntrinsicCost(IID, RetTy, ParamTys);
80}
81
82unsigned TargetTransformInfo::getIntrinsicCost(
83 Intrinsic::ID IID, Type *RetTy, ArrayRef<const Value *> Arguments) const {
84 return PrevTTI->getIntrinsicCost(IID, RetTy, Arguments);
85}
86
Chandler Carruth1e05bd92013-01-21 01:27:39 +000087unsigned TargetTransformInfo::getUserCost(const User *U) const {
88 return PrevTTI->getUserCost(U);
89}
90
Tom Stellard57e6b2d2013-07-27 00:01:07 +000091bool TargetTransformInfo::hasBranchDivergence() const {
92 return PrevTTI->hasBranchDivergence();
93}
94
Chandler Carruth13086a62013-01-22 11:26:02 +000095bool TargetTransformInfo::isLoweredToCall(const Function *F) const {
96 return PrevTTI->isLoweredToCall(F);
97}
98
Hal Finkel4f7e2c32013-09-11 19:25:43 +000099void TargetTransformInfo::getUnrollingPreferences(Loop *L,
100 UnrollingPreferences &UP) const {
101 PrevTTI->getUnrollingPreferences(L, UP);
102}
103
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000104bool TargetTransformInfo::isLegalAddImmediate(int64_t Imm) const {
105 return PrevTTI->isLegalAddImmediate(Imm);
106}
107
108bool TargetTransformInfo::isLegalICmpImmediate(int64_t Imm) const {
109 return PrevTTI->isLegalICmpImmediate(Imm);
110}
111
112bool TargetTransformInfo::isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV,
113 int64_t BaseOffset,
114 bool HasBaseReg,
115 int64_t Scale) const {
116 return PrevTTI->isLegalAddressingMode(Ty, BaseGV, BaseOffset, HasBaseReg,
117 Scale);
118}
119
Quentin Colombet06f5ebc2013-05-31 21:29:03 +0000120int TargetTransformInfo::getScalingFactorCost(Type *Ty, GlobalValue *BaseGV,
121 int64_t BaseOffset,
122 bool HasBaseReg,
123 int64_t Scale) const {
124 return PrevTTI->getScalingFactorCost(Ty, BaseGV, BaseOffset, HasBaseReg,
125 Scale);
126}
127
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000128bool TargetTransformInfo::isTruncateFree(Type *Ty1, Type *Ty2) const {
129 return PrevTTI->isTruncateFree(Ty1, Ty2);
130}
131
132bool TargetTransformInfo::isTypeLegal(Type *Ty) const {
133 return PrevTTI->isTypeLegal(Ty);
134}
135
136unsigned TargetTransformInfo::getJumpBufAlignment() const {
137 return PrevTTI->getJumpBufAlignment();
138}
139
140unsigned TargetTransformInfo::getJumpBufSize() const {
141 return PrevTTI->getJumpBufSize();
142}
143
144bool TargetTransformInfo::shouldBuildLookupTables() const {
145 return PrevTTI->shouldBuildLookupTables();
146}
147
Chandler Carruthd1b8ef92013-01-07 03:16:03 +0000148TargetTransformInfo::PopcntSupportKind
149TargetTransformInfo::getPopcntSupport(unsigned IntTyWidthInBit) const {
150 return PrevTTI->getPopcntSupport(IntTyWidthInBit);
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000151}
152
Richard Sandiforda8a70992013-08-23 10:27:02 +0000153bool TargetTransformInfo::haveFastSqrt(Type *Ty) const {
154 return PrevTTI->haveFastSqrt(Ty);
155}
156
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000157unsigned TargetTransformInfo::getIntImmCost(const APInt &Imm, Type *Ty) const {
158 return PrevTTI->getIntImmCost(Imm, Ty);
159}
160
161unsigned TargetTransformInfo::getNumberOfRegisters(bool Vector) const {
162 return PrevTTI->getNumberOfRegisters(Vector);
163}
164
Nadav Rotem14925e62013-01-09 22:29:00 +0000165unsigned TargetTransformInfo::getRegisterBitWidth(bool Vector) const {
166 return PrevTTI->getRegisterBitWidth(Vector);
167}
168
Nadav Rotem83be7b02013-01-09 01:15:42 +0000169unsigned TargetTransformInfo::getMaximumUnrollFactor() const {
170 return PrevTTI->getMaximumUnrollFactor();
171}
172
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000173unsigned TargetTransformInfo::getArithmeticInstrCost(unsigned Opcode,
Arnold Schwaighofer6bf4f672013-04-04 23:26:21 +0000174 Type *Ty,
175 OperandValueKind Op1Info,
176 OperandValueKind Op2Info) const {
177 return PrevTTI->getArithmeticInstrCost(Opcode, Ty, Op1Info, Op2Info);
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000178}
179
180unsigned TargetTransformInfo::getShuffleCost(ShuffleKind Kind, Type *Tp,
181 int Index, Type *SubTp) const {
182 return PrevTTI->getShuffleCost(Kind, Tp, Index, SubTp);
183}
184
185unsigned TargetTransformInfo::getCastInstrCost(unsigned Opcode, Type *Dst,
186 Type *Src) const {
187 return PrevTTI->getCastInstrCost(Opcode, Dst, Src);
188}
189
190unsigned TargetTransformInfo::getCFInstrCost(unsigned Opcode) const {
191 return PrevTTI->getCFInstrCost(Opcode);
192}
193
194unsigned TargetTransformInfo::getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
195 Type *CondTy) const {
196 return PrevTTI->getCmpSelInstrCost(Opcode, ValTy, CondTy);
197}
198
199unsigned TargetTransformInfo::getVectorInstrCost(unsigned Opcode, Type *Val,
200 unsigned Index) const {
201 return PrevTTI->getVectorInstrCost(Opcode, Val, Index);
202}
203
204unsigned TargetTransformInfo::getMemoryOpCost(unsigned Opcode, Type *Src,
205 unsigned Alignment,
206 unsigned AddressSpace) const {
207 return PrevTTI->getMemoryOpCost(Opcode, Src, Alignment, AddressSpace);
208 ;
209}
210
211unsigned
212TargetTransformInfo::getIntrinsicInstrCost(Intrinsic::ID ID,
213 Type *RetTy,
214 ArrayRef<Type *> Tys) const {
215 return PrevTTI->getIntrinsicInstrCost(ID, RetTy, Tys);
216}
217
218unsigned TargetTransformInfo::getNumberOfParts(Type *Tp) const {
219 return PrevTTI->getNumberOfParts(Tp);
220}
221
Arnold Schwaighoferc0a11ed2013-07-12 19:16:02 +0000222unsigned TargetTransformInfo::getAddressComputationCost(Type *Tp,
223 bool IsComplex) const {
224 return PrevTTI->getAddressComputationCost(Tp, IsComplex);
Arnold Schwaighoferfb55a8f2013-02-08 14:50:48 +0000225}
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000226
Arnold Schwaighofer65457b62013-09-17 18:06:50 +0000227unsigned TargetTransformInfo::getReductionCost(unsigned Opcode, Type *Ty,
228 bool IsPairwise) const {
229 return PrevTTI->getReductionCost(Opcode, Ty, IsPairwise);
230}
231
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000232namespace {
233
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000234struct NoTTI : ImmutablePass, TargetTransformInfo {
Chandler Carruth1e05bd92013-01-21 01:27:39 +0000235 const DataLayout *DL;
236
237 NoTTI() : ImmutablePass(ID), DL(0) {
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000238 initializeNoTTIPass(*PassRegistry::getPassRegistry());
239 }
240
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000241 virtual void initializePass() {
242 // Note that this subclass is special, and must *not* call initializeTTI as
243 // it does not chain.
Chandler Carruth13086a62013-01-22 11:26:02 +0000244 TopTTI = this;
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000245 PrevTTI = 0;
Chandler Carruth1e05bd92013-01-21 01:27:39 +0000246 DL = getAnalysisIfAvailable<DataLayout>();
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000247 }
248
249 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000250 // Note that this subclass is special, and must *not* call
251 // TTI::getAnalysisUsage as it breaks the recursion.
252 }
253
254 /// Pass identification.
255 static char ID;
256
257 /// Provide necessary pointer adjustments for the two base classes.
258 virtual void *getAdjustedAnalysisPointer(const void *ID) {
259 if (ID == &TargetTransformInfo::ID)
260 return (TargetTransformInfo*)this;
261 return this;
262 }
263
Chandler Carruth1e05bd92013-01-21 01:27:39 +0000264 unsigned getOperationCost(unsigned Opcode, Type *Ty, Type *OpTy) const {
265 switch (Opcode) {
266 default:
267 // By default, just classify everything as 'basic'.
268 return TCC_Basic;
269
270 case Instruction::GetElementPtr:
271 llvm_unreachable("Use getGEPCost for GEP operations!");
272
273 case Instruction::BitCast:
274 assert(OpTy && "Cast instructions must provide the operand type");
275 if (Ty == OpTy || (Ty->isPointerTy() && OpTy->isPointerTy()))
276 // Identity and pointer-to-pointer casts are free.
277 return TCC_Free;
278
279 // Otherwise, the default basic cost is used.
280 return TCC_Basic;
281
Matt Arsenaultf9355c82013-08-28 22:41:57 +0000282 case Instruction::IntToPtr: {
283 if (!DL)
284 return TCC_Basic;
285
Chandler Carruth1e05bd92013-01-21 01:27:39 +0000286 // An inttoptr cast is free so long as the input is a legal integer type
287 // which doesn't contain values outside the range of a pointer.
Matt Arsenaultf9355c82013-08-28 22:41:57 +0000288 unsigned OpSize = OpTy->getScalarSizeInBits();
289 if (DL->isLegalInteger(OpSize) &&
290 OpSize <= DL->getPointerTypeSizeInBits(Ty))
Chandler Carruth1e05bd92013-01-21 01:27:39 +0000291 return TCC_Free;
292
293 // Otherwise it's not a no-op.
294 return TCC_Basic;
Matt Arsenaultf9355c82013-08-28 22:41:57 +0000295 }
296 case Instruction::PtrToInt: {
297 if (!DL)
298 return TCC_Basic;
Chandler Carruth1e05bd92013-01-21 01:27:39 +0000299
Chandler Carruth1e05bd92013-01-21 01:27:39 +0000300 // A ptrtoint cast is free so long as the result is large enough to store
301 // the pointer, and a legal integer type.
Matt Arsenaultf9355c82013-08-28 22:41:57 +0000302 unsigned DestSize = Ty->getScalarSizeInBits();
303 if (DL->isLegalInteger(DestSize) &&
304 DestSize >= DL->getPointerTypeSizeInBits(OpTy))
Chandler Carruth1e05bd92013-01-21 01:27:39 +0000305 return TCC_Free;
306
307 // Otherwise it's not a no-op.
308 return TCC_Basic;
Matt Arsenaultf9355c82013-08-28 22:41:57 +0000309 }
Chandler Carruth1e05bd92013-01-21 01:27:39 +0000310 case Instruction::Trunc:
311 // trunc to a native type is free (assuming the target has compare and
312 // shift-right of the same width).
313 if (DL && DL->isLegalInteger(DL->getTypeSizeInBits(Ty)))
314 return TCC_Free;
315
316 return TCC_Basic;
317 }
318 }
319
320 unsigned getGEPCost(const Value *Ptr,
321 ArrayRef<const Value *> Operands) const {
322 // In the basic model, we just assume that all-constant GEPs will be folded
323 // into their uses via addressing modes.
324 for (unsigned Idx = 0, Size = Operands.size(); Idx != Size; ++Idx)
325 if (!isa<Constant>(Operands[Idx]))
326 return TCC_Basic;
327
328 return TCC_Free;
329 }
330
Chandler Carruth13086a62013-01-22 11:26:02 +0000331 unsigned getCallCost(FunctionType *FTy, int NumArgs = -1) const {
332 assert(FTy && "FunctionType must be provided to this routine.");
333
334 // The target-independent implementation just measures the size of the
335 // function by approximating that each argument will take on average one
336 // instruction to prepare.
337
338 if (NumArgs < 0)
339 // Set the argument number to the number of explicit arguments in the
340 // function.
341 NumArgs = FTy->getNumParams();
342
343 return TCC_Basic * (NumArgs + 1);
344 }
345
346 unsigned getCallCost(const Function *F, int NumArgs = -1) const {
347 assert(F && "A concrete function must be provided to this routine.");
348
349 if (NumArgs < 0)
350 // Set the argument number to the number of explicit arguments in the
351 // function.
352 NumArgs = F->arg_size();
353
354 if (Intrinsic::ID IID = (Intrinsic::ID)F->getIntrinsicID()) {
355 FunctionType *FTy = F->getFunctionType();
356 SmallVector<Type *, 8> ParamTys(FTy->param_begin(), FTy->param_end());
357 return TopTTI->getIntrinsicCost(IID, FTy->getReturnType(), ParamTys);
358 }
359
360 if (!TopTTI->isLoweredToCall(F))
361 return TCC_Basic; // Give a basic cost if it will be lowered directly.
362
363 return TopTTI->getCallCost(F->getFunctionType(), NumArgs);
364 }
365
366 unsigned getCallCost(const Function *F,
367 ArrayRef<const Value *> Arguments) const {
368 // Simply delegate to generic handling of the call.
369 // FIXME: We should use instsimplify or something else to catch calls which
370 // will constant fold with these arguments.
371 return TopTTI->getCallCost(F, Arguments.size());
372 }
373
374 unsigned getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
375 ArrayRef<Type *> ParamTys) const {
376 switch (IID) {
377 default:
378 // Intrinsics rarely (if ever) have normal argument setup constraints.
379 // Model them as having a basic instruction cost.
380 // FIXME: This is wrong for libc intrinsics.
381 return TCC_Basic;
382
383 case Intrinsic::dbg_declare:
384 case Intrinsic::dbg_value:
385 case Intrinsic::invariant_start:
386 case Intrinsic::invariant_end:
387 case Intrinsic::lifetime_start:
388 case Intrinsic::lifetime_end:
389 case Intrinsic::objectsize:
390 case Intrinsic::ptr_annotation:
391 case Intrinsic::var_annotation:
392 // These intrinsics don't actually represent code after lowering.
393 return TCC_Free;
394 }
395 }
396
397 unsigned getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
398 ArrayRef<const Value *> Arguments) const {
399 // Delegate to the generic intrinsic handling code. This mostly provides an
400 // opportunity for targets to (for example) special case the cost of
401 // certain intrinsics based on constants used as arguments.
402 SmallVector<Type *, 8> ParamTys;
403 ParamTys.reserve(Arguments.size());
404 for (unsigned Idx = 0, Size = Arguments.size(); Idx != Size; ++Idx)
405 ParamTys.push_back(Arguments[Idx]->getType());
406 return TopTTI->getIntrinsicCost(IID, RetTy, ParamTys);
407 }
408
Chandler Carruth1e05bd92013-01-21 01:27:39 +0000409 unsigned getUserCost(const User *U) const {
Chandler Carrutha5157e62013-01-21 13:04:33 +0000410 if (isa<PHINode>(U))
411 return TCC_Free; // Model all PHI nodes as free.
412
Chandler Carruth1e05bd92013-01-21 01:27:39 +0000413 if (const GEPOperator *GEP = dyn_cast<GEPOperator>(U))
414 // In the basic model we just assume that all-constant GEPs will be
415 // folded into their uses via addressing modes.
416 return GEP->hasAllConstantIndices() ? TCC_Free : TCC_Basic;
417
Chandler Carruth13086a62013-01-22 11:26:02 +0000418 if (ImmutableCallSite CS = U) {
419 const Function *F = CS.getCalledFunction();
420 if (!F) {
421 // Just use the called value type.
422 Type *FTy = CS.getCalledValue()->getType()->getPointerElementType();
423 return TopTTI->getCallCost(cast<FunctionType>(FTy), CS.arg_size());
Chandler Carruth1e05bd92013-01-21 01:27:39 +0000424 }
Chandler Carruth13086a62013-01-22 11:26:02 +0000425
426 SmallVector<const Value *, 8> Arguments;
427 for (ImmutableCallSite::arg_iterator AI = CS.arg_begin(),
428 AE = CS.arg_end();
429 AI != AE; ++AI)
430 Arguments.push_back(*AI);
431
432 return TopTTI->getCallCost(F, Arguments);
Chandler Carruth1e05bd92013-01-21 01:27:39 +0000433 }
434
435 if (const CastInst *CI = dyn_cast<CastInst>(U)) {
436 // Result of a cmp instruction is often extended (to be used by other
437 // cmp instructions, logical or return instructions). These are usually
438 // nop on most sane targets.
439 if (isa<CmpInst>(CI->getOperand(0)))
440 return TCC_Free;
441 }
442
443 // Otherwise delegate to the fully generic implementations.
444 return getOperationCost(Operator::getOpcode(U), U->getType(),
445 U->getNumOperands() == 1 ?
446 U->getOperand(0)->getType() : 0);
447 }
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000448
Tom Stellard57e6b2d2013-07-27 00:01:07 +0000449 bool hasBranchDivergence() const { return false; }
450
Chandler Carruth13086a62013-01-22 11:26:02 +0000451 bool isLoweredToCall(const Function *F) const {
452 // FIXME: These should almost certainly not be handled here, and instead
453 // handled with the help of TLI or the target itself. This was largely
454 // ported from existing analysis heuristics here so that such refactorings
455 // can take place in the future.
456
457 if (F->isIntrinsic())
458 return false;
459
460 if (F->hasLocalLinkage() || !F->hasName())
461 return true;
462
463 StringRef Name = F->getName();
464
465 // These will all likely lower to a single selection DAG node.
466 if (Name == "copysign" || Name == "copysignf" || Name == "copysignl" ||
467 Name == "fabs" || Name == "fabsf" || Name == "fabsl" || Name == "sin" ||
468 Name == "sinf" || Name == "sinl" || Name == "cos" || Name == "cosf" ||
469 Name == "cosl" || Name == "sqrt" || Name == "sqrtf" || Name == "sqrtl")
470 return false;
471
472 // These are all likely to be optimized into something smaller.
473 if (Name == "pow" || Name == "powf" || Name == "powl" || Name == "exp2" ||
474 Name == "exp2l" || Name == "exp2f" || Name == "floor" || Name ==
475 "floorf" || Name == "ceil" || Name == "round" || Name == "ffs" ||
476 Name == "ffsl" || Name == "abs" || Name == "labs" || Name == "llabs")
477 return false;
478
479 return true;
480 }
481
Hal Finkel4f7e2c32013-09-11 19:25:43 +0000482 void getUnrollingPreferences(Loop *, UnrollingPreferences &) const { }
483
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000484 bool isLegalAddImmediate(int64_t Imm) const {
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000485 return false;
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000486 }
487
488 bool isLegalICmpImmediate(int64_t Imm) const {
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000489 return false;
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000490 }
491
492 bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
493 bool HasBaseReg, int64_t Scale) const {
Chandler Carruthe4ba75f2013-01-07 14:41:08 +0000494 // Guess that reg+reg addressing is allowed. This heuristic is taken from
495 // the implementation of LSR.
496 return !BaseGV && BaseOffset == 0 && Scale <= 1;
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000497 }
498
Quentin Colombet06f5ebc2013-05-31 21:29:03 +0000499 int getScalingFactorCost(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
500 bool HasBaseReg, int64_t Scale) const {
501 // Guess that all legal addressing mode are free.
502 if(isLegalAddressingMode(Ty, BaseGV, BaseOffset, HasBaseReg, Scale))
503 return 0;
504 return -1;
505 }
506
507
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000508 bool isTruncateFree(Type *Ty1, Type *Ty2) const {
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000509 return false;
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000510 }
511
512 bool isTypeLegal(Type *Ty) const {
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000513 return false;
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000514 }
515
516 unsigned getJumpBufAlignment() const {
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000517 return 0;
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000518 }
519
520 unsigned getJumpBufSize() const {
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000521 return 0;
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000522 }
523
524 bool shouldBuildLookupTables() const {
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000525 return true;
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000526 }
527
Chandler Carruthd1b8ef92013-01-07 03:16:03 +0000528 PopcntSupportKind getPopcntSupport(unsigned IntTyWidthInBit) const {
529 return PSK_Software;
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000530 }
531
Richard Sandiforda8a70992013-08-23 10:27:02 +0000532 bool haveFastSqrt(Type *Ty) const {
533 return false;
534 }
535
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000536 unsigned getIntImmCost(const APInt &Imm, Type *Ty) const {
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000537 return 1;
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000538 }
539
540 unsigned getNumberOfRegisters(bool Vector) const {
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000541 return 8;
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000542 }
543
Nadav Rotem14925e62013-01-09 22:29:00 +0000544 unsigned getRegisterBitWidth(bool Vector) const {
545 return 32;
546 }
547
Nadav Rotem83be7b02013-01-09 01:15:42 +0000548 unsigned getMaximumUnrollFactor() const {
549 return 1;
550 }
551
Arnold Schwaighofer6bf4f672013-04-04 23:26:21 +0000552 unsigned getArithmeticInstrCost(unsigned Opcode, Type *Ty, OperandValueKind,
553 OperandValueKind) const {
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000554 return 1;
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000555 }
556
557 unsigned getShuffleCost(ShuffleKind Kind, Type *Tp,
558 int Index = 0, Type *SubTp = 0) const {
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000559 return 1;
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000560 }
561
562 unsigned getCastInstrCost(unsigned Opcode, Type *Dst,
563 Type *Src) const {
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000564 return 1;
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000565 }
566
567 unsigned getCFInstrCost(unsigned Opcode) const {
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000568 return 1;
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000569 }
570
571 unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
572 Type *CondTy = 0) const {
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000573 return 1;
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000574 }
575
576 unsigned getVectorInstrCost(unsigned Opcode, Type *Val,
577 unsigned Index = -1) const {
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000578 return 1;
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000579 }
580
581 unsigned getMemoryOpCost(unsigned Opcode, Type *Src,
582 unsigned Alignment,
583 unsigned AddressSpace) const {
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000584 return 1;
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000585 }
586
587 unsigned getIntrinsicInstrCost(Intrinsic::ID ID,
588 Type *RetTy,
589 ArrayRef<Type*> Tys) const {
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000590 return 1;
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000591 }
592
593 unsigned getNumberOfParts(Type *Tp) const {
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000594 return 0;
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000595 }
Arnold Schwaighoferfb55a8f2013-02-08 14:50:48 +0000596
Arnold Schwaighoferc0a11ed2013-07-12 19:16:02 +0000597 unsigned getAddressComputationCost(Type *Tp, bool) const {
Arnold Schwaighoferfb55a8f2013-02-08 14:50:48 +0000598 return 0;
599 }
Arnold Schwaighofer65457b62013-09-17 18:06:50 +0000600
601 unsigned getReductionCost(unsigned, Type *, bool) const {
602 return 1;
603 }
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000604};
605
606} // end anonymous namespace
607
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000608INITIALIZE_AG_PASS(NoTTI, TargetTransformInfo, "notti",
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000609 "No target information", true, true, true)
610char NoTTI::ID = 0;
611
Chandler Carruthaeef83c2013-01-07 01:37:14 +0000612ImmutablePass *llvm::createNoTargetTransformInfoPass() {
613 return new NoTTI();
Chandler Carruth7bdf6b02013-01-05 11:43:11 +0000614}