1 //===-- LLVMTargetMachine.cpp - Implement the LLVMTargetMachine class -----===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the LLVMTargetMachine class.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/Target/TargetMachine.h"
15 #include "llvm/PassManager.h"
16 #include "llvm/Pass.h"
17 #include "llvm/Assembly/PrintModulePass.h"
18 #include "llvm/Analysis/LoopPass.h"
19 #include "llvm/CodeGen/Passes.h"
20 #include "llvm/CodeGen/GCStrategy.h"
21 #include "llvm/CodeGen/MachineFunctionAnalysis.h"
22 #include "llvm/Target/TargetOptions.h"
23 #include "llvm/Target/TargetAsmInfo.h"
24 #include "llvm/Target/TargetRegistry.h"
25 #include "llvm/Transforms/Scalar.h"
26 #include "llvm/Support/CommandLine.h"
27 #include "llvm/Support/FormattedStream.h"
34 static cl::opt
<bool> PrintLSR("print-lsr-output", cl::Hidden
,
35 cl::desc("Print LLVM IR produced by the loop-reduce pass"));
36 static cl::opt
<bool> PrintISelInput("print-isel-input", cl::Hidden
,
37 cl::desc("Print LLVM IR input to isel pass"));
38 static cl::opt
<bool> PrintEmittedAsm("print-emitted-asm", cl::Hidden
,
39 cl::desc("Dump emitter generated instructions as assembly"));
40 static cl::opt
<bool> PrintGCInfo("print-gc", cl::Hidden
,
41 cl::desc("Dump garbage collector data"));
42 static cl::opt
<bool> VerifyMachineCode("verify-machineinstrs", cl::Hidden
,
43 cl::desc("Verify generated machine code"),
44 cl::init(getenv("LLVM_VERIFY_MACHINEINSTRS")!=NULL
));
46 // When this works it will be on by default.
48 DisablePostRAScheduler("disable-post-RA-scheduler",
49 cl::desc("Disable scheduling after register allocation"),
52 // Enable or disable FastISel. Both options are needed, because
53 // FastISel is enabled by default with -fast, and we wish to be
54 // able to enable or disable fast-isel independently from -fast.
55 static cl::opt
<cl::boolOrDefault
>
56 EnableFastISelOption("fast-isel", cl::Hidden
,
57 cl::desc("Enable the experimental \"fast\" instruction selector"));
60 LLVMTargetMachine::addPassesToEmitFile(PassManagerBase
&PM
,
61 formatted_raw_ostream
&Out
,
62 CodeGenFileType FileType
,
63 CodeGenOpt::Level OptLevel
) {
64 // Add common CodeGen passes.
65 if (addCommonCodeGenPasses(PM
, OptLevel
))
66 return FileModel::Error
;
68 // Fold redundant debug labels.
69 PM
.add(createDebugLabelFoldingPass());
72 PM
.add(createMachineFunctionPrinterPass(cerr
));
74 if (addPreEmitPass(PM
, OptLevel
) && PrintMachineCode
)
75 PM
.add(createMachineFunctionPrinterPass(cerr
));
77 if (OptLevel
!= CodeGenOpt::None
)
78 PM
.add(createCodePlacementOptPass());
83 case TargetMachine::AssemblyFile
:
84 if (addAssemblyEmitter(PM
, OptLevel
, getAsmVerbosityDefault(), Out
))
85 return FileModel::Error
;
86 return FileModel::AsmFile
;
87 case TargetMachine::ObjectFile
:
88 if (getMachOWriterInfo())
89 return FileModel::MachOFile
;
90 else if (getELFWriterInfo())
91 return FileModel::ElfFile
;
94 return FileModel::Error
;
97 bool LLVMTargetMachine::addAssemblyEmitter(PassManagerBase
&PM
,
98 CodeGenOpt::Level OptLevel
,
100 formatted_raw_ostream
&Out
) {
101 FunctionPass
*Printer
= getTarget().createAsmPrinter(Out
, *this, Verbose
);
109 /// addPassesToEmitFileFinish - If the passes to emit the specified file had to
110 /// be split up (e.g., to add an object writer pass), this method can be used to
111 /// finish up adding passes to emit the file, if necessary.
112 bool LLVMTargetMachine::addPassesToEmitFileFinish(PassManagerBase
&PM
,
113 MachineCodeEmitter
*MCE
,
114 CodeGenOpt::Level OptLevel
) {
116 addSimpleCodeEmitter(PM
, OptLevel
, *MCE
);
118 addAssemblyEmitter(PM
, OptLevel
, true, ferrs());
120 PM
.add(createGCInfoDeleter());
122 return false; // success!
125 /// addPassesToEmitFileFinish - If the passes to emit the specified file had to
126 /// be split up (e.g., to add an object writer pass), this method can be used to
127 /// finish up adding passes to emit the file, if necessary.
128 bool LLVMTargetMachine::addPassesToEmitFileFinish(PassManagerBase
&PM
,
130 CodeGenOpt::Level OptLevel
) {
132 addSimpleCodeEmitter(PM
, OptLevel
, *JCE
);
134 addAssemblyEmitter(PM
, OptLevel
, true, ferrs());
136 PM
.add(createGCInfoDeleter());
138 return false; // success!
141 /// addPassesToEmitFileFinish - If the passes to emit the specified file had to
142 /// be split up (e.g., to add an object writer pass), this method can be used to
143 /// finish up adding passes to emit the file, if necessary.
144 bool LLVMTargetMachine::addPassesToEmitFileFinish(PassManagerBase
&PM
,
145 ObjectCodeEmitter
*OCE
,
146 CodeGenOpt::Level OptLevel
) {
148 addSimpleCodeEmitter(PM
, OptLevel
, *OCE
);
150 addAssemblyEmitter(PM
, OptLevel
, true, ferrs());
152 PM
.add(createGCInfoDeleter());
154 return false; // success!
157 /// addPassesToEmitMachineCode - Add passes to the specified pass manager to
158 /// get machine code emitted. This uses a MachineCodeEmitter object to handle
159 /// actually outputting the machine code and resolving things like the address
160 /// of functions. This method should returns true if machine code emission is
163 bool LLVMTargetMachine::addPassesToEmitMachineCode(PassManagerBase
&PM
,
164 MachineCodeEmitter
&MCE
,
165 CodeGenOpt::Level OptLevel
) {
166 // Add common CodeGen passes.
167 if (addCommonCodeGenPasses(PM
, OptLevel
))
170 if (addPreEmitPass(PM
, OptLevel
) && PrintMachineCode
)
171 PM
.add(createMachineFunctionPrinterPass(cerr
));
173 addCodeEmitter(PM
, OptLevel
, MCE
);
175 addAssemblyEmitter(PM
, OptLevel
, true, ferrs());
177 PM
.add(createGCInfoDeleter());
179 return false; // success!
182 /// addPassesToEmitMachineCode - Add passes to the specified pass manager to
183 /// get machine code emitted. This uses a MachineCodeEmitter object to handle
184 /// actually outputting the machine code and resolving things like the address
185 /// of functions. This method should returns true if machine code emission is
188 bool LLVMTargetMachine::addPassesToEmitMachineCode(PassManagerBase
&PM
,
190 CodeGenOpt::Level OptLevel
) {
191 // Add common CodeGen passes.
192 if (addCommonCodeGenPasses(PM
, OptLevel
))
195 if (addPreEmitPass(PM
, OptLevel
) && PrintMachineCode
)
196 PM
.add(createMachineFunctionPrinterPass(cerr
));
198 addCodeEmitter(PM
, OptLevel
, JCE
);
200 addAssemblyEmitter(PM
, OptLevel
, true, ferrs());
202 PM
.add(createGCInfoDeleter());
204 return false; // success!
207 static void printAndVerify(PassManagerBase
&PM
,
208 bool allowDoubleDefs
= false) {
209 if (PrintMachineCode
)
210 PM
.add(createMachineFunctionPrinterPass(cerr
));
212 if (VerifyMachineCode
)
213 PM
.add(createMachineVerifierPass(allowDoubleDefs
));
216 /// addCommonCodeGenPasses - Add standard LLVM codegen passes used for both
217 /// emitting to assembly files or machine code output.
219 bool LLVMTargetMachine::addCommonCodeGenPasses(PassManagerBase
&PM
,
220 CodeGenOpt::Level OptLevel
) {
221 // Standard LLVM-Level Passes.
223 // Run loop strength reduction before anything else.
224 if (OptLevel
!= CodeGenOpt::None
) {
225 PM
.add(createLoopStrengthReducePass(getTargetLowering()));
227 PM
.add(createPrintFunctionPass("\n\n*** Code after LSR ***\n", &errs()));
230 // Turn exception handling constructs into something the code generators can
232 if (!getTargetAsmInfo()->doesSupportExceptionHandling())
233 PM
.add(createLowerInvokePass(getTargetLowering()));
235 PM
.add(createDwarfEHPass(getTargetLowering(), OptLevel
==CodeGenOpt::None
));
237 PM
.add(createGCLoweringPass());
239 // Make sure that no unreachable blocks are instruction selected.
240 PM
.add(createUnreachableBlockEliminationPass());
242 if (OptLevel
!= CodeGenOpt::None
)
243 PM
.add(createCodeGenPreparePass(getTargetLowering()));
245 PM
.add(createStackProtectorPass(getTargetLowering()));
248 PM
.add(createPrintFunctionPass("\n\n"
249 "*** Final LLVM Code input to ISel ***\n",
252 // Standard Lower-Level Passes.
254 // Set up a MachineFunction for the rest of CodeGen to work on.
255 PM
.add(new MachineFunctionAnalysis(*this, OptLevel
));
257 // Enable FastISel with -fast, but allow that to be overridden.
258 if (EnableFastISelOption
== cl::BOU_TRUE
||
259 (OptLevel
== CodeGenOpt::None
&& EnableFastISelOption
!= cl::BOU_FALSE
))
260 EnableFastISel
= true;
262 // Ask the target for an isel.
263 if (addInstSelector(PM
, OptLevel
))
266 // Print the instruction selected machine code...
267 printAndVerify(PM
, /* allowDoubleDefs= */ true);
269 if (OptLevel
!= CodeGenOpt::None
) {
270 PM
.add(createMachineLICMPass());
271 PM
.add(createMachineSinkingPass());
272 printAndVerify(PM
, /* allowDoubleDefs= */ true);
275 // Run pre-ra passes.
276 if (addPreRegAlloc(PM
, OptLevel
))
279 // Perform register allocation.
280 PM
.add(createRegisterAllocator());
282 // Perform stack slot coloring.
283 if (OptLevel
!= CodeGenOpt::None
)
284 PM
.add(createStackSlotColoringPass(OptLevel
>= CodeGenOpt::Aggressive
));
286 printAndVerify(PM
); // Print the register-allocated code
288 // Run post-ra passes.
289 if (addPostRegAlloc(PM
, OptLevel
))
292 PM
.add(createLowerSubregsPass());
295 // Insert prolog/epilog code. Eliminate abstract frame index references...
296 PM
.add(createPrologEpilogCodeInserter());
299 // Second pass scheduler.
300 if (OptLevel
!= CodeGenOpt::None
&& !DisablePostRAScheduler
) {
301 PM
.add(createPostRAScheduler());
305 // Branch folding must be run after regalloc and prolog/epilog insertion.
306 if (OptLevel
!= CodeGenOpt::None
) {
307 PM
.add(createBranchFoldingPass(getEnableTailMergeDefault()));
311 PM
.add(createGCMachineCodeAnalysisPass());
315 PM
.add(createGCInfoPrinter(*cerr
));