2002-12-24 07:59:41 +08:00
|
|
|
//===- lli.cpp - LLVM Interpreter / Dynamic compiler ----------------------===//
|
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-08-24 01:05:04 +08:00
|
|
|
//
|
2003-12-26 13:07:35 +08:00
|
|
|
// This utility provides a simple wrapper around the LLVM Execution Engines,
|
|
|
|
// which allow the direct execution of LLVM programs through a Just-In-Time
|
2009-07-03 20:11:32 +08:00
|
|
|
// compiler, or through an interpreter if no JIT is available for this platform.
|
2001-08-24 01:05:04 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2016-01-12 00:35:55 +08:00
|
|
|
#include "RemoteJITUtils.h"
|
2016-01-15 10:14:46 +08:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2010-08-28 09:30:02 +08:00
|
|
|
#include "llvm/ADT/Triple.h"
|
2016-11-11 13:34:58 +08:00
|
|
|
#include "llvm/Bitcode/BitcodeReader.h"
|
2018-04-12 02:49:37 +08:00
|
|
|
#include "llvm/CodeGen/CommandFlags.inc"
|
2006-08-02 06:34:35 +08:00
|
|
|
#include "llvm/CodeGen/LinkAllCodegenComponents.h"
|
2018-04-30 22:59:11 +08:00
|
|
|
#include "llvm/Config/llvm-config.h"
|
2003-09-06 03:42:34 +08:00
|
|
|
#include "llvm/ExecutionEngine/GenericValue.h"
|
2009-06-25 10:04:04 +08:00
|
|
|
#include "llvm/ExecutionEngine/Interpreter.h"
|
|
|
|
#include "llvm/ExecutionEngine/JITEventListener.h"
|
2010-11-18 00:06:43 +08:00
|
|
|
#include "llvm/ExecutionEngine/MCJIT.h"
|
2014-01-08 12:09:09 +08:00
|
|
|
#include "llvm/ExecutionEngine/ObjectCache.h"
|
2018-06-27 05:35:48 +08:00
|
|
|
#include "llvm/ExecutionEngine/Orc/ExecutionUtils.h"
|
|
|
|
#include "llvm/ExecutionEngine/Orc/LLJIT.h"
|
2017-08-03 10:16:21 +08:00
|
|
|
#include "llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h"
|
[Orc] New JIT APIs.
This patch adds a new set of JIT APIs to LLVM. The aim of these new APIs is to
cleanly support a wider range of JIT use cases in LLVM, and encourage the
development and contribution of re-usable infrastructure for LLVM JIT use-cases.
These APIs are intended to live alongside the MCJIT APIs, and should not affect
existing clients.
Included in this patch:
1) New headers in include/llvm/ExecutionEngine/Orc that provide a set of
components for building JIT infrastructure.
Implementation code for these headers lives in lib/ExecutionEngine/Orc.
2) A prototype re-implementation of MCJIT (OrcMCJITReplacement) built out of the
new components.
3) Minor changes to RTDyldMemoryManager needed to support the new components.
These changes should not impact existing clients.
4) A new flag for lli, -use-orcmcjit, which will cause lli to use the
OrcMCJITReplacement class as its underlying execution engine, rather than
MCJIT itself.
Tests to follow shortly.
Special thanks to Michael Ilseman, Pete Cooper, David Blaikie, Eric Christopher,
Justin Bogner, and Jim Grosbach for extensive feedback and discussion.
llvm-svn: 226940
2015-01-24 05:25:00 +08:00
|
|
|
#include "llvm/ExecutionEngine/OrcMCJITReplacement.h"
|
2012-11-28 03:49:00 +08:00
|
|
|
#include "llvm/ExecutionEngine/SectionMemoryManager.h"
|
2013-10-29 09:29:56 +08:00
|
|
|
#include "llvm/IR/IRBuilder.h"
|
2017-08-03 10:16:21 +08:00
|
|
|
#include "llvm/IR/LLVMContext.h"
|
2013-01-02 19:36:10 +08:00
|
|
|
#include "llvm/IR/Module.h"
|
|
|
|
#include "llvm/IR/Type.h"
|
2013-10-29 09:29:56 +08:00
|
|
|
#include "llvm/IR/TypeBuilder.h"
|
2018-07-03 06:30:18 +08:00
|
|
|
#include "llvm/IR/Verifier.h"
|
2013-03-26 10:25:37 +08:00
|
|
|
#include "llvm/IRReader/IRReader.h"
|
2014-01-08 12:09:09 +08:00
|
|
|
#include "llvm/Object/Archive.h"
|
|
|
|
#include "llvm/Object/ObjectFile.h"
|
2004-09-02 06:55:40 +08:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2012-12-04 18:44:52 +08:00
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/Support/DynamicLibrary.h"
|
|
|
|
#include "llvm/Support/Format.h"
|
2018-04-14 02:26:06 +08:00
|
|
|
#include "llvm/Support/InitLLVM.h"
|
2006-12-06 09:18:01 +08:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2012-12-04 18:44:52 +08:00
|
|
|
#include "llvm/Support/MathExtras.h"
|
|
|
|
#include "llvm/Support/Memory.h"
|
2007-05-06 12:58:26 +08:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2015-03-24 02:07:13 +08:00
|
|
|
#include "llvm/Support/Path.h"
|
2004-09-02 06:55:40 +08:00
|
|
|
#include "llvm/Support/PluginLoader.h"
|
2010-11-30 02:16:10 +08:00
|
|
|
#include "llvm/Support/Process.h"
|
2013-10-03 01:12:36 +08:00
|
|
|
#include "llvm/Support/Program.h"
|
2013-03-26 10:25:37 +08:00
|
|
|
#include "llvm/Support/SourceMgr.h"
|
2011-08-25 02:08:43 +08:00
|
|
|
#include "llvm/Support/TargetSelect.h"
|
2018-04-22 16:02:11 +08:00
|
|
|
#include "llvm/Support/WithColor.h"
|
2012-12-04 18:44:52 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2013-06-29 03:11:40 +08:00
|
|
|
#include "llvm/Transforms/Instrumentation.h"
|
2007-04-28 01:02:33 +08:00
|
|
|
#include <cerrno>
|
2010-10-22 22:53:59 +08:00
|
|
|
|
|
|
|
#ifdef __CYGWIN__
|
|
|
|
#include <cygwin/version.h>
|
|
|
|
#if defined(CYGWIN_VERSION_DLL_MAJOR) && CYGWIN_VERSION_DLL_MAJOR<1007
|
|
|
|
#define DO_NOTHING_ATEXIT 1
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2003-11-12 06:41:34 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2014-04-22 11:10:36 +08:00
|
|
|
#define DEBUG_TYPE "lli"
|
|
|
|
|
2002-12-24 07:59:41 +08:00
|
|
|
namespace {
|
2015-03-25 20:11:48 +08:00
|
|
|
|
|
|
|
enum class JITKind { MCJIT, OrcMCJITReplacement, OrcLazy };
|
|
|
|
|
2002-12-24 07:59:41 +08:00
|
|
|
cl::opt<std::string>
|
2007-07-06 01:07:56 +08:00
|
|
|
InputFile(cl::desc("<input bitcode>"), cl::Positional, cl::init("-"));
|
2002-07-22 10:10:13 +08:00
|
|
|
|
2002-12-24 07:59:41 +08:00
|
|
|
cl::list<std::string>
|
|
|
|
InputArgv(cl::ConsumeAfter, cl::desc("<program arguments>..."));
|
2002-07-22 10:10:13 +08:00
|
|
|
|
2002-12-24 07:59:41 +08:00
|
|
|
cl::opt<bool> ForceInterpreter("force-interpreter",
|
2003-09-26 02:10:34 +08:00
|
|
|
cl::desc("Force interpretation: disable JIT"),
|
|
|
|
cl::init(false));
|
2008-08-08 16:12:06 +08:00
|
|
|
|
2015-03-25 20:11:48 +08:00
|
|
|
cl::opt<JITKind> UseJITKind("jit-kind",
|
|
|
|
cl::desc("Choose underlying JIT kind."),
|
|
|
|
cl::init(JITKind::MCJIT),
|
|
|
|
cl::values(
|
|
|
|
clEnumValN(JITKind::MCJIT, "mcjit",
|
|
|
|
"MCJIT"),
|
|
|
|
clEnumValN(JITKind::OrcMCJITReplacement,
|
|
|
|
"orc-mcjit",
|
|
|
|
"Orc-based MCJIT replacement"),
|
|
|
|
clEnumValN(JITKind::OrcLazy,
|
|
|
|
"orc-lazy",
|
2016-10-09 03:41:06 +08:00
|
|
|
"Orc-based lazy JIT.")));
|
[Orc] New JIT APIs.
This patch adds a new set of JIT APIs to LLVM. The aim of these new APIs is to
cleanly support a wider range of JIT use cases in LLVM, and encourage the
development and contribution of re-usable infrastructure for LLVM JIT use-cases.
These APIs are intended to live alongside the MCJIT APIs, and should not affect
existing clients.
Included in this patch:
1) New headers in include/llvm/ExecutionEngine/Orc that provide a set of
components for building JIT infrastructure.
Implementation code for these headers lives in lib/ExecutionEngine/Orc.
2) A prototype re-implementation of MCJIT (OrcMCJITReplacement) built out of the
new components.
3) Minor changes to RTDyldMemoryManager needed to support the new components.
These changes should not impact existing clients.
4) A new flag for lli, -use-orcmcjit, which will cause lli to use the
OrcMCJITReplacement class as its underlying execution engine, rather than
MCJIT itself.
Tests to follow shortly.
Special thanks to Michael Ilseman, Pete Cooper, David Blaikie, Eric Christopher,
Justin Bogner, and Jim Grosbach for extensive feedback and discussion.
llvm-svn: 226940
2015-01-24 05:25:00 +08:00
|
|
|
|
2012-09-06 00:50:34 +08:00
|
|
|
// The MCJIT supports building for a target address space separate from
|
|
|
|
// the JIT compilation process. Use a forked process and a copying
|
|
|
|
// memory manager with IPC to execute using this functionality.
|
|
|
|
cl::opt<bool> RemoteMCJIT("remote-mcjit",
|
|
|
|
cl::desc("Execute MCJIT'ed code in a separate process."),
|
|
|
|
cl::init(false));
|
|
|
|
|
2013-10-03 01:12:36 +08:00
|
|
|
// Manually specify the child process for remote execution. This overrides
|
|
|
|
// the simulated remote execution that allocates address space for child
|
2013-10-29 09:33:14 +08:00
|
|
|
// execution. The child process will be executed and will communicate with
|
|
|
|
// lli via stdin/stdout pipes.
|
2013-10-03 01:12:36 +08:00
|
|
|
cl::opt<std::string>
|
2014-01-23 05:52:35 +08:00
|
|
|
ChildExecPath("mcjit-remote-process",
|
|
|
|
cl::desc("Specify the filename of the process to launch "
|
|
|
|
"for remote MCJIT execution. If none is specified,"
|
|
|
|
"\n\tremote execution will be simulated in-process."),
|
|
|
|
cl::value_desc("filename"), cl::init(""));
|
2013-10-03 01:12:36 +08:00
|
|
|
|
2009-05-05 07:05:19 +08:00
|
|
|
// Determine optimization level.
|
|
|
|
cl::opt<char>
|
|
|
|
OptLevel("O",
|
|
|
|
cl::desc("Optimization level. [-O0, -O1, -O2, or -O3] "
|
|
|
|
"(default = '-O2')"),
|
|
|
|
cl::Prefix,
|
|
|
|
cl::ZeroOrMore,
|
|
|
|
cl::init(' '));
|
2008-08-08 16:12:06 +08:00
|
|
|
|
2005-12-16 13:00:21 +08:00
|
|
|
cl::opt<std::string>
|
2005-12-16 13:19:18 +08:00
|
|
|
TargetTriple("mtriple", cl::desc("Override target triple for module"));
|
2008-11-06 07:21:52 +08:00
|
|
|
|
|
|
|
cl::opt<std::string>
|
|
|
|
EntryFunc("entry-function",
|
|
|
|
cl::desc("Specify the entry function (default = 'main') "
|
|
|
|
"of the executable"),
|
|
|
|
cl::value_desc("function"),
|
|
|
|
cl::init("main"));
|
2012-01-16 16:56:09 +08:00
|
|
|
|
2013-10-04 08:49:38 +08:00
|
|
|
cl::list<std::string>
|
2013-10-29 05:58:15 +08:00
|
|
|
ExtraModules("extra-module",
|
2013-10-04 08:49:38 +08:00
|
|
|
cl::desc("Extra modules to be loaded"),
|
2013-10-29 06:51:25 +08:00
|
|
|
cl::value_desc("input bitcode"));
|
2013-10-04 08:49:38 +08:00
|
|
|
|
2014-01-08 12:09:09 +08:00
|
|
|
cl::list<std::string>
|
|
|
|
ExtraObjects("extra-object",
|
|
|
|
cl::desc("Extra object files to be loaded"),
|
|
|
|
cl::value_desc("input object"));
|
|
|
|
|
|
|
|
cl::list<std::string>
|
|
|
|
ExtraArchives("extra-archive",
|
|
|
|
cl::desc("Extra archive files to be loaded"),
|
|
|
|
cl::value_desc("input archive"));
|
|
|
|
|
|
|
|
cl::opt<bool>
|
|
|
|
EnableCacheManager("enable-cache-manager",
|
2014-01-09 13:24:05 +08:00
|
|
|
cl::desc("Use cache manager to save/load mdoules"),
|
2014-01-08 12:09:09 +08:00
|
|
|
cl::init(false));
|
|
|
|
|
2014-01-09 13:24:05 +08:00
|
|
|
cl::opt<std::string>
|
|
|
|
ObjectCacheDir("object-cache-dir",
|
|
|
|
cl::desc("Directory to store cached object files "
|
|
|
|
"(must be user writable)"),
|
|
|
|
cl::init(""));
|
|
|
|
|
2003-10-29 06:51:44 +08:00
|
|
|
cl::opt<std::string>
|
|
|
|
FakeArgv0("fake-argv0",
|
|
|
|
cl::desc("Override the 'argv[0]' value passed into the executing"
|
|
|
|
" program"), cl::value_desc("executable"));
|
2012-01-16 16:56:09 +08:00
|
|
|
|
2006-09-14 14:17:09 +08:00
|
|
|
cl::opt<bool>
|
|
|
|
DisableCoreFiles("disable-core-files", cl::Hidden,
|
|
|
|
cl::desc("Disable emission of core files if possible"));
|
2008-04-22 14:51:41 +08:00
|
|
|
|
|
|
|
cl::opt<bool>
|
2008-05-22 02:20:21 +08:00
|
|
|
NoLazyCompilation("disable-lazy-compilation",
|
2008-04-22 14:51:41 +08:00
|
|
|
cl::desc("Disable JIT lazy compilation"),
|
|
|
|
cl::init(false));
|
2011-07-19 14:37:02 +08:00
|
|
|
|
2012-04-18 16:34:12 +08:00
|
|
|
cl::opt<bool>
|
2012-10-12 17:55:13 +08:00
|
|
|
GenerateSoftFloatCalls("soft-float",
|
|
|
|
cl::desc("Generate software floating point library calls"),
|
|
|
|
cl::init(false));
|
|
|
|
|
2018-06-27 05:35:48 +08:00
|
|
|
enum class DumpKind {
|
|
|
|
NoDump,
|
|
|
|
DumpFuncsToStdOut,
|
|
|
|
DumpModsToStdOut,
|
|
|
|
DumpModsToDisk
|
|
|
|
};
|
|
|
|
|
|
|
|
cl::opt<DumpKind> OrcDumpKind(
|
|
|
|
"orc-lazy-debug", cl::desc("Debug dumping for the orc-lazy JIT."),
|
|
|
|
cl::init(DumpKind::NoDump),
|
|
|
|
cl::values(clEnumValN(DumpKind::NoDump, "no-dump",
|
|
|
|
"Don't dump anything."),
|
|
|
|
clEnumValN(DumpKind::DumpFuncsToStdOut, "funcs-to-stdout",
|
|
|
|
"Dump function names to stdout."),
|
|
|
|
clEnumValN(DumpKind::DumpModsToStdOut, "mods-to-stdout",
|
|
|
|
"Dump modules to stdout."),
|
|
|
|
clEnumValN(DumpKind::DumpModsToDisk, "mods-to-disk",
|
|
|
|
"Dump modules to the current "
|
|
|
|
"working directory. (WARNING: "
|
|
|
|
"will overwrite existing files).")),
|
|
|
|
cl::Hidden);
|
|
|
|
|
2016-04-26 03:56:45 +08:00
|
|
|
ExitOnError ExitOnErr;
|
2002-12-24 07:59:41 +08:00
|
|
|
}
|
2001-10-27 16:43:52 +08:00
|
|
|
|
2014-01-08 12:09:09 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Object cache
|
|
|
|
//
|
2014-01-09 13:24:05 +08:00
|
|
|
// This object cache implementation writes cached objects to disk to the
|
|
|
|
// directory specified by CacheDir, using a filename provided in the module
|
|
|
|
// descriptor. The cache tries to load a saved object using that path if the
|
|
|
|
// file exists. CacheDir defaults to "", in which case objects are cached
|
2014-01-10 18:38:28 +08:00
|
|
|
// alongside their originating bitcodes.
|
2014-01-08 12:09:09 +08:00
|
|
|
//
|
|
|
|
class LLIObjectCache : public ObjectCache {
|
|
|
|
public:
|
2014-01-09 13:24:05 +08:00
|
|
|
LLIObjectCache(const std::string& CacheDir) : CacheDir(CacheDir) {
|
|
|
|
// Add trailing '/' to cache dir if necessary.
|
2014-01-09 13:29:59 +08:00
|
|
|
if (!this->CacheDir.empty() &&
|
|
|
|
this->CacheDir[this->CacheDir.size() - 1] != '/')
|
2014-01-10 18:38:28 +08:00
|
|
|
this->CacheDir += '/';
|
2014-01-09 13:24:05 +08:00
|
|
|
}
|
2015-04-11 10:11:45 +08:00
|
|
|
~LLIObjectCache() override {}
|
2014-01-08 12:09:09 +08:00
|
|
|
|
2014-08-20 02:44:46 +08:00
|
|
|
void notifyObjectCompiled(const Module *M, MemoryBufferRef Obj) override {
|
2016-06-08 18:01:20 +08:00
|
|
|
const std::string &ModuleID = M->getModuleIdentifier();
|
2014-01-08 12:09:09 +08:00
|
|
|
std::string CacheName;
|
|
|
|
if (!getCacheFilename(ModuleID, CacheName))
|
|
|
|
return;
|
2014-01-10 18:38:34 +08:00
|
|
|
if (!CacheDir.empty()) { // Create user-defined cache dir.
|
2015-07-16 05:24:07 +08:00
|
|
|
SmallString<128> dir(sys::path::parent_path(CacheName));
|
2014-01-10 18:38:34 +08:00
|
|
|
sys::fs::create_directories(Twine(dir));
|
|
|
|
}
|
2014-08-26 02:16:47 +08:00
|
|
|
std::error_code EC;
|
|
|
|
raw_fd_ostream outfile(CacheName, EC, sys::fs::F_None);
|
2014-08-20 02:44:46 +08:00
|
|
|
outfile.write(Obj.getBufferStart(), Obj.getBufferSize());
|
2014-01-08 12:09:09 +08:00
|
|
|
outfile.close();
|
|
|
|
}
|
|
|
|
|
2014-08-14 02:49:01 +08:00
|
|
|
std::unique_ptr<MemoryBuffer> getObject(const Module* M) override {
|
2016-06-08 18:01:20 +08:00
|
|
|
const std::string &ModuleID = M->getModuleIdentifier();
|
2014-01-08 12:09:09 +08:00
|
|
|
std::string CacheName;
|
|
|
|
if (!getCacheFilename(ModuleID, CacheName))
|
2014-04-25 12:24:47 +08:00
|
|
|
return nullptr;
|
2014-01-08 12:09:09 +08:00
|
|
|
// Load the object from the cache filename
|
2014-07-07 01:43:13 +08:00
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>> IRObjectBuffer =
|
2016-11-03 00:43:50 +08:00
|
|
|
MemoryBuffer::getFile(CacheName, -1, false);
|
2014-01-08 12:09:09 +08:00
|
|
|
// If the file isn't there, that's OK.
|
|
|
|
if (!IRObjectBuffer)
|
2014-04-25 12:24:47 +08:00
|
|
|
return nullptr;
|
2014-01-08 12:09:09 +08:00
|
|
|
// MCJIT will want to write into this buffer, and we don't want that
|
|
|
|
// because the file has probably just been mmapped. Instead we make
|
|
|
|
// a copy. The filed-based buffer will be released when it goes
|
|
|
|
// out of scope.
|
2014-08-28 04:03:13 +08:00
|
|
|
return MemoryBuffer::getMemBufferCopy(IRObjectBuffer.get()->getBuffer());
|
2014-01-08 12:09:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2014-01-09 13:24:05 +08:00
|
|
|
std::string CacheDir;
|
|
|
|
|
2014-01-08 12:09:09 +08:00
|
|
|
bool getCacheFilename(const std::string &ModID, std::string &CacheName) {
|
|
|
|
std::string Prefix("file:");
|
|
|
|
size_t PrefixLength = Prefix.length();
|
|
|
|
if (ModID.substr(0, PrefixLength) != Prefix)
|
|
|
|
return false;
|
2014-01-10 18:38:40 +08:00
|
|
|
std::string CacheSubdir = ModID.substr(PrefixLength);
|
|
|
|
#if defined(_WIN32)
|
|
|
|
// Transform "X:\foo" => "/X\foo" for convenience.
|
|
|
|
if (isalpha(CacheSubdir[0]) && CacheSubdir[1] == ':') {
|
|
|
|
CacheSubdir[1] = CacheSubdir[0];
|
|
|
|
CacheSubdir[0] = '/';
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
CacheName = CacheDir + CacheSubdir;
|
2014-01-08 12:09:09 +08:00
|
|
|
size_t pos = CacheName.rfind('.');
|
|
|
|
CacheName.replace(pos, CacheName.length() - pos, ".o");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-10-29 09:29:56 +08:00
|
|
|
// On Mingw and Cygwin, an external symbol named '__main' is called from the
|
2016-11-20 21:31:13 +08:00
|
|
|
// generated 'main' function to allow static initialization. To avoid linking
|
2013-10-29 09:29:56 +08:00
|
|
|
// problems with remote targets (because lli's remote target support does not
|
|
|
|
// currently handle external linking) we add a secondary module which defines
|
|
|
|
// an empty '__main' function.
|
2016-04-19 02:52:39 +08:00
|
|
|
static void addCygMingExtraModule(ExecutionEngine &EE, LLVMContext &Context,
|
2013-10-29 09:29:56 +08:00
|
|
|
StringRef TargetTripleStr) {
|
|
|
|
IRBuilder<> Builder(Context);
|
|
|
|
Triple TargetTriple(TargetTripleStr);
|
|
|
|
|
|
|
|
// Create a new module.
|
2014-08-19 12:04:25 +08:00
|
|
|
std::unique_ptr<Module> M = make_unique<Module>("CygMingHelper", Context);
|
2013-10-29 09:29:56 +08:00
|
|
|
M->setTargetTriple(TargetTripleStr);
|
|
|
|
|
|
|
|
// Create an empty function named "__main".
|
|
|
|
Function *Result;
|
|
|
|
if (TargetTriple.isArch64Bit()) {
|
|
|
|
Result = Function::Create(
|
|
|
|
TypeBuilder<int64_t(void), false>::get(Context),
|
2014-08-19 12:04:25 +08:00
|
|
|
GlobalValue::ExternalLinkage, "__main", M.get());
|
2013-10-29 09:29:56 +08:00
|
|
|
} else {
|
|
|
|
Result = Function::Create(
|
|
|
|
TypeBuilder<int32_t(void), false>::get(Context),
|
2014-08-19 12:04:25 +08:00
|
|
|
GlobalValue::ExternalLinkage, "__main", M.get());
|
2013-10-29 09:29:56 +08:00
|
|
|
}
|
|
|
|
BasicBlock *BB = BasicBlock::Create(Context, "__main", Result);
|
|
|
|
Builder.SetInsertPoint(BB);
|
|
|
|
Value *ReturnVal;
|
|
|
|
if (TargetTriple.isArch64Bit())
|
|
|
|
ReturnVal = ConstantInt::get(Context, APInt(64, 0));
|
|
|
|
else
|
|
|
|
ReturnVal = ConstantInt::get(Context, APInt(32, 0));
|
|
|
|
Builder.CreateRet(ReturnVal);
|
|
|
|
|
|
|
|
// Add this new module to the ExecutionEngine.
|
2016-04-19 02:52:39 +08:00
|
|
|
EE.addModule(std::move(M));
|
2013-10-29 09:29:56 +08:00
|
|
|
}
|
|
|
|
|
2015-06-09 10:43:27 +08:00
|
|
|
CodeGenOpt::Level getOptLevel() {
|
|
|
|
switch (OptLevel) {
|
|
|
|
default:
|
2018-04-22 16:02:11 +08:00
|
|
|
WithColor::error(errs(), "lli") << "invalid optimization level.\n";
|
2015-06-09 10:43:27 +08:00
|
|
|
exit(1);
|
|
|
|
case '0': return CodeGenOpt::None;
|
|
|
|
case '1': return CodeGenOpt::Less;
|
|
|
|
case ' ':
|
|
|
|
case '2': return CodeGenOpt::Default;
|
|
|
|
case '3': return CodeGenOpt::Aggressive;
|
|
|
|
}
|
|
|
|
llvm_unreachable("Unrecognized opt level.");
|
|
|
|
}
|
2013-10-29 09:29:56 +08:00
|
|
|
|
2016-11-18 06:58:13 +08:00
|
|
|
LLVM_ATTRIBUTE_NORETURN
|
|
|
|
static void reportError(SMDiagnostic Err, const char *ProgName) {
|
|
|
|
Err.print(ProgName, errs());
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2018-08-29 04:20:31 +08:00
|
|
|
int runOrcLazyJIT(const char *ProgName);
|
2018-06-27 05:35:48 +08:00
|
|
|
|
2001-08-24 01:05:04 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// main Driver function
|
|
|
|
//
|
2003-10-15 05:39:53 +08:00
|
|
|
int main(int argc, char **argv, char * const *envp) {
|
2018-04-14 02:26:06 +08:00
|
|
|
InitLLVM X(argc, argv);
|
2009-07-16 10:04:54 +08:00
|
|
|
|
2016-04-26 03:56:45 +08:00
|
|
|
if (argc > 1)
|
|
|
|
ExitOnErr.setBanner(std::string(argv[0]) + ": ");
|
|
|
|
|
2009-07-16 10:04:54 +08:00
|
|
|
// If we have a native target, initialize it to ensure it is linked in and
|
|
|
|
// usable by the JIT.
|
|
|
|
InitializeNativeTarget();
|
2011-03-19 06:48:41 +08:00
|
|
|
InitializeNativeTargetAsmPrinter();
|
2012-11-06 03:06:05 +08:00
|
|
|
InitializeNativeTargetAsmParser();
|
2009-07-16 10:04:54 +08:00
|
|
|
|
2007-05-06 12:58:26 +08:00
|
|
|
cl::ParseCommandLineOptions(argc, argv,
|
2007-10-08 23:45:12 +08:00
|
|
|
"llvm interpreter & dynamic compiler\n");
|
2004-12-30 13:36:08 +08:00
|
|
|
|
2007-05-06 12:58:26 +08:00
|
|
|
// If the user doesn't want core files, disable them.
|
|
|
|
if (DisableCoreFiles)
|
|
|
|
sys::Process::PreventCoreFiles();
|
2012-01-16 16:56:09 +08:00
|
|
|
|
2018-08-29 04:20:31 +08:00
|
|
|
if (UseJITKind == JITKind::OrcLazy)
|
|
|
|
return runOrcLazyJIT(argv[0]);
|
|
|
|
|
2016-04-19 02:52:39 +08:00
|
|
|
LLVMContext Context;
|
|
|
|
|
2007-07-06 01:07:56 +08:00
|
|
|
// Load the bitcode...
|
2010-11-13 08:28:01 +08:00
|
|
|
SMDiagnostic Err;
|
2014-08-27 01:29:46 +08:00
|
|
|
std::unique_ptr<Module> Owner = parseIRFile(InputFile, Err, Context);
|
2014-08-19 12:04:25 +08:00
|
|
|
Module *Mod = Owner.get();
|
2016-11-18 06:58:13 +08:00
|
|
|
if (!Mod)
|
|
|
|
reportError(Err, argv[0]);
|
2004-12-30 13:36:08 +08:00
|
|
|
|
2014-01-08 12:09:09 +08:00
|
|
|
if (EnableCacheManager) {
|
2014-09-03 06:28:02 +08:00
|
|
|
std::string CacheName("file:");
|
|
|
|
CacheName.append(InputFile);
|
|
|
|
Mod->setModuleIdentifier(CacheName);
|
2014-01-08 12:09:09 +08:00
|
|
|
}
|
|
|
|
|
2010-01-28 04:34:15 +08:00
|
|
|
// If not jitting lazily, load the whole bitcode file eagerly too.
|
|
|
|
if (NoLazyCompilation) {
|
2016-11-10 05:30:33 +08:00
|
|
|
// Use *argv instead of argv[0] to work around a wrong GCC warning.
|
|
|
|
ExitOnError ExitOnErr(std::string(*argv) +
|
2016-11-10 01:49:19 +08:00
|
|
|
": bitcode didn't read correctly: ");
|
|
|
|
ExitOnErr(Mod->materializeAll());
|
2008-04-22 14:51:41 +08:00
|
|
|
}
|
2004-12-30 13:36:08 +08:00
|
|
|
|
2014-01-15 07:51:27 +08:00
|
|
|
std::string ErrorMsg;
|
2014-08-19 12:04:25 +08:00
|
|
|
EngineBuilder builder(std::move(Owner));
|
2010-02-06 00:19:36 +08:00
|
|
|
builder.setMArch(MArch);
|
2018-01-10 02:14:18 +08:00
|
|
|
builder.setMCPU(getCPUStr());
|
|
|
|
builder.setMAttrs(getFeatureList());
|
2016-05-19 06:04:49 +08:00
|
|
|
if (RelocModel.getNumOccurrences())
|
|
|
|
builder.setRelocationModel(RelocModel);
|
2017-08-03 10:16:21 +08:00
|
|
|
if (CMModel.getNumOccurrences())
|
|
|
|
builder.setCodeModel(CMModel);
|
2009-07-18 16:07:13 +08:00
|
|
|
builder.setErrorStr(&ErrorMsg);
|
|
|
|
builder.setEngineKind(ForceInterpreter
|
2009-07-18 08:42:18 +08:00
|
|
|
? EngineKind::Interpreter
|
|
|
|
: EngineKind::JIT);
|
2015-03-25 20:11:48 +08:00
|
|
|
builder.setUseOrcMCJITReplacement(UseJITKind == JITKind::OrcMCJITReplacement);
|
2009-07-18 08:42:18 +08:00
|
|
|
|
2007-05-06 12:58:26 +08:00
|
|
|
// If we are supposed to override the target triple, do so now.
|
|
|
|
if (!TargetTriple.empty())
|
2010-08-28 09:30:02 +08:00
|
|
|
Mod->setTargetTriple(Triple::normalize(TargetTriple));
|
2008-04-22 14:51:41 +08:00
|
|
|
|
2012-01-16 16:56:09 +08:00
|
|
|
// Enable MCJIT if desired.
|
2014-04-25 12:24:47 +08:00
|
|
|
RTDyldMemoryManager *RTDyldMM = nullptr;
|
2014-09-03 06:28:02 +08:00
|
|
|
if (!ForceInterpreter) {
|
2012-09-06 00:50:34 +08:00
|
|
|
if (RemoteMCJIT)
|
2016-01-12 00:35:55 +08:00
|
|
|
RTDyldMM = new ForwardingMemoryManager();
|
2012-09-06 00:50:34 +08:00
|
|
|
else
|
2013-05-15 03:29:00 +08:00
|
|
|
RTDyldMM = new SectionMemoryManager();
|
2014-12-03 08:51:19 +08:00
|
|
|
|
|
|
|
// Deliberately construct a temp std::unique_ptr to pass in. Do not null out
|
|
|
|
// RTDyldMM: We still use it below, even though we don't own it.
|
|
|
|
builder.setMCJITMemoryManager(
|
|
|
|
std::unique_ptr<RTDyldMemoryManager>(RTDyldMM));
|
2014-09-24 00:56:02 +08:00
|
|
|
} else if (RemoteMCJIT) {
|
2018-04-22 16:02:11 +08:00
|
|
|
WithColor::error(errs(), argv[0])
|
|
|
|
<< "remote process execution does not work with the interpreter.\n";
|
2014-09-24 00:56:02 +08:00
|
|
|
exit(1);
|
2012-01-16 16:56:09 +08:00
|
|
|
}
|
2010-11-18 00:06:37 +08:00
|
|
|
|
2015-06-09 10:43:27 +08:00
|
|
|
builder.setOptLevel(getOptLevel());
|
2009-07-18 08:42:18 +08:00
|
|
|
|
2017-11-28 03:43:58 +08:00
|
|
|
TargetOptions Options = InitTargetOptionsFromCodeGenFlags();
|
2012-10-12 17:55:13 +08:00
|
|
|
if (FloatABIForCalls != FloatABI::Default)
|
|
|
|
Options.FloatABIType = FloatABIForCalls;
|
|
|
|
|
|
|
|
builder.setTargetOptions(Options);
|
|
|
|
|
2016-04-19 02:52:39 +08:00
|
|
|
std::unique_ptr<ExecutionEngine> EE(builder.create());
|
2009-07-08 02:31:09 +08:00
|
|
|
if (!EE) {
|
|
|
|
if (!ErrorMsg.empty())
|
2018-04-22 16:02:11 +08:00
|
|
|
WithColor::error(errs(), argv[0])
|
|
|
|
<< "error creating EE: " << ErrorMsg << "\n";
|
2009-07-08 02:31:09 +08:00
|
|
|
else
|
2018-04-22 16:02:11 +08:00
|
|
|
WithColor::error(errs(), argv[0]) << "unknown error creating EE!\n";
|
2007-05-06 12:58:26 +08:00
|
|
|
exit(1);
|
|
|
|
}
|
2004-12-30 13:36:08 +08:00
|
|
|
|
2016-04-19 02:52:39 +08:00
|
|
|
std::unique_ptr<LLIObjectCache> CacheManager;
|
2014-01-08 12:09:09 +08:00
|
|
|
if (EnableCacheManager) {
|
2016-04-19 02:52:39 +08:00
|
|
|
CacheManager.reset(new LLIObjectCache(ObjectCacheDir));
|
|
|
|
EE->setObjectCache(CacheManager.get());
|
2014-01-08 12:09:09 +08:00
|
|
|
}
|
|
|
|
|
2013-10-04 08:49:38 +08:00
|
|
|
// Load any additional modules specified on the command line.
|
|
|
|
for (unsigned i = 0, e = ExtraModules.size(); i != e; ++i) {
|
2014-08-27 01:29:46 +08:00
|
|
|
std::unique_ptr<Module> XMod = parseIRFile(ExtraModules[i], Err, Context);
|
2016-11-18 06:58:13 +08:00
|
|
|
if (!XMod)
|
|
|
|
reportError(Err, argv[0]);
|
2014-01-08 12:09:09 +08:00
|
|
|
if (EnableCacheManager) {
|
2014-09-03 06:28:02 +08:00
|
|
|
std::string CacheName("file:");
|
|
|
|
CacheName.append(ExtraModules[i]);
|
|
|
|
XMod->setModuleIdentifier(CacheName);
|
2014-01-08 12:09:09 +08:00
|
|
|
}
|
2014-08-19 12:04:25 +08:00
|
|
|
EE->addModule(std::move(XMod));
|
2013-10-04 08:49:38 +08:00
|
|
|
}
|
|
|
|
|
2014-01-08 12:09:09 +08:00
|
|
|
for (unsigned i = 0, e = ExtraObjects.size(); i != e; ++i) {
|
2016-04-07 06:14:09 +08:00
|
|
|
Expected<object::OwningBinary<object::ObjectFile>> Obj =
|
2014-01-22 08:14:49 +08:00
|
|
|
object::ObjectFile::createObjectFile(ExtraObjects[i]);
|
2014-01-08 12:09:09 +08:00
|
|
|
if (!Obj) {
|
2016-04-07 06:14:09 +08:00
|
|
|
// TODO: Actually report errors helpfully.
|
|
|
|
consumeError(Obj.takeError());
|
2016-11-18 06:58:13 +08:00
|
|
|
reportError(Err, argv[0]);
|
2014-01-08 12:09:09 +08:00
|
|
|
}
|
2014-08-20 23:19:37 +08:00
|
|
|
object::OwningBinary<object::ObjectFile> &O = Obj.get();
|
2014-08-27 05:04:04 +08:00
|
|
|
EE->addObjectFile(std::move(O));
|
2014-01-08 12:09:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for (unsigned i = 0, e = ExtraArchives.size(); i != e; ++i) {
|
2014-08-20 02:44:46 +08:00
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>> ArBufOrErr =
|
2014-07-07 01:43:13 +08:00
|
|
|
MemoryBuffer::getFileOrSTDIN(ExtraArchives[i]);
|
2016-11-18 06:58:13 +08:00
|
|
|
if (!ArBufOrErr)
|
|
|
|
reportError(Err, argv[0]);
|
2014-08-20 02:44:46 +08:00
|
|
|
std::unique_ptr<MemoryBuffer> &ArBuf = ArBufOrErr.get();
|
2014-08-02 02:31:17 +08:00
|
|
|
|
2016-06-30 04:35:44 +08:00
|
|
|
Expected<std::unique_ptr<object::Archive>> ArOrErr =
|
2014-08-20 02:44:46 +08:00
|
|
|
object::Archive::create(ArBuf->getMemBufferRef());
|
2016-06-30 04:35:44 +08:00
|
|
|
if (!ArOrErr) {
|
|
|
|
std::string Buf;
|
|
|
|
raw_string_ostream OS(Buf);
|
|
|
|
logAllUnhandledErrors(ArOrErr.takeError(), OS, "");
|
|
|
|
OS.flush();
|
|
|
|
errs() << Buf;
|
2016-11-18 06:59:13 +08:00
|
|
|
exit(1);
|
2014-01-08 12:09:09 +08:00
|
|
|
}
|
2014-08-20 02:44:46 +08:00
|
|
|
std::unique_ptr<object::Archive> &Ar = ArOrErr.get();
|
|
|
|
|
|
|
|
object::OwningBinary<object::Archive> OB(std::move(Ar), std::move(ArBuf));
|
|
|
|
|
|
|
|
EE->addArchive(std::move(OB));
|
2014-01-08 12:09:09 +08:00
|
|
|
}
|
|
|
|
|
2013-10-29 09:29:56 +08:00
|
|
|
// If the target is Cygwin/MingW and we are generating remote code, we
|
|
|
|
// need an extra module to help out with linking.
|
|
|
|
if (RemoteMCJIT && Triple(Mod->getTargetTriple()).isOSCygMing()) {
|
2016-04-19 02:52:39 +08:00
|
|
|
addCygMingExtraModule(*EE, Context, Mod->getTargetTriple());
|
2013-10-29 09:29:56 +08:00
|
|
|
}
|
|
|
|
|
2012-03-13 16:33:15 +08:00
|
|
|
// The following functions have no effect if their respective profiling
|
|
|
|
// support wasn't enabled in the build configuration.
|
|
|
|
EE->RegisterJITEventListener(
|
|
|
|
JITEventListener::createOProfileJITEventListener());
|
|
|
|
EE->RegisterJITEventListener(
|
|
|
|
JITEventListener::createIntelJITEventListener());
|
Add PerfJITEventListener for perf profiling support.
This new JIT event listener supports generating profiling data for
the linux 'perf' profiling tool, allowing it to generate function and
instruction level profiles.
Currently this functionality is not enabled by default, but must be
enabled with LLVM_USE_PERF=yes. Given that the listener has no
dependencies, it might be sensible to enable by default once the
initial issues have been shaken out.
I followed existing precedent in registering the listener by default
in lli. Should there be a decision to enable this by default on linux,
that should probably be changed.
Please note that until https://reviews.llvm.org/D47343 is resolved,
using this functionality with mcjit rather than orcjit will not
reliably work.
Disregarding the previous comment, here's an example:
$ cat /tmp/expensive_loop.c
bool stupid_isprime(uint64_t num)
{
if (num == 2)
return true;
if (num < 1 || num % 2 == 0)
return false;
for(uint64_t i = 3; i < num / 2; i+= 2) {
if (num % i == 0)
return false;
}
return true;
}
int main(int argc, char **argv)
{
int numprimes = 0;
for (uint64_t num = argc; num < 100000; num++)
{
if (stupid_isprime(num))
numprimes++;
}
return numprimes;
}
$ clang -ggdb -S -c -emit-llvm /tmp/expensive_loop.c -o
/tmp/expensive_loop.ll
$ perf record -o perf.data -g -k 1 ./bin/lli -jit-kind=mcjit /tmp/expensive_loop.ll 1
$ perf inject --jit -i perf.data -o perf.jit.data
$ perf report -i perf.jit.data
- 92.59% lli jitted-5881-2.so [.] stupid_isprime
stupid_isprime
main
llvm::MCJIT::runFunction
llvm::ExecutionEngine::runFunctionAsMain
main
__libc_start_main
0x4bf6258d4c544155
+ 0.85% lli ld-2.27.so [.] do_lookup_x
And line-level annotations also work:
│ for(uint64_t i = 3; i < num / 2; i+= 2) {
│1 30: movq $0x3,-0x18(%rbp)
0.03 │1 38: mov -0x18(%rbp),%rax
0.03 │ mov -0x10(%rbp),%rcx
│ shr $0x1,%rcx
3.63 │ ┌──cmp %rcx,%rax
│ ├──jae 6f
│ │ if (num % i == 0)
0.03 │ │ mov -0x10(%rbp),%rax
│ │ xor %edx,%edx
89.00 │ │ divq -0x18(%rbp)
│ │ cmp $0x0,%rdx
0.22 │ │↓ jne 5f
│ │ return false;
│ │ movb $0x0,-0x1(%rbp)
│ │↓ jmp 73
│ │ }
3.22 │1 5f:│↓ jmp 61
│ │ for(uint64_t i = 3; i < num / 2; i+= 2) {
Subscribers: mgorny, llvm-commits
Differential Revision: https://reviews.llvm.org/D44892
llvm-svn: 337789
2018-07-24 08:54:06 +08:00
|
|
|
if (!RemoteMCJIT)
|
|
|
|
EE->RegisterJITEventListener(
|
|
|
|
JITEventListener::createPerfJITEventListener());
|
2009-06-25 10:04:04 +08:00
|
|
|
|
2012-09-06 00:50:34 +08:00
|
|
|
if (!NoLazyCompilation && RemoteMCJIT) {
|
2018-04-22 16:02:11 +08:00
|
|
|
WithColor::warning(errs(), argv[0])
|
|
|
|
<< "remote mcjit does not support lazy compilation\n";
|
2012-09-06 00:50:34 +08:00
|
|
|
NoLazyCompilation = true;
|
|
|
|
}
|
2009-10-28 06:39:42 +08:00
|
|
|
EE->DisableLazyCompilation(NoLazyCompilation);
|
2008-04-22 14:51:41 +08:00
|
|
|
|
2007-05-06 12:58:26 +08:00
|
|
|
// If the user specifically requested an argv[0] to pass into the program,
|
|
|
|
// do it now.
|
|
|
|
if (!FakeArgv0.empty()) {
|
2015-01-22 09:49:59 +08:00
|
|
|
InputFile = static_cast<std::string>(FakeArgv0);
|
2007-05-06 12:58:26 +08:00
|
|
|
} else {
|
|
|
|
// Otherwise, if there is a .bc suffix on the executable strip it off, it
|
|
|
|
// might confuse the program.
|
2010-04-15 19:33:14 +08:00
|
|
|
if (StringRef(InputFile).endswith(".bc"))
|
2007-05-06 12:58:26 +08:00
|
|
|
InputFile.erase(InputFile.length() - 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the module's name to the start of the vector of arguments to main().
|
|
|
|
InputArgv.insert(InputArgv.begin(), InputFile);
|
|
|
|
|
|
|
|
// Call the main function from M as if its signature were:
|
|
|
|
// int main (int argc, char **argv, const char **envp)
|
|
|
|
// using the contents of Args to determine argc & argv, and the contents of
|
|
|
|
// EnvVars to determine envp.
|
|
|
|
//
|
2008-11-06 07:21:52 +08:00
|
|
|
Function *EntryFn = Mod->getFunction(EntryFunc);
|
|
|
|
if (!EntryFn) {
|
2018-04-22 16:02:11 +08:00
|
|
|
WithColor::error(errs(), argv[0])
|
|
|
|
<< '\'' << EntryFunc << "\' function not found in module.\n";
|
2007-05-06 12:58:26 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset errno to zero on entry to main.
|
|
|
|
errno = 0;
|
2012-01-16 16:56:09 +08:00
|
|
|
|
2016-04-19 03:55:43 +08:00
|
|
|
int Result = -1;
|
2013-10-03 02:04:40 +08:00
|
|
|
|
2016-01-12 00:35:55 +08:00
|
|
|
// Sanity check use of remote-jit: LLI currently only supports use of the
|
|
|
|
// remote JIT on Unix platforms.
|
|
|
|
if (RemoteMCJIT) {
|
|
|
|
#ifndef LLVM_ON_UNIX
|
2018-04-22 16:02:11 +08:00
|
|
|
WithColor::warning(errs(), argv[0])
|
2018-04-22 16:35:00 +08:00
|
|
|
<< "host does not support external remote targets.\n";
|
|
|
|
WithColor::note() << "defaulting to local execution\n";
|
2016-01-12 05:41:34 +08:00
|
|
|
return -1;
|
2016-01-12 00:35:55 +08:00
|
|
|
#else
|
|
|
|
if (ChildExecPath.empty()) {
|
2018-04-22 16:02:11 +08:00
|
|
|
WithColor::error(errs(), argv[0])
|
|
|
|
<< "-remote-mcjit requires -mcjit-remote-process.\n";
|
2016-01-12 00:35:55 +08:00
|
|
|
exit(1);
|
|
|
|
} else if (!sys::fs::can_execute(ChildExecPath)) {
|
2018-04-22 16:02:11 +08:00
|
|
|
WithColor::error(errs(), argv[0])
|
|
|
|
<< "unable to find usable child executable: '" << ChildExecPath
|
|
|
|
<< "'\n";
|
2016-01-12 00:35:55 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-11-28 03:49:00 +08:00
|
|
|
if (!RemoteMCJIT) {
|
2013-10-12 06:47:10 +08:00
|
|
|
// If the program doesn't explicitly call exit, we will need the Exit
|
|
|
|
// function later on to make an explicit call, so get the function now.
|
|
|
|
Constant *Exit = Mod->getOrInsertFunction("exit", Type::getVoidTy(Context),
|
2017-04-11 23:01:18 +08:00
|
|
|
Type::getInt32Ty(Context));
|
2013-10-12 06:47:10 +08:00
|
|
|
|
2013-10-03 02:04:40 +08:00
|
|
|
// Run static constructors.
|
2014-09-03 06:28:02 +08:00
|
|
|
if (!ForceInterpreter) {
|
2013-10-01 09:47:35 +08:00
|
|
|
// Give MCJIT a chance to apply relocations and set page permissions.
|
|
|
|
EE->finalizeObject();
|
|
|
|
}
|
|
|
|
EE->runStaticConstructorsDestructors(false);
|
2008-04-22 14:51:41 +08:00
|
|
|
|
2013-12-07 19:21:42 +08:00
|
|
|
// Trigger compilation separately so code regions that need to be
|
2013-10-03 02:04:40 +08:00
|
|
|
// invalidated will be known.
|
|
|
|
(void)EE->getPointerToFunction(EntryFn);
|
|
|
|
// Clear instruction cache before code will be executed.
|
|
|
|
if (RTDyldMM)
|
|
|
|
static_cast<SectionMemoryManager*>(RTDyldMM)->invalidateInstructionCache();
|
|
|
|
|
|
|
|
// Run main.
|
|
|
|
Result = EE->runFunctionAsMain(EntryFn, InputArgv, envp);
|
|
|
|
|
|
|
|
// Run static destructors.
|
|
|
|
EE->runStaticConstructorsDestructors(true);
|
|
|
|
|
|
|
|
// If the program didn't call exit explicitly, we should call it now.
|
|
|
|
// This ensures that any atexit handlers get called correctly.
|
|
|
|
if (Function *ExitF = dyn_cast<Function>(Exit)) {
|
|
|
|
std::vector<GenericValue> Args;
|
|
|
|
GenericValue ResultGV;
|
|
|
|
ResultGV.IntVal = APInt(32, Result);
|
|
|
|
Args.push_back(ResultGV);
|
|
|
|
EE->runFunction(ExitF, Args);
|
2018-04-22 16:02:11 +08:00
|
|
|
WithColor::error(errs(), argv[0]) << "exit(" << Result << ") returned!\n";
|
2013-10-03 02:04:40 +08:00
|
|
|
abort();
|
|
|
|
} else {
|
2018-04-22 16:02:11 +08:00
|
|
|
WithColor::error(errs(), argv[0])
|
|
|
|
<< "exit defined with wrong prototype!\n";
|
2013-10-03 02:04:40 +08:00
|
|
|
abort();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// else == "if (RemoteMCJIT)"
|
|
|
|
|
|
|
|
// Remote target MCJIT doesn't (yet) support static constructors. No reason
|
2017-07-11 14:04:59 +08:00
|
|
|
// it couldn't. This is a limitation of the LLI implementation, not the
|
2013-10-03 02:04:40 +08:00
|
|
|
// MCJIT itself. FIXME.
|
2016-01-12 00:35:55 +08:00
|
|
|
|
|
|
|
// Lanch the remote process and get a channel to it.
|
2016-11-12 05:42:09 +08:00
|
|
|
std::unique_ptr<FDRawChannel> C = launchRemote();
|
2016-01-12 00:35:55 +08:00
|
|
|
if (!C) {
|
2018-04-22 16:02:11 +08:00
|
|
|
WithColor::error(errs(), argv[0]) << "failed to launch remote JIT.\n";
|
2016-01-12 00:35:55 +08:00
|
|
|
exit(1);
|
2013-10-03 01:12:36 +08:00
|
|
|
}
|
|
|
|
|
2016-01-12 00:35:55 +08:00
|
|
|
// Create a remote target client running over the channel.
|
2018-05-30 09:57:45 +08:00
|
|
|
llvm::orc::ExecutionSession ES;
|
|
|
|
ES.setErrorReporter([&](Error Err) { ExitOnErr(std::move(Err)); });
|
2017-09-05 04:54:46 +08:00
|
|
|
typedef orc::remote::OrcRemoteTargetClient MyRemote;
|
2018-05-30 09:57:45 +08:00
|
|
|
auto R = ExitOnErr(MyRemote::Create(*C, ES));
|
2013-10-04 08:49:38 +08:00
|
|
|
|
2016-01-12 00:35:55 +08:00
|
|
|
// Create a remote memory manager.
|
2017-09-05 04:54:46 +08:00
|
|
|
auto RemoteMM = ExitOnErr(R->createRemoteMemoryManager());
|
2012-09-06 00:50:34 +08:00
|
|
|
|
2016-01-12 00:35:55 +08:00
|
|
|
// Forward MCJIT's memory manager calls to the remote memory manager.
|
|
|
|
static_cast<ForwardingMemoryManager*>(RTDyldMM)->setMemMgr(
|
|
|
|
std::move(RemoteMM));
|
|
|
|
|
|
|
|
// Forward MCJIT's symbol resolution calls to the remote.
|
2017-08-28 14:47:47 +08:00
|
|
|
static_cast<ForwardingMemoryManager *>(RTDyldMM)->setResolver(
|
|
|
|
orc::createLambdaResolver(
|
|
|
|
[](const std::string &Name) { return nullptr; },
|
|
|
|
[&](const std::string &Name) {
|
|
|
|
if (auto Addr = ExitOnErr(R->getSymbolAddress(Name)))
|
|
|
|
return JITSymbol(Addr, JITSymbolFlags::Exported);
|
|
|
|
return JITSymbol(nullptr);
|
|
|
|
}));
|
2016-01-12 00:35:55 +08:00
|
|
|
|
|
|
|
// Grab the target address of the JIT'd main function on the remote and call
|
|
|
|
// it.
|
2012-09-06 00:50:34 +08:00
|
|
|
// FIXME: argv and envp handling.
|
2016-08-02 04:49:11 +08:00
|
|
|
JITTargetAddress Entry = EE->getFunctionAddress(EntryFn->getName().str());
|
2016-01-12 00:35:55 +08:00
|
|
|
EE->finalizeObject();
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << "Executing '" << EntryFn->getName() << "' at 0x"
|
|
|
|
<< format("%llx", Entry) << "\n");
|
2016-11-12 05:42:09 +08:00
|
|
|
Result = ExitOnErr(R->callIntVoid(Entry));
|
2012-09-06 00:50:34 +08:00
|
|
|
|
2013-10-03 02:04:40 +08:00
|
|
|
// Like static constructors, the remote target MCJIT support doesn't handle
|
|
|
|
// this yet. It could. FIXME.
|
2007-05-06 12:58:26 +08:00
|
|
|
|
2016-01-12 00:35:55 +08:00
|
|
|
// Delete the EE - we need to tear it down *before* we terminate the session
|
|
|
|
// with the remote, otherwise it'll crash when it tries to release resources
|
|
|
|
// on a remote that has already been disconnected.
|
2016-04-19 02:52:39 +08:00
|
|
|
EE.reset();
|
2016-01-12 00:35:55 +08:00
|
|
|
|
|
|
|
// Signal the remote target that we're done JITing.
|
2016-11-12 05:42:09 +08:00
|
|
|
ExitOnErr(R->terminateSession());
|
2012-09-06 00:50:34 +08:00
|
|
|
}
|
2012-01-16 16:56:09 +08:00
|
|
|
|
2012-09-06 00:50:34 +08:00
|
|
|
return Result;
|
2001-08-24 01:05:04 +08:00
|
|
|
}
|
2016-01-12 00:35:55 +08:00
|
|
|
|
2018-06-27 05:35:48 +08:00
|
|
|
static orc::IRTransformLayer2::TransformFunction createDebugDumper() {
|
|
|
|
switch (OrcDumpKind) {
|
|
|
|
case DumpKind::NoDump:
|
2018-09-26 09:24:12 +08:00
|
|
|
return [](orc::ThreadSafeModule TSM) { return TSM; };
|
2018-06-27 05:35:48 +08:00
|
|
|
|
|
|
|
case DumpKind::DumpFuncsToStdOut:
|
2018-09-26 09:24:12 +08:00
|
|
|
return [](orc::ThreadSafeModule TSM) {
|
2018-06-27 05:35:48 +08:00
|
|
|
printf("[ ");
|
|
|
|
|
2018-09-26 09:24:12 +08:00
|
|
|
for (const auto &F : *TSM.getModule()) {
|
2018-06-27 05:35:48 +08:00
|
|
|
if (F.isDeclaration())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (F.hasName()) {
|
|
|
|
std::string Name(F.getName());
|
|
|
|
printf("%s ", Name.c_str());
|
|
|
|
} else
|
|
|
|
printf("<anon> ");
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("]\n");
|
2018-09-26 09:24:12 +08:00
|
|
|
return TSM;
|
2018-06-27 05:35:48 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
case DumpKind::DumpModsToStdOut:
|
2018-09-26 09:24:12 +08:00
|
|
|
return [](orc::ThreadSafeModule TSM) {
|
2018-06-27 05:35:48 +08:00
|
|
|
outs() << "----- Module Start -----\n"
|
2018-09-26 09:24:12 +08:00
|
|
|
<< *TSM.getModule() << "----- Module End -----\n";
|
2018-06-27 05:35:48 +08:00
|
|
|
|
2018-09-26 09:24:12 +08:00
|
|
|
return TSM;
|
2018-06-27 05:35:48 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
case DumpKind::DumpModsToDisk:
|
2018-09-26 09:24:12 +08:00
|
|
|
return [](orc::ThreadSafeModule TSM) {
|
2018-06-27 05:35:48 +08:00
|
|
|
std::error_code EC;
|
2018-09-26 09:24:12 +08:00
|
|
|
raw_fd_ostream Out(TSM.getModule()->getModuleIdentifier() + ".ll", EC,
|
|
|
|
sys::fs::F_Text);
|
2018-06-27 05:35:48 +08:00
|
|
|
if (EC) {
|
2018-09-26 09:24:12 +08:00
|
|
|
errs() << "Couldn't open " << TSM.getModule()->getModuleIdentifier()
|
2018-06-27 05:35:48 +08:00
|
|
|
<< " for dumping.\nError:" << EC.message() << "\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
2018-09-26 09:24:12 +08:00
|
|
|
Out << *TSM.getModule();
|
|
|
|
return TSM;
|
2018-06-27 05:35:48 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
llvm_unreachable("Unknown DumpKind");
|
|
|
|
}
|
|
|
|
|
2018-08-29 04:20:31 +08:00
|
|
|
int runOrcLazyJIT(const char *ProgName) {
|
|
|
|
// Start setting up the JIT environment.
|
2018-06-27 05:35:48 +08:00
|
|
|
|
2018-08-29 04:20:31 +08:00
|
|
|
// First add lli's symbols into the JIT's search space.
|
2018-06-27 05:35:48 +08:00
|
|
|
std::string ErrMsg;
|
|
|
|
sys::DynamicLibrary LibLLI =
|
|
|
|
sys::DynamicLibrary::getPermanentLibrary(nullptr, &ErrMsg);
|
|
|
|
if (!LibLLI.isValid()) {
|
|
|
|
errs() << "Error loading lli symbols: " << ErrMsg << ".\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-08-29 04:20:31 +08:00
|
|
|
// Parse the main module.
|
2018-09-26 09:24:12 +08:00
|
|
|
orc::ThreadSafeContext TSCtx(llvm::make_unique<LLVMContext>());
|
2018-08-29 04:20:31 +08:00
|
|
|
SMDiagnostic Err;
|
2018-09-26 09:24:12 +08:00
|
|
|
auto MainModule = orc::ThreadSafeModule(
|
|
|
|
parseIRFile(InputFile, Err, *TSCtx.getContext()), TSCtx);
|
2018-08-29 04:20:31 +08:00
|
|
|
if (!MainModule)
|
|
|
|
reportError(Err, ProgName);
|
|
|
|
|
2018-09-26 09:24:12 +08:00
|
|
|
const auto &TT = MainModule.getModule()->getTargetTriple();
|
2018-09-26 20:15:23 +08:00
|
|
|
orc::JITTargetMachineBuilder TMD =
|
2018-06-27 05:35:48 +08:00
|
|
|
TT.empty() ? ExitOnErr(orc::JITTargetMachineBuilder::detectHost())
|
|
|
|
: orc::JITTargetMachineBuilder(Triple(TT));
|
|
|
|
|
2018-09-26 20:15:23 +08:00
|
|
|
TMD.setArch(MArch)
|
2018-06-27 05:35:48 +08:00
|
|
|
.setCPU(getCPUStr())
|
|
|
|
.addFeatures(getFeatureList())
|
|
|
|
.setRelocationModel(RelocModel.getNumOccurrences()
|
|
|
|
? Optional<Reloc::Model>(RelocModel)
|
|
|
|
: None)
|
|
|
|
.setCodeModel(CMModel.getNumOccurrences()
|
|
|
|
? Optional<CodeModel::Model>(CMModel)
|
|
|
|
: None);
|
2018-09-26 20:15:23 +08:00
|
|
|
auto TM = ExitOnErr(TMD.createTargetMachine());
|
|
|
|
auto DL = TM->createDataLayout();
|
|
|
|
auto J = ExitOnErr(orc::LLLazyJIT::Create(std::move(TM), DL));
|
2018-06-27 05:35:48 +08:00
|
|
|
|
2018-07-03 06:30:18 +08:00
|
|
|
auto Dump = createDebugDumper();
|
|
|
|
|
2018-09-26 09:24:12 +08:00
|
|
|
J->setLazyCompileTransform([&](orc::ThreadSafeModule TSM) {
|
|
|
|
if (verifyModule(*TSM.getModule(), &dbgs())) {
|
|
|
|
dbgs() << "Bad module: " << *TSM.getModule() << "\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
return Dump(std::move(TSM));
|
|
|
|
});
|
2018-08-18 05:18:18 +08:00
|
|
|
J->getMainJITDylib().setFallbackDefinitionGenerator(
|
2018-06-27 05:35:48 +08:00
|
|
|
orc::DynamicLibraryFallbackGenerator(
|
|
|
|
std::move(LibLLI), DL, [](orc::SymbolStringPtr) { return true; }));
|
|
|
|
|
|
|
|
orc::MangleAndInterner Mangle(J->getExecutionSession(), DL);
|
|
|
|
orc::LocalCXXRuntimeOverrides2 CXXRuntimeOverrides;
|
2018-08-18 05:18:18 +08:00
|
|
|
ExitOnErr(CXXRuntimeOverrides.enable(J->getMainJITDylib(), Mangle));
|
2018-06-27 05:35:48 +08:00
|
|
|
|
2018-08-29 04:20:31 +08:00
|
|
|
// Add the main module.
|
|
|
|
ExitOnErr(J->addLazyIRModule(std::move(MainModule)));
|
|
|
|
|
|
|
|
// Add any extra modules.
|
|
|
|
for (auto &ModulePath : ExtraModules) {
|
2018-09-26 09:24:12 +08:00
|
|
|
auto M = parseIRFile(ModulePath, Err, *TSCtx.getContext());
|
2018-08-29 04:20:31 +08:00
|
|
|
if (!M)
|
|
|
|
reportError(Err, ProgName);
|
|
|
|
|
2018-07-03 06:30:18 +08:00
|
|
|
orc::makeAllSymbolsExternallyAccessible(*M);
|
2018-09-26 09:24:12 +08:00
|
|
|
ExitOnErr(J->addLazyIRModule(orc::ThreadSafeModule(std::move(M), TSCtx)));
|
2018-07-03 06:30:18 +08:00
|
|
|
}
|
2018-06-27 05:35:48 +08:00
|
|
|
|
2018-08-29 04:20:31 +08:00
|
|
|
// Add the objects.
|
|
|
|
for (auto &ObjPath : ExtraObjects) {
|
|
|
|
auto Obj = ExitOnErr(errorOrToExpected(MemoryBuffer::getFile(ObjPath)));
|
|
|
|
ExitOnErr(J->addObjectFile(std::move(Obj)));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate a argument string.
|
|
|
|
std::vector<std::string> Args;
|
|
|
|
Args.push_back(InputFile);
|
|
|
|
for (auto &Arg : InputArgv)
|
|
|
|
Args.push_back(Arg);
|
|
|
|
|
|
|
|
// Run any static constructors.
|
2018-06-27 05:35:48 +08:00
|
|
|
ExitOnErr(J->runConstructors());
|
|
|
|
|
2018-08-29 04:20:31 +08:00
|
|
|
// Run main.
|
2018-06-27 05:35:48 +08:00
|
|
|
auto MainSym = ExitOnErr(J->lookup("main"));
|
|
|
|
typedef int (*MainFnPtr)(int, const char *[]);
|
|
|
|
std::vector<const char *> ArgV;
|
|
|
|
for (auto &Arg : Args)
|
|
|
|
ArgV.push_back(Arg.c_str());
|
|
|
|
auto Main =
|
|
|
|
reinterpret_cast<MainFnPtr>(static_cast<uintptr_t>(MainSym.getAddress()));
|
|
|
|
auto Result = Main(ArgV.size(), (const char **)ArgV.data());
|
|
|
|
|
2018-09-26 10:39:42 +08:00
|
|
|
ExitOnErr(J->runDestructors());
|
2018-09-26 20:15:23 +08:00
|
|
|
|
2018-06-27 05:35:48 +08:00
|
|
|
CXXRuntimeOverrides.runDestructors();
|
|
|
|
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2016-11-12 05:42:09 +08:00
|
|
|
std::unique_ptr<FDRawChannel> launchRemote() {
|
2016-01-12 00:35:55 +08:00
|
|
|
#ifndef LLVM_ON_UNIX
|
|
|
|
llvm_unreachable("launchRemote not supported on non-Unix platforms");
|
|
|
|
#else
|
|
|
|
int PipeFD[2][2];
|
|
|
|
pid_t ChildPID;
|
|
|
|
|
|
|
|
// Create two pipes.
|
|
|
|
if (pipe(PipeFD[0]) != 0 || pipe(PipeFD[1]) != 0)
|
|
|
|
perror("Error creating pipe: ");
|
|
|
|
|
|
|
|
ChildPID = fork();
|
|
|
|
|
|
|
|
if (ChildPID == 0) {
|
|
|
|
// In the child...
|
|
|
|
|
|
|
|
// Close the parent ends of the pipes
|
|
|
|
close(PipeFD[0][1]);
|
|
|
|
close(PipeFD[1][0]);
|
|
|
|
|
|
|
|
|
|
|
|
// Execute the child process.
|
|
|
|
std::unique_ptr<char[]> ChildPath, ChildIn, ChildOut;
|
|
|
|
{
|
|
|
|
ChildPath.reset(new char[ChildExecPath.size() + 1]);
|
|
|
|
std::copy(ChildExecPath.begin(), ChildExecPath.end(), &ChildPath[0]);
|
|
|
|
ChildPath[ChildExecPath.size()] = '\0';
|
2016-01-15 10:14:46 +08:00
|
|
|
std::string ChildInStr = utostr(PipeFD[0][0]);
|
2016-01-12 00:35:55 +08:00
|
|
|
ChildIn.reset(new char[ChildInStr.size() + 1]);
|
|
|
|
std::copy(ChildInStr.begin(), ChildInStr.end(), &ChildIn[0]);
|
|
|
|
ChildIn[ChildInStr.size()] = '\0';
|
2016-01-15 10:14:46 +08:00
|
|
|
std::string ChildOutStr = utostr(PipeFD[1][1]);
|
2016-01-12 00:35:55 +08:00
|
|
|
ChildOut.reset(new char[ChildOutStr.size() + 1]);
|
|
|
|
std::copy(ChildOutStr.begin(), ChildOutStr.end(), &ChildOut[0]);
|
|
|
|
ChildOut[ChildOutStr.size()] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
char * const args[] = { &ChildPath[0], &ChildIn[0], &ChildOut[0], nullptr };
|
|
|
|
int rc = execv(ChildExecPath.c_str(), args);
|
|
|
|
if (rc != 0)
|
|
|
|
perror("Error executing child process: ");
|
|
|
|
llvm_unreachable("Error executing child process");
|
|
|
|
}
|
|
|
|
// else we're the parent...
|
|
|
|
|
|
|
|
// Close the child ends of the pipes
|
|
|
|
close(PipeFD[0][0]);
|
|
|
|
close(PipeFD[1][1]);
|
|
|
|
|
|
|
|
// Return an RPC channel connected to our end of the pipes.
|
2016-11-12 05:42:09 +08:00
|
|
|
return llvm::make_unique<FDRawChannel>(PipeFD[1][0], PipeFD[0][1]);
|
2016-01-12 00:35:55 +08:00
|
|
|
#endif
|
|
|
|
}
|