Re-sort #include lines using my handy dandy ./utils/sort_includes.py
[oota-llvm.git] / include / llvm / Analysis / TargetTransformInfo.h
1 //===- TargetTransformInfo.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 pass exposes codegen information to IR-level passes. Every
11 /// transformation that uses codegen information is broken into three parts:
12 /// 1. The IR-level analysis pass.
13 /// 2. The IR-level transformation interface which provides the needed
14 ///    information.
15 /// 3. Codegen-level implementation which uses target-specific hooks.
16 ///
17 /// This file defines #2, which is the interface that IR-level transformations
18 /// use for querying the codegen.
19 ///
20 //===----------------------------------------------------------------------===//
21
22 #ifndef LLVM_ANALYSIS_TARGETTRANSFORMINFO_H
23 #define LLVM_ANALYSIS_TARGETTRANSFORMINFO_H
24
25 #include "llvm/ADT/Optional.h"
26 #include "llvm/IR/IntrinsicInst.h"
27 #include "llvm/IR/Intrinsics.h"
28 #include "llvm/Pass.h"
29 #include "llvm/Support/DataTypes.h"
30
31 namespace llvm {
32
33 class Function;
34 class GlobalValue;
35 class Loop;
36 class PreservedAnalyses;
37 class Type;
38 class User;
39 class Value;
40
41 /// \brief Information about a load/store intrinsic defined by the target.
42 struct MemIntrinsicInfo {
43   MemIntrinsicInfo()
44       : ReadMem(false), WriteMem(false), Vol(false), MatchingId(0),
45         NumMemRefs(0), PtrVal(nullptr) {}
46   bool ReadMem;
47   bool WriteMem;
48   bool Vol;
49   // Same Id is set by the target for corresponding load/store intrinsics.
50   unsigned short MatchingId;
51   int NumMemRefs;
52   Value *PtrVal;
53 };
54
55 /// \brief This pass provides access to the codegen interfaces that are needed
56 /// for IR-level transformations.
57 class TargetTransformInfo {
58 public:
59   /// \brief Construct a TTI object using a type implementing the \c Concept
60   /// API below.
61   ///
62   /// This is used by targets to construct a TTI wrapping their target-specific
63   /// implementaion that encodes appropriate costs for their target.
64   template <typename T> TargetTransformInfo(T Impl);
65
66   /// \brief Construct a baseline TTI object using a minimal implementation of
67   /// the \c Concept API below.
68   ///
69   /// The TTI implementation will reflect the information in the DataLayout
70   /// provided if non-null.
71   explicit TargetTransformInfo(const DataLayout *DL);
72
73   // Provide move semantics.
74   TargetTransformInfo(TargetTransformInfo &&Arg);
75   TargetTransformInfo &operator=(TargetTransformInfo &&RHS);
76
77   // We need to define the destructor out-of-line to define our sub-classes
78   // out-of-line.
79   ~TargetTransformInfo();
80
81   /// \brief Handle the invalidation of this information.
82   ///
83   /// When used as a result of \c TargetIRAnalysis this method will be called
84   /// when the function this was computed for changes. When it returns false,
85   /// the information is preserved across those changes.
86   bool invalidate(Function &, const PreservedAnalyses &) {
87     // FIXME: We should probably in some way ensure that the subtarget
88     // information for a function hasn't changed.
89     return false;
90   }
91
92   /// \name Generic Target Information
93   /// @{
94
95   /// \brief Underlying constants for 'cost' values in this interface.
96   ///
97   /// Many APIs in this interface return a cost. This enum defines the
98   /// fundamental values that should be used to interpret (and produce) those
99   /// costs. The costs are returned as an unsigned rather than a member of this
100   /// enumeration because it is expected that the cost of one IR instruction
101   /// may have a multiplicative factor to it or otherwise won't fit directly
102   /// into the enum. Moreover, it is common to sum or average costs which works
103   /// better as simple integral values. Thus this enum only provides constants.
104   ///
105   /// Note that these costs should usually reflect the intersection of code-size
106   /// cost and execution cost. A free instruction is typically one that folds
107   /// into another instruction. For example, reg-to-reg moves can often be
108   /// skipped by renaming the registers in the CPU, but they still are encoded
109   /// and thus wouldn't be considered 'free' here.
110   enum TargetCostConstants {
111     TCC_Free = 0,     ///< Expected to fold away in lowering.
112     TCC_Basic = 1,    ///< The cost of a typical 'add' instruction.
113     TCC_Expensive = 4 ///< The cost of a 'div' instruction on x86.
114   };
115
116   /// \brief Estimate the cost of a specific operation when lowered.
117   ///
118   /// Note that this is designed to work on an arbitrary synthetic opcode, and
119   /// thus work for hypothetical queries before an instruction has even been
120   /// formed. However, this does *not* work for GEPs, and must not be called
121   /// for a GEP instruction. Instead, use the dedicated getGEPCost interface as
122   /// analyzing a GEP's cost required more information.
123   ///
124   /// Typically only the result type is required, and the operand type can be
125   /// omitted. However, if the opcode is one of the cast instructions, the
126   /// operand type is required.
127   ///
128   /// The returned cost is defined in terms of \c TargetCostConstants, see its
129   /// comments for a detailed explanation of the cost values.
130   unsigned getOperationCost(unsigned Opcode, Type *Ty,
131                             Type *OpTy = nullptr) const;
132
133   /// \brief Estimate the cost of a GEP operation when lowered.
134   ///
135   /// The contract for this function is the same as \c getOperationCost except
136   /// that it supports an interface that provides extra information specific to
137   /// the GEP operation.
138   unsigned getGEPCost(const Value *Ptr, ArrayRef<const Value *> Operands) const;
139
140   /// \brief Estimate the cost of a function call when lowered.
141   ///
142   /// The contract for this is the same as \c getOperationCost except that it
143   /// supports an interface that provides extra information specific to call
144   /// instructions.
145   ///
146   /// This is the most basic query for estimating call cost: it only knows the
147   /// function type and (potentially) the number of arguments at the call site.
148   /// The latter is only interesting for varargs function types.
149   unsigned getCallCost(FunctionType *FTy, int NumArgs = -1) const;
150
151   /// \brief Estimate the cost of calling a specific function when lowered.
152   ///
153   /// This overload adds the ability to reason about the particular function
154   /// being called in the event it is a library call with special lowering.
155   unsigned getCallCost(const Function *F, int NumArgs = -1) const;
156
157   /// \brief Estimate the cost of calling a specific function when lowered.
158   ///
159   /// This overload allows specifying a set of candidate argument values.
160   unsigned getCallCost(const Function *F,
161                        ArrayRef<const Value *> Arguments) const;
162
163   /// \brief Estimate the cost of an intrinsic when lowered.
164   ///
165   /// Mirrors the \c getCallCost method but uses an intrinsic identifier.
166   unsigned getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
167                             ArrayRef<Type *> ParamTys) const;
168
169   /// \brief Estimate the cost of an intrinsic when lowered.
170   ///
171   /// Mirrors the \c getCallCost method but uses an intrinsic identifier.
172   unsigned getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
173                             ArrayRef<const Value *> Arguments) const;
174
175   /// \brief Estimate the cost of a given IR user when lowered.
176   ///
177   /// This can estimate the cost of either a ConstantExpr or Instruction when
178   /// lowered. It has two primary advantages over the \c getOperationCost and
179   /// \c getGEPCost above, and one significant disadvantage: it can only be
180   /// used when the IR construct has already been formed.
181   ///
182   /// The advantages are that it can inspect the SSA use graph to reason more
183   /// accurately about the cost. For example, all-constant-GEPs can often be
184   /// folded into a load or other instruction, but if they are used in some
185   /// other context they may not be folded. This routine can distinguish such
186   /// cases.
187   ///
188   /// The returned cost is defined in terms of \c TargetCostConstants, see its
189   /// comments for a detailed explanation of the cost values.
190   unsigned getUserCost(const User *U) const;
191
192   /// \brief hasBranchDivergence - Return true if branch divergence exists.
193   /// Branch divergence has a significantly negative impact on GPU performance
194   /// when threads in the same wavefront take different paths due to conditional
195   /// branches.
196   bool hasBranchDivergence() const;
197
198   /// \brief Test whether calls to a function lower to actual program function
199   /// calls.
200   ///
201   /// The idea is to test whether the program is likely to require a 'call'
202   /// instruction or equivalent in order to call the given function.
203   ///
204   /// FIXME: It's not clear that this is a good or useful query API. Client's
205   /// should probably move to simpler cost metrics using the above.
206   /// Alternatively, we could split the cost interface into distinct code-size
207   /// and execution-speed costs. This would allow modelling the core of this
208   /// query more accurately as a call is a single small instruction, but
209   /// incurs significant execution cost.
210   bool isLoweredToCall(const Function *F) const;
211
212   /// Parameters that control the generic loop unrolling transformation.
213   struct UnrollingPreferences {
214     /// The cost threshold for the unrolled loop, compared to
215     /// CodeMetrics.NumInsts aggregated over all basic blocks in the loop body.
216     /// The unrolling factor is set such that the unrolled loop body does not
217     /// exceed this cost. Set this to UINT_MAX to disable the loop body cost
218     /// restriction.
219     unsigned Threshold;
220     /// If complete unrolling could help other optimizations (e.g. InstSimplify)
221     /// to remove N% of instructions, then we can go beyond unroll threshold.
222     /// This value set the minimal percent for allowing that.
223     unsigned MinPercentOfOptimized;
224     /// The absolute cost threshold. We won't go beyond this even if complete
225     /// unrolling could result in optimizing out 90% of instructions.
226     unsigned AbsoluteThreshold;
227     /// The cost threshold for the unrolled loop when optimizing for size (set
228     /// to UINT_MAX to disable).
229     unsigned OptSizeThreshold;
230     /// The cost threshold for the unrolled loop, like Threshold, but used
231     /// for partial/runtime unrolling (set to UINT_MAX to disable).
232     unsigned PartialThreshold;
233     /// The cost threshold for the unrolled loop when optimizing for size, like
234     /// OptSizeThreshold, but used for partial/runtime unrolling (set to
235     /// UINT_MAX to disable).
236     unsigned PartialOptSizeThreshold;
237     /// A forced unrolling factor (the number of concatenated bodies of the
238     /// original loop in the unrolled loop body). When set to 0, the unrolling
239     /// transformation will select an unrolling factor based on the current cost
240     /// threshold and other factors.
241     unsigned Count;
242     // Set the maximum unrolling factor. The unrolling factor may be selected
243     // using the appropriate cost threshold, but may not exceed this number
244     // (set to UINT_MAX to disable). This does not apply in cases where the
245     // loop is being fully unrolled.
246     unsigned MaxCount;
247     /// Allow partial unrolling (unrolling of loops to expand the size of the
248     /// loop body, not only to eliminate small constant-trip-count loops).
249     bool Partial;
250     /// Allow runtime unrolling (unrolling of loops to expand the size of the
251     /// loop body even when the number of loop iterations is not known at
252     /// compile time).
253     bool Runtime;
254   };
255
256   /// \brief Get target-customized preferences for the generic loop unrolling
257   /// transformation. The caller will initialize UP with the current
258   /// target-independent defaults.
259   void getUnrollingPreferences(Loop *L, UnrollingPreferences &UP) const;
260
261   /// @}
262
263   /// \name Scalar Target Information
264   /// @{
265
266   /// \brief Flags indicating the kind of support for population count.
267   ///
268   /// Compared to the SW implementation, HW support is supposed to
269   /// significantly boost the performance when the population is dense, and it
270   /// may or may not degrade performance if the population is sparse. A HW
271   /// support is considered as "Fast" if it can outperform, or is on a par
272   /// with, SW implementation when the population is sparse; otherwise, it is
273   /// considered as "Slow".
274   enum PopcntSupportKind { PSK_Software, PSK_SlowHardware, PSK_FastHardware };
275
276   /// \brief Return true if the specified immediate is legal add immediate, that
277   /// is the target has add instructions which can add a register with the
278   /// immediate without having to materialize the immediate into a register.
279   bool isLegalAddImmediate(int64_t Imm) const;
280
281   /// \brief Return true if the specified immediate is legal icmp immediate,
282   /// that is the target has icmp instructions which can compare a register
283   /// against the immediate without having to materialize the immediate into a
284   /// register.
285   bool isLegalICmpImmediate(int64_t Imm) const;
286
287   /// \brief Return true if the addressing mode represented by AM is legal for
288   /// this target, for a load/store of the specified type.
289   /// The type may be VoidTy, in which case only return true if the addressing
290   /// mode is legal for a load/store of any legal type.
291   /// TODO: Handle pre/postinc as well.
292   bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
293                              bool HasBaseReg, int64_t Scale) const;
294
295   /// \brief Return true if the target works with masked instruction
296   /// AVX2 allows masks for consecutive load and store for i32 and i64 elements.
297   /// AVX-512 architecture will also allow masks for non-consecutive memory
298   /// accesses.
299   bool isLegalMaskedStore(Type *DataType, int Consecutive) const;
300   bool isLegalMaskedLoad(Type *DataType, int Consecutive) const;
301
302   /// \brief Return the cost of the scaling factor used in the addressing
303   /// mode represented by AM for this target, for a load/store
304   /// of the specified type.
305   /// If the AM is supported, the return value must be >= 0.
306   /// If the AM is not supported, it returns a negative value.
307   /// TODO: Handle pre/postinc as well.
308   int getScalingFactorCost(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
309                            bool HasBaseReg, int64_t Scale) const;
310
311   /// \brief Return true if it's free to truncate a value of type Ty1 to type
312   /// Ty2. e.g. On x86 it's free to truncate a i32 value in register EAX to i16
313   /// by referencing its sub-register AX.
314   bool isTruncateFree(Type *Ty1, Type *Ty2) const;
315
316   /// \brief Return true if this type is legal.
317   bool isTypeLegal(Type *Ty) const;
318
319   /// \brief Returns the target's jmp_buf alignment in bytes.
320   unsigned getJumpBufAlignment() const;
321
322   /// \brief Returns the target's jmp_buf size in bytes.
323   unsigned getJumpBufSize() const;
324
325   /// \brief Return true if switches should be turned into lookup tables for the
326   /// target.
327   bool shouldBuildLookupTables() const;
328
329   /// \brief Return hardware support for population count.
330   PopcntSupportKind getPopcntSupport(unsigned IntTyWidthInBit) const;
331
332   /// \brief Return true if the hardware has a fast square-root instruction.
333   bool haveFastSqrt(Type *Ty) const;
334
335   /// \brief Return the expected cost of supporting the floating point operation
336   /// of the specified type.
337   unsigned getFPOpCost(Type *Ty) const;
338
339   /// \brief Return the expected cost of materializing for the given integer
340   /// immediate of the specified type.
341   unsigned getIntImmCost(const APInt &Imm, Type *Ty) const;
342
343   /// \brief Return the expected cost of materialization for the given integer
344   /// immediate of the specified type for a given instruction. The cost can be
345   /// zero if the immediate can be folded into the specified instruction.
346   unsigned getIntImmCost(unsigned Opc, unsigned Idx, const APInt &Imm,
347                          Type *Ty) const;
348   unsigned getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
349                          Type *Ty) const;
350   /// @}
351
352   /// \name Vector Target Information
353   /// @{
354
355   /// \brief The various kinds of shuffle patterns for vector queries.
356   enum ShuffleKind {
357     SK_Broadcast,       ///< Broadcast element 0 to all other elements.
358     SK_Reverse,         ///< Reverse the order of the vector.
359     SK_Alternate,       ///< Choose alternate elements from vector.
360     SK_InsertSubvector, ///< InsertSubvector. Index indicates start offset.
361     SK_ExtractSubvector ///< ExtractSubvector Index indicates start offset.
362   };
363
364   /// \brief Additional information about an operand's possible values.
365   enum OperandValueKind {
366     OK_AnyValue,               // Operand can have any value.
367     OK_UniformValue,           // Operand is uniform (splat of a value).
368     OK_UniformConstantValue,   // Operand is uniform constant.
369     OK_NonUniformConstantValue // Operand is a non uniform constant value.
370   };
371
372   /// \brief Additional properties of an operand's values.
373   enum OperandValueProperties { OP_None = 0, OP_PowerOf2 = 1 };
374
375   /// \return The number of scalar or vector registers that the target has.
376   /// If 'Vectors' is true, it returns the number of vector registers. If it is
377   /// set to false, it returns the number of scalar registers.
378   unsigned getNumberOfRegisters(bool Vector) const;
379
380   /// \return The width of the largest scalar or vector register type.
381   unsigned getRegisterBitWidth(bool Vector) const;
382
383   /// \return The maximum interleave factor that any transform should try to
384   /// perform for this target. This number depends on the level of parallelism
385   /// and the number of execution units in the CPU.
386   unsigned getMaxInterleaveFactor() const;
387
388   /// \return The expected cost of arithmetic ops, such as mul, xor, fsub, etc.
389   unsigned
390   getArithmeticInstrCost(unsigned Opcode, Type *Ty,
391                          OperandValueKind Opd1Info = OK_AnyValue,
392                          OperandValueKind Opd2Info = OK_AnyValue,
393                          OperandValueProperties Opd1PropInfo = OP_None,
394                          OperandValueProperties Opd2PropInfo = OP_None) const;
395
396   /// \return The cost of a shuffle instruction of kind Kind and of type Tp.
397   /// The index and subtype parameters are used by the subvector insertion and
398   /// extraction shuffle kinds.
399   unsigned getShuffleCost(ShuffleKind Kind, Type *Tp, int Index = 0,
400                           Type *SubTp = nullptr) const;
401
402   /// \return The expected cost of cast instructions, such as bitcast, trunc,
403   /// zext, etc.
404   unsigned getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src) const;
405
406   /// \return The expected cost of control-flow related instructions such as
407   /// Phi, Ret, Br.
408   unsigned getCFInstrCost(unsigned Opcode) const;
409
410   /// \returns The expected cost of compare and select instructions.
411   unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
412                               Type *CondTy = nullptr) const;
413
414   /// \return The expected cost of vector Insert and Extract.
415   /// Use -1 to indicate that there is no information on the index value.
416   unsigned getVectorInstrCost(unsigned Opcode, Type *Val,
417                               unsigned Index = -1) const;
418
419   /// \return The cost of Load and Store instructions.
420   unsigned getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
421                            unsigned AddressSpace) const;
422
423   /// \return The cost of masked Load and Store instructions.
424   unsigned getMaskedMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
425                                  unsigned AddressSpace) const;
426
427   /// \brief Calculate the cost of performing a vector reduction.
428   ///
429   /// This is the cost of reducing the vector value of type \p Ty to a scalar
430   /// value using the operation denoted by \p Opcode. The form of the reduction
431   /// can either be a pairwise reduction or a reduction that splits the vector
432   /// at every reduction level.
433   ///
434   /// Pairwise:
435   ///  (v0, v1, v2, v3)
436   ///  ((v0+v1), (v2, v3), undef, undef)
437   /// Split:
438   ///  (v0, v1, v2, v3)
439   ///  ((v0+v2), (v1+v3), undef, undef)
440   unsigned getReductionCost(unsigned Opcode, Type *Ty,
441                             bool IsPairwiseForm) const;
442
443   /// \returns The cost of Intrinsic instructions.
444   unsigned getIntrinsicInstrCost(Intrinsic::ID ID, Type *RetTy,
445                                  ArrayRef<Type *> Tys) const;
446
447   /// \returns The number of pieces into which the provided type must be
448   /// split during legalization. Zero is returned when the answer is unknown.
449   unsigned getNumberOfParts(Type *Tp) const;
450
451   /// \returns The cost of the address computation. For most targets this can be
452   /// merged into the instruction indexing mode. Some targets might want to
453   /// distinguish between address computation for memory operations on vector
454   /// types and scalar types. Such targets should override this function.
455   /// The 'IsComplex' parameter is a hint that the address computation is likely
456   /// to involve multiple instructions and as such unlikely to be merged into
457   /// the address indexing mode.
458   unsigned getAddressComputationCost(Type *Ty, bool IsComplex = false) const;
459
460   /// \returns The cost, if any, of keeping values of the given types alive
461   /// over a callsite.
462   ///
463   /// Some types may require the use of register classes that do not have
464   /// any callee-saved registers, so would require a spill and fill.
465   unsigned getCostOfKeepingLiveOverCall(ArrayRef<Type *> Tys) const;
466
467   /// \returns True if the intrinsic is a supported memory intrinsic.  Info
468   /// will contain additional information - whether the intrinsic may write
469   /// or read to memory, volatility and the pointer.  Info is undefined
470   /// if false is returned.
471   bool getTgtMemIntrinsic(IntrinsicInst *Inst, MemIntrinsicInfo &Info) const;
472
473   /// \returns A value which is the result of the given memory intrinsic.  New
474   /// instructions may be created to extract the result from the given intrinsic
475   /// memory operation.  Returns nullptr if the target cannot create a result
476   /// from the given intrinsic.
477   Value *getOrCreateResultFromMemIntrinsic(IntrinsicInst *Inst,
478                                            Type *ExpectedType) const;
479
480   /// @}
481
482 private:
483   /// \brief The abstract base class used to type erase specific TTI
484   /// implementations.
485   class Concept;
486
487   /// \brief The template model for the base class which wraps a concrete
488   /// implementation in a type erased interface.
489   template <typename T> class Model;
490
491   std::unique_ptr<Concept> TTIImpl;
492 };
493
494 class TargetTransformInfo::Concept {
495 public:
496   virtual ~Concept() = 0;
497
498   virtual unsigned getOperationCost(unsigned Opcode, Type *Ty, Type *OpTy) = 0;
499   virtual unsigned getGEPCost(const Value *Ptr,
500                               ArrayRef<const Value *> Operands) = 0;
501   virtual unsigned getCallCost(FunctionType *FTy, int NumArgs) = 0;
502   virtual unsigned getCallCost(const Function *F, int NumArgs) = 0;
503   virtual unsigned getCallCost(const Function *F,
504                                ArrayRef<const Value *> Arguments) = 0;
505   virtual unsigned getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
506                                     ArrayRef<Type *> ParamTys) = 0;
507   virtual unsigned getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
508                                     ArrayRef<const Value *> Arguments) = 0;
509   virtual unsigned getUserCost(const User *U) = 0;
510   virtual bool hasBranchDivergence() = 0;
511   virtual bool isLoweredToCall(const Function *F) = 0;
512   virtual void getUnrollingPreferences(Loop *L, UnrollingPreferences &UP) = 0;
513   virtual bool isLegalAddImmediate(int64_t Imm) = 0;
514   virtual bool isLegalICmpImmediate(int64_t Imm) = 0;
515   virtual bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV,
516                                      int64_t BaseOffset, bool HasBaseReg,
517                                      int64_t Scale) = 0;
518   virtual bool isLegalMaskedStore(Type *DataType, int Consecutive) = 0;
519   virtual bool isLegalMaskedLoad(Type *DataType, int Consecutive) = 0;
520   virtual int getScalingFactorCost(Type *Ty, GlobalValue *BaseGV,
521                                    int64_t BaseOffset, bool HasBaseReg,
522                                    int64_t Scale) = 0;
523   virtual bool isTruncateFree(Type *Ty1, Type *Ty2) = 0;
524   virtual bool isTypeLegal(Type *Ty) = 0;
525   virtual unsigned getJumpBufAlignment() = 0;
526   virtual unsigned getJumpBufSize() = 0;
527   virtual bool shouldBuildLookupTables() = 0;
528   virtual PopcntSupportKind getPopcntSupport(unsigned IntTyWidthInBit) = 0;
529   virtual bool haveFastSqrt(Type *Ty) = 0;
530   virtual unsigned getFPOpCost(Type *Ty) = 0;
531   virtual unsigned getIntImmCost(const APInt &Imm, Type *Ty) = 0;
532   virtual unsigned getIntImmCost(unsigned Opc, unsigned Idx, const APInt &Imm,
533                                  Type *Ty) = 0;
534   virtual unsigned getIntImmCost(Intrinsic::ID IID, unsigned Idx,
535                                  const APInt &Imm, Type *Ty) = 0;
536   virtual unsigned getNumberOfRegisters(bool Vector) = 0;
537   virtual unsigned getRegisterBitWidth(bool Vector) = 0;
538   virtual unsigned getMaxInterleaveFactor() = 0;
539   virtual unsigned
540   getArithmeticInstrCost(unsigned Opcode, Type *Ty, OperandValueKind Opd1Info,
541                          OperandValueKind Opd2Info,
542                          OperandValueProperties Opd1PropInfo,
543                          OperandValueProperties Opd2PropInfo) = 0;
544   virtual unsigned getShuffleCost(ShuffleKind Kind, Type *Tp, int Index,
545                                   Type *SubTp) = 0;
546   virtual unsigned getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src) = 0;
547   virtual unsigned getCFInstrCost(unsigned Opcode) = 0;
548   virtual unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
549                                       Type *CondTy) = 0;
550   virtual unsigned getVectorInstrCost(unsigned Opcode, Type *Val,
551                                       unsigned Index) = 0;
552   virtual unsigned getMemoryOpCost(unsigned Opcode, Type *Src,
553                                    unsigned Alignment,
554                                    unsigned AddressSpace) = 0;
555   virtual unsigned getMaskedMemoryOpCost(unsigned Opcode, Type *Src,
556                                          unsigned Alignment,
557                                          unsigned AddressSpace) = 0;
558   virtual unsigned getReductionCost(unsigned Opcode, Type *Ty,
559                                     bool IsPairwiseForm) = 0;
560   virtual unsigned getIntrinsicInstrCost(Intrinsic::ID ID, Type *RetTy,
561                                          ArrayRef<Type *> Tys) = 0;
562   virtual unsigned getNumberOfParts(Type *Tp) = 0;
563   virtual unsigned getAddressComputationCost(Type *Ty, bool IsComplex) = 0;
564   virtual unsigned getCostOfKeepingLiveOverCall(ArrayRef<Type *> Tys) = 0;
565   virtual bool getTgtMemIntrinsic(IntrinsicInst *Inst,
566                                   MemIntrinsicInfo &Info) = 0;
567   virtual Value *getOrCreateResultFromMemIntrinsic(IntrinsicInst *Inst,
568                                                    Type *ExpectedType) = 0;
569 };
570
571 template <typename T>
572 class TargetTransformInfo::Model final : public TargetTransformInfo::Concept {
573   T Impl;
574
575 public:
576   Model(T Impl) : Impl(std::move(Impl)) {}
577   ~Model() override {}
578
579   unsigned getOperationCost(unsigned Opcode, Type *Ty, Type *OpTy) override {
580     return Impl.getOperationCost(Opcode, Ty, OpTy);
581   }
582   unsigned getGEPCost(const Value *Ptr,
583                       ArrayRef<const Value *> Operands) override {
584     return Impl.getGEPCost(Ptr, Operands);
585   }
586   unsigned getCallCost(FunctionType *FTy, int NumArgs) override {
587     return Impl.getCallCost(FTy, NumArgs);
588   }
589   unsigned getCallCost(const Function *F, int NumArgs) override {
590     return Impl.getCallCost(F, NumArgs);
591   }
592   unsigned getCallCost(const Function *F,
593                        ArrayRef<const Value *> Arguments) override {
594     return Impl.getCallCost(F, Arguments);
595   }
596   unsigned getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
597                             ArrayRef<Type *> ParamTys) override {
598     return Impl.getIntrinsicCost(IID, RetTy, ParamTys);
599   }
600   unsigned getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
601                             ArrayRef<const Value *> Arguments) override {
602     return Impl.getIntrinsicCost(IID, RetTy, Arguments);
603   }
604   unsigned getUserCost(const User *U) override { return Impl.getUserCost(U); }
605   bool hasBranchDivergence() override { return Impl.hasBranchDivergence(); }
606   bool isLoweredToCall(const Function *F) override {
607     return Impl.isLoweredToCall(F);
608   }
609   void getUnrollingPreferences(Loop *L, UnrollingPreferences &UP) override {
610     return Impl.getUnrollingPreferences(L, UP);
611   }
612   bool isLegalAddImmediate(int64_t Imm) override {
613     return Impl.isLegalAddImmediate(Imm);
614   }
615   bool isLegalICmpImmediate(int64_t Imm) override {
616     return Impl.isLegalICmpImmediate(Imm);
617   }
618   bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
619                              bool HasBaseReg, int64_t Scale) override {
620     return Impl.isLegalAddressingMode(Ty, BaseGV, BaseOffset, HasBaseReg,
621                                       Scale);
622   }
623   bool isLegalMaskedStore(Type *DataType, int Consecutive) override {
624     return Impl.isLegalMaskedStore(DataType, Consecutive);
625   }
626   bool isLegalMaskedLoad(Type *DataType, int Consecutive) override {
627     return Impl.isLegalMaskedLoad(DataType, Consecutive);
628   }
629   int getScalingFactorCost(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
630                            bool HasBaseReg, int64_t Scale) override {
631     return Impl.getScalingFactorCost(Ty, BaseGV, BaseOffset, HasBaseReg, Scale);
632   }
633   bool isTruncateFree(Type *Ty1, Type *Ty2) override {
634     return Impl.isTruncateFree(Ty1, Ty2);
635   }
636   bool isTypeLegal(Type *Ty) override { return Impl.isTypeLegal(Ty); }
637   unsigned getJumpBufAlignment() override { return Impl.getJumpBufAlignment(); }
638   unsigned getJumpBufSize() override { return Impl.getJumpBufSize(); }
639   bool shouldBuildLookupTables() override {
640     return Impl.shouldBuildLookupTables();
641   }
642   PopcntSupportKind getPopcntSupport(unsigned IntTyWidthInBit) override {
643     return Impl.getPopcntSupport(IntTyWidthInBit);
644   }
645   bool haveFastSqrt(Type *Ty) override { return Impl.haveFastSqrt(Ty); }
646
647   unsigned getFPOpCost(Type *Ty) override {
648     return Impl.getFPOpCost(Ty);
649   }
650
651   unsigned getIntImmCost(const APInt &Imm, Type *Ty) override {
652     return Impl.getIntImmCost(Imm, Ty);
653   }
654   unsigned getIntImmCost(unsigned Opc, unsigned Idx, const APInt &Imm,
655                          Type *Ty) override {
656     return Impl.getIntImmCost(Opc, Idx, Imm, Ty);
657   }
658   unsigned getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
659                          Type *Ty) override {
660     return Impl.getIntImmCost(IID, Idx, Imm, Ty);
661   }
662   unsigned getNumberOfRegisters(bool Vector) override {
663     return Impl.getNumberOfRegisters(Vector);
664   }
665   unsigned getRegisterBitWidth(bool Vector) override {
666     return Impl.getRegisterBitWidth(Vector);
667   }
668   unsigned getMaxInterleaveFactor() override {
669     return Impl.getMaxInterleaveFactor();
670   }
671   unsigned
672   getArithmeticInstrCost(unsigned Opcode, Type *Ty, OperandValueKind Opd1Info,
673                          OperandValueKind Opd2Info,
674                          OperandValueProperties Opd1PropInfo,
675                          OperandValueProperties Opd2PropInfo) override {
676     return Impl.getArithmeticInstrCost(Opcode, Ty, Opd1Info, Opd2Info,
677                                        Opd1PropInfo, Opd2PropInfo);
678   }
679   unsigned getShuffleCost(ShuffleKind Kind, Type *Tp, int Index,
680                           Type *SubTp) override {
681     return Impl.getShuffleCost(Kind, Tp, Index, SubTp);
682   }
683   unsigned getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src) override {
684     return Impl.getCastInstrCost(Opcode, Dst, Src);
685   }
686   unsigned getCFInstrCost(unsigned Opcode) override {
687     return Impl.getCFInstrCost(Opcode);
688   }
689   unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
690                               Type *CondTy) override {
691     return Impl.getCmpSelInstrCost(Opcode, ValTy, CondTy);
692   }
693   unsigned getVectorInstrCost(unsigned Opcode, Type *Val,
694                               unsigned Index) override {
695     return Impl.getVectorInstrCost(Opcode, Val, Index);
696   }
697   unsigned getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
698                            unsigned AddressSpace) override {
699     return Impl.getMemoryOpCost(Opcode, Src, Alignment, AddressSpace);
700   }
701   unsigned getMaskedMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
702                                  unsigned AddressSpace) override {
703     return Impl.getMaskedMemoryOpCost(Opcode, Src, Alignment, AddressSpace);
704   }
705   unsigned getReductionCost(unsigned Opcode, Type *Ty,
706                             bool IsPairwiseForm) override {
707     return Impl.getReductionCost(Opcode, Ty, IsPairwiseForm);
708   }
709   unsigned getIntrinsicInstrCost(Intrinsic::ID ID, Type *RetTy,
710                                  ArrayRef<Type *> Tys) override {
711     return Impl.getIntrinsicInstrCost(ID, RetTy, Tys);
712   }
713   unsigned getNumberOfParts(Type *Tp) override {
714     return Impl.getNumberOfParts(Tp);
715   }
716   unsigned getAddressComputationCost(Type *Ty, bool IsComplex) override {
717     return Impl.getAddressComputationCost(Ty, IsComplex);
718   }
719   unsigned getCostOfKeepingLiveOverCall(ArrayRef<Type *> Tys) override {
720     return Impl.getCostOfKeepingLiveOverCall(Tys);
721   }
722   bool getTgtMemIntrinsic(IntrinsicInst *Inst,
723                           MemIntrinsicInfo &Info) override {
724     return Impl.getTgtMemIntrinsic(Inst, Info);
725   }
726   Value *getOrCreateResultFromMemIntrinsic(IntrinsicInst *Inst,
727                                            Type *ExpectedType) override {
728     return Impl.getOrCreateResultFromMemIntrinsic(Inst, ExpectedType);
729   }
730 };
731
732 template <typename T>
733 TargetTransformInfo::TargetTransformInfo(T Impl)
734     : TTIImpl(new Model<T>(Impl)) {}
735
736 /// \brief Analysis pass providing the \c TargetTransformInfo.
737 ///
738 /// The core idea of the TargetIRAnalysis is to expose an interface through
739 /// which LLVM targets can analyze and provide information about the middle
740 /// end's target-independent IR. This supports use cases such as target-aware
741 /// cost modeling of IR constructs.
742 ///
743 /// This is a function analysis because much of the cost modeling for targets
744 /// is done in a subtarget specific way and LLVM supports compiling different
745 /// functions targeting different subtargets in order to support runtime
746 /// dispatch according to the observed subtarget.
747 class TargetIRAnalysis {
748 public:
749   typedef TargetTransformInfo Result;
750
751   /// \brief Opaque, unique identifier for this analysis pass.
752   static void *ID() { return (void *)&PassID; }
753
754   /// \brief Provide access to a name for this pass for debugging purposes.
755   static StringRef name() { return "TargetIRAnalysis"; }
756
757   /// \brief Default construct a target IR analysis.
758   ///
759   /// This will use the module's datalayout to construct a baseline
760   /// conservative TTI result.
761   TargetIRAnalysis();
762
763   /// \brief Construct an IR analysis pass around a target-provide callback.
764   ///
765   /// The callback will be called with a particular function for which the TTI
766   /// is needed and must return a TTI object for that function.
767   TargetIRAnalysis(std::function<Result(Function &)> TTICallback);
768
769   // Value semantics. We spell out the constructors for MSVC.
770   TargetIRAnalysis(const TargetIRAnalysis &Arg)
771       : TTICallback(Arg.TTICallback) {}
772   TargetIRAnalysis(TargetIRAnalysis &&Arg)
773       : TTICallback(std::move(Arg.TTICallback)) {}
774   TargetIRAnalysis &operator=(const TargetIRAnalysis &RHS) {
775     TTICallback = RHS.TTICallback;
776     return *this;
777   }
778   TargetIRAnalysis &operator=(TargetIRAnalysis &&RHS) {
779     TTICallback = std::move(RHS.TTICallback);
780     return *this;
781   }
782
783   Result run(Function &F);
784
785 private:
786   static char PassID;
787
788   /// \brief The callback used to produce a result.
789   ///
790   /// We use a completely opaque callback so that targets can provide whatever
791   /// mechanism they desire for constructing the TTI for a given function.
792   ///
793   /// FIXME: Should we really use std::function? It's relatively inefficient.
794   /// It might be possible to arrange for even stateful callbacks to outlive
795   /// the analysis and thus use a function_ref which would be lighter weight.
796   /// This may also be less error prone as the callback is likely to reference
797   /// the external TargetMachine, and that reference needs to never dangle.
798   std::function<Result(Function &)> TTICallback;
799
800   /// \brief Helper function used as the callback in the default constructor.
801   static Result getDefaultTTI(Function &F);
802 };
803
804 /// \brief Wrapper pass for TargetTransformInfo.
805 ///
806 /// This pass can be constructed from a TTI object which it stores internally
807 /// and is queried by passes.
808 class TargetTransformInfoWrapperPass : public ImmutablePass {
809   TargetIRAnalysis TIRA;
810   Optional<TargetTransformInfo> TTI;
811
812   virtual void anchor();
813
814 public:
815   static char ID;
816
817   /// \brief We must provide a default constructor for the pass but it should
818   /// never be used.
819   ///
820   /// Use the constructor below or call one of the creation routines.
821   TargetTransformInfoWrapperPass();
822
823   explicit TargetTransformInfoWrapperPass(TargetIRAnalysis TIRA);
824
825   TargetTransformInfo &getTTI(Function &F);
826 };
827
828 /// \brief Create an analysis pass wrapper around a TTI object.
829 ///
830 /// This analysis pass just holds the TTI instance and makes it available to
831 /// clients.
832 ImmutablePass *createTargetTransformInfoWrapperPass(TargetIRAnalysis TIRA);
833
834 } // End llvm namespace
835
836 #endif