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
|
|
|
|
//
|
2007-12-29 20:44:31 +00:00
|
|
|
// This file 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
|
2007-07-05 17:07:56 +00:00
|
|
|
// or C code, given LLVM bitcode.
|
2001-09-07 22:20:50 +00:00
|
|
|
//
|
2001-10-04 01:40:53 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-07-21 12:42:29 +00:00
|
|
|
|
2009-07-01 16:58:40 +00:00
|
|
|
#include "llvm/LLVMContext.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"
|
2009-08-03 04:03:51 +00:00
|
|
|
#include "llvm/ADT/Triple.h"
|
2009-09-02 19:35:19 +00:00
|
|
|
#include "llvm/Support/IRReader.h"
|
2009-08-03 04:03:51 +00:00
|
|
|
#include "llvm/CodeGen/LinkAllAsmWriterComponents.h"
|
|
|
|
#include "llvm/CodeGen/LinkAllCodegenComponents.h"
|
|
|
|
#include "llvm/Config/config.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2010-01-05 01:30:21 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
2009-07-14 20:18:05 +00:00
|
|
|
#include "llvm/Support/FormattedStream.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"
|
2009-03-06 05:34:10 +00:00
|
|
|
#include "llvm/Support/PrettyStackTrace.h"
|
2010-10-07 20:32:40 +00:00
|
|
|
#include "llvm/Support/ToolOutputFile.h"
|
2010-11-29 18:16:10 +00:00
|
|
|
#include "llvm/Support/Host.h"
|
|
|
|
#include "llvm/Support/Signals.h"
|
2009-08-03 04:03:51 +00:00
|
|
|
#include "llvm/Target/SubtargetFeature.h"
|
|
|
|
#include "llvm/Target/TargetData.h"
|
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
#include "llvm/Target/TargetRegistry.h"
|
2009-06-17 16:42:19 +00:00
|
|
|
#include "llvm/Target/TargetSelect.h"
|
2004-07-04 12:20:55 +00:00
|
|
|
#include <memory>
|
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>
|
2007-07-05 17:07:56 +00:00
|
|
|
InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
|
2002-07-22 02:10:13 +00:00
|
|
|
|
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"));
|
|
|
|
|
2009-05-04 23:05:19 +00:00
|
|
|
// Determine optimization level.
|
2009-04-29 23:29:43 +00:00
|
|
|
static cl::opt<char>
|
2009-04-29 00:15:41 +00:00
|
|
|
OptLevel("O",
|
2009-05-04 23:05:19 +00:00
|
|
|
cl::desc("Optimization level. [-O0, -O1, -O2, or -O3] "
|
|
|
|
"(default = '-O2')"),
|
2009-04-29 00:15:41 +00:00
|
|
|
cl::Prefix,
|
|
|
|
cl::ZeroOrMore,
|
2009-04-29 23:29:43 +00:00
|
|
|
cl::init(' '));
|
2005-11-08 02:12:17 +00:00
|
|
|
|
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
|
|
|
|
2009-07-16 02:23:53 +00:00
|
|
|
static cl::opt<std::string>
|
|
|
|
MArch("march", cl::desc("Architecture to generate code for (see --version)"));
|
2005-04-22 00:00:37 +00:00
|
|
|
|
2005-09-01 21:38:21 +00:00
|
|
|
static cl::opt<std::string>
|
2009-01-16 06:53:46 +00:00
|
|
|
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>
|
2009-01-16 06:53:46 +00:00
|
|
|
MAttrs("mattr",
|
2005-09-01 21:38:21 +00:00
|
|
|
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
|
|
|
|
2010-07-31 19:57:02 +00:00
|
|
|
static cl::opt<bool>
|
2010-08-06 21:37:45 +00:00
|
|
|
RelaxAll("mc-relax-all",
|
|
|
|
cl::desc("When used with filetype=obj, "
|
2010-08-08 23:26:49 +00:00
|
|
|
"relax all fixups in the emitted object file"));
|
2010-07-31 19:57:02 +00:00
|
|
|
|
2005-06-25 03:32:05 +00:00
|
|
|
cl::opt<TargetMachine::CodeGenFileType>
|
2010-02-02 21:06:45 +00:00
|
|
|
FileType("filetype", cl::init(TargetMachine::CGFT_AssemblyFile),
|
2005-06-25 03:32:05 +00:00
|
|
|
cl::desc("Choose a file type (not all types are supported by all targets):"),
|
|
|
|
cl::values(
|
2010-02-02 21:06:45 +00:00
|
|
|
clEnumValN(TargetMachine::CGFT_AssemblyFile, "asm",
|
2008-10-14 20:25:08 +00:00
|
|
|
"Emit an assembly ('.s') file"),
|
2010-02-02 21:06:45 +00:00
|
|
|
clEnumValN(TargetMachine::CGFT_ObjectFile, "obj",
|
2008-10-14 20:25:08 +00:00
|
|
|
"Emit a native object ('.o') file [experimental]"),
|
2010-02-03 05:55:08 +00:00
|
|
|
clEnumValN(TargetMachine::CGFT_Null, "null",
|
|
|
|
"Emit nothing, for performance testing"),
|
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
|
|
|
|
2010-12-01 15:36:49 +00:00
|
|
|
cl::opt<bool> DisableDotLoc("disable-dot-loc", cl::Hidden,
|
|
|
|
cl::desc("Do not use .loc entries"));
|
2005-06-25 03:32:05 +00:00
|
|
|
|
2011-04-30 03:44:37 +00:00
|
|
|
cl::opt<bool> DisableCFI("disable-cfi", cl::Hidden,
|
|
|
|
cl::desc("Do not use .cfi_* directives"));
|
|
|
|
|
2009-06-04 22:05:33 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
DisableRedZone("disable-red-zone",
|
|
|
|
cl::desc("Do not emit code that uses the red zone."),
|
|
|
|
cl::init(false));
|
|
|
|
|
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) &&
|
2009-09-16 19:18:41 +00:00
|
|
|
IFN[Len-3] == '.' &&
|
|
|
|
((IFN[Len-2] == 'b' && IFN[Len-1] == 'c') ||
|
|
|
|
(IFN[Len-2] == 'l' && IFN[Len-1] == 'l'))) {
|
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;
|
|
|
|
}
|
|
|
|
|
2010-09-01 14:20:41 +00:00
|
|
|
static tool_output_file *GetOutputStream(const char *TargetName,
|
|
|
|
Triple::OSType OS,
|
|
|
|
const char *ProgName) {
|
2010-08-18 17:55:15 +00:00
|
|
|
// If we don't yet have an output filename, make one.
|
|
|
|
if (OutputFilename.empty()) {
|
|
|
|
if (InputFilename == "-")
|
|
|
|
OutputFilename = "-";
|
|
|
|
else {
|
|
|
|
OutputFilename = GetFileNameRoot(InputFilename);
|
|
|
|
|
|
|
|
switch (FileType) {
|
|
|
|
default: assert(0 && "Unknown file type");
|
|
|
|
case TargetMachine::CGFT_AssemblyFile:
|
|
|
|
if (TargetName[0] == 'c') {
|
|
|
|
if (TargetName[1] == 0)
|
|
|
|
OutputFilename += ".cbe.c";
|
|
|
|
else if (TargetName[1] == 'p' && TargetName[2] == 'p')
|
|
|
|
OutputFilename += ".cpp";
|
|
|
|
else
|
|
|
|
OutputFilename += ".s";
|
|
|
|
} else
|
|
|
|
OutputFilename += ".s";
|
|
|
|
break;
|
|
|
|
case TargetMachine::CGFT_ObjectFile:
|
|
|
|
if (OS == Triple::Win32)
|
|
|
|
OutputFilename += ".obj";
|
|
|
|
else
|
|
|
|
OutputFilename += ".o";
|
|
|
|
break;
|
|
|
|
case TargetMachine::CGFT_Null:
|
|
|
|
OutputFilename += ".null";
|
|
|
|
break;
|
|
|
|
}
|
2008-08-21 15:33:45 +00:00
|
|
|
}
|
2006-09-04 04:14:57 +00:00
|
|
|
}
|
|
|
|
|
2010-08-18 17:55:15 +00:00
|
|
|
// Decide if we need "binary" output.
|
2008-11-13 05:01:07 +00:00
|
|
|
bool Binary = false;
|
2006-09-04 04:14:57 +00:00
|
|
|
switch (FileType) {
|
2010-02-02 21:06:45 +00:00
|
|
|
default: assert(0 && "Unknown file type");
|
|
|
|
case TargetMachine::CGFT_AssemblyFile:
|
2006-09-04 04:14:57 +00:00
|
|
|
break;
|
2010-02-02 21:06:45 +00:00
|
|
|
case TargetMachine::CGFT_ObjectFile:
|
2010-02-03 05:55:08 +00:00
|
|
|
case TargetMachine::CGFT_Null:
|
2008-11-13 05:01:07 +00:00
|
|
|
Binary = true;
|
2006-09-04 04:14:57 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-01-16 06:53:46 +00:00
|
|
|
|
2010-08-18 17:55:15 +00:00
|
|
|
// Open the file.
|
2008-08-21 00:14:44 +00:00
|
|
|
std::string error;
|
2009-08-23 02:51:22 +00:00
|
|
|
unsigned OpenFlags = 0;
|
|
|
|
if (Binary) OpenFlags |= raw_fd_ostream::F_Binary;
|
2010-08-20 01:07:01 +00:00
|
|
|
tool_output_file *FDOut = new tool_output_file(OutputFilename.c_str(), error,
|
|
|
|
OpenFlags);
|
2008-08-21 00:14:44 +00:00
|
|
|
if (!error.empty()) {
|
2009-07-15 16:35:29 +00:00
|
|
|
errs() << error << '\n';
|
2009-07-15 17:29:42 +00:00
|
|
|
delete FDOut;
|
2006-09-04 04:14:57 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2009-01-16 06:53:46 +00:00
|
|
|
|
2010-09-01 14:20:41 +00:00
|
|
|
return FDOut;
|
2006-09-04 04:14:57 +00:00
|
|
|
}
|
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) {
|
2007-05-06 04:55:19 +00:00
|
|
|
sys::PrintStackTraceOnErrorSignal();
|
2009-03-06 05:34:10 +00:00
|
|
|
PrettyStackTraceProgram X(argc, argv);
|
2010-01-05 01:30:21 +00:00
|
|
|
|
|
|
|
// Enable debug stream buffering.
|
|
|
|
EnableDebugBuffering = true;
|
|
|
|
|
2009-07-15 22:16:10 +00:00
|
|
|
LLVMContext &Context = getGlobalContext();
|
2009-03-06 05:34:10 +00:00
|
|
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
2004-07-11 04:03:24 +00:00
|
|
|
|
2009-09-03 05:47:22 +00:00
|
|
|
// Initialize targets first, so that --version shows registered targets.
|
2009-06-17 16:42:19 +00:00
|
|
|
InitializeAllTargets();
|
|
|
|
InitializeAllAsmPrinters();
|
add .o file writing for inline asm in llc. Here's a silly
demo:
$ clang asm.c -S -o - -emit-llvm | llc -filetype=obj -o t.o
<inline asm>:1:2: error: unrecognized instruction
abc incl %eax
^
LLVM ERROR: Error parsing inline asm
Only problem seems to be that the parser finalizes OutStreamer
at the end of the first inline asm, which isn't what we want.
For example:
$ cat asm.c
int foo(int X) {
__asm__ ("incl %0" : "+r" (X));
return X;
}
$ clang asm.c -S -o - -emit-llvm | llc
...
subq $8, %rsp
movl %edi, (%rsp)
movl %edi, %eax
## InlineAsm Start
incl %eax
## InlineAsm End
movl %eax, (%rsp)
movl %eax, 4(%rsp)
addq $8, %rsp
ret
$ clang asm.c -S -o - -emit-llvm | llc -filetype=obj -o t.o
$ otool -tv t.o
t.o:
(__TEXT,__text) section
_foo:
0000000000000000 subq $0x08,%rsp
0000000000000004 movl %edi,(%rsp)
0000000000000007 movl %edi,%eax
0000000000000009 incl %eax
$
don't stop at inc!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100491 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-05 23:11:24 +00:00
|
|
|
InitializeAllAsmParsers();
|
2009-07-16 02:04:54 +00:00
|
|
|
|
|
|
|
cl::ParseCommandLineOptions(argc, argv, "llvm system compiler\n");
|
2011-04-05 18:41:31 +00:00
|
|
|
|
2007-05-06 04:55:19 +00:00
|
|
|
// Load the module to be compiled...
|
2009-09-02 19:35:19 +00:00
|
|
|
SMDiagnostic Err;
|
2007-05-06 04:55:19 +00:00
|
|
|
std::auto_ptr<Module> M;
|
2009-01-16 06:53:46 +00:00
|
|
|
|
2009-09-02 19:35:19 +00:00
|
|
|
M.reset(ParseIRFile(InputFilename, Err, Context));
|
2007-05-06 04:55:19 +00:00
|
|
|
if (M.get() == 0) {
|
2009-09-02 19:35:19 +00:00
|
|
|
Err.Print(argv[0], errs());
|
2007-05-06 04:55:19 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
Module &mod = *M.get();
|
2009-01-16 06:53:46 +00:00
|
|
|
|
2007-05-06 04:55:19 +00:00
|
|
|
// If we are supposed to override the target triple, do so now.
|
|
|
|
if (!TargetTriple.empty())
|
2010-08-28 01:30:02 +00:00
|
|
|
mod.setTargetTriple(Triple::normalize(TargetTriple));
|
2009-01-16 06:53:46 +00:00
|
|
|
|
2009-08-03 04:03:51 +00:00
|
|
|
Triple TheTriple(mod.getTargetTriple());
|
|
|
|
if (TheTriple.getTriple().empty())
|
|
|
|
TheTriple.setTriple(sys::getHostTriple());
|
|
|
|
|
|
|
|
// Allocate target machine. First, check whether the user has explicitly
|
|
|
|
// specified an architecture to compile for. If so we have to look it up by
|
|
|
|
// name, because it might be a backend that has no mapping to a target triple.
|
2009-07-16 02:23:53 +00:00
|
|
|
const Target *TheTarget = 0;
|
|
|
|
if (!MArch.empty()) {
|
|
|
|
for (TargetRegistry::iterator it = TargetRegistry::begin(),
|
|
|
|
ie = TargetRegistry::end(); it != ie; ++it) {
|
|
|
|
if (MArch == it->getName()) {
|
|
|
|
TheTarget = &*it;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!TheTarget) {
|
|
|
|
errs() << argv[0] << ": error: invalid target '" << MArch << "'.\n";
|
|
|
|
return 1;
|
2009-08-03 04:03:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Adjust the triple to match (if known), otherwise stick with the
|
|
|
|
// module/host triple.
|
|
|
|
Triple::ArchType Type = Triple::getArchTypeForLLVMName(MArch);
|
|
|
|
if (Type != Triple::UnknownArch)
|
|
|
|
TheTriple.setArch(Type);
|
2009-07-15 20:24:03 +00:00
|
|
|
} else {
|
2007-05-06 04:55:19 +00:00
|
|
|
std::string Err;
|
2009-08-03 04:20:57 +00:00
|
|
|
TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(), Err);
|
2009-07-15 20:24:03 +00:00
|
|
|
if (TheTarget == 0) {
|
2009-07-15 16:35:29 +00:00
|
|
|
errs() << argv[0] << ": error auto-selecting target for module '"
|
|
|
|
<< Err << "'. Please use the -march option to explicitly "
|
|
|
|
<< "pick a target.\n";
|
2007-05-06 04:55:19 +00:00
|
|
|
return 1;
|
2005-09-01 21:38:21 +00:00
|
|
|
}
|
2007-05-06 04:55:19 +00:00
|
|
|
}
|
2005-09-01 21:38:21 +00:00
|
|
|
|
2007-05-06 04:55:19 +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();
|
|
|
|
}
|
2009-01-16 06:53:46 +00:00
|
|
|
|
2011-04-05 18:41:31 +00:00
|
|
|
std::auto_ptr<TargetMachine>
|
2009-08-04 04:08:40 +00:00
|
|
|
target(TheTarget->createTargetMachine(TheTriple.getTriple(), FeaturesStr));
|
2007-05-06 04:55:19 +00:00
|
|
|
assert(target.get() && "Could not allocate target machine!");
|
|
|
|
TargetMachine &Target = *target.get();
|
2004-12-30 05:36:08 +00:00
|
|
|
|
2010-12-01 15:36:49 +00:00
|
|
|
if (DisableDotLoc)
|
|
|
|
Target.setMCUseLoc(false);
|
2011-04-19 20:46:13 +00:00
|
|
|
|
2011-04-30 03:44:37 +00:00
|
|
|
if (DisableCFI)
|
|
|
|
Target.setMCUseCFI(false);
|
|
|
|
|
2011-04-19 20:46:13 +00:00
|
|
|
// Disable .loc support for older OS X versions.
|
2011-04-20 00:14:25 +00:00
|
|
|
if (TheTriple.isMacOSX() &&
|
2011-04-20 00:47:19 +00:00
|
|
|
TheTriple.isMacOSXVersionLT(10, 6))
|
2011-04-19 20:46:13 +00:00
|
|
|
Target.setMCUseLoc(false);
|
2010-12-01 15:36:49 +00:00
|
|
|
|
2007-05-06 04:55:19 +00:00
|
|
|
// Figure out where we are going to send the output...
|
2010-09-01 14:20:41 +00:00
|
|
|
OwningPtr<tool_output_file> Out
|
2010-08-20 01:07:01 +00:00
|
|
|
(GetOutputStream(TheTarget->getName(), TheTriple.getOS(), argv[0]));
|
|
|
|
if (!Out) return 1;
|
2009-01-16 06:53:46 +00:00
|
|
|
|
2009-05-04 23:05:19 +00:00
|
|
|
CodeGenOpt::Level OLvl = CodeGenOpt::Default;
|
2009-04-29 23:29:43 +00:00
|
|
|
switch (OptLevel) {
|
|
|
|
default:
|
2009-07-15 16:35:29 +00:00
|
|
|
errs() << argv[0] << ": invalid optimization level.\n";
|
2009-04-29 23:46:43 +00:00
|
|
|
return 1;
|
2009-04-29 23:29:43 +00:00
|
|
|
case ' ': break;
|
|
|
|
case '0': OLvl = CodeGenOpt::None; break;
|
2009-10-16 21:02:20 +00:00
|
|
|
case '1': OLvl = CodeGenOpt::Less; break;
|
2009-04-30 00:57:51 +00:00
|
|
|
case '2': OLvl = CodeGenOpt::Default; break;
|
2009-04-29 23:29:43 +00:00
|
|
|
case '3': OLvl = CodeGenOpt::Aggressive; break;
|
|
|
|
}
|
|
|
|
|
2010-05-11 19:57:55 +00:00
|
|
|
// Build up all of the passes that we want to do to the module.
|
|
|
|
PassManager PM;
|
|
|
|
|
|
|
|
// Add the target data from the target machine, if it exists, or the module.
|
|
|
|
if (const TargetData *TD = Target.getTargetData())
|
|
|
|
PM.add(new TargetData(*TD));
|
|
|
|
else
|
|
|
|
PM.add(new TargetData(&mod));
|
|
|
|
|
|
|
|
// Override default to generate verbose assembly.
|
|
|
|
Target.setAsmVerbosityDefault(true);
|
|
|
|
|
2010-07-31 19:57:02 +00:00
|
|
|
if (RelaxAll) {
|
|
|
|
if (FileType != TargetMachine::CGFT_ObjectFile)
|
|
|
|
errs() << argv[0]
|
|
|
|
<< ": warning: ignoring -mc-relax-all because filetype != obj";
|
|
|
|
else
|
|
|
|
Target.setMCRelaxAll(true);
|
|
|
|
}
|
|
|
|
|
2010-09-01 14:20:41 +00:00
|
|
|
{
|
|
|
|
formatted_raw_ostream FOS(Out->os());
|
2009-01-16 06:53:46 +00:00
|
|
|
|
2010-09-01 14:20:41 +00:00
|
|
|
// Ask the target to add backend passes as necessary.
|
|
|
|
if (Target.addPassesToEmitFile(PM, FOS, FileType, OLvl, NoVerify)) {
|
|
|
|
errs() << argv[0] << ": target does not support generation of this"
|
|
|
|
<< " file type!\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-04-05 18:54:36 +00:00
|
|
|
// Before executing passes, print the final values of the LLVM options.
|
|
|
|
cl::PrintOptionValues();
|
|
|
|
|
2010-09-01 14:20:41 +00:00
|
|
|
PM.run(mod);
|
|
|
|
}
|
2010-05-11 19:57:55 +00:00
|
|
|
|
2010-08-20 01:07:01 +00:00
|
|
|
// Declare success.
|
|
|
|
Out->keep();
|
2001-10-18 01:31:22 +00:00
|
|
|
|
2007-05-06 04:55:19 +00:00
|
|
|
return 0;
|
2001-10-14 23:29:28 +00:00
|
|
|
}
|