blob: a4ad9ab571ffc2c3133652c13ddf29b72d2b6137 [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 != "-") {
Dan Gohman63bf7682010-01-17 17:47:24 +0000376 if (NoOutput || AnalyzeOnly) {
377 errs() << "WARNING: The -o (output filename) option is ignored when\n"
378 "the --disable-output or --analyze options are used.\n";
379 } else {
380 // Make sure that the Output file gets unlinked from the disk if we get a
381 // SIGINT
382 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000383
Dan Gohman63bf7682010-01-17 17:47:24 +0000384 std::string ErrorInfo;
385 Out = new raw_fd_ostream(OutputFilename.c_str(), ErrorInfo,
386 raw_fd_ostream::F_Binary);
387 if (!ErrorInfo.empty()) {
388 errs() << ErrorInfo << '\n';
389 delete Out;
390 return 1;
391 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000392 }
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000393 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000394
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000395 // If the output is set to be emitted to standard out, and standard out is a
396 // console, print out a warning message and refuse to do it. We don't
397 // impress anyone by spewing tons of binary goo to a terminal.
Dan Gohman63bf7682010-01-17 17:47:24 +0000398 if (!Force && !NoOutput && !AnalyzeOnly && !OutputAssembly)
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000399 if (CheckBitcodeOutputToConsole(*Out, !Quiet))
400 NoOutput = true;
Dan Gohman31b20c72009-09-11 20:46:33 +0000401
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000402 // Create a PassManager to hold and optimize the collection of passes we are
403 // about to build...
404 //
405 PassManager Passes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000406
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000407 // Add an appropriate TargetData instance for this module...
408 TargetData *TD = 0;
409 const std::string &ModuleDataLayout = M.get()->getDataLayout();
410 if (!ModuleDataLayout.empty())
411 TD = new TargetData(ModuleDataLayout);
Kenneth Uildriksa092c122009-11-03 15:29:06 +0000412 else if (!DefaultDataLayout.empty())
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000413 TD = new TargetData(DefaultDataLayout);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000414
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000415 if (TD)
416 Passes.add(TD);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000417
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000418 FunctionPassManager *FPasses = NULL;
419 if (OptLevelO1 || OptLevelO2 || OptLevelO3) {
420 FPasses = new FunctionPassManager(new ExistingModuleProvider(M.get()));
Chris Lattnercd0702f2009-10-22 00:44:10 +0000421 if (TD)
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000422 FPasses->add(new TargetData(*TD));
423 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000424
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000425 // If the -strip-debug command line option was specified, add it. If
426 // -std-compile-opts was also specified, it will handle StripDebug.
427 if (StripDebug && !StandardCompileOpts)
428 addPass(Passes, createStripSymbolsPass(true));
Eric Christopherdc019192009-08-21 23:29:40 +0000429
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000430 // Create a new optimization pass for each one specified on the command line
431 for (unsigned i = 0; i < PassList.size(); ++i) {
432 // Check to see if -std-compile-opts was specified before this option. If
433 // so, handle it.
434 if (StandardCompileOpts &&
435 StandardCompileOpts.getPosition() < PassList.getPosition(i)) {
Chris Lattnerfe3cc652008-07-13 19:35:21 +0000436 AddStandardCompilePasses(Passes);
437 StandardCompileOpts = false;
Eric Christopherdc019192009-08-21 23:29:40 +0000438 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000439
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000440 if (StandardLinkOpts &&
441 StandardLinkOpts.getPosition() < PassList.getPosition(i)) {
Daniel Dunbar53459d72009-07-17 18:09:39 +0000442 AddStandardLinkPasses(Passes);
443 StandardLinkOpts = false;
Eric Christopherdc019192009-08-21 23:29:40 +0000444 }
Daniel Dunbar53459d72009-07-17 18:09:39 +0000445
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000446 if (OptLevelO1 && OptLevelO1.getPosition() < PassList.getPosition(i)) {
Daniel Dunbar53459d72009-07-17 18:09:39 +0000447 AddOptimizationPasses(Passes, *FPasses, 1);
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000448 OptLevelO1 = 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 (OptLevelO2 && OptLevelO2.getPosition() < PassList.getPosition(i)) {
Daniel Dunbar53459d72009-07-17 18:09:39 +0000452 AddOptimizationPasses(Passes, *FPasses, 2);
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000453 OptLevelO2 = 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 if (OptLevelO3 && OptLevelO3.getPosition() < PassList.getPosition(i)) {
Daniel Dunbar53459d72009-07-17 18:09:39 +0000457 AddOptimizationPasses(Passes, *FPasses, 3);
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000458 OptLevelO3 = false;
Daniel Dunbar53459d72009-07-17 18:09:39 +0000459 }
Devang Patel14d07602008-09-16 22:25:14 +0000460
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000461 const PassInfo *PassInf = PassList[i];
462 Pass *P = 0;
463 if (PassInf->getNormalCtor())
464 P = PassInf->getNormalCtor()();
465 else
466 errs() << argv[0] << ": cannot create pass: "
467 << PassInf->getPassName() << "\n";
468 if (P) {
469 bool isBBPass = dynamic_cast<BasicBlockPass*>(P) != 0;
470 bool isLPass = !isBBPass && dynamic_cast<LoopPass*>(P) != 0;
471 bool isFPass = !isLPass && dynamic_cast<FunctionPass*>(P) != 0;
472 bool isCGSCCPass = !isFPass && dynamic_cast<CallGraphSCCPass*>(P) != 0;
473
474 addPass(Passes, P);
475
476 if (AnalyzeOnly) {
477 if (isBBPass)
478 Passes.add(new BasicBlockPassPrinter(PassInf));
479 else if (isLPass)
480 Passes.add(new LoopPassPrinter(PassInf));
481 else if (isFPass)
482 Passes.add(new FunctionPassPrinter(PassInf));
483 else if (isCGSCCPass)
484 Passes.add(new CallGraphSCCPassPrinter(PassInf));
485 else
486 Passes.add(new ModulePassPrinter(PassInf));
487 }
Devang Patel14d07602008-09-16 22:25:14 +0000488 }
489
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000490 if (PrintEachXForm)
491 Passes.add(createPrintModulePass(&errs()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000492 }
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000493
494 // If -std-compile-opts was specified at the end of the pass list, add them.
495 if (StandardCompileOpts) {
496 AddStandardCompilePasses(Passes);
497 StandardCompileOpts = false;
498 }
499
500 if (StandardLinkOpts) {
501 AddStandardLinkPasses(Passes);
502 StandardLinkOpts = false;
503 }
504
505 if (OptLevelO1)
506 AddOptimizationPasses(Passes, *FPasses, 1);
507
508 if (OptLevelO2)
509 AddOptimizationPasses(Passes, *FPasses, 2);
510
511 if (OptLevelO3)
512 AddOptimizationPasses(Passes, *FPasses, 3);
513
514 if (OptLevelO1 || OptLevelO2 || OptLevelO3) {
515 FPasses->doInitialization();
516 for (Module::iterator I = M.get()->begin(), E = M.get()->end();
517 I != E; ++I)
518 FPasses->run(*I);
519 }
520
521 // Check that the module is well formed on completion of optimization
522 if (!NoVerify && !VerifyEach)
523 Passes.add(createVerifierPass());
524
Dan Gohman63bf7682010-01-17 17:47:24 +0000525 // Write bitcode or assembly out to disk or outs() as the last step...
Chris Lattner96f3f0e2009-10-22 00:46:41 +0000526 if (!NoOutput && !AnalyzeOnly) {
527 if (OutputAssembly)
528 Passes.add(createPrintModulePass(Out));
529 else
530 Passes.add(createBitcodeWriterPass(*Out));
531 }
532
533 // Now that we have all of the passes ready, run them.
534 Passes.run(*M.get());
535
536 // Delete the raw_fd_ostream.
537 if (Out != &outs())
538 delete Out;
539 return 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000540}