]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - contrib/llvm/include/llvm/TargetTransformInfo.h
MFC r244628:
[FreeBSD/stable/9.git] / contrib / llvm / include / llvm / TargetTransformInfo.h
1 //===- llvm/Transforms/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 //
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_TRANSFORMS_TARGET_TRANSFORM_INTERFACE
23 #define LLVM_TRANSFORMS_TARGET_TRANSFORM_INTERFACE
24
25 #include "llvm/Pass.h"
26 #include "llvm/AddressingMode.h"
27 #include "llvm/Support/DataTypes.h"
28 #include "llvm/Type.h"
29
30 namespace llvm {
31
32 class ScalarTargetTransformInfo;
33 class VectorTargetTransformInfo;
34
35 /// TargetTransformInfo - This pass provides access to the codegen
36 /// interfaces that are needed for IR-level transformations.
37 class TargetTransformInfo : public ImmutablePass {
38 private:
39   const ScalarTargetTransformInfo *STTI;
40   const VectorTargetTransformInfo *VTTI;
41 public:
42   /// Default ctor.
43   ///
44   /// @note This has to exist, because this is a pass, but it should never be
45   /// used.
46   TargetTransformInfo();
47
48   TargetTransformInfo(const ScalarTargetTransformInfo* S,
49                       const VectorTargetTransformInfo *V)
50       : ImmutablePass(ID), STTI(S), VTTI(V) {
51     initializeTargetTransformInfoPass(*PassRegistry::getPassRegistry());
52   }
53
54   TargetTransformInfo(const TargetTransformInfo &T) :
55     ImmutablePass(ID), STTI(T.STTI), VTTI(T.VTTI) { }
56
57   const ScalarTargetTransformInfo* getScalarTargetTransformInfo() const {
58     return STTI;
59   }
60   const VectorTargetTransformInfo* getVectorTargetTransformInfo() const {
61     return VTTI;
62   }
63
64   /// Pass identification, replacement for typeid.
65   static char ID;
66 };
67
68 // ---------------------------------------------------------------------------//
69 //  The classes below are inherited and implemented by target-specific classes
70 //  in the codegen.
71 // ---------------------------------------------------------------------------//
72
73 /// ScalarTargetTransformInfo - This interface is used by IR-level passes
74 /// that need target-dependent information for generic scalar transformations.
75 /// LSR, and LowerInvoke use this interface.
76 class ScalarTargetTransformInfo {
77 public:
78   virtual ~ScalarTargetTransformInfo() {}
79
80   /// isLegalAddImmediate - Return true if the specified immediate is legal
81   /// add immediate, that is the target has add instructions which can add
82   /// a register with the immediate without having to materialize the
83   /// immediate into a register.
84   virtual bool isLegalAddImmediate(int64_t) const {
85     return false;
86   }
87   /// isLegalICmpImmediate - Return true if the specified immediate is legal
88   /// icmp immediate, that is the target has icmp instructions which can compare
89   /// a register against the immediate without having to materialize the
90   /// immediate into a register.
91   virtual bool isLegalICmpImmediate(int64_t) const {
92     return false;
93   }
94   /// isLegalAddressingMode - Return true if the addressing mode represented by
95   /// AM is legal for this target, for a load/store of the specified type.
96   /// The type may be VoidTy, in which case only return true if the addressing
97   /// mode is legal for a load/store of any legal type.
98   /// TODO: Handle pre/postinc as well.
99   virtual bool isLegalAddressingMode(const AddrMode &AM, Type *Ty) const {
100     return false;
101   }
102   /// isTruncateFree - Return true if it's free to truncate a value of
103   /// type Ty1 to type Ty2. e.g. On x86 it's free to truncate a i32 value in
104   /// register EAX to i16 by referencing its sub-register AX.
105   virtual bool isTruncateFree(Type *Ty1, Type *Ty2) const {
106     return false;
107   }
108   /// Is this type legal.
109   virtual bool isTypeLegal(Type *Ty) const {
110     return false;
111   }
112   /// getJumpBufAlignment - returns the target's jmp_buf alignment in bytes
113   virtual unsigned getJumpBufAlignment() const {
114     return 0;
115   }
116   /// getJumpBufSize - returns the target's jmp_buf size in bytes.
117   virtual unsigned getJumpBufSize() const {
118     return 0;
119   }
120   /// shouldBuildLookupTables - Return true if switches should be turned into
121   /// lookup tables for the target.
122   virtual bool shouldBuildLookupTables() const {
123     return true;
124   }
125 };
126
127 /// VectorTargetTransformInfo - This interface is used by the vectorizers
128 /// to estimate the profitability of vectorization for different instructions.
129 class VectorTargetTransformInfo {
130 public:
131   virtual ~VectorTargetTransformInfo() {}
132
133   /// Returns the expected cost of the instruction opcode. The opcode is one of
134   /// the enums like Instruction::Add. The type arguments are the type of the
135   /// operation.
136   /// Most instructions only use the first type and in that case the second
137   /// operand is ignored.
138   ///
139   /// Exceptions:
140   /// * Br instructions do not use any of the types.
141   /// * Select instructions pass the return type as Ty1 and the selector as Ty2.
142   /// * Cast instructions pass the destination as Ty1 and the source as Ty2.
143   /// * Insert/Extract element pass only the vector type as Ty1.
144   /// * ShuffleVector, Load, Store do not use this call.
145   virtual unsigned getInstrCost(unsigned Opcode,
146                                 Type *Ty1 = 0,
147                                 Type *Ty2 = 0) const {
148     return 1;
149   }
150
151   /// Returns the expected cost of arithmetic ops, such as mul, xor, fsub, etc.
152   virtual unsigned getArithmeticInstrCost(unsigned Opcode, Type *Ty) const {
153     return 1;
154   }
155
156   /// Returns the cost of a vector broadcast of a scalar at place zero to a
157   /// vector of type 'Tp'.
158   virtual unsigned getBroadcastCost(Type *Tp) const {
159     return 1;
160   }
161
162   /// Returns the expected cost of cast instructions, such as bitcast, trunc,
163   /// zext, etc.
164   virtual unsigned getCastInstrCost(unsigned Opcode, Type *Dst,
165                                     Type *Src) const {
166     return 1;
167   }
168
169   /// Returns the expected cost of control-flow related instrutctions such as
170   /// Phi, Ret, Br.
171   virtual unsigned getCFInstrCost(unsigned Opcode) const {
172     return 1;
173   }
174
175   /// Returns the expected cost of compare and select instructions.
176   virtual unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
177                                       Type *CondTy = 0) const {
178     return 1;
179   }
180
181   /// Returns the expected cost of vector Insert and Extract.
182   /// Use -1 to indicate that there is no information on the index value.
183   virtual unsigned getVectorInstrCost(unsigned Opcode, Type *Val,
184                                       unsigned Index = -1) const {
185     return 1;
186   }
187
188   /// Returns the cost of Load and Store instructions.
189   virtual unsigned getMemoryOpCost(unsigned Opcode, Type *Src,
190                                    unsigned Alignment,
191                                    unsigned AddressSpace) const {
192     return 1;
193   }
194
195   /// Returns the number of pieces into which the provided type must be
196   /// split during legalization. Zero is returned when the answer is unknown.
197   virtual unsigned getNumberOfParts(Type *Tp) const {
198     return 0;
199   }
200 };
201
202 } // End llvm namespace
203
204 #endif