blob: b0077eaf29dc227acab6fbbe0c6689fcc512d620 [file] [log] [blame]
Chris Lattner76351aa2004-04-02 05:06:57 +00001//===- opt.cpp - The LLVM Modular Optimizer -------------------------------===//
Misha Brukman3da94ae2005-04-22 00:00:37 +00002//
John Criswell7c0e0222003-10-20 17:47:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner21c62da2007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman3da94ae2005-04-22 00:00:37 +00007//
John Criswell7c0e0222003-10-20 17:47:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +00009//
Chris Lattner00950542001-06-06 20:29:01 +000010// Optimizations may be specified an arbitrary number of times on the command
Reid Spencerfd90dd52006-08-18 06:34:30 +000011// line, They are run in the order specified.
Chris Lattner00950542001-06-06 20:29:01 +000012//
Chris Lattner0eafc312001-10-18 06:05:15 +000013//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +000014
Chris Lattner00950542001-06-06 20:29:01 +000015#include "llvm/Module.h"
Devang Patel2d7551c2008-09-16 22:25:14 +000016#include "llvm/ModuleProvider.h"
Chris Lattnerfb1b3f12002-01-31 00:47:12 +000017#include "llvm/PassManager.h"
Devang Patel28552da2007-06-28 23:09:25 +000018#include "llvm/CallGraphSCCPass.h"
Chris Lattnerb330e382007-05-06 02:42:03 +000019#include "llvm/Bitcode/ReaderWriter.h"
Chris Lattnerffa6f9c2001-10-19 15:39:14 +000020#include "llvm/Assembly/PrintModulePass.h"
Chris Lattner22d26d72002-02-20 17:56:53 +000021#include "llvm/Analysis/Verifier.h"
Devang Patel1bc89362007-03-07 00:26:10 +000022#include "llvm/Analysis/LoopPass.h"
Devang Patel28552da2007-06-28 23:09:25 +000023#include "llvm/Analysis/CallGraph.h"
Owen Anderson07000c62006-05-12 06:33:49 +000024#include "llvm/Target/TargetData.h"
Vikram S. Adve18fdfc42002-09-16 16:09:43 +000025#include "llvm/Target/TargetMachine.h"
Chris Lattner2053a2a2002-07-26 21:09:32 +000026#include "llvm/Support/PassNameParser.h"
Chris Lattnerbed85ff2004-05-27 05:41:36 +000027#include "llvm/System/Signals.h"
Chris Lattnerc30598b2006-12-06 01:18:01 +000028#include "llvm/Support/ManagedStatic.h"
Chris Lattnerb330e382007-05-06 02:42:03 +000029#include "llvm/Support/MemoryBuffer.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000030#include "llvm/Support/PluginLoader.h"
Bill Wendlinga5b31ca2006-11-28 23:33:06 +000031#include "llvm/Support/Streams.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000032#include "llvm/Support/SystemUtils.h"
Daniel Dunbar3b0da262008-10-22 03:25:22 +000033#include "llvm/Support/raw_ostream.h"
Reid Spencer62c51052006-08-21 05:34:03 +000034#include "llvm/LinkAllPasses.h"
Reid Spenceraf303d52006-06-07 23:03:13 +000035#include "llvm/LinkAllVMCore.h"
Bill Wendling68fe61d2006-11-29 00:19:40 +000036#include <iostream>
Chris Lattner73e11d72001-10-18 06:13:08 +000037#include <fstream>
Chris Lattner63202322001-11-26 19:22:39 +000038#include <memory>
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000039#include <algorithm>
Brian Gaeked0fde302003-11-11 22:41:34 +000040using namespace llvm;
Chris Lattner9d6e7eb2002-04-12 18:21:13 +000041
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000042// The OptimizationList is automatically populated with registered Passes by the
43// PassNameParser.
44//
Chris Lattner7f500f72006-08-27 22:07:01 +000045static cl::list<const PassInfo*, bool, PassNameParser>
46PassList(cl::desc("Optimizations available:"));
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000047
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000048// Other command line options...
Chris Lattnerfb1b3f12002-01-31 00:47:12 +000049//
Chris Lattner6c8103f2003-05-22 20:13:16 +000050static cl::opt<std::string>
Gabor Greifa99be512007-07-05 17:07:56 +000051InputFilename(cl::Positional, cl::desc("<input bitcode file>"),
Reid Spencerfd90dd52006-08-18 06:34:30 +000052 cl::init("-"), cl::value_desc("filename"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000053
Chris Lattner6c8103f2003-05-22 20:13:16 +000054static cl::opt<std::string>
Chris Lattner5ff62e92002-07-22 02:10:13 +000055OutputFilename("o", cl::desc("Override output filename"),
Chris Lattnerb592fc22003-12-10 14:41:33 +000056 cl::value_desc("filename"), cl::init("-"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000057
58static cl::opt<bool>
59Force("f", cl::desc("Overwrite output files"));
60
61static cl::opt<bool>
62PrintEachXForm("p", cl::desc("Print module after each transformation"));
63
64static cl::opt<bool>
Chris Lattnerddd5b412003-02-26 20:00:41 +000065NoOutput("disable-output",
Gabor Greifa99be512007-07-05 17:07:56 +000066 cl::desc("Do not write result bitcode file"), cl::Hidden);
Chris Lattnerd70b68e2003-02-12 18:43:33 +000067
68static cl::opt<bool>
Chris Lattnerddd5b412003-02-26 20:00:41 +000069NoVerify("disable-verify", cl::desc("Do not verify result module"), cl::Hidden);
Chris Lattnerf3bafc12003-02-12 18:45:08 +000070
71static cl::opt<bool>
Reid Spencer74ed9972007-02-02 14:46:29 +000072VerifyEach("verify-each", cl::desc("Verify after each transform"));
73
74static cl::opt<bool>
75StripDebug("strip-debug",
76 cl::desc("Strip debugger symbol info from translation unit"));
77
78static cl::opt<bool>
79DisableInline("disable-inlining", cl::desc("Do not run the inliner pass"));
80
81static cl::opt<bool>
82DisableOptimizations("disable-opt",
83 cl::desc("Do not run any optimization passes"));
84
85static cl::opt<bool>
86StandardCompileOpts("std-compile-opts",
87 cl::desc("Include the standard compile time optimizations"));
88
89static cl::opt<bool>
Devang Patel2d7551c2008-09-16 22:25:14 +000090OptLevelO1("O1",
91 cl::desc("Optimization level 1. Similar to llvm-gcc -O1"));
92
93static cl::opt<bool>
94OptLevelO2("O2",
Devang Pateld9424ed2008-09-17 00:01:04 +000095 cl::desc("Optimization level 2. Similar to llvm-gcc -O2"));
Devang Patel2d7551c2008-09-16 22:25:14 +000096
97static cl::opt<bool>
98OptLevelO3("O3",
Devang Pateld9424ed2008-09-17 00:01:04 +000099 cl::desc("Optimization level 3. Similar to llvm-gcc -O3"));
Devang Patel2d7551c2008-09-16 22:25:14 +0000100
101static cl::opt<bool>
102UnitAtATime("funit-at-a-time",
Devang Patel442b1aa2008-09-17 16:01:39 +0000103 cl::desc("Enable IPO. This is same as llvm-gcc's -funit-at-a-time"));
Devang Patel2d7551c2008-09-16 22:25:14 +0000104
105static cl::opt<bool>
106DisableSimplifyLibCalls("disable-simplify-libcalls",
Devang Patel442b1aa2008-09-17 16:01:39 +0000107 cl::desc("Disable simplify-libcalls"));
Devang Patel2d7551c2008-09-16 22:25:14 +0000108
109static cl::opt<bool>
Chris Lattner3153e4f2004-05-27 20:32:10 +0000110Quiet("q", cl::desc("Obsolete option"), cl::Hidden);
Chris Lattner5ff62e92002-07-22 02:10:13 +0000111
Reid Spencerec7eb452004-05-27 16:28:54 +0000112static cl::alias
113QuietA("quiet", cl::desc("Alias for -q"), cl::aliasopt(Quiet));
114
Reid Spencerfd90dd52006-08-18 06:34:30 +0000115static cl::opt<bool>
116AnalyzeOnly("analyze", cl::desc("Only perform analysis, no optimization"));
117
Reid Spencerfd90dd52006-08-18 06:34:30 +0000118// ---------- Define Printers for module and function passes ------------
119namespace {
120
Devang Patel28552da2007-06-28 23:09:25 +0000121struct CallGraphSCCPassPrinter : public CallGraphSCCPass {
122 static char ID;
123 const PassInfo *PassToPrint;
124 CallGraphSCCPassPrinter(const PassInfo *PI) :
125 CallGraphSCCPass((intptr_t)&ID), PassToPrint(PI) {}
126
127 virtual bool runOnSCC(const std::vector<CallGraphNode *>&SCC) {
128 if (!Quiet) {
129 cout << "Printing analysis '" << PassToPrint->getPassName() << "':\n";
130
131 for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
132 Function *F = SCC[i]->getFunction();
133 if (F)
134 getAnalysisID<Pass>(PassToPrint).print(cout, F->getParent());
135 }
136 }
137 // Get and print pass...
138 return false;
139 }
140
141 virtual const char *getPassName() const { return "'Pass' Printer"; }
142
143 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
144 AU.addRequiredID(PassToPrint);
145 AU.setPreservesAll();
146 }
147};
148
149char CallGraphSCCPassPrinter::ID = 0;
150
Reid Spencerfd90dd52006-08-18 06:34:30 +0000151struct ModulePassPrinter : public ModulePass {
Devang Patel19974732007-05-03 01:11:54 +0000152 static char ID;
Reid Spencerfd90dd52006-08-18 06:34:30 +0000153 const PassInfo *PassToPrint;
Devang Patel794fd752007-05-01 21:15:47 +0000154 ModulePassPrinter(const PassInfo *PI) : ModulePass((intptr_t)&ID),
155 PassToPrint(PI) {}
Reid Spencerfd90dd52006-08-18 06:34:30 +0000156
157 virtual bool runOnModule(Module &M) {
158 if (!Quiet) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000159 cout << "Printing analysis '" << PassToPrint->getPassName() << "':\n";
160 getAnalysisID<Pass>(PassToPrint).print(cout, &M);
Reid Spencerfd90dd52006-08-18 06:34:30 +0000161 }
162
163 // Get and print pass...
164 return false;
165 }
166
167 virtual const char *getPassName() const { return "'Pass' Printer"; }
168
169 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
170 AU.addRequiredID(PassToPrint);
171 AU.setPreservesAll();
172 }
173};
174
Devang Patel19974732007-05-03 01:11:54 +0000175char ModulePassPrinter::ID = 0;
Reid Spencerfd90dd52006-08-18 06:34:30 +0000176struct FunctionPassPrinter : public FunctionPass {
177 const PassInfo *PassToPrint;
Devang Patel19974732007-05-03 01:11:54 +0000178 static char ID;
Devang Patel794fd752007-05-01 21:15:47 +0000179 FunctionPassPrinter(const PassInfo *PI) : FunctionPass((intptr_t)&ID),
180 PassToPrint(PI) {}
Reid Spencerfd90dd52006-08-18 06:34:30 +0000181
182 virtual bool runOnFunction(Function &F) {
Devang Patel794fd752007-05-01 21:15:47 +0000183 if (!Quiet) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000184 cout << "Printing analysis '" << PassToPrint->getPassName()
185 << "' for function '" << F.getName() << "':\n";
Reid Spencerfd90dd52006-08-18 06:34:30 +0000186 }
187 // Get and print pass...
Bill Wendlinge8156192006-12-07 01:30:32 +0000188 getAnalysisID<Pass>(PassToPrint).print(cout, F.getParent());
Reid Spencerfd90dd52006-08-18 06:34:30 +0000189 return false;
190 }
191
192 virtual const char *getPassName() const { return "FunctionPass Printer"; }
193
194 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
195 AU.addRequiredID(PassToPrint);
196 AU.setPreservesAll();
197 }
198};
199
Devang Patel19974732007-05-03 01:11:54 +0000200char FunctionPassPrinter::ID = 0;
Devang Patel56fb1642007-07-05 15:32:03 +0000201
202struct LoopPassPrinter : public LoopPass {
203 static char ID;
204 const PassInfo *PassToPrint;
205 LoopPassPrinter(const PassInfo *PI) :
206 LoopPass((intptr_t)&ID), PassToPrint(PI) {}
207
208 virtual bool runOnLoop(Loop *L, LPPassManager &LPM) {
209 if (!Quiet) {
210 cout << "Printing analysis '" << PassToPrint->getPassName() << "':\n";
211 getAnalysisID<Pass>(PassToPrint).print(cout,
212 L->getHeader()->getParent()->getParent());
213 }
214 // Get and print pass...
215 return false;
216 }
217
218 virtual const char *getPassName() const { return "'Pass' Printer"; }
219
220 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
221 AU.addRequiredID(PassToPrint);
222 AU.setPreservesAll();
223 }
224};
225
226char LoopPassPrinter::ID = 0;
227
Reid Spencerfd90dd52006-08-18 06:34:30 +0000228struct BasicBlockPassPrinter : public BasicBlockPass {
229 const PassInfo *PassToPrint;
Devang Patel19974732007-05-03 01:11:54 +0000230 static char ID;
Devang Patel794fd752007-05-01 21:15:47 +0000231 BasicBlockPassPrinter(const PassInfo *PI)
232 : BasicBlockPass((intptr_t)&ID), PassToPrint(PI) {}
Reid Spencerfd90dd52006-08-18 06:34:30 +0000233
234 virtual bool runOnBasicBlock(BasicBlock &BB) {
235 if (!Quiet) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000236 cout << "Printing Analysis info for BasicBlock '" << BB.getName()
237 << "': Pass " << PassToPrint->getPassName() << ":\n";
Reid Spencerfd90dd52006-08-18 06:34:30 +0000238 }
239
240 // Get and print pass...
Bill Wendlinge8156192006-12-07 01:30:32 +0000241 getAnalysisID<Pass>(PassToPrint).print(cout, BB.getParent()->getParent());
Reid Spencerfd90dd52006-08-18 06:34:30 +0000242 return false;
243 }
244
245 virtual const char *getPassName() const { return "BasicBlockPass Printer"; }
246
247 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
248 AU.addRequiredID(PassToPrint);
249 AU.setPreservesAll();
250 }
251};
252
Devang Patel19974732007-05-03 01:11:54 +0000253char BasicBlockPassPrinter::ID = 0;
Reid Spencer74ed9972007-02-02 14:46:29 +0000254inline void addPass(PassManager &PM, Pass *P) {
255 // Add the pass to the pass manager...
256 PM.add(P);
257
258 // If we are verifying all of the intermediate steps, add the verifier...
259 if (VerifyEach) PM.add(createVerifierPass());
260}
261
Devang Patel2d7551c2008-09-16 22:25:14 +0000262/// AddOptimizationPasses - This routine adds optimization passes
263/// based on selected optimization level, OptLevel. This routine
264/// duplicates llvm-gcc behaviour.
265///
266/// OptLevel - Optimization Level
Devang Patel2d7551c2008-09-16 22:25:14 +0000267 void AddOptimizationPasses(PassManager &MPM, FunctionPassManager &FPM,
268 unsigned OptLevel) {
269
270 if (OptLevel == 0)
271 return;
272
273 FPM.add(createCFGSimplificationPass());
274 if (OptLevel == 1)
275 FPM.add(createPromoteMemoryToRegisterPass());
276 else
277 FPM.add(createScalarReplAggregatesPass());
278 FPM.add(createInstructionCombiningPass());
279
280 if (UnitAtATime)
281 MPM.add(createRaiseAllocationsPass()); // call %malloc -> malloc inst
282 MPM.add(createCFGSimplificationPass()); // Clean up disgusting code
283 MPM.add(createPromoteMemoryToRegisterPass()); // Kill useless allocas
284 if (UnitAtATime) {
285 MPM.add(createGlobalOptimizerPass()); // OptLevel out global vars
286 MPM.add(createGlobalDCEPass()); // Remove unused fns and globs
287 MPM.add(createIPConstantPropagationPass()); // IP Constant Propagation
288 MPM.add(createDeadArgEliminationPass()); // Dead argument elimination
289 }
290 MPM.add(createInstructionCombiningPass()); // Clean up after IPCP & DAE
291 MPM.add(createCFGSimplificationPass()); // Clean up after IPCP & DAE
Duncan Sands210fada2008-09-19 14:34:36 +0000292 if (UnitAtATime) {
Devang Patel2d7551c2008-09-16 22:25:14 +0000293 MPM.add(createPruneEHPass()); // Remove dead EH info
Duncan Sands210fada2008-09-19 14:34:36 +0000294 MPM.add(createAddReadAttrsPass()); // Set readonly/readnone attrs
295 }
Devang Patel2d7551c2008-09-16 22:25:14 +0000296 if (OptLevel > 1)
297 MPM.add(createFunctionInliningPass()); // Inline small functions
298 if (OptLevel > 2)
299 MPM.add(createArgumentPromotionPass()); // Scalarize uninlined fn args
300 if (!DisableSimplifyLibCalls)
301 MPM.add(createSimplifyLibCallsPass()); // Library Call Optimizations
302 MPM.add(createInstructionCombiningPass()); // Cleanup for scalarrepl.
303 MPM.add(createJumpThreadingPass()); // Thread jumps.
304 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
305 MPM.add(createScalarReplAggregatesPass()); // Break up aggregate allocas
306 MPM.add(createInstructionCombiningPass()); // Combine silly seq's
307 MPM.add(createCondPropagationPass()); // Propagate conditionals
308 MPM.add(createTailCallEliminationPass()); // Eliminate tail calls
309 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
310 MPM.add(createReassociatePass()); // Reassociate expressions
311 MPM.add(createLoopRotatePass()); // Rotate Loop
312 MPM.add(createLICMPass()); // Hoist loop invariants
313 MPM.add(createLoopUnswitchPass());
314 MPM.add(createLoopIndexSplitPass()); // Split loop index
315 MPM.add(createInstructionCombiningPass());
316 MPM.add(createIndVarSimplifyPass()); // Canonicalize indvars
317 MPM.add(createLoopDeletionPass()); // Delete dead loops
318 if (OptLevel > 1)
319 MPM.add(createLoopUnrollPass()); // Unroll small loops
320 MPM.add(createInstructionCombiningPass()); // Clean up after the unroller
321 MPM.add(createGVNPass()); // Remove redundancies
322 MPM.add(createMemCpyOptPass()); // Remove memcpy / form memset
323 MPM.add(createSCCPPass()); // Constant prop with SCCP
324
325 // Run instcombine after redundancy elimination to exploit opportunities
326 // opened up by them.
327 MPM.add(createInstructionCombiningPass());
328 MPM.add(createCondPropagationPass()); // Propagate conditionals
329 MPM.add(createDeadStoreEliminationPass()); // Delete dead stores
330 MPM.add(createAggressiveDCEPass()); // Delete dead instructions
331 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
332
333 if (UnitAtATime) {
334 MPM.add(createStripDeadPrototypesPass()); // Get rid of dead prototypes
335 MPM.add(createDeadTypeEliminationPass()); // Eliminate dead types
336 }
337
338 if (OptLevel > 1 && UnitAtATime)
339 MPM.add(createConstantMergePass()); // Merge dup global constants
340
341 return;
342}
343
Reid Spencer74ed9972007-02-02 14:46:29 +0000344void AddStandardCompilePasses(PassManager &PM) {
345 PM.add(createVerifierPass()); // Verify that input is correct
346
347 addPass(PM, createLowerSetJmpPass()); // Lower llvm.setjmp/.longjmp
Reid Spencer74ed9972007-02-02 14:46:29 +0000348
349 // If the -strip-debug command line option was specified, do it.
350 if (StripDebug)
351 addPass(PM, createStripSymbolsPass(true));
352
353 if (DisableOptimizations) return;
354
355 addPass(PM, createRaiseAllocationsPass()); // call %malloc -> malloc inst
356 addPass(PM, createCFGSimplificationPass()); // Clean up disgusting code
357 addPass(PM, createPromoteMemoryToRegisterPass());// Kill useless allocas
358 addPass(PM, createGlobalOptimizerPass()); // Optimize out global vars
359 addPass(PM, createGlobalDCEPass()); // Remove unused fns and globs
360 addPass(PM, createIPConstantPropagationPass());// IP Constant Propagation
361 addPass(PM, createDeadArgEliminationPass()); // Dead argument elimination
362 addPass(PM, createInstructionCombiningPass()); // Clean up after IPCP & DAE
363 addPass(PM, createCFGSimplificationPass()); // Clean up after IPCP & DAE
364
365 addPass(PM, createPruneEHPass()); // Remove dead EH info
Duncan Sands210fada2008-09-19 14:34:36 +0000366 addPass(PM, createAddReadAttrsPass()); // Set readonly/readnone attrs
Reid Spencer74ed9972007-02-02 14:46:29 +0000367
368 if (!DisableInline)
369 addPass(PM, createFunctionInliningPass()); // Inline small functions
370 addPass(PM, createArgumentPromotionPass()); // Scalarize uninlined fn args
371
Chris Lattner866b9e12008-05-02 22:05:06 +0000372 addPass(PM, createSimplifyLibCallsPass()); // Library Call Optimizations
Reid Spencer74ed9972007-02-02 14:46:29 +0000373 addPass(PM, createInstructionCombiningPass()); // Cleanup for scalarrepl.
Chris Lattner2510c3b2008-04-21 04:22:09 +0000374 addPass(PM, createJumpThreadingPass()); // Thread jumps.
Reid Spencer74ed9972007-02-02 14:46:29 +0000375 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
Evan Cheng74b1e142007-07-17 20:07:21 +0000376 addPass(PM, createScalarReplAggregatesPass()); // Break up aggregate allocas
Reid Spencer74ed9972007-02-02 14:46:29 +0000377 addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
378 addPass(PM, createCondPropagationPass()); // Propagate conditionals
379
380 addPass(PM, createTailCallEliminationPass()); // Eliminate tail calls
381 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
382 addPass(PM, createReassociatePass()); // Reassociate expressions
Devang Patel0aa37f42007-04-10 15:43:36 +0000383 addPass(PM, createLoopRotatePass());
Reid Spencer74ed9972007-02-02 14:46:29 +0000384 addPass(PM, createLICMPass()); // Hoist loop invariants
385 addPass(PM, createLoopUnswitchPass()); // Unswitch loops.
Devang Patel305743d2007-09-04 20:46:58 +0000386 addPass(PM, createLoopIndexSplitPass()); // Index split loops.
Devang Patel8ffe2e22008-05-14 18:04:30 +0000387 // FIXME : Removing instcombine causes nestedloop regression.
Duncan Sands0e3b7b22008-09-12 08:23:37 +0000388 addPass(PM, createInstructionCombiningPass());
Reid Spencer74ed9972007-02-02 14:46:29 +0000389 addPass(PM, createIndVarSimplifyPass()); // Canonicalize indvars
Owen Anderson4982bab2008-05-10 07:10:24 +0000390 addPass(PM, createLoopDeletionPass()); // Delete dead loops
Reid Spencer74ed9972007-02-02 14:46:29 +0000391 addPass(PM, createLoopUnrollPass()); // Unroll small loops
392 addPass(PM, createInstructionCombiningPass()); // Clean up after the unroller
Owen Andersond06eb2c2007-09-08 22:23:52 +0000393 addPass(PM, createGVNPass()); // Remove redundancies
Evan Cheng5d4ed3b2008-04-10 01:33:05 +0000394 addPass(PM, createMemCpyOptPass()); // Remove memcpy / form memset
Reid Spencer74ed9972007-02-02 14:46:29 +0000395 addPass(PM, createSCCPPass()); // Constant prop with SCCP
396
397 // Run instcombine after redundancy elimination to exploit opportunities
398 // opened up by them.
399 addPass(PM, createInstructionCombiningPass());
400 addPass(PM, createCondPropagationPass()); // Propagate conditionals
401
Owen Andersonf6a05f92007-08-01 06:36:51 +0000402 addPass(PM, createDeadStoreEliminationPass()); // Delete dead stores
Owen Andersonc5b27102008-05-29 08:48:21 +0000403 addPass(PM, createAggressiveDCEPass()); // Delete dead instructions
Reid Spencer74ed9972007-02-02 14:46:29 +0000404 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
Duncan Sandsfa191e42008-04-17 12:03:38 +0000405 addPass(PM, createStripDeadPrototypesPass()); // Get rid of dead prototypes
Reid Spencer74ed9972007-02-02 14:46:29 +0000406 addPass(PM, createDeadTypeEliminationPass()); // Eliminate dead types
407 addPass(PM, createConstantMergePass()); // Merge dup global constants
408}
409
Reid Spencerfd90dd52006-08-18 06:34:30 +0000410} // anonymous namespace
411
Chris Lattner0be41012002-02-01 04:54:11 +0000412
Chris Lattnerc0ce68b2002-07-23 18:12:22 +0000413//===----------------------------------------------------------------------===//
414// main for opt
415//
Chris Lattner00950542001-06-06 20:29:01 +0000416int main(int argc, char **argv) {
Chris Lattnerc30598b2006-12-06 01:18:01 +0000417 llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000418 try {
419 cl::ParseCommandLineOptions(argc, argv,
Dan Gohman82a13c92007-10-08 15:45:12 +0000420 "llvm .bc -> .bc modular optimizer and analysis printer\n");
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000421 sys::PrintStackTraceOnErrorSignal();
Chris Lattnerfb1b3f12002-01-31 00:47:12 +0000422
Devang Patelff5d06d2008-08-27 20:51:49 +0000423 // Allocate a full target machine description only if necessary.
424 // FIXME: The choice of target should be controllable on the command line.
425 std::auto_ptr<TargetMachine> target;
426
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000427 std::string ErrorMessage;
Vikram S. Adve18fdfc42002-09-16 16:09:43 +0000428
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000429 // Load the input module...
Chris Lattnerb330e382007-05-06 02:42:03 +0000430 std::auto_ptr<Module> M;
Chris Lattner065344d2007-05-06 23:45:49 +0000431 if (MemoryBuffer *Buffer
432 = MemoryBuffer::getFileOrSTDIN(InputFilename, &ErrorMessage)) {
Chris Lattner744879e2007-05-06 09:32:02 +0000433 M.reset(ParseBitcodeFile(Buffer, &ErrorMessage));
Chris Lattner065344d2007-05-06 23:45:49 +0000434 delete Buffer;
435 }
Chris Lattner744879e2007-05-06 09:32:02 +0000436
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000437 if (M.get() == 0) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000438 cerr << argv[0] << ": ";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000439 if (ErrorMessage.size())
Bill Wendlinge8156192006-12-07 01:30:32 +0000440 cerr << ErrorMessage << "\n";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000441 else
Gabor Greifa99be512007-07-05 17:07:56 +0000442 cerr << "bitcode didn't read correctly.\n";
Chris Lattner00950542001-06-06 20:29:01 +0000443 return 1;
444 }
Chris Lattner76d12292002-04-18 19:55:25 +0000445
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000446 // Figure out what stream we are supposed to write to...
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000447 // FIXME: cout is not binary!
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000448 std::ostream *Out = &std::cout; // Default to printing to stdout...
449 if (OutputFilename != "-") {
450 if (!Force && std::ifstream(OutputFilename.c_str())) {
451 // If force is not specified, make sure not to overwrite a file!
Bill Wendlinge8156192006-12-07 01:30:32 +0000452 cerr << argv[0] << ": error opening '" << OutputFilename
453 << "': file exists!\n"
454 << "Use -f command line argument to force output\n";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000455 return 1;
456 }
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000457 std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
458 std::ios::binary;
459 Out = new std::ofstream(OutputFilename.c_str(), io_mode);
Chris Lattner00950542001-06-06 20:29:01 +0000460
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000461 if (!Out->good()) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000462 cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000463 return 1;
464 }
Chris Lattner76351aa2004-04-02 05:06:57 +0000465
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000466 // Make sure that the Output file gets unlinked from the disk if we get a
467 // SIGINT
468 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
469 }
Chris Lattner00950542001-06-06 20:29:01 +0000470
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000471 // If the output is set to be emitted to standard out, and standard out is a
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000472 // console, print out a warning message and refuse to do it. We don't
473 // impress anyone by spewing tons of binary goo to a terminal.
Gabor Greifa99be512007-07-05 17:07:56 +0000474 if (!Force && !NoOutput && CheckBitcodeOutputToConsole(Out,!Quiet)) {
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000475 NoOutput = true;
476 }
Chris Lattner9c3b55e2003-04-24 19:13:02 +0000477
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000478 // Create a PassManager to hold and optimize the collection of passes we are
479 // about to build...
480 //
481 PassManager Passes;
482
483 // Add an appropriate TargetData instance for this module...
Chris Lattner831b1212006-06-16 18:23:49 +0000484 Passes.add(new TargetData(M.get()));
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000485
Devang Patel2d7551c2008-09-16 22:25:14 +0000486 FunctionPassManager *FPasses = NULL;
487 if (OptLevelO1 || OptLevelO2 || OptLevelO3) {
488 FPasses = new FunctionPassManager(new ExistingModuleProvider(M.get()));
489 FPasses->add(new TargetData(M.get()));
490 }
491
Chris Lattner3dda08a2008-07-13 19:35:21 +0000492 // If the -strip-debug command line option was specified, add it. If
493 // -std-compile-opts was also specified, it will handle StripDebug.
494 if (StripDebug && !StandardCompileOpts)
Reid Spencer74ed9972007-02-02 14:46:29 +0000495 addPass(Passes, createStripSymbolsPass(true));
496
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000497 // Create a new optimization pass for each one specified on the command line
Chris Lattner7f500f72006-08-27 22:07:01 +0000498 for (unsigned i = 0; i < PassList.size(); ++i) {
Duncan Sands56eb1332008-07-13 20:14:38 +0000499 // Check to see if -std-compile-opts was specified before this option. If
Chris Lattner3dda08a2008-07-13 19:35:21 +0000500 // so, handle it.
501 if (StandardCompileOpts &&
502 StandardCompileOpts.getPosition() < PassList.getPosition(i)) {
503 AddStandardCompilePasses(Passes);
504 StandardCompileOpts = false;
505 }
506
Devang Patel2d7551c2008-09-16 22:25:14 +0000507 if (OptLevelO1 && OptLevelO1.getPosition() < PassList.getPosition(i)) {
508 AddOptimizationPasses(Passes, *FPasses, 1);
509 OptLevelO1 = false;
510 }
511
512 if (OptLevelO2 && OptLevelO2.getPosition() < PassList.getPosition(i)) {
513 AddOptimizationPasses(Passes, *FPasses, 2);
514 OptLevelO2 = false;
515 }
516
517 if (OptLevelO3 && OptLevelO3.getPosition() < PassList.getPosition(i)) {
518 AddOptimizationPasses(Passes, *FPasses, 3);
519 OptLevelO3 = false;
520 }
521
Chris Lattner7f500f72006-08-27 22:07:01 +0000522 const PassInfo *PassInf = PassList[i];
523 Pass *P = 0;
524 if (PassInf->getNormalCtor())
525 P = PassInf->getNormalCtor()();
Chris Lattnercd950a52006-12-01 21:59:37 +0000526 else
Bill Wendlinge8156192006-12-07 01:30:32 +0000527 cerr << argv[0] << ": cannot create pass: "
528 << PassInf->getPassName() << "\n";
Chris Lattner7f500f72006-08-27 22:07:01 +0000529 if (P) {
Nuno Lopes641397f2008-11-04 23:03:58 +0000530 bool isBBPass = dynamic_cast<BasicBlockPass*>(P) != 0;
531 bool isLPass = !isBBPass && dynamic_cast<LoopPass*>(P) != 0;
532 bool isFPass = !isLPass && dynamic_cast<FunctionPass*>(P) != 0;
533 bool isCGSCCPass = !isFPass && dynamic_cast<CallGraphSCCPass*>(P) != 0;
534
Reid Spencer74ed9972007-02-02 14:46:29 +0000535 addPass(Passes, P);
Nuno Lopes641397f2008-11-04 23:03:58 +0000536
Chris Lattner7f500f72006-08-27 22:07:01 +0000537 if (AnalyzeOnly) {
Nuno Lopes641397f2008-11-04 23:03:58 +0000538 if (isBBPass)
Chris Lattner7f500f72006-08-27 22:07:01 +0000539 Passes.add(new BasicBlockPassPrinter(PassInf));
Nuno Lopes641397f2008-11-04 23:03:58 +0000540 else if (isLPass)
541 Passes.add(new LoopPassPrinter(PassInf));
542 else if (isFPass)
Chris Lattner7f500f72006-08-27 22:07:01 +0000543 Passes.add(new FunctionPassPrinter(PassInf));
Nuno Lopes641397f2008-11-04 23:03:58 +0000544 else if (isCGSCCPass)
Devang Patel28552da2007-06-28 23:09:25 +0000545 Passes.add(new CallGraphSCCPassPrinter(PassInf));
Chris Lattner7f500f72006-08-27 22:07:01 +0000546 else
547 Passes.add(new ModulePassPrinter(PassInf));
548 }
549 }
550
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000551 if (PrintEachXForm)
Daniel Dunbar3b0da262008-10-22 03:25:22 +0000552 Passes.add(createPrintModulePass(&errs()));
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000553 }
Chris Lattner3dda08a2008-07-13 19:35:21 +0000554
555 // If -std-compile-opts was specified at the end of the pass list, add them.
556 if (StandardCompileOpts) {
557 AddStandardCompilePasses(Passes);
558 StandardCompileOpts = false;
559 }
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000560
Devang Patel2d7551c2008-09-16 22:25:14 +0000561 if (OptLevelO1) {
562 AddOptimizationPasses(Passes, *FPasses, 1);
563 }
564
565 if (OptLevelO2) {
566 AddOptimizationPasses(Passes, *FPasses, 2);
567 }
568
569 if (OptLevelO3) {
570 AddOptimizationPasses(Passes, *FPasses, 3);
571 }
572
573 if (OptLevelO1 || OptLevelO2 || OptLevelO3) {
574 for (Module::iterator I = M.get()->begin(), E = M.get()->end();
575 I != E; ++I)
576 FPasses->run(*I);
577 }
578
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000579 // Check that the module is well formed on completion of optimization
Reid Spencer74ed9972007-02-02 14:46:29 +0000580 if (!NoVerify && !VerifyEach)
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000581 Passes.add(createVerifierPass());
582
Gabor Greifa99be512007-07-05 17:07:56 +0000583 // Write bitcode out to disk or cout as the last step...
Chris Lattner744879e2007-05-06 09:32:02 +0000584 if (!NoOutput && !AnalyzeOnly)
585 Passes.add(CreateBitcodeWriterPass(*Out));
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000586
587 // Now that we have all of the passes ready, run them.
588 Passes.run(*M.get());
589
Chris Lattnerd44ae902007-05-06 19:17:23 +0000590 // Delete the ofstream.
591 if (Out != &std::cout)
592 delete Out;
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000593 return 0;
Reid Spencerfd90dd52006-08-18 06:34:30 +0000594
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000595 } catch (const std::string& msg) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000596 cerr << argv[0] << ": " << msg << "\n";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000597 } catch (...) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000598 cerr << argv[0] << ": Unexpected unknown exception occurred.\n";
Chris Lattnerfb1b3f12002-01-31 00:47:12 +0000599 }
Chris Lattner03315242007-01-31 04:45:28 +0000600 llvm_shutdown();
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000601 return 1;
Chris Lattner00950542001-06-06 20:29:01 +0000602}