1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00
llvm-mirror/examples/ThinLtoJIT/main.cpp
Stefan Gränitz a7a66b3792 Add ThinLtoJIT example
Summary:
Prototype of a JIT compiler that utilizes ThinLTO summaries to compile modules ahead of time. This is an implementation of the concept I presented in my "ThinLTO Summaries in JIT Compilation" talk at the 2018 Developers' Meeting: http://llvm.org/devmtg/2018-10/talk-abstracts.html#lt8

Upfront the JIT first populates the *combined ThinLTO module index*, which provides fast access to the global call-graph and module paths by function. Next, it loads the main function's module and compiles it. All functions in the module will be emitted with prolog instructions that *fire a discovery flag* once execution reaches them. In parallel, the *discovery thread* is busy-watching the existing flags. Once it detects one has fired, it uses the module index to find all functions that are reachable from it within a given number of calls and submits their defining modules to the compilation pipeline.

While execution continues, more flags are fired and further modules added. Ideally the JIT can be tuned in a way, so that in the majority of cases the code on the execution path can be compiled ahead of time. In cases where it doesn't work, the JIT has a *definition generator* in place that loads modules if missing functions are reached.

Reviewers: lhames, dblaikie, jfb, tejohnson, pree-jackie, AlexDenisov, kavon

Subscribers: mgorny, mehdi_amini, inglorion, hiraditya, steven_wu, dexonsmith, arphaman, jfb, merge_guards_bot, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D72486
2020-02-01 20:25:09 +01:00

84 lines
3.2 KiB
C++

#include "llvm/ADT/StringRef.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Error.h"
#include "llvm/Support/InitLLVM.h"
#include "llvm/Support/TargetSelect.h"
#include "ThinLtoJIT.h"
#include <string>
#include <vector>
using namespace llvm;
static cl::list<std::string>
InputFiles(cl::Positional, cl::OneOrMore,
cl::desc("<bitcode files or global index>"));
static cl::list<std::string> InputArgs("args", cl::Positional,
cl::desc("<program arguments>..."),
cl::ZeroOrMore, cl::PositionalEatsArgs);
static cl::opt<unsigned> CompileThreads("compile-threads", cl::Optional,
cl::desc("Number of compile threads"),
cl::init(4));
static cl::opt<unsigned> LoadThreads("load-threads", cl::Optional,
cl::desc("Number of module load threads"),
cl::init(8));
static cl::opt<unsigned>
LookaheadLevels("lookahead", cl::Optional,
cl::desc("Calls to look ahead of execution"), cl::init(4));
static cl::opt<unsigned> DiscoveryFlagsBucketSize(
"discovery-flag-bucket-size", cl::Optional,
cl::desc("Flags per bucket (rounds up to memory pages)"), cl::init(4096));
static cl::opt<orc::ThinLtoJIT::ExplicitMemoryBarrier>
MemFence("mem-fence",
cl::desc("Control memory fences for cache synchronization"),
cl::init(orc::ThinLtoJIT::NeverFence),
cl::values(clEnumValN(orc::ThinLtoJIT::NeverFence, "never",
"No use of memory fences"),
clEnumValN(orc::ThinLtoJIT::FenceStaticCode, "static",
"Use of memory fences in static code only"),
clEnumValN(orc::ThinLtoJIT::FenceJITedCode, "jited",
"Install memory fences in JITed code only"),
clEnumValN(orc::ThinLtoJIT::AlwaysFence, "always",
"Always use of memory fences")));
static cl::opt<bool>
AllowNudge("allow-nudge",
cl::desc("Allow the symbol generator to nudge symbols into "
"discovery even though they haven't been reached"),
cl::init(false));
static cl::opt<bool> PrintStats("print-stats",
cl::desc("Print module stats on shutdown"),
cl::init(false));
int main(int argc, char *argv[]) {
InitLLVM X(argc, argv);
InitializeNativeTarget();
InitializeNativeTargetAsmPrinter();
cl::ParseCommandLineOptions(argc, argv, "ThinLtoJIT");
Error Err = Error::success();
auto atLeastOne = [](unsigned N) { return std::max(1u, N); };
orc::ThinLtoJIT Jit(InputFiles, "main", atLeastOne(LookaheadLevels),
atLeastOne(CompileThreads), atLeastOne(LoadThreads),
DiscoveryFlagsBucketSize, MemFence, AllowNudge,
PrintStats, Err);
if (Err) {
logAllUnhandledErrors(std::move(Err), errs(), "[ThinLtoJIT] ");
exit(1);
}
ExitOnError ExitOnErr;
ExitOnErr.setBanner("[ThinLtoJIT] ");
return ExitOnErr(Jit.main(InputArgs));
}