blob: 99249b9442cf0142d8da87f0ee4866d56ceb5d8f [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 Lattnerb330e382007-05-06 02:42:03 +000017#include "llvm/Bitcode/ReaderWriter.h"
Chris Lattnerffa6f9c2001-10-19 15:39:14 +000018#include "llvm/Assembly/PrintModulePass.h"
Chris Lattner22d26d72002-02-20 17:56:53 +000019#include "llvm/Analysis/Verifier.h"
Devang Patel1bc89362007-03-07 00:26:10 +000020#include "llvm/Analysis/LoopPass.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"
Chris Lattnerc30598b2006-12-06 01:18:01 +000025#include "llvm/Support/ManagedStatic.h"
Chris Lattnerb330e382007-05-06 02:42:03 +000026#include "llvm/Support/MemoryBuffer.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 Spencer62c51052006-08-21 05:34:03 +000030#include "llvm/LinkAllPasses.h"
Reid Spenceraf303d52006-06-07 23:03:13 +000031#include "llvm/LinkAllVMCore.h"
Bill Wendling68fe61d2006-11-29 00:19:40 +000032#include <iostream>
Chris Lattner73e11d72001-10-18 06:13:08 +000033#include <fstream>
Chris Lattner63202322001-11-26 19:22:39 +000034#include <memory>
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000035#include <algorithm>
Brian Gaeked0fde302003-11-11 22:41:34 +000036using namespace llvm;
Chris Lattner9d6e7eb2002-04-12 18:21:13 +000037
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000038// The OptimizationList is automatically populated with registered Passes by the
39// PassNameParser.
40//
Chris Lattner7f500f72006-08-27 22:07:01 +000041static cl::list<const PassInfo*, bool, PassNameParser>
42PassList(cl::desc("Optimizations available:"));
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000043
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000044// Other command line options...
Chris Lattnerfb1b3f12002-01-31 00:47:12 +000045//
Chris Lattner6c8103f2003-05-22 20:13:16 +000046static cl::opt<std::string>
Reid Spencerfd90dd52006-08-18 06:34:30 +000047InputFilename(cl::Positional, cl::desc("<input bytecode file>"),
48 cl::init("-"), cl::value_desc("filename"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000049
Chris Lattner6c8103f2003-05-22 20:13:16 +000050static cl::opt<std::string>
Chris Lattner5ff62e92002-07-22 02:10:13 +000051OutputFilename("o", cl::desc("Override output filename"),
Chris Lattnerb592fc22003-12-10 14:41:33 +000052 cl::value_desc("filename"), cl::init("-"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000053
54static cl::opt<bool>
55Force("f", cl::desc("Overwrite output files"));
56
57static cl::opt<bool>
58PrintEachXForm("p", cl::desc("Print module after each transformation"));
59
60static cl::opt<bool>
Chris Lattnerddd5b412003-02-26 20:00:41 +000061NoOutput("disable-output",
62 cl::desc("Do not write result bytecode file"), cl::Hidden);
Chris Lattnerd70b68e2003-02-12 18:43:33 +000063
64static cl::opt<bool>
Chris Lattnerddd5b412003-02-26 20:00:41 +000065NoVerify("disable-verify", cl::desc("Do not verify result module"), cl::Hidden);
Chris Lattnerf3bafc12003-02-12 18:45:08 +000066
67static cl::opt<bool>
Reid Spencer74ed9972007-02-02 14:46:29 +000068VerifyEach("verify-each", cl::desc("Verify after each transform"));
69
70static cl::opt<bool>
71StripDebug("strip-debug",
72 cl::desc("Strip debugger symbol info from translation unit"));
73
74static cl::opt<bool>
75DisableInline("disable-inlining", cl::desc("Do not run the inliner pass"));
76
77static cl::opt<bool>
78DisableOptimizations("disable-opt",
79 cl::desc("Do not run any optimization passes"));
80
81static cl::opt<bool>
82StandardCompileOpts("std-compile-opts",
83 cl::desc("Include the standard compile time optimizations"));
84
85static cl::opt<bool>
Chris Lattner3153e4f2004-05-27 20:32:10 +000086Quiet("q", cl::desc("Obsolete option"), cl::Hidden);
Chris Lattner5ff62e92002-07-22 02:10:13 +000087
Reid Spencerec7eb452004-05-27 16:28:54 +000088static cl::alias
89QuietA("quiet", cl::desc("Alias for -q"), cl::aliasopt(Quiet));
90
Reid Spencerfd90dd52006-08-18 06:34:30 +000091static cl::opt<bool>
92AnalyzeOnly("analyze", cl::desc("Only perform analysis, no optimization"));
93
Reid Spencerfd90dd52006-08-18 06:34:30 +000094// ---------- Define Printers for module and function passes ------------
95namespace {
96
97struct ModulePassPrinter : public ModulePass {
Devang Patel19974732007-05-03 01:11:54 +000098 static char ID;
Reid Spencerfd90dd52006-08-18 06:34:30 +000099 const PassInfo *PassToPrint;
Devang Patel794fd752007-05-01 21:15:47 +0000100 ModulePassPrinter(const PassInfo *PI) : ModulePass((intptr_t)&ID),
101 PassToPrint(PI) {}
Reid Spencerfd90dd52006-08-18 06:34:30 +0000102
103 virtual bool runOnModule(Module &M) {
104 if (!Quiet) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000105 cout << "Printing analysis '" << PassToPrint->getPassName() << "':\n";
106 getAnalysisID<Pass>(PassToPrint).print(cout, &M);
Reid Spencerfd90dd52006-08-18 06:34:30 +0000107 }
108
109 // Get and print pass...
110 return false;
111 }
112
113 virtual const char *getPassName() const { return "'Pass' Printer"; }
114
115 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
116 AU.addRequiredID(PassToPrint);
117 AU.setPreservesAll();
118 }
119};
120
Devang Patel19974732007-05-03 01:11:54 +0000121char ModulePassPrinter::ID = 0;
Reid Spencerfd90dd52006-08-18 06:34:30 +0000122struct FunctionPassPrinter : public FunctionPass {
123 const PassInfo *PassToPrint;
Devang Patel19974732007-05-03 01:11:54 +0000124 static char ID;
Devang Patel794fd752007-05-01 21:15:47 +0000125 FunctionPassPrinter(const PassInfo *PI) : FunctionPass((intptr_t)&ID),
126 PassToPrint(PI) {}
Reid Spencerfd90dd52006-08-18 06:34:30 +0000127
128 virtual bool runOnFunction(Function &F) {
Devang Patel794fd752007-05-01 21:15:47 +0000129 if (!Quiet) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000130 cout << "Printing analysis '" << PassToPrint->getPassName()
131 << "' for function '" << F.getName() << "':\n";
Reid Spencerfd90dd52006-08-18 06:34:30 +0000132 }
133 // Get and print pass...
Bill Wendlinge8156192006-12-07 01:30:32 +0000134 getAnalysisID<Pass>(PassToPrint).print(cout, F.getParent());
Reid Spencerfd90dd52006-08-18 06:34:30 +0000135 return false;
136 }
137
138 virtual const char *getPassName() const { return "FunctionPass Printer"; }
139
140 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
141 AU.addRequiredID(PassToPrint);
142 AU.setPreservesAll();
143 }
144};
145
Devang Patel19974732007-05-03 01:11:54 +0000146char FunctionPassPrinter::ID = 0;
Reid Spencerfd90dd52006-08-18 06:34:30 +0000147struct BasicBlockPassPrinter : public BasicBlockPass {
148 const PassInfo *PassToPrint;
Devang Patel19974732007-05-03 01:11:54 +0000149 static char ID;
Devang Patel794fd752007-05-01 21:15:47 +0000150 BasicBlockPassPrinter(const PassInfo *PI)
151 : BasicBlockPass((intptr_t)&ID), PassToPrint(PI) {}
Reid Spencerfd90dd52006-08-18 06:34:30 +0000152
153 virtual bool runOnBasicBlock(BasicBlock &BB) {
154 if (!Quiet) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000155 cout << "Printing Analysis info for BasicBlock '" << BB.getName()
156 << "': Pass " << PassToPrint->getPassName() << ":\n";
Reid Spencerfd90dd52006-08-18 06:34:30 +0000157 }
158
159 // Get and print pass...
Bill Wendlinge8156192006-12-07 01:30:32 +0000160 getAnalysisID<Pass>(PassToPrint).print(cout, BB.getParent()->getParent());
Reid Spencerfd90dd52006-08-18 06:34:30 +0000161 return false;
162 }
163
164 virtual const char *getPassName() const { return "BasicBlockPass Printer"; }
165
166 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
167 AU.addRequiredID(PassToPrint);
168 AU.setPreservesAll();
169 }
170};
171
Devang Patel19974732007-05-03 01:11:54 +0000172char BasicBlockPassPrinter::ID = 0;
Reid Spencer74ed9972007-02-02 14:46:29 +0000173inline void addPass(PassManager &PM, Pass *P) {
174 // Add the pass to the pass manager...
175 PM.add(P);
176
177 // If we are verifying all of the intermediate steps, add the verifier...
178 if (VerifyEach) PM.add(createVerifierPass());
179}
180
181void AddStandardCompilePasses(PassManager &PM) {
182 PM.add(createVerifierPass()); // Verify that input is correct
183
184 addPass(PM, createLowerSetJmpPass()); // Lower llvm.setjmp/.longjmp
Reid Spencer74ed9972007-02-02 14:46:29 +0000185
186 // If the -strip-debug command line option was specified, do it.
187 if (StripDebug)
188 addPass(PM, createStripSymbolsPass(true));
189
190 if (DisableOptimizations) return;
191
192 addPass(PM, createRaiseAllocationsPass()); // call %malloc -> malloc inst
193 addPass(PM, createCFGSimplificationPass()); // Clean up disgusting code
194 addPass(PM, createPromoteMemoryToRegisterPass());// Kill useless allocas
195 addPass(PM, createGlobalOptimizerPass()); // Optimize out global vars
196 addPass(PM, createGlobalDCEPass()); // Remove unused fns and globs
197 addPass(PM, createIPConstantPropagationPass());// IP Constant Propagation
198 addPass(PM, createDeadArgEliminationPass()); // Dead argument elimination
199 addPass(PM, createInstructionCombiningPass()); // Clean up after IPCP & DAE
200 addPass(PM, createCFGSimplificationPass()); // Clean up after IPCP & DAE
201
202 addPass(PM, createPruneEHPass()); // Remove dead EH info
203
204 if (!DisableInline)
205 addPass(PM, createFunctionInliningPass()); // Inline small functions
206 addPass(PM, createArgumentPromotionPass()); // Scalarize uninlined fn args
207
Reid Spencer74ed9972007-02-02 14:46:29 +0000208 addPass(PM, createTailDuplicationPass()); // Simplify cfg by copying code
209 addPass(PM, createInstructionCombiningPass()); // Cleanup for scalarrepl.
210 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
211 addPass(PM, createScalarReplAggregatesPass()); // Break up aggregate allocas
212 addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
213 addPass(PM, createCondPropagationPass()); // Propagate conditionals
214
215 addPass(PM, createTailCallEliminationPass()); // Eliminate tail calls
216 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
217 addPass(PM, createReassociatePass()); // Reassociate expressions
Devang Patel0aa37f42007-04-10 15:43:36 +0000218 addPass(PM, createLoopRotatePass());
Reid Spencer74ed9972007-02-02 14:46:29 +0000219 addPass(PM, createLICMPass()); // Hoist loop invariants
220 addPass(PM, createLoopUnswitchPass()); // Unswitch loops.
221 addPass(PM, createInstructionCombiningPass()); // Clean up after LICM/reassoc
222 addPass(PM, createIndVarSimplifyPass()); // Canonicalize indvars
223 addPass(PM, createLoopUnrollPass()); // Unroll small loops
224 addPass(PM, createInstructionCombiningPass()); // Clean up after the unroller
225 addPass(PM, createLoadValueNumberingPass()); // GVN for load instructions
226 addPass(PM, createGCSEPass()); // Remove common subexprs
227 addPass(PM, createSCCPPass()); // Constant prop with SCCP
228
229 // Run instcombine after redundancy elimination to exploit opportunities
230 // opened up by them.
231 addPass(PM, createInstructionCombiningPass());
232 addPass(PM, createCondPropagationPass()); // Propagate conditionals
233
234 addPass(PM, createDeadStoreEliminationPass()); // Delete dead stores
235 addPass(PM, createAggressiveDCEPass()); // SSA based 'Aggressive DCE'
236 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
237 addPass(PM, createSimplifyLibCallsPass()); // Library Call Optimizations
238 addPass(PM, createDeadTypeEliminationPass()); // Eliminate dead types
239 addPass(PM, createConstantMergePass()); // Merge dup global constants
240}
241
Reid Spencerfd90dd52006-08-18 06:34:30 +0000242} // anonymous namespace
243
Chris Lattner0be41012002-02-01 04:54:11 +0000244
Chris Lattnerc0ce68b2002-07-23 18:12:22 +0000245//===----------------------------------------------------------------------===//
246// main for opt
247//
Chris Lattner00950542001-06-06 20:29:01 +0000248int main(int argc, char **argv) {
Chris Lattnerc30598b2006-12-06 01:18:01 +0000249 llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000250 try {
251 cl::ParseCommandLineOptions(argc, argv,
Reid Spencerfd90dd52006-08-18 06:34:30 +0000252 " llvm .bc -> .bc modular optimizer and analysis printer \n");
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000253 sys::PrintStackTraceOnErrorSignal();
Chris Lattnerfb1b3f12002-01-31 00:47:12 +0000254
Chris Lattner7f500f72006-08-27 22:07:01 +0000255 // Allocate a full target machine description only if necessary.
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000256 // FIXME: The choice of target should be controllable on the command line.
257 std::auto_ptr<TargetMachine> target;
Vikram S. Adve18fdfc42002-09-16 16:09:43 +0000258
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000259 std::string ErrorMessage;
Vikram S. Adve18fdfc42002-09-16 16:09:43 +0000260
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000261 // Load the input module...
Chris Lattnerb330e382007-05-06 02:42:03 +0000262 std::auto_ptr<Module> M;
Chris Lattner744879e2007-05-06 09:32:02 +0000263 MemoryBuffer *Buffer
264 = MemoryBuffer::getFileOrSTDIN(&InputFilename[0], InputFilename.size());
265
266 if (Buffer == 0)
267 ErrorMessage = "Error reading file '" + InputFilename + "'";
268 else
269 M.reset(ParseBitcodeFile(Buffer, &ErrorMessage));
270
271 delete Buffer;
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000272 if (M.get() == 0) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000273 cerr << argv[0] << ": ";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000274 if (ErrorMessage.size())
Bill Wendlinge8156192006-12-07 01:30:32 +0000275 cerr << ErrorMessage << "\n";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000276 else
Bill Wendlinge8156192006-12-07 01:30:32 +0000277 cerr << "bytecode didn't read correctly.\n";
Chris Lattner00950542001-06-06 20:29:01 +0000278 return 1;
279 }
Chris Lattner76d12292002-04-18 19:55:25 +0000280
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000281 // Figure out what stream we are supposed to write to...
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000282 // FIXME: cout is not binary!
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000283 std::ostream *Out = &std::cout; // Default to printing to stdout...
284 if (OutputFilename != "-") {
285 if (!Force && std::ifstream(OutputFilename.c_str())) {
286 // If force is not specified, make sure not to overwrite a file!
Bill Wendlinge8156192006-12-07 01:30:32 +0000287 cerr << argv[0] << ": error opening '" << OutputFilename
288 << "': file exists!\n"
289 << "Use -f command line argument to force output\n";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000290 return 1;
291 }
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000292 std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
293 std::ios::binary;
294 Out = new std::ofstream(OutputFilename.c_str(), io_mode);
Chris Lattner00950542001-06-06 20:29:01 +0000295
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000296 if (!Out->good()) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000297 cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000298 return 1;
299 }
Chris Lattner76351aa2004-04-02 05:06:57 +0000300
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000301 // Make sure that the Output file gets unlinked from the disk if we get a
302 // SIGINT
303 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
304 }
Chris Lattner00950542001-06-06 20:29:01 +0000305
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000306 // If the output is set to be emitted to standard out, and standard out is a
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000307 // console, print out a warning message and refuse to do it. We don't
308 // impress anyone by spewing tons of binary goo to a terminal.
Reid Spencer564a5712005-01-05 17:31:55 +0000309 if (!Force && !NoOutput && CheckBytecodeOutputToConsole(Out,!Quiet)) {
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000310 NoOutput = true;
311 }
Chris Lattner9c3b55e2003-04-24 19:13:02 +0000312
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000313 // Create a PassManager to hold and optimize the collection of passes we are
314 // about to build...
315 //
316 PassManager Passes;
317
318 // Add an appropriate TargetData instance for this module...
Chris Lattner831b1212006-06-16 18:23:49 +0000319 Passes.add(new TargetData(M.get()));
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000320
Reid Spencer74ed9972007-02-02 14:46:29 +0000321 // If -std-compile-opts is given, add in all the standard compilation
322 // optimizations first. This will handle -strip-debug, -disable-inline,
323 // and -disable-opt as well.
324 if (StandardCompileOpts)
325 AddStandardCompilePasses(Passes);
326
327 // otherwise if the -strip-debug command line option was specified, add it.
328 else if (StripDebug)
329 addPass(Passes, createStripSymbolsPass(true));
330
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000331 // Create a new optimization pass for each one specified on the command line
Chris Lattner7f500f72006-08-27 22:07:01 +0000332 for (unsigned i = 0; i < PassList.size(); ++i) {
333 const PassInfo *PassInf = PassList[i];
334 Pass *P = 0;
335 if (PassInf->getNormalCtor())
336 P = PassInf->getNormalCtor()();
Chris Lattnercd950a52006-12-01 21:59:37 +0000337 else
Bill Wendlinge8156192006-12-07 01:30:32 +0000338 cerr << argv[0] << ": cannot create pass: "
339 << PassInf->getPassName() << "\n";
Chris Lattner7f500f72006-08-27 22:07:01 +0000340 if (P) {
Reid Spencer74ed9972007-02-02 14:46:29 +0000341 addPass(Passes, P);
Chris Lattner7f500f72006-08-27 22:07:01 +0000342
343 if (AnalyzeOnly) {
Reid Spencer3ed469c2006-11-02 20:25:50 +0000344 if (dynamic_cast<BasicBlockPass*>(P))
Chris Lattner7f500f72006-08-27 22:07:01 +0000345 Passes.add(new BasicBlockPassPrinter(PassInf));
Reid Spencer3ed469c2006-11-02 20:25:50 +0000346 else if (dynamic_cast<FunctionPass*>(P))
Chris Lattner7f500f72006-08-27 22:07:01 +0000347 Passes.add(new FunctionPassPrinter(PassInf));
348 else
349 Passes.add(new ModulePassPrinter(PassInf));
350 }
351 }
352
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000353 if (PrintEachXForm)
Bill Wendlinge8156192006-12-07 01:30:32 +0000354 Passes.add(new PrintModulePass(&cerr));
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000355 }
356
357 // Check that the module is well formed on completion of optimization
Reid Spencer74ed9972007-02-02 14:46:29 +0000358 if (!NoVerify && !VerifyEach)
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000359 Passes.add(createVerifierPass());
360
361 // Write bytecode out to disk or cout as the last step...
Chris Lattner744879e2007-05-06 09:32:02 +0000362 if (!NoOutput && !AnalyzeOnly)
363 Passes.add(CreateBitcodeWriterPass(*Out));
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000364
365 // Now that we have all of the passes ready, run them.
366 Passes.run(*M.get());
367
368 return 0;
Reid Spencerfd90dd52006-08-18 06:34:30 +0000369
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000370 } catch (const std::string& msg) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000371 cerr << argv[0] << ": " << msg << "\n";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000372 } catch (...) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000373 cerr << argv[0] << ": Unexpected unknown exception occurred.\n";
Chris Lattnerfb1b3f12002-01-31 00:47:12 +0000374 }
Chris Lattner03315242007-01-31 04:45:28 +0000375 llvm_shutdown();
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000376 return 1;
Chris Lattner00950542001-06-06 20:29:01 +0000377}