Add a possibility to switch between CFI directives- and table-based frame description...
[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/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"
36 using namespace llvm;
37
38 namespace llvm {
39   bool EnableFastISel;
40 }
41
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",
57     cl::Hidden,
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));
80
81 static cl::opt<cl::boolOrDefault>
82 AsmVerbose("asm-verbose", cl::desc("Add comments to directives."),
83            cl::init(cl::BOU_UNSET));
84
85 static bool getVerboseAsm() {
86   switch (AsmVerbose) {
87   default:
88   case cl::BOU_UNSET: return TargetMachine::getAsmVerbosityDefault();
89   case cl::BOU_TRUE:  return true;
90   case cl::BOU_FALSE: return false;
91   }
92 }
93
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"));
100
101 // Enable or disable an experimental optimization to split GEPs
102 // and run a special GVN pass which does not examine loads, in
103 // an effort to factor out redundancy implicit in complex GEPs.
104 static cl::opt<bool> EnableSplitGEPGVN("split-gep-gvn", cl::Hidden,
105     cl::desc("Split GEPs and run no-load GVN"));
106
107 LLVMTargetMachine::LLVMTargetMachine(const Target &T,
108                                      const std::string &Triple)
109   : TargetMachine(T), TargetTriple(Triple) {
110   AsmInfo = T.createAsmInfo(TargetTriple);
111 }
112
113 // Set the default code model for the JIT for a generic target.
114 // FIXME: Is small right here? or .is64Bit() ? Large : Small?
115 void LLVMTargetMachine::setCodeModelForJIT() {
116   setCodeModel(CodeModel::Small);
117 }
118
119 // Set the default code model for static compilation for a generic target.
120 void LLVMTargetMachine::setCodeModelForStatic() {
121   setCodeModel(CodeModel::Small);
122 }
123
124 bool LLVMTargetMachine::addPassesToEmitFile(PassManagerBase &PM,
125                                             formatted_raw_ostream &Out,
126                                             CodeGenFileType FileType,
127                                             CodeGenOpt::Level OptLevel,
128                                             bool DisableVerify) {
129   // Add common CodeGen passes.
130   MCContext *Context = 0;
131   if (addCommonCodeGenPasses(PM, OptLevel, DisableVerify, Context))
132     return true;
133   assert(Context != 0 && "Failed to get MCContext");
134
135   const MCAsmInfo &MAI = *getMCAsmInfo();
136   OwningPtr<MCStreamer> AsmStreamer;
137
138   switch (FileType) {
139   default: return true;
140   case CGFT_AssemblyFile: {
141     MCInstPrinter *InstPrinter =
142       getTarget().createMCInstPrinter(MAI.getAssemblerDialect(), MAI);
143
144     // Create a code emitter if asked to show the encoding.
145     MCCodeEmitter *MCE = 0;
146     TargetAsmBackend *TAB = 0;
147     if (ShowMCEncoding) {
148       MCE = getTarget().createCodeEmitter(*this, *Context);
149       TAB = getTarget().createAsmBackend(TargetTriple);
150     }
151
152     MCStreamer *S = getTarget().createAsmStreamer(*Context, Out,
153                                                   getVerboseAsm(),
154                                                   hasMCUseLoc(),
155                                                   InstPrinter,
156                                                   MCE, TAB,
157                                                   ShowMCInst);
158     AsmStreamer.reset(S);
159     break;
160   }
161   case CGFT_ObjectFile: {
162     // Create the code emitter for the target if it exists.  If not, .o file
163     // emission fails.
164     MCCodeEmitter *MCE = getTarget().createCodeEmitter(*this, *Context);
165     TargetAsmBackend *TAB = getTarget().createAsmBackend(TargetTriple);
166     if (MCE == 0 || TAB == 0)
167       return true;
168
169     AsmStreamer.reset(getTarget().createObjectStreamer(TargetTriple, *Context,
170                                                        *TAB, Out, MCE,
171                                                        hasMCRelaxAll()));
172     AsmStreamer.get()->InitSections();
173     break;
174   }
175   case CGFT_Null:
176     // The Null output is intended for use for performance analysis and testing,
177     // not real users.
178     AsmStreamer.reset(createNullStreamer(*Context));
179     break;
180   }
181
182   if (EnableMCLogging)
183     AsmStreamer.reset(createLoggingStreamer(AsmStreamer.take(), errs()));
184
185   // Create the AsmPrinter, which takes ownership of AsmStreamer if successful.
186   FunctionPass *Printer = getTarget().createAsmPrinter(*this, *AsmStreamer);
187   if (Printer == 0)
188     return true;
189
190   // If successful, createAsmPrinter took ownership of AsmStreamer.
191   AsmStreamer.take();
192
193   PM.add(Printer);
194
195   // Make sure the code model is set.
196   setCodeModelForStatic();
197   PM.add(createGCInfoDeleter());
198   return false;
199 }
200
201 /// addPassesToEmitMachineCode - Add passes to the specified pass manager to
202 /// get machine code emitted.  This uses a JITCodeEmitter object to handle
203 /// actually outputting the machine code and resolving things like the address
204 /// of functions.  This method should returns true if machine code emission is
205 /// not supported.
206 ///
207 bool LLVMTargetMachine::addPassesToEmitMachineCode(PassManagerBase &PM,
208                                                    JITCodeEmitter &JCE,
209                                                    CodeGenOpt::Level OptLevel,
210                                                    bool DisableVerify) {
211   // Make sure the code model is set.
212   setCodeModelForJIT();
213
214   // Add common CodeGen passes.
215   MCContext *Ctx = 0;
216   if (addCommonCodeGenPasses(PM, OptLevel, DisableVerify, Ctx))
217     return true;
218
219   addCodeEmitter(PM, OptLevel, JCE);
220   PM.add(createGCInfoDeleter());
221
222   return false; // success!
223 }
224
225 /// addPassesToEmitMC - Add passes to the specified pass manager to get
226 /// machine code emitted with the MCJIT. This method returns true if machine
227 /// code is not supported. It fills the MCContext Ctx pointer which can be
228 /// used to build custom MCStreamer.
229 ///
230 bool LLVMTargetMachine::addPassesToEmitMC(PassManagerBase &PM,
231                                           MCContext *&Ctx,
232                                           CodeGenOpt::Level OptLevel,
233                                           bool DisableVerify) {
234   // Add common CodeGen passes.
235   if (addCommonCodeGenPasses(PM, OptLevel, DisableVerify, Ctx))
236     return true;
237   // Make sure the code model is set.
238   setCodeModelForJIT();
239
240   return false; // success!
241 }
242
243 static void printNoVerify(PassManagerBase &PM, const char *Banner) {
244   if (PrintMachineCode)
245     PM.add(createMachineFunctionPrinterPass(dbgs(), Banner));
246 }
247
248 static void printAndVerify(PassManagerBase &PM,
249                            const char *Banner) {
250   if (PrintMachineCode)
251     PM.add(createMachineFunctionPrinterPass(dbgs(), Banner));
252
253   if (VerifyMachineCode)
254     PM.add(createMachineVerifierPass(Banner));
255 }
256
257 /// addCommonCodeGenPasses - Add standard LLVM codegen passes used for both
258 /// emitting to assembly files or machine code output.
259 ///
260 bool LLVMTargetMachine::addCommonCodeGenPasses(PassManagerBase &PM,
261                                                CodeGenOpt::Level OptLevel,
262                                                bool DisableVerify,
263                                                MCContext *&OutContext) {
264   // Standard LLVM-Level Passes.
265
266   // Basic AliasAnalysis support.
267   createStandardAliasAnalysisPasses(&PM);
268
269   // Before running any passes, run the verifier to determine if the input
270   // coming from the front-end and/or optimizer is valid.
271   if (!DisableVerify)
272     PM.add(createVerifierPass());
273
274   // Optionally, tun split-GEPs and no-load GVN.
275   if (EnableSplitGEPGVN) {
276     PM.add(createGEPSplitterPass());
277     PM.add(createGVNPass(/*NoLoads=*/true));
278   }
279
280   // Run loop strength reduction before anything else.
281   if (OptLevel != CodeGenOpt::None && !DisableLSR) {
282     PM.add(createLoopStrengthReducePass(getTargetLowering()));
283     if (PrintLSR)
284       PM.add(createPrintFunctionPass("\n\n*** Code after LSR ***\n", &dbgs()));
285   }
286
287   PM.add(createGCLoweringPass());
288
289   // Make sure that no unreachable blocks are instruction selected.
290   PM.add(createUnreachableBlockEliminationPass());
291
292   // Turn exception handling constructs into something the code generators can
293   // handle.
294   switch (getMCAsmInfo()->getExceptionHandlingType()) {
295   case ExceptionHandling::SjLj:
296     // SjLj piggy-backs on dwarf for this bit. The cleanups done apply to both
297     // Dwarf EH prepare needs to be run after SjLj prepare. Otherwise,
298     // catch info can get misplaced when a selector ends up more than one block
299     // removed from the parent invoke(s). This could happen when a landing
300     // pad is shared by multiple invokes and is also a target of a normal
301     // edge from elsewhere.
302     PM.add(createSjLjEHPass(getTargetLowering()));
303     // FALLTHROUGH
304   case ExceptionHandling::DwarfCFI:
305   case ExceptionHandling::DwarfTable:
306     PM.add(createDwarfEHPass(this));
307     break;
308   case ExceptionHandling::None:
309     PM.add(createLowerInvokePass(getTargetLowering()));
310
311     // The lower invoke pass may create unreachable code. Remove it.
312     PM.add(createUnreachableBlockEliminationPass());
313     break;
314   }
315
316   if (OptLevel != CodeGenOpt::None && !DisableCGP)
317     PM.add(createCodeGenPreparePass(getTargetLowering()));
318
319   PM.add(createStackProtectorPass(getTargetLowering()));
320
321   addPreISel(PM, OptLevel);
322
323   if (PrintISelInput)
324     PM.add(createPrintFunctionPass("\n\n"
325                                    "*** Final LLVM Code input to ISel ***\n",
326                                    &dbgs()));
327
328   // All passes which modify the LLVM IR are now complete; run the verifier
329   // to ensure that the IR is valid.
330   if (!DisableVerify)
331     PM.add(createVerifierPass());
332
333   // Standard Lower-Level Passes.
334
335   // Install a MachineModuleInfo class, which is an immutable pass that holds
336   // all the per-module stuff we're generating, including MCContext.
337   TargetAsmInfo *TAI = new TargetAsmInfo(*this);
338   MachineModuleInfo *MMI = new MachineModuleInfo(*getMCAsmInfo(), TAI);
339   PM.add(MMI);
340   OutContext = &MMI->getContext(); // Return the MCContext specifically by-ref.
341
342   // Set up a MachineFunction for the rest of CodeGen to work on.
343   PM.add(new MachineFunctionAnalysis(*this, OptLevel));
344
345   // Enable FastISel with -fast, but allow that to be overridden.
346   if (EnableFastISelOption == cl::BOU_TRUE ||
347       (OptLevel == CodeGenOpt::None && EnableFastISelOption != cl::BOU_FALSE))
348     EnableFastISel = true;
349
350   // Ask the target for an isel.
351   if (addInstSelector(PM, OptLevel))
352     return true;
353
354   // Print the instruction selected machine code...
355   printAndVerify(PM, "After Instruction Selection");
356
357   // Expand pseudo-instructions emitted by ISel.
358   PM.add(createExpandISelPseudosPass());
359
360   // Optimize PHIs before DCE: removing dead PHI cycles may make more
361   // instructions dead.
362   if (OptLevel != CodeGenOpt::None)
363     PM.add(createOptimizePHIsPass());
364
365   // If the target requests it, assign local variables to stack slots relative
366   // to one another and simplify frame index references where possible.
367   PM.add(createLocalStackSlotAllocationPass());
368
369   if (OptLevel != CodeGenOpt::None) {
370     // With optimization, dead code should already be eliminated. However
371     // there is one known exception: lowered code for arguments that are only
372     // used by tail calls, where the tail calls reuse the incoming stack
373     // arguments directly (see t11 in test/CodeGen/X86/sibcall.ll).
374     PM.add(createDeadMachineInstructionElimPass());
375     printAndVerify(PM, "After codegen DCE pass");
376
377     if (!DisableMachineLICM)
378       PM.add(createMachineLICMPass());
379     PM.add(createMachineCSEPass());
380     if (!DisableMachineSink)
381       PM.add(createMachineSinkingPass());
382     printAndVerify(PM, "After Machine LICM, CSE and Sinking passes");
383
384     PM.add(createPeepholeOptimizerPass());
385     printAndVerify(PM, "After codegen peephole optimization pass");
386   }
387
388   // Pre-ra tail duplication.
389   if (OptLevel != CodeGenOpt::None && !DisableEarlyTailDup) {
390     PM.add(createTailDuplicatePass(true));
391     printAndVerify(PM, "After Pre-RegAlloc TailDuplicate");
392   }
393
394   // Run pre-ra passes.
395   if (addPreRegAlloc(PM, OptLevel))
396     printAndVerify(PM, "After PreRegAlloc passes");
397
398   // Perform register allocation.
399   PM.add(createRegisterAllocator(OptLevel));
400   printAndVerify(PM, "After Register Allocation");
401
402   // Perform stack slot coloring and post-ra machine LICM.
403   if (OptLevel != CodeGenOpt::None) {
404     // FIXME: Re-enable coloring with register when it's capable of adding
405     // kill markers.
406     if (!DisableSSC)
407       PM.add(createStackSlotColoringPass(false));
408
409     // Run post-ra machine LICM to hoist reloads / remats.
410     if (!DisablePostRAMachineLICM)
411       PM.add(createMachineLICMPass(false));
412
413     printAndVerify(PM, "After StackSlotColoring and postra Machine LICM");
414   }
415
416   // Run post-ra passes.
417   if (addPostRegAlloc(PM, OptLevel))
418     printAndVerify(PM, "After PostRegAlloc passes");
419
420   PM.add(createLowerSubregsPass());
421   printAndVerify(PM, "After LowerSubregs");
422
423   // Insert prolog/epilog code.  Eliminate abstract frame index references...
424   PM.add(createPrologEpilogCodeInserter());
425   printAndVerify(PM, "After PrologEpilogCodeInserter");
426
427   // Run pre-sched2 passes.
428   if (addPreSched2(PM, OptLevel))
429     printAndVerify(PM, "After PreSched2 passes");
430
431   // Second pass scheduler.
432   if (OptLevel != CodeGenOpt::None && !DisablePostRA) {
433     PM.add(createPostRAScheduler(OptLevel));
434     printAndVerify(PM, "After PostRAScheduler");
435   }
436
437   // Branch folding must be run after regalloc and prolog/epilog insertion.
438   if (OptLevel != CodeGenOpt::None && !DisableBranchFold) {
439     PM.add(createBranchFoldingPass(getEnableTailMergeDefault()));
440     printNoVerify(PM, "After BranchFolding");
441   }
442
443   // Tail duplication.
444   if (OptLevel != CodeGenOpt::None && !DisableTailDuplicate) {
445     PM.add(createTailDuplicatePass(false));
446     printNoVerify(PM, "After TailDuplicate");
447   }
448
449   PM.add(createGCMachineCodeAnalysisPass());
450
451   if (PrintGCInfo)
452     PM.add(createGCInfoPrinter(dbgs()));
453
454   if (OptLevel != CodeGenOpt::None && !DisableCodePlace) {
455     PM.add(createCodePlacementOptPass());
456     printNoVerify(PM, "After CodePlacementOpt");
457   }
458
459   if (addPreEmitPass(PM, OptLevel))
460     printNoVerify(PM, "After PreEmit passes");
461
462   return false;
463 }