blob: 14dd158b906c3e938d07b0a55a978b1bd53b7dbe [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//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source 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"
Chris Lattnerfb1b3f12002-01-31 00:47:12 +000016#include "llvm/PassManager.h"
Chris Lattner00950542001-06-06 20:29:01 +000017#include "llvm/Bytecode/Reader.h"
Chris Lattnerfb1b3f12002-01-31 00:47:12 +000018#include "llvm/Bytecode/WriteBytecodePass.h"
Chris Lattnerffa6f9c2001-10-19 15:39:14 +000019#include "llvm/Assembly/PrintModulePass.h"
Chris Lattner22d26d72002-02-20 17:56:53 +000020#include "llvm/Analysis/Verifier.h"
Devang Patel1bc89362007-03-07 00:26:10 +000021#include "llvm/Analysis/LoopPass.h"
Owen Anderson07000c62006-05-12 06:33:49 +000022#include "llvm/Target/TargetData.h"
Vikram S. Adve18fdfc42002-09-16 16:09:43 +000023#include "llvm/Target/TargetMachine.h"
Chris Lattner2053a2a2002-07-26 21:09:32 +000024#include "llvm/Support/PassNameParser.h"
Chris Lattnerbed85ff2004-05-27 05:41:36 +000025#include "llvm/System/Signals.h"
Chris Lattnerc30598b2006-12-06 01:18:01 +000026#include "llvm/Support/ManagedStatic.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000027#include "llvm/Support/PluginLoader.h"
Bill Wendlinga5b31ca2006-11-28 23:33:06 +000028#include "llvm/Support/Streams.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000029#include "llvm/Support/SystemUtils.h"
Reid Spencerfd90dd52006-08-18 06:34:30 +000030#include "llvm/Support/Timer.h"
Reid Spencer62c51052006-08-21 05:34:03 +000031#include "llvm/LinkAllPasses.h"
Reid Spenceraf303d52006-06-07 23:03:13 +000032#include "llvm/LinkAllVMCore.h"
Bill Wendling68fe61d2006-11-29 00:19:40 +000033#include <iostream>
Chris Lattner73e11d72001-10-18 06:13:08 +000034#include <fstream>
Chris Lattner63202322001-11-26 19:22:39 +000035#include <memory>
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000036#include <algorithm>
Brian Gaeked0fde302003-11-11 22:41:34 +000037using namespace llvm;
Chris Lattner9d6e7eb2002-04-12 18:21:13 +000038
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000039// The OptimizationList is automatically populated with registered Passes by the
40// PassNameParser.
41//
Chris Lattner7f500f72006-08-27 22:07:01 +000042static cl::list<const PassInfo*, bool, PassNameParser>
43PassList(cl::desc("Optimizations available:"));
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000044
Chris Lattner17be6792007-01-21 06:34:18 +000045static cl::opt<bool> NoCompress("disable-compression", cl::init(true),
Chris Lattner5e9b1772006-08-28 17:31:55 +000046 cl::desc("Don't compress the generated bytecode"));
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000047
48// Other command line options...
Chris Lattnerfb1b3f12002-01-31 00:47:12 +000049//
Chris Lattner6c8103f2003-05-22 20:13:16 +000050static cl::opt<std::string>
Reid Spencerfd90dd52006-08-18 06:34:30 +000051InputFilename(cl::Positional, cl::desc("<input bytecode file>"),
52 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",
66 cl::desc("Do not write result bytecode 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>
Chris Lattner3153e4f2004-05-27 20:32:10 +000090Quiet("q", cl::desc("Obsolete option"), cl::Hidden);
Chris Lattner5ff62e92002-07-22 02:10:13 +000091
Reid Spencerec7eb452004-05-27 16:28:54 +000092static cl::alias
93QuietA("quiet", cl::desc("Alias for -q"), cl::aliasopt(Quiet));
94
Reid Spencerfd90dd52006-08-18 06:34:30 +000095static cl::opt<bool>
96AnalyzeOnly("analyze", cl::desc("Only perform analysis, no optimization"));
97
Reid Spencerfd90dd52006-08-18 06:34:30 +000098static Timer BytecodeLoadTimer("Bytecode Loader");
99
100// ---------- Define Printers for module and function passes ------------
101namespace {
102
103struct ModulePassPrinter : public ModulePass {
104 const PassInfo *PassToPrint;
105 ModulePassPrinter(const PassInfo *PI) : PassToPrint(PI) {}
106
107 virtual bool runOnModule(Module &M) {
108 if (!Quiet) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000109 cout << "Printing analysis '" << PassToPrint->getPassName() << "':\n";
110 getAnalysisID<Pass>(PassToPrint).print(cout, &M);
Reid Spencerfd90dd52006-08-18 06:34:30 +0000111 }
112
113 // Get and print pass...
114 return false;
115 }
116
117 virtual const char *getPassName() const { return "'Pass' Printer"; }
118
119 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
120 AU.addRequiredID(PassToPrint);
121 AU.setPreservesAll();
122 }
123};
124
125struct FunctionPassPrinter : public FunctionPass {
126 const PassInfo *PassToPrint;
127 FunctionPassPrinter(const PassInfo *PI) : PassToPrint(PI) {}
128
129 virtual bool runOnFunction(Function &F) {
130 if (!Quiet) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000131 cout << "Printing analysis '" << PassToPrint->getPassName()
132 << "' for function '" << F.getName() << "':\n";
Reid Spencerfd90dd52006-08-18 06:34:30 +0000133 }
134 // Get and print pass...
Bill Wendlinge8156192006-12-07 01:30:32 +0000135 getAnalysisID<Pass>(PassToPrint).print(cout, F.getParent());
Reid Spencerfd90dd52006-08-18 06:34:30 +0000136 return false;
137 }
138
139 virtual const char *getPassName() const { return "FunctionPass Printer"; }
140
141 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
142 AU.addRequiredID(PassToPrint);
143 AU.setPreservesAll();
144 }
145};
146
147struct BasicBlockPassPrinter : public BasicBlockPass {
148 const PassInfo *PassToPrint;
149 BasicBlockPassPrinter(const PassInfo *PI) : PassToPrint(PI) {}
150
151 virtual bool runOnBasicBlock(BasicBlock &BB) {
152 if (!Quiet) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000153 cout << "Printing Analysis info for BasicBlock '" << BB.getName()
154 << "': Pass " << PassToPrint->getPassName() << ":\n";
Reid Spencerfd90dd52006-08-18 06:34:30 +0000155 }
156
157 // Get and print pass...
Bill Wendlinge8156192006-12-07 01:30:32 +0000158 getAnalysisID<Pass>(PassToPrint).print(cout, BB.getParent()->getParent());
Reid Spencerfd90dd52006-08-18 06:34:30 +0000159 return false;
160 }
161
162 virtual const char *getPassName() const { return "BasicBlockPass Printer"; }
163
164 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
165 AU.addRequiredID(PassToPrint);
166 AU.setPreservesAll();
167 }
168};
169
Reid Spencer74ed9972007-02-02 14:46:29 +0000170inline void addPass(PassManager &PM, Pass *P) {
171 // Add the pass to the pass manager...
172 PM.add(P);
173
174 // If we are verifying all of the intermediate steps, add the verifier...
175 if (VerifyEach) PM.add(createVerifierPass());
176}
177
178void AddStandardCompilePasses(PassManager &PM) {
179 PM.add(createVerifierPass()); // Verify that input is correct
180
181 addPass(PM, createLowerSetJmpPass()); // Lower llvm.setjmp/.longjmp
Reid Spencer74ed9972007-02-02 14:46:29 +0000182
183 // If the -strip-debug command line option was specified, do it.
184 if (StripDebug)
185 addPass(PM, createStripSymbolsPass(true));
186
187 if (DisableOptimizations) return;
188
189 addPass(PM, createRaiseAllocationsPass()); // call %malloc -> malloc inst
190 addPass(PM, createCFGSimplificationPass()); // Clean up disgusting code
191 addPass(PM, createPromoteMemoryToRegisterPass());// Kill useless allocas
192 addPass(PM, createGlobalOptimizerPass()); // Optimize out global vars
193 addPass(PM, createGlobalDCEPass()); // Remove unused fns and globs
194 addPass(PM, createIPConstantPropagationPass());// IP Constant Propagation
195 addPass(PM, createDeadArgEliminationPass()); // Dead argument elimination
196 addPass(PM, createInstructionCombiningPass()); // Clean up after IPCP & DAE
197 addPass(PM, createCFGSimplificationPass()); // Clean up after IPCP & DAE
198
199 addPass(PM, createPruneEHPass()); // Remove dead EH info
200
201 if (!DisableInline)
202 addPass(PM, createFunctionInliningPass()); // Inline small functions
203 addPass(PM, createArgumentPromotionPass()); // Scalarize uninlined fn args
204
Reid Spencer74ed9972007-02-02 14:46:29 +0000205 addPass(PM, createTailDuplicationPass()); // Simplify cfg by copying code
206 addPass(PM, createInstructionCombiningPass()); // Cleanup for scalarrepl.
207 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
208 addPass(PM, createScalarReplAggregatesPass()); // Break up aggregate allocas
209 addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
210 addPass(PM, createCondPropagationPass()); // Propagate conditionals
211
212 addPass(PM, createTailCallEliminationPass()); // Eliminate tail calls
213 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
214 addPass(PM, createReassociatePass()); // Reassociate expressions
215 addPass(PM, createLICMPass()); // Hoist loop invariants
216 addPass(PM, createLoopUnswitchPass()); // Unswitch loops.
217 addPass(PM, createInstructionCombiningPass()); // Clean up after LICM/reassoc
218 addPass(PM, createIndVarSimplifyPass()); // Canonicalize indvars
219 addPass(PM, createLoopUnrollPass()); // Unroll small loops
220 addPass(PM, createInstructionCombiningPass()); // Clean up after the unroller
221 addPass(PM, createLoadValueNumberingPass()); // GVN for load instructions
222 addPass(PM, createGCSEPass()); // Remove common subexprs
223 addPass(PM, createSCCPPass()); // Constant prop with SCCP
224
225 // Run instcombine after redundancy elimination to exploit opportunities
226 // opened up by them.
227 addPass(PM, createInstructionCombiningPass());
228 addPass(PM, createCondPropagationPass()); // Propagate conditionals
229
230 addPass(PM, createDeadStoreEliminationPass()); // Delete dead stores
231 addPass(PM, createAggressiveDCEPass()); // SSA based 'Aggressive DCE'
232 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
233 addPass(PM, createSimplifyLibCallsPass()); // Library Call Optimizations
234 addPass(PM, createDeadTypeEliminationPass()); // Eliminate dead types
235 addPass(PM, createConstantMergePass()); // Merge dup global constants
236}
237
Reid Spencerfd90dd52006-08-18 06:34:30 +0000238} // anonymous namespace
239
Chris Lattner0be41012002-02-01 04:54:11 +0000240
Chris Lattnerc0ce68b2002-07-23 18:12:22 +0000241//===----------------------------------------------------------------------===//
242// main for opt
243//
Chris Lattner00950542001-06-06 20:29:01 +0000244int main(int argc, char **argv) {
Chris Lattnerc30598b2006-12-06 01:18:01 +0000245 llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000246 try {
247 cl::ParseCommandLineOptions(argc, argv,
Reid Spencerfd90dd52006-08-18 06:34:30 +0000248 " llvm .bc -> .bc modular optimizer and analysis printer \n");
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000249 sys::PrintStackTraceOnErrorSignal();
Chris Lattnerfb1b3f12002-01-31 00:47:12 +0000250
Chris Lattner7f500f72006-08-27 22:07:01 +0000251 // Allocate a full target machine description only if necessary.
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000252 // FIXME: The choice of target should be controllable on the command line.
253 std::auto_ptr<TargetMachine> target;
Vikram S. Adve18fdfc42002-09-16 16:09:43 +0000254
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000255 std::string ErrorMessage;
Vikram S. Adve18fdfc42002-09-16 16:09:43 +0000256
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000257 // Load the input module...
Chris Lattnerf2e292c2007-02-07 21:41:02 +0000258 std::auto_ptr<Module> M(ParseBytecodeFile(InputFilename,
259 Compressor::decompressToNewBuffer, &ErrorMessage));
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000260 if (M.get() == 0) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000261 cerr << argv[0] << ": ";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000262 if (ErrorMessage.size())
Bill Wendlinge8156192006-12-07 01:30:32 +0000263 cerr << ErrorMessage << "\n";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000264 else
Bill Wendlinge8156192006-12-07 01:30:32 +0000265 cerr << "bytecode didn't read correctly.\n";
Chris Lattner00950542001-06-06 20:29:01 +0000266 return 1;
267 }
Chris Lattner76d12292002-04-18 19:55:25 +0000268
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000269 // Figure out what stream we are supposed to write to...
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000270 // FIXME: cout is not binary!
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000271 std::ostream *Out = &std::cout; // Default to printing to stdout...
272 if (OutputFilename != "-") {
273 if (!Force && std::ifstream(OutputFilename.c_str())) {
274 // If force is not specified, make sure not to overwrite a file!
Bill Wendlinge8156192006-12-07 01:30:32 +0000275 cerr << argv[0] << ": error opening '" << OutputFilename
276 << "': file exists!\n"
277 << "Use -f command line argument to force output\n";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000278 return 1;
279 }
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000280 std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
281 std::ios::binary;
282 Out = new std::ofstream(OutputFilename.c_str(), io_mode);
Chris Lattner00950542001-06-06 20:29:01 +0000283
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000284 if (!Out->good()) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000285 cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000286 return 1;
287 }
Chris Lattner76351aa2004-04-02 05:06:57 +0000288
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000289 // Make sure that the Output file gets unlinked from the disk if we get a
290 // SIGINT
291 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
292 }
Chris Lattner00950542001-06-06 20:29:01 +0000293
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000294 // If the output is set to be emitted to standard out, and standard out is a
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000295 // console, print out a warning message and refuse to do it. We don't
296 // impress anyone by spewing tons of binary goo to a terminal.
Reid Spencer564a5712005-01-05 17:31:55 +0000297 if (!Force && !NoOutput && CheckBytecodeOutputToConsole(Out,!Quiet)) {
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000298 NoOutput = true;
299 }
Chris Lattner9c3b55e2003-04-24 19:13:02 +0000300
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000301 // Create a PassManager to hold and optimize the collection of passes we are
302 // about to build...
303 //
304 PassManager Passes;
305
306 // Add an appropriate TargetData instance for this module...
Chris Lattner831b1212006-06-16 18:23:49 +0000307 Passes.add(new TargetData(M.get()));
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000308
Reid Spencer74ed9972007-02-02 14:46:29 +0000309 // If -std-compile-opts is given, add in all the standard compilation
310 // optimizations first. This will handle -strip-debug, -disable-inline,
311 // and -disable-opt as well.
312 if (StandardCompileOpts)
313 AddStandardCompilePasses(Passes);
314
315 // otherwise if the -strip-debug command line option was specified, add it.
316 else if (StripDebug)
317 addPass(Passes, createStripSymbolsPass(true));
318
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000319 // Create a new optimization pass for each one specified on the command line
Chris Lattner7f500f72006-08-27 22:07:01 +0000320 for (unsigned i = 0; i < PassList.size(); ++i) {
321 const PassInfo *PassInf = PassList[i];
322 Pass *P = 0;
323 if (PassInf->getNormalCtor())
324 P = PassInf->getNormalCtor()();
Chris Lattnercd950a52006-12-01 21:59:37 +0000325 else
Bill Wendlinge8156192006-12-07 01:30:32 +0000326 cerr << argv[0] << ": cannot create pass: "
327 << PassInf->getPassName() << "\n";
Chris Lattner7f500f72006-08-27 22:07:01 +0000328 if (P) {
Reid Spencer74ed9972007-02-02 14:46:29 +0000329 addPass(Passes, P);
Chris Lattner7f500f72006-08-27 22:07:01 +0000330
331 if (AnalyzeOnly) {
Reid Spencer3ed469c2006-11-02 20:25:50 +0000332 if (dynamic_cast<BasicBlockPass*>(P))
Chris Lattner7f500f72006-08-27 22:07:01 +0000333 Passes.add(new BasicBlockPassPrinter(PassInf));
Reid Spencer3ed469c2006-11-02 20:25:50 +0000334 else if (dynamic_cast<FunctionPass*>(P))
Chris Lattner7f500f72006-08-27 22:07:01 +0000335 Passes.add(new FunctionPassPrinter(PassInf));
336 else
337 Passes.add(new ModulePassPrinter(PassInf));
338 }
339 }
340
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000341 if (PrintEachXForm)
Bill Wendlinge8156192006-12-07 01:30:32 +0000342 Passes.add(new PrintModulePass(&cerr));
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000343 }
344
345 // Check that the module is well formed on completion of optimization
Reid Spencer74ed9972007-02-02 14:46:29 +0000346 if (!NoVerify && !VerifyEach)
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000347 Passes.add(createVerifierPass());
348
349 // Write bytecode out to disk or cout as the last step...
Bill Wendlinge8156192006-12-07 01:30:32 +0000350 OStream L(*Out);
Nick Lewycky5cbc63e2006-12-01 00:43:14 +0000351 if (!NoOutput && !AnalyzeOnly)
352 Passes.add(new WriteBytecodePass(&L, false, !NoCompress));
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000353
354 // Now that we have all of the passes ready, run them.
355 Passes.run(*M.get());
356
357 return 0;
Reid Spencerfd90dd52006-08-18 06:34:30 +0000358
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000359 } catch (const std::string& msg) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000360 cerr << argv[0] << ": " << msg << "\n";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000361 } catch (...) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000362 cerr << argv[0] << ": Unexpected unknown exception occurred.\n";
Chris Lattnerfb1b3f12002-01-31 00:47:12 +0000363 }
Chris Lattner03315242007-01-31 04:45:28 +0000364 llvm_shutdown();
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000365 return 1;
Chris Lattner00950542001-06-06 20:29:01 +0000366}