blob: 5c61549d75eb57c9b3bddcaec6d402fe870e8047 [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>
Brian Gaeked0fde302003-11-11 22:41:34 +000033using namespace llvm;
Chris Lattner9d6e7eb2002-04-12 18:21:13 +000034
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000035// The OptimizationList is automatically populated with registered Passes by the
36// PassNameParser.
37//
Chris Lattner7f500f72006-08-27 22:07:01 +000038static cl::list<const PassInfo*, bool, PassNameParser>
39PassList(cl::desc("Optimizations available:"));
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000040
41
42// Other command line options...
Chris Lattnerfb1b3f12002-01-31 00:47:12 +000043//
Chris Lattner6c8103f2003-05-22 20:13:16 +000044static cl::opt<std::string>
Reid Spencerfd90dd52006-08-18 06:34:30 +000045InputFilename(cl::Positional, cl::desc("<input bytecode file>"),
46 cl::init("-"), cl::value_desc("filename"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000047
Chris Lattner6c8103f2003-05-22 20:13:16 +000048static cl::opt<std::string>
Chris Lattner5ff62e92002-07-22 02:10:13 +000049OutputFilename("o", cl::desc("Override output filename"),
Chris Lattnerb592fc22003-12-10 14:41:33 +000050 cl::value_desc("filename"), cl::init("-"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000051
52static cl::opt<bool>
53Force("f", cl::desc("Overwrite output files"));
54
55static cl::opt<bool>
56PrintEachXForm("p", cl::desc("Print module after each transformation"));
57
58static cl::opt<bool>
Chris Lattnerddd5b412003-02-26 20:00:41 +000059NoOutput("disable-output",
60 cl::desc("Do not write result bytecode file"), cl::Hidden);
Chris Lattnerd70b68e2003-02-12 18:43:33 +000061
62static cl::opt<bool>
Chris Lattnerddd5b412003-02-26 20:00:41 +000063NoVerify("disable-verify", cl::desc("Do not verify result module"), cl::Hidden);
Chris Lattnerf3bafc12003-02-12 18:45:08 +000064
65static cl::opt<bool>
Chris Lattner3153e4f2004-05-27 20:32:10 +000066Quiet("q", cl::desc("Obsolete option"), cl::Hidden);
Chris Lattner5ff62e92002-07-22 02:10:13 +000067
Reid Spencerec7eb452004-05-27 16:28:54 +000068static cl::alias
69QuietA("quiet", cl::desc("Alias for -q"), cl::aliasopt(Quiet));
70
Reid Spencerfd90dd52006-08-18 06:34:30 +000071static cl::opt<bool>
72AnalyzeOnly("analyze", cl::desc("Only perform analysis, no optimization"));
73
Reid Spencerfd90dd52006-08-18 06:34:30 +000074static Timer BytecodeLoadTimer("Bytecode Loader");
75
76// ---------- Define Printers for module and function passes ------------
77namespace {
78
79struct ModulePassPrinter : public ModulePass {
80 const PassInfo *PassToPrint;
81 ModulePassPrinter(const PassInfo *PI) : PassToPrint(PI) {}
82
83 virtual bool runOnModule(Module &M) {
84 if (!Quiet) {
85 std::cout << "Printing analysis '" << PassToPrint->getPassName()
86 << "':\n";
87 getAnalysisID<Pass>(PassToPrint).print(std::cout, &M);
88 }
89
90 // Get and print pass...
91 return false;
92 }
93
94 virtual const char *getPassName() const { return "'Pass' Printer"; }
95
96 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
97 AU.addRequiredID(PassToPrint);
98 AU.setPreservesAll();
99 }
100};
101
102struct FunctionPassPrinter : public FunctionPass {
103 const PassInfo *PassToPrint;
104 FunctionPassPrinter(const PassInfo *PI) : PassToPrint(PI) {}
105
106 virtual bool runOnFunction(Function &F) {
107 if (!Quiet) {
108 std::cout << "Printing analysis '" << PassToPrint->getPassName()
109 << "' for function '" << F.getName() << "':\n";
110 }
111 // Get and print pass...
112 getAnalysisID<Pass>(PassToPrint).print(std::cout, F.getParent());
113 return false;
114 }
115
116 virtual const char *getPassName() const { return "FunctionPass Printer"; }
117
118 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
119 AU.addRequiredID(PassToPrint);
120 AU.setPreservesAll();
121 }
122};
123
124struct BasicBlockPassPrinter : public BasicBlockPass {
125 const PassInfo *PassToPrint;
126 BasicBlockPassPrinter(const PassInfo *PI) : PassToPrint(PI) {}
127
128 virtual bool runOnBasicBlock(BasicBlock &BB) {
129 if (!Quiet) {
130 std::cout << "Printing Analysis info for BasicBlock '" << BB.getName()
131 << "': Pass " << PassToPrint->getPassName() << ":\n";
132 }
133
134 // Get and print pass...
135 getAnalysisID<Pass>(PassToPrint).print(
136 std::cout, BB.getParent()->getParent());
137 return false;
138 }
139
140 virtual const char *getPassName() const { return "BasicBlockPass Printer"; }
141
142 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
143 AU.addRequiredID(PassToPrint);
144 AU.setPreservesAll();
145 }
146};
147
148} // anonymous namespace
149
Chris Lattner0be41012002-02-01 04:54:11 +0000150
Chris Lattnerc0ce68b2002-07-23 18:12:22 +0000151//===----------------------------------------------------------------------===//
152// main for opt
153//
Chris Lattner00950542001-06-06 20:29:01 +0000154int main(int argc, char **argv) {
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000155 try {
156 cl::ParseCommandLineOptions(argc, argv,
Reid Spencerfd90dd52006-08-18 06:34:30 +0000157 " llvm .bc -> .bc modular optimizer and analysis printer \n");
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000158 sys::PrintStackTraceOnErrorSignal();
Chris Lattnerfb1b3f12002-01-31 00:47:12 +0000159
Chris Lattner7f500f72006-08-27 22:07:01 +0000160 // Allocate a full target machine description only if necessary.
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000161 // FIXME: The choice of target should be controllable on the command line.
162 std::auto_ptr<TargetMachine> target;
Vikram S. Adve18fdfc42002-09-16 16:09:43 +0000163
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000164 TargetMachine* TM = NULL;
165 std::string ErrorMessage;
Vikram S. Adve18fdfc42002-09-16 16:09:43 +0000166
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000167 // Load the input module...
168 std::auto_ptr<Module> M(ParseBytecodeFile(InputFilename, &ErrorMessage));
169 if (M.get() == 0) {
170 std::cerr << argv[0] << ": ";
171 if (ErrorMessage.size())
172 std::cerr << ErrorMessage << "\n";
173 else
174 std::cerr << "bytecode didn't read correctly.\n";
Chris Lattner00950542001-06-06 20:29:01 +0000175 return 1;
176 }
Chris Lattner76d12292002-04-18 19:55:25 +0000177
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000178 // Figure out what stream we are supposed to write to...
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000179 // FIXME: cout is not binary!
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000180 std::ostream *Out = &std::cout; // Default to printing to stdout...
181 if (OutputFilename != "-") {
182 if (!Force && std::ifstream(OutputFilename.c_str())) {
183 // If force is not specified, make sure not to overwrite a file!
184 std::cerr << argv[0] << ": error opening '" << OutputFilename
185 << "': file exists!\n"
186 << "Use -f command line argument to force output\n";
187 return 1;
188 }
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000189 std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
190 std::ios::binary;
191 Out = new std::ofstream(OutputFilename.c_str(), io_mode);
Chris Lattner00950542001-06-06 20:29:01 +0000192
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000193 if (!Out->good()) {
194 std::cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
195 return 1;
196 }
Chris Lattner76351aa2004-04-02 05:06:57 +0000197
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000198 // Make sure that the Output file gets unlinked from the disk if we get a
199 // SIGINT
200 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
201 }
Chris Lattner00950542001-06-06 20:29:01 +0000202
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000203 // If the output is set to be emitted to standard out, and standard out is a
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000204 // console, print out a warning message and refuse to do it. We don't
205 // impress anyone by spewing tons of binary goo to a terminal.
Reid Spencer564a5712005-01-05 17:31:55 +0000206 if (!Force && !NoOutput && CheckBytecodeOutputToConsole(Out,!Quiet)) {
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000207 NoOutput = true;
208 }
Chris Lattner9c3b55e2003-04-24 19:13:02 +0000209
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000210 // Create a PassManager to hold and optimize the collection of passes we are
211 // about to build...
212 //
213 PassManager Passes;
214
215 // Add an appropriate TargetData instance for this module...
Chris Lattner831b1212006-06-16 18:23:49 +0000216 Passes.add(new TargetData(M.get()));
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000217
218 // Create a new optimization pass for each one specified on the command line
Chris Lattner7f500f72006-08-27 22:07:01 +0000219 for (unsigned i = 0; i < PassList.size(); ++i) {
220 const PassInfo *PassInf = PassList[i];
221 Pass *P = 0;
222 if (PassInf->getNormalCtor())
223 P = PassInf->getNormalCtor()();
224 else if (PassInf->getTargetCtor()) {
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000225 assert(target.get() && "Could not allocate target machine!");
Chris Lattner7f500f72006-08-27 22:07:01 +0000226 P = PassInf->getTargetCtor()(*target.get());
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000227 } else
Chris Lattner7f500f72006-08-27 22:07:01 +0000228 std::cerr << argv[0] << ": cannot create pass: "
229 << PassInf->getPassName() << "\n";
230 if (P) {
231 Passes.add(P);
232
233 if (AnalyzeOnly) {
234 if (BasicBlockPass *BBP = dynamic_cast<BasicBlockPass*>(P))
235 Passes.add(new BasicBlockPassPrinter(PassInf));
236 else if (FunctionPass *FP = dynamic_cast<FunctionPass*>(P))
237 Passes.add(new FunctionPassPrinter(PassInf));
238 else
239 Passes.add(new ModulePassPrinter(PassInf));
240 }
241 }
242
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000243 if (PrintEachXForm)
244 Passes.add(new PrintModulePass(&std::cerr));
245 }
246
247 // Check that the module is well formed on completion of optimization
248 if (!NoVerify)
249 Passes.add(createVerifierPass());
250
251 // Write bytecode out to disk or cout as the last step...
Chris Lattner3b2493e2006-08-27 22:40:26 +0000252 if (!NoOutput && !AnalyzeOnly)
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000253 Passes.add(new WriteBytecodePass(Out, Out != &std::cout));
254
255 // Now that we have all of the passes ready, run them.
256 Passes.run(*M.get());
257
258 return 0;
Reid Spencerfd90dd52006-08-18 06:34:30 +0000259
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000260 } catch (const std::string& msg) {
261 std::cerr << argv[0] << ": " << msg << "\n";
262 } catch (...) {
263 std::cerr << argv[0] << ": Unexpected unknown exception occurred.\n";
Chris Lattnerfb1b3f12002-01-31 00:47:12 +0000264 }
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000265 return 1;
Chris Lattner00950542001-06-06 20:29:01 +0000266}