2003-06-20 17:49:04 +02:00
|
|
|
//===-- llc.cpp - Implement the LLVM Native Code Generator ----------------===//
|
2001-09-08 00:20:50 +02:00
|
|
|
//
|
2003-06-20 17:49:04 +02:00
|
|
|
// This is the llc code generator.
|
2001-09-08 00:20:50 +02:00
|
|
|
//
|
2001-10-04 03:40:53 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-07-21 14:42:29 +02:00
|
|
|
|
|
|
|
#include "llvm/Bytecode/Reader.h"
|
2002-10-29 21:45:04 +01:00
|
|
|
#include "llvm/Target/TargetMachineImpls.h"
|
2001-09-18 15:10:45 +02:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2002-05-07 22:03:27 +02:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2001-09-07 23:26:31 +02:00
|
|
|
#include "llvm/Module.h"
|
2002-01-31 01:46:45 +01:00
|
|
|
#include "llvm/PassManager.h"
|
2002-09-16 18:35:34 +02:00
|
|
|
#include "llvm/Pass.h"
|
2001-11-27 01:03:19 +01:00
|
|
|
#include "Support/CommandLine.h"
|
2002-04-18 21:55:25 +02:00
|
|
|
#include "Support/Signals.h"
|
2001-09-18 19:04:18 +02:00
|
|
|
#include <memory>
|
2001-09-19 18:52:09 +02:00
|
|
|
#include <fstream>
|
2002-09-16 18:35:34 +02:00
|
|
|
|
|
|
|
// 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 07:26:11 +02:00
|
|
|
static cl::opt<std::string>
|
2002-07-22 04:10:13 +02:00
|
|
|
InputFilename(cl::Positional, cl::desc("<input bytecode>"), cl::init("-"));
|
|
|
|
|
2003-04-25 07:26:11 +02:00
|
|
|
static cl::opt<std::string>
|
2002-07-22 04:10:13 +02:00
|
|
|
OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"));
|
|
|
|
|
|
|
|
static cl::opt<bool> Force("f", cl::desc("Overwrite output files"));
|
|
|
|
|
2003-06-18 23:14:23 +02:00
|
|
|
enum ArchName { noarch, x86, Sparc };
|
2003-04-28 05:28:56 +02:00
|
|
|
|
2003-06-18 23:14:23 +02:00
|
|
|
static cl::opt<ArchName>
|
|
|
|
Arch("march", cl::desc("Architecture to generate assembly for:"), cl::Prefix,
|
|
|
|
cl::values(clEnumVal(x86, " IA-32 (Pentium and above)"),
|
2003-07-08 00:28:42 +02:00
|
|
|
clEnumValN(Sparc, "sparc", " SPARC V9"),
|
2003-06-18 23:14:23 +02:00
|
|
|
0),
|
2003-07-30 17:29:55 +02:00
|
|
|
cl::init(noarch));
|
2002-07-22 04:10:13 +02:00
|
|
|
|
2001-10-15 19:30:47 +02:00
|
|
|
// GetFileNameRoot - Helper function to get the basename of a filename...
|
2003-04-25 07:26:11 +02:00
|
|
|
static inline std::string
|
|
|
|
GetFileNameRoot(const std::string &InputFilename)
|
2002-09-16 18:35:34 +02:00
|
|
|
{
|
2003-04-25 07:26:11 +02:00
|
|
|
std::string IFN = InputFilename;
|
|
|
|
std::string outputFilename;
|
2001-10-15 01:29:28 +02:00
|
|
|
int Len = IFN.length();
|
2003-08-28 23:42:29 +02:00
|
|
|
if ((Len > 2) &&
|
|
|
|
IFN[Len-3] == '.' && IFN[Len-2] == 'b' && IFN[Len-1] == 'c') {
|
2003-04-25 07:26:11 +02:00
|
|
|
outputFilename = std::string(IFN.begin(), IFN.end()-3); // s/.bc/.s/
|
2001-10-15 01:29:28 +02:00
|
|
|
} else {
|
2001-10-15 19:30:47 +02:00
|
|
|
outputFilename = IFN;
|
2001-10-15 01:29:28 +02:00
|
|
|
}
|
|
|
|
return outputFilename;
|
|
|
|
}
|
|
|
|
|
2001-09-18 19:04:18 +02:00
|
|
|
|
2003-06-20 17:49:04 +02:00
|
|
|
// main - Entry point for the llc compiler.
|
|
|
|
//
|
|
|
|
int main(int argc, char **argv) {
|
2001-10-15 01:29:28 +02:00
|
|
|
cl::ParseCommandLineOptions(argc, argv, " llvm system compiler\n");
|
|
|
|
|
|
|
|
// Load the module to be compiled...
|
2002-01-20 23:54:45 +01:00
|
|
|
std::auto_ptr<Module> M(ParseBytecodeFile(InputFilename));
|
2003-06-20 17:49:04 +02:00
|
|
|
if (M.get() == 0) {
|
|
|
|
std::cerr << argv[0] << ": bytecode didn't read correctly.\n";
|
|
|
|
return 1;
|
|
|
|
}
|
2003-06-18 23:14:23 +02:00
|
|
|
Module &mod = *M.get();
|
|
|
|
|
|
|
|
// Allocate target machine. First, check whether the user has
|
|
|
|
// explicitly specified an architecture to compile for.
|
2003-08-24 21:50:12 +02:00
|
|
|
TargetMachine* (*TargetMachineAllocator)(const Module&) = 0;
|
2003-06-18 23:14:23 +02:00
|
|
|
switch (Arch) {
|
|
|
|
case x86:
|
|
|
|
TargetMachineAllocator = allocateX86TargetMachine;
|
|
|
|
break;
|
|
|
|
case Sparc:
|
|
|
|
TargetMachineAllocator = allocateSparcTargetMachine;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// Decide what the default target machine should be, by looking at
|
|
|
|
// the module. This heuristic (ILP32, LE -> IA32; LP64, BE ->
|
|
|
|
// SPARCV9) is kind of gross, but it will work until we have more
|
|
|
|
// sophisticated target information to work from.
|
2003-08-24 16:02:14 +02:00
|
|
|
if (mod.getEndianness() == Module::LittleEndian &&
|
|
|
|
mod.getPointerSize() == Module::Pointer32) {
|
2003-06-18 23:14:23 +02:00
|
|
|
TargetMachineAllocator = allocateX86TargetMachine;
|
2003-08-24 16:02:14 +02:00
|
|
|
} else if (mod.getEndianness() == Module::BigEndian &&
|
|
|
|
mod.getPointerSize() == Module::Pointer64) {
|
2003-06-18 23:14:23 +02:00
|
|
|
TargetMachineAllocator = allocateSparcTargetMachine;
|
|
|
|
} else {
|
2003-08-24 16:02:14 +02:00
|
|
|
// If the module is target independent, favor a target which matches the
|
|
|
|
// current build system.
|
|
|
|
#if defined(i386) || defined(__i386__) || defined(__x86__)
|
|
|
|
TargetMachineAllocator = allocateX86TargetMachine;
|
|
|
|
#elif defined(sparc) || defined(__sparc__) || defined(__sparcv9)
|
|
|
|
TargetMachineAllocator = allocateSparcTargetMachine;
|
|
|
|
#else
|
|
|
|
std::cerr << argv[0] << ": module does not specify a target to use. "
|
|
|
|
<< "You must use the -march option.\n";
|
|
|
|
return 1;
|
|
|
|
#endif
|
2003-06-18 23:14:23 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2003-08-24 21:50:12 +02:00
|
|
|
std::auto_ptr<TargetMachine> target(TargetMachineAllocator(mod));
|
2003-06-18 23:14:23 +02:00
|
|
|
assert(target.get() && "Could not allocate target machine!");
|
|
|
|
TargetMachine &Target = *target.get();
|
|
|
|
const TargetData &TD = Target.getTargetData();
|
2002-05-20 23:20:08 +02:00
|
|
|
|
2001-10-15 19:30:47 +02:00
|
|
|
// Build up all of the passes that we want to do to the module...
|
2002-01-21 08:31:50 +01:00
|
|
|
PassManager Passes;
|
2001-10-15 19:30:47 +02:00
|
|
|
|
2003-04-26 22:11:09 +02:00
|
|
|
Passes.add(new TargetData("llc", TD.isLittleEndian(), TD.getPointerSize(),
|
2003-04-25 08:06:13 +02:00
|
|
|
TD.getPointerAlignment(), TD.getDoubleAlignment()));
|
2003-04-25 07:22:29 +02:00
|
|
|
|
2002-02-04 00:43:19 +01:00
|
|
|
// Figure out where we are going to send the output...
|
|
|
|
std::ostream *Out = 0;
|
2003-06-18 20:46:08 +02:00
|
|
|
if (OutputFilename != "") {
|
2003-06-18 23:43:33 +02: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 {
|
|
|
|
Out = &std::cout;
|
2003-06-18 20:46:08 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (InputFilename == "-") {
|
|
|
|
OutputFilename = "-";
|
|
|
|
Out = &std::cout;
|
|
|
|
} else {
|
2003-06-18 23:14:23 +02:00
|
|
|
OutputFilename = GetFileNameRoot(InputFilename);
|
2003-06-18 20:46:08 +02:00
|
|
|
OutputFilename += ".s";
|
|
|
|
|
2002-01-22 22:07:24 +01:00
|
|
|
if (!Force && std::ifstream(OutputFilename.c_str())) {
|
2002-01-20 23:54:45 +01:00
|
|
|
// If force is not specified, make sure not to overwrite a file!
|
2003-04-25 07:26:11 +02:00
|
|
|
std::cerr << argv[0] << ": error opening '" << OutputFilename
|
|
|
|
<< "': file exists!\n"
|
|
|
|
<< "Use -f command line argument to force output\n";
|
2002-01-20 23:54:45 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2003-06-18 20:46:08 +02:00
|
|
|
|
2002-01-20 23:54:45 +01:00
|
|
|
Out = new std::ofstream(OutputFilename.c_str());
|
2003-06-18 20:46:08 +02:00
|
|
|
if (!Out->good()) {
|
|
|
|
std::cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
|
|
|
|
delete Out;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2002-09-19 18:06:28 +02:00
|
|
|
// Make sure that the Out file gets unlink'd from the disk if we get a
|
|
|
|
// SIGINT
|
2002-04-18 21:55:25 +02:00
|
|
|
RemoveFileOnSignal(OutputFilename);
|
2001-10-15 19:30:47 +02:00
|
|
|
}
|
2003-06-18 20:46:08 +02:00
|
|
|
}
|
2002-09-16 18:35:34 +02:00
|
|
|
|
2003-06-18 23:14:23 +02:00
|
|
|
// Ask the target to add backend passes as necessary
|
2002-10-29 22:12:46 +01:00
|
|
|
if (Target.addPassesToEmitAssembly(Passes, *Out)) {
|
2003-04-25 07:26:11 +02:00
|
|
|
std::cerr << argv[0] << ": target '" << Target.getName()
|
2003-06-18 23:14:23 +02:00
|
|
|
<< "' does not support static compilation!\n";
|
|
|
|
if (Out != &std::cout) delete Out;
|
|
|
|
// And the Out file is empty and useless, so remove it now.
|
|
|
|
std::remove(OutputFilename.c_str());
|
|
|
|
return 1;
|
2002-10-29 22:12:46 +01:00
|
|
|
} else {
|
|
|
|
// Run our queue of passes all at once now, efficiently.
|
|
|
|
Passes.run(*M.get());
|
|
|
|
}
|
2001-10-18 03:31:22 +02:00
|
|
|
|
2002-09-19 18:06:28 +02:00
|
|
|
// Delete the ostream if it's not a stdout stream
|
2002-02-04 00:43:19 +01:00
|
|
|
if (Out != &std::cout) delete Out;
|
|
|
|
|
2001-10-18 22:33:21 +02:00
|
|
|
return 0;
|
2001-10-15 01:29:28 +02:00
|
|
|
}
|