45a933095016c7d1ce6d16467b4bec1201bf86c6
[oota-llvm.git] / include / llvm / Target / TargetSubtargetInfo.h
1 //==-- llvm/Target/TargetSubtargetInfo.h - Target Information ----*- 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 file describes the subtarget options of a Target machine.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_TARGET_TARGETSUBTARGETINFO_H
15 #define LLVM_TARGET_TARGETSUBTARGETINFO_H
16
17 #include "llvm/MC/MCSubtargetInfo.h"
18 #include "llvm/Support/CodeGen.h"
19
20 namespace llvm {
21
22 class DataLayout;
23 class MachineFunction;
24 class MachineInstr;
25 class SDep;
26 class SUnit;
27 class TargetFrameLowering;
28 class TargetInstrInfo;
29 class TargetJITInfo;
30 class TargetLowering;
31 class TargetRegisterClass;
32 class TargetRegisterInfo;
33 class TargetSchedModel;
34 class TargetSelectionDAGInfo;
35 struct MachineSchedPolicy;
36 template <typename T> class SmallVectorImpl;
37
38 //===----------------------------------------------------------------------===//
39 ///
40 /// TargetSubtargetInfo - Generic base class for all target subtargets.  All
41 /// Target-specific options that control code generation and printing should
42 /// be exposed through a TargetSubtargetInfo-derived class.
43 ///
44 class TargetSubtargetInfo : public MCSubtargetInfo {
45   TargetSubtargetInfo(const TargetSubtargetInfo&) LLVM_DELETED_FUNCTION;
46   void operator=(const TargetSubtargetInfo&) LLVM_DELETED_FUNCTION;
47 protected: // Can only create subclasses...
48   TargetSubtargetInfo();
49 public:
50   // AntiDepBreakMode - Type of anti-dependence breaking that should
51   // be performed before post-RA scheduling.
52   typedef enum { ANTIDEP_NONE, ANTIDEP_CRITICAL, ANTIDEP_ALL } AntiDepBreakMode;
53   typedef SmallVectorImpl<const TargetRegisterClass*> RegClassVector;
54
55   virtual ~TargetSubtargetInfo();
56
57   // Interfaces to the major aspects of target machine information:
58   //
59   // -- Instruction opcode and operand information
60   // -- Pipelines and scheduling information
61   // -- Stack frame information
62   // -- Selection DAG lowering information
63   //
64   // N.B. These objects may change during compilation. It's not safe to cache
65   // them between functions.
66   virtual const TargetInstrInfo *getInstrInfo() const { return nullptr; }
67   virtual const TargetFrameLowering *getFrameLowering() const {
68     return nullptr;
69   }
70   virtual const TargetLowering *getTargetLowering() const { return nullptr; }
71   virtual const TargetSelectionDAGInfo *getSelectionDAGInfo() const {
72     return nullptr;
73   }
74   virtual const DataLayout *getDataLayout() const { return nullptr; }
75
76   /// getRegisterInfo - If register information is available, return it.  If
77   /// not, return null.  This is kept separate from RegInfo until RegInfo has
78   /// details of graph coloring register allocation removed from it.
79   ///
80   virtual const TargetRegisterInfo *getRegisterInfo() const { return nullptr; }
81
82   /// getJITInfo - If this target supports a JIT, return information for it,
83   /// otherwise return null.
84   ///
85   virtual TargetJITInfo *getJITInfo() { return nullptr; }
86
87   /// getInstrItineraryData - Returns instruction itinerary data for the target
88   /// or specific subtarget.
89   ///
90   virtual const InstrItineraryData *getInstrItineraryData() const {
91     return nullptr;
92   }
93
94   /// Resolve a SchedClass at runtime, where SchedClass identifies an
95   /// MCSchedClassDesc with the isVariant property. This may return the ID of
96   /// another variant SchedClass, but repeated invocation must quickly terminate
97   /// in a nonvariant SchedClass.
98   virtual unsigned resolveSchedClass(unsigned SchedClass, const MachineInstr *MI,
99                                      const TargetSchedModel* SchedModel) const {
100     return 0;
101   }
102
103   /// \brief Temporary API to test migration to MI scheduler.
104   bool useMachineScheduler() const;
105
106   /// \brief True if the subtarget should run MachineScheduler after aggressive
107   /// coalescing.
108   ///
109   /// This currently replaces the SelectionDAG scheduler with the "source" order
110   /// scheduler. It does not yet disable the postRA scheduler.
111   virtual bool enableMachineScheduler() const;
112
113   /// \brief True if the subtarget should run PostMachineScheduler.
114   ///
115   /// This only takes effect if the target has configured the
116   /// PostMachineScheduler pass to run, or if the global cl::opt flag,
117   /// MISchedPostRA, is set.
118   virtual bool enablePostMachineScheduler() const;
119
120   /// \brief True if the subtarget should run the atomic expansion pass.
121   virtual bool enableAtomicExpandLoadLinked() const;
122
123   /// \brief Override generic scheduling policy within a region.
124   ///
125   /// This is a convenient way for targets that don't provide any custom
126   /// scheduling heuristics (no custom MachineSchedStrategy) to make
127   /// changes to the generic scheduling policy.
128   virtual void overrideSchedPolicy(MachineSchedPolicy &Policy,
129                                    MachineInstr *begin,
130                                    MachineInstr *end,
131                                    unsigned NumRegionInstrs) const {}
132
133   // \brief Perform target specific adjustments to the latency of a schedule
134   // dependency.
135   virtual void adjustSchedDependency(SUnit *def, SUnit *use,
136                                      SDep& dep) const { }
137
138   // For use with PostRAScheduling: get the anti-dependence breaking that should
139   // be performed before post-RA scheduling.
140   virtual AntiDepBreakMode getAntiDepBreakMode() const {
141     return ANTIDEP_NONE;
142   }
143
144   // For use with PostRAScheduling: in CriticalPathRCs, return any register
145   // classes that should only be considered for anti-dependence breaking if they
146   // are on the critical path.
147   virtual void getCriticalPathRCs(RegClassVector &CriticalPathRCs) const {
148     return CriticalPathRCs.clear();
149   }
150
151   // For use with PostRAScheduling: get the minimum optimization level needed
152   // to enable post-RA scheduling.
153   virtual CodeGenOpt::Level getOptLevelToEnablePostRAScheduler() const {
154     return CodeGenOpt::Default;
155   }
156
157   /// \brief True if the subtarget should run the local reassignment
158   /// heuristic of the register allocator.
159   /// This heuristic may be compile time intensive, \p OptLevel provides
160   /// a finer grain to tune the register allocator.
161   virtual bool enableRALocalReassignment(CodeGenOpt::Level OptLevel) const;
162
163   /// \brief Enable use of alias analysis during code generation (during MI
164   /// scheduling, DAGCombine, etc.).
165   virtual bool useAA() const;
166
167   /// \brief Enable the use of the early if conversion pass.
168   virtual bool enableEarlyIfConversion() const { return false; }
169
170   /// \brief Reset the features for the subtarget.
171   virtual void resetSubtargetFeatures(const MachineFunction *MF) { }
172
173 };
174
175 } // End llvm namespace
176
177 #endif