2003-06-20 15:49:04 +00:00
|
|
|
//===-- llc.cpp - Implement the LLVM Native Code Generator ----------------===//
|
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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2001-09-07 22:20:50 +00:00
|
|
|
//
|
2004-03-16 21:47:20 +00:00
|
|
|
// This is the llc code generator driver. It provides a convenient
|
|
|
|
// command-line interface for generating native assembly-language code
|
|
|
|
// or C code, given LLVM bytecode.
|
2001-09-07 22:20:50 +00:00
|
|
|
//
|
2001-10-04 01:40:53 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-07-21 12:42:29 +00:00
|
|
|
|
|
|
|
#include "llvm/Bytecode/Reader.h"
|
2001-09-18 13:10:45 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2004-07-11 04:03:24 +00:00
|
|
|
#include "llvm/Target/TargetMachineRegistry.h"
|
2002-05-07 20:03:27 +00:00
|
|
|
#include "llvm/Transforms/Scalar.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"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
#include "llvm/Support/PluginLoader.h"
|
2004-05-27 05:41:36 +00:00
|
|
|
#include "llvm/System/Signals.h"
|
2001-09-19 16:52:09 +00:00
|
|
|
#include <fstream>
|
2004-07-04 12:20:55 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <memory>
|
2002-09-16 16:35:34 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2002-09-16 16:35:34 +00: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 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"));
|
|
|
|
|
2004-07-11 04:03:24 +00:00
|
|
|
static cl::opt<const TargetMachineRegistry::Entry*, false, TargetNameParser>
|
|
|
|
MArch("march", cl::desc("Architecture to generate assembly for:"));
|
|
|
|
|
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
|
2004-07-11 04:03:24 +00:00
|
|
|
GetFileNameRoot(const std::string &InputFilename) {
|
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();
|
2003-08-28 21:42:29 +00:00
|
|
|
if ((Len > 2) &&
|
|
|
|
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
|
|
|
|
2003-06-20 15:49:04 +00:00
|
|
|
// main - Entry point for the llc compiler.
|
|
|
|
//
|
|
|
|
int main(int argc, char **argv) {
|
2001-10-14 23:29:28 +00:00
|
|
|
cl::ParseCommandLineOptions(argc, argv, " llvm system compiler\n");
|
2004-08-29 19:28:55 +00:00
|
|
|
sys::PrintStackTraceOnErrorSignal();
|
2004-02-19 20:32:39 +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));
|
2003-06-20 15:49:04 +00:00
|
|
|
if (M.get() == 0) {
|
|
|
|
std::cerr << argv[0] << ": bytecode didn't read correctly.\n";
|
|
|
|
return 1;
|
|
|
|
}
|
2003-06-18 21:14:23 +00:00
|
|
|
Module &mod = *M.get();
|
|
|
|
|
|
|
|
// Allocate target machine. First, check whether the user has
|
|
|
|
// explicitly specified an architecture to compile for.
|
2003-12-28 09:51:04 +00:00
|
|
|
TargetMachine* (*TargetMachineAllocator)(const Module&,
|
|
|
|
IntrinsicLowering *) = 0;
|
2004-07-11 04:03:24 +00:00
|
|
|
if (MArch == 0) {
|
|
|
|
std::string Err;
|
|
|
|
MArch = TargetMachineRegistry::getClosestStaticTargetForModule(mod, Err);
|
|
|
|
if (MArch == 0) {
|
|
|
|
std::cerr << argv[0] << ": error auto-selecting target for module '"
|
|
|
|
<< Err << "'. Please use the -march option to explicitly "
|
|
|
|
<< "pick a target.\n";
|
2003-08-24 14:02:14 +00:00
|
|
|
return 1;
|
2004-07-11 04:03:24 +00:00
|
|
|
}
|
2003-06-18 21:14:23 +00:00
|
|
|
}
|
2004-07-11 04:03:24 +00:00
|
|
|
|
|
|
|
std::auto_ptr<TargetMachine> target(MArch->CtorFn(mod, 0));
|
2003-06-18 21:14:23 +00:00
|
|
|
assert(target.get() && "Could not allocate target machine!");
|
|
|
|
TargetMachine &Target = *target.get();
|
|
|
|
const TargetData &TD = Target.getTargetData();
|
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;
|
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-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 != "") {
|
2003-06-18 21:43:33 +00:00
|
|
|
if (OutputFilename != "-") {
|
|
|
|
// Specified an output filename?
|
|
|
|
if (!Force && std::ifstream(OutputFilename.c_str())) {
|
2004-07-12 22:58:07 +00:00
|
|
|
// 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;
|
2003-06-18 21:43:33 +00:00
|
|
|
}
|
|
|
|
Out = new std::ofstream(OutputFilename.c_str());
|
|
|
|
|
2003-10-10 17:56:49 +00:00
|
|
|
// Make sure that the Out file gets unlinked from the disk if we get a
|
2003-06-18 21:43:33 +00:00
|
|
|
// SIGINT
|
2004-11-14 22:30:54 +00:00
|
|
|
sys::RemoveFileOnSignal(sys::Path(OutputFilename));
|
2003-06-18 21:43:33 +00:00
|
|
|
} else {
|
|
|
|
Out = &std::cout;
|
2003-06-18 18:46:08 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (InputFilename == "-") {
|
|
|
|
OutputFilename = "-";
|
|
|
|
Out = &std::cout;
|
|
|
|
} else {
|
2003-06-18 21:14:23 +00:00
|
|
|
OutputFilename = GetFileNameRoot(InputFilename);
|
2004-02-15 22:54:19 +00:00
|
|
|
|
2004-07-11 04:03:24 +00:00
|
|
|
if (MArch->Name[0] != 'c' || MArch->Name[1] != 0) // not CBE
|
2004-02-15 22:54:19 +00:00
|
|
|
OutputFilename += ".s";
|
|
|
|
else
|
|
|
|
OutputFilename += ".cbe.c";
|
2003-06-18 18:46:08 +00:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2003-10-10 17:56:49 +00:00
|
|
|
// Make sure that the Out file gets unlinked from the disk if we get a
|
2002-09-19 16:06:28 +00:00
|
|
|
// SIGINT
|
2004-11-14 22:30:54 +00:00
|
|
|
sys::RemoveFileOnSignal(sys::Path(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
|
|
|
|
2003-06-18 21:14:23 +00:00
|
|
|
// Ask the target to add backend passes as necessary
|
2002-10-29 21:12:46 +00:00
|
|
|
if (Target.addPassesToEmitAssembly(Passes, *Out)) {
|
2003-04-25 05:26:11 +00:00
|
|
|
std::cerr << argv[0] << ": target '" << Target.getName()
|
2003-06-18 21:14:23 +00: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 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
|
|
|
}
|