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 | // |
Chris Lattner | 21c62da | 2007-12-29 20:44:31 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // 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" |
Devang Patel | 28552da | 2007-06-28 23:09:25 +0000 | [diff] [blame] | 17 | #include "llvm/CallGraphSCCPass.h" |
Chris Lattner | b330e38 | 2007-05-06 02:42:03 +0000 | [diff] [blame] | 18 | #include "llvm/Bitcode/ReaderWriter.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" |
Devang Patel | 1bc8936 | 2007-03-07 00:26:10 +0000 | [diff] [blame] | 21 | #include "llvm/Analysis/LoopPass.h" |
Devang Patel | 28552da | 2007-06-28 23:09:25 +0000 | [diff] [blame] | 22 | #include "llvm/Analysis/CallGraph.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" |
Devang Patel | 9d2968c | 2008-08-27 20:00:27 +0000 | [diff] [blame] | 25 | #include "llvm/Target/TargetMachineRegistry.h" |
| 26 | #include "llvm/Target/SubtargetFeature.h" |
Chris Lattner | 2053a2a | 2002-07-26 21:09:32 +0000 | [diff] [blame] | 27 | #include "llvm/Support/PassNameParser.h" |
Chris Lattner | bed85ff | 2004-05-27 05:41:36 +0000 | [diff] [blame] | 28 | #include "llvm/System/Signals.h" |
Chris Lattner | c30598b | 2006-12-06 01:18:01 +0000 | [diff] [blame] | 29 | #include "llvm/Support/ManagedStatic.h" |
Chris Lattner | b330e38 | 2007-05-06 02:42:03 +0000 | [diff] [blame] | 30 | #include "llvm/Support/MemoryBuffer.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 31 | #include "llvm/Support/PluginLoader.h" |
Bill Wendling | a5b31ca | 2006-11-28 23:33:06 +0000 | [diff] [blame] | 32 | #include "llvm/Support/Streams.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 33 | #include "llvm/Support/SystemUtils.h" |
Reid Spencer | 62c5105 | 2006-08-21 05:34:03 +0000 | [diff] [blame] | 34 | #include "llvm/LinkAllPasses.h" |
Reid Spencer | af303d5 | 2006-06-07 23:03:13 +0000 | [diff] [blame] | 35 | #include "llvm/LinkAllVMCore.h" |
Bill Wendling | 68fe61d | 2006-11-29 00:19:40 +0000 | [diff] [blame] | 36 | #include <iostream> |
Chris Lattner | 73e11d7 | 2001-10-18 06:13:08 +0000 | [diff] [blame] | 37 | #include <fstream> |
Chris Lattner | 6320232 | 2001-11-26 19:22:39 +0000 | [diff] [blame] | 38 | #include <memory> |
Chris Lattner | c0ce68b | 2002-07-23 18:12:22 +0000 | [diff] [blame] | 39 | #include <algorithm> |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 40 | using namespace llvm; |
Chris Lattner | 9d6e7eb | 2002-04-12 18:21:13 +0000 | [diff] [blame] | 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 | c0ce68b | 2002-07-23 18:12:22 +0000 | [diff] [blame] | 48 | // Other command line options... |
Chris Lattner | fb1b3f1 | 2002-01-31 00:47:12 +0000 | [diff] [blame] | 49 | // |
Chris Lattner | 6c8103f | 2003-05-22 20:13:16 +0000 | [diff] [blame] | 50 | static cl::opt<std::string> |
Gabor Greif | a99be51 | 2007-07-05 17:07:56 +0000 | [diff] [blame] | 51 | InputFilename(cl::Positional, cl::desc("<input bitcode file>"), |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 52 | cl::init("-"), cl::value_desc("filename")); |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 53 | |
Chris Lattner | 6c8103f | 2003-05-22 20:13:16 +0000 | [diff] [blame] | 54 | static cl::opt<std::string> |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 55 | OutputFilename("o", cl::desc("Override output filename"), |
Chris Lattner | b592fc2 | 2003-12-10 14:41:33 +0000 | [diff] [blame] | 56 | cl::value_desc("filename"), cl::init("-")); |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 57 | |
| 58 | static cl::opt<bool> |
| 59 | Force("f", cl::desc("Overwrite output files")); |
| 60 | |
| 61 | static cl::opt<bool> |
| 62 | PrintEachXForm("p", cl::desc("Print module after each transformation")); |
| 63 | |
| 64 | static cl::opt<bool> |
Chris Lattner | ddd5b41 | 2003-02-26 20:00:41 +0000 | [diff] [blame] | 65 | NoOutput("disable-output", |
Gabor Greif | a99be51 | 2007-07-05 17:07:56 +0000 | [diff] [blame] | 66 | cl::desc("Do not write result bitcode file"), cl::Hidden); |
Chris Lattner | d70b68e | 2003-02-12 18:43:33 +0000 | [diff] [blame] | 67 | |
| 68 | static cl::opt<bool> |
Chris Lattner | ddd5b41 | 2003-02-26 20:00:41 +0000 | [diff] [blame] | 69 | NoVerify("disable-verify", cl::desc("Do not verify result module"), cl::Hidden); |
Chris Lattner | f3bafc1 | 2003-02-12 18:45:08 +0000 | [diff] [blame] | 70 | |
| 71 | static cl::opt<bool> |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 72 | VerifyEach("verify-each", cl::desc("Verify after each transform")); |
| 73 | |
| 74 | static cl::opt<bool> |
| 75 | StripDebug("strip-debug", |
| 76 | cl::desc("Strip debugger symbol info from translation unit")); |
| 77 | |
| 78 | static cl::opt<bool> |
| 79 | DisableInline("disable-inlining", cl::desc("Do not run the inliner pass")); |
| 80 | |
| 81 | static cl::opt<bool> |
| 82 | DisableOptimizations("disable-opt", |
| 83 | cl::desc("Do not run any optimization passes")); |
| 84 | |
| 85 | static cl::opt<bool> |
| 86 | StandardCompileOpts("std-compile-opts", |
| 87 | cl::desc("Include the standard compile time optimizations")); |
| 88 | |
| 89 | static cl::opt<bool> |
Chris Lattner | 3153e4f | 2004-05-27 20:32:10 +0000 | [diff] [blame] | 90 | Quiet("q", cl::desc("Obsolete option"), cl::Hidden); |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 91 | |
Reid Spencer | ec7eb45 | 2004-05-27 16:28:54 +0000 | [diff] [blame] | 92 | static cl::alias |
| 93 | QuietA("quiet", cl::desc("Alias for -q"), cl::aliasopt(Quiet)); |
| 94 | |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 95 | static cl::opt<bool> |
| 96 | AnalyzeOnly("analyze", cl::desc("Only perform analysis, no optimization")); |
| 97 | |
Devang Patel | 9d2968c | 2008-08-27 20:00:27 +0000 | [diff] [blame] | 98 | static cl::opt<const TargetMachineRegistry::entry*, false, |
| 99 | TargetMachineRegistry::Parser> |
| 100 | MArch("march", cl::desc("Architecture to generate code for:")); |
| 101 | |
| 102 | static cl::opt<std::string> |
| 103 | MCPU("mcpu", |
| 104 | cl::desc("Target a specific cpu type (-mcpu=help for details)"), |
| 105 | cl::value_desc("cpu-name"), |
| 106 | cl::init("")); |
| 107 | |
| 108 | static cl::list<std::string> |
| 109 | MAttrs("mattr", |
| 110 | cl::CommaSeparated, |
| 111 | cl::desc("Target specific attributes (-mattr=help for details)"), |
| 112 | cl::value_desc("a1,+a2,-a3,...")); |
| 113 | |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 114 | // ---------- Define Printers for module and function passes ------------ |
| 115 | namespace { |
| 116 | |
Devang Patel | 28552da | 2007-06-28 23:09:25 +0000 | [diff] [blame] | 117 | struct CallGraphSCCPassPrinter : public CallGraphSCCPass { |
| 118 | static char ID; |
| 119 | const PassInfo *PassToPrint; |
| 120 | CallGraphSCCPassPrinter(const PassInfo *PI) : |
| 121 | CallGraphSCCPass((intptr_t)&ID), PassToPrint(PI) {} |
| 122 | |
| 123 | virtual bool runOnSCC(const std::vector<CallGraphNode *>&SCC) { |
| 124 | if (!Quiet) { |
| 125 | cout << "Printing analysis '" << PassToPrint->getPassName() << "':\n"; |
| 126 | |
| 127 | for (unsigned i = 0, e = SCC.size(); i != e; ++i) { |
| 128 | Function *F = SCC[i]->getFunction(); |
| 129 | if (F) |
| 130 | getAnalysisID<Pass>(PassToPrint).print(cout, F->getParent()); |
| 131 | } |
| 132 | } |
| 133 | // Get and print pass... |
| 134 | return false; |
| 135 | } |
| 136 | |
| 137 | virtual const char *getPassName() const { return "'Pass' Printer"; } |
| 138 | |
| 139 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 140 | AU.addRequiredID(PassToPrint); |
| 141 | AU.setPreservesAll(); |
| 142 | } |
| 143 | }; |
| 144 | |
| 145 | char CallGraphSCCPassPrinter::ID = 0; |
| 146 | |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 147 | struct ModulePassPrinter : public ModulePass { |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 148 | static char ID; |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 149 | const PassInfo *PassToPrint; |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 150 | ModulePassPrinter(const PassInfo *PI) : ModulePass((intptr_t)&ID), |
| 151 | PassToPrint(PI) {} |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 152 | |
| 153 | virtual bool runOnModule(Module &M) { |
| 154 | if (!Quiet) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 155 | cout << "Printing analysis '" << PassToPrint->getPassName() << "':\n"; |
| 156 | getAnalysisID<Pass>(PassToPrint).print(cout, &M); |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | // Get and print pass... |
| 160 | return false; |
| 161 | } |
| 162 | |
| 163 | virtual const char *getPassName() const { return "'Pass' Printer"; } |
| 164 | |
| 165 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 166 | AU.addRequiredID(PassToPrint); |
| 167 | AU.setPreservesAll(); |
| 168 | } |
| 169 | }; |
| 170 | |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 171 | char ModulePassPrinter::ID = 0; |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 172 | struct FunctionPassPrinter : public FunctionPass { |
| 173 | const PassInfo *PassToPrint; |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 174 | static char ID; |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 175 | FunctionPassPrinter(const PassInfo *PI) : FunctionPass((intptr_t)&ID), |
| 176 | PassToPrint(PI) {} |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 177 | |
| 178 | virtual bool runOnFunction(Function &F) { |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 179 | if (!Quiet) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 180 | cout << "Printing analysis '" << PassToPrint->getPassName() |
| 181 | << "' for function '" << F.getName() << "':\n"; |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 182 | } |
| 183 | // Get and print pass... |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 184 | getAnalysisID<Pass>(PassToPrint).print(cout, F.getParent()); |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 185 | return false; |
| 186 | } |
| 187 | |
| 188 | virtual const char *getPassName() const { return "FunctionPass Printer"; } |
| 189 | |
| 190 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 191 | AU.addRequiredID(PassToPrint); |
| 192 | AU.setPreservesAll(); |
| 193 | } |
| 194 | }; |
| 195 | |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 196 | char FunctionPassPrinter::ID = 0; |
Devang Patel | 56fb164 | 2007-07-05 15:32:03 +0000 | [diff] [blame] | 197 | |
| 198 | struct LoopPassPrinter : public LoopPass { |
| 199 | static char ID; |
| 200 | const PassInfo *PassToPrint; |
| 201 | LoopPassPrinter(const PassInfo *PI) : |
| 202 | LoopPass((intptr_t)&ID), PassToPrint(PI) {} |
| 203 | |
| 204 | virtual bool runOnLoop(Loop *L, LPPassManager &LPM) { |
| 205 | if (!Quiet) { |
| 206 | cout << "Printing analysis '" << PassToPrint->getPassName() << "':\n"; |
| 207 | getAnalysisID<Pass>(PassToPrint).print(cout, |
| 208 | L->getHeader()->getParent()->getParent()); |
| 209 | } |
| 210 | // Get and print pass... |
| 211 | return false; |
| 212 | } |
| 213 | |
| 214 | virtual const char *getPassName() const { return "'Pass' Printer"; } |
| 215 | |
| 216 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 217 | AU.addRequiredID(PassToPrint); |
| 218 | AU.setPreservesAll(); |
| 219 | } |
| 220 | }; |
| 221 | |
| 222 | char LoopPassPrinter::ID = 0; |
| 223 | |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 224 | struct BasicBlockPassPrinter : public BasicBlockPass { |
| 225 | const PassInfo *PassToPrint; |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 226 | static char ID; |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 227 | BasicBlockPassPrinter(const PassInfo *PI) |
| 228 | : BasicBlockPass((intptr_t)&ID), PassToPrint(PI) {} |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 229 | |
| 230 | virtual bool runOnBasicBlock(BasicBlock &BB) { |
| 231 | if (!Quiet) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 232 | cout << "Printing Analysis info for BasicBlock '" << BB.getName() |
| 233 | << "': Pass " << PassToPrint->getPassName() << ":\n"; |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | // Get and print pass... |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 237 | getAnalysisID<Pass>(PassToPrint).print(cout, BB.getParent()->getParent()); |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 238 | return false; |
| 239 | } |
| 240 | |
| 241 | virtual const char *getPassName() const { return "BasicBlockPass Printer"; } |
| 242 | |
| 243 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 244 | AU.addRequiredID(PassToPrint); |
| 245 | AU.setPreservesAll(); |
| 246 | } |
| 247 | }; |
| 248 | |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 249 | char BasicBlockPassPrinter::ID = 0; |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 250 | inline void addPass(PassManager &PM, Pass *P) { |
| 251 | // Add the pass to the pass manager... |
| 252 | PM.add(P); |
| 253 | |
| 254 | // If we are verifying all of the intermediate steps, add the verifier... |
| 255 | if (VerifyEach) PM.add(createVerifierPass()); |
| 256 | } |
| 257 | |
| 258 | void AddStandardCompilePasses(PassManager &PM) { |
| 259 | PM.add(createVerifierPass()); // Verify that input is correct |
| 260 | |
| 261 | addPass(PM, createLowerSetJmpPass()); // Lower llvm.setjmp/.longjmp |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 262 | |
| 263 | // If the -strip-debug command line option was specified, do it. |
| 264 | if (StripDebug) |
| 265 | addPass(PM, createStripSymbolsPass(true)); |
| 266 | |
| 267 | if (DisableOptimizations) return; |
| 268 | |
| 269 | addPass(PM, createRaiseAllocationsPass()); // call %malloc -> malloc inst |
| 270 | addPass(PM, createCFGSimplificationPass()); // Clean up disgusting code |
| 271 | addPass(PM, createPromoteMemoryToRegisterPass());// Kill useless allocas |
| 272 | addPass(PM, createGlobalOptimizerPass()); // Optimize out global vars |
| 273 | addPass(PM, createGlobalDCEPass()); // Remove unused fns and globs |
| 274 | addPass(PM, createIPConstantPropagationPass());// IP Constant Propagation |
| 275 | addPass(PM, createDeadArgEliminationPass()); // Dead argument elimination |
| 276 | addPass(PM, createInstructionCombiningPass()); // Clean up after IPCP & DAE |
| 277 | addPass(PM, createCFGSimplificationPass()); // Clean up after IPCP & DAE |
| 278 | |
| 279 | addPass(PM, createPruneEHPass()); // Remove dead EH info |
| 280 | |
| 281 | if (!DisableInline) |
| 282 | addPass(PM, createFunctionInliningPass()); // Inline small functions |
| 283 | addPass(PM, createArgumentPromotionPass()); // Scalarize uninlined fn args |
| 284 | |
Chris Lattner | 866b9e1 | 2008-05-02 22:05:06 +0000 | [diff] [blame] | 285 | addPass(PM, createSimplifyLibCallsPass()); // Library Call Optimizations |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 286 | addPass(PM, createInstructionCombiningPass()); // Cleanup for scalarrepl. |
Chris Lattner | 2510c3b | 2008-04-21 04:22:09 +0000 | [diff] [blame] | 287 | addPass(PM, createJumpThreadingPass()); // Thread jumps. |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 288 | addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs |
Evan Cheng | 74b1e14 | 2007-07-17 20:07:21 +0000 | [diff] [blame] | 289 | addPass(PM, createScalarReplAggregatesPass()); // Break up aggregate allocas |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 290 | addPass(PM, createInstructionCombiningPass()); // Combine silly seq's |
| 291 | addPass(PM, createCondPropagationPass()); // Propagate conditionals |
| 292 | |
| 293 | addPass(PM, createTailCallEliminationPass()); // Eliminate tail calls |
| 294 | addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs |
| 295 | addPass(PM, createReassociatePass()); // Reassociate expressions |
Devang Patel | 0aa37f4 | 2007-04-10 15:43:36 +0000 | [diff] [blame] | 296 | addPass(PM, createLoopRotatePass()); |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 297 | addPass(PM, createLICMPass()); // Hoist loop invariants |
| 298 | addPass(PM, createLoopUnswitchPass()); // Unswitch loops. |
Devang Patel | 305743d | 2007-09-04 20:46:58 +0000 | [diff] [blame] | 299 | addPass(PM, createLoopIndexSplitPass()); // Index split loops. |
Devang Patel | 8ffe2e2 | 2008-05-14 18:04:30 +0000 | [diff] [blame] | 300 | // FIXME : Removing instcombine causes nestedloop regression. |
| 301 | addPass(PM, createInstructionCombiningPass()); |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 302 | addPass(PM, createIndVarSimplifyPass()); // Canonicalize indvars |
Owen Anderson | 4982bab | 2008-05-10 07:10:24 +0000 | [diff] [blame] | 303 | addPass(PM, createLoopDeletionPass()); // Delete dead loops |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 304 | addPass(PM, createLoopUnrollPass()); // Unroll small loops |
| 305 | addPass(PM, createInstructionCombiningPass()); // Clean up after the unroller |
Owen Anderson | d06eb2c | 2007-09-08 22:23:52 +0000 | [diff] [blame] | 306 | addPass(PM, createGVNPass()); // Remove redundancies |
Evan Cheng | 5d4ed3b | 2008-04-10 01:33:05 +0000 | [diff] [blame] | 307 | addPass(PM, createMemCpyOptPass()); // Remove memcpy / form memset |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 308 | addPass(PM, createSCCPPass()); // Constant prop with SCCP |
| 309 | |
| 310 | // Run instcombine after redundancy elimination to exploit opportunities |
| 311 | // opened up by them. |
| 312 | addPass(PM, createInstructionCombiningPass()); |
| 313 | addPass(PM, createCondPropagationPass()); // Propagate conditionals |
| 314 | |
Owen Anderson | f6a05f9 | 2007-08-01 06:36:51 +0000 | [diff] [blame] | 315 | addPass(PM, createDeadStoreEliminationPass()); // Delete dead stores |
Owen Anderson | c5b2710 | 2008-05-29 08:48:21 +0000 | [diff] [blame] | 316 | addPass(PM, createAggressiveDCEPass()); // Delete dead instructions |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 317 | addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs |
Duncan Sands | fa191e4 | 2008-04-17 12:03:38 +0000 | [diff] [blame] | 318 | addPass(PM, createStripDeadPrototypesPass()); // Get rid of dead prototypes |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 319 | addPass(PM, createDeadTypeEliminationPass()); // Eliminate dead types |
| 320 | addPass(PM, createConstantMergePass()); // Merge dup global constants |
| 321 | } |
| 322 | |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 323 | } // anonymous namespace |
| 324 | |
Chris Lattner | 0be4101 | 2002-02-01 04:54:11 +0000 | [diff] [blame] | 325 | |
Chris Lattner | c0ce68b | 2002-07-23 18:12:22 +0000 | [diff] [blame] | 326 | //===----------------------------------------------------------------------===// |
| 327 | // main for opt |
| 328 | // |
Devang Patel | 9d2968c | 2008-08-27 20:00:27 +0000 | [diff] [blame] | 329 | |
| 330 | TargetMachine *getTargetMachine(Module &Mod) { |
| 331 | |
| 332 | if (MArch == 0) { |
| 333 | std::string Err; |
| 334 | MArch = |
| 335 | TargetMachineRegistry::getClosestStaticTargetForModule(Mod, Err); |
| 336 | if (MArch == 0) { |
| 337 | std::cerr << "Error auto-selecting target for module '" |
| 338 | << Err << "'. Please use the -march option to explicitly " |
| 339 | << "pick a target.\n"; |
| 340 | return NULL; |
| 341 | } |
| 342 | } |
| 343 | |
| 344 | // Package up features to be passed to target/subtarget |
| 345 | std::string FeaturesStr; |
| 346 | if (MCPU.size() || MAttrs.size()) { |
| 347 | SubtargetFeatures Features; |
| 348 | Features.setCPU(MCPU); |
| 349 | for (unsigned i = 0; i != MAttrs.size(); ++i) |
| 350 | Features.AddFeature(MAttrs[i]); |
| 351 | FeaturesStr = Features.getString(); |
| 352 | } |
| 353 | |
| 354 | TargetMachine *Target = MArch->CtorFn(Mod, FeaturesStr); |
| 355 | assert(Target && "Could not allocate target machine!"); |
| 356 | return Target; |
| 357 | } |
| 358 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 359 | int main(int argc, char **argv) { |
Chris Lattner | c30598b | 2006-12-06 01:18:01 +0000 | [diff] [blame] | 360 | llvm_shutdown_obj X; // Call llvm_shutdown() on exit. |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 361 | try { |
| 362 | cl::ParseCommandLineOptions(argc, argv, |
Dan Gohman | 82a13c9 | 2007-10-08 15:45:12 +0000 | [diff] [blame] | 363 | "llvm .bc -> .bc modular optimizer and analysis printer\n"); |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 364 | sys::PrintStackTraceOnErrorSignal(); |
Chris Lattner | fb1b3f1 | 2002-01-31 00:47:12 +0000 | [diff] [blame] | 365 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 366 | std::string ErrorMessage; |
Vikram S. Adve | 18fdfc4 | 2002-09-16 16:09:43 +0000 | [diff] [blame] | 367 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 368 | // Load the input module... |
Chris Lattner | b330e38 | 2007-05-06 02:42:03 +0000 | [diff] [blame] | 369 | std::auto_ptr<Module> M; |
Chris Lattner | 065344d | 2007-05-06 23:45:49 +0000 | [diff] [blame] | 370 | if (MemoryBuffer *Buffer |
| 371 | = MemoryBuffer::getFileOrSTDIN(InputFilename, &ErrorMessage)) { |
Chris Lattner | 744879e | 2007-05-06 09:32:02 +0000 | [diff] [blame] | 372 | M.reset(ParseBitcodeFile(Buffer, &ErrorMessage)); |
Chris Lattner | 065344d | 2007-05-06 23:45:49 +0000 | [diff] [blame] | 373 | delete Buffer; |
| 374 | } |
Chris Lattner | 744879e | 2007-05-06 09:32:02 +0000 | [diff] [blame] | 375 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 376 | if (M.get() == 0) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 377 | cerr << argv[0] << ": "; |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 378 | if (ErrorMessage.size()) |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 379 | cerr << ErrorMessage << "\n"; |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 380 | else |
Gabor Greif | a99be51 | 2007-07-05 17:07:56 +0000 | [diff] [blame] | 381 | cerr << "bitcode didn't read correctly.\n"; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 382 | return 1; |
| 383 | } |
Chris Lattner | 76d1229 | 2002-04-18 19:55:25 +0000 | [diff] [blame] | 384 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 385 | // Figure out what stream we are supposed to write to... |
Jeff Cohen | 5fb6ed4 | 2005-01-22 17:36:17 +0000 | [diff] [blame] | 386 | // FIXME: cout is not binary! |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 387 | std::ostream *Out = &std::cout; // Default to printing to stdout... |
| 388 | if (OutputFilename != "-") { |
| 389 | if (!Force && std::ifstream(OutputFilename.c_str())) { |
| 390 | // If force is not specified, make sure not to overwrite a file! |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 391 | cerr << argv[0] << ": error opening '" << OutputFilename |
| 392 | << "': file exists!\n" |
| 393 | << "Use -f command line argument to force output\n"; |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 394 | return 1; |
| 395 | } |
Jeff Cohen | 5fb6ed4 | 2005-01-22 17:36:17 +0000 | [diff] [blame] | 396 | std::ios::openmode io_mode = std::ios::out | std::ios::trunc | |
| 397 | std::ios::binary; |
| 398 | Out = new std::ofstream(OutputFilename.c_str(), io_mode); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 399 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 400 | if (!Out->good()) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 401 | cerr << argv[0] << ": error opening " << OutputFilename << "!\n"; |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 402 | return 1; |
| 403 | } |
Chris Lattner | 76351aa | 2004-04-02 05:06:57 +0000 | [diff] [blame] | 404 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 405 | // Make sure that the Output file gets unlinked from the disk if we get a |
| 406 | // SIGINT |
| 407 | sys::RemoveFileOnSignal(sys::Path(OutputFilename)); |
| 408 | } |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 409 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 410 | // 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] | 411 | // console, print out a warning message and refuse to do it. We don't |
| 412 | // impress anyone by spewing tons of binary goo to a terminal. |
Gabor Greif | a99be51 | 2007-07-05 17:07:56 +0000 | [diff] [blame] | 413 | if (!Force && !NoOutput && CheckBitcodeOutputToConsole(Out,!Quiet)) { |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 414 | NoOutput = true; |
| 415 | } |
Chris Lattner | 9c3b55e | 2003-04-24 19:13:02 +0000 | [diff] [blame] | 416 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 417 | // Create a PassManager to hold and optimize the collection of passes we are |
| 418 | // about to build... |
| 419 | // |
| 420 | PassManager Passes; |
| 421 | |
| 422 | // Add an appropriate TargetData instance for this module... |
Chris Lattner | 831b121 | 2006-06-16 18:23:49 +0000 | [diff] [blame] | 423 | Passes.add(new TargetData(M.get())); |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 424 | |
Chris Lattner | 3dda08a | 2008-07-13 19:35:21 +0000 | [diff] [blame] | 425 | // If the -strip-debug command line option was specified, add it. If |
| 426 | // -std-compile-opts was also specified, it will handle StripDebug. |
| 427 | if (StripDebug && !StandardCompileOpts) |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 428 | addPass(Passes, createStripSymbolsPass(true)); |
| 429 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 430 | // 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] | 431 | for (unsigned i = 0; i < PassList.size(); ++i) { |
Duncan Sands | 56eb133 | 2008-07-13 20:14:38 +0000 | [diff] [blame] | 432 | // Check to see if -std-compile-opts was specified before this option. If |
Chris Lattner | 3dda08a | 2008-07-13 19:35:21 +0000 | [diff] [blame] | 433 | // so, handle it. |
| 434 | if (StandardCompileOpts && |
| 435 | StandardCompileOpts.getPosition() < PassList.getPosition(i)) { |
| 436 | AddStandardCompilePasses(Passes); |
| 437 | StandardCompileOpts = false; |
| 438 | } |
| 439 | |
Chris Lattner | 7f500f7 | 2006-08-27 22:07:01 +0000 | [diff] [blame] | 440 | const PassInfo *PassInf = PassList[i]; |
| 441 | Pass *P = 0; |
| 442 | if (PassInf->getNormalCtor()) |
| 443 | P = PassInf->getNormalCtor()(); |
Chris Lattner | cd950a5 | 2006-12-01 21:59:37 +0000 | [diff] [blame] | 444 | else |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 445 | cerr << argv[0] << ": cannot create pass: " |
| 446 | << PassInf->getPassName() << "\n"; |
Chris Lattner | 7f500f7 | 2006-08-27 22:07:01 +0000 | [diff] [blame] | 447 | if (P) { |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 448 | addPass(Passes, P); |
Chris Lattner | 7f500f7 | 2006-08-27 22:07:01 +0000 | [diff] [blame] | 449 | |
| 450 | if (AnalyzeOnly) { |
Reid Spencer | 3ed469c | 2006-11-02 20:25:50 +0000 | [diff] [blame] | 451 | if (dynamic_cast<BasicBlockPass*>(P)) |
Chris Lattner | 7f500f7 | 2006-08-27 22:07:01 +0000 | [diff] [blame] | 452 | Passes.add(new BasicBlockPassPrinter(PassInf)); |
Devang Patel | 56fb164 | 2007-07-05 15:32:03 +0000 | [diff] [blame] | 453 | else if (dynamic_cast<LoopPass*>(P)) |
| 454 | Passes.add(new LoopPassPrinter(PassInf)); |
Reid Spencer | 3ed469c | 2006-11-02 20:25:50 +0000 | [diff] [blame] | 455 | else if (dynamic_cast<FunctionPass*>(P)) |
Chris Lattner | 7f500f7 | 2006-08-27 22:07:01 +0000 | [diff] [blame] | 456 | Passes.add(new FunctionPassPrinter(PassInf)); |
Devang Patel | 28552da | 2007-06-28 23:09:25 +0000 | [diff] [blame] | 457 | else if (dynamic_cast<CallGraphSCCPass*>(P)) |
| 458 | Passes.add(new CallGraphSCCPassPrinter(PassInf)); |
Chris Lattner | 7f500f7 | 2006-08-27 22:07:01 +0000 | [diff] [blame] | 459 | else |
| 460 | Passes.add(new ModulePassPrinter(PassInf)); |
| 461 | } |
| 462 | } |
| 463 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 464 | if (PrintEachXForm) |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 465 | Passes.add(new PrintModulePass(&cerr)); |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 466 | } |
Chris Lattner | 3dda08a | 2008-07-13 19:35:21 +0000 | [diff] [blame] | 467 | |
| 468 | // If -std-compile-opts was specified at the end of the pass list, add them. |
| 469 | if (StandardCompileOpts) { |
| 470 | AddStandardCompilePasses(Passes); |
| 471 | StandardCompileOpts = false; |
| 472 | } |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 473 | |
| 474 | // Check that the module is well formed on completion of optimization |
Reid Spencer | 74ed997 | 2007-02-02 14:46:29 +0000 | [diff] [blame] | 475 | if (!NoVerify && !VerifyEach) |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 476 | Passes.add(createVerifierPass()); |
| 477 | |
Gabor Greif | a99be51 | 2007-07-05 17:07:56 +0000 | [diff] [blame] | 478 | // Write bitcode out to disk or cout as the last step... |
Chris Lattner | 744879e | 2007-05-06 09:32:02 +0000 | [diff] [blame] | 479 | if (!NoOutput && !AnalyzeOnly) |
| 480 | Passes.add(CreateBitcodeWriterPass(*Out)); |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 481 | |
| 482 | // Now that we have all of the passes ready, run them. |
| 483 | Passes.run(*M.get()); |
| 484 | |
Chris Lattner | d44ae90 | 2007-05-06 19:17:23 +0000 | [diff] [blame] | 485 | // Delete the ofstream. |
| 486 | if (Out != &std::cout) |
| 487 | delete Out; |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 488 | return 0; |
Reid Spencer | fd90dd5 | 2006-08-18 06:34:30 +0000 | [diff] [blame] | 489 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 490 | } catch (const std::string& msg) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 491 | cerr << argv[0] << ": " << msg << "\n"; |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 492 | } catch (...) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 493 | cerr << argv[0] << ": Unexpected unknown exception occurred.\n"; |
Chris Lattner | fb1b3f1 | 2002-01-31 00:47:12 +0000 | [diff] [blame] | 494 | } |
Chris Lattner | 0331524 | 2007-01-31 04:45:28 +0000 | [diff] [blame] | 495 | llvm_shutdown(); |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 496 | return 1; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 497 | } |