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"
|
2007-02-08 01:41:07 +00:00
|
|
|
#include "llvm/CodeGen/FileWriters.h"
|
2006-08-01 22:34:35 +00:00
|
|
|
#include "llvm/CodeGen/LinkAllCodegenComponents.h"
|
2005-09-01 21:38:21 +00:00
|
|
|
#include "llvm/Target/SubtargetFeature.h"
|
2006-05-12 06:33:49 +00:00
|
|
|
#include "llvm/Target/TargetData.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"
|
2007-02-07 21:41:02 +00:00
|
|
|
#include "llvm/Support/Compressor.h"
|
2006-12-06 01:18:01 +00:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/PluginLoader.h"
|
2005-12-30 02:47:21 +00:00
|
|
|
#include "llvm/Support/FileUtilities.h"
|
2005-07-28 02:25:30 +00:00
|
|
|
#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"
|
2006-06-07 23:03:13 +00:00
|
|
|
#include "llvm/LinkAllVMCore.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"));
|
|
|
|
|
2005-11-08 02:12:17 +00:00
|
|
|
static cl::opt<bool> Fast("fast",
|
|
|
|
cl::desc("Generate code quickly, potentially sacrificing code quality"));
|
|
|
|
|
2005-12-16 04:59:57 +00:00
|
|
|
static cl::opt<std::string>
|
2005-12-16 05:19:55 +00:00
|
|
|
TargetTriple("mtriple", cl::desc("Override target triple for module"));
|
2005-11-08 02:12:17 +00:00
|
|
|
|
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-10-23 22:35:42 +00:00
|
|
|
cl::desc("Target a specific cpu type (-mcpu=help for details)"),
|
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-10-23 22:35:42 +00:00
|
|
|
cl::desc("Target specific attributes (-mattr=help for details)"),
|
2005-10-23 22:37:13 +00:00
|
|
|
cl::value_desc("a1,+a2,-a3,..."));
|
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",
|
2005-10-22 22:00:45 +00:00
|
|
|
" Emit a native object ('.o') file [experimental]"),
|
2005-06-25 03:32:05 +00:00
|
|
|
clEnumValN(TargetMachine::DynamicLibrary, "dynlib",
|
2006-08-23 21:29:52 +00:00
|
|
|
" Emit a native dynamic library ('.so') file"
|
|
|
|
" [experimental]"),
|
2005-06-25 03:32:05 +00:00
|
|
|
clEnumValEnd));
|
|
|
|
|
2005-07-28 02:25:30 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2006-09-04 04:14:57 +00:00
|
|
|
static std::ostream *GetOutputStream(const char *ProgName) {
|
|
|
|
if (OutputFilename != "") {
|
|
|
|
if (OutputFilename == "-")
|
|
|
|
return &std::cout;
|
|
|
|
|
|
|
|
// 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 << ProgName << ": error opening '" << OutputFilename
|
|
|
|
<< "': file exists!\n"
|
|
|
|
<< "Use -f command line argument to force output\n";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
// Make sure that the Out file gets unlinked from the disk if we get a
|
|
|
|
// SIGINT
|
|
|
|
sys::RemoveFileOnSignal(sys::Path(OutputFilename));
|
|
|
|
|
|
|
|
return new std::ofstream(OutputFilename.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (InputFilename == "-") {
|
|
|
|
OutputFilename = "-";
|
|
|
|
return &std::cout;
|
|
|
|
}
|
|
|
|
|
|
|
|
OutputFilename = GetFileNameRoot(InputFilename);
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Force && std::ifstream(OutputFilename.c_str())) {
|
|
|
|
// If force is not specified, make sure not to overwrite a file!
|
|
|
|
std::cerr << ProgName << ": error opening '" << OutputFilename
|
|
|
|
<< "': file exists!\n"
|
|
|
|
<< "Use -f command line argument to force output\n";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure that the Out file gets unlinked from the disk if we get a
|
|
|
|
// SIGINT
|
|
|
|
sys::RemoveFileOnSignal(sys::Path(OutputFilename));
|
|
|
|
|
|
|
|
std::ostream *Out = new std::ofstream(OutputFilename.c_str());
|
|
|
|
if (!Out->good()) {
|
|
|
|
std::cerr << ProgName << ": error opening " << OutputFilename << "!\n";
|
|
|
|
delete Out;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Out;
|
|
|
|
}
|
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) {
|
2006-12-06 01:18:01 +00:00
|
|
|
llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
|
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...
|
2007-03-26 22:38:01 +00:00
|
|
|
std::string errmsg;
|
2007-02-07 21:41:02 +00:00
|
|
|
std::auto_ptr<Module> M(ParseBytecodeFile(InputFilename,
|
2007-03-26 22:38:01 +00:00
|
|
|
Compressor::decompressToNewBuffer,
|
|
|
|
&errmsg));
|
2004-12-30 05:36:08 +00:00
|
|
|
if (M.get() == 0) {
|
|
|
|
std::cerr << argv[0] << ": bytecode didn't read correctly.\n";
|
2007-03-26 22:38:01 +00:00
|
|
|
std::cerr << "Reason: " << errmsg << "\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
|
|
|
|
2005-12-16 04:59:57 +00:00
|
|
|
// If we are supposed to override the target triple, do so now.
|
|
|
|
if (!TargetTriple.empty())
|
|
|
|
mod.setTargetTriple(TargetTriple);
|
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
// Allocate target machine. First, check whether the user has
|
|
|
|
// explicitly specified an architecture to compile for.
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2006-03-23 05:28:02 +00:00
|
|
|
std::auto_ptr<TargetMachine> target(MArch->CtorFn(mod, FeaturesStr));
|
2004-12-30 05:36:08 +00:00
|
|
|
assert(target.get() && "Could not allocate target machine!");
|
|
|
|
TargetMachine &Target = *target.get();
|
|
|
|
|
|
|
|
// Figure out where we are going to send the output...
|
2006-09-04 04:14:57 +00:00
|
|
|
std::ostream *Out = GetOutputStream(argv[0]);
|
|
|
|
if (Out == 0) return 1;
|
|
|
|
|
|
|
|
// If this target requires addPassesToEmitWholeFile, do it now. This is
|
|
|
|
// used by strange things like the C backend.
|
|
|
|
if (Target.WantsWholeFile()) {
|
|
|
|
PassManager PM;
|
|
|
|
PM.add(new TargetData(*Target.getTargetData()));
|
|
|
|
if (!NoVerify)
|
|
|
|
PM.add(createVerifierPass());
|
|
|
|
|
|
|
|
// Ask the target to add backend passes as necessary.
|
|
|
|
if (Target.addPassesToEmitWholeFile(PM, *Out, FileType, Fast)) {
|
|
|
|
std::cerr << argv[0] << ": target does not support generation of this"
|
|
|
|
<< " file type!\n";
|
|
|
|
if (Out != &std::cout) delete Out;
|
|
|
|
// And the Out file is empty and useless, so remove it now.
|
|
|
|
sys::Path(OutputFilename).eraseFromDisk();
|
|
|
|
return 1;
|
2004-12-30 05:36:08 +00:00
|
|
|
}
|
2006-09-04 04:14:57 +00:00
|
|
|
PM.run(mod);
|
2003-06-18 21:43:33 +00:00
|
|
|
} else {
|
2006-09-04 04:14:57 +00:00
|
|
|
// Build up all of the passes that we want to do to the module.
|
|
|
|
FunctionPassManager Passes(new ExistingModuleProvider(M.get()));
|
|
|
|
Passes.add(new TargetData(*Target.getTargetData()));
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
if (!NoVerify)
|
|
|
|
Passes.add(createVerifierPass());
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Ask the target to add backend passes as necessary.
|
2007-02-08 01:41:07 +00:00
|
|
|
MachineCodeEmitter *MCE = 0;
|
|
|
|
|
|
|
|
switch (Target.addPassesToEmitFile(Passes, *Out, FileType, Fast)) {
|
|
|
|
default:
|
|
|
|
assert(0 && "Invalid file model!");
|
|
|
|
return 1;
|
|
|
|
case FileModel::Error:
|
|
|
|
std::cerr << argv[0] << ": target does not support generation of this"
|
|
|
|
<< " file type!\n";
|
|
|
|
if (Out != &std::cout) delete Out;
|
|
|
|
// And the Out file is empty and useless, so remove it now.
|
|
|
|
sys::Path(OutputFilename).eraseFromDisk();
|
|
|
|
return 1;
|
|
|
|
case FileModel::AsmFile:
|
|
|
|
break;
|
|
|
|
case FileModel::MachOFile:
|
|
|
|
MCE = AddMachOWriter(Passes, *Out, Target);
|
|
|
|
break;
|
|
|
|
case FileModel::ElfFile:
|
|
|
|
MCE = AddELFWriter(Passes, *Out, Target);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Target.addPassesToEmitFileFinish(Passes, MCE, Fast)) {
|
2006-09-04 04:14:57 +00:00
|
|
|
std::cerr << argv[0] << ": target does not support generation of this"
|
|
|
|
<< " file type!\n";
|
|
|
|
if (Out != &std::cout) delete Out;
|
|
|
|
// And the Out file is empty and useless, so remove it now.
|
|
|
|
sys::Path(OutputFilename).eraseFromDisk();
|
|
|
|
return 1;
|
2004-12-30 05:36:08 +00:00
|
|
|
}
|
2006-09-04 04:14:57 +00:00
|
|
|
|
|
|
|
Passes.doInitialization();
|
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
// Run our queue of passes all at once now, efficiently.
|
2006-09-04 04:14:57 +00:00
|
|
|
// TODO: this could lazily stream functions out of the module.
|
|
|
|
for (Module::iterator I = mod.begin(), E = mod.end(); I != E; ++I)
|
2007-01-30 20:08:39 +00:00
|
|
|
if (!I->isDeclaration())
|
2006-09-04 04:14:57 +00:00
|
|
|
Passes.run(*I);
|
|
|
|
|
|
|
|
Passes.doFinalization();
|
2001-10-15 17:30:47 +00:00
|
|
|
}
|
2006-09-04 04:14:57 +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
|
|
|
}
|