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"
|
2001-06-06 20:29:01 +00:00
|
|
|
#include "llvm/Bytecode/Reader.h"
|
2002-01-31 00:47:12 +00:00
|
|
|
#include "llvm/Bytecode/WriteBytecodePass.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"
|
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"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/PluginLoader.h"
|
|
|
|
#include "llvm/Support/SystemUtils.h"
|
2006-08-18 06:34:30 +00:00
|
|
|
#include "llvm/Support/Timer.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"
|
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
|
|
|
|
2006-08-28 17:31:55 +00:00
|
|
|
static cl::opt<bool> NoCompress("disable-compression", cl::init(false),
|
|
|
|
cl::desc("Don't compress the generated bytecode"));
|
2002-04-12 18:21:13 +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>
|
2006-08-18 06:34:30 +00:00
|
|
|
InputFilename(cl::Positional, cl::desc("<input bytecode file>"),
|
|
|
|
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",
|
|
|
|
cl::desc("Do not write result bytecode 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
|
|
|
|
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"));
|
|
|
|
|
|
|
|
static Timer BytecodeLoadTimer("Bytecode Loader");
|
|
|
|
|
|
|
|
// ---------- Define Printers for module and function passes ------------
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
struct ModulePassPrinter : public ModulePass {
|
|
|
|
const PassInfo *PassToPrint;
|
|
|
|
ModulePassPrinter(const PassInfo *PI) : PassToPrint(PI) {}
|
|
|
|
|
|
|
|
virtual bool runOnModule(Module &M) {
|
|
|
|
if (!Quiet) {
|
|
|
|
std::cout << "Printing analysis '" << PassToPrint->getPassName()
|
|
|
|
<< "':\n";
|
|
|
|
getAnalysisID<Pass>(PassToPrint).print(std::cout, &M);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct FunctionPassPrinter : public FunctionPass {
|
|
|
|
const PassInfo *PassToPrint;
|
|
|
|
FunctionPassPrinter(const PassInfo *PI) : PassToPrint(PI) {}
|
|
|
|
|
|
|
|
virtual bool runOnFunction(Function &F) {
|
|
|
|
if (!Quiet) {
|
|
|
|
std::cout << "Printing analysis '" << PassToPrint->getPassName()
|
|
|
|
<< "' for function '" << F.getName() << "':\n";
|
|
|
|
}
|
|
|
|
// Get and print pass...
|
|
|
|
getAnalysisID<Pass>(PassToPrint).print(std::cout, F.getParent());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual const char *getPassName() const { return "FunctionPass Printer"; }
|
|
|
|
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.addRequiredID(PassToPrint);
|
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct BasicBlockPassPrinter : public BasicBlockPass {
|
|
|
|
const PassInfo *PassToPrint;
|
|
|
|
BasicBlockPassPrinter(const PassInfo *PI) : PassToPrint(PI) {}
|
|
|
|
|
|
|
|
virtual bool runOnBasicBlock(BasicBlock &BB) {
|
|
|
|
if (!Quiet) {
|
|
|
|
std::cout << "Printing Analysis info for BasicBlock '" << BB.getName()
|
|
|
|
<< "': Pass " << PassToPrint->getPassName() << ":\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get and print pass...
|
|
|
|
getAnalysisID<Pass>(PassToPrint).print(
|
|
|
|
std::cout, BB.getParent()->getParent());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual const char *getPassName() const { return "BasicBlockPass Printer"; }
|
|
|
|
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.addRequiredID(PassToPrint);
|
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // 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) {
|
2004-12-30 05:36:08 +00:00
|
|
|
try {
|
|
|
|
cl::ParseCommandLineOptions(argc, argv,
|
2006-08-18 06:34:30 +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;
|
|
|
|
|
|
|
|
TargetMachine* TM = NULL;
|
|
|
|
std::string ErrorMessage;
|
|
|
|
|
|
|
|
// Load the input module...
|
|
|
|
std::auto_ptr<Module> M(ParseBytecodeFile(InputFilename, &ErrorMessage));
|
|
|
|
if (M.get() == 0) {
|
|
|
|
std::cerr << argv[0] << ": ";
|
|
|
|
if (ErrorMessage.size())
|
|
|
|
std::cerr << ErrorMessage << "\n";
|
|
|
|
else
|
|
|
|
std::cerr << "bytecode 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!
|
|
|
|
std::cerr << argv[0] << ": error opening '" << OutputFilename
|
|
|
|
<< "': file exists!\n"
|
|
|
|
<< "Use -f command line argument to force output\n";
|
|
|
|
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()) {
|
|
|
|
std::cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
|
|
|
|
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.
|
2005-01-05 17:31:55 +00:00
|
|
|
if (!Force && !NoOutput && CheckBytecodeOutputToConsole(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
|
|
|
|
|
|
|
// 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()();
|
|
|
|
else if (PassInf->getTargetCtor()) {
|
2004-12-30 05:36:08 +00:00
|
|
|
assert(target.get() && "Could not allocate target machine!");
|
2006-08-27 22:07:01 +00:00
|
|
|
P = PassInf->getTargetCtor()(*target.get());
|
2004-12-30 05:36:08 +00:00
|
|
|
} else
|
2006-08-27 22:07:01 +00:00
|
|
|
std::cerr << argv[0] << ": cannot create pass: "
|
|
|
|
<< PassInf->getPassName() << "\n";
|
|
|
|
if (P) {
|
|
|
|
Passes.add(P);
|
|
|
|
|
|
|
|
if (AnalyzeOnly) {
|
|
|
|
if (BasicBlockPass *BBP = dynamic_cast<BasicBlockPass*>(P))
|
|
|
|
Passes.add(new BasicBlockPassPrinter(PassInf));
|
|
|
|
else if (FunctionPass *FP = dynamic_cast<FunctionPass*>(P))
|
|
|
|
Passes.add(new FunctionPassPrinter(PassInf));
|
|
|
|
else
|
|
|
|
Passes.add(new ModulePassPrinter(PassInf));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
if (PrintEachXForm)
|
|
|
|
Passes.add(new PrintModulePass(&std::cerr));
|
|
|
|
}
|
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
|
|
|
|
if (!NoVerify)
|
|
|
|
Passes.add(createVerifierPass());
|
2002-02-20 17:56:53 +00:00
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
// Write bytecode out to disk or cout as the last step...
|
2006-08-27 22:40:26 +00:00
|
|
|
if (!NoOutput && !AnalyzeOnly)
|
2006-08-28 17:31:55 +00:00
|
|
|
Passes.add(new WriteBytecodePass(Out, Out != &std::cout, !NoCompress));
|
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
|
|
|
|
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) {
|
|
|
|
std::cerr << argv[0] << ": " << msg << "\n";
|
|
|
|
} catch (...) {
|
|
|
|
std::cerr << argv[0] << ": Unexpected unknown exception occurred.\n";
|
|
|
|
}
|
|
|
|
return 1;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|