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