2d69493a0dd2c6673cfd338186337dacf132cf33
[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 GlobalValue;
28 class Mangler;
29 class MCAsmInfo;
30 class MCCodeGenInfo;
31 class MCContext;
32 class MCSymbol;
33 class Target;
34 class DataLayout;
35 class TargetLibraryInfo;
36 class TargetFrameLowering;
37 class TargetIntrinsicInfo;
38 class TargetLowering;
39 class TargetPassConfig;
40 class TargetRegisterInfo;
41 class TargetSelectionDAGInfo;
42 class TargetSubtargetInfo;
43 class ScalarTargetTransformInfo;
44 class VectorTargetTransformInfo;
45 class formatted_raw_ostream;
46 class raw_ostream;
47 class TargetLoweringObjectFile;
48
49 // The old pass manager infrastructure is hidden in a legacy namespace now.
50 namespace legacy {
51 class PassManagerBase;
52 }
53 using legacy::PassManagerBase;
54
55 //===----------------------------------------------------------------------===//
56 ///
57 /// TargetMachine - Primary interface to the complete machine description for
58 /// the target machine.  All target-specific information should be accessible
59 /// through this interface.
60 ///
61 class TargetMachine {
62   TargetMachine(const TargetMachine &) LLVM_DELETED_FUNCTION;
63   void operator=(const TargetMachine &) LLVM_DELETED_FUNCTION;
64 protected: // Can only create subclasses.
65   TargetMachine(const Target &T, StringRef TargetTriple,
66                 StringRef CPU, StringRef FS, const TargetOptions &Options);
67
68   /// TheTarget - The Target that this machine was created for.
69   const Target &TheTarget;
70
71   /// TargetTriple, TargetCPU, TargetFS - Triple string, CPU name, and target
72   /// feature strings the TargetMachine instance is created with.
73   std::string TargetTriple;
74   std::string TargetCPU;
75   std::string TargetFS;
76
77   /// CodeGenInfo - Low level target information such as relocation model.
78   /// Non-const to allow resetting optimization level per-function.
79   MCCodeGenInfo *CodeGenInfo;
80
81   /// AsmInfo - Contains target specific asm information.
82   ///
83   const MCAsmInfo *AsmInfo;
84
85   unsigned RequireStructuredCFG : 1;
86
87 public:
88   mutable TargetOptions Options;
89
90   virtual ~TargetMachine();
91
92   const Target &getTarget() const { return TheTarget; }
93
94   StringRef getTargetTriple() const { return TargetTriple; }
95   StringRef getTargetCPU() const { return TargetCPU; }
96   StringRef getTargetFeatureString() const { return TargetFS; }
97
98   /// getSubtargetImpl - virtual method implemented by subclasses that returns
99   /// a reference to that target's TargetSubtargetInfo-derived member variable.
100   virtual const TargetSubtargetInfo *getSubtargetImpl() const {
101     return nullptr;
102   }
103   virtual const TargetSubtargetInfo *getSubtargetImpl(const Function &) const {
104     return getSubtargetImpl();
105   }
106   virtual TargetLoweringObjectFile *getObjFileLowering() const {
107     return nullptr;
108   }
109
110   /// getSubtarget - This method returns a pointer to the specified type of
111   /// TargetSubtargetInfo.  In debug builds, it verifies that the object being
112   /// returned is of the correct type.
113   template<typename STC> const STC &getSubtarget() const {
114     return *static_cast<const STC*>(getSubtargetImpl());
115   }
116   template <typename STC> const STC &getSubtarget(const Function *) const {
117     return *static_cast<const STC*>(getSubtargetImpl());
118   }
119
120   /// getDataLayout - This method returns a pointer to the DataLayout for
121   /// the target. It should be unchanging for every subtarget.
122   virtual const DataLayout *getDataLayout() const {
123     return nullptr;
124   }
125
126   /// \brief Reset the target options based on the function's attributes.
127   // FIXME: Remove TargetOptions that affect per-function code generation
128   // from TargetMachine.
129   void resetTargetOptions(const Function &F) const;
130
131   /// getMCAsmInfo - Return target specific asm information.
132   ///
133   const MCAsmInfo *getMCAsmInfo() const { return AsmInfo; }
134
135   /// getIntrinsicInfo - If intrinsic information is available, return it.  If
136   /// not, return null.
137   ///
138   virtual const TargetIntrinsicInfo *getIntrinsicInfo() const {
139     return nullptr;
140   }
141
142   bool requiresStructuredCFG() const { return RequireStructuredCFG; }
143   void setRequiresStructuredCFG(bool Value) { RequireStructuredCFG = Value; }
144
145   /// getRelocationModel - Returns the code generation relocation model. The
146   /// choices are static, PIC, and dynamic-no-pic, and target default.
147   Reloc::Model getRelocationModel() const;
148
149   /// getCodeModel - Returns the code model. The choices are small, kernel,
150   /// medium, large, and target default.
151   CodeModel::Model getCodeModel() const;
152
153   /// getTLSModel - Returns the TLS model which should be used for the given
154   /// global variable.
155   TLSModel::Model getTLSModel(const GlobalValue *GV) const;
156
157   /// getOptLevel - Returns the optimization level: None, Less,
158   /// Default, or Aggressive.
159   CodeGenOpt::Level getOptLevel() const;
160
161   /// \brief Overrides the optimization level.
162   void setOptLevel(CodeGenOpt::Level Level) const;
163
164   void setFastISel(bool Enable) { Options.EnableFastISel = Enable; }
165
166   bool shouldPrintMachineCode() const { return Options.PrintMachineCode; }
167
168   /// getAsmVerbosityDefault - Returns the default value of asm verbosity.
169   ///
170   bool getAsmVerbosityDefault() const ;
171
172   /// setAsmVerbosityDefault - Set the default value of asm verbosity. Default
173   /// is false.
174   void setAsmVerbosityDefault(bool);
175
176   /// getDataSections - Return true if data objects should be emitted into their
177   /// own section, corresponds to -fdata-sections.
178   bool getDataSections() const;
179
180   /// getFunctionSections - Return true if functions should be emitted into
181   /// their own section, corresponding to -ffunction-sections.
182   bool getFunctionSections() const;
183
184   /// setDataSections - Set if the data are emit into separate sections.
185   void setDataSections(bool);
186
187   /// setFunctionSections - Set if the functions are emit into separate
188   /// sections.
189   void setFunctionSections(bool);
190
191   /// \brief Register analysis passes for this target with a pass manager.
192   virtual void addAnalysisPasses(PassManagerBase &) {}
193
194   /// CodeGenFileType - These enums are meant to be passed into
195   /// addPassesToEmitFile to indicate what type of file to emit, and returned by
196   /// it to indicate what type of file could actually be made.
197   enum CodeGenFileType {
198     CGFT_AssemblyFile,
199     CGFT_ObjectFile,
200     CGFT_Null         // Do not emit any output.
201   };
202
203   /// addPassesToEmitFile - Add passes to the specified pass manager to get the
204   /// specified file emitted.  Typically this will involve several steps of code
205   /// generation.  This method should return true if emission of this file type
206   /// is not supported, or false on success.
207   virtual bool addPassesToEmitFile(PassManagerBase &,
208                                    formatted_raw_ostream &,
209                                    CodeGenFileType,
210                                    bool /*DisableVerify*/ = true,
211                                    AnalysisID /*StartAfter*/ = nullptr,
212                                    AnalysisID /*StopAfter*/ = nullptr) {
213     return true;
214   }
215
216   /// addPassesToEmitMC - Add passes to the specified pass manager to get
217   /// machine code emitted with the MCJIT. This method returns true if machine
218   /// code is not supported. It fills the MCContext Ctx pointer which can be
219   /// used to build custom MCStreamer.
220   ///
221   virtual bool addPassesToEmitMC(PassManagerBase &,
222                                  MCContext *&,
223                                  raw_ostream &,
224                                  bool /*DisableVerify*/ = true) {
225     return true;
226   }
227
228   void getNameWithPrefix(SmallVectorImpl<char> &Name, const GlobalValue *GV,
229                          Mangler &Mang, bool MayAlwaysUsePrivate = false) const;
230   MCSymbol *getSymbol(const GlobalValue *GV, Mangler &Mang) const;
231 };
232
233 /// LLVMTargetMachine - This class describes a target machine that is
234 /// implemented with the LLVM target-independent code generator.
235 ///
236 class LLVMTargetMachine : public TargetMachine {
237 protected: // Can only create subclasses.
238   LLVMTargetMachine(const Target &T, StringRef TargetTriple,
239                     StringRef CPU, StringRef FS, TargetOptions Options,
240                     Reloc::Model RM, CodeModel::Model CM,
241                     CodeGenOpt::Level OL);
242
243   void initAsmInfo();
244 public:
245   /// \brief Register analysis passes for this target with a pass manager.
246   ///
247   /// This registers target independent analysis passes.
248   void addAnalysisPasses(PassManagerBase &PM) override;
249
250   /// createPassConfig - Create a pass configuration object to be used by
251   /// addPassToEmitX methods for generating a pipeline of CodeGen passes.
252   virtual TargetPassConfig *createPassConfig(PassManagerBase &PM);
253
254   /// addPassesToEmitFile - Add passes to the specified pass manager to get the
255   /// specified file emitted.  Typically this will involve several steps of code
256   /// generation.
257   bool addPassesToEmitFile(PassManagerBase &PM, formatted_raw_ostream &Out,
258                            CodeGenFileType FileType, bool DisableVerify = true,
259                            AnalysisID StartAfter = nullptr,
260                            AnalysisID StopAfter = nullptr) override;
261
262   /// addPassesToEmitMC - Add passes to the specified pass manager to get
263   /// machine code emitted with the MCJIT. This method returns true if machine
264   /// code is not supported. It fills the MCContext Ctx pointer which can be
265   /// used to build custom MCStreamer.
266   ///
267   bool addPassesToEmitMC(PassManagerBase &PM, MCContext *&Ctx,
268                          raw_ostream &OS, bool DisableVerify = true) override;
269 };
270
271 } // End llvm namespace
272
273 #endif