blob: 4394c98917a50f07f7516222cc45117ca2a14b98 [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"
26#include "llvm/Support/SystemUtils.h"
Reid Spencerfd90dd52006-08-18 06:34:30 +000027#include "llvm/Support/Timer.h"
Reid Spencer62c51052006-08-21 05:34:03 +000028#include "llvm/LinkAllPasses.h"
Reid Spenceraf303d52006-06-07 23:03:13 +000029#include "llvm/LinkAllVMCore.h"
Chris Lattner73e11d72001-10-18 06:13:08 +000030#include <fstream>
Chris Lattner63202322001-11-26 19:22:39 +000031#include <memory>
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000032#include <algorithm>
Anand Shukla63aaa112002-06-25 21:43:28 +000033
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
42
43// Other command line options...
Chris Lattnerfb1b3f12002-01-31 00:47:12 +000044//
Chris Lattner6c8103f2003-05-22 20:13:16 +000045static cl::opt<std::string>
Reid Spencerfd90dd52006-08-18 06:34:30 +000046InputFilename(cl::Positional, cl::desc("<input bytecode file>"),
47 cl::init("-"), cl::value_desc("filename"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000048
Chris Lattner6c8103f2003-05-22 20:13:16 +000049static cl::opt<std::string>
Chris Lattner5ff62e92002-07-22 02:10:13 +000050OutputFilename("o", cl::desc("Override output filename"),
Chris Lattnerb592fc22003-12-10 14:41:33 +000051 cl::value_desc("filename"), cl::init("-"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000052
53static cl::opt<bool>
54Force("f", cl::desc("Overwrite output files"));
55
56static cl::opt<bool>
57PrintEachXForm("p", cl::desc("Print module after each transformation"));
58
59static cl::opt<bool>
Chris Lattnerddd5b412003-02-26 20:00:41 +000060NoOutput("disable-output",
61 cl::desc("Do not write result bytecode file"), cl::Hidden);
Chris Lattnerd70b68e2003-02-12 18:43:33 +000062
63static cl::opt<bool>
Chris Lattnerddd5b412003-02-26 20:00:41 +000064NoVerify("disable-verify", cl::desc("Do not verify result module"), cl::Hidden);
Chris Lattnerf3bafc12003-02-12 18:45:08 +000065
66static cl::opt<bool>
Chris Lattner3153e4f2004-05-27 20:32:10 +000067Quiet("q", cl::desc("Obsolete option"), cl::Hidden);
Chris Lattner5ff62e92002-07-22 02:10:13 +000068
Reid Spencerec7eb452004-05-27 16:28:54 +000069static cl::alias
70QuietA("quiet", cl::desc("Alias for -q"), cl::aliasopt(Quiet));
71
Reid Spencerfd90dd52006-08-18 06:34:30 +000072static cl::opt<bool>
73AnalyzeOnly("analyze", cl::desc("Only perform analysis, no optimization"));
74
Reid Spencerfd90dd52006-08-18 06:34:30 +000075static Timer BytecodeLoadTimer("Bytecode Loader");
76
77// ---------- Define Printers for module and function passes ------------
78namespace {
79
80struct ModulePassPrinter : public ModulePass {
81 const PassInfo *PassToPrint;
82 ModulePassPrinter(const PassInfo *PI) : PassToPrint(PI) {}
83
84 virtual bool runOnModule(Module &M) {
85 if (!Quiet) {
86 std::cout << "Printing analysis '" << PassToPrint->getPassName()
87 << "':\n";
88 getAnalysisID<Pass>(PassToPrint).print(std::cout, &M);
89 }
90
91 // Get and print pass...
92 return false;
93 }
94
95 virtual const char *getPassName() const { return "'Pass' Printer"; }
96
97 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
98 AU.addRequiredID(PassToPrint);
99 AU.setPreservesAll();
100 }
101};
102
103struct FunctionPassPrinter : public FunctionPass {
104 const PassInfo *PassToPrint;
105 FunctionPassPrinter(const PassInfo *PI) : PassToPrint(PI) {}
106
107 virtual bool runOnFunction(Function &F) {
108 if (!Quiet) {
109 std::cout << "Printing analysis '" << PassToPrint->getPassName()
110 << "' for function '" << F.getName() << "':\n";
111 }
112 // Get and print pass...
113 getAnalysisID<Pass>(PassToPrint).print(std::cout, F.getParent());
114 return false;
115 }
116
117 virtual const char *getPassName() const { return "FunctionPass Printer"; }
118
119 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
120 AU.addRequiredID(PassToPrint);
121 AU.setPreservesAll();
122 }
123};
124
125struct BasicBlockPassPrinter : public BasicBlockPass {
126 const PassInfo *PassToPrint;
127 BasicBlockPassPrinter(const PassInfo *PI) : PassToPrint(PI) {}
128
129 virtual bool runOnBasicBlock(BasicBlock &BB) {
130 if (!Quiet) {
131 std::cout << "Printing Analysis info for BasicBlock '" << BB.getName()
132 << "': Pass " << PassToPrint->getPassName() << ":\n";
133 }
134
135 // Get and print pass...
136 getAnalysisID<Pass>(PassToPrint).print(
137 std::cout, BB.getParent()->getParent());
138 return false;
139 }
140
141 virtual const char *getPassName() const { return "BasicBlockPass Printer"; }
142
143 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
144 AU.addRequiredID(PassToPrint);
145 AU.setPreservesAll();
146 }
147};
148
149} // anonymous namespace
150
Chris Lattner0be41012002-02-01 04:54:11 +0000151
Chris Lattnerc0ce68b2002-07-23 18:12:22 +0000152//===----------------------------------------------------------------------===//
153// main for opt
154//
Chris Lattner00950542001-06-06 20:29:01 +0000155int main(int argc, char **argv) {
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000156 try {
157 cl::ParseCommandLineOptions(argc, argv,
Reid Spencerfd90dd52006-08-18 06:34:30 +0000158 " llvm .bc -> .bc modular optimizer and analysis printer \n");
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000159 sys::PrintStackTraceOnErrorSignal();
Chris Lattnerfb1b3f12002-01-31 00:47:12 +0000160
Chris Lattner7f500f72006-08-27 22:07:01 +0000161 // Allocate a full target machine description only if necessary.
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000162 // FIXME: The choice of target should be controllable on the command line.
163 std::auto_ptr<TargetMachine> target;
Vikram S. Adve18fdfc42002-09-16 16:09:43 +0000164
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000165 TargetMachine* TM = NULL;
166 std::string ErrorMessage;
Vikram S. Adve18fdfc42002-09-16 16:09:43 +0000167
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000168 // Load the input module...
169 std::auto_ptr<Module> M(ParseBytecodeFile(InputFilename, &ErrorMessage));
170 if (M.get() == 0) {
171 std::cerr << argv[0] << ": ";
172 if (ErrorMessage.size())
173 std::cerr << ErrorMessage << "\n";
174 else
175 std::cerr << "bytecode didn't read correctly.\n";
Chris Lattner00950542001-06-06 20:29:01 +0000176 return 1;
177 }
Chris Lattner76d12292002-04-18 19:55:25 +0000178
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000179 // Figure out what stream we are supposed to write to...
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000180 // FIXME: cout is not binary!
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000181 std::ostream *Out = &std::cout; // Default to printing to stdout...
182 if (OutputFilename != "-") {
183 if (!Force && std::ifstream(OutputFilename.c_str())) {
184 // If force is not specified, make sure not to overwrite a file!
185 std::cerr << argv[0] << ": error opening '" << OutputFilename
186 << "': file exists!\n"
187 << "Use -f command line argument to force output\n";
188 return 1;
189 }
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000190 std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
191 std::ios::binary;
192 Out = new std::ofstream(OutputFilename.c_str(), io_mode);
Chris Lattner00950542001-06-06 20:29:01 +0000193
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000194 if (!Out->good()) {
195 std::cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
196 return 1;
197 }
Chris Lattner76351aa2004-04-02 05:06:57 +0000198
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000199 // Make sure that the Output file gets unlinked from the disk if we get a
200 // SIGINT
201 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
202 }
Chris Lattner00950542001-06-06 20:29:01 +0000203
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000204 // If the output is set to be emitted to standard out, and standard out is a
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000205 // console, print out a warning message and refuse to do it. We don't
206 // impress anyone by spewing tons of binary goo to a terminal.
Reid Spencer564a5712005-01-05 17:31:55 +0000207 if (!Force && !NoOutput && CheckBytecodeOutputToConsole(Out,!Quiet)) {
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000208 NoOutput = true;
209 }
Chris Lattner9c3b55e2003-04-24 19:13:02 +0000210
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000211 // Create a PassManager to hold and optimize the collection of passes we are
212 // about to build...
213 //
214 PassManager Passes;
215
216 // Add an appropriate TargetData instance for this module...
Chris Lattner831b1212006-06-16 18:23:49 +0000217 Passes.add(new TargetData(M.get()));
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000218
219 // Create a new optimization pass for each one specified on the command line
Chris Lattner7f500f72006-08-27 22:07:01 +0000220 for (unsigned i = 0; i < PassList.size(); ++i) {
221 const PassInfo *PassInf = PassList[i];
222 Pass *P = 0;
223 if (PassInf->getNormalCtor())
224 P = PassInf->getNormalCtor()();
225 else if (PassInf->getTargetCtor()) {
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000226 assert(target.get() && "Could not allocate target machine!");
Chris Lattner7f500f72006-08-27 22:07:01 +0000227 P = PassInf->getTargetCtor()(*target.get());
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000228 } else
Chris Lattner7f500f72006-08-27 22:07:01 +0000229 std::cerr << argv[0] << ": cannot create pass: "
230 << PassInf->getPassName() << "\n";
231 if (P) {
232 Passes.add(P);
233
234 if (AnalyzeOnly) {
235 if (BasicBlockPass *BBP = dynamic_cast<BasicBlockPass*>(P))
236 Passes.add(new BasicBlockPassPrinter(PassInf));
237 else if (FunctionPass *FP = dynamic_cast<FunctionPass*>(P))
238 Passes.add(new FunctionPassPrinter(PassInf));
239 else
240 Passes.add(new ModulePassPrinter(PassInf));
241 }
242 }
243
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000244 if (PrintEachXForm)
245 Passes.add(new PrintModulePass(&std::cerr));
246 }
247
248 // Check that the module is well formed on completion of optimization
249 if (!NoVerify)
250 Passes.add(createVerifierPass());
251
252 // Write bytecode out to disk or cout as the last step...
253 if (!NoOutput)
254 Passes.add(new WriteBytecodePass(Out, Out != &std::cout));
255
256 // Now that we have all of the passes ready, run them.
257 Passes.run(*M.get());
258
259 return 0;
Reid Spencerfd90dd52006-08-18 06:34:30 +0000260
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000261 } catch (const std::string& msg) {
262 std::cerr << argv[0] << ": " << msg << "\n";
263 } catch (...) {
264 std::cerr << argv[0] << ": Unexpected unknown exception occurred.\n";
Chris Lattnerfb1b3f12002-01-31 00:47:12 +0000265 }
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000266 return 1;
Chris Lattner00950542001-06-06 20:29:01 +0000267}