blob: 502118e65885707a94070a41737cd647b4d46986 [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"
Owen Anderson07000c62006-05-12 06:33:49 +000021#include "llvm/Target/TargetData.h"
Vikram S. Adve18fdfc42002-09-16 16:09:43 +000022#include "llvm/Target/TargetMachine.h"
Chris Lattner2053a2a2002-07-26 21:09:32 +000023#include "llvm/Support/PassNameParser.h"
Chris Lattnerbed85ff2004-05-27 05:41:36 +000024#include "llvm/System/Signals.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000025#include "llvm/Support/PluginLoader.h"
Bill Wendlinga5b31ca2006-11-28 23:33:06 +000026#include "llvm/Support/Streams.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000027#include "llvm/Support/SystemUtils.h"
Reid Spencerfd90dd52006-08-18 06:34:30 +000028#include "llvm/Support/Timer.h"
Reid Spencer62c51052006-08-21 05:34:03 +000029#include "llvm/LinkAllPasses.h"
Reid Spenceraf303d52006-06-07 23:03:13 +000030#include "llvm/LinkAllVMCore.h"
Chris Lattner73e11d72001-10-18 06:13:08 +000031#include <fstream>
Chris Lattner63202322001-11-26 19:22:39 +000032#include <memory>
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000033#include <algorithm>
Brian Gaeked0fde302003-11-11 22:41:34 +000034using namespace llvm;
Chris Lattner9d6e7eb2002-04-12 18:21:13 +000035
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000036// The OptimizationList is automatically populated with registered Passes by the
37// PassNameParser.
38//
Chris Lattner7f500f72006-08-27 22:07:01 +000039static cl::list<const PassInfo*, bool, PassNameParser>
40PassList(cl::desc("Optimizations available:"));
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000041
Chris Lattner5e9b1772006-08-28 17:31:55 +000042static cl::opt<bool> NoCompress("disable-compression", cl::init(false),
43 cl::desc("Don't compress the generated bytecode"));
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000044
45// Other command line options...
Chris Lattnerfb1b3f12002-01-31 00:47:12 +000046//
Chris Lattner6c8103f2003-05-22 20:13:16 +000047static cl::opt<std::string>
Reid Spencerfd90dd52006-08-18 06:34:30 +000048InputFilename(cl::Positional, cl::desc("<input bytecode file>"),
49 cl::init("-"), cl::value_desc("filename"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000050
Chris Lattner6c8103f2003-05-22 20:13:16 +000051static cl::opt<std::string>
Chris Lattner5ff62e92002-07-22 02:10:13 +000052OutputFilename("o", cl::desc("Override output filename"),
Chris Lattnerb592fc22003-12-10 14:41:33 +000053 cl::value_desc("filename"), cl::init("-"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000054
55static cl::opt<bool>
56Force("f", cl::desc("Overwrite output files"));
57
58static cl::opt<bool>
59PrintEachXForm("p", cl::desc("Print module after each transformation"));
60
61static cl::opt<bool>
Chris Lattnerddd5b412003-02-26 20:00:41 +000062NoOutput("disable-output",
63 cl::desc("Do not write result bytecode file"), cl::Hidden);
Chris Lattnerd70b68e2003-02-12 18:43:33 +000064
65static cl::opt<bool>
Chris Lattnerddd5b412003-02-26 20:00:41 +000066NoVerify("disable-verify", cl::desc("Do not verify result module"), cl::Hidden);
Chris Lattnerf3bafc12003-02-12 18:45:08 +000067
68static cl::opt<bool>
Chris Lattner3153e4f2004-05-27 20:32:10 +000069Quiet("q", cl::desc("Obsolete option"), cl::Hidden);
Chris Lattner5ff62e92002-07-22 02:10:13 +000070
Reid Spencerec7eb452004-05-27 16:28:54 +000071static cl::alias
72QuietA("quiet", cl::desc("Alias for -q"), cl::aliasopt(Quiet));
73
Reid Spencerfd90dd52006-08-18 06:34:30 +000074static cl::opt<bool>
75AnalyzeOnly("analyze", cl::desc("Only perform analysis, no optimization"));
76
Reid Spencerfd90dd52006-08-18 06:34:30 +000077static Timer BytecodeLoadTimer("Bytecode Loader");
78
79// ---------- Define Printers for module and function passes ------------
80namespace {
81
82struct ModulePassPrinter : public ModulePass {
83 const PassInfo *PassToPrint;
84 ModulePassPrinter(const PassInfo *PI) : PassToPrint(PI) {}
85
86 virtual bool runOnModule(Module &M) {
87 if (!Quiet) {
Bill Wendlinga5b31ca2006-11-28 23:33:06 +000088 llvm_cout << "Printing analysis '" << PassToPrint->getPassName()
Reid Spencerfd90dd52006-08-18 06:34:30 +000089 << "':\n";
Bill Wendlinga5b31ca2006-11-28 23:33:06 +000090 getAnalysisID<Pass>(PassToPrint).print(llvm_cout, &M);
Reid Spencerfd90dd52006-08-18 06:34:30 +000091 }
92
93 // Get and print pass...
94 return false;
95 }
96
97 virtual const char *getPassName() const { return "'Pass' Printer"; }
98
99 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
100 AU.addRequiredID(PassToPrint);
101 AU.setPreservesAll();
102 }
103};
104
105struct FunctionPassPrinter : public FunctionPass {
106 const PassInfo *PassToPrint;
107 FunctionPassPrinter(const PassInfo *PI) : PassToPrint(PI) {}
108
109 virtual bool runOnFunction(Function &F) {
110 if (!Quiet) {
Bill Wendlinga5b31ca2006-11-28 23:33:06 +0000111 llvm_cout << "Printing analysis '" << PassToPrint->getPassName()
Reid Spencerfd90dd52006-08-18 06:34:30 +0000112 << "' for function '" << F.getName() << "':\n";
113 }
114 // Get and print pass...
Bill Wendlinga5b31ca2006-11-28 23:33:06 +0000115 getAnalysisID<Pass>(PassToPrint).print(llvm_cout, F.getParent());
Reid Spencerfd90dd52006-08-18 06:34:30 +0000116 return false;
117 }
118
119 virtual const char *getPassName() const { return "FunctionPass Printer"; }
120
121 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
122 AU.addRequiredID(PassToPrint);
123 AU.setPreservesAll();
124 }
125};
126
127struct BasicBlockPassPrinter : public BasicBlockPass {
128 const PassInfo *PassToPrint;
129 BasicBlockPassPrinter(const PassInfo *PI) : PassToPrint(PI) {}
130
131 virtual bool runOnBasicBlock(BasicBlock &BB) {
132 if (!Quiet) {
Bill Wendlinga5b31ca2006-11-28 23:33:06 +0000133 llvm_cout << "Printing Analysis info for BasicBlock '" << BB.getName()
Reid Spencerfd90dd52006-08-18 06:34:30 +0000134 << "': Pass " << PassToPrint->getPassName() << ":\n";
135 }
136
137 // Get and print pass...
138 getAnalysisID<Pass>(PassToPrint).print(
Bill Wendlinga5b31ca2006-11-28 23:33:06 +0000139 llvm_cout, BB.getParent()->getParent());
Reid Spencerfd90dd52006-08-18 06:34:30 +0000140 return false;
141 }
142
143 virtual const char *getPassName() const { return "BasicBlockPass Printer"; }
144
145 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
146 AU.addRequiredID(PassToPrint);
147 AU.setPreservesAll();
148 }
149};
150
151} // anonymous namespace
152
Chris Lattner0be41012002-02-01 04:54:11 +0000153
Chris Lattnerc0ce68b2002-07-23 18:12:22 +0000154//===----------------------------------------------------------------------===//
155// main for opt
156//
Chris Lattner00950542001-06-06 20:29:01 +0000157int main(int argc, char **argv) {
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000158 try {
159 cl::ParseCommandLineOptions(argc, argv,
Reid Spencerfd90dd52006-08-18 06:34:30 +0000160 " llvm .bc -> .bc modular optimizer and analysis printer \n");
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000161 sys::PrintStackTraceOnErrorSignal();
Chris Lattnerfb1b3f12002-01-31 00:47:12 +0000162
Chris Lattner7f500f72006-08-27 22:07:01 +0000163 // Allocate a full target machine description only if necessary.
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000164 // FIXME: The choice of target should be controllable on the command line.
165 std::auto_ptr<TargetMachine> target;
Vikram S. Adve18fdfc42002-09-16 16:09:43 +0000166
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000167 std::string ErrorMessage;
Vikram S. Adve18fdfc42002-09-16 16:09:43 +0000168
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000169 // Load the input module...
170 std::auto_ptr<Module> M(ParseBytecodeFile(InputFilename, &ErrorMessage));
171 if (M.get() == 0) {
Bill Wendlinga5b31ca2006-11-28 23:33:06 +0000172 llvm_cerr << argv[0] << ": ";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000173 if (ErrorMessage.size())
Bill Wendlinga5b31ca2006-11-28 23:33:06 +0000174 llvm_cerr << ErrorMessage << "\n";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000175 else
Bill Wendlinga5b31ca2006-11-28 23:33:06 +0000176 llvm_cerr << "bytecode didn't read correctly.\n";
Chris Lattner00950542001-06-06 20:29:01 +0000177 return 1;
178 }
Chris Lattner76d12292002-04-18 19:55:25 +0000179
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000180 // Figure out what stream we are supposed to write to...
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000181 // FIXME: cout is not binary!
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000182 std::ostream *Out = &std::cout; // Default to printing to stdout...
183 if (OutputFilename != "-") {
184 if (!Force && std::ifstream(OutputFilename.c_str())) {
185 // If force is not specified, make sure not to overwrite a file!
Bill Wendlinga5b31ca2006-11-28 23:33:06 +0000186 llvm_cerr << argv[0] << ": error opening '" << OutputFilename
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000187 << "': file exists!\n"
188 << "Use -f command line argument to force output\n";
189 return 1;
190 }
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000191 std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
192 std::ios::binary;
193 Out = new std::ofstream(OutputFilename.c_str(), io_mode);
Chris Lattner00950542001-06-06 20:29:01 +0000194
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000195 if (!Out->good()) {
Bill Wendlinga5b31ca2006-11-28 23:33:06 +0000196 llvm_cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000197 return 1;
198 }
Chris Lattner76351aa2004-04-02 05:06:57 +0000199
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000200 // Make sure that the Output file gets unlinked from the disk if we get a
201 // SIGINT
202 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
203 }
Chris Lattner00950542001-06-06 20:29:01 +0000204
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000205 // If the output is set to be emitted to standard out, and standard out is a
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000206 // console, print out a warning message and refuse to do it. We don't
207 // impress anyone by spewing tons of binary goo to a terminal.
Reid Spencer564a5712005-01-05 17:31:55 +0000208 if (!Force && !NoOutput && CheckBytecodeOutputToConsole(Out,!Quiet)) {
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000209 NoOutput = true;
210 }
Chris Lattner9c3b55e2003-04-24 19:13:02 +0000211
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000212 // Create a PassManager to hold and optimize the collection of passes we are
213 // about to build...
214 //
215 PassManager Passes;
216
217 // Add an appropriate TargetData instance for this module...
Chris Lattner831b1212006-06-16 18:23:49 +0000218 Passes.add(new TargetData(M.get()));
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000219
220 // Create a new optimization pass for each one specified on the command line
Chris Lattner7f500f72006-08-27 22:07:01 +0000221 for (unsigned i = 0; i < PassList.size(); ++i) {
222 const PassInfo *PassInf = PassList[i];
223 Pass *P = 0;
224 if (PassInf->getNormalCtor())
225 P = PassInf->getNormalCtor()();
226 else if (PassInf->getTargetCtor()) {
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000227 assert(target.get() && "Could not allocate target machine!");
Chris Lattner7f500f72006-08-27 22:07:01 +0000228 P = PassInf->getTargetCtor()(*target.get());
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000229 } else
Bill Wendlinga5b31ca2006-11-28 23:33:06 +0000230 llvm_cerr << argv[0] << ": cannot create pass: "
Chris Lattner7f500f72006-08-27 22:07:01 +0000231 << PassInf->getPassName() << "\n";
232 if (P) {
233 Passes.add(P);
234
235 if (AnalyzeOnly) {
Reid Spencer3ed469c2006-11-02 20:25:50 +0000236 if (dynamic_cast<BasicBlockPass*>(P))
Chris Lattner7f500f72006-08-27 22:07:01 +0000237 Passes.add(new BasicBlockPassPrinter(PassInf));
Reid Spencer3ed469c2006-11-02 20:25:50 +0000238 else if (dynamic_cast<FunctionPass*>(P))
Chris Lattner7f500f72006-08-27 22:07:01 +0000239 Passes.add(new FunctionPassPrinter(PassInf));
240 else
241 Passes.add(new ModulePassPrinter(PassInf));
242 }
243 }
244
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000245 if (PrintEachXForm)
Bill Wendlinga5b31ca2006-11-28 23:33:06 +0000246 Passes.add(new PrintModulePass(&llvm_cerr));
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000247 }
248
249 // Check that the module is well formed on completion of optimization
250 if (!NoVerify)
251 Passes.add(createVerifierPass());
252
253 // Write bytecode out to disk or cout as the last step...
Chris Lattner3b2493e2006-08-27 22:40:26 +0000254 if (!NoOutput && !AnalyzeOnly)
Chris Lattner5e9b1772006-08-28 17:31:55 +0000255 Passes.add(new WriteBytecodePass(Out, Out != &std::cout, !NoCompress));
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000256
257 // Now that we have all of the passes ready, run them.
258 Passes.run(*M.get());
259
260 return 0;
Reid Spencerfd90dd52006-08-18 06:34:30 +0000261
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000262 } catch (const std::string& msg) {
Bill Wendlinga5b31ca2006-11-28 23:33:06 +0000263 llvm_cerr << argv[0] << ": " << msg << "\n";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000264 } catch (...) {
Bill Wendlinga5b31ca2006-11-28 23:33:06 +0000265 llvm_cerr << argv[0] << ": Unexpected unknown exception occurred.\n";
Chris Lattnerfb1b3f12002-01-31 00:47:12 +0000266 }
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000267 return 1;
Chris Lattner00950542001-06-06 20:29:01 +0000268}