2003-06-20 17:49:04 +02:00
|
|
|
//===-- llc.cpp - Implement the LLVM Native Code Generator ----------------===//
|
2005-04-22 02:00:37 +02:00
|
|
|
//
|
2003-10-20 19:47:21 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:44:31 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 02:00:37 +02:00
|
|
|
//
|
2003-10-20 19:47:21 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-09-08 00:20:50 +02:00
|
|
|
//
|
2004-03-16 22:47:20 +01:00
|
|
|
// This is the llc code generator driver. It provides a convenient
|
2005-04-22 02:00:37 +02:00
|
|
|
// command-line interface for generating native assembly-language code
|
2007-07-05 19:07:56 +02:00
|
|
|
// or C code, given LLVM bitcode.
|
2001-09-08 00:20:50 +02:00
|
|
|
//
|
2001-10-04 03:40:53 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-07-21 14:42:29 +02:00
|
|
|
|
2013-06-19 04:26:00 +02:00
|
|
|
|
2009-08-03 06:03:51 +02:00
|
|
|
#include "llvm/ADT/Triple.h"
|
2012-10-19 01:22:48 +02:00
|
|
|
#include "llvm/CodeGen/CommandFlags.h"
|
2009-08-03 06:03:51 +02:00
|
|
|
#include "llvm/CodeGen/LinkAllAsmWriterComponents.h"
|
|
|
|
#include "llvm/CodeGen/LinkAllCodegenComponents.h"
|
2013-01-02 12:36:10 +01:00
|
|
|
#include "llvm/IR/DataLayout.h"
|
2014-01-13 09:04:33 +01:00
|
|
|
#include "llvm/IR/IRPrintingPasses.h"
|
|
|
|
#include "llvm/IR/LLVMContext.h"
|
2013-01-02 12:36:10 +01:00
|
|
|
#include "llvm/IR/Module.h"
|
2013-03-26 03:25:37 +01:00
|
|
|
#include "llvm/IRReader/IRReader.h"
|
2011-06-29 03:14:12 +02:00
|
|
|
#include "llvm/MC/SubtargetFeature.h"
|
2012-12-04 11:44:52 +01:00
|
|
|
#include "llvm/Pass.h"
|
|
|
|
#include "llvm/PassManager.h"
|
2004-09-02 00:55:40 +02:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2010-01-05 02:30:21 +01:00
|
|
|
#include "llvm/Support/Debug.h"
|
2014-04-30 01:26:49 +02:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2009-07-14 22:18:05 +02:00
|
|
|
#include "llvm/Support/FormattedStream.h"
|
2012-12-04 11:44:52 +01:00
|
|
|
#include "llvm/Support/Host.h"
|
2006-12-06 02:18:01 +01:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2004-09-02 00:55:40 +02:00
|
|
|
#include "llvm/Support/PluginLoader.h"
|
2009-03-06 06:34:10 +01:00
|
|
|
#include "llvm/Support/PrettyStackTrace.h"
|
2010-11-29 19:16:10 +01:00
|
|
|
#include "llvm/Support/Signals.h"
|
2013-03-26 03:25:37 +01:00
|
|
|
#include "llvm/Support/SourceMgr.h"
|
2011-08-24 20:08:43 +02:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
|
|
|
#include "llvm/Support/TargetSelect.h"
|
2012-12-04 11:44:52 +01:00
|
|
|
#include "llvm/Support/ToolOutputFile.h"
|
2012-08-03 23:26:18 +02:00
|
|
|
#include "llvm/Target/TargetLibraryInfo.h"
|
2009-08-03 06:03:51 +02:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2014-08-04 23:25:23 +02:00
|
|
|
#include "llvm/Target/TargetSubtargetInfo.h"
|
2004-07-04 14:20:55 +02:00
|
|
|
#include <memory>
|
2003-11-11 23:41:34 +01:00
|
|
|
using namespace llvm;
|
|
|
|
|
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.
|
2005-04-22 02:00:37 +02:00
|
|
|
//
|
2003-04-25 07:26:11 +02:00
|
|
|
static cl::opt<std::string>
|
2007-07-05 19:07:56 +02:00
|
|
|
InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
|
2002-07-22 04:10:13 +02:00
|
|
|
|
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"));
|
|
|
|
|
2012-11-30 22:42:47 +01:00
|
|
|
static cl::opt<unsigned>
|
|
|
|
TimeCompilations("time-compilations", cl::Hidden, cl::init(1u),
|
|
|
|
cl::value_desc("N"),
|
|
|
|
cl::desc("Repeat compilation N times for timing"));
|
|
|
|
|
2014-02-21 04:13:54 +01:00
|
|
|
static cl::opt<bool>
|
|
|
|
NoIntegratedAssembler("no-integrated-as", cl::Hidden,
|
|
|
|
cl::desc("Disable integrated assembler"));
|
|
|
|
|
2009-05-05 01:05:19 +02:00
|
|
|
// Determine optimization level.
|
2009-04-30 01:29:43 +02:00
|
|
|
static cl::opt<char>
|
2009-04-29 02:15:41 +02:00
|
|
|
OptLevel("O",
|
2009-05-05 01:05:19 +02:00
|
|
|
cl::desc("Optimization level. [-O0, -O1, -O2, or -O3] "
|
|
|
|
"(default = '-O2')"),
|
2009-04-29 02:15:41 +02:00
|
|
|
cl::Prefix,
|
|
|
|
cl::ZeroOrMore,
|
2009-04-30 01:29:43 +02:00
|
|
|
cl::init(' '));
|
2005-11-08 03:12:17 +01:00
|
|
|
|
2005-12-16 05:59:57 +01:00
|
|
|
static cl::opt<std::string>
|
2005-12-16 06:19:55 +01:00
|
|
|
TargetTriple("mtriple", cl::desc("Override target triple for module"));
|
2005-11-08 03:12:17 +01:00
|
|
|
|
2014-05-21 23:05:05 +02:00
|
|
|
static cl::opt<bool> NoVerify("disable-verify", cl::Hidden,
|
|
|
|
cl::desc("Do not verify input module"));
|
2005-07-28 04:25:30 +02:00
|
|
|
|
2014-05-21 23:05:05 +02:00
|
|
|
static cl::opt<bool> DisableSimplifyLibCalls("disable-simplify-libcalls",
|
|
|
|
cl::desc("Disable simplify-libcalls"));
|
2012-08-21 18:15:24 +02:00
|
|
|
|
2014-05-21 23:05:09 +02:00
|
|
|
static cl::opt<bool> ShowMCEncoding("show-mc-encoding", cl::Hidden,
|
|
|
|
cl::desc("Show encoding in .s output"));
|
|
|
|
|
|
|
|
static cl::opt<bool> EnableDwarfDirectory(
|
|
|
|
"enable-dwarf-directory", cl::Hidden,
|
|
|
|
cl::desc("Use .file directives with an explicit directory."));
|
|
|
|
|
|
|
|
static cl::opt<bool> AsmVerbose("asm-verbose",
|
|
|
|
cl::desc("Add comments to directives."),
|
|
|
|
cl::init(true));
|
|
|
|
|
|
|
|
static int compileModule(char **, LLVMContext &);
|
2012-11-30 22:42:47 +01:00
|
|
|
|
2010-09-01 16:20:41 +02:00
|
|
|
static tool_output_file *GetOutputStream(const char *TargetName,
|
|
|
|
Triple::OSType OS,
|
|
|
|
const char *ProgName) {
|
2010-08-18 19:55:15 +02:00
|
|
|
// If we don't yet have an output filename, make one.
|
|
|
|
if (OutputFilename.empty()) {
|
|
|
|
if (InputFilename == "-")
|
|
|
|
OutputFilename = "-";
|
|
|
|
else {
|
2014-08-30 18:48:22 +02:00
|
|
|
// If InputFilename ends in .bc or .ll, remove it.
|
|
|
|
StringRef IFN = InputFilename;
|
|
|
|
if (IFN.endswith(".bc") || IFN.endswith(".ll"))
|
|
|
|
OutputFilename = IFN.drop_back(3);
|
|
|
|
else
|
|
|
|
OutputFilename = IFN;
|
2010-08-18 19:55:15 +02:00
|
|
|
|
|
|
|
switch (FileType) {
|
|
|
|
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 17:33:45 +02:00
|
|
|
}
|
2006-09-04 06:14:57 +02:00
|
|
|
}
|
|
|
|
|
2010-08-18 19:55:15 +02:00
|
|
|
// Decide if we need "binary" output.
|
2008-11-13 06:01:07 +01:00
|
|
|
bool Binary = false;
|
2006-09-04 06:14:57 +02:00
|
|
|
switch (FileType) {
|
2010-02-02 22:06:45 +01:00
|
|
|
case TargetMachine::CGFT_AssemblyFile:
|
2006-09-04 06:14:57 +02:00
|
|
|
break;
|
2010-02-02 22:06:45 +01:00
|
|
|
case TargetMachine::CGFT_ObjectFile:
|
2010-02-03 06:55:08 +01:00
|
|
|
case TargetMachine::CGFT_Null:
|
2008-11-13 06:01:07 +01:00
|
|
|
Binary = true;
|
2006-09-04 06:14:57 +02:00
|
|
|
break;
|
|
|
|
}
|
2009-01-16 07:53:46 +01:00
|
|
|
|
2010-08-18 19:55:15 +02:00
|
|
|
// Open the file.
|
2014-08-25 20:16:47 +02:00
|
|
|
std::error_code EC;
|
2013-07-16 21:44:17 +02:00
|
|
|
sys::fs::OpenFlags OpenFlags = sys::fs::F_None;
|
2014-02-24 19:20:12 +01:00
|
|
|
if (!Binary)
|
|
|
|
OpenFlags |= sys::fs::F_Text;
|
2014-08-25 20:16:47 +02:00
|
|
|
tool_output_file *FDOut = new tool_output_file(OutputFilename, EC, OpenFlags);
|
|
|
|
if (EC) {
|
|
|
|
errs() << EC.message() << '\n';
|
2009-07-15 19:29:42 +02:00
|
|
|
delete FDOut;
|
2014-04-25 06:24:47 +02:00
|
|
|
return nullptr;
|
2006-09-04 06:14:57 +02:00
|
|
|
}
|
2009-01-16 07:53:46 +01:00
|
|
|
|
2010-09-01 16:20:41 +02:00
|
|
|
return FDOut;
|
2006-09-04 06:14:57 +02:00
|
|
|
}
|
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) {
|
2007-05-06 06:55:19 +02:00
|
|
|
sys::PrintStackTraceOnErrorSignal();
|
2009-03-06 06:34:10 +01:00
|
|
|
PrettyStackTraceProgram X(argc, argv);
|
2010-01-05 02:30:21 +01:00
|
|
|
|
|
|
|
// Enable debug stream buffering.
|
|
|
|
EnableDebugBuffering = true;
|
|
|
|
|
2009-07-16 00:16:10 +02:00
|
|
|
LLVMContext &Context = getGlobalContext();
|
2009-03-06 06:34:10 +01:00
|
|
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
2004-07-11 06:03:24 +02:00
|
|
|
|
2009-09-03 07:47:22 +02:00
|
|
|
// Initialize targets first, so that --version shows registered targets.
|
2009-06-17 18:42:19 +02:00
|
|
|
InitializeAllTargets();
|
2011-07-22 23:58:54 +02:00
|
|
|
InitializeAllTargetMCs();
|
2009-06-17 18:42:19 +02:00
|
|
|
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!
llvm-svn: 100491
2010-04-06 01:11:24 +02:00
|
|
|
InitializeAllAsmParsers();
|
2009-07-16 04:04:54 +02:00
|
|
|
|
2012-07-02 21:48:45 +02:00
|
|
|
// Initialize codegen and IR passes used by llc so that the -print-after,
|
|
|
|
// -print-before, and -stop-after options work.
|
|
|
|
PassRegistry *Registry = PassRegistry::getPassRegistry();
|
|
|
|
initializeCore(*Registry);
|
|
|
|
initializeCodeGen(*Registry);
|
|
|
|
initializeLoopStrengthReducePass(*Registry);
|
|
|
|
initializeLowerIntrinsicsPass(*Registry);
|
|
|
|
initializeUnreachableBlockElimPass(*Registry);
|
2012-06-26 23:33:36 +02:00
|
|
|
|
2011-07-22 09:50:48 +02:00
|
|
|
// Register the target printer for --version.
|
|
|
|
cl::AddExtraVersionPrinter(TargetRegistry::printRegisteredTargetsForVersion);
|
|
|
|
|
2009-07-16 04:04:54 +02:00
|
|
|
cl::ParseCommandLineOptions(argc, argv, "llvm system compiler\n");
|
2011-04-05 20:41:31 +02:00
|
|
|
|
2012-11-30 22:42:47 +01:00
|
|
|
// Compile the module TimeCompilations times to give better compile time
|
|
|
|
// metrics.
|
|
|
|
for (unsigned I = TimeCompilations; I; --I)
|
|
|
|
if (int RetVal = compileModule(argv, Context))
|
|
|
|
return RetVal;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int compileModule(char **argv, LLVMContext &Context) {
|
2007-05-06 06:55:19 +02:00
|
|
|
// Load the module to be compiled...
|
2009-09-02 21:35:19 +02:00
|
|
|
SMDiagnostic Err;
|
2014-03-06 06:51:42 +01:00
|
|
|
std::unique_ptr<Module> M;
|
2014-04-25 06:24:47 +02:00
|
|
|
Module *mod = nullptr;
|
2012-06-27 18:23:48 +02:00
|
|
|
Triple TheTriple;
|
|
|
|
|
|
|
|
bool SkipModule = MCPU == "help" ||
|
|
|
|
(!MAttrs.empty() && MAttrs.front() == "help");
|
|
|
|
|
2014-04-12 03:34:31 +02:00
|
|
|
// If user asked for the 'native' CPU, autodetect here. If autodection fails,
|
|
|
|
// this will set the CPU to an empty string which tells the target to
|
|
|
|
// pick a basic default.
|
|
|
|
if (MCPU == "native")
|
|
|
|
MCPU = sys::getHostCPUName();
|
|
|
|
|
2012-06-27 18:23:48 +02:00
|
|
|
// If user just wants to list available options, skip module loading
|
|
|
|
if (!SkipModule) {
|
2014-08-26 19:29:46 +02:00
|
|
|
M = parseIRFile(InputFilename, Err, Context);
|
2012-06-27 18:23:48 +02:00
|
|
|
mod = M.get();
|
2014-04-25 06:24:47 +02:00
|
|
|
if (mod == nullptr) {
|
2012-06-27 18:23:48 +02:00
|
|
|
Err.print(argv[0], errs());
|
|
|
|
return 1;
|
|
|
|
}
|
2009-01-16 07:53:46 +01:00
|
|
|
|
2012-06-27 18:23:48 +02:00
|
|
|
// If we are supposed to override the target triple, do so now.
|
|
|
|
if (!TargetTriple.empty())
|
|
|
|
mod->setTargetTriple(Triple::normalize(TargetTriple));
|
|
|
|
TheTriple = Triple(mod->getTargetTriple());
|
|
|
|
} else {
|
|
|
|
TheTriple = Triple(Triple::normalize(TargetTriple));
|
2007-05-06 06:55:19 +02:00
|
|
|
}
|
2009-01-16 07:53:46 +01:00
|
|
|
|
2009-08-03 06:03:51 +02:00
|
|
|
if (TheTriple.getTriple().empty())
|
2011-11-01 22:32:20 +01:00
|
|
|
TheTriple.setTriple(sys::getDefaultTargetTriple());
|
2009-08-03 06:03:51 +02:00
|
|
|
|
2012-05-09 01:38:45 +02:00
|
|
|
// Get the target specific parser.
|
|
|
|
std::string Error;
|
|
|
|
const Target *TheTarget = TargetRegistry::lookupTarget(MArch, TheTriple,
|
|
|
|
Error);
|
|
|
|
if (!TheTarget) {
|
|
|
|
errs() << argv[0] << ": " << Error;
|
|
|
|
return 1;
|
2007-05-06 06:55:19 +02:00
|
|
|
}
|
2005-09-01 23:38:21 +02:00
|
|
|
|
2007-05-06 06:55:19 +02:00
|
|
|
// Package up features to be passed to target/subtarget
|
|
|
|
std::string FeaturesStr;
|
2011-06-30 03:53:36 +02:00
|
|
|
if (MAttrs.size()) {
|
2007-05-06 06:55:19 +02:00
|
|
|
SubtargetFeatures Features;
|
|
|
|
for (unsigned i = 0; i != MAttrs.size(); ++i)
|
|
|
|
Features.AddFeature(MAttrs[i]);
|
|
|
|
FeaturesStr = Features.getString();
|
|
|
|
}
|
2009-01-16 07:53:46 +01:00
|
|
|
|
2011-11-16 09:38:26 +01:00
|
|
|
CodeGenOpt::Level OLvl = CodeGenOpt::Default;
|
|
|
|
switch (OptLevel) {
|
|
|
|
default:
|
|
|
|
errs() << argv[0] << ": invalid optimization level.\n";
|
|
|
|
return 1;
|
|
|
|
case ' ': break;
|
|
|
|
case '0': OLvl = CodeGenOpt::None; break;
|
|
|
|
case '1': OLvl = CodeGenOpt::Less; break;
|
|
|
|
case '2': OLvl = CodeGenOpt::Default; break;
|
|
|
|
case '3': OLvl = CodeGenOpt::Aggressive; break;
|
|
|
|
}
|
|
|
|
|
2014-02-19 18:09:35 +01:00
|
|
|
TargetOptions Options = InitTargetOptionsFromCodeGenFlags();
|
2014-02-21 04:13:54 +01:00
|
|
|
Options.DisableIntegratedAS = NoIntegratedAssembler;
|
2014-05-21 23:05:09 +02:00
|
|
|
Options.MCOptions.ShowMCEncoding = ShowMCEncoding;
|
|
|
|
Options.MCOptions.MCUseDwarfDirectory = EnableDwarfDirectory;
|
|
|
|
Options.MCOptions.AsmVerbose = AsmVerbose;
|
2014-05-21 01:59:50 +02:00
|
|
|
|
2014-03-06 06:51:42 +01:00
|
|
|
std::unique_ptr<TargetMachine> target(
|
|
|
|
TheTarget->createTargetMachine(TheTriple.getTriple(), MCPU, FeaturesStr,
|
|
|
|
Options, RelocModel, CMModel, OLvl));
|
2007-05-06 06:55:19 +02:00
|
|
|
assert(target.get() && "Could not allocate target machine!");
|
2014-05-06 18:29:50 +02:00
|
|
|
|
|
|
|
// If we don't have a module then just exit now. We do this down
|
|
|
|
// here since the CPU/Feature help is underneath the target machine
|
|
|
|
// creation.
|
|
|
|
if (SkipModule)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
assert(mod && "Should have exited if we didn't have a module!");
|
2007-05-06 06:55:19 +02:00
|
|
|
TargetMachine &Target = *target.get();
|
2004-12-30 06:36:08 +01:00
|
|
|
|
2011-12-02 23:16:29 +01:00
|
|
|
if (GenerateSoftFloatCalls)
|
|
|
|
FloatABIForCalls = FloatABI::Soft;
|
|
|
|
|
2012-07-19 02:11:45 +02:00
|
|
|
// Figure out where we are going to send the output.
|
2014-03-06 06:51:42 +01:00
|
|
|
std::unique_ptr<tool_output_file> Out(
|
|
|
|
GetOutputStream(TheTarget->getName(), TheTriple.getOS(), argv[0]));
|
2010-08-20 03:07:01 +02:00
|
|
|
if (!Out) return 1;
|
2009-01-16 07:53:46 +01:00
|
|
|
|
2010-05-11 21:57:55 +02:00
|
|
|
// Build up all of the passes that we want to do to the module.
|
|
|
|
PassManager PM;
|
|
|
|
|
2012-08-03 23:26:18 +02:00
|
|
|
// Add an appropriate TargetLibraryInfo pass for the module's triple.
|
|
|
|
TargetLibraryInfo *TLI = new TargetLibraryInfo(TheTriple);
|
2012-08-08 22:31:37 +02:00
|
|
|
if (DisableSimplifyLibCalls)
|
2012-08-03 23:26:18 +02:00
|
|
|
TLI->disableAllFunctions();
|
2012-08-08 22:31:37 +02:00
|
|
|
PM.add(TLI);
|
2012-08-03 23:26:18 +02:00
|
|
|
|
2010-05-11 21:57:55 +02:00
|
|
|
// Add the target data from the target machine, if it exists, or the module.
|
2014-08-04 23:25:23 +02:00
|
|
|
if (const DataLayout *DL = Target.getSubtargetImpl()->getDataLayout())
|
2014-02-26 00:25:17 +01:00
|
|
|
mod->setDataLayout(DL);
|
2014-09-10 23:27:43 +02:00
|
|
|
PM.add(new DataLayoutPass());
|
2010-05-11 21:57:55 +02:00
|
|
|
|
2014-05-15 03:10:50 +02:00
|
|
|
if (RelaxAll.getNumOccurrences() > 0 &&
|
|
|
|
FileType != TargetMachine::CGFT_ObjectFile)
|
|
|
|
errs() << argv[0]
|
2010-07-31 21:57:02 +02:00
|
|
|
<< ": warning: ignoring -mc-relax-all because filetype != obj";
|
|
|
|
|
2010-09-01 16:20:41 +02:00
|
|
|
{
|
|
|
|
formatted_raw_ostream FOS(Out->os());
|
2009-01-16 07:53:46 +01:00
|
|
|
|
2014-04-25 06:24:47 +02:00
|
|
|
AnalysisID StartAfterID = nullptr;
|
|
|
|
AnalysisID StopAfterID = nullptr;
|
2012-07-02 21:48:45 +02:00
|
|
|
const PassRegistry *PR = PassRegistry::getPassRegistry();
|
|
|
|
if (!StartAfter.empty()) {
|
|
|
|
const PassInfo *PI = PR->getPassInfo(StartAfter);
|
|
|
|
if (!PI) {
|
|
|
|
errs() << argv[0] << ": start-after pass is not registered.\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
StartAfterID = PI->getTypeInfo();
|
|
|
|
}
|
|
|
|
if (!StopAfter.empty()) {
|
|
|
|
const PassInfo *PI = PR->getPassInfo(StopAfter);
|
|
|
|
if (!PI) {
|
|
|
|
errs() << argv[0] << ": stop-after pass is not registered.\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
StopAfterID = PI->getTypeInfo();
|
|
|
|
}
|
|
|
|
|
2010-09-01 16:20:41 +02:00
|
|
|
// Ask the target to add backend passes as necessary.
|
2012-07-02 21:48:45 +02:00
|
|
|
if (Target.addPassesToEmitFile(PM, FOS, FileType, NoVerify,
|
|
|
|
StartAfterID, StopAfterID)) {
|
2010-09-01 16:20:41 +02:00
|
|
|
errs() << argv[0] << ": target does not support generation of this"
|
|
|
|
<< " file type!\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-04-05 20:54:36 +02:00
|
|
|
// Before executing passes, print the final values of the LLVM options.
|
|
|
|
cl::PrintOptionValues();
|
|
|
|
|
2012-06-27 18:23:48 +02:00
|
|
|
PM.run(*mod);
|
2010-09-01 16:20:41 +02:00
|
|
|
}
|
2010-05-11 21:57:55 +02:00
|
|
|
|
2010-08-20 03:07:01 +02:00
|
|
|
// Declare success.
|
|
|
|
Out->keep();
|
2001-10-18 03:31:22 +02:00
|
|
|
|
2007-05-06 06:55:19 +02:00
|
|
|
return 0;
|
2001-10-15 01:29:28 +02:00
|
|
|
}
|