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 | b330e38 | 2007-05-06 02:42:03 +0000 | [diff] [blame^] | 19 | #include "llvm/Bitcode/ReaderWriter.h" |
Chris Lattner | ffa6f9c | 2001-10-19 15:39:14 +0000 | [diff] [blame] | 20 | #include "llvm/Assembly/PrintModulePass.h" |
Chris Lattner | 22d26d7 | 2002-02-20 17:56:53 +0000 | [diff] [blame] | 21 | #include "llvm/Analysis/Verifier.h" |
Devang Patel | 1bc8936 | 2007-03-07 00:26:10 +0000 | [diff] [blame] | 22 | #include "llvm/Analysis/LoopPass.h" |
Owen Anderson | 07000c6 | 2006-05-12 06:33:49 +0000 | [diff] [blame] | 23 | #include "llvm/Target/TargetData.h" |
Vikram S. Adve | 18fdfc4 | 2002-09-16 16:09:43 +0000 | [diff] [blame] | 24 | #include "llvm/Target/TargetMachine.h" |
Chris Lattner | 2053a2a | 2002-07-26 21:09:32 +0000 | [diff] [blame] | 25 | #include "llvm/Support/PassNameParser.h" |
Chris Lattner | bed85ff | 2004-05-27 05:41:36 +0000 | [diff] [blame] | 26 | #include "llvm/System/Signals.h" |
Chris Lattner | c30598b | 2006-12-06 01:18:01 +0000 | [diff] [blame] | 27 | #include "llvm/Support/ManagedStatic.h" |
Chris Lattner | b330e38 | 2007-05-06 02:42:03 +0000 | [diff] [blame^] | 28 | #include "llvm/Support/MemoryBuffer.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 29 | #include "llvm/Support/PluginLoader.h" |
Bill Wendling | a5b31ca | 2006-11-28 23:33:06 +0000 | [diff] [blame] | 30 | #include "llvm/Support/Streams.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 31 | #include "llvm/Support/SystemUtils.h" |
Reid Spencer | 62c5105 | 2006-08-21 05:34:03 +0000 | [diff] [blame] | 32 | #include "llvm/LinkAllPasses.h" |
Reid Spencer | af303d5 | 2006-06-07 23:03:13 +0000 | [diff] [blame] | 33 | #include "llvm/LinkAllVMCore.h" |
Bill Wendling | 68fe61d | 2006-11-29 00:19:40 +0000 | [diff] [blame] | 34 | #include <iostream> |
Chris Lattner | 73e11d7 | 2001-10-18 06:13:08 +0000 | [diff] [blame] | 35 | #include <fstream> |
Chris Lattner | 6320232 | 2001-11-26 19:22:39 +0000 | [diff] [blame] | 36 | #include <memory> |
Chris Lattner | c0ce68b | 2002-07-23 18:12:22 +0000 | [diff] [blame] | 37 | #include <algorithm> |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 38 | using namespace llvm; |
Chris Lattner | 9d6e7eb | 2002-04-12 18:21:13 +0000 | [diff] [blame] | 39 | |
Chris Lattner | b330e38 | 2007-05-06 02:42:03 +0000 | [diff] [blame^] | 40 | static cl::opt<bool> Bitcode("bitcode"); |
| 41 | |
Chris Lattner | c0ce68b | 2002-07-23 18:12:22 +0000 | [diff] [blame] | 42 | // The OptimizationList is automatically populated with registered Passes by the |
| 43 | // PassNameParser. |
| 44 | // |
Chris Lattner | 7f500f7 | 2006-08-27 22:07:01 +0000 | [diff] [blame] | 45 | static cl::list<const PassInfo*, bool, PassNameParser> |
| 46 | PassList(cl::desc("Optimizations available:")); |
Chris Lattner | c0ce68b | 2002-07-23 18:12:22 +0000 | [diff] [blame] | 47 | |
Chris Lattner | 17be679 | 2007-01-21 06:34:18 +0000 | [diff] [blame] | 48 | static cl::opt<bool> NoCompress("disable-compression", cl::init(true), |
Chris Lattner | 5e9b177 | 2006-08-28 17:31:55 +0000 | [diff] [blame] | 49 | cl::desc("Don't compress the generated bytecode")); |
Chris Lattner | c0ce68b | 2002-07-23 18:12:22 +0000 | [diff] [blame] | 50 | |
| 51 | // Other command line options... |
Chris Lattner | fb1b3f1 | 2002-01-31 00:47:12 +0000 | [diff] [blame] | 52 | // |
Chris Lattner | 6c8103f | 2003-05-22 20:13:16 +0000 | [diff] [blame] | 53 | static cl::opt<std::string> |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 54 | InputFilename(cl::Positional, cl::desc("<input bytecode file>"), |
| 55 | cl::init("-"), cl::value_desc("filename")); |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 56 | |
Chris Lattner | 6c8103f | 2003-05-22 20:13:16 +0000 | [diff] [blame] | 57 | static cl::opt<std::string> |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 58 | OutputFilename("o", cl::desc("Override output filename"), |
Chris Lattner | b592fc2 | 2003-12-10 14:41:33 +0000 | [diff] [blame] | 59 | cl::value_desc("filename"), cl::init("-")); |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 60 | |
| 61 | static cl::opt<bool> |
| 62 | Force("f", cl::desc("Overwrite output files")); |
| 63 | |
| 64 | static cl::opt<bool> |
| 65 | PrintEachXForm("p", cl::desc("Print module after each transformation")); |
| 66 | |
| 67 | static cl::opt<bool> |
Chris Lattner | ddd5b41 | 2003-02-26 20:00:41 +0000 | [diff] [blame] | 68 | NoOutput("disable-output", |
| 69 | cl::desc("Do not write result bytecode file"), cl::Hidden); |
Chris Lattner | d70b68e | 2003-02-12 18:43:33 +0000 | [diff] [blame] | 70 | |
| 71 | static cl::opt<bool> |
Chris Lattner | ddd5b41 | 2003-02-26 20:00:41 +0000 | [diff] [blame] | 72 | NoVerify("disable-verify", cl::desc("Do not verify result module"), cl::Hidden); |
Chris Lattner | f3bafc1 | 2003-02-12 18:45:08 +0000 | [diff] [blame] | 73 | |
| 74 | static cl::opt<bool> |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 75 | VerifyEach("verify-each", cl::desc("Verify after each transform")); |
| 76 | |
| 77 | static cl::opt<bool> |
| 78 | StripDebug("strip-debug", |
| 79 | cl::desc("Strip debugger symbol info from translation unit")); |
| 80 | |
| 81 | static cl::opt<bool> |
| 82 | DisableInline("disable-inlining", cl::desc("Do not run the inliner pass")); |
| 83 | |
| 84 | static cl::opt<bool> |
| 85 | DisableOptimizations("disable-opt", |
| 86 | cl::desc("Do not run any optimization passes")); |
| 87 | |
| 88 | static cl::opt<bool> |
| 89 | StandardCompileOpts("std-compile-opts", |
| 90 | cl::desc("Include the standard compile time optimizations")); |
| 91 | |
| 92 | static cl::opt<bool> |
Chris Lattner | 3153e4f | 2004-05-27 20:32:10 +0000 | [diff] [blame] | 93 | Quiet("q", cl::desc("Obsolete option"), cl::Hidden); |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 94 | |
Reid Spencer | ec7eb45 | 2004-05-27 16:28:54 +0000 | [diff] [blame] | 95 | static cl::alias |
| 96 | QuietA("quiet", cl::desc("Alias for -q"), cl::aliasopt(Quiet)); |
| 97 | |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 98 | static cl::opt<bool> |
| 99 | AnalyzeOnly("analyze", cl::desc("Only perform analysis, no optimization")); |
| 100 | |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 101 | // ---------- Define Printers for module and function passes ------------ |
| 102 | namespace { |
| 103 | |
| 104 | struct ModulePassPrinter : public ModulePass { |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 105 | static char ID; |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 106 | const PassInfo *PassToPrint; |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 107 | ModulePassPrinter(const PassInfo *PI) : ModulePass((intptr_t)&ID), |
| 108 | PassToPrint(PI) {} |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 109 | |
| 110 | virtual bool runOnModule(Module &M) { |
| 111 | if (!Quiet) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 112 | cout << "Printing analysis '" << PassToPrint->getPassName() << "':\n"; |
| 113 | getAnalysisID<Pass>(PassToPrint).print(cout, &M); |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | // Get and print pass... |
| 117 | return false; |
| 118 | } |
| 119 | |
| 120 | virtual const char *getPassName() const { return "'Pass' Printer"; } |
| 121 | |
| 122 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 123 | AU.addRequiredID(PassToPrint); |
| 124 | AU.setPreservesAll(); |
| 125 | } |
| 126 | }; |
| 127 | |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 128 | char ModulePassPrinter::ID = 0; |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 129 | struct FunctionPassPrinter : public FunctionPass { |
| 130 | const PassInfo *PassToPrint; |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 131 | static char ID; |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 132 | FunctionPassPrinter(const PassInfo *PI) : FunctionPass((intptr_t)&ID), |
| 133 | PassToPrint(PI) {} |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 134 | |
| 135 | virtual bool runOnFunction(Function &F) { |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 136 | if (!Quiet) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 137 | cout << "Printing analysis '" << PassToPrint->getPassName() |
| 138 | << "' for function '" << F.getName() << "':\n"; |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 139 | } |
| 140 | // Get and print pass... |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 141 | getAnalysisID<Pass>(PassToPrint).print(cout, F.getParent()); |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 142 | return false; |
| 143 | } |
| 144 | |
| 145 | virtual const char *getPassName() const { return "FunctionPass Printer"; } |
| 146 | |
| 147 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 148 | AU.addRequiredID(PassToPrint); |
| 149 | AU.setPreservesAll(); |
| 150 | } |
| 151 | }; |
| 152 | |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 153 | char FunctionPassPrinter::ID = 0; |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 154 | struct BasicBlockPassPrinter : public BasicBlockPass { |
| 155 | const PassInfo *PassToPrint; |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 156 | static char ID; |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 157 | BasicBlockPassPrinter(const PassInfo *PI) |
| 158 | : BasicBlockPass((intptr_t)&ID), PassToPrint(PI) {} |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 159 | |
| 160 | virtual bool runOnBasicBlock(BasicBlock &BB) { |
| 161 | if (!Quiet) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 162 | cout << "Printing Analysis info for BasicBlock '" << BB.getName() |
| 163 | << "': Pass " << PassToPrint->getPassName() << ":\n"; |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | // Get and print pass... |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 167 | getAnalysisID<Pass>(PassToPrint).print(cout, BB.getParent()->getParent()); |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 168 | return false; |
| 169 | } |
| 170 | |
| 171 | virtual const char *getPassName() const { return "BasicBlockPass Printer"; } |
| 172 | |
| 173 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 174 | AU.addRequiredID(PassToPrint); |
| 175 | AU.setPreservesAll(); |
| 176 | } |
| 177 | }; |
| 178 | |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 179 | char BasicBlockPassPrinter::ID = 0; |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 180 | inline void addPass(PassManager &PM, Pass *P) { |
| 181 | // Add the pass to the pass manager... |
| 182 | PM.add(P); |
| 183 | |
| 184 | // If we are verifying all of the intermediate steps, add the verifier... |
| 185 | if (VerifyEach) PM.add(createVerifierPass()); |
| 186 | } |
| 187 | |
| 188 | void AddStandardCompilePasses(PassManager &PM) { |
| 189 | PM.add(createVerifierPass()); // Verify that input is correct |
| 190 | |
| 191 | addPass(PM, createLowerSetJmpPass()); // Lower llvm.setjmp/.longjmp |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 192 | |
| 193 | // If the -strip-debug command line option was specified, do it. |
| 194 | if (StripDebug) |
| 195 | addPass(PM, createStripSymbolsPass(true)); |
| 196 | |
| 197 | if (DisableOptimizations) return; |
| 198 | |
| 199 | addPass(PM, createRaiseAllocationsPass()); // call %malloc -> malloc inst |
| 200 | addPass(PM, createCFGSimplificationPass()); // Clean up disgusting code |
| 201 | addPass(PM, createPromoteMemoryToRegisterPass());// Kill useless allocas |
| 202 | addPass(PM, createGlobalOptimizerPass()); // Optimize out global vars |
| 203 | addPass(PM, createGlobalDCEPass()); // Remove unused fns and globs |
| 204 | addPass(PM, createIPConstantPropagationPass());// IP Constant Propagation |
| 205 | addPass(PM, createDeadArgEliminationPass()); // Dead argument elimination |
| 206 | addPass(PM, createInstructionCombiningPass()); // Clean up after IPCP & DAE |
| 207 | addPass(PM, createCFGSimplificationPass()); // Clean up after IPCP & DAE |
| 208 | |
| 209 | addPass(PM, createPruneEHPass()); // Remove dead EH info |
| 210 | |
| 211 | if (!DisableInline) |
| 212 | addPass(PM, createFunctionInliningPass()); // Inline small functions |
| 213 | addPass(PM, createArgumentPromotionPass()); // Scalarize uninlined fn args |
| 214 | |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 215 | addPass(PM, createTailDuplicationPass()); // Simplify cfg by copying code |
| 216 | addPass(PM, createInstructionCombiningPass()); // Cleanup for scalarrepl. |
| 217 | addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs |
| 218 | addPass(PM, createScalarReplAggregatesPass()); // Break up aggregate allocas |
| 219 | addPass(PM, createInstructionCombiningPass()); // Combine silly seq's |
| 220 | addPass(PM, createCondPropagationPass()); // Propagate conditionals |
| 221 | |
| 222 | addPass(PM, createTailCallEliminationPass()); // Eliminate tail calls |
| 223 | addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs |
| 224 | addPass(PM, createReassociatePass()); // Reassociate expressions |
Devang Patel | 0aa37f4 | 2007-04-10 15:43:36 +0000 | [diff] [blame] | 225 | addPass(PM, createLoopRotatePass()); |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 226 | addPass(PM, createLICMPass()); // Hoist loop invariants |
| 227 | addPass(PM, createLoopUnswitchPass()); // Unswitch loops. |
| 228 | addPass(PM, createInstructionCombiningPass()); // Clean up after LICM/reassoc |
| 229 | addPass(PM, createIndVarSimplifyPass()); // Canonicalize indvars |
| 230 | addPass(PM, createLoopUnrollPass()); // Unroll small loops |
| 231 | addPass(PM, createInstructionCombiningPass()); // Clean up after the unroller |
| 232 | addPass(PM, createLoadValueNumberingPass()); // GVN for load instructions |
| 233 | addPass(PM, createGCSEPass()); // Remove common subexprs |
| 234 | addPass(PM, createSCCPPass()); // Constant prop with SCCP |
| 235 | |
| 236 | // Run instcombine after redundancy elimination to exploit opportunities |
| 237 | // opened up by them. |
| 238 | addPass(PM, createInstructionCombiningPass()); |
| 239 | addPass(PM, createCondPropagationPass()); // Propagate conditionals |
| 240 | |
| 241 | addPass(PM, createDeadStoreEliminationPass()); // Delete dead stores |
| 242 | addPass(PM, createAggressiveDCEPass()); // SSA based 'Aggressive DCE' |
| 243 | addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs |
| 244 | addPass(PM, createSimplifyLibCallsPass()); // Library Call Optimizations |
| 245 | addPass(PM, createDeadTypeEliminationPass()); // Eliminate dead types |
| 246 | addPass(PM, createConstantMergePass()); // Merge dup global constants |
| 247 | } |
| 248 | |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 249 | } // anonymous namespace |
| 250 | |
Chris Lattner | 0be4101 | 2002-02-01 04:54:11 +0000 | [diff] [blame] | 251 | |
Chris Lattner | c0ce68b | 2002-07-23 18:12:22 +0000 | [diff] [blame] | 252 | //===----------------------------------------------------------------------===// |
| 253 | // main for opt |
| 254 | // |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 255 | int main(int argc, char **argv) { |
Chris Lattner | c30598b | 2006-12-06 01:18:01 +0000 | [diff] [blame] | 256 | llvm_shutdown_obj X; // Call llvm_shutdown() on exit. |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 257 | try { |
| 258 | cl::ParseCommandLineOptions(argc, argv, |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 259 | " llvm .bc -> .bc modular optimizer and analysis printer \n"); |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 260 | sys::PrintStackTraceOnErrorSignal(); |
Chris Lattner | fb1b3f1 | 2002-01-31 00:47:12 +0000 | [diff] [blame] | 261 | |
Chris Lattner | 7f500f7 | 2006-08-27 22:07:01 +0000 | [diff] [blame] | 262 | // Allocate a full target machine description only if necessary. |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 263 | // FIXME: The choice of target should be controllable on the command line. |
| 264 | std::auto_ptr<TargetMachine> target; |
Vikram S. Adve | 18fdfc4 | 2002-09-16 16:09:43 +0000 | [diff] [blame] | 265 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 266 | std::string ErrorMessage; |
Vikram S. Adve | 18fdfc4 | 2002-09-16 16:09:43 +0000 | [diff] [blame] | 267 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 268 | // Load the input module... |
Chris Lattner | b330e38 | 2007-05-06 02:42:03 +0000 | [diff] [blame^] | 269 | std::auto_ptr<Module> M; |
| 270 | if (Bitcode) { |
| 271 | MemoryBuffer *Buffer; |
| 272 | if (InputFilename == "-") { |
| 273 | Buffer = MemoryBuffer::getSTDIN(); |
| 274 | } else { |
| 275 | Buffer = MemoryBuffer::getFile(&InputFilename[0], InputFilename.size()); |
| 276 | } |
| 277 | |
| 278 | if (Buffer == 0) |
| 279 | ErrorMessage = "Error reading file '" + InputFilename + "'"; |
| 280 | else |
| 281 | M.reset(ParseBitcodeFile(Buffer, &ErrorMessage)); |
| 282 | |
| 283 | delete Buffer; |
| 284 | } else { |
| 285 | M.reset(ParseBytecodeFile(InputFilename, |
| 286 | Compressor::decompressToNewBuffer, |
| 287 | &ErrorMessage)); |
| 288 | } |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 289 | if (M.get() == 0) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 290 | cerr << argv[0] << ": "; |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 291 | if (ErrorMessage.size()) |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 292 | cerr << ErrorMessage << "\n"; |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 293 | else |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 294 | cerr << "bytecode didn't read correctly.\n"; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 295 | return 1; |
| 296 | } |
Chris Lattner | 76d1229 | 2002-04-18 19:55:25 +0000 | [diff] [blame] | 297 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 298 | // Figure out what stream we are supposed to write to... |
Jeff Cohen | 5fb6ed4 | 2005-01-22 17:36:17 +0000 | [diff] [blame] | 299 | // FIXME: cout is not binary! |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 300 | std::ostream *Out = &std::cout; // Default to printing to stdout... |
| 301 | if (OutputFilename != "-") { |
| 302 | if (!Force && std::ifstream(OutputFilename.c_str())) { |
| 303 | // If force is not specified, make sure not to overwrite a file! |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 304 | cerr << argv[0] << ": error opening '" << OutputFilename |
| 305 | << "': file exists!\n" |
| 306 | << "Use -f command line argument to force output\n"; |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 307 | return 1; |
| 308 | } |
Jeff Cohen | 5fb6ed4 | 2005-01-22 17:36:17 +0000 | [diff] [blame] | 309 | std::ios::openmode io_mode = std::ios::out | std::ios::trunc | |
| 310 | std::ios::binary; |
| 311 | Out = new std::ofstream(OutputFilename.c_str(), io_mode); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 312 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 313 | if (!Out->good()) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 314 | cerr << argv[0] << ": error opening " << OutputFilename << "!\n"; |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 315 | return 1; |
| 316 | } |
Chris Lattner | 76351aa | 2004-04-02 05:06:57 +0000 | [diff] [blame] | 317 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 318 | // Make sure that the Output file gets unlinked from the disk if we get a |
| 319 | // SIGINT |
| 320 | sys::RemoveFileOnSignal(sys::Path(OutputFilename)); |
| 321 | } |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 322 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 323 | // 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] | 324 | // console, print out a warning message and refuse to do it. We don't |
| 325 | // impress anyone by spewing tons of binary goo to a terminal. |
Reid Spencer | 564a571 | 2005-01-05 17:31:55 +0000 | [diff] [blame] | 326 | if (!Force && !NoOutput && CheckBytecodeOutputToConsole(Out,!Quiet)) { |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 327 | NoOutput = true; |
| 328 | } |
Chris Lattner | 9c3b55e | 2003-04-24 19:13:02 +0000 | [diff] [blame] | 329 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 330 | // Create a PassManager to hold and optimize the collection of passes we are |
| 331 | // about to build... |
| 332 | // |
| 333 | PassManager Passes; |
| 334 | |
| 335 | // Add an appropriate TargetData instance for this module... |
Chris Lattner | 831b121 | 2006-06-16 18:23:49 +0000 | [diff] [blame] | 336 | Passes.add(new TargetData(M.get())); |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 337 | |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 338 | // If -std-compile-opts is given, add in all the standard compilation |
| 339 | // optimizations first. This will handle -strip-debug, -disable-inline, |
| 340 | // and -disable-opt as well. |
| 341 | if (StandardCompileOpts) |
| 342 | AddStandardCompilePasses(Passes); |
| 343 | |
| 344 | // otherwise if the -strip-debug command line option was specified, add it. |
| 345 | else if (StripDebug) |
| 346 | addPass(Passes, createStripSymbolsPass(true)); |
| 347 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 348 | // 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] | 349 | for (unsigned i = 0; i < PassList.size(); ++i) { |
| 350 | const PassInfo *PassInf = PassList[i]; |
| 351 | Pass *P = 0; |
| 352 | if (PassInf->getNormalCtor()) |
| 353 | P = PassInf->getNormalCtor()(); |
Chris Lattner | cd950a5 | 2006-12-01 21:59:37 +0000 | [diff] [blame] | 354 | else |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 355 | cerr << argv[0] << ": cannot create pass: " |
| 356 | << PassInf->getPassName() << "\n"; |
Chris Lattner | 7f500f7 | 2006-08-27 22:07:01 +0000 | [diff] [blame] | 357 | if (P) { |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 358 | addPass(Passes, P); |
Chris Lattner | 7f500f7 | 2006-08-27 22:07:01 +0000 | [diff] [blame] | 359 | |
| 360 | if (AnalyzeOnly) { |
Reid Spencer | 3ed469c | 2006-11-02 20:25:50 +0000 | [diff] [blame] | 361 | if (dynamic_cast<BasicBlockPass*>(P)) |
Chris Lattner | 7f500f7 | 2006-08-27 22:07:01 +0000 | [diff] [blame] | 362 | Passes.add(new BasicBlockPassPrinter(PassInf)); |
Reid Spencer | 3ed469c | 2006-11-02 20:25:50 +0000 | [diff] [blame] | 363 | else if (dynamic_cast<FunctionPass*>(P)) |
Chris Lattner | 7f500f7 | 2006-08-27 22:07:01 +0000 | [diff] [blame] | 364 | Passes.add(new FunctionPassPrinter(PassInf)); |
| 365 | else |
| 366 | Passes.add(new ModulePassPrinter(PassInf)); |
| 367 | } |
| 368 | } |
| 369 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 370 | if (PrintEachXForm) |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 371 | Passes.add(new PrintModulePass(&cerr)); |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 372 | } |
| 373 | |
| 374 | // Check that the module is well formed on completion of optimization |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 375 | if (!NoVerify && !VerifyEach) |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 376 | Passes.add(createVerifierPass()); |
| 377 | |
| 378 | // Write bytecode out to disk or cout as the last step... |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 379 | OStream L(*Out); |
Chris Lattner | b330e38 | 2007-05-06 02:42:03 +0000 | [diff] [blame^] | 380 | if (!NoOutput && !AnalyzeOnly) { |
| 381 | if (Bitcode) |
| 382 | Passes.add(CreateBitcodeWriterPass(*Out)); |
| 383 | else |
| 384 | Passes.add(new WriteBytecodePass(&L, false, !NoCompress)); |
| 385 | } |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 386 | |
| 387 | // Now that we have all of the passes ready, run them. |
| 388 | Passes.run(*M.get()); |
| 389 | |
| 390 | return 0; |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 391 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 392 | } catch (const std::string& msg) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 393 | cerr << argv[0] << ": " << msg << "\n"; |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 394 | } catch (...) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 395 | cerr << argv[0] << ": Unexpected unknown exception occurred.\n"; |
Chris Lattner | fb1b3f1 | 2002-01-31 00:47:12 +0000 | [diff] [blame] | 396 | } |
Chris Lattner | 0331524 | 2007-01-31 04:45:28 +0000 | [diff] [blame] | 397 | llvm_shutdown(); |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 398 | return 1; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 399 | } |