Pass QueryInst down through non-local dependency calculation
[oota-llvm.git] / lib / Analysis / TargetTransformInfo.cpp
1 //===- llvm/Analysis/TargetTransformInfo.cpp ------------------------------===//
2 //
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
10 #include "llvm/Analysis/TargetTransformInfo.h"
11 #include "llvm/IR/CallSite.h"
12 #include "llvm/IR/DataLayout.h"
13 #include "llvm/IR/Instruction.h"
14 #include "llvm/IR/Instructions.h"
15 #include "llvm/IR/IntrinsicInst.h"
16 #include "llvm/IR/Operator.h"
17 #include "llvm/Support/ErrorHandling.h"
18
19 using namespace llvm;
20
21 #define DEBUG_TYPE "tti"
22
23 // Setup the analysis group to manage the TargetTransformInfo passes.
24 INITIALIZE_ANALYSIS_GROUP(TargetTransformInfo, "Target Information", NoTTI)
25 char TargetTransformInfo::ID = 0;
26
27 TargetTransformInfo::~TargetTransformInfo() {
28 }
29
30 void 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
39 void TargetTransformInfo::getAnalysisUsage(AnalysisUsage &AU) const {
40   AU.addRequired<TargetTransformInfo>();
41 }
42
43 unsigned TargetTransformInfo::getOperationCost(unsigned Opcode, Type *Ty,
44                                                Type *OpTy) const {
45   return PrevTTI->getOperationCost(Opcode, Ty, OpTy);
46 }
47
48 unsigned TargetTransformInfo::getGEPCost(
49     const Value *Ptr, ArrayRef<const Value *> Operands) const {
50   return PrevTTI->getGEPCost(Ptr, Operands);
51 }
52
53 unsigned TargetTransformInfo::getCallCost(FunctionType *FTy,
54                                           int NumArgs) const {
55   return PrevTTI->getCallCost(FTy, NumArgs);
56 }
57
58 unsigned TargetTransformInfo::getCallCost(const Function *F,
59                                           int NumArgs) const {
60   return PrevTTI->getCallCost(F, NumArgs);
61 }
62
63 unsigned TargetTransformInfo::getCallCost(
64     const Function *F, ArrayRef<const Value *> Arguments) const {
65   return PrevTTI->getCallCost(F, Arguments);
66 }
67
68 unsigned TargetTransformInfo::getIntrinsicCost(
69     Intrinsic::ID IID, Type *RetTy, ArrayRef<Type *> ParamTys) const {
70   return PrevTTI->getIntrinsicCost(IID, RetTy, ParamTys);
71 }
72
73 unsigned TargetTransformInfo::getIntrinsicCost(
74     Intrinsic::ID IID, Type *RetTy, ArrayRef<const Value *> Arguments) const {
75   return PrevTTI->getIntrinsicCost(IID, RetTy, Arguments);
76 }
77
78 unsigned TargetTransformInfo::getUserCost(const User *U) const {
79   return PrevTTI->getUserCost(U);
80 }
81
82 bool TargetTransformInfo::hasBranchDivergence() const {
83   return PrevTTI->hasBranchDivergence();
84 }
85
86 bool TargetTransformInfo::isLoweredToCall(const Function *F) const {
87   return PrevTTI->isLoweredToCall(F);
88 }
89
90 void
91 TargetTransformInfo::getUnrollingPreferences(const Function *F, Loop *L,
92                                              UnrollingPreferences &UP) const {
93   PrevTTI->getUnrollingPreferences(F, L, UP);
94 }
95
96 bool TargetTransformInfo::isLegalAddImmediate(int64_t Imm) const {
97   return PrevTTI->isLegalAddImmediate(Imm);
98 }
99
100 bool TargetTransformInfo::isLegalICmpImmediate(int64_t Imm) const {
101   return PrevTTI->isLegalICmpImmediate(Imm);
102 }
103
104 bool TargetTransformInfo::isLegalMaskedLoad(Type *DataType,
105                                             int Consecutive) const {
106   return false;
107 }
108
109 bool TargetTransformInfo::isLegalMaskedStore(Type *DataType,
110                                              int Consecutive) const {
111   return false;
112 }
113
114
115 bool TargetTransformInfo::isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV,
116                                                 int64_t BaseOffset,
117                                                 bool HasBaseReg,
118                                                 int64_t Scale) const {
119   return PrevTTI->isLegalAddressingMode(Ty, BaseGV, BaseOffset, HasBaseReg,
120                                         Scale);
121 }
122
123 int TargetTransformInfo::getScalingFactorCost(Type *Ty, GlobalValue *BaseGV,
124                                               int64_t BaseOffset,
125                                               bool HasBaseReg,
126                                               int64_t Scale) const {
127   return PrevTTI->getScalingFactorCost(Ty, BaseGV, BaseOffset, HasBaseReg,
128                                        Scale);
129 }
130
131 bool TargetTransformInfo::isTruncateFree(Type *Ty1, Type *Ty2) const {
132   return PrevTTI->isTruncateFree(Ty1, Ty2);
133 }
134
135 bool TargetTransformInfo::isTypeLegal(Type *Ty) const {
136   return PrevTTI->isTypeLegal(Ty);
137 }
138
139 unsigned TargetTransformInfo::getJumpBufAlignment() const {
140   return PrevTTI->getJumpBufAlignment();
141 }
142
143 unsigned TargetTransformInfo::getJumpBufSize() const {
144   return PrevTTI->getJumpBufSize();
145 }
146
147 bool TargetTransformInfo::shouldBuildLookupTables() const {
148   return PrevTTI->shouldBuildLookupTables();
149 }
150
151 TargetTransformInfo::PopcntSupportKind
152 TargetTransformInfo::getPopcntSupport(unsigned IntTyWidthInBit) const {
153   return PrevTTI->getPopcntSupport(IntTyWidthInBit);
154 }
155
156 bool TargetTransformInfo::haveFastSqrt(Type *Ty) const {
157   return PrevTTI->haveFastSqrt(Ty);
158 }
159
160 unsigned TargetTransformInfo::getIntImmCost(const APInt &Imm, Type *Ty) const {
161   return PrevTTI->getIntImmCost(Imm, Ty);
162 }
163
164 unsigned TargetTransformInfo::getIntImmCost(unsigned Opc, unsigned Idx,
165                                             const APInt &Imm, Type *Ty) const {
166   return PrevTTI->getIntImmCost(Opc, Idx, Imm, Ty);
167 }
168
169 unsigned TargetTransformInfo::getIntImmCost(Intrinsic::ID IID, unsigned Idx,
170                                             const APInt &Imm, Type *Ty) const {
171   return PrevTTI->getIntImmCost(IID, Idx, Imm, Ty);
172 }
173
174 unsigned TargetTransformInfo::getNumberOfRegisters(bool Vector) const {
175   return PrevTTI->getNumberOfRegisters(Vector);
176 }
177
178 unsigned TargetTransformInfo::getRegisterBitWidth(bool Vector) const {
179   return PrevTTI->getRegisterBitWidth(Vector);
180 }
181
182 unsigned TargetTransformInfo::getMaxInterleaveFactor() const {
183   return PrevTTI->getMaxInterleaveFactor();
184 }
185
186 unsigned TargetTransformInfo::getArithmeticInstrCost(
187     unsigned Opcode, Type *Ty, OperandValueKind Op1Info,
188     OperandValueKind Op2Info, OperandValueProperties Opd1PropInfo,
189     OperandValueProperties Opd2PropInfo) const {
190   return PrevTTI->getArithmeticInstrCost(Opcode, Ty, Op1Info, Op2Info,
191                                          Opd1PropInfo, Opd2PropInfo);
192 }
193
194 unsigned TargetTransformInfo::getShuffleCost(ShuffleKind Kind, Type *Tp,
195                                              int Index, Type *SubTp) const {
196   return PrevTTI->getShuffleCost(Kind, Tp, Index, SubTp);
197 }
198
199 unsigned TargetTransformInfo::getCastInstrCost(unsigned Opcode, Type *Dst,
200                                                Type *Src) const {
201   return PrevTTI->getCastInstrCost(Opcode, Dst, Src);
202 }
203
204 unsigned TargetTransformInfo::getCFInstrCost(unsigned Opcode) const {
205   return PrevTTI->getCFInstrCost(Opcode);
206 }
207
208 unsigned TargetTransformInfo::getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
209                                                  Type *CondTy) const {
210   return PrevTTI->getCmpSelInstrCost(Opcode, ValTy, CondTy);
211 }
212
213 unsigned TargetTransformInfo::getVectorInstrCost(unsigned Opcode, Type *Val,
214                                                  unsigned Index) const {
215   return PrevTTI->getVectorInstrCost(Opcode, Val, Index);
216 }
217
218 unsigned TargetTransformInfo::getMemoryOpCost(unsigned Opcode, Type *Src,
219                                               unsigned Alignment,
220                                               unsigned AddressSpace) const {
221   return PrevTTI->getMemoryOpCost(Opcode, Src, Alignment, AddressSpace);
222 }
223
224 unsigned 
225 TargetTransformInfo::getMaskedMemoryOpCost(unsigned Opcode, Type *Src,
226                                               unsigned Alignment,
227                                               unsigned AddressSpace) const {
228   return PrevTTI->getMaskedMemoryOpCost(Opcode, Src, Alignment, AddressSpace);
229 }
230
231 unsigned
232 TargetTransformInfo::getIntrinsicInstrCost(Intrinsic::ID ID,
233                                            Type *RetTy,
234                                            ArrayRef<Type *> Tys) const {
235   return PrevTTI->getIntrinsicInstrCost(ID, RetTy, Tys);
236 }
237
238 unsigned TargetTransformInfo::getNumberOfParts(Type *Tp) const {
239   return PrevTTI->getNumberOfParts(Tp);
240 }
241
242 unsigned TargetTransformInfo::getAddressComputationCost(Type *Tp,
243                                                         bool IsComplex) const {
244   return PrevTTI->getAddressComputationCost(Tp, IsComplex);
245 }
246
247 unsigned TargetTransformInfo::getReductionCost(unsigned Opcode, Type *Ty,
248                                                bool IsPairwise) const {
249   return PrevTTI->getReductionCost(Opcode, Ty, IsPairwise);
250 }
251
252 unsigned TargetTransformInfo::getCostOfKeepingLiveOverCall(ArrayRef<Type*> Tys)
253   const {
254   return PrevTTI->getCostOfKeepingLiveOverCall(Tys);
255 }
256
257 namespace {
258
259 struct NoTTI final : ImmutablePass, TargetTransformInfo {
260   const DataLayout *DL;
261
262   NoTTI() : ImmutablePass(ID), DL(nullptr) {
263     initializeNoTTIPass(*PassRegistry::getPassRegistry());
264   }
265
266   void initializePass() override {
267     // Note that this subclass is special, and must *not* call initializeTTI as
268     // it does not chain.
269     TopTTI = this;
270     PrevTTI = nullptr;
271     DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
272     DL = DLP ? &DLP->getDataLayout() : nullptr;
273   }
274
275   void getAnalysisUsage(AnalysisUsage &AU) const override {
276     // Note that this subclass is special, and must *not* call
277     // TTI::getAnalysisUsage as it breaks the recursion.
278   }
279
280   /// Pass identification.
281   static char ID;
282
283   /// Provide necessary pointer adjustments for the two base classes.
284   void *getAdjustedAnalysisPointer(const void *ID) override {
285     if (ID == &TargetTransformInfo::ID)
286       return (TargetTransformInfo*)this;
287     return this;
288   }
289
290   unsigned getOperationCost(unsigned Opcode, Type *Ty,
291                             Type *OpTy) const override {
292     switch (Opcode) {
293     default:
294       // By default, just classify everything as 'basic'.
295       return TCC_Basic;
296
297     case Instruction::GetElementPtr:
298       llvm_unreachable("Use getGEPCost for GEP operations!");
299
300     case Instruction::BitCast:
301       assert(OpTy && "Cast instructions must provide the operand type");
302       if (Ty == OpTy || (Ty->isPointerTy() && OpTy->isPointerTy()))
303         // Identity and pointer-to-pointer casts are free.
304         return TCC_Free;
305
306       // Otherwise, the default basic cost is used.
307       return TCC_Basic;
308
309     case Instruction::IntToPtr: {
310       if (!DL)
311         return TCC_Basic;
312
313       // An inttoptr cast is free so long as the input is a legal integer type
314       // which doesn't contain values outside the range of a pointer.
315       unsigned OpSize = OpTy->getScalarSizeInBits();
316       if (DL->isLegalInteger(OpSize) &&
317           OpSize <= DL->getPointerTypeSizeInBits(Ty))
318         return TCC_Free;
319
320       // Otherwise it's not a no-op.
321       return TCC_Basic;
322     }
323     case Instruction::PtrToInt: {
324       if (!DL)
325         return TCC_Basic;
326
327       // A ptrtoint cast is free so long as the result is large enough to store
328       // the pointer, and a legal integer type.
329       unsigned DestSize = Ty->getScalarSizeInBits();
330       if (DL->isLegalInteger(DestSize) &&
331           DestSize >= DL->getPointerTypeSizeInBits(OpTy))
332         return TCC_Free;
333
334       // Otherwise it's not a no-op.
335       return TCC_Basic;
336     }
337     case Instruction::Trunc:
338       // trunc to a native type is free (assuming the target has compare and
339       // shift-right of the same width).
340       if (DL && DL->isLegalInteger(DL->getTypeSizeInBits(Ty)))
341         return TCC_Free;
342
343       return TCC_Basic;
344     }
345   }
346
347   unsigned getGEPCost(const Value *Ptr,
348                       ArrayRef<const Value *> Operands) const override {
349     // In the basic model, we just assume that all-constant GEPs will be folded
350     // into their uses via addressing modes.
351     for (unsigned Idx = 0, Size = Operands.size(); Idx != Size; ++Idx)
352       if (!isa<Constant>(Operands[Idx]))
353         return TCC_Basic;
354
355     return TCC_Free;
356   }
357
358   unsigned getCallCost(FunctionType *FTy, int NumArgs = -1) const override
359   {
360     assert(FTy && "FunctionType must be provided to this routine.");
361
362     // The target-independent implementation just measures the size of the
363     // function by approximating that each argument will take on average one
364     // instruction to prepare.
365
366     if (NumArgs < 0)
367       // Set the argument number to the number of explicit arguments in the
368       // function.
369       NumArgs = FTy->getNumParams();
370
371     return TCC_Basic * (NumArgs + 1);
372   }
373
374   unsigned getCallCost(const Function *F, int NumArgs = -1) const override
375   {
376     assert(F && "A concrete function must be provided to this routine.");
377
378     if (NumArgs < 0)
379       // Set the argument number to the number of explicit arguments in the
380       // function.
381       NumArgs = F->arg_size();
382
383     if (Intrinsic::ID IID = (Intrinsic::ID)F->getIntrinsicID()) {
384       FunctionType *FTy = F->getFunctionType();
385       SmallVector<Type *, 8> ParamTys(FTy->param_begin(), FTy->param_end());
386       return TopTTI->getIntrinsicCost(IID, FTy->getReturnType(), ParamTys);
387     }
388
389     if (!TopTTI->isLoweredToCall(F))
390       return TCC_Basic; // Give a basic cost if it will be lowered directly.
391
392     return TopTTI->getCallCost(F->getFunctionType(), NumArgs);
393   }
394
395   unsigned getCallCost(const Function *F,
396                        ArrayRef<const Value *> Arguments) const override {
397     // Simply delegate to generic handling of the call.
398     // FIXME: We should use instsimplify or something else to catch calls which
399     // will constant fold with these arguments.
400     return TopTTI->getCallCost(F, Arguments.size());
401   }
402
403   unsigned getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
404                             ArrayRef<Type *> ParamTys) const override {
405     switch (IID) {
406     default:
407       // Intrinsics rarely (if ever) have normal argument setup constraints.
408       // Model them as having a basic instruction cost.
409       // FIXME: This is wrong for libc intrinsics.
410       return TCC_Basic;
411
412     case Intrinsic::annotation:
413     case Intrinsic::assume:
414     case Intrinsic::dbg_declare:
415     case Intrinsic::dbg_value:
416     case Intrinsic::invariant_start:
417     case Intrinsic::invariant_end:
418     case Intrinsic::lifetime_start:
419     case Intrinsic::lifetime_end:
420     case Intrinsic::objectsize:
421     case Intrinsic::ptr_annotation:
422     case Intrinsic::var_annotation:
423     case Intrinsic::experimental_gc_result_int:
424     case Intrinsic::experimental_gc_result_float:
425     case Intrinsic::experimental_gc_result_ptr:
426     case Intrinsic::experimental_gc_result:
427     case Intrinsic::experimental_gc_relocate:
428       // These intrinsics don't actually represent code after lowering.
429       return TCC_Free;
430     }
431   }
432
433   unsigned
434   getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
435                    ArrayRef<const Value *> Arguments) const override {
436     // Delegate to the generic intrinsic handling code. This mostly provides an
437     // opportunity for targets to (for example) special case the cost of
438     // certain intrinsics based on constants used as arguments.
439     SmallVector<Type *, 8> ParamTys;
440     ParamTys.reserve(Arguments.size());
441     for (unsigned Idx = 0, Size = Arguments.size(); Idx != Size; ++Idx)
442       ParamTys.push_back(Arguments[Idx]->getType());
443     return TopTTI->getIntrinsicCost(IID, RetTy, ParamTys);
444   }
445
446   unsigned getUserCost(const User *U) const override {
447     if (isa<PHINode>(U))
448       return TCC_Free; // Model all PHI nodes as free.
449
450     if (const GEPOperator *GEP = dyn_cast<GEPOperator>(U)) {
451       SmallVector<const Value *, 4> Indices(GEP->idx_begin(), GEP->idx_end());
452       return TopTTI->getGEPCost(GEP->getPointerOperand(), Indices);
453     }
454
455     if (ImmutableCallSite CS = U) {
456       const Function *F = CS.getCalledFunction();
457       if (!F) {
458         // Just use the called value type.
459         Type *FTy = CS.getCalledValue()->getType()->getPointerElementType();
460         return TopTTI->getCallCost(cast<FunctionType>(FTy), CS.arg_size());
461       }
462
463       SmallVector<const Value *, 8> Arguments(CS.arg_begin(), CS.arg_end());
464       return TopTTI->getCallCost(F, Arguments);
465     }
466
467     if (const CastInst *CI = dyn_cast<CastInst>(U)) {
468       // Result of a cmp instruction is often extended (to be used by other
469       // cmp instructions, logical or return instructions). These are usually
470       // nop on most sane targets.
471       if (isa<CmpInst>(CI->getOperand(0)))
472         return TCC_Free;
473     }
474
475     // Otherwise delegate to the fully generic implementations.
476     return getOperationCost(Operator::getOpcode(U), U->getType(),
477                             U->getNumOperands() == 1 ?
478                                 U->getOperand(0)->getType() : nullptr);
479   }
480
481   bool hasBranchDivergence() const override { return false; }
482
483   bool isLoweredToCall(const Function *F) const override {
484     // FIXME: These should almost certainly not be handled here, and instead
485     // handled with the help of TLI or the target itself. This was largely
486     // ported from existing analysis heuristics here so that such refactorings
487     // can take place in the future.
488
489     if (F->isIntrinsic())
490       return false;
491
492     if (F->hasLocalLinkage() || !F->hasName())
493       return true;
494
495     StringRef Name = F->getName();
496
497     // These will all likely lower to a single selection DAG node.
498     if (Name == "copysign" || Name == "copysignf" || Name == "copysignl" ||
499         Name == "fabs" || Name == "fabsf" || Name == "fabsl" || Name == "sin" ||
500         Name == "fmin" || Name == "fminf" || Name == "fminl" ||
501         Name == "fmax" || Name == "fmaxf" || Name == "fmaxl" ||
502         Name == "sinf" || Name == "sinl" || Name == "cos" || Name == "cosf" ||
503         Name == "cosl" || Name == "sqrt" || Name == "sqrtf" || Name == "sqrtl")
504       return false;
505
506     // These are all likely to be optimized into something smaller.
507     if (Name == "pow" || Name == "powf" || Name == "powl" || Name == "exp2" ||
508         Name == "exp2l" || Name == "exp2f" || Name == "floor" || Name ==
509         "floorf" || Name == "ceil" || Name == "round" || Name == "ffs" ||
510         Name == "ffsl" || Name == "abs" || Name == "labs" || Name == "llabs")
511       return false;
512
513     return true;
514   }
515
516   void getUnrollingPreferences(const Function *, Loop *,
517                                UnrollingPreferences &) const override {}
518
519   bool isLegalAddImmediate(int64_t Imm) const override {
520     return false;
521   }
522
523   bool isLegalICmpImmediate(int64_t Imm) const override {
524     return false;
525   }
526
527   bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
528                              bool HasBaseReg, int64_t Scale) const override
529   {
530     // Guess that reg+reg addressing is allowed. This heuristic is taken from
531     // the implementation of LSR.
532     return !BaseGV && BaseOffset == 0 && Scale <= 1;
533   }
534
535   int getScalingFactorCost(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
536                            bool HasBaseReg, int64_t Scale) const override {
537     // Guess that all legal addressing mode are free.
538     if(isLegalAddressingMode(Ty, BaseGV, BaseOffset, HasBaseReg, Scale))
539       return 0;
540     return -1;
541   }
542
543   bool isTruncateFree(Type *Ty1, Type *Ty2) const override {
544     return false;
545   }
546
547   bool isTypeLegal(Type *Ty) const override {
548     return false;
549   }
550
551   unsigned getJumpBufAlignment() const override {
552     return 0;
553   }
554
555   unsigned getJumpBufSize() const override {
556     return 0;
557   }
558
559   bool shouldBuildLookupTables() const override {
560     return true;
561   }
562
563   PopcntSupportKind
564   getPopcntSupport(unsigned IntTyWidthInBit) const override {
565     return PSK_Software;
566   }
567
568   bool haveFastSqrt(Type *Ty) const override {
569     return false;
570   }
571
572   unsigned getIntImmCost(const APInt &Imm, Type *Ty) const override {
573     return TCC_Basic;
574   }
575
576   unsigned getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm,
577                          Type *Ty) const override {
578     return TCC_Free;
579   }
580
581   unsigned getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
582                          Type *Ty) const override {
583     return TCC_Free;
584   }
585
586   unsigned getNumberOfRegisters(bool Vector) const override {
587     return 8;
588   }
589
590   unsigned  getRegisterBitWidth(bool Vector) const override {
591     return 32;
592   }
593
594   unsigned getMaxInterleaveFactor() const override {
595     return 1;
596   }
597
598   unsigned getArithmeticInstrCost(unsigned Opcode, Type *Ty, OperandValueKind,
599                                   OperandValueKind, OperandValueProperties,
600                                   OperandValueProperties) const override {
601     return 1;
602   }
603
604   unsigned getShuffleCost(ShuffleKind Kind, Type *Ty,
605                           int Index = 0, Type *SubTp = nullptr) const override {
606     return 1;
607   }
608
609   unsigned getCastInstrCost(unsigned Opcode, Type *Dst,
610                             Type *Src) const override {
611     return 1;
612   }
613
614   unsigned getCFInstrCost(unsigned Opcode) const override {
615     return 1;
616   }
617
618   unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
619                               Type *CondTy = nullptr) const override {
620     return 1;
621   }
622
623   unsigned getVectorInstrCost(unsigned Opcode, Type *Val,
624                               unsigned Index = -1) const override {
625     return 1;
626   }
627
628   unsigned getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
629                            unsigned AddressSpace) const override {
630     return 1;
631   }
632
633   unsigned getMaskedMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
634                            unsigned AddressSpace) const override {
635     return 1;
636   }
637
638   unsigned getIntrinsicInstrCost(Intrinsic::ID ID, Type *RetTy,
639                                  ArrayRef<Type*> Tys) const override {
640     return 1;
641   }
642
643   unsigned getNumberOfParts(Type *Tp) const override {
644     return 0;
645   }
646
647   unsigned getAddressComputationCost(Type *Tp, bool) const override {
648     return 0;
649   }
650
651   unsigned getReductionCost(unsigned, Type *, bool) const override {
652     return 1;
653   }
654
655   unsigned getCostOfKeepingLiveOverCall(ArrayRef<Type*> Tys) const override {
656     return 0;
657   }
658
659 };
660
661 } // end anonymous namespace
662
663 INITIALIZE_AG_PASS(NoTTI, TargetTransformInfo, "notti",
664                    "No target information", true, true, true)
665 char NoTTI::ID = 0;
666
667 ImmutablePass *llvm::createNoTargetTransformInfoPass() {
668   return new NoTTI();
669 }