blob: cdf9f8bfd5eaae6fb874473276c9c3d39863f6a8 [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===-- llvm/Target/TargetMachine.h - Target Information --------*- C++ -*-===//
2//
Andrew Walbran16937d02019-10-22 13:54:20 +01003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01006//
7//===----------------------------------------------------------------------===//
8//
9// This file defines the TargetMachine and LLVMTargetMachine classes.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_TARGET_TARGETMACHINE_H
14#define LLVM_TARGET_TARGETMACHINE_H
15
16#include "llvm/ADT/StringRef.h"
17#include "llvm/ADT/Triple.h"
18#include "llvm/IR/DataLayout.h"
19#include "llvm/Pass.h"
20#include "llvm/Support/CodeGen.h"
21#include "llvm/Target/TargetOptions.h"
22#include <string>
23
24namespace llvm {
25
26class Function;
27class GlobalValue;
28class MachineModuleInfo;
29class Mangler;
30class MCAsmInfo;
31class MCContext;
32class MCInstrInfo;
33class MCRegisterInfo;
34class MCSubtargetInfo;
35class MCSymbol;
36class raw_pwrite_stream;
37class PassManagerBuilder;
Andrew Walbran3d2c1972020-04-07 12:24:26 +010038struct PerFunctionMIParsingState;
39class SMDiagnostic;
40class SMRange;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010041class Target;
42class TargetIntrinsicInfo;
43class TargetIRAnalysis;
44class TargetTransformInfo;
45class TargetLoweringObjectFile;
46class TargetPassConfig;
47class TargetSubtargetInfo;
48
49// The old pass manager infrastructure is hidden in a legacy namespace now.
50namespace legacy {
51class PassManagerBase;
52}
53using legacy::PassManagerBase;
54
Andrew Walbran3d2c1972020-04-07 12:24:26 +010055namespace yaml {
56struct MachineFunctionInfo;
57}
58
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010059//===----------------------------------------------------------------------===//
60///
61/// Primary interface to the complete machine description for the target
62/// machine. All target-specific information should be accessible through this
63/// interface.
64///
65class TargetMachine {
66protected: // Can only create subclasses.
67 TargetMachine(const Target &T, StringRef DataLayoutString,
68 const Triple &TargetTriple, StringRef CPU, StringRef FS,
69 const TargetOptions &Options);
70
71 /// The Target that this machine was created for.
72 const Target &TheTarget;
73
74 /// DataLayout for the target: keep ABI type size and alignment.
75 ///
76 /// The DataLayout is created based on the string representation provided
77 /// during construction. It is kept here only to avoid reparsing the string
78 /// but should not really be used during compilation, because it has an
79 /// internal cache that is context specific.
80 const DataLayout DL;
81
82 /// Triple string, CPU name, and target feature strings the TargetMachine
83 /// instance is created with.
84 Triple TargetTriple;
85 std::string TargetCPU;
86 std::string TargetFS;
87
88 Reloc::Model RM = Reloc::Static;
89 CodeModel::Model CMModel = CodeModel::Small;
90 CodeGenOpt::Level OptLevel = CodeGenOpt::Default;
91
92 /// Contains target specific asm information.
Andrew Scull0372a572018-11-16 15:47:06 +000093 std::unique_ptr<const MCAsmInfo> AsmInfo;
94 std::unique_ptr<const MCRegisterInfo> MRI;
95 std::unique_ptr<const MCInstrInfo> MII;
96 std::unique_ptr<const MCSubtargetInfo> STI;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010097
98 unsigned RequireStructuredCFG : 1;
99 unsigned O0WantsFastISel : 1;
100
101public:
102 const TargetOptions DefaultOptions;
103 mutable TargetOptions Options;
104
105 TargetMachine(const TargetMachine &) = delete;
106 void operator=(const TargetMachine &) = delete;
107 virtual ~TargetMachine();
108
109 const Target &getTarget() const { return TheTarget; }
110
111 const Triple &getTargetTriple() const { return TargetTriple; }
112 StringRef getTargetCPU() const { return TargetCPU; }
113 StringRef getTargetFeatureString() const { return TargetFS; }
114
115 /// Virtual method implemented by subclasses that returns a reference to that
116 /// target's TargetSubtargetInfo-derived member variable.
117 virtual const TargetSubtargetInfo *getSubtargetImpl(const Function &) const {
118 return nullptr;
119 }
120 virtual TargetLoweringObjectFile *getObjFileLowering() const {
121 return nullptr;
122 }
123
Andrew Walbran3d2c1972020-04-07 12:24:26 +0100124 /// Allocate and return a default initialized instance of the YAML
125 /// representation for the MachineFunctionInfo.
126 virtual yaml::MachineFunctionInfo *createDefaultFuncInfoYAML() const {
127 return nullptr;
128 }
129
130 /// Allocate and initialize an instance of the YAML representation of the
131 /// MachineFunctionInfo.
132 virtual yaml::MachineFunctionInfo *
133 convertFuncInfoToYAML(const MachineFunction &MF) const {
134 return nullptr;
135 }
136
137 /// Parse out the target's MachineFunctionInfo from the YAML reprsentation.
138 virtual bool parseMachineFunctionInfo(const yaml::MachineFunctionInfo &,
139 PerFunctionMIParsingState &PFS,
140 SMDiagnostic &Error,
141 SMRange &SourceRange) const {
142 return false;
143 }
144
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100145 /// This method returns a pointer to the specified type of
146 /// TargetSubtargetInfo. In debug builds, it verifies that the object being
147 /// returned is of the correct type.
148 template <typename STC> const STC &getSubtarget(const Function &F) const {
149 return *static_cast<const STC*>(getSubtargetImpl(F));
150 }
151
152 /// Create a DataLayout.
153 const DataLayout createDataLayout() const { return DL; }
154
155 /// Test if a DataLayout if compatible with the CodeGen for this target.
156 ///
157 /// The LLVM Module owns a DataLayout that is used for the target independent
158 /// optimizations and code generation. This hook provides a target specific
159 /// check on the validity of this DataLayout.
160 bool isCompatibleDataLayout(const DataLayout &Candidate) const {
161 return DL == Candidate;
162 }
163
164 /// Get the pointer size for this target.
165 ///
166 /// This is the only time the DataLayout in the TargetMachine is used.
167 unsigned getPointerSize(unsigned AS) const {
168 return DL.getPointerSize(AS);
169 }
170
171 unsigned getPointerSizeInBits(unsigned AS) const {
172 return DL.getPointerSizeInBits(AS);
173 }
174
175 unsigned getProgramPointerSize() const {
176 return DL.getPointerSize(DL.getProgramAddressSpace());
177 }
178
179 unsigned getAllocaPointerSize() const {
180 return DL.getPointerSize(DL.getAllocaAddrSpace());
181 }
182
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100183 /// Reset the target options based on the function's attributes.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100184 // FIXME: Remove TargetOptions that affect per-function code generation
185 // from TargetMachine.
186 void resetTargetOptions(const Function &F) const;
187
188 /// Return target specific asm information.
Andrew Scull0372a572018-11-16 15:47:06 +0000189 const MCAsmInfo *getMCAsmInfo() const { return AsmInfo.get(); }
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100190
Andrew Scull0372a572018-11-16 15:47:06 +0000191 const MCRegisterInfo *getMCRegisterInfo() const { return MRI.get(); }
192 const MCInstrInfo *getMCInstrInfo() const { return MII.get(); }
193 const MCSubtargetInfo *getMCSubtargetInfo() const { return STI.get(); }
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100194
195 /// If intrinsic information is available, return it. If not, return null.
196 virtual const TargetIntrinsicInfo *getIntrinsicInfo() const {
197 return nullptr;
198 }
199
200 bool requiresStructuredCFG() const { return RequireStructuredCFG; }
201 void setRequiresStructuredCFG(bool Value) { RequireStructuredCFG = Value; }
202
203 /// Returns the code generation relocation model. The choices are static, PIC,
204 /// and dynamic-no-pic, and target default.
205 Reloc::Model getRelocationModel() const;
206
207 /// Returns the code model. The choices are small, kernel, medium, large, and
208 /// target default.
209 CodeModel::Model getCodeModel() const;
210
211 bool isPositionIndependent() const;
212
213 bool shouldAssumeDSOLocal(const Module &M, const GlobalValue *GV) const;
214
215 /// Returns true if this target uses emulated TLS.
216 bool useEmulatedTLS() const;
217
218 /// Returns the TLS model which should be used for the given global variable.
219 TLSModel::Model getTLSModel(const GlobalValue *GV) const;
220
221 /// Returns the optimization level: None, Less, Default, or Aggressive.
222 CodeGenOpt::Level getOptLevel() const;
223
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100224 /// Overrides the optimization level.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100225 void setOptLevel(CodeGenOpt::Level Level);
226
227 void setFastISel(bool Enable) { Options.EnableFastISel = Enable; }
228 bool getO0WantsFastISel() { return O0WantsFastISel; }
229 void setO0WantsFastISel(bool Enable) { O0WantsFastISel = Enable; }
230 void setGlobalISel(bool Enable) { Options.EnableGlobalISel = Enable; }
Andrew Walbran16937d02019-10-22 13:54:20 +0100231 void setGlobalISelAbort(GlobalISelAbortMode Mode) {
232 Options.GlobalISelAbort = Mode;
233 }
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100234 void setMachineOutliner(bool Enable) {
235 Options.EnableMachineOutliner = Enable;
236 }
237 void setSupportsDefaultOutlining(bool Enable) {
238 Options.SupportsDefaultOutlining = Enable;
239 }
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100240
241 bool shouldPrintMachineCode() const { return Options.PrintMachineCode; }
242
243 bool getUniqueSectionNames() const { return Options.UniqueSectionNames; }
244
245 /// Return true if data objects should be emitted into their own section,
246 /// corresponds to -fdata-sections.
247 bool getDataSections() const {
248 return Options.DataSections;
249 }
250
251 /// Return true if functions should be emitted into their own section,
252 /// corresponding to -ffunction-sections.
253 bool getFunctionSections() const {
254 return Options.FunctionSections;
255 }
256
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100257 /// Get a \c TargetIRAnalysis appropriate for the target.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100258 ///
259 /// This is used to construct the new pass manager's target IR analysis pass,
260 /// set up appropriately for this target machine. Even the old pass manager
261 /// uses this to answer queries about the IR.
262 TargetIRAnalysis getTargetIRAnalysis();
263
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100264 /// Return a TargetTransformInfo for a given function.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100265 ///
266 /// The returned TargetTransformInfo is specialized to the subtarget
267 /// corresponding to \p F.
268 virtual TargetTransformInfo getTargetTransformInfo(const Function &F);
269
270 /// Allow the target to modify the pass manager, e.g. by calling
271 /// PassManagerBuilder::addExtension.
272 virtual void adjustPassManager(PassManagerBuilder &) {}
273
274 /// These enums are meant to be passed into addPassesToEmitFile to indicate
275 /// what type of file to emit, and returned by it to indicate what type of
276 /// file could actually be made.
277 enum CodeGenFileType {
278 CGFT_AssemblyFile,
279 CGFT_ObjectFile,
280 CGFT_Null // Do not emit any output.
281 };
282
283 /// Add passes to the specified pass manager to get the specified file
284 /// emitted. Typically this will involve several steps of code generation.
285 /// This method should return true if emission of this file type is not
286 /// supported, or false on success.
287 /// \p MMI is an optional parameter that, if set to non-nullptr,
288 /// will be used to set the MachineModuloInfo for this PM.
289 virtual bool addPassesToEmitFile(PassManagerBase &, raw_pwrite_stream &,
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100290 raw_pwrite_stream *, CodeGenFileType,
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100291 bool /*DisableVerify*/ = true,
292 MachineModuleInfo *MMI = nullptr) {
293 return true;
294 }
295
296 /// Add passes to the specified pass manager to get machine code emitted with
297 /// the MCJIT. This method returns true if machine code is not supported. It
298 /// fills the MCContext Ctx pointer which can be used to build custom
299 /// MCStreamer.
300 ///
301 virtual bool addPassesToEmitMC(PassManagerBase &, MCContext *&,
302 raw_pwrite_stream &,
303 bool /*DisableVerify*/ = true) {
304 return true;
305 }
306
307 /// True if subtarget inserts the final scheduling pass on its own.
308 ///
309 /// Branch relaxation, which must happen after block placement, can
310 /// on some targets (e.g. SystemZ) expose additional post-RA
311 /// scheduling opportunities.
312 virtual bool targetSchedulesPostRAScheduling() const { return false; };
313
314 void getNameWithPrefix(SmallVectorImpl<char> &Name, const GlobalValue *GV,
315 Mangler &Mang, bool MayAlwaysUsePrivate = false) const;
316 MCSymbol *getSymbol(const GlobalValue *GV) const;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100317};
318
319/// This class describes a target machine that is implemented with the LLVM
320/// target-independent code generator.
321///
322class LLVMTargetMachine : public TargetMachine {
323protected: // Can only create subclasses.
324 LLVMTargetMachine(const Target &T, StringRef DataLayoutString,
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100325 const Triple &TT, StringRef CPU, StringRef FS,
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100326 const TargetOptions &Options, Reloc::Model RM,
327 CodeModel::Model CM, CodeGenOpt::Level OL);
328
329 void initAsmInfo();
330
331public:
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100332 /// Get a TargetTransformInfo implementation for the target.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100333 ///
334 /// The TTI returned uses the common code generator to answer queries about
335 /// the IR.
336 TargetTransformInfo getTargetTransformInfo(const Function &F) override;
337
338 /// Create a pass configuration object to be used by addPassToEmitX methods
339 /// for generating a pipeline of CodeGen passes.
340 virtual TargetPassConfig *createPassConfig(PassManagerBase &PM);
341
342 /// Add passes to the specified pass manager to get the specified file
343 /// emitted. Typically this will involve several steps of code generation.
344 /// \p MMI is an optional parameter that, if set to non-nullptr,
345 /// will be used to set the MachineModuloInfofor this PM.
346 bool addPassesToEmitFile(PassManagerBase &PM, raw_pwrite_stream &Out,
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100347 raw_pwrite_stream *DwoOut, CodeGenFileType FileType,
348 bool DisableVerify = true,
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100349 MachineModuleInfo *MMI = nullptr) override;
350
351 /// Add passes to the specified pass manager to get machine code emitted with
352 /// the MCJIT. This method returns true if machine code is not supported. It
353 /// fills the MCContext Ctx pointer which can be used to build custom
354 /// MCStreamer.
355 bool addPassesToEmitMC(PassManagerBase &PM, MCContext *&Ctx,
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100356 raw_pwrite_stream &Out,
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100357 bool DisableVerify = true) override;
358
359 /// Returns true if the target is expected to pass all machine verifier
360 /// checks. This is a stopgap measure to fix targets one by one. We will
361 /// remove this at some point and always enable the verifier when
362 /// EXPENSIVE_CHECKS is enabled.
363 virtual bool isMachineVerifierClean() const { return true; }
364
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100365 /// Adds an AsmPrinter pass to the pipeline that prints assembly or
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100366 /// machine code from the MI representation.
367 bool addAsmPrinter(PassManagerBase &PM, raw_pwrite_stream &Out,
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100368 raw_pwrite_stream *DwoOut, CodeGenFileType FileTYpe,
369 MCContext &Context);
Andrew Walbran16937d02019-10-22 13:54:20 +0100370
371 /// True if the target uses physical regs at Prolog/Epilog insertion
372 /// time. If true (most machines), all vregs must be allocated before
373 /// PEI. If false (virtual-register machines), then callee-save register
374 /// spilling and scavenging are not needed or used.
375 virtual bool usesPhysRegsForPEI() const { return true; }
376
377 /// True if the target wants to use interprocedural register allocation by
378 /// default. The -enable-ipra flag can be used to override this.
379 virtual bool useIPRA() const {
380 return false;
381 }
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100382};
383
Andrew Walbran16937d02019-10-22 13:54:20 +0100384/// Helper method for getting the code model, returning Default if
385/// CM does not have a value. The tiny and kernel models will produce
386/// an error, so targets that support them or require more complex codemodel
387/// selection logic should implement and call their own getEffectiveCodeModel.
388inline CodeModel::Model getEffectiveCodeModel(Optional<CodeModel::Model> CM,
389 CodeModel::Model Default) {
390 if (CM) {
391 // By default, targets do not support the tiny and kernel models.
392 if (*CM == CodeModel::Tiny)
Andrew Walbran3d2c1972020-04-07 12:24:26 +0100393 report_fatal_error("Target does not support the tiny CodeModel", false);
Andrew Walbran16937d02019-10-22 13:54:20 +0100394 if (*CM == CodeModel::Kernel)
Andrew Walbran3d2c1972020-04-07 12:24:26 +0100395 report_fatal_error("Target does not support the kernel CodeModel", false);
Andrew Walbran16937d02019-10-22 13:54:20 +0100396 return *CM;
397 }
398 return Default;
399}
400
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100401} // end namespace llvm
402
403#endif // LLVM_TARGET_TARGETMACHINE_H