llvm/Target/TargetMachine.h: Remove two dependent headers.
[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/ADT/StringRef.h"
18 #include "llvm/Pass.h"
19 #include "llvm/Support/CodeGen.h"
20 #include "llvm/Target/TargetOptions.h"
21 #include <cassert>
22 #include <string>
23
24 namespace llvm {
25
26 class InstrItineraryData;
27 class JITCodeEmitter;
28 class GlobalValue;
29 class MCAsmInfo;
30 class MCCodeGenInfo;
31 class MCContext;
32 class PassManagerBase;
33 class Target;
34 class DataLayout;
35 class TargetFrameLowering;
36 class TargetInstrInfo;
37 class TargetIntrinsicInfo;
38 class TargetJITInfo;
39 class TargetLowering;
40 class TargetPassConfig;
41 class TargetRegisterInfo;
42 class TargetSelectionDAGInfo;
43 class TargetSubtargetInfo;
44 class ScalarTargetTransformInfo;
45 class VectorTargetTransformInfo;
46 class formatted_raw_ostream;
47 class raw_ostream;
48
49 //===----------------------------------------------------------------------===//
50 ///
51 /// TargetMachine - Primary interface to the complete machine description for
52 /// the target machine.  All target-specific information should be accessible
53 /// through this interface.
54 ///
55 class TargetMachine {
56   TargetMachine(const TargetMachine &) LLVM_DELETED_FUNCTION;
57   void operator=(const TargetMachine &) LLVM_DELETED_FUNCTION;
58 protected: // Can only create subclasses.
59   TargetMachine(const Target &T, StringRef TargetTriple,
60                 StringRef CPU, StringRef FS, const TargetOptions &Options);
61
62   /// getSubtargetImpl - virtual method implemented by subclasses that returns
63   /// a reference to that target's TargetSubtargetInfo-derived member variable.
64   virtual const TargetSubtargetInfo *getSubtargetImpl() const { return 0; }
65
66   /// TheTarget - The Target that this machine was created for.
67   const Target &TheTarget;
68
69   /// TargetTriple, TargetCPU, TargetFS - Triple string, CPU name, and target
70   /// feature strings the TargetMachine instance is created with.
71   std::string TargetTriple;
72   std::string TargetCPU;
73   std::string TargetFS;
74
75   /// CodeGenInfo - Low level target information such as relocation model.
76   const MCCodeGenInfo *CodeGenInfo;
77
78   /// AsmInfo - Contains target specific asm information.
79   ///
80   const MCAsmInfo *AsmInfo;
81
82   unsigned MCRelaxAll : 1;
83   unsigned MCNoExecStack : 1;
84   unsigned MCSaveTempLabels : 1;
85   unsigned MCUseLoc : 1;
86   unsigned MCUseCFI : 1;
87   unsigned MCUseDwarfDirectory : 1;
88
89 public:
90   virtual ~TargetMachine();
91
92   const Target &getTarget() const { return TheTarget; }
93
94   const StringRef getTargetTriple() const { return TargetTriple; }
95   const StringRef getTargetCPU() const { return TargetCPU; }
96   const StringRef getTargetFeatureString() const { return TargetFS; }
97
98   TargetOptions Options;
99
100   // Interfaces to the major aspects of target machine information:
101   // -- Instruction opcode and operand information
102   // -- Pipelines and scheduling information
103   // -- Stack frame information
104   // -- Selection DAG lowering information
105   //
106   virtual const TargetInstrInfo         *getInstrInfo() const { return 0; }
107   virtual const TargetFrameLowering *getFrameLowering() const { return 0; }
108   virtual const TargetLowering    *getTargetLowering() const { return 0; }
109   virtual const TargetSelectionDAGInfo *getSelectionDAGInfo() const{ return 0; }
110   virtual const DataLayout             *getDataLayout() const { return 0; }
111   virtual const ScalarTargetTransformInfo*
112   getScalarTargetTransformInfo() const { return 0; }
113   virtual const VectorTargetTransformInfo*
114   getVectorTargetTransformInfo() const { return 0; }
115
116   /// getMCAsmInfo - Return target specific asm information.
117   ///
118   const MCAsmInfo *getMCAsmInfo() const { return AsmInfo; }
119
120   /// getSubtarget - This method returns a pointer to the specified type of
121   /// TargetSubtargetInfo.  In debug builds, it verifies that the object being
122   /// returned is of the correct type.
123   template<typename STC> const STC &getSubtarget() const {
124     return *static_cast<const STC*>(getSubtargetImpl());
125   }
126
127   /// getRegisterInfo - If register information is available, return it.  If
128   /// not, return null.  This is kept separate from RegInfo until RegInfo has
129   /// details of graph coloring register allocation removed from it.
130   ///
131   virtual const TargetRegisterInfo *getRegisterInfo() const { return 0; }
132
133   /// getIntrinsicInfo - If intrinsic information is available, return it.  If
134   /// not, return null.
135   ///
136   virtual const TargetIntrinsicInfo *getIntrinsicInfo() const { return 0; }
137
138   /// getJITInfo - If this target supports a JIT, return information for it,
139   /// otherwise return null.
140   ///
141   virtual TargetJITInfo *getJITInfo() { return 0; }
142
143   /// getInstrItineraryData - Returns instruction itinerary data for the target
144   /// or specific subtarget.
145   ///
146   virtual const InstrItineraryData *getInstrItineraryData() const {
147     return 0;
148   }
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   /// getTLSModel - Returns the TLS model which should be used for the given
201   /// global variable.
202   TLSModel::Model getTLSModel(const GlobalValue *GV) const;
203
204   /// getOptLevel - Returns the optimization level: None, Less,
205   /// Default, or Aggressive.
206   CodeGenOpt::Level getOptLevel() const;
207
208   void setFastISel(bool Enable) { Options.EnableFastISel = Enable; }
209
210   bool shouldPrintMachineCode() const { return Options.PrintMachineCode; }
211
212   /// getAsmVerbosityDefault - Returns the default value of asm verbosity.
213   ///
214   static bool getAsmVerbosityDefault();
215
216   /// setAsmVerbosityDefault - Set the default value of asm verbosity. Default
217   /// is false.
218   static void setAsmVerbosityDefault(bool);
219
220   /// getDataSections - Return true if data objects should be emitted into their
221   /// own section, corresponds to -fdata-sections.
222   static bool getDataSections();
223
224   /// getFunctionSections - Return true if functions should be emitted into
225   /// their own section, corresponding to -ffunction-sections.
226   static bool getFunctionSections();
227
228   /// setDataSections - Set if the data are emit into separate sections.
229   static void setDataSections(bool);
230
231   /// setFunctionSections - Set if the functions are emit into separate
232   /// sections.
233   static void setFunctionSections(bool);
234
235   /// CodeGenFileType - These enums are meant to be passed into
236   /// addPassesToEmitFile to indicate what type of file to emit, and returned by
237   /// it to indicate what type of file could actually be made.
238   enum CodeGenFileType {
239     CGFT_AssemblyFile,
240     CGFT_ObjectFile,
241     CGFT_Null         // Do not emit any output.
242   };
243
244   /// addPassesToEmitFile - Add passes to the specified pass manager to get the
245   /// specified file emitted.  Typically this will involve several steps of code
246   /// generation.  This method should return true if emission of this file type
247   /// is not supported, or false on success.
248   virtual bool addPassesToEmitFile(PassManagerBase &,
249                                    formatted_raw_ostream &,
250                                    CodeGenFileType,
251                                    bool /*DisableVerify*/ = true,
252                                    AnalysisID StartAfter = 0,
253                                    AnalysisID StopAfter = 0) {
254     return true;
255   }
256
257   /// addPassesToEmitMachineCode - Add passes to the specified pass manager to
258   /// get machine code emitted.  This uses a JITCodeEmitter object to handle
259   /// actually outputting the machine code and resolving things like the address
260   /// of functions.  This method returns true if machine code emission is
261   /// not supported.
262   ///
263   virtual bool addPassesToEmitMachineCode(PassManagerBase &,
264                                           JITCodeEmitter &,
265                                           bool /*DisableVerify*/ = true) {
266     return true;
267   }
268
269   /// addPassesToEmitMC - Add passes to the specified pass manager to get
270   /// machine code emitted with the MCJIT. This method returns true if machine
271   /// code is not supported. It fills the MCContext Ctx pointer which can be
272   /// used to build custom MCStreamer.
273   ///
274   virtual bool addPassesToEmitMC(PassManagerBase &,
275                                  MCContext *&,
276                                  raw_ostream &,
277                                  bool /*DisableVerify*/ = true) {
278     return true;
279   }
280 };
281
282 /// LLVMTargetMachine - This class describes a target machine that is
283 /// implemented with the LLVM target-independent code generator.
284 ///
285 class LLVMTargetMachine : public TargetMachine {
286 protected: // Can only create subclasses.
287   LLVMTargetMachine(const Target &T, StringRef TargetTriple,
288                     StringRef CPU, StringRef FS, TargetOptions Options,
289                     Reloc::Model RM, CodeModel::Model CM,
290                     CodeGenOpt::Level OL);
291
292 public:
293   /// createPassConfig - Create a pass configuration object to be used by
294   /// addPassToEmitX methods for generating a pipeline of CodeGen passes.
295   virtual TargetPassConfig *createPassConfig(PassManagerBase &PM);
296
297   /// addPassesToEmitFile - Add passes to the specified pass manager to get the
298   /// specified file emitted.  Typically this will involve several steps of code
299   /// generation.
300   virtual bool addPassesToEmitFile(PassManagerBase &PM,
301                                    formatted_raw_ostream &Out,
302                                    CodeGenFileType FileType,
303                                    bool DisableVerify = true,
304                                    AnalysisID StartAfter = 0,
305                                    AnalysisID StopAfter = 0);
306
307   /// addPassesToEmitMachineCode - Add passes to the specified pass manager to
308   /// get machine code emitted.  This uses a JITCodeEmitter object to handle
309   /// actually outputting the machine code and resolving things like the address
310   /// of functions.  This method returns true if machine code emission is
311   /// not supported.
312   ///
313   virtual bool addPassesToEmitMachineCode(PassManagerBase &PM,
314                                           JITCodeEmitter &MCE,
315                                           bool DisableVerify = true);
316
317   /// addPassesToEmitMC - Add passes to the specified pass manager to get
318   /// machine code emitted with the MCJIT. This method returns true if machine
319   /// code is not supported. It fills the MCContext Ctx pointer which can be
320   /// used to build custom MCStreamer.
321   ///
322   virtual bool addPassesToEmitMC(PassManagerBase &PM,
323                                  MCContext *&Ctx,
324                                  raw_ostream &OS,
325                                  bool DisableVerify = true);
326
327   /// addCodeEmitter - This pass should be overridden by the target to add a
328   /// code emitter, if supported.  If this is not supported, 'true' should be
329   /// returned.
330   virtual bool addCodeEmitter(PassManagerBase &,
331                               JITCodeEmitter &) {
332     return true;
333   }
334 };
335
336 } // End llvm namespace
337
338 #endif