blob: 360c4f5f1b1c5a79e2665ce6f434315d0c6436c5 [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 Carruth664e3542013-01-07 01:37:14 +000010#define DEBUG_TYPE "tti"
Chandler Carruthd3e73552013-01-07 03:08:10 +000011#include "llvm/Analysis/TargetTransformInfo.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"
Chandler Carruth0ba8db42013-01-22 11:26:02 +000017#include "llvm/Support/CallSite.h"
Nadav Rotem5dc203e2012-10-18 23:22:48 +000018#include "llvm/Support/ErrorHandling.h"
19
20using namespace llvm;
21
Chandler Carruth539edf42013-01-05 11:43:11 +000022// Setup the analysis group to manage the TargetTransformInfo passes.
23INITIALIZE_ANALYSIS_GROUP(TargetTransformInfo, "Target Information", NoTTI)
Nadav Rotem5dc203e2012-10-18 23:22:48 +000024char TargetTransformInfo::ID = 0;
25
Chandler Carruth539edf42013-01-05 11:43:11 +000026TargetTransformInfo::~TargetTransformInfo() {
27}
28
Chandler Carruth664e3542013-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 Carruth539edf42013-01-05 11:43:11 +000048void TargetTransformInfo::getAnalysisUsage(AnalysisUsage &AU) const {
49 AU.addRequired<TargetTransformInfo>();
50}
51
Chandler Carruth511aa762013-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 Carruth0ba8db42013-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 Carruth511aa762013-01-21 01:27:39 +000087unsigned TargetTransformInfo::getUserCost(const User *U) const {
88 return PrevTTI->getUserCost(U);
89}
90
Tom Stellard8b1e0212013-07-27 00:01:07 +000091bool TargetTransformInfo::hasBranchDivergence() const {
92 return PrevTTI->hasBranchDivergence();
93}
94
Chandler Carruth0ba8db42013-01-22 11:26:02 +000095bool TargetTransformInfo::isLoweredToCall(const Function *F) const {
96 return PrevTTI->isLoweredToCall(F);
97}
98
Hal Finkel8f2e7002013-09-11 19:25:43 +000099void TargetTransformInfo::getUnrollingPreferences(Loop *L,
100 UnrollingPreferences &UP) const {
101 PrevTTI->getUnrollingPreferences(L, UP);
102}
103
Chandler Carruth539edf42013-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 Colombetbf490d42013-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 Carruth539edf42013-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 Carruth50a36cd2013-01-07 03:16:03 +0000148TargetTransformInfo::PopcntSupportKind
149TargetTransformInfo::getPopcntSupport(unsigned IntTyWidthInBit) const {
150 return PrevTTI->getPopcntSupport(IntTyWidthInBit);
Chandler Carruth539edf42013-01-05 11:43:11 +0000151}
152
Richard Sandiford37cd6cf2013-08-23 10:27:02 +0000153bool TargetTransformInfo::haveFastSqrt(Type *Ty) const {
154 return PrevTTI->haveFastSqrt(Ty);
155}
156
Chandler Carruth539edf42013-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 Rotemb1791a72013-01-09 22:29:00 +0000165unsigned TargetTransformInfo::getRegisterBitWidth(bool Vector) const {
166 return PrevTTI->getRegisterBitWidth(Vector);
167}
168
Nadav Rotemb696c362013-01-09 01:15:42 +0000169unsigned TargetTransformInfo::getMaximumUnrollFactor() const {
170 return PrevTTI->getMaximumUnrollFactor();
171}
172
Chandler Carruth539edf42013-01-05 11:43:11 +0000173unsigned TargetTransformInfo::getArithmeticInstrCost(unsigned Opcode,
Arnold Schwaighoferb9773872013-04-04 23:26:21 +0000174 Type *Ty,
175 OperandValueKind Op1Info,
176 OperandValueKind Op2Info) const {
177 return PrevTTI->getArithmeticInstrCost(Opcode, Ty, Op1Info, Op2Info);
Chandler Carruth539edf42013-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 Schwaighofer9da9a432013-07-12 19:16:02 +0000222unsigned TargetTransformInfo::getAddressComputationCost(Type *Tp,
223 bool IsComplex) const {
224 return PrevTTI->getAddressComputationCost(Tp, IsComplex);
Arnold Schwaighofer594fa2d2013-02-08 14:50:48 +0000225}
Chandler Carruth539edf42013-01-05 11:43:11 +0000226
Arnold Schwaighofercae87352013-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 Carruth539edf42013-01-05 11:43:11 +0000232namespace {
233
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000234struct NoTTI LLVM_FINAL : ImmutablePass, TargetTransformInfo {
Chandler Carruth511aa762013-01-21 01:27:39 +0000235 const DataLayout *DL;
236
237 NoTTI() : ImmutablePass(ID), DL(0) {
Chandler Carruth539edf42013-01-05 11:43:11 +0000238 initializeNoTTIPass(*PassRegistry::getPassRegistry());
239 }
240
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000241 virtual void initializePass() LLVM_OVERRIDE {
Chandler Carruth664e3542013-01-07 01:37:14 +0000242 // Note that this subclass is special, and must *not* call initializeTTI as
243 // it does not chain.
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000244 TopTTI = this;
Chandler Carruth664e3542013-01-07 01:37:14 +0000245 PrevTTI = 0;
Chandler Carruth511aa762013-01-21 01:27:39 +0000246 DL = getAnalysisIfAvailable<DataLayout>();
Chandler Carruth664e3542013-01-07 01:37:14 +0000247 }
248
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000249 virtual void getAnalysisUsage(AnalysisUsage &AU) const LLVM_OVERRIDE {
Chandler Carruth539edf42013-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.
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000258 virtual void *getAdjustedAnalysisPointer(const void *ID) LLVM_OVERRIDE {
Chandler Carruth539edf42013-01-05 11:43:11 +0000259 if (ID == &TargetTransformInfo::ID)
260 return (TargetTransformInfo*)this;
261 return this;
262 }
263
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000264 unsigned getOperationCost(unsigned Opcode, Type *Ty,
265 Type *OpTy) const LLVM_OVERRIDE {
Chandler Carruth511aa762013-01-21 01:27:39 +0000266 switch (Opcode) {
267 default:
268 // By default, just classify everything as 'basic'.
269 return TCC_Basic;
270
271 case Instruction::GetElementPtr:
272 llvm_unreachable("Use getGEPCost for GEP operations!");
273
274 case Instruction::BitCast:
275 assert(OpTy && "Cast instructions must provide the operand type");
276 if (Ty == OpTy || (Ty->isPointerTy() && OpTy->isPointerTy()))
277 // Identity and pointer-to-pointer casts are free.
278 return TCC_Free;
279
280 // Otherwise, the default basic cost is used.
281 return TCC_Basic;
282
Matt Arsenault54c3cbc2013-08-28 22:41:57 +0000283 case Instruction::IntToPtr: {
284 if (!DL)
285 return TCC_Basic;
286
Chandler Carruth511aa762013-01-21 01:27:39 +0000287 // An inttoptr cast is free so long as the input is a legal integer type
288 // which doesn't contain values outside the range of a pointer.
Matt Arsenault54c3cbc2013-08-28 22:41:57 +0000289 unsigned OpSize = OpTy->getScalarSizeInBits();
290 if (DL->isLegalInteger(OpSize) &&
291 OpSize <= DL->getPointerTypeSizeInBits(Ty))
Chandler Carruth511aa762013-01-21 01:27:39 +0000292 return TCC_Free;
293
294 // Otherwise it's not a no-op.
295 return TCC_Basic;
Matt Arsenault54c3cbc2013-08-28 22:41:57 +0000296 }
297 case Instruction::PtrToInt: {
298 if (!DL)
299 return TCC_Basic;
Chandler Carruth511aa762013-01-21 01:27:39 +0000300
Chandler Carruth511aa762013-01-21 01:27:39 +0000301 // A ptrtoint cast is free so long as the result is large enough to store
302 // the pointer, and a legal integer type.
Matt Arsenault54c3cbc2013-08-28 22:41:57 +0000303 unsigned DestSize = Ty->getScalarSizeInBits();
304 if (DL->isLegalInteger(DestSize) &&
305 DestSize >= DL->getPointerTypeSizeInBits(OpTy))
Chandler Carruth511aa762013-01-21 01:27:39 +0000306 return TCC_Free;
307
308 // Otherwise it's not a no-op.
309 return TCC_Basic;
Matt Arsenault54c3cbc2013-08-28 22:41:57 +0000310 }
Chandler Carruth511aa762013-01-21 01:27:39 +0000311 case Instruction::Trunc:
312 // trunc to a native type is free (assuming the target has compare and
313 // shift-right of the same width).
314 if (DL && DL->isLegalInteger(DL->getTypeSizeInBits(Ty)))
315 return TCC_Free;
316
317 return TCC_Basic;
318 }
319 }
320
321 unsigned getGEPCost(const Value *Ptr,
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000322 ArrayRef<const Value *> Operands) const LLVM_OVERRIDE {
Chandler Carruth511aa762013-01-21 01:27:39 +0000323 // In the basic model, we just assume that all-constant GEPs will be folded
324 // into their uses via addressing modes.
325 for (unsigned Idx = 0, Size = Operands.size(); Idx != Size; ++Idx)
326 if (!isa<Constant>(Operands[Idx]))
327 return TCC_Basic;
328
329 return TCC_Free;
330 }
331
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000332 unsigned getCallCost(FunctionType *FTy, int NumArgs = -1) const LLVM_OVERRIDE
333 {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000334 assert(FTy && "FunctionType must be provided to this routine.");
335
336 // The target-independent implementation just measures the size of the
337 // function by approximating that each argument will take on average one
338 // instruction to prepare.
339
340 if (NumArgs < 0)
341 // Set the argument number to the number of explicit arguments in the
342 // function.
343 NumArgs = FTy->getNumParams();
344
345 return TCC_Basic * (NumArgs + 1);
346 }
347
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000348 unsigned getCallCost(const Function *F, int NumArgs = -1) const LLVM_OVERRIDE
349 {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000350 assert(F && "A concrete function must be provided to this routine.");
351
352 if (NumArgs < 0)
353 // Set the argument number to the number of explicit arguments in the
354 // function.
355 NumArgs = F->arg_size();
356
357 if (Intrinsic::ID IID = (Intrinsic::ID)F->getIntrinsicID()) {
358 FunctionType *FTy = F->getFunctionType();
359 SmallVector<Type *, 8> ParamTys(FTy->param_begin(), FTy->param_end());
360 return TopTTI->getIntrinsicCost(IID, FTy->getReturnType(), ParamTys);
361 }
362
363 if (!TopTTI->isLoweredToCall(F))
364 return TCC_Basic; // Give a basic cost if it will be lowered directly.
365
366 return TopTTI->getCallCost(F->getFunctionType(), NumArgs);
367 }
368
369 unsigned getCallCost(const Function *F,
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000370 ArrayRef<const Value *> Arguments) const LLVM_OVERRIDE {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000371 // Simply delegate to generic handling of the call.
372 // FIXME: We should use instsimplify or something else to catch calls which
373 // will constant fold with these arguments.
374 return TopTTI->getCallCost(F, Arguments.size());
375 }
376
377 unsigned getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000378 ArrayRef<Type *> ParamTys) const LLVM_OVERRIDE {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000379 switch (IID) {
380 default:
381 // Intrinsics rarely (if ever) have normal argument setup constraints.
382 // Model them as having a basic instruction cost.
383 // FIXME: This is wrong for libc intrinsics.
384 return TCC_Basic;
385
386 case Intrinsic::dbg_declare:
387 case Intrinsic::dbg_value:
388 case Intrinsic::invariant_start:
389 case Intrinsic::invariant_end:
390 case Intrinsic::lifetime_start:
391 case Intrinsic::lifetime_end:
392 case Intrinsic::objectsize:
393 case Intrinsic::ptr_annotation:
394 case Intrinsic::var_annotation:
395 // These intrinsics don't actually represent code after lowering.
396 return TCC_Free;
397 }
398 }
399
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000400 unsigned
401 getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
402 ArrayRef<const Value *> Arguments) const LLVM_OVERRIDE {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000403 // Delegate to the generic intrinsic handling code. This mostly provides an
404 // opportunity for targets to (for example) special case the cost of
405 // certain intrinsics based on constants used as arguments.
406 SmallVector<Type *, 8> ParamTys;
407 ParamTys.reserve(Arguments.size());
408 for (unsigned Idx = 0, Size = Arguments.size(); Idx != Size; ++Idx)
409 ParamTys.push_back(Arguments[Idx]->getType());
410 return TopTTI->getIntrinsicCost(IID, RetTy, ParamTys);
411 }
412
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000413 unsigned getUserCost(const User *U) const LLVM_OVERRIDE {
Chandler Carruthbb9caa92013-01-21 13:04:33 +0000414 if (isa<PHINode>(U))
415 return TCC_Free; // Model all PHI nodes as free.
416
Chandler Carruth511aa762013-01-21 01:27:39 +0000417 if (const GEPOperator *GEP = dyn_cast<GEPOperator>(U))
418 // In the basic model we just assume that all-constant GEPs will be
419 // folded into their uses via addressing modes.
420 return GEP->hasAllConstantIndices() ? TCC_Free : TCC_Basic;
421
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000422 if (ImmutableCallSite CS = U) {
423 const Function *F = CS.getCalledFunction();
424 if (!F) {
425 // Just use the called value type.
426 Type *FTy = CS.getCalledValue()->getType()->getPointerElementType();
427 return TopTTI->getCallCost(cast<FunctionType>(FTy), CS.arg_size());
Chandler Carruth511aa762013-01-21 01:27:39 +0000428 }
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000429
430 SmallVector<const Value *, 8> Arguments;
431 for (ImmutableCallSite::arg_iterator AI = CS.arg_begin(),
432 AE = CS.arg_end();
433 AI != AE; ++AI)
434 Arguments.push_back(*AI);
435
436 return TopTTI->getCallCost(F, Arguments);
Chandler Carruth511aa762013-01-21 01:27:39 +0000437 }
438
439 if (const CastInst *CI = dyn_cast<CastInst>(U)) {
440 // Result of a cmp instruction is often extended (to be used by other
441 // cmp instructions, logical or return instructions). These are usually
442 // nop on most sane targets.
443 if (isa<CmpInst>(CI->getOperand(0)))
444 return TCC_Free;
445 }
446
447 // Otherwise delegate to the fully generic implementations.
448 return getOperationCost(Operator::getOpcode(U), U->getType(),
449 U->getNumOperands() == 1 ?
450 U->getOperand(0)->getType() : 0);
451 }
Chandler Carruth539edf42013-01-05 11:43:11 +0000452
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000453 bool hasBranchDivergence() const LLVM_OVERRIDE { return false; }
Tom Stellard8b1e0212013-07-27 00:01:07 +0000454
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000455 bool isLoweredToCall(const Function *F) const LLVM_OVERRIDE {
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000456 // FIXME: These should almost certainly not be handled here, and instead
457 // handled with the help of TLI or the target itself. This was largely
458 // ported from existing analysis heuristics here so that such refactorings
459 // can take place in the future.
460
461 if (F->isIntrinsic())
462 return false;
463
464 if (F->hasLocalLinkage() || !F->hasName())
465 return true;
466
467 StringRef Name = F->getName();
468
469 // These will all likely lower to a single selection DAG node.
470 if (Name == "copysign" || Name == "copysignf" || Name == "copysignl" ||
471 Name == "fabs" || Name == "fabsf" || Name == "fabsl" || Name == "sin" ||
472 Name == "sinf" || Name == "sinl" || Name == "cos" || Name == "cosf" ||
473 Name == "cosl" || Name == "sqrt" || Name == "sqrtf" || Name == "sqrtl")
474 return false;
475
476 // These are all likely to be optimized into something smaller.
477 if (Name == "pow" || Name == "powf" || Name == "powl" || Name == "exp2" ||
478 Name == "exp2l" || Name == "exp2f" || Name == "floor" || Name ==
479 "floorf" || Name == "ceil" || Name == "round" || Name == "ffs" ||
480 Name == "ffsl" || Name == "abs" || Name == "labs" || Name == "llabs")
481 return false;
482
483 return true;
484 }
485
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000486 void getUnrollingPreferences(Loop *,
487 UnrollingPreferences &) const LLVM_OVERRIDE
488 { }
Hal Finkel8f2e7002013-09-11 19:25:43 +0000489
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000490 bool isLegalAddImmediate(int64_t Imm) const LLVM_OVERRIDE {
Chandler Carruth664e3542013-01-07 01:37:14 +0000491 return false;
Chandler Carruth539edf42013-01-05 11:43:11 +0000492 }
493
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000494 bool isLegalICmpImmediate(int64_t Imm) const LLVM_OVERRIDE {
Chandler Carruth664e3542013-01-07 01:37:14 +0000495 return false;
Chandler Carruth539edf42013-01-05 11:43:11 +0000496 }
497
498 bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000499 bool HasBaseReg, int64_t Scale) const LLVM_OVERRIDE
500 {
Chandler Carruth26c59fa2013-01-07 14:41:08 +0000501 // Guess that reg+reg addressing is allowed. This heuristic is taken from
502 // the implementation of LSR.
503 return !BaseGV && BaseOffset == 0 && Scale <= 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000504 }
505
Quentin Colombetbf490d42013-05-31 21:29:03 +0000506 int getScalingFactorCost(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000507 bool HasBaseReg, int64_t Scale) const LLVM_OVERRIDE {
Quentin Colombetbf490d42013-05-31 21:29:03 +0000508 // Guess that all legal addressing mode are free.
509 if(isLegalAddressingMode(Ty, BaseGV, BaseOffset, HasBaseReg, Scale))
510 return 0;
511 return -1;
512 }
513
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000514 bool isTruncateFree(Type *Ty1, Type *Ty2) const LLVM_OVERRIDE {
Chandler Carruth664e3542013-01-07 01:37:14 +0000515 return false;
Chandler Carruth539edf42013-01-05 11:43:11 +0000516 }
517
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000518 bool isTypeLegal(Type *Ty) const LLVM_OVERRIDE {
Chandler Carruth664e3542013-01-07 01:37:14 +0000519 return false;
Chandler Carruth539edf42013-01-05 11:43:11 +0000520 }
521
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000522 unsigned getJumpBufAlignment() const LLVM_OVERRIDE {
Chandler Carruth664e3542013-01-07 01:37:14 +0000523 return 0;
Chandler Carruth539edf42013-01-05 11:43:11 +0000524 }
525
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000526 unsigned getJumpBufSize() const LLVM_OVERRIDE {
Chandler Carruth664e3542013-01-07 01:37:14 +0000527 return 0;
Chandler Carruth539edf42013-01-05 11:43:11 +0000528 }
529
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000530 bool shouldBuildLookupTables() const LLVM_OVERRIDE {
Chandler Carruth664e3542013-01-07 01:37:14 +0000531 return true;
Chandler Carruth539edf42013-01-05 11:43:11 +0000532 }
533
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000534 PopcntSupportKind
535 getPopcntSupport(unsigned IntTyWidthInBit) const LLVM_OVERRIDE {
Chandler Carruth50a36cd2013-01-07 03:16:03 +0000536 return PSK_Software;
Chandler Carruth539edf42013-01-05 11:43:11 +0000537 }
538
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000539 bool haveFastSqrt(Type *Ty) const LLVM_OVERRIDE {
Richard Sandiford37cd6cf2013-08-23 10:27:02 +0000540 return false;
541 }
542
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000543 unsigned getIntImmCost(const APInt &Imm, Type *Ty) const LLVM_OVERRIDE {
Chandler Carruth664e3542013-01-07 01:37:14 +0000544 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000545 }
546
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000547 unsigned getNumberOfRegisters(bool Vector) const LLVM_OVERRIDE {
Chandler Carruth664e3542013-01-07 01:37:14 +0000548 return 8;
Chandler Carruth539edf42013-01-05 11:43:11 +0000549 }
550
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000551 unsigned getRegisterBitWidth(bool Vector) const LLVM_OVERRIDE {
Nadav Rotemb1791a72013-01-09 22:29:00 +0000552 return 32;
553 }
554
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000555 unsigned getMaximumUnrollFactor() const LLVM_OVERRIDE {
Nadav Rotemb696c362013-01-09 01:15:42 +0000556 return 1;
557 }
558
Arnold Schwaighoferb9773872013-04-04 23:26:21 +0000559 unsigned getArithmeticInstrCost(unsigned Opcode, Type *Ty, OperandValueKind,
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000560 OperandValueKind) const LLVM_OVERRIDE {
Chandler Carruth664e3542013-01-07 01:37:14 +0000561 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000562 }
563
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000564 unsigned getShuffleCost(ShuffleKind Kind, Type *Ty,
565 int Index = 0, Type *SubTp = 0) const LLVM_OVERRIDE {
Chandler Carruth664e3542013-01-07 01:37:14 +0000566 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000567 }
568
569 unsigned getCastInstrCost(unsigned Opcode, Type *Dst,
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000570 Type *Src) const LLVM_OVERRIDE {
Chandler Carruth664e3542013-01-07 01:37:14 +0000571 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000572 }
573
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000574 unsigned getCFInstrCost(unsigned Opcode) const LLVM_OVERRIDE {
Chandler Carruth664e3542013-01-07 01:37:14 +0000575 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000576 }
577
578 unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000579 Type *CondTy = 0) const LLVM_OVERRIDE {
Chandler Carruth664e3542013-01-07 01:37:14 +0000580 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000581 }
582
583 unsigned getVectorInstrCost(unsigned Opcode, Type *Val,
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000584 unsigned Index = -1) const LLVM_OVERRIDE {
Chandler Carruth664e3542013-01-07 01:37:14 +0000585 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000586 }
587
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000588 unsigned getMemoryOpCost(unsigned Opcode,
589 Type *Src,
Chandler Carruth539edf42013-01-05 11:43:11 +0000590 unsigned Alignment,
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000591 unsigned AddressSpace) const LLVM_OVERRIDE {
Chandler Carruth664e3542013-01-07 01:37:14 +0000592 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000593 }
594
595 unsigned getIntrinsicInstrCost(Intrinsic::ID ID,
596 Type *RetTy,
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000597 ArrayRef<Type*> Tys) const LLVM_OVERRIDE {
Chandler Carruth664e3542013-01-07 01:37:14 +0000598 return 1;
Chandler Carruth539edf42013-01-05 11:43:11 +0000599 }
600
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000601 unsigned getNumberOfParts(Type *Tp) const LLVM_OVERRIDE {
Chandler Carruth664e3542013-01-07 01:37:14 +0000602 return 0;
Chandler Carruth539edf42013-01-05 11:43:11 +0000603 }
Arnold Schwaighofer594fa2d2013-02-08 14:50:48 +0000604
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000605 unsigned getAddressComputationCost(Type *Tp, bool) const LLVM_OVERRIDE {
Arnold Schwaighofer594fa2d2013-02-08 14:50:48 +0000606 return 0;
607 }
Arnold Schwaighofercae87352013-09-17 18:06:50 +0000608
Juergen Ributzka3e752e72014-01-24 18:22:59 +0000609 unsigned getReductionCost(unsigned, Type *, bool) const LLVM_OVERRIDE {
Arnold Schwaighofercae87352013-09-17 18:06:50 +0000610 return 1;
611 }
Chandler Carruth539edf42013-01-05 11:43:11 +0000612};
613
614} // end anonymous namespace
615
Chandler Carruth664e3542013-01-07 01:37:14 +0000616INITIALIZE_AG_PASS(NoTTI, TargetTransformInfo, "notti",
Chandler Carruth539edf42013-01-05 11:43:11 +0000617 "No target information", true, true, true)
618char NoTTI::ID = 0;
619
Chandler Carruth664e3542013-01-07 01:37:14 +0000620ImmutablePass *llvm::createNoTargetTransformInfoPass() {
621 return new NoTTI();
Chandler Carruth539edf42013-01-05 11:43:11 +0000622}