Add comments.
[oota-llvm.git] / 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   explicit 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() {
58     return STTI;
59   }
60   const VectorTargetTransformInfo* getVectorTargetTransformInfo() {
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 };
121
122 class VectorTargetTransformInfo {
123   // TODO: define an interface for VectorTargetTransformInfo.
124 };
125
126 } // End llvm namespace
127
128 #endif