blob: a636bd9b04f41406e14f9ef1cedf451e93d6f966 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- opt.cpp - The LLVM Modular Optimizer -------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5f5a5732007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// Optimizations may be specified an arbitrary number of times on the command
11// line, They are run in the order specified.
12//
13//===----------------------------------------------------------------------===//
14
Owen Anderson25209b42009-07-01 16:58:40 +000015#include "llvm/LLVMContext.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000016#include "llvm/Module.h"
Devang Patel14d07602008-09-16 22:25:14 +000017#include "llvm/ModuleProvider.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000018#include "llvm/PassManager.h"
19#include "llvm/CallGraphSCCPass.h"
20#include "llvm/Bitcode/ReaderWriter.h"
21#include "llvm/Assembly/PrintModulePass.h"
22#include "llvm/Analysis/Verifier.h"
23#include "llvm/Analysis/LoopPass.h"
24#include "llvm/Analysis/CallGraph.h"
25#include "llvm/Target/TargetData.h"
26#include "llvm/Target/TargetMachine.h"
27#include "llvm/Support/PassNameParser.h"
28#include "llvm/System/Signals.h"
David Greene57873752010-01-05 01:30:32 +000029#include "llvm/Support/Debug.h"
Dan Gohmanfb174702009-09-03 16:00:08 +000030#include "llvm/Support/IRReader.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000031#include "llvm/Support/ManagedStatic.h"
32#include "llvm/Support/MemoryBuffer.h"
33#include "llvm/Support/PluginLoader.h"
Chris Lattnercb8c7752009-12-09 00:41:28 +000034#include "llvm/Support/PrettyStackTrace.h"
Daniel Dunbarcae51cb2009-06-03 18:22:15 +000035#include "llvm/Support/StandardPasses.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036#include "llvm/Support/SystemUtils.h"
Daniel Dunbar3b475e92008-10-22 03:25:22 +000037#include "llvm/Support/raw_ostream.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000038#include "llvm/LinkAllPasses.h"
39#include "llvm/LinkAllVMCore.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040#include <memory>
41#include <algorithm>
42using namespace llvm;
43
44// The OptimizationList is automatically populated with registered Passes by the
45// PassNameParser.
46//
47static cl::list<const PassInfo*, bool, PassNameParser>
48PassList(cl::desc("Optimizations available:"));
49
50// Other command line options...
51//
52static cl::opt<std::string>
Eric Christopherdc019192009-08-21 23:29:40 +000053InputFilename(cl::Positional, cl::desc("<input bitcode file>"),
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054 cl::init("-"), cl::value_desc("filename"));
55
56static cl::opt<std::string>
57OutputFilename("o", cl::desc("Override output filename"),
58 cl::value_desc("filename"), cl::init("-"));
59
60static cl::opt<bool>
Dan Gohman176426d2009-08-25 15:34:52 +000061Force("f", cl::desc("Enable binary output on terminals"));
Dan Gohmanf17a25c2007-07-18 16:29:46 +000062
63static cl::opt<bool>
64PrintEachXForm("p", cl::desc("Print module after each transformation"));
65
66static cl::opt<bool>
67NoOutput("disable-output",
68 cl::desc("Do not write result bitcode file"), cl::Hidden);
69
70static cl::opt<bool>
Duncan Sandse3d726a2009-10-14 20:01:39 +000071OutputAssembly("S", cl::desc("Write output as LLVM assembly"));
Daniel Dunbar1a34ea62009-09-05 11:34:53 +000072
73static cl::opt<bool>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000074NoVerify("disable-verify", cl::desc("Do not verify result module"), cl::Hidden);
75
76static cl::opt<bool>
77VerifyEach("verify-each", cl::desc("Verify after each transform"));
78
79static cl::opt<bool>
80StripDebug("strip-debug",
81 cl::desc("Strip debugger symbol info from translation unit"));
82
83static cl::opt<bool>
84DisableInline("disable-inlining", cl::desc("Do not run the inliner pass"));
85
Eric Christopherdc019192009-08-21 23:29:40 +000086static cl::opt<bool>
87DisableOptimizations("disable-opt",
Dan Gohmanf17a25c2007-07-18 16:29:46 +000088 cl::desc("Do not run any optimization passes"));
89
Eric Christopherdc019192009-08-21 23:29:40 +000090static cl::opt<bool>
Daniel Dunbar53459d72009-07-17 18:09:39 +000091DisableInternalize("disable-internalize",
92 cl::desc("Do not mark all symbols as internal"));
93
Dan Gohmanf17a25c2007-07-18 16:29:46 +000094static cl::opt<bool>
Eric Christopherdc019192009-08-21 23:29:40 +000095StandardCompileOpts("std-compile-opts",
Dan Gohmanf17a25c2007-07-18 16:29:46 +000096 cl::desc("Include the standard compile time optimizations"));
97
98static cl::opt<bool>
Eric Christopherdc019192009-08-21 23:29:40 +000099StandardLinkOpts("std-link-opts",
Daniel Dunbar53459d72009-07-17 18:09:39 +0000100 cl::desc("Include the standard link time optimizations"));
101
102static cl::opt<bool>
Devang Patel14d07602008-09-16 22:25:14 +0000103OptLevelO1("O1",
104 cl::desc("Optimization level 1. Similar to llvm-gcc -O1"));
105
106static cl::opt<bool>
107OptLevelO2("O2",
Devang Pateld02ad902008-09-17 00:01:04 +0000108 cl::desc("Optimization level 2. Similar to llvm-gcc -O2"));
Devang Patel14d07602008-09-16 22:25:14 +0000109
110static cl::opt<bool>
111OptLevelO3("O3",
Devang Pateld02ad902008-09-17 00:01:04 +0000112 cl::desc("Optimization level 3. Similar to llvm-gcc -O3"));
Devang Patel14d07602008-09-16 22:25:14 +0000113
114static cl::opt<bool>
115UnitAtATime("funit-at-a-time",
Eric Christopher8ad4add2009-08-21 23:30:30 +0000116 cl::desc("Enable IPO. This is same as llvm-gcc's -funit-at-a-time"),
117 cl::init(true));
Devang Patel14d07602008-09-16 22:25:14 +0000118
119static cl::opt<bool>
120DisableSimplifyLibCalls("disable-simplify-libcalls",
Devang Patel8dba36c2008-09-17 16:01:39 +0000121 cl::desc("Disable simplify-libcalls"));
Devang Patel14d07602008-09-16 22:25:14 +0000122
123static cl::opt<bool>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000124Quiet("q", cl::desc("Obsolete option"), cl::Hidden);
125
126static cl::alias
127QuietA("quiet", cl::desc("Alias for -q"), cl::aliasopt(Quiet));
128
129static cl::opt<bool>
130AnalyzeOnly("analyze", cl::desc("Only perform analysis, no optimization"));
131
Chris Lattnercd0702f2009-10-22 00:44:10 +0000132static cl::opt<std::string>
133DefaultDataLayout("default-data-layout",
134 cl::desc("data layout string to use if not specified by module"),
135 cl::value_desc("layout-string"), cl::init(""));
136
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000137// ---------- Define Printers for module and function passes ------------
138namespace {
139
140struct CallGraphSCCPassPrinter : public CallGraphSCCPass {
141 static char ID;
142 const PassInfo *PassToPrint;
Eric Christopherdc019192009-08-21 23:29:40 +0000143 CallGraphSCCPassPrinter(const PassInfo *PI) :
Dan Gohmanc74a1972009-02-18 05:09:16 +0000144 CallGraphSCCPass(&ID), PassToPrint(PI) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000145
Chris Lattner3dab7152009-08-31 00:19:58 +0000146 virtual bool runOnSCC(std::vector<CallGraphNode *>&SCC) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000147 if (!Quiet) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000148 outs() << "Printing analysis '" << PassToPrint->getPassName() << "':\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000149
150 for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
151 Function *F = SCC[i]->getFunction();
Dan Gohmanb714fab2009-07-16 15:30:09 +0000152 if (F) {
Chris Lattner397f4562009-08-23 06:03:38 +0000153 getAnalysisID<Pass>(PassToPrint).print(outs(), F->getParent());
Dan Gohmanb714fab2009-07-16 15:30:09 +0000154 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000155 }
156 }
157 // Get and print pass...
158 return false;
159 }
Eric Christopherdc019192009-08-21 23:29:40 +0000160
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000161 virtual const char *getPassName() const { return "'Pass' Printer"; }
162
163 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
164 AU.addRequiredID(PassToPrint);
165 AU.setPreservesAll();
166 }
167};
168
169char CallGraphSCCPassPrinter::ID = 0;
170
171struct ModulePassPrinter : public ModulePass {
172 static char ID;
173 const PassInfo *PassToPrint;
Dan Gohmanc74a1972009-02-18 05:09:16 +0000174 ModulePassPrinter(const PassInfo *PI) : ModulePass(&ID),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000175 PassToPrint(PI) {}
176
177 virtual bool runOnModule(Module &M) {
178 if (!Quiet) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000179 outs() << "Printing analysis '" << PassToPrint->getPassName() << "':\n";
Chris Lattner397f4562009-08-23 06:03:38 +0000180 getAnalysisID<Pass>(PassToPrint).print(outs(), &M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000181 }
182
183 // Get and print pass...
184 return false;
185 }
186
187 virtual const char *getPassName() const { return "'Pass' Printer"; }
188
189 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
190 AU.addRequiredID(PassToPrint);
191 AU.setPreservesAll();
192 }
193};
194
195char ModulePassPrinter::ID = 0;
196struct FunctionPassPrinter : public FunctionPass {
197 const PassInfo *PassToPrint;
198 static char ID;
Dan Gohmanc74a1972009-02-18 05:09:16 +0000199 FunctionPassPrinter(const PassInfo *PI) : FunctionPass(&ID),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000200 PassToPrint(PI) {}
201
202 virtual bool runOnFunction(Function &F) {
Eric Christopherdc019192009-08-21 23:29:40 +0000203 if (!Quiet) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000204 outs() << "Printing analysis '" << PassToPrint->getPassName()
205 << "' for function '" << F.getName() << "':\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000206 }
207 // Get and print pass...
Chris Lattner397f4562009-08-23 06:03:38 +0000208 getAnalysisID<Pass>(PassToPrint).print(outs(), F.getParent());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000209 return false;
210 }
211
212 virtual const char *getPassName() const { return "FunctionPass Printer"; }
213
214 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
215 AU.addRequiredID(PassToPrint);
216 AU.setPreservesAll();
217 }
218};
219
220char FunctionPassPrinter::ID = 0;
221
222struct LoopPassPrinter : public LoopPass {
223 static char ID;
224 const PassInfo *PassToPrint;
Eric Christopherdc019192009-08-21 23:29:40 +0000225 LoopPassPrinter(const PassInfo *PI) :
Dan Gohmanc74a1972009-02-18 05:09:16 +0000226 LoopPass(&ID), PassToPrint(PI) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000227
228 virtual bool runOnLoop(Loop *L, LPPassManager &LPM) {
229 if (!Quiet) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000230 outs() << "Printing analysis '" << PassToPrint->getPassName() << "':\n";
Chris Lattner397f4562009-08-23 06:03:38 +0000231 getAnalysisID<Pass>(PassToPrint).print(outs(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000232 L->getHeader()->getParent()->getParent());
233 }
234 // Get and print pass...
235 return false;
236 }
Eric Christopherdc019192009-08-21 23:29:40 +0000237
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000238 virtual const char *getPassName() const { return "'Pass' Printer"; }
239
240 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
241 AU.addRequiredID(PassToPrint);
242 AU.setPreservesAll();
243 }
244};
245
246char LoopPassPrinter::ID = 0;
247
248struct BasicBlockPassPrinter : public BasicBlockPass {
249 const PassInfo *PassToPrint;
250 static char ID;
Eric Christopherdc019192009-08-21 23:29:40 +0000251 BasicBlockPassPrinter(const PassInfo *PI)
Dan Gohmanc74a1972009-02-18 05:09:16 +0000252 : BasicBlockPass(&ID), PassToPrint(PI) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000253
254 virtual bool runOnBasicBlock(BasicBlock &BB) {
255 if (!Quiet) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000256 outs() << "Printing Analysis info for BasicBlock '" << BB.getName()
257 << "': Pass " << PassToPrint->getPassName() << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000258 }
259
260 // Get and print pass...
Chris Lattner397f4562009-08-23 06:03:38 +0000261 getAnalysisID<Pass>(PassToPrint).print(outs(), BB.getParent()->getParent());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000262 return false;
263 }
264
265 virtual const char *getPassName() const { return "BasicBlockPass Printer"; }
266
267 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
268 AU.addRequiredID(PassToPrint);
269 AU.setPreservesAll();
270 }
271};
272
273char BasicBlockPassPrinter::ID = 0;
274inline void addPass(PassManager &PM, Pass *P) {
275 // Add the pass to the pass manager...
276 PM.add(P);
277
278 // If we are verifying all of the intermediate steps, add the verifier...
279 if (VerifyEach) PM.add(createVerifierPass());
280}
281
Eric Christopherdc019192009-08-21 23:29:40 +0000282/// AddOptimizationPasses - This routine adds optimization passes
283/// based on selected optimization level, OptLevel. This routine
Devang Patel14d07602008-09-16 22:25:14 +0000284/// duplicates llvm-gcc behaviour.
285///
286/// OptLevel - Optimization Level
Zhongxing Xu42854c82008-11-26 02:57:24 +0000287void AddOptimizationPasses(PassManager &MPM, FunctionPassManager &FPM,
288 unsigned OptLevel) {
Daniel Dunbarcae51cb2009-06-03 18:22:15 +0000289 createStandardFunctionPasses(&FPM, OptLevel);
Devang Patel14d07602008-09-16 22:25:14 +0000290
Daniel Dunbarcae51cb2009-06-03 18:22:15 +0000291 llvm::Pass *InliningPass = OptLevel > 1 ? createFunctionInliningPass() : 0;
292 createStandardModulePasses(&MPM, OptLevel,
293 /*OptimizeSize=*/ false,
294 UnitAtATime,
295 /*UnrollLoops=*/ OptLevel > 1,
296 !DisableSimplifyLibCalls,
297 /*HaveExceptions=*/ true,
298 InliningPass);
Devang Patel14d07602008-09-16 22:25:14 +0000299}
300
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000301void AddStandardCompilePasses(PassManager &PM) {
302 PM.add(createVerifierPass()); // Verify that input is correct
303
304 addPass(PM, createLowerSetJmpPass()); // Lower llvm.setjmp/.longjmp
305
306 // If the -strip-debug command line option was specified, do it.
307 if (StripDebug)
308 addPass(PM, createStripSymbolsPass(true));
309
310 if (DisableOptimizations) return;
311
Daniel Dunbarcae51cb2009-06-03 18:22:15 +0000312 llvm::Pass *InliningPass = !DisableInline ? createFunctionInliningPass() : 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000313
Daniel Dunbarcae51cb2009-06-03 18:22:15 +0000314 // -std-compile-opts adds the same module passes as -O3.
Eric Christopherdc019192009-08-21 23:29:40 +0000315 createStandardModulePasses(&PM, 3,
Daniel Dunbarcae51cb2009-06-03 18:22:15 +0000316 /*OptimizeSize=*/ false,
317 /*UnitAtATime=*/ true,
318 /*UnrollLoops=*/ true,
319 /*SimplifyLibCalls=*/ true,
320 /*HaveExceptions=*/ true,
321 InliningPass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000322}
323
Daniel Dunbar53459d72009-07-17 18:09:39 +0000324void AddStandardLinkPasses(PassManager &PM) {
325 PM.add(createVerifierPass()); // Verify that input is correct
326
327 // If the -strip-debug command line option was specified, do it.
328 if (StripDebug)
329 addPass(PM, createStripSymbolsPass(true));
330
331 if (DisableOptimizations) return;
332
333 createStandardLTOPasses(&PM, /*Internalize=*/ !DisableInternalize,
334 /*RunInliner=*/ !DisableInline,
335 /*VerifyEach=*/ VerifyEach);
336}
337
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000338} // anonymous namespace
339
340
341//===----------------------------------------------------------------------===//
342// main for opt
343//
344int main(int argc, char **argv) {
Chris Lattnercb8c7752009-12-09 00:41:28 +0000345 sys::PrintStackTraceOnErrorSignal();
346 llvm::PrettyStackTraceProgram X(argc, argv);
347
David Greene57873752010-01-05 01:30:32 +0000348 // Enable debug stream buffering.
349 EnableDebugBuffering = true;
350
Chris Lattnercb8c7752009-12-09 00:41:28 +0000351 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
Owen Andersone84b8b32009-07-15 22:16:10 +0000352 LLVMContext &Context = getGlobalContext();
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000353
354 cl::ParseCommandLineOptions(argc, argv,
355 "llvm .bc -> .bc modular optimizer and analysis printer\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000356
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000357 // Allocate a full target machine description only if necessary.
358 // FIXME: The choice of target should be controllable on the command line.
359 std::auto_ptr<TargetMachine> target;
Devang Patelf6a112f2008-08-27 20:51:49 +0000360
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000361 SMDiagnostic Err;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000362
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000363 // Load the input module...
364 std::auto_ptr<Module> M;
365 M.reset(ParseIRFile(InputFilename, Err, Context));
Eric Christopherdc019192009-08-21 23:29:40 +0000366
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000367 if (M.get() == 0) {
368 Err.Print(argv[0], errs());
369 return 1;
370 }
371
372 // Figure out what stream we are supposed to write to...
373 // FIXME: outs() is not binary!
374 raw_ostream *Out = &outs(); // Default to printing to stdout...
375 if (OutputFilename != "-") {
376 // Make sure that the Output file gets unlinked from the disk if we get a
377 // SIGINT
378 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
379
380 std::string ErrorInfo;
381 Out = new raw_fd_ostream(OutputFilename.c_str(), ErrorInfo,
382 raw_fd_ostream::F_Binary);
383 if (!ErrorInfo.empty()) {
384 errs() << ErrorInfo << '\n';
385 delete Out;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000386 return 1;
387 }
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000388 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000389
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000390 // If the output is set to be emitted to standard out, and standard out is a
391 // console, print out a warning message and refuse to do it. We don't
392 // impress anyone by spewing tons of binary goo to a terminal.
393 if (!Force && !NoOutput && !OutputAssembly)
394 if (CheckBitcodeOutputToConsole(*Out, !Quiet))
395 NoOutput = true;
Dan Gohman31b20c72009-09-11 20:46:33 +0000396
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000397 // Create a PassManager to hold and optimize the collection of passes we are
398 // about to build...
399 //
400 PassManager Passes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000401
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000402 // Add an appropriate TargetData instance for this module...
403 TargetData *TD = 0;
404 const std::string &ModuleDataLayout = M.get()->getDataLayout();
405 if (!ModuleDataLayout.empty())
406 TD = new TargetData(ModuleDataLayout);
Kenneth Uildriksa092c122009-11-03 15:29:06 +0000407 else if (!DefaultDataLayout.empty())
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000408 TD = new TargetData(DefaultDataLayout);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000409
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000410 if (TD)
411 Passes.add(TD);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000412
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000413 FunctionPassManager *FPasses = NULL;
414 if (OptLevelO1 || OptLevelO2 || OptLevelO3) {
415 FPasses = new FunctionPassManager(new ExistingModuleProvider(M.get()));
Chris Lattnercd0702f2009-10-22 00:44:10 +0000416 if (TD)
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000417 FPasses->add(new TargetData(*TD));
418 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000419
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000420 // If the -strip-debug command line option was specified, add it. If
421 // -std-compile-opts was also specified, it will handle StripDebug.
422 if (StripDebug && !StandardCompileOpts)
423 addPass(Passes, createStripSymbolsPass(true));
Eric Christopherdc019192009-08-21 23:29:40 +0000424
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000425 // Create a new optimization pass for each one specified on the command line
426 for (unsigned i = 0; i < PassList.size(); ++i) {
427 // Check to see if -std-compile-opts was specified before this option. If
428 // so, handle it.
429 if (StandardCompileOpts &&
430 StandardCompileOpts.getPosition() < PassList.getPosition(i)) {
Chris Lattnerfe3cc652008-07-13 19:35:21 +0000431 AddStandardCompilePasses(Passes);
432 StandardCompileOpts = false;
Eric Christopherdc019192009-08-21 23:29:40 +0000433 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000434
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000435 if (StandardLinkOpts &&
436 StandardLinkOpts.getPosition() < PassList.getPosition(i)) {
Daniel Dunbar53459d72009-07-17 18:09:39 +0000437 AddStandardLinkPasses(Passes);
438 StandardLinkOpts = false;
Eric Christopherdc019192009-08-21 23:29:40 +0000439 }
Daniel Dunbar53459d72009-07-17 18:09:39 +0000440
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000441 if (OptLevelO1 && OptLevelO1.getPosition() < PassList.getPosition(i)) {
Daniel Dunbar53459d72009-07-17 18:09:39 +0000442 AddOptimizationPasses(Passes, *FPasses, 1);
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000443 OptLevelO1 = false;
Daniel Dunbar53459d72009-07-17 18:09:39 +0000444 }
Devang Patel14d07602008-09-16 22:25:14 +0000445
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000446 if (OptLevelO2 && OptLevelO2.getPosition() < PassList.getPosition(i)) {
Daniel Dunbar53459d72009-07-17 18:09:39 +0000447 AddOptimizationPasses(Passes, *FPasses, 2);
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000448 OptLevelO2 = false;
Daniel Dunbar53459d72009-07-17 18:09:39 +0000449 }
Devang Patel14d07602008-09-16 22:25:14 +0000450
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000451 if (OptLevelO3 && OptLevelO3.getPosition() < PassList.getPosition(i)) {
Daniel Dunbar53459d72009-07-17 18:09:39 +0000452 AddOptimizationPasses(Passes, *FPasses, 3);
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000453 OptLevelO3 = false;
Daniel Dunbar53459d72009-07-17 18:09:39 +0000454 }
Devang Patel14d07602008-09-16 22:25:14 +0000455
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000456 const PassInfo *PassInf = PassList[i];
457 Pass *P = 0;
458 if (PassInf->getNormalCtor())
459 P = PassInf->getNormalCtor()();
460 else
461 errs() << argv[0] << ": cannot create pass: "
462 << PassInf->getPassName() << "\n";
463 if (P) {
464 bool isBBPass = dynamic_cast<BasicBlockPass*>(P) != 0;
465 bool isLPass = !isBBPass && dynamic_cast<LoopPass*>(P) != 0;
466 bool isFPass = !isLPass && dynamic_cast<FunctionPass*>(P) != 0;
467 bool isCGSCCPass = !isFPass && dynamic_cast<CallGraphSCCPass*>(P) != 0;
468
469 addPass(Passes, P);
470
471 if (AnalyzeOnly) {
472 if (isBBPass)
473 Passes.add(new BasicBlockPassPrinter(PassInf));
474 else if (isLPass)
475 Passes.add(new LoopPassPrinter(PassInf));
476 else if (isFPass)
477 Passes.add(new FunctionPassPrinter(PassInf));
478 else if (isCGSCCPass)
479 Passes.add(new CallGraphSCCPassPrinter(PassInf));
480 else
481 Passes.add(new ModulePassPrinter(PassInf));
482 }
Devang Patel14d07602008-09-16 22:25:14 +0000483 }
484
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000485 if (PrintEachXForm)
486 Passes.add(createPrintModulePass(&errs()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000487 }
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000488
489 // If -std-compile-opts was specified at the end of the pass list, add them.
490 if (StandardCompileOpts) {
491 AddStandardCompilePasses(Passes);
492 StandardCompileOpts = false;
493 }
494
495 if (StandardLinkOpts) {
496 AddStandardLinkPasses(Passes);
497 StandardLinkOpts = false;
498 }
499
500 if (OptLevelO1)
501 AddOptimizationPasses(Passes, *FPasses, 1);
502
503 if (OptLevelO2)
504 AddOptimizationPasses(Passes, *FPasses, 2);
505
506 if (OptLevelO3)
507 AddOptimizationPasses(Passes, *FPasses, 3);
508
509 if (OptLevelO1 || OptLevelO2 || OptLevelO3) {
510 FPasses->doInitialization();
511 for (Module::iterator I = M.get()->begin(), E = M.get()->end();
512 I != E; ++I)
513 FPasses->run(*I);
514 }
515
516 // Check that the module is well formed on completion of optimization
517 if (!NoVerify && !VerifyEach)
518 Passes.add(createVerifierPass());
519
520 // Write bitcode or assembly out to disk or outs() as the last step...
521 if (!NoOutput && !AnalyzeOnly) {
522 if (OutputAssembly)
523 Passes.add(createPrintModulePass(Out));
524 else
525 Passes.add(createBitcodeWriterPass(*Out));
526 }
527
528 // Now that we have all of the passes ready, run them.
529 Passes.run(*M.get());
530
531 // Delete the raw_fd_ostream.
532 if (Out != &outs())
533 delete Out;
534 return 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000535}