2004-04-02 05:06:57 +00:00
|
|
|
//===- opt.cpp - The LLVM Modular Optimizer -------------------------------===//
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2003-10-20 17:47:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2003-10-20 17:47:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
|
|
|
// Optimizations may be specified an arbitrary number of times on the command
|
2006-08-18 06:34:30 +00:00
|
|
|
// line, They are run in the order specified.
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
2001-10-18 06:05:15 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
#include "llvm/Module.h"
|
2002-01-31 00:47:12 +00:00
|
|
|
#include "llvm/PassManager.h"
|
2007-06-28 23:09:25 +00:00
|
|
|
#include "llvm/CallGraphSCCPass.h"
|
2007-05-06 02:42:03 +00:00
|
|
|
#include "llvm/Bitcode/ReaderWriter.h"
|
2001-10-19 15:39:14 +00:00
|
|
|
#include "llvm/Assembly/PrintModulePass.h"
|
2002-02-20 17:56:53 +00:00
|
|
|
#include "llvm/Analysis/Verifier.h"
|
2007-03-07 00:26:10 +00:00
|
|
|
#include "llvm/Analysis/LoopPass.h"
|
2007-06-28 23:09:25 +00:00
|
|
|
#include "llvm/Analysis/CallGraph.h"
|
2006-05-12 06:33:49 +00:00
|
|
|
#include "llvm/Target/TargetData.h"
|
2002-09-16 16:09:43 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2002-07-26 21:09:32 +00:00
|
|
|
#include "llvm/Support/PassNameParser.h"
|
2004-05-27 05:41:36 +00:00
|
|
|
#include "llvm/System/Signals.h"
|
2006-12-06 01:18:01 +00:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2007-05-06 02:42:03 +00:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/PluginLoader.h"
|
2006-11-28 23:33:06 +00:00
|
|
|
#include "llvm/Support/Streams.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/SystemUtils.h"
|
2006-08-21 05:34:03 +00:00
|
|
|
#include "llvm/LinkAllPasses.h"
|
2006-06-07 23:03:13 +00:00
|
|
|
#include "llvm/LinkAllVMCore.h"
|
2006-11-29 00:19:40 +00:00
|
|
|
#include <iostream>
|
2001-10-18 06:13:08 +00:00
|
|
|
#include <fstream>
|
2001-11-26 19:22:39 +00:00
|
|
|
#include <memory>
|
2002-07-23 18:12:22 +00:00
|
|
|
#include <algorithm>
|
2003-11-11 22:41:34 +00:00
|
|
|
using namespace llvm;
|
2002-04-13 18:32:47 +00:00
|
|
|
|
2002-07-23 18:12:22 +00:00
|
|
|
// The OptimizationList is automatically populated with registered Passes by the
|
|
|
|
// PassNameParser.
|
2002-01-31 00:47:12 +00:00
|
|
|
//
|
2006-08-27 22:07:01 +00:00
|
|
|
static cl::list<const PassInfo*, bool, PassNameParser>
|
|
|
|
PassList(cl::desc("Optimizations available:"));
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2002-07-23 18:12:22 +00:00
|
|
|
// Other command line options...
|
2002-01-31 00:47:12 +00:00
|
|
|
//
|
2003-05-22 20:13:16 +00:00
|
|
|
static cl::opt<std::string>
|
2007-07-05 17:07:56 +00:00
|
|
|
InputFilename(cl::Positional, cl::desc("<input bitcode file>"),
|
2006-08-18 06:34:30 +00:00
|
|
|
cl::init("-"), cl::value_desc("filename"));
|
2002-07-22 02:10:13 +00:00
|
|
|
|
2003-05-22 20:13:16 +00:00
|
|
|
static cl::opt<std::string>
|
2002-07-22 02:10:13 +00:00
|
|
|
OutputFilename("o", cl::desc("Override output filename"),
|
2003-12-10 14:41:33 +00:00
|
|
|
cl::value_desc("filename"), cl::init("-"));
|
2002-07-22 02:10:13 +00:00
|
|
|
|
|
|
|
static cl::opt<bool>
|
|
|
|
Force("f", cl::desc("Overwrite output files"));
|
|
|
|
|
|
|
|
static cl::opt<bool>
|
|
|
|
PrintEachXForm("p", cl::desc("Print module after each transformation"));
|
|
|
|
|
2003-02-12 18:43:33 +00:00
|
|
|
static cl::opt<bool>
|
2003-02-26 20:00:41 +00:00
|
|
|
NoOutput("disable-output",
|
2007-07-05 17:07:56 +00:00
|
|
|
cl::desc("Do not write result bitcode file"), cl::Hidden);
|
2003-02-12 18:43:33 +00:00
|
|
|
|
2003-02-12 18:45:08 +00:00
|
|
|
static cl::opt<bool>
|
2003-02-26 20:00:41 +00:00
|
|
|
NoVerify("disable-verify", cl::desc("Do not verify result module"), cl::Hidden);
|
2003-02-12 18:45:08 +00:00
|
|
|
|
2007-02-02 14:46:29 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
VerifyEach("verify-each", cl::desc("Verify after each transform"));
|
|
|
|
|
|
|
|
static cl::opt<bool>
|
|
|
|
StripDebug("strip-debug",
|
|
|
|
cl::desc("Strip debugger symbol info from translation unit"));
|
|
|
|
|
|
|
|
static cl::opt<bool>
|
|
|
|
DisableInline("disable-inlining", cl::desc("Do not run the inliner pass"));
|
|
|
|
|
|
|
|
static cl::opt<bool>
|
|
|
|
DisableOptimizations("disable-opt",
|
|
|
|
cl::desc("Do not run any optimization passes"));
|
|
|
|
|
|
|
|
static cl::opt<bool>
|
|
|
|
StandardCompileOpts("std-compile-opts",
|
|
|
|
cl::desc("Include the standard compile time optimizations"));
|
|
|
|
|
2002-07-22 02:10:13 +00:00
|
|
|
static cl::opt<bool>
|
2004-05-27 20:32:10 +00:00
|
|
|
Quiet("q", cl::desc("Obsolete option"), cl::Hidden);
|
2002-07-22 02:10:13 +00:00
|
|
|
|
2004-05-27 16:28:54 +00:00
|
|
|
static cl::alias
|
|
|
|
QuietA("quiet", cl::desc("Alias for -q"), cl::aliasopt(Quiet));
|
|
|
|
|
2006-08-18 06:34:30 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
AnalyzeOnly("analyze", cl::desc("Only perform analysis, no optimization"));
|
|
|
|
|
|
|
|
// ---------- Define Printers for module and function passes ------------
|
|
|
|
namespace {
|
|
|
|
|
2007-06-28 23:09:25 +00:00
|
|
|
struct CallGraphSCCPassPrinter : public CallGraphSCCPass {
|
|
|
|
static char ID;
|
|
|
|
const PassInfo *PassToPrint;
|
|
|
|
CallGraphSCCPassPrinter(const PassInfo *PI) :
|
|
|
|
CallGraphSCCPass((intptr_t)&ID), PassToPrint(PI) {}
|
|
|
|
|
|
|
|
virtual bool runOnSCC(const std::vector<CallGraphNode *>&SCC) {
|
|
|
|
if (!Quiet) {
|
|
|
|
cout << "Printing analysis '" << PassToPrint->getPassName() << "':\n";
|
|
|
|
|
|
|
|
for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
|
|
|
|
Function *F = SCC[i]->getFunction();
|
|
|
|
if (F)
|
|
|
|
getAnalysisID<Pass>(PassToPrint).print(cout, F->getParent());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Get and print pass...
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual const char *getPassName() const { return "'Pass' Printer"; }
|
|
|
|
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.addRequiredID(PassToPrint);
|
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
char CallGraphSCCPassPrinter::ID = 0;
|
|
|
|
|
2006-08-18 06:34:30 +00:00
|
|
|
struct ModulePassPrinter : public ModulePass {
|
2007-05-03 01:11:54 +00:00
|
|
|
static char ID;
|
2006-08-18 06:34:30 +00:00
|
|
|
const PassInfo *PassToPrint;
|
2007-05-01 21:15:47 +00:00
|
|
|
ModulePassPrinter(const PassInfo *PI) : ModulePass((intptr_t)&ID),
|
|
|
|
PassToPrint(PI) {}
|
2006-08-18 06:34:30 +00:00
|
|
|
|
|
|
|
virtual bool runOnModule(Module &M) {
|
|
|
|
if (!Quiet) {
|
2006-12-07 01:30:32 +00:00
|
|
|
cout << "Printing analysis '" << PassToPrint->getPassName() << "':\n";
|
|
|
|
getAnalysisID<Pass>(PassToPrint).print(cout, &M);
|
2006-08-18 06:34:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get and print pass...
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual const char *getPassName() const { return "'Pass' Printer"; }
|
|
|
|
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.addRequiredID(PassToPrint);
|
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2007-05-03 01:11:54 +00:00
|
|
|
char ModulePassPrinter::ID = 0;
|
2006-08-18 06:34:30 +00:00
|
|
|
struct FunctionPassPrinter : public FunctionPass {
|
|
|
|
const PassInfo *PassToPrint;
|
2007-05-03 01:11:54 +00:00
|
|
|
static char ID;
|
2007-05-01 21:15:47 +00:00
|
|
|
FunctionPassPrinter(const PassInfo *PI) : FunctionPass((intptr_t)&ID),
|
|
|
|
PassToPrint(PI) {}
|
2006-08-18 06:34:30 +00:00
|
|
|
|
|
|
|
virtual bool runOnFunction(Function &F) {
|
2007-05-01 21:15:47 +00:00
|
|
|
if (!Quiet) {
|
2006-12-07 01:30:32 +00:00
|
|
|
cout << "Printing analysis '" << PassToPrint->getPassName()
|
|
|
|
<< "' for function '" << F.getName() << "':\n";
|
2006-08-18 06:34:30 +00:00
|
|
|
}
|
|
|
|
// Get and print pass...
|
2006-12-07 01:30:32 +00:00
|
|
|
getAnalysisID<Pass>(PassToPrint).print(cout, F.getParent());
|
2006-08-18 06:34:30 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual const char *getPassName() const { return "FunctionPass Printer"; }
|
|
|
|
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.addRequiredID(PassToPrint);
|
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2007-05-03 01:11:54 +00:00
|
|
|
char FunctionPassPrinter::ID = 0;
|
2007-07-05 15:32:03 +00:00
|
|
|
|
|
|
|
struct LoopPassPrinter : public LoopPass {
|
|
|
|
static char ID;
|
|
|
|
const PassInfo *PassToPrint;
|
|
|
|
LoopPassPrinter(const PassInfo *PI) :
|
|
|
|
LoopPass((intptr_t)&ID), PassToPrint(PI) {}
|
|
|
|
|
|
|
|
virtual bool runOnLoop(Loop *L, LPPassManager &LPM) {
|
|
|
|
if (!Quiet) {
|
|
|
|
cout << "Printing analysis '" << PassToPrint->getPassName() << "':\n";
|
|
|
|
getAnalysisID<Pass>(PassToPrint).print(cout,
|
|
|
|
L->getHeader()->getParent()->getParent());
|
|
|
|
}
|
|
|
|
// Get and print pass...
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual const char *getPassName() const { return "'Pass' Printer"; }
|
|
|
|
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.addRequiredID(PassToPrint);
|
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
char LoopPassPrinter::ID = 0;
|
|
|
|
|
2006-08-18 06:34:30 +00:00
|
|
|
struct BasicBlockPassPrinter : public BasicBlockPass {
|
|
|
|
const PassInfo *PassToPrint;
|
2007-05-03 01:11:54 +00:00
|
|
|
static char ID;
|
2007-05-01 21:15:47 +00:00
|
|
|
BasicBlockPassPrinter(const PassInfo *PI)
|
|
|
|
: BasicBlockPass((intptr_t)&ID), PassToPrint(PI) {}
|
2006-08-18 06:34:30 +00:00
|
|
|
|
|
|
|
virtual bool runOnBasicBlock(BasicBlock &BB) {
|
|
|
|
if (!Quiet) {
|
2006-12-07 01:30:32 +00:00
|
|
|
cout << "Printing Analysis info for BasicBlock '" << BB.getName()
|
|
|
|
<< "': Pass " << PassToPrint->getPassName() << ":\n";
|
2006-08-18 06:34:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get and print pass...
|
2006-12-07 01:30:32 +00:00
|
|
|
getAnalysisID<Pass>(PassToPrint).print(cout, BB.getParent()->getParent());
|
2006-08-18 06:34:30 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual const char *getPassName() const { return "BasicBlockPass Printer"; }
|
|
|
|
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.addRequiredID(PassToPrint);
|
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2007-05-03 01:11:54 +00:00
|
|
|
char BasicBlockPassPrinter::ID = 0;
|
2007-02-02 14:46:29 +00:00
|
|
|
inline void addPass(PassManager &PM, Pass *P) {
|
|
|
|
// Add the pass to the pass manager...
|
|
|
|
PM.add(P);
|
|
|
|
|
|
|
|
// If we are verifying all of the intermediate steps, add the verifier...
|
|
|
|
if (VerifyEach) PM.add(createVerifierPass());
|
|
|
|
}
|
|
|
|
|
|
|
|
void AddStandardCompilePasses(PassManager &PM) {
|
|
|
|
PM.add(createVerifierPass()); // Verify that input is correct
|
|
|
|
|
|
|
|
addPass(PM, createLowerSetJmpPass()); // Lower llvm.setjmp/.longjmp
|
|
|
|
|
|
|
|
// If the -strip-debug command line option was specified, do it.
|
|
|
|
if (StripDebug)
|
|
|
|
addPass(PM, createStripSymbolsPass(true));
|
|
|
|
|
|
|
|
if (DisableOptimizations) return;
|
|
|
|
|
|
|
|
addPass(PM, createRaiseAllocationsPass()); // call %malloc -> malloc inst
|
|
|
|
addPass(PM, createCFGSimplificationPass()); // Clean up disgusting code
|
|
|
|
addPass(PM, createPromoteMemoryToRegisterPass());// Kill useless allocas
|
|
|
|
addPass(PM, createGlobalOptimizerPass()); // Optimize out global vars
|
|
|
|
addPass(PM, createGlobalDCEPass()); // Remove unused fns and globs
|
|
|
|
addPass(PM, createIPConstantPropagationPass());// IP Constant Propagation
|
|
|
|
addPass(PM, createDeadArgEliminationPass()); // Dead argument elimination
|
|
|
|
addPass(PM, createInstructionCombiningPass()); // Clean up after IPCP & DAE
|
|
|
|
addPass(PM, createCFGSimplificationPass()); // Clean up after IPCP & DAE
|
|
|
|
|
|
|
|
addPass(PM, createPruneEHPass()); // Remove dead EH info
|
|
|
|
|
|
|
|
if (!DisableInline)
|
|
|
|
addPass(PM, createFunctionInliningPass()); // Inline small functions
|
|
|
|
addPass(PM, createArgumentPromotionPass()); // Scalarize uninlined fn args
|
|
|
|
|
|
|
|
addPass(PM, createTailDuplicationPass()); // Simplify cfg by copying code
|
|
|
|
addPass(PM, createInstructionCombiningPass()); // Cleanup for scalarrepl.
|
|
|
|
addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
|
2007-07-17 20:07:21 +00:00
|
|
|
addPass(PM, createScalarReplAggregatesPass()); // Break up aggregate allocas
|
2007-02-02 14:46:29 +00:00
|
|
|
addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
|
|
|
|
addPass(PM, createCondPropagationPass()); // Propagate conditionals
|
|
|
|
|
|
|
|
addPass(PM, createTailCallEliminationPass()); // Eliminate tail calls
|
|
|
|
addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
|
|
|
|
addPass(PM, createReassociatePass()); // Reassociate expressions
|
2007-04-10 15:43:36 +00:00
|
|
|
addPass(PM, createLoopRotatePass());
|
2007-02-02 14:46:29 +00:00
|
|
|
addPass(PM, createLICMPass()); // Hoist loop invariants
|
|
|
|
addPass(PM, createLoopUnswitchPass()); // Unswitch loops.
|
2007-09-04 20:46:58 +00:00
|
|
|
addPass(PM, createLoopIndexSplitPass()); // Index split loops.
|
2007-02-02 14:46:29 +00:00
|
|
|
addPass(PM, createInstructionCombiningPass()); // Clean up after LICM/reassoc
|
|
|
|
addPass(PM, createIndVarSimplifyPass()); // Canonicalize indvars
|
|
|
|
addPass(PM, createLoopUnrollPass()); // Unroll small loops
|
|
|
|
addPass(PM, createInstructionCombiningPass()); // Clean up after the unroller
|
2007-09-08 22:23:52 +00:00
|
|
|
addPass(PM, createGVNPass()); // Remove redundancies
|
2007-02-02 14:46:29 +00:00
|
|
|
addPass(PM, createSCCPPass()); // Constant prop with SCCP
|
|
|
|
|
|
|
|
// Run instcombine after redundancy elimination to exploit opportunities
|
|
|
|
// opened up by them.
|
|
|
|
addPass(PM, createInstructionCombiningPass());
|
|
|
|
addPass(PM, createCondPropagationPass()); // Propagate conditionals
|
|
|
|
|
2007-08-01 06:36:51 +00:00
|
|
|
addPass(PM, createDeadStoreEliminationPass()); // Delete dead stores
|
2007-02-02 14:46:29 +00:00
|
|
|
addPass(PM, createAggressiveDCEPass()); // SSA based 'Aggressive DCE'
|
|
|
|
addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
|
|
|
|
addPass(PM, createSimplifyLibCallsPass()); // Library Call Optimizations
|
|
|
|
addPass(PM, createDeadTypeEliminationPass()); // Eliminate dead types
|
|
|
|
addPass(PM, createConstantMergePass()); // Merge dup global constants
|
|
|
|
}
|
|
|
|
|
2006-08-18 06:34:30 +00:00
|
|
|
} // anonymous namespace
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2002-07-23 18:12:22 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// main for opt
|
|
|
|
//
|
2001-07-23 02:35:57 +00:00
|
|
|
int main(int argc, char **argv) {
|
2006-12-06 01:18:01 +00:00
|
|
|
llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
|
2004-12-30 05:36:08 +00:00
|
|
|
try {
|
|
|
|
cl::ParseCommandLineOptions(argc, argv,
|
2007-10-08 15:45:12 +00:00
|
|
|
"llvm .bc -> .bc modular optimizer and analysis printer\n");
|
2004-12-30 05:36:08 +00:00
|
|
|
sys::PrintStackTraceOnErrorSignal();
|
|
|
|
|
2006-08-27 22:07:01 +00:00
|
|
|
// Allocate a full target machine description only if necessary.
|
2004-12-30 05:36:08 +00:00
|
|
|
// FIXME: The choice of target should be controllable on the command line.
|
|
|
|
std::auto_ptr<TargetMachine> target;
|
|
|
|
|
|
|
|
std::string ErrorMessage;
|
|
|
|
|
|
|
|
// Load the input module...
|
2007-05-06 02:42:03 +00:00
|
|
|
std::auto_ptr<Module> M;
|
2007-05-06 23:45:49 +00:00
|
|
|
if (MemoryBuffer *Buffer
|
|
|
|
= MemoryBuffer::getFileOrSTDIN(InputFilename, &ErrorMessage)) {
|
2007-05-06 09:32:02 +00:00
|
|
|
M.reset(ParseBitcodeFile(Buffer, &ErrorMessage));
|
2007-05-06 23:45:49 +00:00
|
|
|
delete Buffer;
|
|
|
|
}
|
2007-05-06 09:32:02 +00:00
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
if (M.get() == 0) {
|
2006-12-07 01:30:32 +00:00
|
|
|
cerr << argv[0] << ": ";
|
2004-12-30 05:36:08 +00:00
|
|
|
if (ErrorMessage.size())
|
2006-12-07 01:30:32 +00:00
|
|
|
cerr << ErrorMessage << "\n";
|
2004-12-30 05:36:08 +00:00
|
|
|
else
|
2007-07-05 17:07:56 +00:00
|
|
|
cerr << "bitcode didn't read correctly.\n";
|
2002-01-20 22:54:45 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
// Figure out what stream we are supposed to write to...
|
2005-01-22 17:36:17 +00:00
|
|
|
// FIXME: cout is not binary!
|
2004-12-30 05:36:08 +00:00
|
|
|
std::ostream *Out = &std::cout; // Default to printing to stdout...
|
|
|
|
if (OutputFilename != "-") {
|
|
|
|
if (!Force && std::ifstream(OutputFilename.c_str())) {
|
|
|
|
// If force is not specified, make sure not to overwrite a file!
|
2006-12-07 01:30:32 +00:00
|
|
|
cerr << argv[0] << ": error opening '" << OutputFilename
|
|
|
|
<< "': file exists!\n"
|
|
|
|
<< "Use -f command line argument to force output\n";
|
2004-12-30 05:36:08 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2005-01-22 17:36:17 +00:00
|
|
|
std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
|
|
|
|
std::ios::binary;
|
|
|
|
Out = new std::ofstream(OutputFilename.c_str(), io_mode);
|
2004-12-30 05:36:08 +00:00
|
|
|
|
|
|
|
if (!Out->good()) {
|
2006-12-07 01:30:32 +00:00
|
|
|
cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
|
2004-12-30 05:36:08 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure that the Output file gets unlinked from the disk if we get a
|
|
|
|
// SIGINT
|
|
|
|
sys::RemoveFileOnSignal(sys::Path(OutputFilename));
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
2002-04-18 19:55:25 +00:00
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
// If the output is set to be emitted to standard out, and standard out is a
|
2005-01-22 17:36:17 +00:00
|
|
|
// console, print out a warning message and refuse to do it. We don't
|
|
|
|
// impress anyone by spewing tons of binary goo to a terminal.
|
2007-07-05 17:07:56 +00:00
|
|
|
if (!Force && !NoOutput && CheckBitcodeOutputToConsole(Out,!Quiet)) {
|
2004-12-30 05:36:08 +00:00
|
|
|
NoOutput = true;
|
|
|
|
}
|
2004-04-02 05:06:57 +00:00
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
// Create a PassManager to hold and optimize the collection of passes we are
|
|
|
|
// about to build...
|
|
|
|
//
|
|
|
|
PassManager Passes;
|
|
|
|
|
|
|
|
// Add an appropriate TargetData instance for this module...
|
2006-06-16 18:23:49 +00:00
|
|
|
Passes.add(new TargetData(M.get()));
|
2004-12-30 05:36:08 +00:00
|
|
|
|
2007-02-02 14:46:29 +00:00
|
|
|
// If -std-compile-opts is given, add in all the standard compilation
|
|
|
|
// optimizations first. This will handle -strip-debug, -disable-inline,
|
|
|
|
// and -disable-opt as well.
|
|
|
|
if (StandardCompileOpts)
|
|
|
|
AddStandardCompilePasses(Passes);
|
|
|
|
|
|
|
|
// otherwise if the -strip-debug command line option was specified, add it.
|
|
|
|
else if (StripDebug)
|
|
|
|
addPass(Passes, createStripSymbolsPass(true));
|
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
// Create a new optimization pass for each one specified on the command line
|
2006-08-27 22:07:01 +00:00
|
|
|
for (unsigned i = 0; i < PassList.size(); ++i) {
|
|
|
|
const PassInfo *PassInf = PassList[i];
|
|
|
|
Pass *P = 0;
|
|
|
|
if (PassInf->getNormalCtor())
|
|
|
|
P = PassInf->getNormalCtor()();
|
2006-12-01 21:59:37 +00:00
|
|
|
else
|
2006-12-07 01:30:32 +00:00
|
|
|
cerr << argv[0] << ": cannot create pass: "
|
|
|
|
<< PassInf->getPassName() << "\n";
|
2006-08-27 22:07:01 +00:00
|
|
|
if (P) {
|
2007-02-02 14:46:29 +00:00
|
|
|
addPass(Passes, P);
|
2006-08-27 22:07:01 +00:00
|
|
|
|
|
|
|
if (AnalyzeOnly) {
|
2006-11-02 20:25:50 +00:00
|
|
|
if (dynamic_cast<BasicBlockPass*>(P))
|
2006-08-27 22:07:01 +00:00
|
|
|
Passes.add(new BasicBlockPassPrinter(PassInf));
|
2007-07-05 15:32:03 +00:00
|
|
|
else if (dynamic_cast<LoopPass*>(P))
|
|
|
|
Passes.add(new LoopPassPrinter(PassInf));
|
2006-11-02 20:25:50 +00:00
|
|
|
else if (dynamic_cast<FunctionPass*>(P))
|
2006-08-27 22:07:01 +00:00
|
|
|
Passes.add(new FunctionPassPrinter(PassInf));
|
2007-06-28 23:09:25 +00:00
|
|
|
else if (dynamic_cast<CallGraphSCCPass*>(P))
|
|
|
|
Passes.add(new CallGraphSCCPassPrinter(PassInf));
|
2006-08-27 22:07:01 +00:00
|
|
|
else
|
|
|
|
Passes.add(new ModulePassPrinter(PassInf));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
if (PrintEachXForm)
|
2006-12-07 01:30:32 +00:00
|
|
|
Passes.add(new PrintModulePass(&cerr));
|
2004-12-30 05:36:08 +00:00
|
|
|
}
|
2002-01-31 00:47:12 +00:00
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
// Check that the module is well formed on completion of optimization
|
2007-02-02 14:46:29 +00:00
|
|
|
if (!NoVerify && !VerifyEach)
|
2004-12-30 05:36:08 +00:00
|
|
|
Passes.add(createVerifierPass());
|
2002-02-20 17:56:53 +00:00
|
|
|
|
2007-07-05 17:07:56 +00:00
|
|
|
// Write bitcode out to disk or cout as the last step...
|
2007-05-06 09:32:02 +00:00
|
|
|
if (!NoOutput && !AnalyzeOnly)
|
|
|
|
Passes.add(CreateBitcodeWriterPass(*Out));
|
2002-01-31 00:47:12 +00:00
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
// Now that we have all of the passes ready, run them.
|
|
|
|
Passes.run(*M.get());
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2007-05-06 19:17:23 +00:00
|
|
|
// Delete the ofstream.
|
|
|
|
if (Out != &std::cout)
|
|
|
|
delete Out;
|
2004-12-30 05:36:08 +00:00
|
|
|
return 0;
|
2006-08-18 06:34:30 +00:00
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
} catch (const std::string& msg) {
|
2006-12-07 01:30:32 +00:00
|
|
|
cerr << argv[0] << ": " << msg << "\n";
|
2004-12-30 05:36:08 +00:00
|
|
|
} catch (...) {
|
2006-12-07 01:30:32 +00:00
|
|
|
cerr << argv[0] << ": Unexpected unknown exception occurred.\n";
|
2004-12-30 05:36:08 +00:00
|
|
|
}
|
2007-01-31 04:45:28 +00:00
|
|
|
llvm_shutdown();
|
2004-12-30 05:36:08 +00:00
|
|
|
return 1;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|