blob: 242cba5b64e39c658f58649f8d56bb0d24e31bc1 [file] [log] [blame]
Chris Lattner47877052006-09-04 04:16:09 +00001//===-- LLVMTargetMachine.cpp - Implement the LLVMTargetMachine class -----===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner47877052006-09-04 04:16:09 +00007//
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"
Chris Lattner31442f92007-03-31 00:24:43 +000017#include "llvm/Assembly/PrintModulePass.h"
Daniel Dunbar78945782009-08-13 23:48:47 +000018#include "llvm/CodeGen/AsmPrinter.h"
Chris Lattner47877052006-09-04 04:16:09 +000019#include "llvm/CodeGen/Passes.h"
Gordon Henriksen5a29c9e2008-08-17 12:56:54 +000020#include "llvm/CodeGen/GCStrategy.h"
Dan Gohmanad2afc22009-07-31 18:16:33 +000021#include "llvm/CodeGen/MachineFunctionAnalysis.h"
Chris Lattner47877052006-09-04 04:16:09 +000022#include "llvm/Target/TargetOptions.h"
Chris Lattneraf76e592009-08-22 20:48:53 +000023#include "llvm/MC/MCAsmInfo.h"
Daniel Dunbar6d823cd2009-07-15 23:48:37 +000024#include "llvm/Target/TargetRegistry.h"
Chris Lattner47877052006-09-04 04:16:09 +000025#include "llvm/Transforms/Scalar.h"
Chris Lattner31442f92007-03-31 00:24:43 +000026#include "llvm/Support/CommandLine.h"
David Greene71847812009-07-14 20:18:05 +000027#include "llvm/Support/FormattedStream.h"
Chris Lattner47877052006-09-04 04:16:09 +000028using namespace llvm;
29
Dan Gohman2c4bf112008-09-25 01:14:49 +000030namespace llvm {
31 bool EnableFastISel;
32}
33
Eric Christopher522c01a2009-11-04 19:57:50 +000034static cl::opt<bool> DisablePostRA("disable-post-ra", cl::Hidden,
35 cl::desc("Disable Post Regalloc"));
36static cl::opt<bool> DisableBranchFold("disable-branch-fold", cl::Hidden,
37 cl::desc("Disable branch folding"));
Bob Wilson15acadd2009-11-26 00:32:21 +000038static cl::opt<bool> DisableTailDuplicate("disable-tail-duplicate", cl::Hidden,
39 cl::desc("Disable tail duplication"));
Eric Christopher522c01a2009-11-04 19:57:50 +000040static cl::opt<bool> DisableCodePlace("disable-code-place", cl::Hidden,
41 cl::desc("Disable code placement"));
42static cl::opt<bool> DisableSSC("disable-ssc", cl::Hidden,
43 cl::desc("Disable Stack Slot Coloring"));
44static cl::opt<bool> DisableMachineLICM("disable-machine-licm", cl::Hidden,
45 cl::desc("Disable Machine LICM"));
46static cl::opt<bool> DisableMachineSink("disable-machine-sink", cl::Hidden,
47 cl::desc("Disable Machine Sinking"));
48static cl::opt<bool> DisableLSR("disable-lsr", cl::Hidden,
49 cl::desc("Disable Loop Strength Reduction Pass"));
50static cl::opt<bool> DisableCGP("disable-cgp", cl::Hidden,
51 cl::desc("Disable Codegen Prepare"));
Chris Lattner85ef2542007-06-19 05:47:49 +000052static cl::opt<bool> PrintLSR("print-lsr-output", cl::Hidden,
53 cl::desc("Print LLVM IR produced by the loop-reduce pass"));
54static cl::opt<bool> PrintISelInput("print-isel-input", cl::Hidden,
55 cl::desc("Print LLVM IR input to isel pass"));
Evan Cheng8bd60352007-07-20 21:56:13 +000056static cl::opt<bool> PrintEmittedAsm("print-emitted-asm", cl::Hidden,
57 cl::desc("Dump emitter generated instructions as assembly"));
Gordon Henriksen93f96d02008-01-07 01:33:09 +000058static cl::opt<bool> PrintGCInfo("print-gc", cl::Hidden,
59 cl::desc("Dump garbage collector data"));
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000060static cl::opt<bool> VerifyMachineCode("verify-machineinstrs", cl::Hidden,
61 cl::desc("Verify generated machine code"),
62 cl::init(getenv("LLVM_VERIFY_MACHINEINSTRS")!=NULL));
Chris Lattner85ef2542007-06-19 05:47:49 +000063
Dan Gohmandc756852008-10-01 20:39:19 +000064// Enable or disable FastISel. Both options are needed, because
65// FastISel is enabled by default with -fast, and we wish to be
Dan Gohmane29fea42009-08-26 15:57:57 +000066// able to enable or disable fast-isel independently from -O0.
Dan Gohmaneb0d6ab2008-10-07 23:00:56 +000067static cl::opt<cl::boolOrDefault>
Dan Gohmandc756852008-10-01 20:39:19 +000068EnableFastISelOption("fast-isel", cl::Hidden,
Dan Gohmane29fea42009-08-26 15:57:57 +000069 cl::desc("Enable the \"fast\" instruction selector"));
Dan Gohman2c4bf112008-09-25 01:14:49 +000070
Dan Gohman2e7e9482009-11-20 02:03:44 +000071// Enable or disable an experimental optimization to split GEPs
72// and run a special GVN pass which does not examine loads, in
73// an effort to factor out redundancy implicit in complex GEPs.
74static cl::opt<bool> EnableSplitGEPGVN("split-gep-gvn", cl::Hidden,
75 cl::desc("Split GEPs and run no-load GVN"));
Chris Lattnera7ac47c2009-08-12 07:22:17 +000076
77LLVMTargetMachine::LLVMTargetMachine(const Target &T,
78 const std::string &TargetTriple)
79 : TargetMachine(T) {
80 AsmInfo = T.createAsmInfo(TargetTriple);
81}
82
83
84
Bill Wendling04523ea2007-02-08 01:36:53 +000085FileModel::Model
Dan Gohmanbfae8312008-03-11 22:29:46 +000086LLVMTargetMachine::addPassesToEmitFile(PassManagerBase &PM,
David Greene71847812009-07-14 20:18:05 +000087 formatted_raw_ostream &Out,
Bill Wendling04523ea2007-02-08 01:36:53 +000088 CodeGenFileType FileType,
Bill Wendling98a366d2009-04-29 23:29:43 +000089 CodeGenOpt::Level OptLevel) {
Dan Gohman02dae4b2008-09-25 00:37:07 +000090 // Add common CodeGen passes.
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +000091 if (addCommonCodeGenPasses(PM, OptLevel))
Bill Wendling04523ea2007-02-08 01:36:53 +000092 return FileModel::Error;
93
Chris Lattner47877052006-09-04 04:16:09 +000094 switch (FileType) {
Bill Wendling04523ea2007-02-08 01:36:53 +000095 default:
96 break;
97 case TargetMachine::AssemblyFile:
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +000098 if (addAssemblyEmitter(PM, OptLevel, getAsmVerbosityDefault(), Out))
Bill Wendling04523ea2007-02-08 01:36:53 +000099 return FileModel::Error;
100 return FileModel::AsmFile;
101 case TargetMachine::ObjectFile:
102 if (getMachOWriterInfo())
103 return FileModel::MachOFile;
104 else if (getELFWriterInfo())
105 return FileModel::ElfFile;
Chris Lattner47877052006-09-04 04:16:09 +0000106 }
Bill Wendling04523ea2007-02-08 01:36:53 +0000107
108 return FileModel::Error;
109}
Dan Gohman02dae4b2008-09-25 00:37:07 +0000110
Daniel Dunbar5d77cad2009-07-15 23:34:19 +0000111bool LLVMTargetMachine::addAssemblyEmitter(PassManagerBase &PM,
112 CodeGenOpt::Level OptLevel,
113 bool Verbose,
114 formatted_raw_ostream &Out) {
Daniel Dunbar67d894e2009-08-13 19:38:51 +0000115 FunctionPass *Printer =
Chris Lattneraf76e592009-08-22 20:48:53 +0000116 getTarget().createAsmPrinter(Out, *this, getMCAsmInfo(), Verbose);
Daniel Dunbar5d77cad2009-07-15 23:34:19 +0000117 if (!Printer)
Daniel Dunbar36129db2009-07-15 23:54:01 +0000118 return true;
119
Daniel Dunbar5d77cad2009-07-15 23:34:19 +0000120 PM.add(Printer);
121 return false;
122}
123
Bill Wendling04523ea2007-02-08 01:36:53 +0000124/// addPassesToEmitFileFinish - If the passes to emit the specified file had to
125/// be split up (e.g., to add an object writer pass), this method can be used to
126/// finish up adding passes to emit the file, if necessary.
Dan Gohmanbfae8312008-03-11 22:29:46 +0000127bool LLVMTargetMachine::addPassesToEmitFileFinish(PassManagerBase &PM,
Bill Wendling04523ea2007-02-08 01:36:53 +0000128 MachineCodeEmitter *MCE,
Bill Wendling98a366d2009-04-29 23:29:43 +0000129 CodeGenOpt::Level OptLevel) {
Bill Wendling04523ea2007-02-08 01:36:53 +0000130 if (MCE)
Daniel Dunbarcfe9a602009-07-15 22:33:19 +0000131 addSimpleCodeEmitter(PM, OptLevel, *MCE);
132 if (PrintEmittedAsm)
133 addAssemblyEmitter(PM, OptLevel, true, ferrs());
Dan Gohman02dae4b2008-09-25 00:37:07 +0000134
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000135 PM.add(createGCInfoDeleter());
Bill Wendling04523ea2007-02-08 01:36:53 +0000136
Chris Lattner47877052006-09-04 04:16:09 +0000137 return false; // success!
138}
139
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000140/// addPassesToEmitFileFinish - If the passes to emit the specified file had to
141/// be split up (e.g., to add an object writer pass), this method can be used to
142/// finish up adding passes to emit the file, if necessary.
143bool LLVMTargetMachine::addPassesToEmitFileFinish(PassManagerBase &PM,
144 JITCodeEmitter *JCE,
145 CodeGenOpt::Level OptLevel) {
146 if (JCE)
Daniel Dunbarcfe9a602009-07-15 22:33:19 +0000147 addSimpleCodeEmitter(PM, OptLevel, *JCE);
148 if (PrintEmittedAsm)
149 addAssemblyEmitter(PM, OptLevel, true, ferrs());
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000150
151 PM.add(createGCInfoDeleter());
152
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000153 return false; // success!
154}
155
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +0000156/// addPassesToEmitFileFinish - If the passes to emit the specified file had to
157/// be split up (e.g., to add an object writer pass), this method can be used to
158/// finish up adding passes to emit the file, if necessary.
159bool LLVMTargetMachine::addPassesToEmitFileFinish(PassManagerBase &PM,
160 ObjectCodeEmitter *OCE,
161 CodeGenOpt::Level OptLevel) {
162 if (OCE)
Daniel Dunbarcfe9a602009-07-15 22:33:19 +0000163 addSimpleCodeEmitter(PM, OptLevel, *OCE);
164 if (PrintEmittedAsm)
165 addAssemblyEmitter(PM, OptLevel, true, ferrs());
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +0000166
167 PM.add(createGCInfoDeleter());
168
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +0000169 return false; // success!
170}
171
Chris Lattner47877052006-09-04 04:16:09 +0000172/// addPassesToEmitMachineCode - Add passes to the specified pass manager to
173/// get machine code emitted. This uses a MachineCodeEmitter object to handle
174/// actually outputting the machine code and resolving things like the address
175/// of functions. This method should returns true if machine code emission is
176/// not supported.
177///
Dan Gohmanbfae8312008-03-11 22:29:46 +0000178bool LLVMTargetMachine::addPassesToEmitMachineCode(PassManagerBase &PM,
Chris Lattner47877052006-09-04 04:16:09 +0000179 MachineCodeEmitter &MCE,
Bill Wendling98a366d2009-04-29 23:29:43 +0000180 CodeGenOpt::Level OptLevel) {
Dan Gohman02dae4b2008-09-25 00:37:07 +0000181 // Add common CodeGen passes.
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000182 if (addCommonCodeGenPasses(PM, OptLevel))
Dan Gohman02dae4b2008-09-25 00:37:07 +0000183 return true;
184
Daniel Dunbarcfe9a602009-07-15 22:33:19 +0000185 addCodeEmitter(PM, OptLevel, MCE);
186 if (PrintEmittedAsm)
187 addAssemblyEmitter(PM, OptLevel, true, ferrs());
Dan Gohman02dae4b2008-09-25 00:37:07 +0000188
189 PM.add(createGCInfoDeleter());
190
Dan Gohman02dae4b2008-09-25 00:37:07 +0000191 return false; // success!
192}
193
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000194/// addPassesToEmitMachineCode - Add passes to the specified pass manager to
195/// get machine code emitted. This uses a MachineCodeEmitter object to handle
196/// actually outputting the machine code and resolving things like the address
197/// of functions. This method should returns true if machine code emission is
198/// not supported.
199///
200bool LLVMTargetMachine::addPassesToEmitMachineCode(PassManagerBase &PM,
201 JITCodeEmitter &JCE,
202 CodeGenOpt::Level OptLevel) {
203 // Add common CodeGen passes.
204 if (addCommonCodeGenPasses(PM, OptLevel))
205 return true;
206
Daniel Dunbarcfe9a602009-07-15 22:33:19 +0000207 addCodeEmitter(PM, OptLevel, JCE);
208 if (PrintEmittedAsm)
209 addAssemblyEmitter(PM, OptLevel, true, ferrs());
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000210
211 PM.add(createGCInfoDeleter());
212
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000213 return false; // success!
214}
215
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000216static void printAndVerify(PassManagerBase &PM,
Dan Gohman499a9372009-10-31 20:17:39 +0000217 const char *Banner,
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000218 bool allowDoubleDefs = false) {
219 if (PrintMachineCode)
Dan Gohman499a9372009-10-31 20:17:39 +0000220 PM.add(createMachineFunctionPrinterPass(errs(), Banner));
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000221
222 if (VerifyMachineCode)
223 PM.add(createMachineVerifierPass(allowDoubleDefs));
224}
225
Bill Wendling98a366d2009-04-29 23:29:43 +0000226/// addCommonCodeGenPasses - Add standard LLVM codegen passes used for both
227/// emitting to assembly files or machine code output.
Dan Gohman02dae4b2008-09-25 00:37:07 +0000228///
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000229bool LLVMTargetMachine::addCommonCodeGenPasses(PassManagerBase &PM,
Bill Wendling98a366d2009-04-29 23:29:43 +0000230 CodeGenOpt::Level OptLevel) {
Chris Lattner47877052006-09-04 04:16:09 +0000231 // Standard LLVM-Level Passes.
Dan Gohman02dae4b2008-09-25 00:37:07 +0000232
Dan Gohman2e7e9482009-11-20 02:03:44 +0000233 // Optionally, tun split-GEPs and no-load GVN.
234 if (EnableSplitGEPGVN) {
235 PM.add(createGEPSplitterPass());
236 PM.add(createGVNPass(/*NoPRE=*/false, /*NoLoads=*/true));
237 }
238
Chris Lattner47877052006-09-04 04:16:09 +0000239 // Run loop strength reduction before anything else.
Eric Christopher522c01a2009-11-04 19:57:50 +0000240 if (OptLevel != CodeGenOpt::None && !DisableLSR) {
Chris Lattnerc8d288f2007-03-31 04:18:03 +0000241 PM.add(createLoopStrengthReducePass(getTargetLowering()));
242 if (PrintLSR)
Daniel Dunbar3b0da262008-10-22 03:25:22 +0000243 PM.add(createPrintFunctionPass("\n\n*** Code after LSR ***\n", &errs()));
Chris Lattnerc8d288f2007-03-31 04:18:03 +0000244 }
Dan Gohman02dae4b2008-09-25 00:37:07 +0000245
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000246 // Turn exception handling constructs into something the code generators can
247 // handle.
Chris Lattneraf76e592009-08-22 20:48:53 +0000248 switch (getMCAsmInfo()->getExceptionHandlingType())
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000249 {
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000250 case ExceptionHandling::SjLj:
Jim Grosbach8b818d72009-08-17 16:41:22 +0000251 // SjLj piggy-backs on dwarf for this bit. The cleanups done apply to both
Bill Wendling8bedf972009-10-29 00:37:35 +0000252 PM.add(createDwarfEHPass(getTargetLowering(), OptLevel==CodeGenOpt::None));
Jim Grosbach8b818d72009-08-17 16:41:22 +0000253 PM.add(createSjLjEHPass(getTargetLowering()));
254 break;
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000255 case ExceptionHandling::Dwarf:
Bill Wendling8bedf972009-10-29 00:37:35 +0000256 PM.add(createDwarfEHPass(getTargetLowering(), OptLevel==CodeGenOpt::None));
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000257 break;
258 case ExceptionHandling::None:
259 PM.add(createLowerInvokePass(getTargetLowering()));
260 break;
261 }
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000262
263 PM.add(createGCLoweringPass());
Dan Gohman02dae4b2008-09-25 00:37:07 +0000264
Chris Lattner47877052006-09-04 04:16:09 +0000265 // Make sure that no unreachable blocks are instruction selected.
266 PM.add(createUnreachableBlockEliminationPass());
Bill Wendling04523ea2007-02-08 01:36:53 +0000267
Eric Christopher522c01a2009-11-04 19:57:50 +0000268 if (OptLevel != CodeGenOpt::None && !DisableCGP)
Chris Lattnerc8d288f2007-03-31 04:18:03 +0000269 PM.add(createCodeGenPreparePass(getTargetLowering()));
270
Bill Wendlinge9e6bdf2008-11-13 01:02:14 +0000271 PM.add(createStackProtectorPass(getTargetLowering()));
Bill Wendling2b58ce52008-11-04 02:10:20 +0000272
Chris Lattnerc8d288f2007-03-31 04:18:03 +0000273 if (PrintISelInput)
Daniel Dunbarf4db3a52008-10-21 23:33:38 +0000274 PM.add(createPrintFunctionPass("\n\n"
275 "*** Final LLVM Code input to ISel ***\n",
Daniel Dunbar3b0da262008-10-22 03:25:22 +0000276 &errs()));
Chris Lattnerc8d288f2007-03-31 04:18:03 +0000277
Dan Gohman02dae4b2008-09-25 00:37:07 +0000278 // Standard Lower-Level Passes.
279
Dan Gohmanad2afc22009-07-31 18:16:33 +0000280 // Set up a MachineFunction for the rest of CodeGen to work on.
281 PM.add(new MachineFunctionAnalysis(*this, OptLevel));
282
Dan Gohmandc756852008-10-01 20:39:19 +0000283 // Enable FastISel with -fast, but allow that to be overridden.
Dan Gohmaneb0d6ab2008-10-07 23:00:56 +0000284 if (EnableFastISelOption == cl::BOU_TRUE ||
Bill Wendling98a366d2009-04-29 23:29:43 +0000285 (OptLevel == CodeGenOpt::None && EnableFastISelOption != cl::BOU_FALSE))
Dan Gohmandc756852008-10-01 20:39:19 +0000286 EnableFastISel = true;
287
Chris Lattner47877052006-09-04 04:16:09 +0000288 // Ask the target for an isel.
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000289 if (addInstSelector(PM, OptLevel))
Chris Lattner47877052006-09-04 04:16:09 +0000290 return true;
Bill Wendling04523ea2007-02-08 01:36:53 +0000291
Chris Lattner47877052006-09-04 04:16:09 +0000292 // Print the instruction selected machine code...
Dan Gohman499a9372009-10-31 20:17:39 +0000293 printAndVerify(PM, "After Instruction Selection",
294 /* allowDoubleDefs= */ true);
Bill Wendling0f940c92007-12-07 21:42:31 +0000295
Bill Wendling98a366d2009-04-29 23:29:43 +0000296 if (OptLevel != CodeGenOpt::None) {
Eric Christopher522c01a2009-11-04 19:57:50 +0000297 if (!DisableMachineLICM)
298 PM.add(createMachineLICMPass());
299 if (!DisableMachineSink)
300 PM.add(createMachineSinkingPass());
Dan Gohman499a9372009-10-31 20:17:39 +0000301 printAndVerify(PM, "After MachineLICM and MachineSinking",
302 /* allowDoubleDefs= */ true);
Evan Cheng8f0d99e2009-02-09 08:45:39 +0000303 }
Bill Wendling0f940c92007-12-07 21:42:31 +0000304
Anton Korobeynikovb013f502008-04-23 18:26:03 +0000305 // Run pre-ra passes.
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000306 if (addPreRegAlloc(PM, OptLevel))
Dan Gohman499a9372009-10-31 20:17:39 +0000307 printAndVerify(PM, "After PreRegAlloc passes",
308 /* allowDoubleDefs= */ true);
Anton Korobeynikovb013f502008-04-23 18:26:03 +0000309
Evan Cheng3f32d652008-06-04 09:18:41 +0000310 // Perform register allocation.
Chris Lattner47877052006-09-04 04:16:09 +0000311 PM.add(createRegisterAllocator());
Dan Gohman499a9372009-10-31 20:17:39 +0000312 printAndVerify(PM, "After Register Allocation");
Evan Cheng3f32d652008-06-04 09:18:41 +0000313
314 // Perform stack slot coloring.
Eric Christopher522c01a2009-11-04 19:57:50 +0000315 if (OptLevel != CodeGenOpt::None && !DisableSSC) {
Evan Cheng6248fa42009-08-05 07:26:17 +0000316 // FIXME: Re-enable coloring with register when it's capable of adding
317 // kill markers.
318 PM.add(createStackSlotColoringPass(false));
Dan Gohman499a9372009-10-31 20:17:39 +0000319 printAndVerify(PM, "After StackSlotColoring");
320 }
Dan Gohman02dae4b2008-09-25 00:37:07 +0000321
Evan Cheng3f32d652008-06-04 09:18:41 +0000322 // Run post-ra passes.
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000323 if (addPostRegAlloc(PM, OptLevel))
Dan Gohman499a9372009-10-31 20:17:39 +0000324 printAndVerify(PM, "After PostRegAlloc passes");
Dan Gohman02dae4b2008-09-25 00:37:07 +0000325
Christopher Lambada779f2007-07-27 07:36:14 +0000326 PM.add(createLowerSubregsPass());
Dan Gohman499a9372009-10-31 20:17:39 +0000327 printAndVerify(PM, "After LowerSubregs");
Bill Wendling04523ea2007-02-08 01:36:53 +0000328
Chris Lattner47877052006-09-04 04:16:09 +0000329 // Insert prolog/epilog code. Eliminate abstract frame index references...
330 PM.add(createPrologEpilogCodeInserter());
Dan Gohman499a9372009-10-31 20:17:39 +0000331 printAndVerify(PM, "After PrologEpilogCodeInserter");
Dan Gohman02dae4b2008-09-25 00:37:07 +0000332
Evan Cheng629adde2009-09-30 08:49:50 +0000333 // Run pre-sched2 passes.
334 if (addPreSched2(PM, OptLevel))
Dan Gohman499a9372009-10-31 20:17:39 +0000335 printAndVerify(PM, "After PreSched2 passes");
Evan Cheng629adde2009-09-30 08:49:50 +0000336
Dale Johannesene7e7d0d2007-07-13 17:13:54 +0000337 // Second pass scheduler.
Eric Christopher522c01a2009-11-04 19:57:50 +0000338 if (OptLevel != CodeGenOpt::None && !DisablePostRA) {
Evan Chengfa163542009-10-16 21:06:15 +0000339 PM.add(createPostRAScheduler(OptLevel));
Dan Gohman499a9372009-10-31 20:17:39 +0000340 printAndVerify(PM, "After PostRAScheduler");
Dan Gohman5ce09732008-11-20 19:54:21 +0000341 }
342
Dan Gohman23b0d492008-12-18 01:36:42 +0000343 // Branch folding must be run after regalloc and prolog/epilog insertion.
Eric Christopher522c01a2009-11-04 19:57:50 +0000344 if (OptLevel != CodeGenOpt::None && !DisableBranchFold) {
Bob Wilsona5971032009-10-28 20:46:46 +0000345 PM.add(createBranchFoldingPass(getEnableTailMergeDefault()));
Dan Gohman499a9372009-10-31 20:17:39 +0000346 printAndVerify(PM, "After BranchFolding");
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000347 }
Dan Gohman23b0d492008-12-18 01:36:42 +0000348
Bob Wilson15acadd2009-11-26 00:32:21 +0000349 // Tail duplication.
350 if (OptLevel != CodeGenOpt::None && !DisableTailDuplicate) {
Bob Wilson2d521e52009-11-26 21:38:41 +0000351 PM.add(createTailDuplicatePass());
352 printAndVerify(PM, "After TailDuplicate");
Bob Wilson15acadd2009-11-26 00:32:21 +0000353 }
354
Gordon Henriksen93f96d02008-01-07 01:33:09 +0000355 PM.add(createGCMachineCodeAnalysisPass());
Dan Gohman02dae4b2008-09-25 00:37:07 +0000356
Gordon Henriksen93f96d02008-01-07 01:33:09 +0000357 if (PrintGCInfo)
Chris Lattnercf143a42009-08-23 03:13:20 +0000358 PM.add(createGCInfoPrinter(errs()));
Bill Wendling04523ea2007-02-08 01:36:53 +0000359
Eric Christopher522c01a2009-11-04 19:57:50 +0000360 if (OptLevel != CodeGenOpt::None && !DisableCodePlace) {
Dan Gohman499a9372009-10-31 20:17:39 +0000361 PM.add(createCodePlacementOptPass());
362 printAndVerify(PM, "After CodePlacementOpt");
363 }
364
Evan Cheng517e2552009-11-05 01:16:59 +0000365 if (addPreEmitPass(PM, OptLevel))
366 printAndVerify(PM, "After PreEmit passes");
367
Dan Gohman02dae4b2008-09-25 00:37:07 +0000368 return false;
Chris Lattner47877052006-09-04 04:16:09 +0000369}