ff5205801bc4a7aab28a6109b5572677fcff58e2
[oota-llvm.git] / lib / CodeGen / LLVMTargetMachine.cpp
1 //===-- LLVMTargetMachine.cpp - Implement the LLVMTargetMachine class -----===//
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 implements the LLVMTargetMachine class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/Target/TargetMachine.h"
15 #include "llvm/Analysis/Passes.h"
16 #include "llvm/CodeGen/AsmPrinter.h"
17 #include "llvm/CodeGen/BasicTTIImpl.h"
18 #include "llvm/CodeGen/MachineFunctionAnalysis.h"
19 #include "llvm/CodeGen/MachineModuleInfo.h"
20 #include "llvm/CodeGen/Passes.h"
21 #include "llvm/IR/IRPrintingPasses.h"
22 #include "llvm/IR/LegacyPassManager.h"
23 #include "llvm/IR/Verifier.h"
24 #include "llvm/MC/MCAsmInfo.h"
25 #include "llvm/MC/MCContext.h"
26 #include "llvm/MC/MCInstrInfo.h"
27 #include "llvm/MC/MCStreamer.h"
28 #include "llvm/MC/MCSubtargetInfo.h"
29 #include "llvm/Support/CommandLine.h"
30 #include "llvm/Support/ErrorHandling.h"
31 #include "llvm/Support/FormattedStream.h"
32 #include "llvm/Support/TargetRegistry.h"
33 #include "llvm/Target/TargetLoweringObjectFile.h"
34 #include "llvm/Target/TargetOptions.h"
35 #include "llvm/Transforms/Scalar.h"
36 using namespace llvm;
37
38 // Enable or disable FastISel. Both options are needed, because
39 // FastISel is enabled by default with -fast, and we wish to be
40 // able to enable or disable fast-isel independently from -O0.
41 static cl::opt<cl::boolOrDefault>
42 EnableFastISelOption("fast-isel", cl::Hidden,
43   cl::desc("Enable the \"fast\" instruction selector"));
44
45 void LLVMTargetMachine::initAsmInfo() {
46   MRI = TheTarget.createMCRegInfo(getTargetTriple());
47   MII = TheTarget.createMCInstrInfo();
48   // FIXME: Having an MCSubtargetInfo on the target machine is a hack due
49   // to some backends having subtarget feature dependent module level
50   // code generation. This is similar to the hack in the AsmPrinter for
51   // module level assembly etc.
52   STI = TheTarget.createMCSubtargetInfo(getTargetTriple(), getTargetCPU(),
53                                         getTargetFeatureString());
54
55   MCAsmInfo *TmpAsmInfo = TheTarget.createMCAsmInfo(*MRI, getTargetTriple());
56   // TargetSelect.h moved to a different directory between LLVM 2.9 and 3.0,
57   // and if the old one gets included then MCAsmInfo will be NULL and
58   // we'll crash later.
59   // Provide the user with a useful error message about what's wrong.
60   assert(TmpAsmInfo && "MCAsmInfo not initialized. "
61          "Make sure you include the correct TargetSelect.h"
62          "and that InitializeAllTargetMCs() is being invoked!");
63
64   if (Options.DisableIntegratedAS)
65     TmpAsmInfo->setUseIntegratedAssembler(false);
66
67   if (Options.CompressDebugSections)
68     TmpAsmInfo->setCompressDebugSections(true);
69
70   AsmInfo = TmpAsmInfo;
71 }
72
73 LLVMTargetMachine::LLVMTargetMachine(const Target &T,
74                                      StringRef DataLayoutString,
75                                      StringRef Triple, StringRef CPU,
76                                      StringRef FS, TargetOptions Options,
77                                      Reloc::Model RM, CodeModel::Model CM,
78                                      CodeGenOpt::Level OL)
79     : TargetMachine(T, DataLayoutString, Triple, CPU, FS, Options) {
80   CodeGenInfo = T.createMCCodeGenInfo(Triple, RM, CM, OL);
81 }
82
83 TargetIRAnalysis LLVMTargetMachine::getTargetIRAnalysis() {
84   return TargetIRAnalysis([this](Function &F) {
85     return TargetTransformInfo(BasicTTIImpl(this, F));
86   });
87 }
88
89 /// addPassesToX helper drives creation and initialization of TargetPassConfig.
90 static MCContext *addPassesToGenerateCode(LLVMTargetMachine *TM,
91                                           PassManagerBase &PM,
92                                           bool DisableVerify,
93                                           AnalysisID StartAfter,
94                                           AnalysisID StopAfter) {
95
96   // Add internal analysis passes from the target machine.
97   PM.add(createTargetTransformInfoWrapperPass(TM->getTargetIRAnalysis()));
98
99   // Targets may override createPassConfig to provide a target-specific
100   // subclass.
101   TargetPassConfig *PassConfig = TM->createPassConfig(PM);
102   PassConfig->setStartStopPasses(StartAfter, StopAfter);
103
104   // Set PassConfig options provided by TargetMachine.
105   PassConfig->setDisableVerify(DisableVerify);
106
107   PM.add(PassConfig);
108
109   PassConfig->addIRPasses();
110
111   PassConfig->addCodeGenPrepare();
112
113   PassConfig->addPassesToHandleExceptions();
114
115   PassConfig->addISelPrepare();
116
117   // Install a MachineModuleInfo class, which is an immutable pass that holds
118   // all the per-module stuff we're generating, including MCContext.
119   MachineModuleInfo *MMI = new MachineModuleInfo(
120       *TM->getMCAsmInfo(), *TM->getMCRegisterInfo(), TM->getObjFileLowering());
121   PM.add(MMI);
122
123   // Set up a MachineFunction for the rest of CodeGen to work on.
124   PM.add(new MachineFunctionAnalysis(*TM));
125
126   // Enable FastISel with -fast, but allow that to be overridden.
127   if (EnableFastISelOption == cl::BOU_TRUE ||
128       (TM->getOptLevel() == CodeGenOpt::None &&
129        EnableFastISelOption != cl::BOU_FALSE))
130     TM->setFastISel(true);
131
132   // Ask the target for an isel.
133   if (PassConfig->addInstSelector())
134     return nullptr;
135
136   PassConfig->addMachinePasses();
137
138   PassConfig->setInitialized();
139
140   return &MMI->getContext();
141 }
142
143 bool LLVMTargetMachine::addPassesToEmitFile(
144     PassManagerBase &PM, raw_pwrite_stream &Out, CodeGenFileType FileType,
145     bool DisableVerify, AnalysisID StartAfter, AnalysisID StopAfter) {
146   // Add common CodeGen passes.
147   MCContext *Context = addPassesToGenerateCode(this, PM, DisableVerify,
148                                                StartAfter, StopAfter);
149   if (!Context)
150     return true;
151
152   if (StopAfter) {
153     PM.add(createPrintMIRPass(outs()));
154     return false;
155   }
156
157   if (Options.MCOptions.MCSaveTempLabels)
158     Context->setAllowTemporaryLabels(false);
159
160   const MCSubtargetInfo &STI = *getMCSubtargetInfo();
161   const MCAsmInfo &MAI = *getMCAsmInfo();
162   const MCRegisterInfo &MRI = *getMCRegisterInfo();
163   const MCInstrInfo &MII = *getMCInstrInfo();
164
165   std::unique_ptr<MCStreamer> AsmStreamer;
166
167   switch (FileType) {
168   case CGFT_AssemblyFile: {
169     MCInstPrinter *InstPrinter = getTarget().createMCInstPrinter(
170         Triple(getTargetTriple()), MAI.getAssemblerDialect(), MAI, MII, MRI);
171
172     // Create a code emitter if asked to show the encoding.
173     MCCodeEmitter *MCE = nullptr;
174     if (Options.MCOptions.ShowMCEncoding)
175       MCE = getTarget().createMCCodeEmitter(MII, MRI, *Context);
176
177     MCAsmBackend *MAB = getTarget().createMCAsmBackend(MRI, getTargetTriple(),
178                                                        TargetCPU);
179     auto FOut = llvm::make_unique<formatted_raw_ostream>(Out);
180     MCStreamer *S = getTarget().createAsmStreamer(
181         *Context, std::move(FOut), Options.MCOptions.AsmVerbose,
182         Options.MCOptions.MCUseDwarfDirectory, InstPrinter, MCE, MAB,
183         Options.MCOptions.ShowMCInst);
184     AsmStreamer.reset(S);
185     break;
186   }
187   case CGFT_ObjectFile: {
188     // Create the code emitter for the target if it exists.  If not, .o file
189     // emission fails.
190     MCCodeEmitter *MCE = getTarget().createMCCodeEmitter(MII, MRI, *Context);
191     MCAsmBackend *MAB = getTarget().createMCAsmBackend(MRI, getTargetTriple(),
192                                                        TargetCPU);
193     if (!MCE || !MAB)
194       return true;
195
196     // Don't waste memory on names of temp labels.
197     Context->setUseNamesOnTempLabels(false);
198
199     Triple T(getTargetTriple());
200     AsmStreamer.reset(getTarget().createMCObjectStreamer(
201         T, *Context, *MAB, Out, MCE, STI, Options.MCOptions.MCRelaxAll,
202         /*DWARFMustBeAtTheEnd*/ true));
203     break;
204   }
205   case CGFT_Null:
206     // The Null output is intended for use for performance analysis and testing,
207     // not real users.
208     AsmStreamer.reset(getTarget().createNullStreamer(*Context));
209     break;
210   }
211
212   // Create the AsmPrinter, which takes ownership of AsmStreamer if successful.
213   FunctionPass *Printer =
214       getTarget().createAsmPrinter(*this, std::move(AsmStreamer));
215   if (!Printer)
216     return true;
217
218   PM.add(Printer);
219
220   return false;
221 }
222
223 /// addPassesToEmitMC - Add passes to the specified pass manager to get
224 /// machine code emitted with the MCJIT. This method returns true if machine
225 /// code is not supported. It fills the MCContext Ctx pointer which can be
226 /// used to build custom MCStreamer.
227 ///
228 bool LLVMTargetMachine::addPassesToEmitMC(PassManagerBase &PM, MCContext *&Ctx,
229                                           raw_pwrite_stream &Out,
230                                           bool DisableVerify) {
231   // Add common CodeGen passes.
232   Ctx = addPassesToGenerateCode(this, PM, DisableVerify, nullptr, nullptr);
233   if (!Ctx)
234     return true;
235
236   if (Options.MCOptions.MCSaveTempLabels)
237     Ctx->setAllowTemporaryLabels(false);
238
239   // Create the code emitter for the target if it exists.  If not, .o file
240   // emission fails.
241   const MCRegisterInfo &MRI = *getMCRegisterInfo();
242   MCCodeEmitter *MCE =
243       getTarget().createMCCodeEmitter(*getMCInstrInfo(), MRI, *Ctx);
244   MCAsmBackend *MAB = getTarget().createMCAsmBackend(MRI, getTargetTriple(),
245                                                      TargetCPU);
246   if (!MCE || !MAB)
247     return true;
248
249   Triple T(getTargetTriple());
250   const MCSubtargetInfo &STI = *getMCSubtargetInfo();
251   std::unique_ptr<MCStreamer> AsmStreamer(getTarget().createMCObjectStreamer(
252       T, *Ctx, *MAB, Out, MCE, STI, Options.MCOptions.MCRelaxAll,
253       /*DWARFMustBeAtTheEnd*/ true));
254
255   // Create the AsmPrinter, which takes ownership of AsmStreamer if successful.
256   FunctionPass *Printer =
257       getTarget().createAsmPrinter(*this, std::move(AsmStreamer));
258   if (!Printer)
259     return true;
260
261   PM.add(Printer);
262
263   return false; // success!
264 }