2001-10-04 01:40:53 +00:00
|
|
|
//===-- llc.cpp - Implement the LLVM Compiler -----------------------------===//
|
2001-09-07 22:20:50 +00:00
|
|
|
//
|
|
|
|
// This is the llc compiler driver.
|
|
|
|
//
|
2001-10-04 01:40:53 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-07-21 12:42:29 +00:00
|
|
|
|
|
|
|
#include "llvm/Bytecode/Reader.h"
|
2002-10-29 20:45:04 +00:00
|
|
|
#include "llvm/Target/TargetMachineImpls.h"
|
2001-09-18 13:10:45 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2002-05-07 20:03:27 +00:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2001-10-18 20:32:07 +00:00
|
|
|
#include "llvm/Assembly/PrintModulePass.h"
|
2001-09-07 21:26:31 +00:00
|
|
|
#include "llvm/Module.h"
|
2002-01-31 00:46:45 +00:00
|
|
|
#include "llvm/PassManager.h"
|
2002-09-16 16:35:34 +00:00
|
|
|
#include "llvm/Pass.h"
|
|
|
|
#include "llvm/Support/PassNameParser.h"
|
2001-11-27 00:03:19 +00:00
|
|
|
#include "Support/CommandLine.h"
|
2002-04-18 19:55:25 +00:00
|
|
|
#include "Support/Signals.h"
|
2001-09-18 17:04:18 +00:00
|
|
|
#include <memory>
|
2001-09-19 16:52:09 +00:00
|
|
|
#include <fstream>
|
2001-07-23 02:35:57 +00:00
|
|
|
|
2002-09-16 16:35:34 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// Option declarations for LLC.
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Make all registered optimization passes available to llc. These passes
|
|
|
|
// will all be run before the simplification and lowering steps used by the
|
|
|
|
// back-end code generator, and will be run in the order specified on the
|
|
|
|
// command line. The OptimizationList is automatically populated with
|
|
|
|
// registered Passes by the PassNameParser.
|
|
|
|
//
|
|
|
|
static cl::list<const PassInfo*, bool,
|
|
|
|
FilteredPassNameParser<PassInfo::Optimization> >
|
|
|
|
OptimizationList(cl::desc("Optimizations available:"));
|
|
|
|
|
|
|
|
|
|
|
|
// General options for llc. Other pass-specific options are specified
|
|
|
|
// within the corresponding llc passes, and target-specific options
|
|
|
|
// and back-end code generation options are specified with the target machine.
|
|
|
|
//
|
2003-04-25 05:26:11 +00:00
|
|
|
static cl::opt<std::string>
|
2002-07-22 02:10:13 +00:00
|
|
|
InputFilename(cl::Positional, cl::desc("<input bytecode>"), cl::init("-"));
|
|
|
|
|
2003-04-25 05:26:11 +00:00
|
|
|
static cl::opt<std::string>
|
2002-07-22 02:10:13 +00:00
|
|
|
OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"));
|
|
|
|
|
|
|
|
static cl::opt<bool> Force("f", cl::desc("Overwrite output files"));
|
|
|
|
|
2003-04-28 03:28:56 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
DisableStrip("disable-strip",
|
|
|
|
cl::desc("Do not strip the LLVM bytecode included in the executable"));
|
|
|
|
|
2002-07-22 02:10:13 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
DumpAsm("d", cl::desc("Print bytecode before native code generation"),
|
|
|
|
cl::Hidden);
|
|
|
|
|
2001-10-15 17:30:47 +00:00
|
|
|
// GetFileNameRoot - Helper function to get the basename of a filename...
|
2003-04-25 05:26:11 +00:00
|
|
|
static inline std::string
|
|
|
|
GetFileNameRoot(const std::string &InputFilename)
|
2002-09-16 16:35:34 +00:00
|
|
|
{
|
2003-04-25 05:26:11 +00:00
|
|
|
std::string IFN = InputFilename;
|
|
|
|
std::string outputFilename;
|
2001-10-14 23:29:28 +00:00
|
|
|
int Len = IFN.length();
|
|
|
|
if (IFN[Len-3] == '.' && IFN[Len-2] == 'b' && IFN[Len-1] == 'c') {
|
2003-04-25 05:26:11 +00:00
|
|
|
outputFilename = std::string(IFN.begin(), IFN.end()-3); // s/.bc/.s/
|
2001-10-14 23:29:28 +00:00
|
|
|
} else {
|
2001-10-15 17:30:47 +00:00
|
|
|
outputFilename = IFN;
|
2001-10-14 23:29:28 +00:00
|
|
|
}
|
|
|
|
return outputFilename;
|
|
|
|
}
|
|
|
|
|
2001-09-18 17:04:18 +00:00
|
|
|
|
2001-10-14 23:29:28 +00:00
|
|
|
//===---------------------------------------------------------------------===//
|
|
|
|
// Function main()
|
|
|
|
//
|
|
|
|
// Entry point for the llc compiler.
|
|
|
|
//===---------------------------------------------------------------------===//
|
|
|
|
|
2002-09-16 16:35:34 +00:00
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
2001-10-14 23:29:28 +00:00
|
|
|
cl::ParseCommandLineOptions(argc, argv, " llvm system compiler\n");
|
|
|
|
|
|
|
|
// Allocate a target... in the future this will be controllable on the
|
|
|
|
// command line.
|
2002-01-20 22:54:45 +00:00
|
|
|
std::auto_ptr<TargetMachine> target(allocateSparcTargetMachine());
|
2001-10-15 17:30:47 +00:00
|
|
|
assert(target.get() && "Could not allocate target machine!");
|
|
|
|
|
|
|
|
TargetMachine &Target = *target.get();
|
2003-04-25 05:22:29 +00:00
|
|
|
const TargetData &TD = Target.getTargetData();
|
2002-09-16 16:35:34 +00:00
|
|
|
|
2001-10-14 23:29:28 +00:00
|
|
|
// Load the module to be compiled...
|
2002-01-20 22:54:45 +00:00
|
|
|
std::auto_ptr<Module> M(ParseBytecodeFile(InputFilename));
|
2002-09-16 16:35:34 +00:00
|
|
|
if (M.get() == 0)
|
|
|
|
{
|
2003-04-25 05:26:11 +00:00
|
|
|
std::cerr << argv[0] << ": bytecode didn't read correctly.\n";
|
2002-09-16 16:35:34 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2002-05-20 21:20:08 +00:00
|
|
|
|
2001-10-15 17:30:47 +00:00
|
|
|
// Build up all of the passes that we want to do to the module...
|
2002-01-21 07:31:50 +00:00
|
|
|
PassManager Passes;
|
2001-10-15 17:30:47 +00:00
|
|
|
|
2003-04-26 20:11:09 +00:00
|
|
|
Passes.add(new TargetData("llc", TD.isLittleEndian(), TD.getPointerSize(),
|
2003-04-25 06:06:13 +00:00
|
|
|
TD.getPointerAlignment(), TD.getDoubleAlignment()));
|
2003-04-25 05:22:29 +00:00
|
|
|
|
2002-09-16 16:35:34 +00:00
|
|
|
// Create a new optimization pass for each one specified on the command line
|
|
|
|
// Deal specially with tracing passes, which must be run differently than opt.
|
|
|
|
//
|
2003-05-27 21:23:02 +00:00
|
|
|
for (unsigned i = 0; i < OptimizationList.size(); ++i) {
|
|
|
|
const PassInfo *Opt = OptimizationList[i];
|
|
|
|
|
|
|
|
// handle other passes as normal optimization passes
|
|
|
|
if (Opt->getNormalCtor())
|
|
|
|
Passes.add(Opt->getNormalCtor()());
|
|
|
|
else if (Opt->getTargetCtor())
|
|
|
|
Passes.add(Opt->getTargetCtor()(Target));
|
|
|
|
else
|
|
|
|
std::cerr << argv[0] << ": cannot create pass: "
|
|
|
|
<< Opt->getPassName() << "\n";
|
|
|
|
}
|
2002-09-16 16:35:34 +00:00
|
|
|
|
2001-10-18 18:20:20 +00:00
|
|
|
// Replace malloc and free instructions with library calls.
|
|
|
|
// Do this after tracing until lli implements these lib calls.
|
|
|
|
// For now, it will emulate malloc and free internally.
|
2003-05-27 21:23:02 +00:00
|
|
|
// FIXME: This is sparc specific!
|
2002-09-25 23:47:49 +00:00
|
|
|
Passes.add(createLowerAllocationsPass());
|
2002-09-16 16:35:34 +00:00
|
|
|
|
2001-10-15 17:30:47 +00:00
|
|
|
// If LLVM dumping after transformations is requested, add it to the pipeline
|
|
|
|
if (DumpAsm)
|
2003-04-25 05:26:11 +00:00
|
|
|
Passes.add(new PrintFunctionPass("Code after xformations: \n", &std::cerr));
|
2001-10-15 17:30:47 +00:00
|
|
|
|
2002-06-30 16:25:07 +00:00
|
|
|
// Strip all of the symbols from the bytecode so that it will be smaller...
|
2003-04-28 03:28:56 +00:00
|
|
|
if (!DisableStrip)
|
|
|
|
Passes.add(createSymbolStrippingPass());
|
2002-06-30 16:25:07 +00:00
|
|
|
|
2002-02-03 23:43:19 +00:00
|
|
|
// Figure out where we are going to send the output...
|
|
|
|
std::ostream *Out = 0;
|
2003-06-18 18:46:08 +00:00
|
|
|
if (OutputFilename != "") {
|
|
|
|
// Specified an output filename?
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
Out = new std::ofstream(OutputFilename.c_str());
|
|
|
|
|
|
|
|
// Make sure that the Out file gets unlink'd from the disk if we get a
|
|
|
|
// SIGINT
|
|
|
|
RemoveFileOnSignal(OutputFilename);
|
|
|
|
} else {
|
|
|
|
if (InputFilename == "-") {
|
|
|
|
OutputFilename = "-";
|
|
|
|
Out = &std::cout;
|
|
|
|
} else {
|
|
|
|
std::string OutputFilename = GetFileNameRoot(InputFilename);
|
|
|
|
OutputFilename += ".s";
|
|
|
|
|
2002-01-22 21:07:24 +00:00
|
|
|
if (!Force && std::ifstream(OutputFilename.c_str())) {
|
2002-01-20 22:54:45 +00:00
|
|
|
// If force is not specified, make sure not to overwrite a file!
|
2003-04-25 05:26:11 +00:00
|
|
|
std::cerr << argv[0] << ": error opening '" << OutputFilename
|
|
|
|
<< "': file exists!\n"
|
|
|
|
<< "Use -f command line argument to force output\n";
|
2002-01-20 22:54:45 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2003-06-18 18:46:08 +00:00
|
|
|
|
2002-01-20 22:54:45 +00:00
|
|
|
Out = new std::ofstream(OutputFilename.c_str());
|
2003-06-18 18:46:08 +00:00
|
|
|
if (!Out->good()) {
|
|
|
|
std::cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
|
|
|
|
delete Out;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2002-09-19 16:06:28 +00:00
|
|
|
// Make sure that the Out file gets unlink'd from the disk if we get a
|
|
|
|
// SIGINT
|
2002-04-18 19:55:25 +00:00
|
|
|
RemoveFileOnSignal(OutputFilename);
|
2001-10-15 17:30:47 +00:00
|
|
|
}
|
2003-06-18 18:46:08 +00:00
|
|
|
}
|
2002-09-16 16:35:34 +00:00
|
|
|
|
2002-10-29 21:12:46 +00:00
|
|
|
// Ask the target to add backend passes as neccesary
|
|
|
|
if (Target.addPassesToEmitAssembly(Passes, *Out)) {
|
2003-04-25 05:26:11 +00:00
|
|
|
std::cerr << argv[0] << ": target '" << Target.getName()
|
|
|
|
<< " does not support static compilation!\n";
|
2002-10-29 21:12:46 +00:00
|
|
|
} else {
|
|
|
|
// Run our queue of passes all at once now, efficiently.
|
|
|
|
Passes.run(*M.get());
|
|
|
|
}
|
2001-10-18 01:31:22 +00:00
|
|
|
|
2002-09-19 16:06:28 +00:00
|
|
|
// Delete the ostream if it's not a stdout stream
|
2002-02-03 23:43:19 +00:00
|
|
|
if (Out != &std::cout) delete Out;
|
|
|
|
|
2001-10-18 20:33:21 +00:00
|
|
|
return 0;
|
2001-10-14 23:29:28 +00:00
|
|
|
}
|