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/Analysis/Verifier.h"
17 #include "llvm/Assembly/PrintModulePass.h"
18 #include "llvm/CodeGen/AsmPrinter.h"
19 #include "llvm/CodeGen/MachineFunctionAnalysis.h"
20 #include "llvm/CodeGen/MachineModuleInfo.h"
21 #include "llvm/CodeGen/GCStrategy.h"
22 #include "llvm/CodeGen/Passes.h"
23 #include "llvm/Target/TargetLowering.h"
24 #include "llvm/Target/TargetOptions.h"
25 #include "llvm/MC/MCAsmInfo.h"
26 #include "llvm/MC/MCStreamer.h"
27 #include "llvm/Target/TargetAsmInfo.h"
28 #include "llvm/Target/TargetData.h"
29 #include "llvm/Target/TargetRegistry.h"
30 #include "llvm/Transforms/Scalar.h"
31 #include "llvm/ADT/OwningPtr.h"
32 #include "llvm/Support/CommandLine.h"
33 #include "llvm/Support/Debug.h"
34 #include "llvm/Support/FormattedStream.h"
35 #include "llvm/Support/StandardPasses.h"
42 static cl::opt
<bool> DisablePostRA("disable-post-ra", cl::Hidden
,
43 cl::desc("Disable Post Regalloc"));
44 static cl::opt
<bool> DisableBranchFold("disable-branch-fold", cl::Hidden
,
45 cl::desc("Disable branch folding"));
46 static cl::opt
<bool> DisableTailDuplicate("disable-tail-duplicate", cl::Hidden
,
47 cl::desc("Disable tail duplication"));
48 static cl::opt
<bool> DisableEarlyTailDup("disable-early-taildup", cl::Hidden
,
49 cl::desc("Disable pre-register allocation tail duplication"));
50 static cl::opt
<bool> DisableCodePlace("disable-code-place", cl::Hidden
,
51 cl::desc("Disable code placement"));
52 static cl::opt
<bool> DisableSSC("disable-ssc", cl::Hidden
,
53 cl::desc("Disable Stack Slot Coloring"));
54 static cl::opt
<bool> DisableMachineLICM("disable-machine-licm", cl::Hidden
,
55 cl::desc("Disable Machine LICM"));
56 static cl::opt
<bool> DisablePostRAMachineLICM("disable-postra-machine-licm",
58 cl::desc("Disable Machine LICM"));
59 static cl::opt
<bool> DisableMachineSink("disable-machine-sink", cl::Hidden
,
60 cl::desc("Disable Machine Sinking"));
61 static cl::opt
<bool> DisableLSR("disable-lsr", cl::Hidden
,
62 cl::desc("Disable Loop Strength Reduction Pass"));
63 static cl::opt
<bool> DisableCGP("disable-cgp", cl::Hidden
,
64 cl::desc("Disable Codegen Prepare"));
65 static cl::opt
<bool> PrintLSR("print-lsr-output", cl::Hidden
,
66 cl::desc("Print LLVM IR produced by the loop-reduce pass"));
67 static cl::opt
<bool> PrintISelInput("print-isel-input", cl::Hidden
,
68 cl::desc("Print LLVM IR input to isel pass"));
69 static cl::opt
<bool> PrintGCInfo("print-gc", cl::Hidden
,
70 cl::desc("Dump garbage collector data"));
71 static cl::opt
<bool> ShowMCEncoding("show-mc-encoding", cl::Hidden
,
72 cl::desc("Show encoding in .s output"));
73 static cl::opt
<bool> ShowMCInst("show-mc-inst", cl::Hidden
,
74 cl::desc("Show instruction structure in .s output"));
75 static cl::opt
<bool> EnableMCLogging("enable-mc-api-logging", cl::Hidden
,
76 cl::desc("Enable MC API logging"));
77 static cl::opt
<bool> VerifyMachineCode("verify-machineinstrs", cl::Hidden
,
78 cl::desc("Verify generated machine code"),
79 cl::init(getenv("LLVM_VERIFY_MACHINEINSTRS")!=NULL
));
81 static cl::opt
<cl::boolOrDefault
>
82 AsmVerbose("asm-verbose", cl::desc("Add comments to directives."),
83 cl::init(cl::BOU_UNSET
));
85 static bool getVerboseAsm() {
88 case cl::BOU_UNSET
: return TargetMachine::getAsmVerbosityDefault();
89 case cl::BOU_TRUE
: return true;
90 case cl::BOU_FALSE
: return false;
94 // Enable or disable FastISel. Both options are needed, because
95 // FastISel is enabled by default with -fast, and we wish to be
96 // able to enable or disable fast-isel independently from -O0.
97 static cl::opt
<cl::boolOrDefault
>
98 EnableFastISelOption("fast-isel", cl::Hidden
,
99 cl::desc("Enable the \"fast\" instruction selector"));
101 LLVMTargetMachine::LLVMTargetMachine(const Target
&T
,
102 const std::string
&Triple
)
103 : TargetMachine(T
), TargetTriple(Triple
) {
104 AsmInfo
= T
.createAsmInfo(TargetTriple
);
107 // Set the default code model for the JIT for a generic target.
108 // FIXME: Is small right here? or .is64Bit() ? Large : Small?
109 void LLVMTargetMachine::setCodeModelForJIT() {
110 setCodeModel(CodeModel::Small
);
113 // Set the default code model for static compilation for a generic target.
114 void LLVMTargetMachine::setCodeModelForStatic() {
115 setCodeModel(CodeModel::Small
);
118 bool LLVMTargetMachine::addPassesToEmitFile(PassManagerBase
&PM
,
119 formatted_raw_ostream
&Out
,
120 CodeGenFileType FileType
,
121 CodeGenOpt::Level OptLevel
,
122 bool DisableVerify
) {
123 // Add common CodeGen passes.
124 MCContext
*Context
= 0;
125 if (addCommonCodeGenPasses(PM
, OptLevel
, DisableVerify
, Context
))
127 assert(Context
!= 0 && "Failed to get MCContext");
129 if (hasMCSaveTempLabels())
130 Context
->setAllowTemporaryLabels(false);
132 const MCAsmInfo
&MAI
= *getMCAsmInfo();
133 OwningPtr
<MCStreamer
> AsmStreamer
;
136 default: return true;
137 case CGFT_AssemblyFile
: {
138 MCInstPrinter
*InstPrinter
=
139 getTarget().createMCInstPrinter(*this, MAI
.getAssemblerDialect(), MAI
);
141 // Create a code emitter if asked to show the encoding.
142 MCCodeEmitter
*MCE
= 0;
143 TargetAsmBackend
*TAB
= 0;
144 if (ShowMCEncoding
) {
145 MCE
= getTarget().createCodeEmitter(*this, *Context
);
146 TAB
= getTarget().createAsmBackend(TargetTriple
);
149 MCStreamer
*S
= getTarget().createAsmStreamer(*Context
, Out
,
155 AsmStreamer
.reset(S
);
158 case CGFT_ObjectFile
: {
159 // Create the code emitter for the target if it exists. If not, .o file
161 MCCodeEmitter
*MCE
= getTarget().createCodeEmitter(*this, *Context
);
162 TargetAsmBackend
*TAB
= getTarget().createAsmBackend(TargetTriple
);
163 if (MCE
== 0 || TAB
== 0)
166 AsmStreamer
.reset(getTarget().createObjectStreamer(TargetTriple
, *Context
,
169 hasMCNoExecStack()));
170 AsmStreamer
.get()->InitSections();
174 // The Null output is intended for use for performance analysis and testing,
176 AsmStreamer
.reset(createNullStreamer(*Context
));
181 AsmStreamer
.reset(createLoggingStreamer(AsmStreamer
.take(), errs()));
183 // Create the AsmPrinter, which takes ownership of AsmStreamer if successful.
184 FunctionPass
*Printer
= getTarget().createAsmPrinter(*this, *AsmStreamer
);
188 // If successful, createAsmPrinter took ownership of AsmStreamer.
193 // Make sure the code model is set.
194 setCodeModelForStatic();
195 PM
.add(createGCInfoDeleter());
199 /// addPassesToEmitMachineCode - Add passes to the specified pass manager to
200 /// get machine code emitted. This uses a JITCodeEmitter object to handle
201 /// actually outputting the machine code and resolving things like the address
202 /// of functions. This method should returns true if machine code emission is
205 bool LLVMTargetMachine::addPassesToEmitMachineCode(PassManagerBase
&PM
,
207 CodeGenOpt::Level OptLevel
,
208 bool DisableVerify
) {
209 // Make sure the code model is set.
210 setCodeModelForJIT();
212 // Add common CodeGen passes.
214 if (addCommonCodeGenPasses(PM
, OptLevel
, DisableVerify
, Ctx
))
217 addCodeEmitter(PM
, OptLevel
, JCE
);
218 PM
.add(createGCInfoDeleter());
220 return false; // success!
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.
228 bool LLVMTargetMachine::addPassesToEmitMC(PassManagerBase
&PM
,
231 CodeGenOpt::Level OptLevel
,
232 bool DisableVerify
) {
233 // Add common CodeGen passes.
234 if (addCommonCodeGenPasses(PM
, OptLevel
, DisableVerify
, Ctx
))
237 if (hasMCSaveTempLabels())
238 Ctx
->setAllowTemporaryLabels(false);
240 // Create the code emitter for the target if it exists. If not, .o file
242 MCCodeEmitter
*MCE
= getTarget().createCodeEmitter(*this, *Ctx
);
243 TargetAsmBackend
*TAB
= getTarget().createAsmBackend(TargetTriple
);
244 if (MCE
== 0 || TAB
== 0)
247 OwningPtr
<MCStreamer
> AsmStreamer
;
248 AsmStreamer
.reset(getTarget().createObjectStreamer(TargetTriple
, *Ctx
,
251 hasMCNoExecStack()));
252 AsmStreamer
.get()->InitSections();
254 // Create the AsmPrinter, which takes ownership of AsmStreamer if successful.
255 FunctionPass
*Printer
= getTarget().createAsmPrinter(*this, *AsmStreamer
);
259 // If successful, createAsmPrinter took ownership of AsmStreamer.
264 // Make sure the code model is set.
265 setCodeModelForJIT();
267 return false; // success!
270 static void printNoVerify(PassManagerBase
&PM
, const char *Banner
) {
271 if (PrintMachineCode
)
272 PM
.add(createMachineFunctionPrinterPass(dbgs(), Banner
));
275 static void printAndVerify(PassManagerBase
&PM
,
276 const char *Banner
) {
277 if (PrintMachineCode
)
278 PM
.add(createMachineFunctionPrinterPass(dbgs(), Banner
));
280 if (VerifyMachineCode
)
281 PM
.add(createMachineVerifierPass(Banner
));
284 /// addCommonCodeGenPasses - Add standard LLVM codegen passes used for both
285 /// emitting to assembly files or machine code output.
287 bool LLVMTargetMachine::addCommonCodeGenPasses(PassManagerBase
&PM
,
288 CodeGenOpt::Level OptLevel
,
290 MCContext
*&OutContext
) {
291 // Standard LLVM-Level Passes.
293 // Basic AliasAnalysis support.
294 createStandardAliasAnalysisPasses(&PM
);
296 // Before running any passes, run the verifier to determine if the input
297 // coming from the front-end and/or optimizer is valid.
299 PM
.add(createVerifierPass());
301 // Run loop strength reduction before anything else.
302 if (OptLevel
!= CodeGenOpt::None
&& !DisableLSR
) {
303 PM
.add(createLoopStrengthReducePass(getTargetLowering()));
305 PM
.add(createPrintFunctionPass("\n\n*** Code after LSR ***\n", &dbgs()));
308 PM
.add(createGCLoweringPass());
310 // Make sure that no unreachable blocks are instruction selected.
311 PM
.add(createUnreachableBlockEliminationPass());
313 // Turn exception handling constructs into something the code generators can
315 switch (getMCAsmInfo()->getExceptionHandlingType()) {
316 case ExceptionHandling::SjLj
:
317 // SjLj piggy-backs on dwarf for this bit. The cleanups done apply to both
318 // Dwarf EH prepare needs to be run after SjLj prepare. Otherwise,
319 // catch info can get misplaced when a selector ends up more than one block
320 // removed from the parent invoke(s). This could happen when a landing
321 // pad is shared by multiple invokes and is also a target of a normal
322 // edge from elsewhere.
323 PM
.add(createSjLjEHPass(getTargetLowering()));
325 case ExceptionHandling::DwarfCFI
:
326 case ExceptionHandling::DwarfTable
:
327 case ExceptionHandling::ARM
:
328 PM
.add(createDwarfEHPass(this));
330 case ExceptionHandling::None
:
331 PM
.add(createLowerInvokePass(getTargetLowering()));
333 // The lower invoke pass may create unreachable code. Remove it.
334 PM
.add(createUnreachableBlockEliminationPass());
338 if (OptLevel
!= CodeGenOpt::None
&& !DisableCGP
)
339 PM
.add(createCodeGenPreparePass(getTargetLowering()));
341 PM
.add(createStackProtectorPass(getTargetLowering()));
343 addPreISel(PM
, OptLevel
);
346 PM
.add(createPrintFunctionPass("\n\n"
347 "*** Final LLVM Code input to ISel ***\n",
350 // All passes which modify the LLVM IR are now complete; run the verifier
351 // to ensure that the IR is valid.
353 PM
.add(createVerifierPass());
355 // Standard Lower-Level Passes.
357 // Install a MachineModuleInfo class, which is an immutable pass that holds
358 // all the per-module stuff we're generating, including MCContext.
359 TargetAsmInfo
*TAI
= new TargetAsmInfo(*this);
360 MachineModuleInfo
*MMI
= new MachineModuleInfo(*getMCAsmInfo(), TAI
);
362 OutContext
= &MMI
->getContext(); // Return the MCContext specifically by-ref.
364 // Set up a MachineFunction for the rest of CodeGen to work on.
365 PM
.add(new MachineFunctionAnalysis(*this, OptLevel
));
367 // Enable FastISel with -fast, but allow that to be overridden.
368 if (EnableFastISelOption
== cl::BOU_TRUE
||
369 (OptLevel
== CodeGenOpt::None
&& EnableFastISelOption
!= cl::BOU_FALSE
))
370 EnableFastISel
= true;
372 // Ask the target for an isel.
373 if (addInstSelector(PM
, OptLevel
))
376 // Print the instruction selected machine code...
377 printAndVerify(PM
, "After Instruction Selection");
379 // Expand pseudo-instructions emitted by ISel.
380 PM
.add(createExpandISelPseudosPass());
382 // Optimize PHIs before DCE: removing dead PHI cycles may make more
383 // instructions dead.
384 if (OptLevel
!= CodeGenOpt::None
)
385 PM
.add(createOptimizePHIsPass());
387 // If the target requests it, assign local variables to stack slots relative
388 // to one another and simplify frame index references where possible.
389 PM
.add(createLocalStackSlotAllocationPass());
391 if (OptLevel
!= CodeGenOpt::None
) {
392 // With optimization, dead code should already be eliminated. However
393 // there is one known exception: lowered code for arguments that are only
394 // used by tail calls, where the tail calls reuse the incoming stack
395 // arguments directly (see t11 in test/CodeGen/X86/sibcall.ll).
396 PM
.add(createDeadMachineInstructionElimPass());
397 printAndVerify(PM
, "After codegen DCE pass");
399 if (!DisableMachineLICM
)
400 PM
.add(createMachineLICMPass());
401 PM
.add(createMachineCSEPass());
402 if (!DisableMachineSink
)
403 PM
.add(createMachineSinkingPass());
404 printAndVerify(PM
, "After Machine LICM, CSE and Sinking passes");
406 PM
.add(createPeepholeOptimizerPass());
407 printAndVerify(PM
, "After codegen peephole optimization pass");
410 // Pre-ra tail duplication.
411 if (OptLevel
!= CodeGenOpt::None
&& !DisableEarlyTailDup
) {
412 PM
.add(createTailDuplicatePass(true));
413 printAndVerify(PM
, "After Pre-RegAlloc TailDuplicate");
416 // Run pre-ra passes.
417 if (addPreRegAlloc(PM
, OptLevel
))
418 printAndVerify(PM
, "After PreRegAlloc passes");
420 // Perform register allocation.
421 PM
.add(createRegisterAllocator(OptLevel
));
422 printAndVerify(PM
, "After Register Allocation");
424 // Perform stack slot coloring and post-ra machine LICM.
425 if (OptLevel
!= CodeGenOpt::None
) {
426 // FIXME: Re-enable coloring with register when it's capable of adding
429 PM
.add(createStackSlotColoringPass(false));
431 // Run post-ra machine LICM to hoist reloads / remats.
432 if (!DisablePostRAMachineLICM
)
433 PM
.add(createMachineLICMPass(false));
435 printAndVerify(PM
, "After StackSlotColoring and postra Machine LICM");
438 // Run post-ra passes.
439 if (addPostRegAlloc(PM
, OptLevel
))
440 printAndVerify(PM
, "After PostRegAlloc passes");
442 PM
.add(createLowerSubregsPass());
443 printAndVerify(PM
, "After LowerSubregs");
445 // Insert prolog/epilog code. Eliminate abstract frame index references...
446 PM
.add(createPrologEpilogCodeInserter());
447 printAndVerify(PM
, "After PrologEpilogCodeInserter");
449 // Run pre-sched2 passes.
450 if (addPreSched2(PM
, OptLevel
))
451 printAndVerify(PM
, "After PreSched2 passes");
453 // Second pass scheduler.
454 if (OptLevel
!= CodeGenOpt::None
&& !DisablePostRA
) {
455 PM
.add(createPostRAScheduler(OptLevel
));
456 printAndVerify(PM
, "After PostRAScheduler");
459 // Branch folding must be run after regalloc and prolog/epilog insertion.
460 if (OptLevel
!= CodeGenOpt::None
&& !DisableBranchFold
) {
461 PM
.add(createBranchFoldingPass(getEnableTailMergeDefault()));
462 printNoVerify(PM
, "After BranchFolding");
466 if (OptLevel
!= CodeGenOpt::None
&& !DisableTailDuplicate
) {
467 PM
.add(createTailDuplicatePass(false));
468 printNoVerify(PM
, "After TailDuplicate");
471 PM
.add(createGCMachineCodeAnalysisPass());
474 PM
.add(createGCInfoPrinter(dbgs()));
476 if (OptLevel
!= CodeGenOpt::None
&& !DisableCodePlace
) {
477 PM
.add(createCodePlacementOptPass());
478 printNoVerify(PM
, "After CodePlacementOpt");
481 if (addPreEmitPass(PM
, OptLevel
))
482 printNoVerify(PM
, "After PreEmit passes");