Added TargetPassConfig. The first little step toward configuring codegen passes.
[oota-llvm.git] / include / llvm / Target / TargetMachine.h
1 //===-- llvm/Target/TargetMachine.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 defines the TargetMachine and LLVMTargetMachine classes.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_TARGET_TARGETMACHINE_H
15 #define LLVM_TARGET_TARGETMACHINE_H
16
17 #include "llvm/Target/TargetOptions.h"
18 #include "llvm/MC/MCCodeGenInfo.h"
19 #include "llvm/ADT/StringRef.h"
20 #include <cassert>
21 #include <string>
22
23 namespace llvm {
24
25 class InstrItineraryData;
26 class JITCodeEmitter;
27 class MCAsmInfo;
28 class MCCodeGenInfo;
29 class MCContext;
30 class Pass;
31 class PassManager;
32 class PassManagerBase;
33 class Target;
34 class TargetData;
35 class TargetELFWriterInfo;
36 class TargetFrameLowering;
37 class TargetInstrInfo;
38 class TargetIntrinsicInfo;
39 class TargetJITInfo;
40 class TargetLowering;
41 class TargetPassConfig;
42 class TargetRegisterInfo;
43 class TargetSelectionDAGInfo;
44 class TargetSubtargetInfo;
45 class formatted_raw_ostream;
46 class raw_ostream;
47
48 //===----------------------------------------------------------------------===//
49 ///
50 /// TargetMachine - Primary interface to the complete machine description for
51 /// the target machine.  All target-specific information should be accessible
52 /// through this interface.
53 ///
54 class TargetMachine {
55   TargetMachine(const TargetMachine &);   // DO NOT IMPLEMENT
56   void operator=(const TargetMachine &);  // DO NOT IMPLEMENT
57 protected: // Can only create subclasses.
58   TargetMachine(const Target &T, StringRef TargetTriple,
59                 StringRef CPU, StringRef FS, const TargetOptions &Options);
60
61   /// getSubtargetImpl - virtual method implemented by subclasses that returns
62   /// a reference to that target's TargetSubtargetInfo-derived member variable.
63   virtual const TargetSubtargetInfo *getSubtargetImpl() const { return 0; }
64
65   /// TheTarget - The Target that this machine was created for.
66   const Target &TheTarget;
67
68   /// TargetTriple, TargetCPU, TargetFS - Triple string, CPU name, and target
69   /// feature strings the TargetMachine instance is created with.
70   std::string TargetTriple;
71   std::string TargetCPU;
72   std::string TargetFS;
73
74   /// CodeGenInfo - Low level target information such as relocation model.
75   const MCCodeGenInfo *CodeGenInfo;
76
77   /// AsmInfo - Contains target specific asm information.
78   ///
79   const MCAsmInfo *AsmInfo;
80
81   unsigned MCRelaxAll : 1;
82   unsigned MCNoExecStack : 1;
83   unsigned MCSaveTempLabels : 1;
84   unsigned MCUseLoc : 1;
85   unsigned MCUseCFI : 1;
86   unsigned MCUseDwarfDirectory : 1;
87
88 public:
89   virtual ~TargetMachine();
90
91   const Target &getTarget() const { return TheTarget; }
92
93   const StringRef getTargetTriple() const { return TargetTriple; }
94   const StringRef getTargetCPU() const { return TargetCPU; }
95   const StringRef getTargetFeatureString() const { return TargetFS; }
96
97   TargetOptions Options;
98
99   // Interfaces to the major aspects of target machine information:
100   // -- Instruction opcode and operand information
101   // -- Pipelines and scheduling information
102   // -- Stack frame information
103   // -- Selection DAG lowering information
104   //
105   virtual const TargetInstrInfo         *getInstrInfo() const { return 0; }
106   virtual const TargetFrameLowering *getFrameLowering() const { return 0; }
107   virtual const TargetLowering    *getTargetLowering() const { return 0; }
108   virtual const TargetSelectionDAGInfo *getSelectionDAGInfo() const{ return 0; }
109   virtual const TargetData             *getTargetData() const { return 0; }
110
111   /// getMCAsmInfo - Return target specific asm information.
112   ///
113   const MCAsmInfo *getMCAsmInfo() const { return AsmInfo; }
114
115   /// getSubtarget - This method returns a pointer to the specified type of
116   /// TargetSubtargetInfo.  In debug builds, it verifies that the object being
117   /// returned is of the correct type.
118   template<typename STC> const STC &getSubtarget() const {
119     return *static_cast<const STC*>(getSubtargetImpl());
120   }
121
122   /// getRegisterInfo - If register information is available, return it.  If
123   /// not, return null.  This is kept separate from RegInfo until RegInfo has
124   /// details of graph coloring register allocation removed from it.
125   ///
126   virtual const TargetRegisterInfo *getRegisterInfo() const { return 0; }
127
128   /// getIntrinsicInfo - If intrinsic information is available, return it.  If
129   /// not, return null.
130   ///
131   virtual const TargetIntrinsicInfo *getIntrinsicInfo() const { return 0; }
132
133   /// getJITInfo - If this target supports a JIT, return information for it,
134   /// otherwise return null.
135   ///
136   virtual TargetJITInfo *getJITInfo() { return 0; }
137
138   /// getInstrItineraryData - Returns instruction itinerary data for the target
139   /// or specific subtarget.
140   ///
141   virtual const InstrItineraryData *getInstrItineraryData() const {
142     return 0;
143   }
144
145   /// getELFWriterInfo - If this target supports an ELF writer, return
146   /// information for it, otherwise return null.
147   ///
148   virtual const TargetELFWriterInfo *getELFWriterInfo() const { return 0; }
149
150   /// hasMCRelaxAll - Check whether all machine code instructions should be
151   /// relaxed.
152   bool hasMCRelaxAll() const { return MCRelaxAll; }
153
154   /// setMCRelaxAll - Set whether all machine code instructions should be
155   /// relaxed.
156   void setMCRelaxAll(bool Value) { MCRelaxAll = Value; }
157
158   /// hasMCSaveTempLabels - Check whether temporary labels will be preserved
159   /// (i.e., not treated as temporary).
160   bool hasMCSaveTempLabels() const { return MCSaveTempLabels; }
161
162   /// setMCSaveTempLabels - Set whether temporary labels will be preserved
163   /// (i.e., not treated as temporary).
164   void setMCSaveTempLabels(bool Value) { MCSaveTempLabels = Value; }
165
166   /// hasMCNoExecStack - Check whether an executable stack is not needed.
167   bool hasMCNoExecStack() const { return MCNoExecStack; }
168
169   /// setMCNoExecStack - Set whether an executabel stack is not needed.
170   void setMCNoExecStack(bool Value) { MCNoExecStack = Value; }
171
172   /// hasMCUseLoc - Check whether we should use dwarf's .loc directive.
173   bool hasMCUseLoc() const { return MCUseLoc; }
174
175   /// setMCUseLoc - Set whether all we should use dwarf's .loc directive.
176   void setMCUseLoc(bool Value) { MCUseLoc = Value; }
177
178   /// hasMCUseCFI - Check whether we should use dwarf's .cfi_* directives.
179   bool hasMCUseCFI() const { return MCUseCFI; }
180
181   /// setMCUseCFI - Set whether all we should use dwarf's .cfi_* directives.
182   void setMCUseCFI(bool Value) { MCUseCFI = Value; }
183
184   /// hasMCUseDwarfDirectory - Check whether we should use .file directives with
185   /// explicit directories.
186   bool hasMCUseDwarfDirectory() const { return MCUseDwarfDirectory; }
187
188   /// setMCUseDwarfDirectory - Set whether all we should use .file directives
189   /// with explicit directories.
190   void setMCUseDwarfDirectory(bool Value) { MCUseDwarfDirectory = Value; }
191
192   /// getRelocationModel - Returns the code generation relocation model. The
193   /// choices are static, PIC, and dynamic-no-pic, and target default.
194   Reloc::Model getRelocationModel() const;
195
196   /// getCodeModel - Returns the code model. The choices are small, kernel,
197   /// medium, large, and target default.
198   CodeModel::Model getCodeModel() const;
199
200   /// getOptLevel - Returns the optimization level: None, Less,
201   /// Default, or Aggressive.
202   CodeGenOpt::Level getOptLevel() const;
203
204   void setFastISel(bool Enable) { Options.EnableFastISel = Enable; }
205
206   bool shouldPrintMachineCode() const { return Options.PrintMachineCode; }
207
208   /// getAsmVerbosityDefault - Returns the default value of asm verbosity.
209   ///
210   static bool getAsmVerbosityDefault();
211
212   /// setAsmVerbosityDefault - Set the default value of asm verbosity. Default
213   /// is false.
214   static void setAsmVerbosityDefault(bool);
215
216   /// getDataSections - Return true if data objects should be emitted into their
217   /// own section, corresponds to -fdata-sections.
218   static bool getDataSections();
219
220   /// getFunctionSections - Return true if functions should be emitted into
221   /// their own section, corresponding to -ffunction-sections.
222   static bool getFunctionSections();
223
224   /// setDataSections - Set if the data are emit into separate sections.
225   static void setDataSections(bool);
226
227   /// setFunctionSections - Set if the functions are emit into separate
228   /// sections.
229   static void setFunctionSections(bool);
230
231   /// CodeGenFileType - These enums are meant to be passed into
232   /// addPassesToEmitFile to indicate what type of file to emit, and returned by
233   /// it to indicate what type of file could actually be made.
234   enum CodeGenFileType {
235     CGFT_AssemblyFile,
236     CGFT_ObjectFile,
237     CGFT_Null         // Do not emit any output.
238   };
239
240   /// addPassesToEmitFile - Add passes to the specified pass manager to get the
241   /// specified file emitted.  Typically this will involve several steps of code
242   /// generation.  This method should return true if emission of this file type
243   /// is not supported, or false on success.
244   virtual bool addPassesToEmitFile(PassManagerBase &,
245                                    formatted_raw_ostream &,
246                                    CodeGenFileType,
247                                    bool /*DisableVerify*/ = true) {
248     return true;
249   }
250
251   /// addPassesToEmitMachineCode - Add passes to the specified pass manager to
252   /// get machine code emitted.  This uses a JITCodeEmitter object to handle
253   /// actually outputting the machine code and resolving things like the address
254   /// of functions.  This method returns true if machine code emission is
255   /// not supported.
256   ///
257   virtual bool addPassesToEmitMachineCode(PassManagerBase &,
258                                           JITCodeEmitter &,
259                                           bool /*DisableVerify*/ = true) {
260     return true;
261   }
262
263   /// addPassesToEmitMC - Add passes to the specified pass manager to get
264   /// machine code emitted with the MCJIT. This method returns true if machine
265   /// code is not supported. It fills the MCContext Ctx pointer which can be
266   /// used to build custom MCStreamer.
267   ///
268   virtual bool addPassesToEmitMC(PassManagerBase &,
269                                  MCContext *&,
270                                  raw_ostream &,
271                                  bool /*DisableVerify*/ = true) {
272     return true;
273   }
274 };
275
276 /// LLVMTargetMachine - This class describes a target machine that is
277 /// implemented with the LLVM target-independent code generator.
278 ///
279 class LLVMTargetMachine : public TargetMachine {
280 protected: // Can only create subclasses.
281   LLVMTargetMachine(const Target &T, StringRef TargetTriple,
282                     StringRef CPU, StringRef FS, TargetOptions Options,
283                     Reloc::Model RM, CodeModel::Model CM,
284                     CodeGenOpt::Level OL);
285
286 public:
287   /// createPassConfig - Create a pass configuration object to be used by
288   /// addPassToEmitX methods for generating a pipeline of CodeGen passes.
289   virtual TargetPassConfig *createPassConfig(PassManagerBase &PM,
290                                              bool DisableVerify);
291
292   /// addPassesToEmitFile - Add passes to the specified pass manager to get the
293   /// specified file emitted.  Typically this will involve several steps of code
294   /// generation.
295   virtual bool addPassesToEmitFile(PassManagerBase &PM,
296                                    formatted_raw_ostream &Out,
297                                    CodeGenFileType FileType,
298                                    bool DisableVerify = true);
299
300   /// addPassesToEmitMachineCode - Add passes to the specified pass manager to
301   /// get machine code emitted.  This uses a JITCodeEmitter object to handle
302   /// actually outputting the machine code and resolving things like the address
303   /// of functions.  This method returns true if machine code emission is
304   /// not supported.
305   ///
306   virtual bool addPassesToEmitMachineCode(PassManagerBase &PM,
307                                           JITCodeEmitter &MCE,
308                                           bool DisableVerify = true);
309
310   /// addPassesToEmitMC - Add passes to the specified pass manager to get
311   /// machine code emitted with the MCJIT. This method returns true if machine
312   /// code is not supported. It fills the MCContext Ctx pointer which can be
313   /// used to build custom MCStreamer.
314   ///
315   virtual bool addPassesToEmitMC(PassManagerBase &PM,
316                                  MCContext *&Ctx,
317                                  raw_ostream &OS,
318                                  bool DisableVerify = true);
319
320   /// addCodeEmitter - This pass should be overridden by the target to add a
321   /// code emitter, if supported.  If this is not supported, 'true' should be
322   /// returned.
323   virtual bool addCodeEmitter(PassManagerBase &,
324                               JITCodeEmitter &) {
325     return true;
326   }
327 };
328
329 } // End llvm namespace
330
331 #endif