2003-06-20 15:49:04 +00:00
|
|
|
//===-- llc.cpp - Implement the LLVM Native Code Generator ----------------===//
|
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-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
|
2005-04-22 00:00:37 +00:00
|
|
|
// command-line interface for generating native assembly-language code
|
2004-03-16 21:47:20 +00:00
|
|
|
// 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"
|
2005-09-01 21:38:21 +00:00
|
|
|
#include "llvm/Target/SubtargetFeature.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"
|
2005-07-28 02:25:30 +00:00
|
|
|
#include "llvm/Support/PassNameParser.h"
|
|
|
|
#include "llvm/Analysis/Verifier.h"
|
2004-05-27 05:41:36 +00:00
|
|
|
#include "llvm/System/Signals.h"
|
2005-06-25 03:32:05 +00:00
|
|
|
#include "llvm/Config/config.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.
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
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>
|
2005-06-25 03:00:34 +00:00
|
|
|
MArch("march", cl::desc("Architecture to generate code for:"));
|
2005-04-22 00:00:37 +00:00
|
|
|
|
2005-09-01 21:38:21 +00:00
|
|
|
static cl::opt<std::string>
|
|
|
|
MCPU("mcpu",
|
2005-09-02 19:27:43 +00:00
|
|
|
cl::desc("Target a specific cpu type (-mcpu=help for list of choices)"),
|
2005-09-01 21:38:21 +00:00
|
|
|
cl::value_desc("cpu-name"),
|
|
|
|
cl::init(""));
|
|
|
|
|
|
|
|
static cl::list<std::string>
|
|
|
|
MAttrs("mattr",
|
|
|
|
cl::CommaSeparated,
|
2005-09-02 19:27:43 +00:00
|
|
|
cl::desc("Target specific attributes (-mattr=help for list of choices)"),
|
|
|
|
cl::value_desc("attr1,+attr2, ..., -attrN"));
|
2005-09-01 21:38:21 +00:00
|
|
|
|
2005-06-25 03:32:05 +00:00
|
|
|
cl::opt<TargetMachine::CodeGenFileType>
|
|
|
|
FileType("filetype", cl::init(TargetMachine::AssemblyFile),
|
|
|
|
cl::desc("Choose a file type (not all types are supported by all targets):"),
|
|
|
|
cl::values(
|
|
|
|
clEnumValN(TargetMachine::AssemblyFile, "asm",
|
|
|
|
" Emit an assembly ('.s') file"),
|
|
|
|
clEnumValN(TargetMachine::ObjectFile, "obj",
|
|
|
|
" Emit a native object ('.o') file"),
|
|
|
|
clEnumValN(TargetMachine::DynamicLibrary, "dynlib",
|
|
|
|
" Emit a native dynamic library ('.so') file"),
|
|
|
|
clEnumValEnd));
|
|
|
|
|
2005-07-28 02:25:30 +00:00
|
|
|
// The LLCPassList is populated with passes that were registered using
|
|
|
|
// PassInfo::LLC by the FilteredPassNameParser:
|
|
|
|
cl::list<const PassInfo*, bool, FilteredPassNameParser<PassInfo::LLC> >
|
|
|
|
LLCPassList(cl::desc("Passes Available"));
|
|
|
|
|
|
|
|
cl::opt<bool> NoVerify("disable-verify", cl::Hidden,
|
2005-07-30 18:33:25 +00:00
|
|
|
cl::desc("Do not verify input module"));
|
2005-07-28 02:25:30 +00:00
|
|
|
|
2005-06-25 03:32:05 +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) {
|
2004-12-30 05:36:08 +00:00
|
|
|
try {
|
|
|
|
cl::ParseCommandLineOptions(argc, argv, " llvm system compiler\n");
|
|
|
|
sys::PrintStackTraceOnErrorSignal();
|
|
|
|
|
|
|
|
// Load the module to be compiled...
|
|
|
|
std::auto_ptr<Module> M(ParseBytecodeFile(InputFilename));
|
|
|
|
if (M.get() == 0) {
|
|
|
|
std::cerr << argv[0] << ": bytecode didn't read correctly.\n";
|
2003-08-24 14:02:14 +00:00
|
|
|
return 1;
|
2004-07-11 04:03:24 +00:00
|
|
|
}
|
2004-12-30 05:36:08 +00:00
|
|
|
Module &mod = *M.get();
|
2004-07-11 04:03:24 +00:00
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
// Allocate target machine. First, check whether the user has
|
|
|
|
// explicitly specified an architecture to compile for.
|
|
|
|
TargetMachine* (*TargetMachineAllocator)(const Module&,
|
|
|
|
IntrinsicLowering *) = 0;
|
|
|
|
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";
|
2004-07-12 22:58:07 +00:00
|
|
|
return 1;
|
2003-06-18 21:43:33 +00:00
|
|
|
}
|
2004-12-30 05:36:08 +00:00
|
|
|
}
|
2003-06-18 21:43:33 +00:00
|
|
|
|
2005-09-01 21:38:21 +00:00
|
|
|
// Package up features to be passed to target/subtarget
|
|
|
|
std::string FeaturesStr;
|
|
|
|
if (MCPU.size() || MAttrs.size()) {
|
|
|
|
SubtargetFeatures Features;
|
|
|
|
Features.setCPU(MCPU);
|
|
|
|
for (unsigned i = 0; i != MAttrs.size(); ++i)
|
|
|
|
Features.AddFeature(MAttrs[i]);
|
|
|
|
FeaturesStr = Features.getString();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::auto_ptr<TargetMachine> target(MArch->CtorFn(mod, 0, FeaturesStr));
|
2004-12-30 05:36:08 +00:00
|
|
|
assert(target.get() && "Could not allocate target machine!");
|
|
|
|
TargetMachine &Target = *target.get();
|
|
|
|
const TargetData &TD = Target.getTargetData();
|
|
|
|
|
|
|
|
// Build up all of the passes that we want to do to the module...
|
|
|
|
PassManager Passes;
|
2005-06-25 03:00:34 +00:00
|
|
|
Passes.add(new TargetData(TD));
|
2004-12-30 05:36:08 +00:00
|
|
|
|
2005-07-28 02:25:30 +00:00
|
|
|
// Create a new pass for each one specified on the command line
|
|
|
|
for (unsigned i = 0; i < LLCPassList.size(); ++i) {
|
|
|
|
const PassInfo *aPass = LLCPassList[i];
|
|
|
|
|
|
|
|
if (aPass->getNormalCtor()) {
|
|
|
|
Pass *P = aPass->getNormalCtor()();
|
|
|
|
Passes.add(P);
|
|
|
|
} else {
|
|
|
|
std::cerr << argv[0] << ": cannot create pass: "
|
|
|
|
<< aPass->getPassName() << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-28 04:00:49 +00:00
|
|
|
#ifndef NDEBUG
|
|
|
|
if(!NoVerify)
|
|
|
|
Passes.add(createVerifierPass());
|
|
|
|
#endif
|
2005-07-28 02:25:30 +00:00
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
// Figure out where we are going to send the output...
|
|
|
|
std::ostream *Out = 0;
|
|
|
|
if (OutputFilename != "") {
|
|
|
|
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 unlinked from the disk if we get a
|
|
|
|
// SIGINT
|
|
|
|
sys::RemoveFileOnSignal(sys::Path(OutputFilename));
|
|
|
|
} else {
|
|
|
|
Out = &std::cout;
|
|
|
|
}
|
2003-06-18 21:43:33 +00:00
|
|
|
} else {
|
2004-12-30 05:36:08 +00:00
|
|
|
if (InputFilename == "-") {
|
|
|
|
OutputFilename = "-";
|
|
|
|
Out = &std::cout;
|
|
|
|
} else {
|
2005-04-22 00:00:37 +00:00
|
|
|
OutputFilename = GetFileNameRoot(InputFilename);
|
2004-12-30 05:36:08 +00:00
|
|
|
|
2005-06-25 03:32:05 +00:00
|
|
|
switch (FileType) {
|
|
|
|
case TargetMachine::AssemblyFile:
|
|
|
|
if (MArch->Name[0] != 'c' || MArch->Name[1] != 0) // not CBE
|
|
|
|
OutputFilename += ".s";
|
|
|
|
else
|
|
|
|
OutputFilename += ".cbe.c";
|
|
|
|
break;
|
|
|
|
case TargetMachine::ObjectFile:
|
|
|
|
OutputFilename += ".o";
|
|
|
|
break;
|
|
|
|
case TargetMachine::DynamicLibrary:
|
|
|
|
OutputFilename += LTDL_SHLIB_EXT;
|
|
|
|
break;
|
|
|
|
}
|
2005-04-22 00:00:37 +00:00
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
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-04-22 00:00:37 +00:00
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
Out = new std::ofstream(OutputFilename.c_str());
|
|
|
|
if (!Out->good()) {
|
|
|
|
std::cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
|
|
|
|
delete Out;
|
|
|
|
return 1;
|
|
|
|
}
|
2005-04-22 00:00:37 +00:00
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
// Make sure that the Out file gets unlinked from the disk if we get a
|
|
|
|
// SIGINT
|
|
|
|
sys::RemoveFileOnSignal(sys::Path(OutputFilename));
|
|
|
|
}
|
2003-06-18 18:46:08 +00:00
|
|
|
}
|
2004-12-30 05:36:08 +00:00
|
|
|
|
2005-06-25 03:00:34 +00:00
|
|
|
// Ask the target to add backend passes as necessary.
|
2005-06-25 03:32:05 +00:00
|
|
|
if (Target.addPassesToEmitFile(Passes, *Out, FileType)) {
|
2004-12-30 05:36:08 +00:00
|
|
|
std::cerr << argv[0] << ": target '" << Target.getName()
|
2005-06-25 03:32:05 +00:00
|
|
|
<< "' does not support generation of this file type!\n";
|
2004-12-30 05:36:08 +00:00
|
|
|
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;
|
2003-06-18 18:46:08 +00:00
|
|
|
} else {
|
2004-12-30 05:36:08 +00:00
|
|
|
// Run our queue of passes all at once now, efficiently.
|
|
|
|
Passes.run(*M.get());
|
2001-10-15 17:30:47 +00:00
|
|
|
}
|
2002-09-16 16:35:34 +00:00
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
// Delete the ostream if it's not a stdout stream
|
2003-06-18 21:14:23 +00:00
|
|
|
if (Out != &std::cout) delete Out;
|
2001-10-18 01:31:22 +00:00
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
return 0;
|
|
|
|
} catch (const std::string& msg) {
|
|
|
|
std::cerr << argv[0] << ": " << msg << "\n";
|
|
|
|
} catch (...) {
|
|
|
|
std::cerr << argv[0] << ": Unexpected unknown exception occurred.\n";
|
|
|
|
}
|
|
|
|
return 1;
|
2001-10-14 23:29:28 +00:00
|
|
|
}
|