blob: 19dcb2b782c63f81aac03678a70e2a5918180954 [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//
Chris Lattner21c62da2007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// 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"
Devang Patel28552da2007-06-28 23:09:25 +000017#include "llvm/CallGraphSCCPass.h"
Chris Lattnerb330e382007-05-06 02:42:03 +000018#include "llvm/Bitcode/ReaderWriter.h"
Chris Lattnerffa6f9c2001-10-19 15:39:14 +000019#include "llvm/Assembly/PrintModulePass.h"
Chris Lattner22d26d72002-02-20 17:56:53 +000020#include "llvm/Analysis/Verifier.h"
Devang Patel1bc89362007-03-07 00:26:10 +000021#include "llvm/Analysis/LoopPass.h"
Devang Patel28552da2007-06-28 23:09:25 +000022#include "llvm/Analysis/CallGraph.h"
Owen Anderson07000c62006-05-12 06:33:49 +000023#include "llvm/Target/TargetData.h"
Vikram S. Adve18fdfc42002-09-16 16:09:43 +000024#include "llvm/Target/TargetMachine.h"
Chris Lattner2053a2a2002-07-26 21:09:32 +000025#include "llvm/Support/PassNameParser.h"
Chris Lattnerbed85ff2004-05-27 05:41:36 +000026#include "llvm/System/Signals.h"
Chris Lattnerc30598b2006-12-06 01:18:01 +000027#include "llvm/Support/ManagedStatic.h"
Chris Lattnerb330e382007-05-06 02:42:03 +000028#include "llvm/Support/MemoryBuffer.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000029#include "llvm/Support/PluginLoader.h"
Bill Wendlinga5b31ca2006-11-28 23:33:06 +000030#include "llvm/Support/Streams.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000031#include "llvm/Support/SystemUtils.h"
Reid Spencer62c51052006-08-21 05:34:03 +000032#include "llvm/LinkAllPasses.h"
Reid Spenceraf303d52006-06-07 23:03:13 +000033#include "llvm/LinkAllVMCore.h"
Bill Wendling68fe61d2006-11-29 00:19:40 +000034#include <iostream>
Chris Lattner73e11d72001-10-18 06:13:08 +000035#include <fstream>
Chris Lattner63202322001-11-26 19:22:39 +000036#include <memory>
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000037#include <algorithm>
Brian Gaeked0fde302003-11-11 22:41:34 +000038using namespace llvm;
Chris Lattner9d6e7eb2002-04-12 18:21:13 +000039
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000040// The OptimizationList is automatically populated with registered Passes by the
41// PassNameParser.
42//
Chris Lattner7f500f72006-08-27 22:07:01 +000043static cl::list<const PassInfo*, bool, PassNameParser>
44PassList(cl::desc("Optimizations available:"));
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000045
Chris Lattnerc0ce68b2002-07-23 18:12:22 +000046// Other command line options...
Chris Lattnerfb1b3f12002-01-31 00:47:12 +000047//
Chris Lattner6c8103f2003-05-22 20:13:16 +000048static cl::opt<std::string>
Gabor Greifa99be512007-07-05 17:07:56 +000049InputFilename(cl::Positional, cl::desc("<input bitcode file>"),
Reid Spencerfd90dd52006-08-18 06:34:30 +000050 cl::init("-"), cl::value_desc("filename"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000051
Chris Lattner6c8103f2003-05-22 20:13:16 +000052static cl::opt<std::string>
Chris Lattner5ff62e92002-07-22 02:10:13 +000053OutputFilename("o", cl::desc("Override output filename"),
Chris Lattnerb592fc22003-12-10 14:41:33 +000054 cl::value_desc("filename"), cl::init("-"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000055
56static cl::opt<bool>
57Force("f", cl::desc("Overwrite output files"));
58
59static cl::opt<bool>
60PrintEachXForm("p", cl::desc("Print module after each transformation"));
61
62static cl::opt<bool>
Chris Lattnerddd5b412003-02-26 20:00:41 +000063NoOutput("disable-output",
Gabor Greifa99be512007-07-05 17:07:56 +000064 cl::desc("Do not write result bitcode file"), cl::Hidden);
Chris Lattnerd70b68e2003-02-12 18:43:33 +000065
66static cl::opt<bool>
Chris Lattnerddd5b412003-02-26 20:00:41 +000067NoVerify("disable-verify", cl::desc("Do not verify result module"), cl::Hidden);
Chris Lattnerf3bafc12003-02-12 18:45:08 +000068
69static cl::opt<bool>
Reid Spencer74ed9972007-02-02 14:46:29 +000070VerifyEach("verify-each", cl::desc("Verify after each transform"));
71
72static cl::opt<bool>
73StripDebug("strip-debug",
74 cl::desc("Strip debugger symbol info from translation unit"));
75
76static cl::opt<bool>
77DisableInline("disable-inlining", cl::desc("Do not run the inliner pass"));
78
79static cl::opt<bool>
80DisableOptimizations("disable-opt",
81 cl::desc("Do not run any optimization passes"));
82
83static cl::opt<bool>
84StandardCompileOpts("std-compile-opts",
85 cl::desc("Include the standard compile time optimizations"));
86
87static cl::opt<bool>
Chris Lattner3153e4f2004-05-27 20:32:10 +000088Quiet("q", cl::desc("Obsolete option"), cl::Hidden);
Chris Lattner5ff62e92002-07-22 02:10:13 +000089
Reid Spencerec7eb452004-05-27 16:28:54 +000090static cl::alias
91QuietA("quiet", cl::desc("Alias for -q"), cl::aliasopt(Quiet));
92
Reid Spencerfd90dd52006-08-18 06:34:30 +000093static cl::opt<bool>
94AnalyzeOnly("analyze", cl::desc("Only perform analysis, no optimization"));
95
Reid Spencerfd90dd52006-08-18 06:34:30 +000096// ---------- Define Printers for module and function passes ------------
97namespace {
98
Devang Patel28552da2007-06-28 23:09:25 +000099struct CallGraphSCCPassPrinter : public CallGraphSCCPass {
100 static char ID;
101 const PassInfo *PassToPrint;
102 CallGraphSCCPassPrinter(const PassInfo *PI) :
103 CallGraphSCCPass((intptr_t)&ID), PassToPrint(PI) {}
104
105 virtual bool runOnSCC(const std::vector<CallGraphNode *>&SCC) {
106 if (!Quiet) {
107 cout << "Printing analysis '" << PassToPrint->getPassName() << "':\n";
108
109 for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
110 Function *F = SCC[i]->getFunction();
111 if (F)
112 getAnalysisID<Pass>(PassToPrint).print(cout, F->getParent());
113 }
114 }
115 // Get and print pass...
116 return false;
117 }
118
119 virtual const char *getPassName() const { return "'Pass' Printer"; }
120
121 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
122 AU.addRequiredID(PassToPrint);
123 AU.setPreservesAll();
124 }
125};
126
127char CallGraphSCCPassPrinter::ID = 0;
128
Reid Spencerfd90dd52006-08-18 06:34:30 +0000129struct ModulePassPrinter : public ModulePass {
Devang Patel19974732007-05-03 01:11:54 +0000130 static char ID;
Reid Spencerfd90dd52006-08-18 06:34:30 +0000131 const PassInfo *PassToPrint;
Devang Patel794fd752007-05-01 21:15:47 +0000132 ModulePassPrinter(const PassInfo *PI) : ModulePass((intptr_t)&ID),
133 PassToPrint(PI) {}
Reid Spencerfd90dd52006-08-18 06:34:30 +0000134
135 virtual bool runOnModule(Module &M) {
136 if (!Quiet) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000137 cout << "Printing analysis '" << PassToPrint->getPassName() << "':\n";
138 getAnalysisID<Pass>(PassToPrint).print(cout, &M);
Reid Spencerfd90dd52006-08-18 06:34:30 +0000139 }
140
141 // Get and print pass...
142 return false;
143 }
144
145 virtual const char *getPassName() const { return "'Pass' Printer"; }
146
147 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
148 AU.addRequiredID(PassToPrint);
149 AU.setPreservesAll();
150 }
151};
152
Devang Patel19974732007-05-03 01:11:54 +0000153char ModulePassPrinter::ID = 0;
Reid Spencerfd90dd52006-08-18 06:34:30 +0000154struct FunctionPassPrinter : public FunctionPass {
155 const PassInfo *PassToPrint;
Devang Patel19974732007-05-03 01:11:54 +0000156 static char ID;
Devang Patel794fd752007-05-01 21:15:47 +0000157 FunctionPassPrinter(const PassInfo *PI) : FunctionPass((intptr_t)&ID),
158 PassToPrint(PI) {}
Reid Spencerfd90dd52006-08-18 06:34:30 +0000159
160 virtual bool runOnFunction(Function &F) {
Devang Patel794fd752007-05-01 21:15:47 +0000161 if (!Quiet) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000162 cout << "Printing analysis '" << PassToPrint->getPassName()
163 << "' for function '" << F.getName() << "':\n";
Reid Spencerfd90dd52006-08-18 06:34:30 +0000164 }
165 // Get and print pass...
Bill Wendlinge8156192006-12-07 01:30:32 +0000166 getAnalysisID<Pass>(PassToPrint).print(cout, F.getParent());
Reid Spencerfd90dd52006-08-18 06:34:30 +0000167 return false;
168 }
169
170 virtual const char *getPassName() const { return "FunctionPass Printer"; }
171
172 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
173 AU.addRequiredID(PassToPrint);
174 AU.setPreservesAll();
175 }
176};
177
Devang Patel19974732007-05-03 01:11:54 +0000178char FunctionPassPrinter::ID = 0;
Devang Patel56fb1642007-07-05 15:32:03 +0000179
180struct LoopPassPrinter : public LoopPass {
181 static char ID;
182 const PassInfo *PassToPrint;
183 LoopPassPrinter(const PassInfo *PI) :
184 LoopPass((intptr_t)&ID), PassToPrint(PI) {}
185
186 virtual bool runOnLoop(Loop *L, LPPassManager &LPM) {
187 if (!Quiet) {
188 cout << "Printing analysis '" << PassToPrint->getPassName() << "':\n";
189 getAnalysisID<Pass>(PassToPrint).print(cout,
190 L->getHeader()->getParent()->getParent());
191 }
192 // Get and print pass...
193 return false;
194 }
195
196 virtual const char *getPassName() const { return "'Pass' Printer"; }
197
198 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
199 AU.addRequiredID(PassToPrint);
200 AU.setPreservesAll();
201 }
202};
203
204char LoopPassPrinter::ID = 0;
205
Reid Spencerfd90dd52006-08-18 06:34:30 +0000206struct BasicBlockPassPrinter : public BasicBlockPass {
207 const PassInfo *PassToPrint;
Devang Patel19974732007-05-03 01:11:54 +0000208 static char ID;
Devang Patel794fd752007-05-01 21:15:47 +0000209 BasicBlockPassPrinter(const PassInfo *PI)
210 : BasicBlockPass((intptr_t)&ID), PassToPrint(PI) {}
Reid Spencerfd90dd52006-08-18 06:34:30 +0000211
212 virtual bool runOnBasicBlock(BasicBlock &BB) {
213 if (!Quiet) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000214 cout << "Printing Analysis info for BasicBlock '" << BB.getName()
215 << "': Pass " << PassToPrint->getPassName() << ":\n";
Reid Spencerfd90dd52006-08-18 06:34:30 +0000216 }
217
218 // Get and print pass...
Bill Wendlinge8156192006-12-07 01:30:32 +0000219 getAnalysisID<Pass>(PassToPrint).print(cout, BB.getParent()->getParent());
Reid Spencerfd90dd52006-08-18 06:34:30 +0000220 return false;
221 }
222
223 virtual const char *getPassName() const { return "BasicBlockPass Printer"; }
224
225 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
226 AU.addRequiredID(PassToPrint);
227 AU.setPreservesAll();
228 }
229};
230
Devang Patel19974732007-05-03 01:11:54 +0000231char BasicBlockPassPrinter::ID = 0;
Reid Spencer74ed9972007-02-02 14:46:29 +0000232inline void addPass(PassManager &PM, Pass *P) {
233 // Add the pass to the pass manager...
234 PM.add(P);
235
236 // If we are verifying all of the intermediate steps, add the verifier...
237 if (VerifyEach) PM.add(createVerifierPass());
238}
239
240void AddStandardCompilePasses(PassManager &PM) {
241 PM.add(createVerifierPass()); // Verify that input is correct
242
243 addPass(PM, createLowerSetJmpPass()); // Lower llvm.setjmp/.longjmp
Reid Spencer74ed9972007-02-02 14:46:29 +0000244
245 // If the -strip-debug command line option was specified, do it.
246 if (StripDebug)
247 addPass(PM, createStripSymbolsPass(true));
248
249 if (DisableOptimizations) return;
250
251 addPass(PM, createRaiseAllocationsPass()); // call %malloc -> malloc inst
252 addPass(PM, createCFGSimplificationPass()); // Clean up disgusting code
253 addPass(PM, createPromoteMemoryToRegisterPass());// Kill useless allocas
254 addPass(PM, createGlobalOptimizerPass()); // Optimize out global vars
255 addPass(PM, createGlobalDCEPass()); // Remove unused fns and globs
256 addPass(PM, createIPConstantPropagationPass());// IP Constant Propagation
257 addPass(PM, createDeadArgEliminationPass()); // Dead argument elimination
258 addPass(PM, createInstructionCombiningPass()); // Clean up after IPCP & DAE
259 addPass(PM, createCFGSimplificationPass()); // Clean up after IPCP & DAE
260
261 addPass(PM, createPruneEHPass()); // Remove dead EH info
262
263 if (!DisableInline)
264 addPass(PM, createFunctionInliningPass()); // Inline small functions
265 addPass(PM, createArgumentPromotionPass()); // Scalarize uninlined fn args
266
Evan Chengdf045722008-05-16 07:57:10 +0000267 addPass(PM, createTailDuplicationPass()); // Simplify cfg by copying code
Chris Lattner866b9e12008-05-02 22:05:06 +0000268 addPass(PM, createSimplifyLibCallsPass()); // Library Call Optimizations
Reid Spencer74ed9972007-02-02 14:46:29 +0000269 addPass(PM, createInstructionCombiningPass()); // Cleanup for scalarrepl.
Chris Lattner2510c3b2008-04-21 04:22:09 +0000270 addPass(PM, createJumpThreadingPass()); // Thread jumps.
Reid Spencer74ed9972007-02-02 14:46:29 +0000271 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
Evan Cheng74b1e142007-07-17 20:07:21 +0000272 addPass(PM, createScalarReplAggregatesPass()); // Break up aggregate allocas
Reid Spencer74ed9972007-02-02 14:46:29 +0000273 addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
274 addPass(PM, createCondPropagationPass()); // Propagate conditionals
275
276 addPass(PM, createTailCallEliminationPass()); // Eliminate tail calls
277 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
278 addPass(PM, createReassociatePass()); // Reassociate expressions
Devang Patel0aa37f42007-04-10 15:43:36 +0000279 addPass(PM, createLoopRotatePass());
Reid Spencer74ed9972007-02-02 14:46:29 +0000280 addPass(PM, createLICMPass()); // Hoist loop invariants
281 addPass(PM, createLoopUnswitchPass()); // Unswitch loops.
Devang Patel305743d2007-09-04 20:46:58 +0000282 addPass(PM, createLoopIndexSplitPass()); // Index split loops.
Devang Patel8ffe2e22008-05-14 18:04:30 +0000283 // FIXME : Removing instcombine causes nestedloop regression.
284 addPass(PM, createInstructionCombiningPass());
Reid Spencer74ed9972007-02-02 14:46:29 +0000285 addPass(PM, createIndVarSimplifyPass()); // Canonicalize indvars
Owen Anderson4982bab2008-05-10 07:10:24 +0000286 addPass(PM, createLoopDeletionPass()); // Delete dead loops
Reid Spencer74ed9972007-02-02 14:46:29 +0000287 addPass(PM, createLoopUnrollPass()); // Unroll small loops
288 addPass(PM, createInstructionCombiningPass()); // Clean up after the unroller
Owen Andersond06eb2c2007-09-08 22:23:52 +0000289 addPass(PM, createGVNPass()); // Remove redundancies
Evan Cheng5d4ed3b2008-04-10 01:33:05 +0000290 addPass(PM, createMemCpyOptPass()); // Remove memcpy / form memset
Reid Spencer74ed9972007-02-02 14:46:29 +0000291 addPass(PM, createSCCPPass()); // Constant prop with SCCP
292
293 // Run instcombine after redundancy elimination to exploit opportunities
294 // opened up by them.
295 addPass(PM, createInstructionCombiningPass());
296 addPass(PM, createCondPropagationPass()); // Propagate conditionals
297
Owen Andersonf6a05f92007-08-01 06:36:51 +0000298 addPass(PM, createDeadStoreEliminationPass()); // Delete dead stores
Owen Andersonc5b27102008-05-29 08:48:21 +0000299 addPass(PM, createAggressiveDCEPass()); // Delete dead instructions
Reid Spencer74ed9972007-02-02 14:46:29 +0000300 addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
Duncan Sandsfa191e42008-04-17 12:03:38 +0000301 addPass(PM, createStripDeadPrototypesPass()); // Get rid of dead prototypes
Reid Spencer74ed9972007-02-02 14:46:29 +0000302 addPass(PM, createDeadTypeEliminationPass()); // Eliminate dead types
303 addPass(PM, createConstantMergePass()); // Merge dup global constants
304}
305
Reid Spencerfd90dd52006-08-18 06:34:30 +0000306} // anonymous namespace
307
Chris Lattner0be41012002-02-01 04:54:11 +0000308
Chris Lattnerc0ce68b2002-07-23 18:12:22 +0000309//===----------------------------------------------------------------------===//
310// main for opt
311//
Chris Lattner00950542001-06-06 20:29:01 +0000312int main(int argc, char **argv) {
Chris Lattnerc30598b2006-12-06 01:18:01 +0000313 llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000314 try {
315 cl::ParseCommandLineOptions(argc, argv,
Dan Gohman82a13c92007-10-08 15:45:12 +0000316 "llvm .bc -> .bc modular optimizer and analysis printer\n");
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000317 sys::PrintStackTraceOnErrorSignal();
Chris Lattnerfb1b3f12002-01-31 00:47:12 +0000318
Chris Lattner7f500f72006-08-27 22:07:01 +0000319 // Allocate a full target machine description only if necessary.
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000320 // FIXME: The choice of target should be controllable on the command line.
321 std::auto_ptr<TargetMachine> target;
Vikram S. Adve18fdfc42002-09-16 16:09:43 +0000322
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000323 std::string ErrorMessage;
Vikram S. Adve18fdfc42002-09-16 16:09:43 +0000324
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000325 // Load the input module...
Chris Lattnerb330e382007-05-06 02:42:03 +0000326 std::auto_ptr<Module> M;
Chris Lattner065344d2007-05-06 23:45:49 +0000327 if (MemoryBuffer *Buffer
328 = MemoryBuffer::getFileOrSTDIN(InputFilename, &ErrorMessage)) {
Chris Lattner744879e2007-05-06 09:32:02 +0000329 M.reset(ParseBitcodeFile(Buffer, &ErrorMessage));
Chris Lattner065344d2007-05-06 23:45:49 +0000330 delete Buffer;
331 }
Chris Lattner744879e2007-05-06 09:32:02 +0000332
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000333 if (M.get() == 0) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000334 cerr << argv[0] << ": ";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000335 if (ErrorMessage.size())
Bill Wendlinge8156192006-12-07 01:30:32 +0000336 cerr << ErrorMessage << "\n";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000337 else
Gabor Greifa99be512007-07-05 17:07:56 +0000338 cerr << "bitcode didn't read correctly.\n";
Chris Lattner00950542001-06-06 20:29:01 +0000339 return 1;
340 }
Chris Lattner76d12292002-04-18 19:55:25 +0000341
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000342 // Figure out what stream we are supposed to write to...
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000343 // FIXME: cout is not binary!
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000344 std::ostream *Out = &std::cout; // Default to printing to stdout...
345 if (OutputFilename != "-") {
346 if (!Force && std::ifstream(OutputFilename.c_str())) {
347 // If force is not specified, make sure not to overwrite a file!
Bill Wendlinge8156192006-12-07 01:30:32 +0000348 cerr << argv[0] << ": error opening '" << OutputFilename
349 << "': file exists!\n"
350 << "Use -f command line argument to force output\n";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000351 return 1;
352 }
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000353 std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
354 std::ios::binary;
355 Out = new std::ofstream(OutputFilename.c_str(), io_mode);
Chris Lattner00950542001-06-06 20:29:01 +0000356
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000357 if (!Out->good()) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000358 cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000359 return 1;
360 }
Chris Lattner76351aa2004-04-02 05:06:57 +0000361
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000362 // Make sure that the Output file gets unlinked from the disk if we get a
363 // SIGINT
364 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
365 }
Chris Lattner00950542001-06-06 20:29:01 +0000366
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000367 // If the output is set to be emitted to standard out, and standard out is a
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000368 // console, print out a warning message and refuse to do it. We don't
369 // impress anyone by spewing tons of binary goo to a terminal.
Gabor Greifa99be512007-07-05 17:07:56 +0000370 if (!Force && !NoOutput && CheckBitcodeOutputToConsole(Out,!Quiet)) {
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000371 NoOutput = true;
372 }
Chris Lattner9c3b55e2003-04-24 19:13:02 +0000373
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000374 // Create a PassManager to hold and optimize the collection of passes we are
375 // about to build...
376 //
377 PassManager Passes;
378
379 // Add an appropriate TargetData instance for this module...
Chris Lattner831b1212006-06-16 18:23:49 +0000380 Passes.add(new TargetData(M.get()));
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000381
Reid Spencer74ed9972007-02-02 14:46:29 +0000382 // If -std-compile-opts is given, add in all the standard compilation
383 // optimizations first. This will handle -strip-debug, -disable-inline,
384 // and -disable-opt as well.
385 if (StandardCompileOpts)
386 AddStandardCompilePasses(Passes);
387
388 // otherwise if the -strip-debug command line option was specified, add it.
389 else if (StripDebug)
390 addPass(Passes, createStripSymbolsPass(true));
391
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000392 // Create a new optimization pass for each one specified on the command line
Chris Lattner7f500f72006-08-27 22:07:01 +0000393 for (unsigned i = 0; i < PassList.size(); ++i) {
394 const PassInfo *PassInf = PassList[i];
395 Pass *P = 0;
396 if (PassInf->getNormalCtor())
397 P = PassInf->getNormalCtor()();
Chris Lattnercd950a52006-12-01 21:59:37 +0000398 else
Bill Wendlinge8156192006-12-07 01:30:32 +0000399 cerr << argv[0] << ": cannot create pass: "
400 << PassInf->getPassName() << "\n";
Chris Lattner7f500f72006-08-27 22:07:01 +0000401 if (P) {
Reid Spencer74ed9972007-02-02 14:46:29 +0000402 addPass(Passes, P);
Chris Lattner7f500f72006-08-27 22:07:01 +0000403
404 if (AnalyzeOnly) {
Reid Spencer3ed469c2006-11-02 20:25:50 +0000405 if (dynamic_cast<BasicBlockPass*>(P))
Chris Lattner7f500f72006-08-27 22:07:01 +0000406 Passes.add(new BasicBlockPassPrinter(PassInf));
Devang Patel56fb1642007-07-05 15:32:03 +0000407 else if (dynamic_cast<LoopPass*>(P))
408 Passes.add(new LoopPassPrinter(PassInf));
Reid Spencer3ed469c2006-11-02 20:25:50 +0000409 else if (dynamic_cast<FunctionPass*>(P))
Chris Lattner7f500f72006-08-27 22:07:01 +0000410 Passes.add(new FunctionPassPrinter(PassInf));
Devang Patel28552da2007-06-28 23:09:25 +0000411 else if (dynamic_cast<CallGraphSCCPass*>(P))
412 Passes.add(new CallGraphSCCPassPrinter(PassInf));
Chris Lattner7f500f72006-08-27 22:07:01 +0000413 else
414 Passes.add(new ModulePassPrinter(PassInf));
415 }
416 }
417
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000418 if (PrintEachXForm)
Bill Wendlinge8156192006-12-07 01:30:32 +0000419 Passes.add(new PrintModulePass(&cerr));
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000420 }
421
422 // Check that the module is well formed on completion of optimization
Reid Spencer74ed9972007-02-02 14:46:29 +0000423 if (!NoVerify && !VerifyEach)
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000424 Passes.add(createVerifierPass());
425
Gabor Greifa99be512007-07-05 17:07:56 +0000426 // Write bitcode out to disk or cout as the last step...
Chris Lattner744879e2007-05-06 09:32:02 +0000427 if (!NoOutput && !AnalyzeOnly)
428 Passes.add(CreateBitcodeWriterPass(*Out));
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000429
430 // Now that we have all of the passes ready, run them.
431 Passes.run(*M.get());
432
Chris Lattnerd44ae902007-05-06 19:17:23 +0000433 // Delete the ofstream.
434 if (Out != &std::cout)
435 delete Out;
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000436 return 0;
Reid Spencerfd90dd52006-08-18 06:34:30 +0000437
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000438 } catch (const std::string& msg) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000439 cerr << argv[0] << ": " << msg << "\n";
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000440 } catch (...) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000441 cerr << argv[0] << ": Unexpected unknown exception occurred.\n";
Chris Lattnerfb1b3f12002-01-31 00:47:12 +0000442 }
Chris Lattner03315242007-01-31 04:45:28 +0000443 llvm_shutdown();
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000444 return 1;
Chris Lattner00950542001-06-06 20:29:01 +0000445}