[TTI/CostModel] improve TTI::getGEPCost and use it in CostModel::getInstructionCost
[oota-llvm.git] / include / llvm / Analysis / TargetTransformInfoImpl.h
1 //===- TargetTransformInfoImpl.h --------------------------------*- C++ -*-===//
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 /// \file
10 /// This file provides helpers for the implementation of
11 /// a TargetTransformInfo-conforming class.
12 ///
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_ANALYSIS_TARGETTRANSFORMINFOIMPL_H
16 #define LLVM_ANALYSIS_TARGETTRANSFORMINFOIMPL_H
17
18 #include "llvm/Analysis/TargetTransformInfo.h"
19 #include "llvm/IR/CallSite.h"
20 #include "llvm/IR/DataLayout.h"
21 #include "llvm/IR/Function.h"
22 #include "llvm/IR/GetElementPtrTypeIterator.h"
23 #include "llvm/IR/Operator.h"
24 #include "llvm/IR/Type.h"
25
26 namespace llvm {
27
28 /// \brief Base class for use as a mix-in that aids implementing
29 /// a TargetTransformInfo-compatible class.
30 class TargetTransformInfoImplBase {
31 protected:
32   typedef TargetTransformInfo TTI;
33
34   const DataLayout &DL;
35
36   explicit TargetTransformInfoImplBase(const DataLayout &DL) : DL(DL) {}
37
38 public:
39   // Provide value semantics. MSVC requires that we spell all of these out.
40   TargetTransformInfoImplBase(const TargetTransformInfoImplBase &Arg)
41       : DL(Arg.DL) {}
42   TargetTransformInfoImplBase(TargetTransformInfoImplBase &&Arg) : DL(Arg.DL) {}
43
44   const DataLayout &getDataLayout() const { return DL; }
45
46   unsigned getOperationCost(unsigned Opcode, Type *Ty, Type *OpTy) {
47     switch (Opcode) {
48     default:
49       // By default, just classify everything as 'basic'.
50       return TTI::TCC_Basic;
51
52     case Instruction::GetElementPtr:
53       llvm_unreachable("Use getGEPCost for GEP operations!");
54
55     case Instruction::BitCast:
56       assert(OpTy && "Cast instructions must provide the operand type");
57       if (Ty == OpTy || (Ty->isPointerTy() && OpTy->isPointerTy()))
58         // Identity and pointer-to-pointer casts are free.
59         return TTI::TCC_Free;
60
61       // Otherwise, the default basic cost is used.
62       return TTI::TCC_Basic;
63
64     case Instruction::IntToPtr: {
65       // An inttoptr cast is free so long as the input is a legal integer type
66       // which doesn't contain values outside the range of a pointer.
67       unsigned OpSize = OpTy->getScalarSizeInBits();
68       if (DL.isLegalInteger(OpSize) &&
69           OpSize <= DL.getPointerTypeSizeInBits(Ty))
70         return TTI::TCC_Free;
71
72       // Otherwise it's not a no-op.
73       return TTI::TCC_Basic;
74     }
75     case Instruction::PtrToInt: {
76       // A ptrtoint cast is free so long as the result is large enough to store
77       // the pointer, and a legal integer type.
78       unsigned DestSize = Ty->getScalarSizeInBits();
79       if (DL.isLegalInteger(DestSize) &&
80           DestSize >= DL.getPointerTypeSizeInBits(OpTy))
81         return TTI::TCC_Free;
82
83       // Otherwise it's not a no-op.
84       return TTI::TCC_Basic;
85     }
86     case Instruction::Trunc:
87       // trunc to a native type is free (assuming the target has compare and
88       // shift-right of the same width).
89       if (DL.isLegalInteger(DL.getTypeSizeInBits(Ty)))
90         return TTI::TCC_Free;
91
92       return TTI::TCC_Basic;
93     }
94   }
95
96   unsigned getGEPCost(Type *PointeeType, const Value *Ptr,
97                       ArrayRef<const Value *> Operands) {
98     // In the basic model, we just assume that all-constant GEPs will be folded
99     // into their uses via addressing modes.
100     for (unsigned Idx = 0, Size = Operands.size(); Idx != Size; ++Idx)
101       if (!isa<Constant>(Operands[Idx]))
102         return TTI::TCC_Basic;
103
104     return TTI::TCC_Free;
105   }
106
107   unsigned getCallCost(FunctionType *FTy, int NumArgs) {
108     assert(FTy && "FunctionType must be provided to this routine.");
109
110     // The target-independent implementation just measures the size of the
111     // function by approximating that each argument will take on average one
112     // instruction to prepare.
113
114     if (NumArgs < 0)
115       // Set the argument number to the number of explicit arguments in the
116       // function.
117       NumArgs = FTy->getNumParams();
118
119     return TTI::TCC_Basic * (NumArgs + 1);
120   }
121
122   unsigned getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
123                             ArrayRef<Type *> ParamTys) {
124     switch (IID) {
125     default:
126       // Intrinsics rarely (if ever) have normal argument setup constraints.
127       // Model them as having a basic instruction cost.
128       // FIXME: This is wrong for libc intrinsics.
129       return TTI::TCC_Basic;
130
131     case Intrinsic::annotation:
132     case Intrinsic::assume:
133     case Intrinsic::dbg_declare:
134     case Intrinsic::dbg_value:
135     case Intrinsic::invariant_start:
136     case Intrinsic::invariant_end:
137     case Intrinsic::lifetime_start:
138     case Intrinsic::lifetime_end:
139     case Intrinsic::objectsize:
140     case Intrinsic::ptr_annotation:
141     case Intrinsic::var_annotation:
142     case Intrinsic::experimental_gc_result_int:
143     case Intrinsic::experimental_gc_result_float:
144     case Intrinsic::experimental_gc_result_ptr:
145     case Intrinsic::experimental_gc_result:
146     case Intrinsic::experimental_gc_relocate:
147       // These intrinsics don't actually represent code after lowering.
148       return TTI::TCC_Free;
149     }
150   }
151
152   bool hasBranchDivergence() { return false; }
153
154   bool isSourceOfDivergence(const Value *V) { return false; }
155
156   bool isLoweredToCall(const Function *F) {
157     // FIXME: These should almost certainly not be handled here, and instead
158     // handled with the help of TLI or the target itself. This was largely
159     // ported from existing analysis heuristics here so that such refactorings
160     // can take place in the future.
161
162     if (F->isIntrinsic())
163       return false;
164
165     if (F->hasLocalLinkage() || !F->hasName())
166       return true;
167
168     StringRef Name = F->getName();
169
170     // These will all likely lower to a single selection DAG node.
171     if (Name == "copysign" || Name == "copysignf" || Name == "copysignl" ||
172         Name == "fabs" || Name == "fabsf" || Name == "fabsl" || Name == "sin" ||
173         Name == "fmin" || Name == "fminf" || Name == "fminl" ||
174         Name == "fmax" || Name == "fmaxf" || Name == "fmaxl" ||
175         Name == "sinf" || Name == "sinl" || Name == "cos" || Name == "cosf" ||
176         Name == "cosl" || Name == "sqrt" || Name == "sqrtf" || Name == "sqrtl")
177       return false;
178
179     // These are all likely to be optimized into something smaller.
180     if (Name == "pow" || Name == "powf" || Name == "powl" || Name == "exp2" ||
181         Name == "exp2l" || Name == "exp2f" || Name == "floor" ||
182         Name == "floorf" || Name == "ceil" || Name == "round" ||
183         Name == "ffs" || Name == "ffsl" || Name == "abs" || Name == "labs" ||
184         Name == "llabs")
185       return false;
186
187     return true;
188   }
189
190   void getUnrollingPreferences(Loop *, TTI::UnrollingPreferences &) {}
191
192   bool isLegalAddImmediate(int64_t Imm) { return false; }
193
194   bool isLegalICmpImmediate(int64_t Imm) { return false; }
195
196   bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
197                              bool HasBaseReg, int64_t Scale,
198                              unsigned AddrSpace) {
199     // Guess that only reg and reg+reg addressing is allowed. This heuristic is
200     // taken from the implementation of LSR.
201     return !BaseGV && BaseOffset == 0 && (Scale == 0 || Scale == 1);
202   }
203
204   bool isLegalMaskedStore(Type *DataType, int Consecutive) { return false; }
205
206   bool isLegalMaskedLoad(Type *DataType, int Consecutive) { return false; }
207
208   int getScalingFactorCost(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
209                            bool HasBaseReg, int64_t Scale, unsigned AddrSpace) {
210     // Guess that all legal addressing mode are free.
211     if (isLegalAddressingMode(Ty, BaseGV, BaseOffset, HasBaseReg,
212                               Scale, AddrSpace))
213       return 0;
214     return -1;
215   }
216
217   bool isTruncateFree(Type *Ty1, Type *Ty2) { return false; }
218
219   bool isProfitableToHoist(Instruction *I) { return true; }
220
221   bool isTypeLegal(Type *Ty) { return false; }
222
223   unsigned getJumpBufAlignment() { return 0; }
224
225   unsigned getJumpBufSize() { return 0; }
226
227   bool shouldBuildLookupTables() { return true; }
228
229   bool enableAggressiveInterleaving(bool LoopHasReductions) { return false; }
230
231   TTI::PopcntSupportKind getPopcntSupport(unsigned IntTyWidthInBit) {
232     return TTI::PSK_Software;
233   }
234
235   bool haveFastSqrt(Type *Ty) { return false; }
236
237   unsigned getFPOpCost(Type *Ty) { return TargetTransformInfo::TCC_Basic; }
238
239   unsigned getIntImmCost(const APInt &Imm, Type *Ty) { return TTI::TCC_Basic; }
240
241   unsigned getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm,
242                          Type *Ty) {
243     return TTI::TCC_Free;
244   }
245
246   unsigned getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
247                          Type *Ty) {
248     return TTI::TCC_Free;
249   }
250
251   unsigned getNumberOfRegisters(bool Vector) { return 8; }
252
253   unsigned getRegisterBitWidth(bool Vector) { return 32; }
254
255   unsigned getMaxInterleaveFactor(unsigned VF) { return 1; }
256
257   unsigned getArithmeticInstrCost(unsigned Opcode, Type *Ty,
258                                   TTI::OperandValueKind Opd1Info,
259                                   TTI::OperandValueKind Opd2Info,
260                                   TTI::OperandValueProperties Opd1PropInfo,
261                                   TTI::OperandValueProperties Opd2PropInfo) {
262     return 1;
263   }
264
265   unsigned getShuffleCost(TTI::ShuffleKind Kind, Type *Ty, int Index,
266                           Type *SubTp) {
267     return 1;
268   }
269
270   unsigned getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src) { return 1; }
271
272   unsigned getCFInstrCost(unsigned Opcode) { return 1; }
273
274   unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy) {
275     return 1;
276   }
277
278   unsigned getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index) {
279     return 1;
280   }
281
282   unsigned getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
283                            unsigned AddressSpace) {
284     return 1;
285   }
286
287   unsigned getMaskedMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
288                                  unsigned AddressSpace) {
289     return 1;
290   }
291
292   unsigned getInterleavedMemoryOpCost(unsigned Opcode, Type *VecTy,
293                                       unsigned Factor,
294                                       ArrayRef<unsigned> Indices,
295                                       unsigned Alignment,
296                                       unsigned AddressSpace) {
297     return 1;
298   }
299
300   unsigned getIntrinsicInstrCost(Intrinsic::ID ID, Type *RetTy,
301                                  ArrayRef<Type *> Tys) {
302     return 1;
303   }
304
305   unsigned getCallInstrCost(Function *F, Type *RetTy, ArrayRef<Type *> Tys) {
306     return 1;
307   }
308
309   unsigned getNumberOfParts(Type *Tp) { return 0; }
310
311   unsigned getAddressComputationCost(Type *Tp, bool) { return 0; }
312
313   unsigned getReductionCost(unsigned, Type *, bool) { return 1; }
314
315   unsigned getCostOfKeepingLiveOverCall(ArrayRef<Type *> Tys) { return 0; }
316
317   bool getTgtMemIntrinsic(IntrinsicInst *Inst, MemIntrinsicInfo &Info) {
318     return false;
319   }
320
321   Value *getOrCreateResultFromMemIntrinsic(IntrinsicInst *Inst,
322                                            Type *ExpectedType) {
323     return nullptr;
324   }
325
326   bool hasCompatibleFunctionAttributes(const Function *Caller,
327                                        const Function *Callee) const {
328     return (Caller->getFnAttribute("target-cpu") ==
329             Callee->getFnAttribute("target-cpu")) &&
330            (Caller->getFnAttribute("target-features") ==
331             Callee->getFnAttribute("target-features"));
332   }
333 };
334
335 /// \brief CRTP base class for use as a mix-in that aids implementing
336 /// a TargetTransformInfo-compatible class.
337 template <typename T>
338 class TargetTransformInfoImplCRTPBase : public TargetTransformInfoImplBase {
339 private:
340   typedef TargetTransformInfoImplBase BaseT;
341
342 protected:
343   explicit TargetTransformInfoImplCRTPBase(const DataLayout &DL) : BaseT(DL) {}
344
345 public:
346   // Provide value semantics. MSVC requires that we spell all of these out.
347   TargetTransformInfoImplCRTPBase(const TargetTransformInfoImplCRTPBase &Arg)
348       : BaseT(static_cast<const BaseT &>(Arg)) {}
349   TargetTransformInfoImplCRTPBase(TargetTransformInfoImplCRTPBase &&Arg)
350       : BaseT(std::move(static_cast<BaseT &>(Arg))) {}
351
352   using BaseT::getCallCost;
353
354   unsigned getCallCost(const Function *F, int NumArgs) {
355     assert(F && "A concrete function must be provided to this routine.");
356
357     if (NumArgs < 0)
358       // Set the argument number to the number of explicit arguments in the
359       // function.
360       NumArgs = F->arg_size();
361
362     if (Intrinsic::ID IID = F->getIntrinsicID()) {
363       FunctionType *FTy = F->getFunctionType();
364       SmallVector<Type *, 8> ParamTys(FTy->param_begin(), FTy->param_end());
365       return static_cast<T *>(this)
366           ->getIntrinsicCost(IID, FTy->getReturnType(), ParamTys);
367     }
368
369     if (!static_cast<T *>(this)->isLoweredToCall(F))
370       return TTI::TCC_Basic; // Give a basic cost if it will be lowered
371                              // directly.
372
373     return static_cast<T *>(this)->getCallCost(F->getFunctionType(), NumArgs);
374   }
375
376   unsigned getCallCost(const Function *F, ArrayRef<const Value *> Arguments) {
377     // Simply delegate to generic handling of the call.
378     // FIXME: We should use instsimplify or something else to catch calls which
379     // will constant fold with these arguments.
380     return static_cast<T *>(this)->getCallCost(F, Arguments.size());
381   }
382
383   using BaseT::getGEPCost;
384
385   unsigned getGEPCost(Type *PointeeType, const Value *Ptr,
386                       ArrayRef<const Value *> Operands) {
387     const GlobalValue *BaseGV = nullptr;
388     if (Ptr != nullptr) {
389       // TODO: will remove this when pointers have an opaque type.
390       assert(Ptr->getType()->getScalarType()->getPointerElementType() ==
391                  PointeeType &&
392              "explicit pointee type doesn't match operand's pointee type");
393       BaseGV = dyn_cast<GlobalValue>(Ptr->stripPointerCasts());
394     }
395     bool HasBaseReg = (BaseGV == nullptr);
396     int64_t BaseOffset = 0;
397     int64_t Scale = 0;
398
399     // Assumes the address space is 0 when Ptr is nullptr.
400     unsigned AS =
401         (Ptr == nullptr ? 0 : Ptr->getType()->getPointerAddressSpace());
402     auto GTI = gep_type_begin(PointerType::get(PointeeType, AS), Operands);
403     for (auto I = Operands.begin(); I != Operands.end(); ++I, ++GTI) {
404       if (isa<SequentialType>(*GTI)) {
405         int64_t ElementSize = DL.getTypeAllocSize(GTI.getIndexedType());
406         if (const ConstantInt *ConstIdx = dyn_cast<ConstantInt>(*I)) {
407           BaseOffset += ConstIdx->getSExtValue() * ElementSize;
408         } else {
409           // Needs scale register.
410           if (Scale != 0) {
411             // No addressing mode takes two scale registers.
412             return TTI::TCC_Basic;
413           }
414           Scale = ElementSize;
415         }
416       } else {
417         StructType *STy = cast<StructType>(*GTI);
418         uint64_t Field = cast<ConstantInt>(*I)->getZExtValue();
419         BaseOffset += DL.getStructLayout(STy)->getElementOffset(Field);
420       }
421     }
422
423     if (static_cast<T *>(this)->isLegalAddressingMode(
424             PointerType::get(*GTI, AS), const_cast<GlobalValue *>(BaseGV),
425             BaseOffset, HasBaseReg, Scale, AS)) {
426       return TTI::TCC_Free;
427     }
428     return TTI::TCC_Basic;
429   }
430
431   using BaseT::getIntrinsicCost;
432
433   unsigned getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
434                             ArrayRef<const Value *> Arguments) {
435     // Delegate to the generic intrinsic handling code. This mostly provides an
436     // opportunity for targets to (for example) special case the cost of
437     // certain intrinsics based on constants used as arguments.
438     SmallVector<Type *, 8> ParamTys;
439     ParamTys.reserve(Arguments.size());
440     for (unsigned Idx = 0, Size = Arguments.size(); Idx != Size; ++Idx)
441       ParamTys.push_back(Arguments[Idx]->getType());
442     return static_cast<T *>(this)->getIntrinsicCost(IID, RetTy, ParamTys);
443   }
444
445   unsigned getUserCost(const User *U) {
446     if (isa<PHINode>(U))
447       return TTI::TCC_Free; // Model all PHI nodes as free.
448
449     if (const GEPOperator *GEP = dyn_cast<GEPOperator>(U)) {
450       SmallVector<Value *, 4> Indices(GEP->idx_begin(), GEP->idx_end());
451       return static_cast<T *>(this)->getGEPCost(
452           GEP->getSourceElementType(), GEP->getPointerOperand(), Indices);
453     }
454
455     if (auto CS = ImmutableCallSite(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 static_cast<T *>(this)
461             ->getCallCost(cast<FunctionType>(FTy), CS.arg_size());
462       }
463
464       SmallVector<const Value *, 8> Arguments(CS.arg_begin(), CS.arg_end());
465       return static_cast<T *>(this)->getCallCost(F, Arguments);
466     }
467
468     if (const CastInst *CI = dyn_cast<CastInst>(U)) {
469       // Result of a cmp instruction is often extended (to be used by other
470       // cmp instructions, logical or return instructions). These are usually
471       // nop on most sane targets.
472       if (isa<CmpInst>(CI->getOperand(0)))
473         return TTI::TCC_Free;
474     }
475
476     return static_cast<T *>(this)->getOperationCost(
477         Operator::getOpcode(U), U->getType(),
478         U->getNumOperands() == 1 ? U->getOperand(0)->getType() : nullptr);
479   }
480 };
481 }
482
483 #endif