Chris Lattner | 76351aa | 2004-04-02 05:06:57 +0000 | [diff] [blame] | 1 | //===- opt.cpp - The LLVM Modular Optimizer -------------------------------===// |
Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | 7c0e022 | 2003-10-20 17:47:21 +0000 | [diff] [blame] | 3 | // 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 Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | 7c0e022 | 2003-10-20 17:47:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 10 | // Optimizations may be specified an arbitrary number of times on the command |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 11 | // line, They are run in the order specified. |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 12 | // |
Chris Lattner | 0eafc31 | 2001-10-18 06:05:15 +0000 | [diff] [blame] | 13 | //===----------------------------------------------------------------------===// |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 14 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 15 | #include "llvm/Module.h" |
Chris Lattner | fb1b3f1 | 2002-01-31 00:47:12 +0000 | [diff] [blame] | 16 | #include "llvm/PassManager.h" |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 17 | #include "llvm/Bytecode/Reader.h" |
Chris Lattner | fb1b3f1 | 2002-01-31 00:47:12 +0000 | [diff] [blame] | 18 | #include "llvm/Bytecode/WriteBytecodePass.h" |
Chris Lattner | ffa6f9c | 2001-10-19 15:39:14 +0000 | [diff] [blame] | 19 | #include "llvm/Assembly/PrintModulePass.h" |
Chris Lattner | 22d26d7 | 2002-02-20 17:56:53 +0000 | [diff] [blame] | 20 | #include "llvm/Analysis/Verifier.h" |
Owen Anderson | 07000c6 | 2006-05-12 06:33:49 +0000 | [diff] [blame] | 21 | #include "llvm/Target/TargetData.h" |
Vikram S. Adve | 18fdfc4 | 2002-09-16 16:09:43 +0000 | [diff] [blame] | 22 | #include "llvm/Target/TargetMachine.h" |
Chris Lattner | 2053a2a | 2002-07-26 21:09:32 +0000 | [diff] [blame] | 23 | #include "llvm/Support/PassNameParser.h" |
Chris Lattner | bed85ff | 2004-05-27 05:41:36 +0000 | [diff] [blame] | 24 | #include "llvm/System/Signals.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 25 | #include "llvm/Support/PluginLoader.h" |
Bill Wendling | a5b31ca | 2006-11-28 23:33:06 +0000 | [diff] [blame^] | 26 | #include "llvm/Support/Streams.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 27 | #include "llvm/Support/SystemUtils.h" |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 28 | #include "llvm/Support/Timer.h" |
Reid Spencer | 62c5105 | 2006-08-21 05:34:03 +0000 | [diff] [blame] | 29 | #include "llvm/LinkAllPasses.h" |
Reid Spencer | af303d5 | 2006-06-07 23:03:13 +0000 | [diff] [blame] | 30 | #include "llvm/LinkAllVMCore.h" |
Chris Lattner | 73e11d7 | 2001-10-18 06:13:08 +0000 | [diff] [blame] | 31 | #include <fstream> |
Chris Lattner | 6320232 | 2001-11-26 19:22:39 +0000 | [diff] [blame] | 32 | #include <memory> |
Chris Lattner | c0ce68b | 2002-07-23 18:12:22 +0000 | [diff] [blame] | 33 | #include <algorithm> |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 34 | using namespace llvm; |
Chris Lattner | 9d6e7eb | 2002-04-12 18:21:13 +0000 | [diff] [blame] | 35 | |
Chris Lattner | c0ce68b | 2002-07-23 18:12:22 +0000 | [diff] [blame] | 36 | // The OptimizationList is automatically populated with registered Passes by the |
| 37 | // PassNameParser. |
| 38 | // |
Chris Lattner | 7f500f7 | 2006-08-27 22:07:01 +0000 | [diff] [blame] | 39 | static cl::list<const PassInfo*, bool, PassNameParser> |
| 40 | PassList(cl::desc("Optimizations available:")); |
Chris Lattner | c0ce68b | 2002-07-23 18:12:22 +0000 | [diff] [blame] | 41 | |
Chris Lattner | 5e9b177 | 2006-08-28 17:31:55 +0000 | [diff] [blame] | 42 | static cl::opt<bool> NoCompress("disable-compression", cl::init(false), |
| 43 | cl::desc("Don't compress the generated bytecode")); |
Chris Lattner | c0ce68b | 2002-07-23 18:12:22 +0000 | [diff] [blame] | 44 | |
| 45 | // Other command line options... |
Chris Lattner | fb1b3f1 | 2002-01-31 00:47:12 +0000 | [diff] [blame] | 46 | // |
Chris Lattner | 6c8103f | 2003-05-22 20:13:16 +0000 | [diff] [blame] | 47 | static cl::opt<std::string> |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 48 | InputFilename(cl::Positional, cl::desc("<input bytecode file>"), |
| 49 | cl::init("-"), cl::value_desc("filename")); |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 50 | |
Chris Lattner | 6c8103f | 2003-05-22 20:13:16 +0000 | [diff] [blame] | 51 | static cl::opt<std::string> |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 52 | OutputFilename("o", cl::desc("Override output filename"), |
Chris Lattner | b592fc2 | 2003-12-10 14:41:33 +0000 | [diff] [blame] | 53 | cl::value_desc("filename"), cl::init("-")); |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 54 | |
| 55 | static cl::opt<bool> |
| 56 | Force("f", cl::desc("Overwrite output files")); |
| 57 | |
| 58 | static cl::opt<bool> |
| 59 | PrintEachXForm("p", cl::desc("Print module after each transformation")); |
| 60 | |
| 61 | static cl::opt<bool> |
Chris Lattner | ddd5b41 | 2003-02-26 20:00:41 +0000 | [diff] [blame] | 62 | NoOutput("disable-output", |
| 63 | cl::desc("Do not write result bytecode file"), cl::Hidden); |
Chris Lattner | d70b68e | 2003-02-12 18:43:33 +0000 | [diff] [blame] | 64 | |
| 65 | static cl::opt<bool> |
Chris Lattner | ddd5b41 | 2003-02-26 20:00:41 +0000 | [diff] [blame] | 66 | NoVerify("disable-verify", cl::desc("Do not verify result module"), cl::Hidden); |
Chris Lattner | f3bafc1 | 2003-02-12 18:45:08 +0000 | [diff] [blame] | 67 | |
| 68 | static cl::opt<bool> |
Chris Lattner | 3153e4f | 2004-05-27 20:32:10 +0000 | [diff] [blame] | 69 | Quiet("q", cl::desc("Obsolete option"), cl::Hidden); |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 70 | |
Reid Spencer | ec7eb45 | 2004-05-27 16:28:54 +0000 | [diff] [blame] | 71 | static cl::alias |
| 72 | QuietA("quiet", cl::desc("Alias for -q"), cl::aliasopt(Quiet)); |
| 73 | |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 74 | static cl::opt<bool> |
| 75 | AnalyzeOnly("analyze", cl::desc("Only perform analysis, no optimization")); |
| 76 | |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 77 | static Timer BytecodeLoadTimer("Bytecode Loader"); |
| 78 | |
| 79 | // ---------- Define Printers for module and function passes ------------ |
| 80 | namespace { |
| 81 | |
| 82 | struct 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 Wendling | a5b31ca | 2006-11-28 23:33:06 +0000 | [diff] [blame^] | 88 | llvm_cout << "Printing analysis '" << PassToPrint->getPassName() |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 89 | << "':\n"; |
Bill Wendling | a5b31ca | 2006-11-28 23:33:06 +0000 | [diff] [blame^] | 90 | getAnalysisID<Pass>(PassToPrint).print(llvm_cout, &M); |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 91 | } |
| 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 | |
| 105 | struct 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 Wendling | a5b31ca | 2006-11-28 23:33:06 +0000 | [diff] [blame^] | 111 | llvm_cout << "Printing analysis '" << PassToPrint->getPassName() |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 112 | << "' for function '" << F.getName() << "':\n"; |
| 113 | } |
| 114 | // Get and print pass... |
Bill Wendling | a5b31ca | 2006-11-28 23:33:06 +0000 | [diff] [blame^] | 115 | getAnalysisID<Pass>(PassToPrint).print(llvm_cout, F.getParent()); |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 116 | 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 | |
| 127 | struct 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 Wendling | a5b31ca | 2006-11-28 23:33:06 +0000 | [diff] [blame^] | 133 | llvm_cout << "Printing Analysis info for BasicBlock '" << BB.getName() |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 134 | << "': Pass " << PassToPrint->getPassName() << ":\n"; |
| 135 | } |
| 136 | |
| 137 | // Get and print pass... |
| 138 | getAnalysisID<Pass>(PassToPrint).print( |
Bill Wendling | a5b31ca | 2006-11-28 23:33:06 +0000 | [diff] [blame^] | 139 | llvm_cout, BB.getParent()->getParent()); |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 140 | 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 Lattner | 0be4101 | 2002-02-01 04:54:11 +0000 | [diff] [blame] | 153 | |
Chris Lattner | c0ce68b | 2002-07-23 18:12:22 +0000 | [diff] [blame] | 154 | //===----------------------------------------------------------------------===// |
| 155 | // main for opt |
| 156 | // |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 157 | int main(int argc, char **argv) { |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 158 | try { |
| 159 | cl::ParseCommandLineOptions(argc, argv, |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 160 | " llvm .bc -> .bc modular optimizer and analysis printer \n"); |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 161 | sys::PrintStackTraceOnErrorSignal(); |
Chris Lattner | fb1b3f1 | 2002-01-31 00:47:12 +0000 | [diff] [blame] | 162 | |
Chris Lattner | 7f500f7 | 2006-08-27 22:07:01 +0000 | [diff] [blame] | 163 | // Allocate a full target machine description only if necessary. |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 164 | // FIXME: The choice of target should be controllable on the command line. |
| 165 | std::auto_ptr<TargetMachine> target; |
Vikram S. Adve | 18fdfc4 | 2002-09-16 16:09:43 +0000 | [diff] [blame] | 166 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 167 | std::string ErrorMessage; |
Vikram S. Adve | 18fdfc4 | 2002-09-16 16:09:43 +0000 | [diff] [blame] | 168 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 169 | // Load the input module... |
| 170 | std::auto_ptr<Module> M(ParseBytecodeFile(InputFilename, &ErrorMessage)); |
| 171 | if (M.get() == 0) { |
Bill Wendling | a5b31ca | 2006-11-28 23:33:06 +0000 | [diff] [blame^] | 172 | llvm_cerr << argv[0] << ": "; |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 173 | if (ErrorMessage.size()) |
Bill Wendling | a5b31ca | 2006-11-28 23:33:06 +0000 | [diff] [blame^] | 174 | llvm_cerr << ErrorMessage << "\n"; |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 175 | else |
Bill Wendling | a5b31ca | 2006-11-28 23:33:06 +0000 | [diff] [blame^] | 176 | llvm_cerr << "bytecode didn't read correctly.\n"; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 177 | return 1; |
| 178 | } |
Chris Lattner | 76d1229 | 2002-04-18 19:55:25 +0000 | [diff] [blame] | 179 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 180 | // Figure out what stream we are supposed to write to... |
Jeff Cohen | 5fb6ed4 | 2005-01-22 17:36:17 +0000 | [diff] [blame] | 181 | // FIXME: cout is not binary! |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 182 | 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 Wendling | a5b31ca | 2006-11-28 23:33:06 +0000 | [diff] [blame^] | 186 | llvm_cerr << argv[0] << ": error opening '" << OutputFilename |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 187 | << "': file exists!\n" |
| 188 | << "Use -f command line argument to force output\n"; |
| 189 | return 1; |
| 190 | } |
Jeff Cohen | 5fb6ed4 | 2005-01-22 17:36:17 +0000 | [diff] [blame] | 191 | 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 Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 194 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 195 | if (!Out->good()) { |
Bill Wendling | a5b31ca | 2006-11-28 23:33:06 +0000 | [diff] [blame^] | 196 | llvm_cerr << argv[0] << ": error opening " << OutputFilename << "!\n"; |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 197 | return 1; |
| 198 | } |
Chris Lattner | 76351aa | 2004-04-02 05:06:57 +0000 | [diff] [blame] | 199 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 200 | // 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 Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 204 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 205 | // If the output is set to be emitted to standard out, and standard out is a |
Jeff Cohen | 5fb6ed4 | 2005-01-22 17:36:17 +0000 | [diff] [blame] | 206 | // 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 Spencer | 564a571 | 2005-01-05 17:31:55 +0000 | [diff] [blame] | 208 | if (!Force && !NoOutput && CheckBytecodeOutputToConsole(Out,!Quiet)) { |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 209 | NoOutput = true; |
| 210 | } |
Chris Lattner | 9c3b55e | 2003-04-24 19:13:02 +0000 | [diff] [blame] | 211 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 212 | // 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 Lattner | 831b121 | 2006-06-16 18:23:49 +0000 | [diff] [blame] | 218 | Passes.add(new TargetData(M.get())); |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 219 | |
| 220 | // Create a new optimization pass for each one specified on the command line |
Chris Lattner | 7f500f7 | 2006-08-27 22:07:01 +0000 | [diff] [blame] | 221 | 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 Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 227 | assert(target.get() && "Could not allocate target machine!"); |
Chris Lattner | 7f500f7 | 2006-08-27 22:07:01 +0000 | [diff] [blame] | 228 | P = PassInf->getTargetCtor()(*target.get()); |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 229 | } else |
Bill Wendling | a5b31ca | 2006-11-28 23:33:06 +0000 | [diff] [blame^] | 230 | llvm_cerr << argv[0] << ": cannot create pass: " |
Chris Lattner | 7f500f7 | 2006-08-27 22:07:01 +0000 | [diff] [blame] | 231 | << PassInf->getPassName() << "\n"; |
| 232 | if (P) { |
| 233 | Passes.add(P); |
| 234 | |
| 235 | if (AnalyzeOnly) { |
Reid Spencer | 3ed469c | 2006-11-02 20:25:50 +0000 | [diff] [blame] | 236 | if (dynamic_cast<BasicBlockPass*>(P)) |
Chris Lattner | 7f500f7 | 2006-08-27 22:07:01 +0000 | [diff] [blame] | 237 | Passes.add(new BasicBlockPassPrinter(PassInf)); |
Reid Spencer | 3ed469c | 2006-11-02 20:25:50 +0000 | [diff] [blame] | 238 | else if (dynamic_cast<FunctionPass*>(P)) |
Chris Lattner | 7f500f7 | 2006-08-27 22:07:01 +0000 | [diff] [blame] | 239 | Passes.add(new FunctionPassPrinter(PassInf)); |
| 240 | else |
| 241 | Passes.add(new ModulePassPrinter(PassInf)); |
| 242 | } |
| 243 | } |
| 244 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 245 | if (PrintEachXForm) |
Bill Wendling | a5b31ca | 2006-11-28 23:33:06 +0000 | [diff] [blame^] | 246 | Passes.add(new PrintModulePass(&llvm_cerr)); |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 247 | } |
| 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 Lattner | 3b2493e | 2006-08-27 22:40:26 +0000 | [diff] [blame] | 254 | if (!NoOutput && !AnalyzeOnly) |
Chris Lattner | 5e9b177 | 2006-08-28 17:31:55 +0000 | [diff] [blame] | 255 | Passes.add(new WriteBytecodePass(Out, Out != &std::cout, !NoCompress)); |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 256 | |
| 257 | // Now that we have all of the passes ready, run them. |
| 258 | Passes.run(*M.get()); |
| 259 | |
| 260 | return 0; |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 261 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 262 | } catch (const std::string& msg) { |
Bill Wendling | a5b31ca | 2006-11-28 23:33:06 +0000 | [diff] [blame^] | 263 | llvm_cerr << argv[0] << ": " << msg << "\n"; |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 264 | } catch (...) { |
Bill Wendling | a5b31ca | 2006-11-28 23:33:06 +0000 | [diff] [blame^] | 265 | llvm_cerr << argv[0] << ": Unexpected unknown exception occurred.\n"; |
Chris Lattner | fb1b3f1 | 2002-01-31 00:47:12 +0000 | [diff] [blame] | 266 | } |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 267 | return 1; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 268 | } |