2003-06-20 23:49:04 +08:00
|
|
|
//===-- llc.cpp - Implement the LLVM Native Code Generator ----------------===//
|
2005-04-22 08:00:37 +08:00
|
|
|
//
|
2003-10-21 01:47:21 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:44:31 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 08:00:37 +08:00
|
|
|
//
|
2003-10-21 01:47:21 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-09-08 06:20:50 +08:00
|
|
|
//
|
2004-03-17 05:47:20 +08:00
|
|
|
// This is the llc code generator driver. It provides a convenient
|
2005-04-22 08:00:37 +08:00
|
|
|
// command-line interface for generating native assembly-language code
|
2007-07-06 01:07:56 +08:00
|
|
|
// or C code, given LLVM bitcode.
|
2001-09-08 06:20:50 +08:00
|
|
|
//
|
2001-10-04 09:40:53 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-07-21 20:42:29 +08:00
|
|
|
|
2009-07-02 00:58:40 +08:00
|
|
|
#include "llvm/LLVMContext.h"
|
2012-10-09 00:39:34 +08:00
|
|
|
#include "llvm/DataLayout.h"
|
2001-09-08 05:26:31 +08:00
|
|
|
#include "llvm/Module.h"
|
2002-01-31 08:46:45 +08:00
|
|
|
#include "llvm/PassManager.h"
|
2002-09-17 00:35:34 +08:00
|
|
|
#include "llvm/Pass.h"
|
2009-08-03 12:03:51 +08:00
|
|
|
#include "llvm/ADT/Triple.h"
|
2012-07-03 03:48:45 +08:00
|
|
|
#include "llvm/Assembly/PrintModulePass.h"
|
2009-09-03 03:35:19 +08:00
|
|
|
#include "llvm/Support/IRReader.h"
|
2012-10-19 07:22:48 +08:00
|
|
|
#include "llvm/CodeGen/CommandFlags.h"
|
2009-08-03 12:03:51 +08:00
|
|
|
#include "llvm/CodeGen/LinkAllAsmWriterComponents.h"
|
|
|
|
#include "llvm/CodeGen/LinkAllCodegenComponents.h"
|
2011-06-29 09:14:12 +08:00
|
|
|
#include "llvm/MC/SubtargetFeature.h"
|
2004-09-02 06:55:40 +08:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2010-01-05 09:30:21 +08:00
|
|
|
#include "llvm/Support/Debug.h"
|
2009-07-15 04:18:05 +08:00
|
|
|
#include "llvm/Support/FormattedStream.h"
|
2006-12-06 09:18:01 +08:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2004-09-02 06:55:40 +08:00
|
|
|
#include "llvm/Support/PluginLoader.h"
|
2009-03-06 13:34:10 +08:00
|
|
|
#include "llvm/Support/PrettyStackTrace.h"
|
2010-10-08 04:32:40 +08:00
|
|
|
#include "llvm/Support/ToolOutputFile.h"
|
2010-11-30 02:16:10 +08:00
|
|
|
#include "llvm/Support/Host.h"
|
|
|
|
#include "llvm/Support/Signals.h"
|
2011-08-25 02:08:43 +08:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
|
|
|
#include "llvm/Support/TargetSelect.h"
|
2012-08-04 05:26:18 +08:00
|
|
|
#include "llvm/Target/TargetLibraryInfo.h"
|
2009-08-03 12:03:51 +08:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2004-07-04 20:20:55 +08:00
|
|
|
#include <memory>
|
2003-11-12 06:41:34 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2002-09-17 00:35:34 +08: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 08:00:37 +08:00
|
|
|
//
|
2003-04-25 13:26:11 +08:00
|
|
|
static cl::opt<std::string>
|
2007-07-06 01:07:56 +08:00
|
|
|
InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
|
2002-07-22 10:10:13 +08:00
|
|
|
|
2003-04-25 13:26:11 +08:00
|
|
|
static cl::opt<std::string>
|
2002-07-22 10:10:13 +08:00
|
|
|
OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"));
|
|
|
|
|
2009-05-05 07:05:19 +08:00
|
|
|
// Determine optimization level.
|
2009-04-30 07:29:43 +08:00
|
|
|
static cl::opt<char>
|
2009-04-29 08:15:41 +08:00
|
|
|
OptLevel("O",
|
2009-05-05 07:05:19 +08:00
|
|
|
cl::desc("Optimization level. [-O0, -O1, -O2, or -O3] "
|
|
|
|
"(default = '-O2')"),
|
2009-04-29 08:15:41 +08:00
|
|
|
cl::Prefix,
|
|
|
|
cl::ZeroOrMore,
|
2009-04-30 07:29:43 +08:00
|
|
|
cl::init(' '));
|
2005-11-08 10:12:17 +08:00
|
|
|
|
2005-12-16 12:59:57 +08:00
|
|
|
static cl::opt<std::string>
|
2005-12-16 13:19:55 +08:00
|
|
|
TargetTriple("mtriple", cl::desc("Override target triple for module"));
|
2005-11-08 10:12:17 +08:00
|
|
|
|
2005-07-28 10:25:30 +08:00
|
|
|
cl::opt<bool> NoVerify("disable-verify", cl::Hidden,
|
2005-07-31 02:33:25 +08:00
|
|
|
cl::desc("Do not verify input module"));
|
2005-07-28 10:25:30 +08:00
|
|
|
|
2012-10-19 07:22:48 +08:00
|
|
|
cl::opt<bool>
|
2012-08-04 05:26:18 +08:00
|
|
|
DisableSimplifyLibCalls("disable-simplify-libcalls",
|
2012-10-19 07:22:48 +08:00
|
|
|
cl::desc("Disable simplify-libcalls"),
|
|
|
|
cl::init(false));
|
2012-08-22 00:15:24 +08:00
|
|
|
|
2005-06-25 11:32:05 +08:00
|
|
|
// GetFileNameRoot - Helper function to get the basename of a filename.
|
2003-04-25 13:26:11 +08:00
|
|
|
static inline std::string
|
2004-07-11 12:03:24 +08:00
|
|
|
GetFileNameRoot(const std::string &InputFilename) {
|
2003-04-25 13:26:11 +08:00
|
|
|
std::string IFN = InputFilename;
|
|
|
|
std::string outputFilename;
|
2001-10-15 07:29:28 +08:00
|
|
|
int Len = IFN.length();
|
2003-08-29 05:42:29 +08:00
|
|
|
if ((Len > 2) &&
|
2009-09-17 03:18:41 +08:00
|
|
|
IFN[Len-3] == '.' &&
|
|
|
|
((IFN[Len-2] == 'b' && IFN[Len-1] == 'c') ||
|
|
|
|
(IFN[Len-2] == 'l' && IFN[Len-1] == 'l'))) {
|
2003-04-25 13:26:11 +08:00
|
|
|
outputFilename = std::string(IFN.begin(), IFN.end()-3); // s/.bc/.s/
|
2001-10-15 07:29:28 +08:00
|
|
|
} else {
|
2001-10-16 01:30:47 +08:00
|
|
|
outputFilename = IFN;
|
2001-10-15 07:29:28 +08:00
|
|
|
}
|
|
|
|
return outputFilename;
|
|
|
|
}
|
|
|
|
|
2010-09-01 22:20:41 +08:00
|
|
|
static tool_output_file *GetOutputStream(const char *TargetName,
|
|
|
|
Triple::OSType OS,
|
|
|
|
const char *ProgName) {
|
2010-08-19 01:55:15 +08:00
|
|
|
// If we don't yet have an output filename, make one.
|
|
|
|
if (OutputFilename.empty()) {
|
|
|
|
if (InputFilename == "-")
|
|
|
|
OutputFilename = "-";
|
|
|
|
else {
|
|
|
|
OutputFilename = GetFileNameRoot(InputFilename);
|
|
|
|
|
|
|
|
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 23:33:45 +08:00
|
|
|
}
|
2006-09-04 12:14:57 +08:00
|
|
|
}
|
|
|
|
|
2010-08-19 01:55:15 +08:00
|
|
|
// Decide if we need "binary" output.
|
2008-11-13 13:01:07 +08:00
|
|
|
bool Binary = false;
|
2006-09-04 12:14:57 +08:00
|
|
|
switch (FileType) {
|
2010-02-03 05:06:45 +08:00
|
|
|
case TargetMachine::CGFT_AssemblyFile:
|
2006-09-04 12:14:57 +08:00
|
|
|
break;
|
2010-02-03 05:06:45 +08:00
|
|
|
case TargetMachine::CGFT_ObjectFile:
|
2010-02-03 13:55:08 +08:00
|
|
|
case TargetMachine::CGFT_Null:
|
2008-11-13 13:01:07 +08:00
|
|
|
Binary = true;
|
2006-09-04 12:14:57 +08:00
|
|
|
break;
|
|
|
|
}
|
2009-01-16 14:53:46 +08:00
|
|
|
|
2010-08-19 01:55:15 +08:00
|
|
|
// Open the file.
|
2008-08-21 08:14:44 +08:00
|
|
|
std::string error;
|
2009-08-23 10:51:22 +08:00
|
|
|
unsigned OpenFlags = 0;
|
|
|
|
if (Binary) OpenFlags |= raw_fd_ostream::F_Binary;
|
2010-08-20 09:07:01 +08:00
|
|
|
tool_output_file *FDOut = new tool_output_file(OutputFilename.c_str(), error,
|
|
|
|
OpenFlags);
|
2008-08-21 08:14:44 +08:00
|
|
|
if (!error.empty()) {
|
2009-07-16 00:35:29 +08:00
|
|
|
errs() << error << '\n';
|
2009-07-16 01:29:42 +08:00
|
|
|
delete FDOut;
|
2006-09-04 12:14:57 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2009-01-16 14:53:46 +08:00
|
|
|
|
2010-09-01 22:20:41 +08:00
|
|
|
return FDOut;
|
2006-09-04 12:14:57 +08:00
|
|
|
}
|
2001-09-19 01:04:18 +08:00
|
|
|
|
2003-06-20 23:49:04 +08:00
|
|
|
// main - Entry point for the llc compiler.
|
|
|
|
//
|
|
|
|
int main(int argc, char **argv) {
|
2007-05-06 12:55:19 +08:00
|
|
|
sys::PrintStackTraceOnErrorSignal();
|
2009-03-06 13:34:10 +08:00
|
|
|
PrettyStackTraceProgram X(argc, argv);
|
2010-01-05 09:30:21 +08:00
|
|
|
|
|
|
|
// Enable debug stream buffering.
|
|
|
|
EnableDebugBuffering = true;
|
|
|
|
|
2009-07-16 06:16:10 +08:00
|
|
|
LLVMContext &Context = getGlobalContext();
|
2009-03-06 13:34:10 +08:00
|
|
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
2004-07-11 12:03:24 +08:00
|
|
|
|
2009-09-03 13:47:22 +08:00
|
|
|
// Initialize targets first, so that --version shows registered targets.
|
2009-06-18 00:42:19 +08:00
|
|
|
InitializeAllTargets();
|
2011-07-23 05:58:54 +08:00
|
|
|
InitializeAllTargetMCs();
|
2009-06-18 00:42:19 +08: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 07:11:24 +08:00
|
|
|
InitializeAllAsmParsers();
|
2009-07-16 10:04:54 +08:00
|
|
|
|
2012-07-03 03:48:45 +08: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-27 05:33:36 +08:00
|
|
|
|
2011-07-22 15:50:48 +08:00
|
|
|
// Register the target printer for --version.
|
|
|
|
cl::AddExtraVersionPrinter(TargetRegistry::printRegisteredTargetsForVersion);
|
|
|
|
|
2009-07-16 10:04:54 +08:00
|
|
|
cl::ParseCommandLineOptions(argc, argv, "llvm system compiler\n");
|
2011-04-06 02:41:31 +08:00
|
|
|
|
2007-05-06 12:55:19 +08:00
|
|
|
// Load the module to be compiled...
|
2009-09-03 03:35:19 +08:00
|
|
|
SMDiagnostic Err;
|
2007-05-06 12:55:19 +08:00
|
|
|
std::auto_ptr<Module> M;
|
2012-06-28 00:23:48 +08:00
|
|
|
Module *mod = 0;
|
|
|
|
Triple TheTriple;
|
|
|
|
|
|
|
|
bool SkipModule = MCPU == "help" ||
|
|
|
|
(!MAttrs.empty() && MAttrs.front() == "help");
|
|
|
|
|
|
|
|
// If user just wants to list available options, skip module loading
|
|
|
|
if (!SkipModule) {
|
|
|
|
M.reset(ParseIRFile(InputFilename, Err, Context));
|
|
|
|
mod = M.get();
|
|
|
|
if (mod == 0) {
|
|
|
|
Err.print(argv[0], errs());
|
|
|
|
return 1;
|
|
|
|
}
|
2009-01-16 14:53:46 +08:00
|
|
|
|
2012-06-28 00:23:48 +08: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 12:55:19 +08:00
|
|
|
}
|
2009-01-16 14:53:46 +08:00
|
|
|
|
2009-08-03 12:03:51 +08:00
|
|
|
if (TheTriple.getTriple().empty())
|
2011-11-02 05:32:20 +08:00
|
|
|
TheTriple.setTriple(sys::getDefaultTargetTriple());
|
2009-08-03 12:03:51 +08:00
|
|
|
|
2012-05-09 07:38:45 +08: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 12:55:19 +08:00
|
|
|
}
|
2005-09-02 05:38:21 +08:00
|
|
|
|
2007-05-06 12:55:19 +08:00
|
|
|
// Package up features to be passed to target/subtarget
|
|
|
|
std::string FeaturesStr;
|
2011-06-30 09:53:36 +08:00
|
|
|
if (MAttrs.size()) {
|
2007-05-06 12:55:19 +08:00
|
|
|
SubtargetFeatures Features;
|
|
|
|
for (unsigned i = 0; i != MAttrs.size(); ++i)
|
|
|
|
Features.AddFeature(MAttrs[i]);
|
|
|
|
FeaturesStr = Features.getString();
|
|
|
|
}
|
2009-01-16 14:53:46 +08:00
|
|
|
|
2011-11-16 16:38:26 +08: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;
|
|
|
|
}
|
|
|
|
|
2011-12-03 06:16:29 +08:00
|
|
|
TargetOptions Options;
|
|
|
|
Options.LessPreciseFPMADOption = EnableFPMAD;
|
|
|
|
Options.NoFramePointerElim = DisableFPElim;
|
|
|
|
Options.NoFramePointerElimNonLeaf = DisableFPElimNonLeaf;
|
2012-06-22 09:09:09 +08:00
|
|
|
Options.AllowFPOpFusion = FuseFPOps;
|
2011-12-03 06:16:29 +08:00
|
|
|
Options.UnsafeFPMath = EnableUnsafeFPMath;
|
|
|
|
Options.NoInfsFPMath = EnableNoInfsFPMath;
|
|
|
|
Options.NoNaNsFPMath = EnableNoNaNsFPMath;
|
|
|
|
Options.HonorSignDependentRoundingFPMathOption =
|
|
|
|
EnableHonorSignDependentRoundingFPMath;
|
|
|
|
Options.UseSoftFloat = GenerateSoftFloatCalls;
|
|
|
|
if (FloatABIForCalls != FloatABI::Default)
|
|
|
|
Options.FloatABIType = FloatABIForCalls;
|
|
|
|
Options.NoZerosInBSS = DontPlaceZerosInBSS;
|
|
|
|
Options.GuaranteedTailCallOpt = EnableGuaranteedTailCallOpt;
|
2012-01-19 08:34:10 +08:00
|
|
|
Options.DisableTailCalls = DisableTailCalls;
|
2011-12-03 06:16:29 +08:00
|
|
|
Options.StackAlignmentOverride = OverrideStackAlignment;
|
|
|
|
Options.RealignStack = EnableRealignStack;
|
|
|
|
Options.TrapFuncName = TrapFuncName;
|
2012-04-09 01:51:45 +08:00
|
|
|
Options.PositionIndependentExecutable = EnablePIE;
|
2011-12-03 06:16:29 +08:00
|
|
|
Options.EnableSegmentedStacks = SegmentedStacks;
|
2012-06-19 08:48:28 +08:00
|
|
|
Options.UseInitArray = UseInitArray;
|
2012-08-22 00:15:24 +08:00
|
|
|
Options.SSPBufferSize = SSPBufferSize;
|
2011-12-03 06:16:29 +08:00
|
|
|
|
2011-04-06 02:41:31 +08:00
|
|
|
std::auto_ptr<TargetMachine>
|
2011-07-20 15:51:56 +08:00
|
|
|
target(TheTarget->createTargetMachine(TheTriple.getTriple(),
|
2011-12-03 06:16:29 +08:00
|
|
|
MCPU, FeaturesStr, Options,
|
2011-11-16 16:38:26 +08:00
|
|
|
RelocModel, CMModel, OLvl));
|
2007-05-06 12:55:19 +08:00
|
|
|
assert(target.get() && "Could not allocate target machine!");
|
2012-06-28 00:23:48 +08:00
|
|
|
assert(mod && "Should have exited after outputting help!");
|
2007-05-06 12:55:19 +08:00
|
|
|
TargetMachine &Target = *target.get();
|
2004-12-30 13:36:08 +08:00
|
|
|
|
2010-12-01 23:36:49 +08:00
|
|
|
if (DisableDotLoc)
|
|
|
|
Target.setMCUseLoc(false);
|
2011-04-20 04:46:13 +08:00
|
|
|
|
2011-04-30 11:44:37 +08:00
|
|
|
if (DisableCFI)
|
|
|
|
Target.setMCUseCFI(false);
|
|
|
|
|
2011-10-31 09:06:02 +08:00
|
|
|
if (EnableDwarfDirectory)
|
|
|
|
Target.setMCUseDwarfDirectory(true);
|
2011-10-18 07:05:28 +08:00
|
|
|
|
2011-12-03 06:16:29 +08:00
|
|
|
if (GenerateSoftFloatCalls)
|
|
|
|
FloatABIForCalls = FloatABI::Soft;
|
|
|
|
|
2011-04-20 04:46:13 +08:00
|
|
|
// Disable .loc support for older OS X versions.
|
2011-04-20 08:14:25 +08:00
|
|
|
if (TheTriple.isMacOSX() &&
|
2011-04-20 08:47:19 +08:00
|
|
|
TheTriple.isMacOSXVersionLT(10, 6))
|
2011-04-20 04:46:13 +08:00
|
|
|
Target.setMCUseLoc(false);
|
2010-12-01 23:36:49 +08:00
|
|
|
|
2012-07-19 08:11:45 +08:00
|
|
|
// Figure out where we are going to send the output.
|
2010-09-01 22:20:41 +08:00
|
|
|
OwningPtr<tool_output_file> Out
|
2010-08-20 09:07:01 +08:00
|
|
|
(GetOutputStream(TheTarget->getName(), TheTriple.getOS(), argv[0]));
|
|
|
|
if (!Out) return 1;
|
2009-01-16 14:53:46 +08:00
|
|
|
|
2010-05-12 03:57:55 +08:00
|
|
|
// Build up all of the passes that we want to do to the module.
|
|
|
|
PassManager PM;
|
|
|
|
|
2012-08-04 05:26:18 +08:00
|
|
|
// Add an appropriate TargetLibraryInfo pass for the module's triple.
|
|
|
|
TargetLibraryInfo *TLI = new TargetLibraryInfo(TheTriple);
|
2012-08-09 04:31:37 +08:00
|
|
|
if (DisableSimplifyLibCalls)
|
2012-08-04 05:26:18 +08:00
|
|
|
TLI->disableAllFunctions();
|
2012-08-09 04:31:37 +08:00
|
|
|
PM.add(TLI);
|
2012-08-04 05:26:18 +08:00
|
|
|
|
2012-10-19 07:22:48 +08:00
|
|
|
if (target.get()) {
|
|
|
|
PM.add(new TargetTransformInfo(target->getScalarTargetTransformInfo(),
|
|
|
|
target->getVectorTargetTransformInfo()));
|
|
|
|
}
|
|
|
|
|
2010-05-12 03:57:55 +08:00
|
|
|
// Add the target data from the target machine, if it exists, or the module.
|
2012-10-09 00:39:34 +08:00
|
|
|
if (const DataLayout *TD = Target.getDataLayout())
|
|
|
|
PM.add(new DataLayout(*TD));
|
2010-05-12 03:57:55 +08:00
|
|
|
else
|
2012-10-09 00:39:34 +08:00
|
|
|
PM.add(new DataLayout(mod));
|
2010-05-12 03:57:55 +08:00
|
|
|
|
|
|
|
// Override default to generate verbose assembly.
|
|
|
|
Target.setAsmVerbosityDefault(true);
|
|
|
|
|
2010-08-01 03:57:02 +08: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 22:20:41 +08:00
|
|
|
{
|
|
|
|
formatted_raw_ostream FOS(Out->os());
|
2009-01-16 14:53:46 +08:00
|
|
|
|
2012-07-03 03:48:45 +08:00
|
|
|
AnalysisID StartAfterID = 0;
|
|
|
|
AnalysisID StopAfterID = 0;
|
|
|
|
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 22:20:41 +08:00
|
|
|
// Ask the target to add backend passes as necessary.
|
2012-07-03 03:48:45 +08:00
|
|
|
if (Target.addPassesToEmitFile(PM, FOS, FileType, NoVerify,
|
|
|
|
StartAfterID, StopAfterID)) {
|
2010-09-01 22:20:41 +08:00
|
|
|
errs() << argv[0] << ": target does not support generation of this"
|
|
|
|
<< " file type!\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-04-06 02:54:36 +08:00
|
|
|
// Before executing passes, print the final values of the LLVM options.
|
|
|
|
cl::PrintOptionValues();
|
|
|
|
|
2012-11-15 08:14:15 +08:00
|
|
|
PM.doInitialization();
|
2012-06-28 00:23:48 +08:00
|
|
|
PM.run(*mod);
|
2012-11-15 08:14:15 +08:00
|
|
|
PM.doFinalization();
|
2010-09-01 22:20:41 +08:00
|
|
|
}
|
2010-05-12 03:57:55 +08:00
|
|
|
|
2010-08-20 09:07:01 +08:00
|
|
|
// Declare success.
|
|
|
|
Out->keep();
|
2001-10-18 09:31:22 +08:00
|
|
|
|
2007-05-06 12:55:19 +08:00
|
|
|
return 0;
|
2001-10-15 07:29:28 +08:00
|
|
|
}
|