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
|
|
|
|
2015-03-01 22:28:53 +01:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2009-08-03 06:03:51 +02:00
|
|
|
#include "llvm/ADT/Triple.h"
|
2015-01-15 03:16:27 +01:00
|
|
|
#include "llvm/Analysis/TargetLibraryInfo.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"
|
2015-05-27 20:02:19 +02:00
|
|
|
#include "llvm/CodeGen/MIRParser/MIRParser.h"
|
2016-05-10 03:32:44 +02:00
|
|
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
2016-05-10 04:09:32 +02:00
|
|
|
#include "llvm/CodeGen/MachineModuleInfo.h"
|
2016-05-10 05:21:59 +02:00
|
|
|
#include "llvm/CodeGen/TargetPassConfig.h"
|
2013-01-02 12:36:10 +01:00
|
|
|
#include "llvm/IR/DataLayout.h"
|
2016-05-16 16:28:02 +02:00
|
|
|
#include "llvm/IR/DiagnosticInfo.h"
|
|
|
|
#include "llvm/IR/DiagnosticPrinter.h"
|
2014-01-13 09:04:33 +01:00
|
|
|
#include "llvm/IR/IRPrintingPasses.h"
|
|
|
|
#include "llvm/IR/LLVMContext.h"
|
2015-02-13 11:01:29 +01:00
|
|
|
#include "llvm/IR/LegacyPassManager.h"
|
2013-01-02 12:36:10 +01:00
|
|
|
#include "llvm/IR/Module.h"
|
2015-03-27 23:04:28 +01:00
|
|
|
#include "llvm/IR/Verifier.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"
|
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"
|
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"
|
2015-12-04 22:56:46 +01:00
|
|
|
#include "llvm/Transforms/Utils/Cloning.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));
|
|
|
|
|
2015-12-04 22:56:46 +01:00
|
|
|
static cl::opt<bool>
|
|
|
|
CompileTwice("compile-twice", cl::Hidden,
|
|
|
|
cl::desc("Run everything twice, re-using the same pass "
|
2015-12-07 20:21:39 +01:00
|
|
|
"manager and verify the result is the same."),
|
2015-12-04 22:56:46 +01:00
|
|
|
cl::init(false));
|
|
|
|
|
Add a flag to the LLVMContext to disable name for Value other than GlobalValue
Summary:
This is intended to be a performance flag, on the same level as clang
cc1 option "--disable-free". LLVM will never initialize it by default,
it will be up to the client creating the LLVMContext to request this
behavior. Clang will do it by default in Release build (just like
--disable-free).
"opt" and "llc" can opt-in using -disable-named-value command line
option.
When performing LTO on llvm-tblgen, the initial merging of IR peaks
at 92MB without this patch, and 86MB after this patch,setNameImpl()
drops from 6.5MB to 0.5MB.
The total link time goes from ~29.5s to ~27.8s.
Compared to a compile-time flag (like the IRBuilder one), it performs
very close. I profiled on SROA and obtain these results:
420ms with IRBuilder that preserve name
372ms with IRBuilder that strip name
375ms with IRBuilder that preserve name, and a runtime flag to strip
Reviewers: chandlerc, dexonsmith, bogner
Subscribers: joker.eph, llvm-commits
Differential Revision: http://reviews.llvm.org/D17946
From: Mehdi Amini <mehdi.amini@apple.com>
llvm-svn: 263086
2016-03-10 02:28:54 +01:00
|
|
|
static cl::opt<bool> DiscardValueNames(
|
|
|
|
"discard-value-names",
|
|
|
|
cl::desc("Discard names from Value (other than GlobalValue)."),
|
|
|
|
cl::init(false), cl::Hidden);
|
|
|
|
|
2016-05-16 16:28:02 +02:00
|
|
|
static cl::opt<bool> ExitOnError(
|
|
|
|
"exit-on-error",
|
|
|
|
cl::desc("Exit as soon as an error is encountered."),
|
|
|
|
cl::init(false), cl::Hidden);
|
|
|
|
|
2014-05-21 23:05:09 +02:00
|
|
|
static int compileModule(char **, LLVMContext &);
|
2012-11-30 22:42:47 +01:00
|
|
|
|
2014-12-11 08:04:46 +01:00
|
|
|
static std::unique_ptr<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);
|
2015-05-27 20:02:19 +02:00
|
|
|
else if (IFN.endswith(".mir"))
|
|
|
|
OutputFilename = IFN.drop_back(4);
|
2014-08-30 18:48:22 +02:00
|
|
|
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-12-11 08:04:46 +01:00
|
|
|
auto FDOut = llvm::make_unique<tool_output_file>(OutputFilename, EC,
|
|
|
|
OpenFlags);
|
2014-08-25 20:16:47 +02:00
|
|
|
if (EC) {
|
|
|
|
errs() << EC.message() << '\n';
|
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
|
|
|
|
2016-05-16 16:28:02 +02:00
|
|
|
static void DiagnosticHandler(const DiagnosticInfo &DI, void *Context) {
|
|
|
|
bool *HasError = static_cast<bool *>(Context);
|
|
|
|
if (DI.getSeverity() == DS_Error)
|
|
|
|
*HasError = true;
|
|
|
|
|
|
|
|
DiagnosticPrinterRawOStream DP(errs());
|
|
|
|
errs() << LLVMContext::getDiagnosticMessagePrefix(DI.getSeverity()) << ": ";
|
|
|
|
DI.print(DP);
|
|
|
|
errs() << "\n";
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
2016-04-14 23:59:01 +02:00
|
|
|
LLVMContext Context;
|
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
|
|
|
|
Add a flag to the LLVMContext to disable name for Value other than GlobalValue
Summary:
This is intended to be a performance flag, on the same level as clang
cc1 option "--disable-free". LLVM will never initialize it by default,
it will be up to the client creating the LLVMContext to request this
behavior. Clang will do it by default in Release build (just like
--disable-free).
"opt" and "llc" can opt-in using -disable-named-value command line
option.
When performing LTO on llvm-tblgen, the initial merging of IR peaks
at 92MB without this patch, and 86MB after this patch,setNameImpl()
drops from 6.5MB to 0.5MB.
The total link time goes from ~29.5s to ~27.8s.
Compared to a compile-time flag (like the IRBuilder one), it performs
very close. I profiled on SROA and obtain these results:
420ms with IRBuilder that preserve name
372ms with IRBuilder that strip name
375ms with IRBuilder that preserve name, and a runtime flag to strip
Reviewers: chandlerc, dexonsmith, bogner
Subscribers: joker.eph, llvm-commits
Differential Revision: http://reviews.llvm.org/D17946
From: Mehdi Amini <mehdi.amini@apple.com>
llvm-svn: 263086
2016-03-10 02:28:54 +01:00
|
|
|
Context.setDiscardValueNames(DiscardValueNames);
|
|
|
|
|
2016-05-16 16:28:02 +02:00
|
|
|
// Set a diagnostic handler that doesn't exit on the first error
|
|
|
|
bool HasError = false;
|
|
|
|
if (!ExitOnError)
|
|
|
|
Context.setDiagnosticHandler(DiagnosticHandler, &HasError);
|
|
|
|
|
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;
|
2015-06-15 22:30:22 +02:00
|
|
|
std::unique_ptr<MIRParser> MIR;
|
2012-06-27 18:23:48 +02:00
|
|
|
Triple TheTriple;
|
|
|
|
|
|
|
|
bool SkipModule = MCPU == "help" ||
|
|
|
|
(!MAttrs.empty() && MAttrs.front() == "help");
|
|
|
|
|
|
|
|
// If user just wants to list available options, skip module loading
|
|
|
|
if (!SkipModule) {
|
2015-06-15 22:30:22 +02:00
|
|
|
if (StringRef(InputFilename).endswith_lower(".mir")) {
|
|
|
|
MIR = createMIRParserFromFile(InputFilename, Err, Context);
|
|
|
|
if (MIR) {
|
|
|
|
M = MIR->parseLLVMModule();
|
|
|
|
assert(M && "parseLLVMModule should exit on failure");
|
|
|
|
}
|
|
|
|
} else
|
2015-05-27 20:02:19 +02:00
|
|
|
M = parseIRFile(InputFilename, Err, Context);
|
2014-12-11 08:04:52 +01:00
|
|
|
if (!M) {
|
2012-06-27 18:23:48 +02:00
|
|
|
Err.print(argv[0], errs());
|
|
|
|
return 1;
|
|
|
|
}
|
2009-01-16 07:53:46 +01:00
|
|
|
|
2015-03-27 23:04:28 +01:00
|
|
|
// Verify module immediately to catch problems before doInitialization() is
|
|
|
|
// called on any passes.
|
|
|
|
if (!NoVerify && verifyModule(*M, &errs())) {
|
|
|
|
errs() << argv[0] << ": " << InputFilename
|
2015-03-31 05:07:23 +02:00
|
|
|
<< ": error: input module is broken!\n";
|
2015-03-27 23:04:28 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-06-27 18:23:48 +02:00
|
|
|
// If we are supposed to override the target triple, do so now.
|
|
|
|
if (!TargetTriple.empty())
|
2014-12-11 08:04:52 +01:00
|
|
|
M->setTargetTriple(Triple::normalize(TargetTriple));
|
|
|
|
TheTriple = Triple(M->getTargetTriple());
|
2012-06-27 18:23:48 +02:00
|
|
|
} 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
|
|
|
|
2015-05-07 01:49:24 +02:00
|
|
|
std::string CPUStr = getCPUStr(), FeaturesStr = getFeaturesStr();
|
2015-03-31 07:52:57 +02: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-12-12 08:52:06 +01:00
|
|
|
std::unique_ptr<TargetMachine> Target(
|
2015-05-07 01:49:24 +02:00
|
|
|
TheTarget->createTargetMachine(TheTriple.getTriple(), CPUStr, FeaturesStr,
|
2014-03-06 06:51:42 +01:00
|
|
|
Options, RelocModel, CMModel, OLvl));
|
2015-05-07 01:49:24 +02:00
|
|
|
|
2014-12-12 08:52:06 +01:00
|
|
|
assert(Target && "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;
|
|
|
|
|
2014-12-11 08:04:52 +01:00
|
|
|
assert(M && "Should have exited if we didn't have a module!");
|
2015-05-12 03:26:05 +02:00
|
|
|
if (FloatABIForCalls != FloatABI::Default)
|
|
|
|
Options.FloatABIType = FloatABIForCalls;
|
2011-12-02 23:16:29 +01:00
|
|
|
|
2012-07-19 02:11:45 +02:00
|
|
|
// Figure out where we are going to send the output.
|
2014-12-12 08:52:00 +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.
|
2015-02-13 11:01:29 +01:00
|
|
|
legacy::PassManager PM;
|
2010-05-11 21:57:55 +02:00
|
|
|
|
2012-08-03 23:26:18 +02:00
|
|
|
// Add an appropriate TargetLibraryInfo pass for the module's triple.
|
[PM] Rework how the TargetLibraryInfo pass integrates with the new pass
manager to support the actual uses of it. =]
When I ported instcombine to the new pass manager I discover that it
didn't work because TLI wasn't available in the right places. This is
a somewhat surprising and/or subtle aspect of the new pass manager
design that came up before but I think is useful to be reminded of:
While the new pass manager *allows* a function pass to query a module
analysis, it requires that the module analysis is already run and cached
prior to the function pass manager starting up, possibly with
a 'require<foo>' style utility in the pass pipeline. This is an
intentional hurdle because using a module analysis from a function pass
*requires* that the module analysis is run prior to entering the
function pass manager. Otherwise the other functions in the module could
be in who-knows-what state, etc.
A somewhat surprising consequence of this design decision (at least to
me) is that you have to design a function pass that leverages
a module analysis to do so as an optional feature. Even if that means
your function pass does no work in the absence of the module analysis,
you have to handle that possibility and remain conservatively correct.
This is a natural consequence of things being able to invalidate the
module analysis and us being unable to re-run it. And it's a generally
good thing because it lets us reorder passes arbitrarily without
breaking correctness, etc.
This ends up causing problems in one case. What if we have a module
analysis that is *definitionally* impossible to invalidate. In the
places this might come up, the analysis is usually also definitionally
trivial to run even while other transformation passes run on the module,
regardless of the state of anything. And so, it follows that it is
natural to have a hard requirement on such analyses from a function
pass.
It turns out, that TargetLibraryInfo is just such an analysis, and
InstCombine has a hard requirement on it.
The approach I've taken here is to produce an analysis that models this
flexibility by making it both a module and a function analysis. This
exposes the fact that it is in fact safe to compute at any point. We can
even make it a valid CGSCC analysis at some point if that is useful.
However, we don't want to have a copy of the actual target library info
state for each function! This state is specific to the triple. The
somewhat direct and blunt approach here is to turn TLI into a pimpl,
with the state and mutators in the implementation class and the query
routines primarily in the wrapper. Then the analysis can lazily
construct and cache the implementations, keyed on the triple, and
on-demand produce wrappers of them for each function.
One minor annoyance is that we will end up with a wrapper for each
function in the module. While this is a bit wasteful (one pointer per
function) it seems tolerable. And it has the advantage of ensuring that
we pay the absolute minimum synchronization cost to access this
information should we end up with a nice parallel function pass manager
in the future. We could look into trying to mark when analysis results
are especially cheap to recompute and more eagerly GC-ing the cached
results, or we could look at supporting a variant of analyses whose
results are specifically *not* cached and expected to just be used and
discarded by the consumer. Either way, these seem like incremental
enhancements that should happen when we start profiling the memory and
CPU usage of the new pass manager and not before.
The other minor annoyance is that if we end up using the TLI in both
a module pass and a function pass, those will be produced by two
separate analyses, and thus will point to separate copies of the
implementation state. While a minor issue, I dislike this and would like
to find a way to cleanly allow a single analysis instance to be used
across multiple IR unit managers. But I don't have a good solution to
this today, and I don't want to hold up all of the work waiting to come
up with one. This too seems like a reasonable thing to incrementally
improve later.
llvm-svn: 226981
2015-01-24 03:06:09 +01:00
|
|
|
TargetLibraryInfoImpl TLII(Triple(M->getTargetTriple()));
|
2015-01-15 11:41:28 +01:00
|
|
|
|
|
|
|
// The -disable-simplify-libcalls flag actually disables all builtin optzns.
|
2012-08-08 22:31:37 +02:00
|
|
|
if (DisableSimplifyLibCalls)
|
[PM] Rework how the TargetLibraryInfo pass integrates with the new pass
manager to support the actual uses of it. =]
When I ported instcombine to the new pass manager I discover that it
didn't work because TLI wasn't available in the right places. This is
a somewhat surprising and/or subtle aspect of the new pass manager
design that came up before but I think is useful to be reminded of:
While the new pass manager *allows* a function pass to query a module
analysis, it requires that the module analysis is already run and cached
prior to the function pass manager starting up, possibly with
a 'require<foo>' style utility in the pass pipeline. This is an
intentional hurdle because using a module analysis from a function pass
*requires* that the module analysis is run prior to entering the
function pass manager. Otherwise the other functions in the module could
be in who-knows-what state, etc.
A somewhat surprising consequence of this design decision (at least to
me) is that you have to design a function pass that leverages
a module analysis to do so as an optional feature. Even if that means
your function pass does no work in the absence of the module analysis,
you have to handle that possibility and remain conservatively correct.
This is a natural consequence of things being able to invalidate the
module analysis and us being unable to re-run it. And it's a generally
good thing because it lets us reorder passes arbitrarily without
breaking correctness, etc.
This ends up causing problems in one case. What if we have a module
analysis that is *definitionally* impossible to invalidate. In the
places this might come up, the analysis is usually also definitionally
trivial to run even while other transformation passes run on the module,
regardless of the state of anything. And so, it follows that it is
natural to have a hard requirement on such analyses from a function
pass.
It turns out, that TargetLibraryInfo is just such an analysis, and
InstCombine has a hard requirement on it.
The approach I've taken here is to produce an analysis that models this
flexibility by making it both a module and a function analysis. This
exposes the fact that it is in fact safe to compute at any point. We can
even make it a valid CGSCC analysis at some point if that is useful.
However, we don't want to have a copy of the actual target library info
state for each function! This state is specific to the triple. The
somewhat direct and blunt approach here is to turn TLI into a pimpl,
with the state and mutators in the implementation class and the query
routines primarily in the wrapper. Then the analysis can lazily
construct and cache the implementations, keyed on the triple, and
on-demand produce wrappers of them for each function.
One minor annoyance is that we will end up with a wrapper for each
function in the module. While this is a bit wasteful (one pointer per
function) it seems tolerable. And it has the advantage of ensuring that
we pay the absolute minimum synchronization cost to access this
information should we end up with a nice parallel function pass manager
in the future. We could look into trying to mark when analysis results
are especially cheap to recompute and more eagerly GC-ing the cached
results, or we could look at supporting a variant of analyses whose
results are specifically *not* cached and expected to just be used and
discarded by the consumer. Either way, these seem like incremental
enhancements that should happen when we start profiling the memory and
CPU usage of the new pass manager and not before.
The other minor annoyance is that if we end up using the TLI in both
a module pass and a function pass, those will be produced by two
separate analyses, and thus will point to separate copies of the
implementation state. While a minor issue, I dislike this and would like
to find a way to cleanly allow a single analysis instance to be used
across multiple IR unit managers. But I don't have a good solution to
this today, and I don't want to hold up all of the work waiting to come
up with one. This too seems like a reasonable thing to incrementally
improve later.
llvm-svn: 226981
2015-01-24 03:06:09 +01:00
|
|
|
TLII.disableAllFunctions();
|
|
|
|
PM.add(new TargetLibraryInfoWrapperPass(TLII));
|
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.
|
2015-07-24 18:04:22 +02:00
|
|
|
M->setDataLayout(Target->createDataLayout());
|
2010-05-11 21:57:55 +02:00
|
|
|
|
2015-05-26 22:17:20 +02:00
|
|
|
// Override function attributes based on CPUStr, FeaturesStr, and command line
|
|
|
|
// flags.
|
|
|
|
setFunctionAttributes(CPUStr, FeaturesStr, *M);
|
2015-05-07 01:54:14 +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
|
|
|
{
|
2015-04-15 00:14:34 +02:00
|
|
|
raw_pwrite_stream *OS = &Out->os();
|
2015-12-04 22:56:46 +01:00
|
|
|
|
|
|
|
// Manually do the buffering rather than using buffer_ostream,
|
|
|
|
// so we can memcmp the contents in CompileTwice mode
|
|
|
|
SmallVector<char, 0> Buffer;
|
|
|
|
std::unique_ptr<raw_svector_ostream> BOS;
|
|
|
|
if ((FileType != TargetMachine::CGFT_AssemblyFile &&
|
|
|
|
!Out->os().supportsSeeking()) ||
|
|
|
|
CompileTwice) {
|
|
|
|
BOS = make_unique<raw_svector_ostream>(Buffer);
|
2015-04-15 00:14:34 +02:00
|
|
|
OS = BOS.get();
|
|
|
|
}
|
|
|
|
|
2015-07-06 19:44:26 +02:00
|
|
|
AnalysisID StartBeforeID = nullptr;
|
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();
|
2015-07-06 19:44:26 +02:00
|
|
|
if (!RunPass.empty()) {
|
|
|
|
if (!StartAfter.empty() || !StopAfter.empty()) {
|
|
|
|
errs() << argv[0] << ": start-after and/or stop-after passes are "
|
|
|
|
"redundant when run-pass is specified.\n";
|
2012-07-02 21:48:45 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2016-05-10 03:32:44 +02:00
|
|
|
if (!MIR) {
|
|
|
|
errs() << argv[0] << ": run-pass needs a .mir input.\n";
|
|
|
|
return 1;
|
|
|
|
}
|
2015-07-06 19:44:26 +02:00
|
|
|
const PassInfo *PI = PR->getPassInfo(RunPass);
|
2012-07-02 21:48:45 +02:00
|
|
|
if (!PI) {
|
2015-07-06 19:44:26 +02:00
|
|
|
errs() << argv[0] << ": run-pass pass is not registered.\n";
|
2012-07-02 21:48:45 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2016-05-10 03:32:44 +02:00
|
|
|
LLVMTargetMachine &LLVMTM = static_cast<LLVMTargetMachine&>(*Target);
|
|
|
|
TargetPassConfig *TPC = LLVMTM.createPassConfig(PM);
|
|
|
|
PM.add(TPC);
|
|
|
|
LLVMTM.addMachineModuleInfo(PM);
|
|
|
|
LLVMTM.addMachineFunctionAnalysis(PM, MIR.get());
|
2016-05-10 06:51:07 +02:00
|
|
|
TPC->printAndVerify("");
|
2016-05-10 03:32:44 +02:00
|
|
|
|
|
|
|
Pass *P;
|
|
|
|
if (PI->getTargetMachineCtor())
|
|
|
|
P = PI->getTargetMachineCtor()(Target.get());
|
|
|
|
else if (PI->getNormalCtor())
|
|
|
|
P = PI->getNormalCtor()();
|
|
|
|
else {
|
|
|
|
errs() << argv[0] << ": cannot create pass: "
|
|
|
|
<< PI->getPassName() << "\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
std::string Banner
|
|
|
|
= std::string("After ") + std::string(P->getPassName());
|
|
|
|
PM.add(P);
|
|
|
|
TPC->printAndVerify(Banner);
|
|
|
|
|
|
|
|
PM.add(createPrintMIRPass(errs()));
|
2015-07-06 19:44:26 +02:00
|
|
|
} else {
|
|
|
|
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();
|
|
|
|
}
|
2012-07-02 21:48:45 +02:00
|
|
|
|
2016-05-10 03:32:44 +02:00
|
|
|
// Ask the target to add backend passes as necessary.
|
|
|
|
if (Target->addPassesToEmitFile(PM, *OS, FileType, NoVerify,
|
|
|
|
StartBeforeID, StartAfterID, StopAfterID,
|
|
|
|
MIR.get())) {
|
|
|
|
errs() << argv[0] << ": target does not support generation of this"
|
|
|
|
<< " file type!\n";
|
|
|
|
return 1;
|
|
|
|
}
|
2010-09-01 16:20:41 +02:00
|
|
|
}
|
|
|
|
|
2011-04-05 20:54:36 +02:00
|
|
|
// Before executing passes, print the final values of the LLVM options.
|
|
|
|
cl::PrintOptionValues();
|
|
|
|
|
2015-12-04 22:56:46 +01:00
|
|
|
// If requested, run the pass manager over the same module again,
|
|
|
|
// to catch any bugs due to persistent state in the passes. Note that
|
|
|
|
// opt has the same functionality, so it may be worth abstracting this out
|
|
|
|
// in the future.
|
|
|
|
SmallVector<char, 0> CompileTwiceBuffer;
|
|
|
|
if (CompileTwice) {
|
|
|
|
std::unique_ptr<Module> M2(llvm::CloneModule(M.get()));
|
|
|
|
PM.run(*M2);
|
|
|
|
CompileTwiceBuffer = Buffer;
|
|
|
|
Buffer.clear();
|
|
|
|
}
|
|
|
|
|
2014-12-11 08:04:52 +01:00
|
|
|
PM.run(*M);
|
2015-12-04 22:56:46 +01:00
|
|
|
|
2016-05-16 16:28:02 +02:00
|
|
|
if (!ExitOnError) {
|
|
|
|
auto HasError = *static_cast<bool *>(Context.getDiagnosticContext());
|
|
|
|
if (HasError)
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-12-04 22:56:46 +01:00
|
|
|
// Compare the two outputs and make sure they're the same
|
|
|
|
if (CompileTwice) {
|
|
|
|
if (Buffer.size() != CompileTwiceBuffer.size() ||
|
|
|
|
(memcmp(Buffer.data(), CompileTwiceBuffer.data(), Buffer.size()) !=
|
|
|
|
0)) {
|
|
|
|
errs()
|
|
|
|
<< "Running the pass manager twice changed the output.\n"
|
|
|
|
"Writing the result of the second run to the specified output\n"
|
|
|
|
"To generate the one-run comparison binary, just run without\n"
|
|
|
|
"the compile-twice option\n";
|
|
|
|
Out->os() << Buffer;
|
|
|
|
Out->keep();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (BOS) {
|
|
|
|
Out->os() << Buffer;
|
|
|
|
}
|
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
|
|
|
}
|