LLVMTargetMachine.cpp revision fa7441049ea3232093295ef91217a8ec64adc227
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/Pass.h"
17#include "llvm/Analysis/Verifier.h"
18#include "llvm/Assembly/PrintModulePass.h"
19#include "llvm/CodeGen/AsmPrinter.h"
20#include "llvm/CodeGen/Passes.h"
21#include "llvm/CodeGen/GCStrategy.h"
22#include "llvm/CodeGen/MachineFunctionAnalysis.h"
23#include "llvm/Target/TargetOptions.h"
24#include "llvm/MC/MCAsmInfo.h"
25#include "llvm/MC/MCContext.h"
26#include "llvm/MC/MCStreamer.h"
27#include "llvm/Target/TargetData.h"
28#include "llvm/Target/TargetRegistry.h"
29#include "llvm/Transforms/Scalar.h"
30#include "llvm/ADT/OwningPtr.h"
31#include "llvm/Support/CommandLine.h"
32#include "llvm/Support/Debug.h"
33#include "llvm/Support/FormattedStream.h"
34using namespace llvm;
35
36namespace llvm {
37  bool EnableFastISel;
38}
39
40static cl::opt<bool> DisablePostRA("disable-post-ra", cl::Hidden,
41    cl::desc("Disable Post Regalloc"));
42static cl::opt<bool> DisableBranchFold("disable-branch-fold", cl::Hidden,
43    cl::desc("Disable branch folding"));
44static cl::opt<bool> DisableTailDuplicate("disable-tail-duplicate", cl::Hidden,
45    cl::desc("Disable tail duplication"));
46static cl::opt<bool> DisableEarlyTailDup("disable-early-taildup", cl::Hidden,
47    cl::desc("Disable pre-register allocation tail duplication"));
48static cl::opt<bool> DisableCodePlace("disable-code-place", cl::Hidden,
49    cl::desc("Disable code placement"));
50static cl::opt<bool> DisableSSC("disable-ssc", cl::Hidden,
51    cl::desc("Disable Stack Slot Coloring"));
52static cl::opt<bool> DisableMachineLICM("disable-machine-licm", cl::Hidden,
53    cl::desc("Disable Machine LICM"));
54static cl::opt<bool> DisableMachineSink("disable-machine-sink", cl::Hidden,
55    cl::desc("Disable Machine Sinking"));
56static cl::opt<bool> DisableLSR("disable-lsr", cl::Hidden,
57    cl::desc("Disable Loop Strength Reduction Pass"));
58static cl::opt<bool> DisableCGP("disable-cgp", cl::Hidden,
59    cl::desc("Disable Codegen Prepare"));
60static cl::opt<bool> PrintLSR("print-lsr-output", cl::Hidden,
61    cl::desc("Print LLVM IR produced by the loop-reduce pass"));
62static cl::opt<bool> PrintISelInput("print-isel-input", cl::Hidden,
63    cl::desc("Print LLVM IR input to isel pass"));
64static cl::opt<bool> PrintGCInfo("print-gc", cl::Hidden,
65    cl::desc("Dump garbage collector data"));
66static cl::opt<bool> VerifyMachineCode("verify-machineinstrs", cl::Hidden,
67    cl::desc("Verify generated machine code"),
68    cl::init(getenv("LLVM_VERIFY_MACHINEINSTRS")!=NULL));
69
70static cl::opt<cl::boolOrDefault>
71AsmVerbose("asm-verbose", cl::desc("Add comments to directives."),
72           cl::init(cl::BOU_UNSET));
73
74static bool getVerboseAsm() {
75  switch (AsmVerbose) {
76  default:
77  case cl::BOU_UNSET: return TargetMachine::getAsmVerbosityDefault();
78  case cl::BOU_TRUE:  return true;
79  case cl::BOU_FALSE: return false;
80  }
81}
82
83// Enable or disable FastISel. Both options are needed, because
84// FastISel is enabled by default with -fast, and we wish to be
85// able to enable or disable fast-isel independently from -O0.
86static cl::opt<cl::boolOrDefault>
87EnableFastISelOption("fast-isel", cl::Hidden,
88  cl::desc("Enable the \"fast\" instruction selector"));
89
90// Enable or disable an experimental optimization to split GEPs
91// and run a special GVN pass which does not examine loads, in
92// an effort to factor out redundancy implicit in complex GEPs.
93static cl::opt<bool> EnableSplitGEPGVN("split-gep-gvn", cl::Hidden,
94    cl::desc("Split GEPs and run no-load GVN"));
95
96LLVMTargetMachine::LLVMTargetMachine(const Target &T,
97                                     const std::string &TargetTriple)
98  : TargetMachine(T) {
99  AsmInfo = T.createAsmInfo(TargetTriple);
100}
101
102// Set the default code model for the JIT for a generic target.
103// FIXME: Is small right here? or .is64Bit() ? Large : Small?
104void
105LLVMTargetMachine::setCodeModelForJIT() {
106  setCodeModel(CodeModel::Small);
107}
108
109// Set the default code model for static compilation for a generic target.
110void
111LLVMTargetMachine::setCodeModelForStatic() {
112  setCodeModel(CodeModel::Small);
113}
114
115bool LLVMTargetMachine::addPassesToEmitFile(PassManagerBase &PM,
116                                            formatted_raw_ostream &Out,
117                                            CodeGenFileType FileType,
118                                            CodeGenOpt::Level OptLevel,
119                                            bool DisableVerify) {
120  // Add common CodeGen passes.
121  if (addCommonCodeGenPasses(PM, OptLevel, DisableVerify))
122    return true;
123
124  OwningPtr<MCContext> Context(new MCContext());
125  OwningPtr<MCStreamer> AsmStreamer;
126
127  formatted_raw_ostream *LegacyOutput;
128  switch (FileType) {
129  default: return true;
130  case CGFT_AssemblyFile: {
131    const MCAsmInfo &MAI = *getMCAsmInfo();
132    MCInstPrinter *InstPrinter =
133      getTarget().createMCInstPrinter(MAI.getAssemblerDialect(), MAI, Out);
134    AsmStreamer.reset(createAsmStreamer(*Context, Out, MAI,
135                                        getTargetData()->isLittleEndian(),
136                                        getVerboseAsm(), InstPrinter,
137                                        /*codeemitter*/0));
138    // Set the AsmPrinter's "O" to the output file.
139    LegacyOutput = &Out;
140    break;
141  }
142  case CGFT_ObjectFile: {
143    // Create the code emitter for the target if it exists.  If not, .o file
144    // emission fails.
145    MCCodeEmitter *MCE = getTarget().createCodeEmitter(*this, *Context);
146    if (MCE == 0)
147      return true;
148
149    AsmStreamer.reset(createMachOStreamer(*Context, Out, MCE));
150
151    // Any output to the asmprinter's "O" stream is bad and needs to be fixed,
152    // force it to come out stderr.
153    // FIXME: this is horrible and leaks, eventually remove the raw_ostream from
154    // asmprinter.
155    LegacyOutput = new formatted_raw_ostream(errs());
156    break;
157  }
158  case CGFT_Null:
159    // The Null output is intended for use for performance analysis and testing,
160    // not real users.
161    AsmStreamer.reset(createNullStreamer(*Context));
162    // Any output to the asmprinter's "O" stream is bad and needs to be fixed,
163    // force it to come out stderr.
164    // FIXME: this is horrible and leaks, eventually remove the raw_ostream from
165    // asmprinter.
166    LegacyOutput = new formatted_raw_ostream(errs());
167    break;
168  }
169
170  // Create the AsmPrinter, which takes ownership of Context and AsmStreamer
171  // if successful.
172  FunctionPass *Printer =
173    getTarget().createAsmPrinter(*LegacyOutput, *this, *Context, *AsmStreamer,
174                                 getMCAsmInfo());
175  if (Printer == 0)
176    return true;
177
178  // If successful, createAsmPrinter took ownership of AsmStreamer and Context.
179  Context.take(); AsmStreamer.take();
180
181  PM.add(Printer);
182
183  // Make sure the code model is set.
184  setCodeModelForStatic();
185  PM.add(createGCInfoDeleter());
186  return false;
187}
188
189/// addPassesToEmitMachineCode - Add passes to the specified pass manager to
190/// get machine code emitted.  This uses a JITCodeEmitter object to handle
191/// actually outputting the machine code and resolving things like the address
192/// of functions.  This method should returns true if machine code emission is
193/// not supported.
194///
195bool LLVMTargetMachine::addPassesToEmitMachineCode(PassManagerBase &PM,
196                                                   JITCodeEmitter &JCE,
197                                                   CodeGenOpt::Level OptLevel,
198                                                   bool DisableVerify) {
199  // Make sure the code model is set.
200  setCodeModelForJIT();
201
202  // Add common CodeGen passes.
203  if (addCommonCodeGenPasses(PM, OptLevel, DisableVerify))
204    return true;
205
206  addCodeEmitter(PM, OptLevel, JCE);
207  PM.add(createGCInfoDeleter());
208
209  return false; // success!
210}
211
212static void printAndVerify(PassManagerBase &PM,
213                           const char *Banner,
214                           bool allowDoubleDefs = false) {
215  if (PrintMachineCode)
216    PM.add(createMachineFunctionPrinterPass(dbgs(), Banner));
217
218  if (VerifyMachineCode)
219    PM.add(createMachineVerifierPass(allowDoubleDefs));
220}
221
222/// addCommonCodeGenPasses - Add standard LLVM codegen passes used for both
223/// emitting to assembly files or machine code output.
224///
225bool LLVMTargetMachine::addCommonCodeGenPasses(PassManagerBase &PM,
226                                               CodeGenOpt::Level OptLevel,
227                                               bool DisableVerify) {
228  // Standard LLVM-Level Passes.
229
230  // Before running any passes, run the verifier to determine if the input
231  // coming from the front-end and/or optimizer is valid.
232  if (!DisableVerify)
233    PM.add(createVerifierPass());
234
235  // Optionally, tun split-GEPs and no-load GVN.
236  if (EnableSplitGEPGVN) {
237    PM.add(createGEPSplitterPass());
238    PM.add(createGVNPass(/*NoLoads=*/true));
239  }
240
241  // Run loop strength reduction before anything else.
242  if (OptLevel != CodeGenOpt::None && !DisableLSR) {
243    PM.add(createLoopStrengthReducePass(getTargetLowering()));
244    if (PrintLSR)
245      PM.add(createPrintFunctionPass("\n\n*** Code after LSR ***\n", &dbgs()));
246  }
247
248  // Turn exception handling constructs into something the code generators can
249  // handle.
250  switch (getMCAsmInfo()->getExceptionHandlingType())
251  {
252  case ExceptionHandling::SjLj:
253    // SjLj piggy-backs on dwarf for this bit. The cleanups done apply to both
254    // Dwarf EH prepare needs to be run after SjLj prepare. Otherwise,
255    // catch info can get misplaced when a selector ends up more than one block
256    // removed from the parent invoke(s). This could happen when a landing
257    // pad is shared by multiple invokes and is also a target of a normal
258    // edge from elsewhere.
259    PM.add(createSjLjEHPass(getTargetLowering()));
260    PM.add(createDwarfEHPass(getTargetLowering(), OptLevel==CodeGenOpt::None));
261    break;
262  case ExceptionHandling::Dwarf:
263    PM.add(createDwarfEHPass(getTargetLowering(), OptLevel==CodeGenOpt::None));
264    break;
265  case ExceptionHandling::None:
266    PM.add(createLowerInvokePass(getTargetLowering()));
267    break;
268  }
269
270  PM.add(createGCLoweringPass());
271
272  // Make sure that no unreachable blocks are instruction selected.
273  PM.add(createUnreachableBlockEliminationPass());
274
275  if (OptLevel != CodeGenOpt::None && !DisableCGP)
276    PM.add(createCodeGenPreparePass(getTargetLowering()));
277
278  PM.add(createStackProtectorPass(getTargetLowering()));
279
280  if (PrintISelInput)
281    PM.add(createPrintFunctionPass("\n\n"
282                                   "*** Final LLVM Code input to ISel ***\n",
283                                   &dbgs()));
284
285  // All passes which modify the LLVM IR are now complete; run the verifier
286  // to ensure that the IR is valid.
287  if (!DisableVerify)
288    PM.add(createVerifierPass());
289
290  // Standard Lower-Level Passes.
291
292  // Set up a MachineFunction for the rest of CodeGen to work on.
293  PM.add(new MachineFunctionAnalysis(*this, OptLevel));
294
295  // Enable FastISel with -fast, but allow that to be overridden.
296  if (EnableFastISelOption == cl::BOU_TRUE ||
297      (OptLevel == CodeGenOpt::None && EnableFastISelOption != cl::BOU_FALSE))
298    EnableFastISel = true;
299
300  // Ask the target for an isel.
301  if (addInstSelector(PM, OptLevel))
302    return true;
303
304  // Print the instruction selected machine code...
305  printAndVerify(PM, "After Instruction Selection",
306                 /* allowDoubleDefs= */ true);
307
308  // Optimize PHIs before DCE: removing dead PHI cycles may make more
309  // instructions dead.
310  if (OptLevel != CodeGenOpt::None)
311    PM.add(createOptimizePHIsPass());
312
313  // Delete dead machine instructions regardless of optimization level.
314  PM.add(createDeadMachineInstructionElimPass());
315  printAndVerify(PM, "After codegen DCE pass",
316                 /* allowDoubleDefs= */ true);
317
318  if (OptLevel != CodeGenOpt::None) {
319    PM.add(createOptimizeExtsPass());
320    if (!DisableMachineLICM)
321      PM.add(createMachineLICMPass());
322    if (!DisableMachineSink)
323      PM.add(createMachineSinkingPass());
324    printAndVerify(PM, "After MachineLICM and MachineSinking",
325                   /* allowDoubleDefs= */ true);
326  }
327
328  // Pre-ra tail duplication.
329  if (OptLevel != CodeGenOpt::None && !DisableEarlyTailDup) {
330    PM.add(createTailDuplicatePass(true));
331    printAndVerify(PM, "After Pre-RegAlloc TailDuplicate",
332                   /* allowDoubleDefs= */ true);
333  }
334
335  // Run pre-ra passes.
336  if (addPreRegAlloc(PM, OptLevel))
337    printAndVerify(PM, "After PreRegAlloc passes",
338                   /* allowDoubleDefs= */ true);
339
340  // Perform register allocation.
341  PM.add(createRegisterAllocator());
342  printAndVerify(PM, "After Register Allocation");
343
344  // Perform stack slot coloring.
345  if (OptLevel != CodeGenOpt::None && !DisableSSC) {
346    // FIXME: Re-enable coloring with register when it's capable of adding
347    // kill markers.
348    PM.add(createStackSlotColoringPass(false));
349    printAndVerify(PM, "After StackSlotColoring");
350  }
351
352  // Run post-ra passes.
353  if (addPostRegAlloc(PM, OptLevel))
354    printAndVerify(PM, "After PostRegAlloc passes");
355
356  PM.add(createLowerSubregsPass());
357  printAndVerify(PM, "After LowerSubregs");
358
359  // Insert prolog/epilog code.  Eliminate abstract frame index references...
360  PM.add(createPrologEpilogCodeInserter());
361  printAndVerify(PM, "After PrologEpilogCodeInserter");
362
363  // Run pre-sched2 passes.
364  if (addPreSched2(PM, OptLevel))
365    printAndVerify(PM, "After PreSched2 passes");
366
367  // Second pass scheduler.
368  if (OptLevel != CodeGenOpt::None && !DisablePostRA) {
369    PM.add(createPostRAScheduler(OptLevel));
370    printAndVerify(PM, "After PostRAScheduler");
371  }
372
373  // Branch folding must be run after regalloc and prolog/epilog insertion.
374  if (OptLevel != CodeGenOpt::None && !DisableBranchFold) {
375    PM.add(createBranchFoldingPass(getEnableTailMergeDefault()));
376    printAndVerify(PM, "After BranchFolding");
377  }
378
379  // Tail duplication.
380  if (OptLevel != CodeGenOpt::None && !DisableTailDuplicate) {
381    PM.add(createTailDuplicatePass(false));
382    printAndVerify(PM, "After TailDuplicate");
383  }
384
385  PM.add(createGCMachineCodeAnalysisPass());
386
387  if (PrintGCInfo)
388    PM.add(createGCInfoPrinter(dbgs()));
389
390  if (OptLevel != CodeGenOpt::None && !DisableCodePlace) {
391    PM.add(createCodePlacementOptPass());
392    printAndVerify(PM, "After CodePlacementOpt");
393  }
394
395  if (addPreEmitPass(PM, OptLevel))
396    printAndVerify(PM, "After PreEmit passes");
397
398  return false;
399}
400