mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
81a5e12cd4
Support for this functionality is moving to the ORC runtime.
856 lines
29 KiB
C++
856 lines
29 KiB
C++
//===--------- LLJIT.cpp - An ORC-based JIT for compiling LLVM IR ---------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/ExecutionEngine/Orc/LLJIT.h"
|
|
#include "llvm/ExecutionEngine/JITLink/EHFrameSupport.h"
|
|
#include "llvm/ExecutionEngine/JITLink/JITLinkMemoryManager.h"
|
|
#include "llvm/ExecutionEngine/Orc/ExecutorProcessControl.h"
|
|
#include "llvm/ExecutionEngine/Orc/MachOPlatform.h"
|
|
#include "llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h"
|
|
#include "llvm/ExecutionEngine/Orc/ObjectTransformLayer.h"
|
|
#include "llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h"
|
|
#include "llvm/ExecutionEngine/Orc/Shared/OrcError.h"
|
|
#include "llvm/ExecutionEngine/SectionMemoryManager.h"
|
|
#include "llvm/IR/GlobalVariable.h"
|
|
#include "llvm/IR/IRBuilder.h"
|
|
#include "llvm/IR/Mangler.h"
|
|
#include "llvm/IR/Module.h"
|
|
#include "llvm/Support/DynamicLibrary.h"
|
|
|
|
#include <map>
|
|
|
|
#define DEBUG_TYPE "orc"
|
|
|
|
using namespace llvm;
|
|
using namespace llvm::orc;
|
|
|
|
namespace {
|
|
|
|
/// Adds helper function decls and wrapper functions that call the helper with
|
|
/// some additional prefix arguments.
|
|
///
|
|
/// E.g. For wrapper "foo" with type i8(i8, i64), helper "bar", and prefix
|
|
/// args i32 4 and i16 12345, this function will add:
|
|
///
|
|
/// declare i8 @bar(i32, i16, i8, i64)
|
|
///
|
|
/// define i8 @foo(i8, i64) {
|
|
/// entry:
|
|
/// %2 = call i8 @bar(i32 4, i16 12345, i8 %0, i64 %1)
|
|
/// ret i8 %2
|
|
/// }
|
|
///
|
|
Function *addHelperAndWrapper(Module &M, StringRef WrapperName,
|
|
FunctionType *WrapperFnType,
|
|
GlobalValue::VisibilityTypes WrapperVisibility,
|
|
StringRef HelperName,
|
|
ArrayRef<Value *> HelperPrefixArgs) {
|
|
std::vector<Type *> HelperArgTypes;
|
|
for (auto *Arg : HelperPrefixArgs)
|
|
HelperArgTypes.push_back(Arg->getType());
|
|
for (auto *T : WrapperFnType->params())
|
|
HelperArgTypes.push_back(T);
|
|
auto *HelperFnType =
|
|
FunctionType::get(WrapperFnType->getReturnType(), HelperArgTypes, false);
|
|
auto *HelperFn = Function::Create(HelperFnType, GlobalValue::ExternalLinkage,
|
|
HelperName, M);
|
|
|
|
auto *WrapperFn = Function::Create(
|
|
WrapperFnType, GlobalValue::ExternalLinkage, WrapperName, M);
|
|
WrapperFn->setVisibility(WrapperVisibility);
|
|
|
|
auto *EntryBlock = BasicBlock::Create(M.getContext(), "entry", WrapperFn);
|
|
IRBuilder<> IB(EntryBlock);
|
|
|
|
std::vector<Value *> HelperArgs;
|
|
for (auto *Arg : HelperPrefixArgs)
|
|
HelperArgs.push_back(Arg);
|
|
for (auto &Arg : WrapperFn->args())
|
|
HelperArgs.push_back(&Arg);
|
|
auto *HelperResult = IB.CreateCall(HelperFn, HelperArgs);
|
|
if (HelperFn->getReturnType()->isVoidTy())
|
|
IB.CreateRetVoid();
|
|
else
|
|
IB.CreateRet(HelperResult);
|
|
|
|
return WrapperFn;
|
|
}
|
|
|
|
class GenericLLVMIRPlatformSupport;
|
|
|
|
/// orc::Platform component of Generic LLVM IR Platform support.
|
|
/// Just forwards calls to the GenericLLVMIRPlatformSupport class below.
|
|
class GenericLLVMIRPlatform : public Platform {
|
|
public:
|
|
GenericLLVMIRPlatform(GenericLLVMIRPlatformSupport &S) : S(S) {}
|
|
Error setupJITDylib(JITDylib &JD) override;
|
|
Error notifyAdding(ResourceTracker &RT,
|
|
const MaterializationUnit &MU) override;
|
|
Error notifyRemoving(ResourceTracker &RT) override {
|
|
// Noop -- Nothing to do (yet).
|
|
return Error::success();
|
|
}
|
|
|
|
private:
|
|
GenericLLVMIRPlatformSupport &S;
|
|
};
|
|
|
|
/// This transform parses llvm.global_ctors to produce a single initialization
|
|
/// function for the module, records the function, then deletes
|
|
/// llvm.global_ctors.
|
|
class GlobalCtorDtorScraper {
|
|
public:
|
|
|
|
GlobalCtorDtorScraper(GenericLLVMIRPlatformSupport &PS,
|
|
StringRef InitFunctionPrefix)
|
|
: PS(PS), InitFunctionPrefix(InitFunctionPrefix) {}
|
|
Expected<ThreadSafeModule> operator()(ThreadSafeModule TSM,
|
|
MaterializationResponsibility &R);
|
|
|
|
private:
|
|
GenericLLVMIRPlatformSupport &PS;
|
|
StringRef InitFunctionPrefix;
|
|
};
|
|
|
|
/// Generic IR Platform Support
|
|
///
|
|
/// Scrapes llvm.global_ctors and llvm.global_dtors and replaces them with
|
|
/// specially named 'init' and 'deinit'. Injects definitions / interposes for
|
|
/// some runtime API, including __cxa_atexit, dlopen, and dlclose.
|
|
class GenericLLVMIRPlatformSupport : public LLJIT::PlatformSupport {
|
|
public:
|
|
GenericLLVMIRPlatformSupport(LLJIT &J)
|
|
: J(J), InitFunctionPrefix(J.mangle("__orc_init_func.")) {
|
|
|
|
getExecutionSession().setPlatform(
|
|
std::make_unique<GenericLLVMIRPlatform>(*this));
|
|
|
|
setInitTransform(J, GlobalCtorDtorScraper(*this, InitFunctionPrefix));
|
|
|
|
SymbolMap StdInterposes;
|
|
|
|
StdInterposes[J.mangleAndIntern("__lljit.platform_support_instance")] =
|
|
JITEvaluatedSymbol(pointerToJITTargetAddress(this),
|
|
JITSymbolFlags::Exported);
|
|
StdInterposes[J.mangleAndIntern("__lljit.cxa_atexit_helper")] =
|
|
JITEvaluatedSymbol(pointerToJITTargetAddress(registerAtExitHelper),
|
|
JITSymbolFlags());
|
|
|
|
cantFail(
|
|
J.getMainJITDylib().define(absoluteSymbols(std::move(StdInterposes))));
|
|
cantFail(setupJITDylib(J.getMainJITDylib()));
|
|
cantFail(J.addIRModule(J.getMainJITDylib(), createPlatformRuntimeModule()));
|
|
}
|
|
|
|
ExecutionSession &getExecutionSession() { return J.getExecutionSession(); }
|
|
|
|
/// Adds a module that defines the __dso_handle global.
|
|
Error setupJITDylib(JITDylib &JD) {
|
|
|
|
// Add per-jitdylib standard interposes.
|
|
SymbolMap PerJDInterposes;
|
|
PerJDInterposes[J.mangleAndIntern("__lljit.run_atexits_helper")] =
|
|
JITEvaluatedSymbol(pointerToJITTargetAddress(runAtExitsHelper),
|
|
JITSymbolFlags());
|
|
cantFail(JD.define(absoluteSymbols(std::move(PerJDInterposes))));
|
|
|
|
auto Ctx = std::make_unique<LLVMContext>();
|
|
auto M = std::make_unique<Module>("__standard_lib", *Ctx);
|
|
M->setDataLayout(J.getDataLayout());
|
|
|
|
auto *Int64Ty = Type::getInt64Ty(*Ctx);
|
|
auto *DSOHandle = new GlobalVariable(
|
|
*M, Int64Ty, true, GlobalValue::ExternalLinkage,
|
|
ConstantInt::get(Int64Ty, reinterpret_cast<uintptr_t>(&JD)),
|
|
"__dso_handle");
|
|
DSOHandle->setVisibility(GlobalValue::DefaultVisibility);
|
|
DSOHandle->setInitializer(
|
|
ConstantInt::get(Int64Ty, pointerToJITTargetAddress(&JD)));
|
|
|
|
auto *GenericIRPlatformSupportTy =
|
|
StructType::create(*Ctx, "lljit.GenericLLJITIRPlatformSupport");
|
|
|
|
auto *PlatformInstanceDecl = new GlobalVariable(
|
|
*M, GenericIRPlatformSupportTy, true, GlobalValue::ExternalLinkage,
|
|
nullptr, "__lljit.platform_support_instance");
|
|
|
|
auto *VoidTy = Type::getVoidTy(*Ctx);
|
|
addHelperAndWrapper(
|
|
*M, "__lljit_run_atexits", FunctionType::get(VoidTy, {}, false),
|
|
GlobalValue::HiddenVisibility, "__lljit.run_atexits_helper",
|
|
{PlatformInstanceDecl, DSOHandle});
|
|
|
|
return J.addIRModule(JD, ThreadSafeModule(std::move(M), std::move(Ctx)));
|
|
}
|
|
|
|
Error notifyAdding(ResourceTracker &RT, const MaterializationUnit &MU) {
|
|
auto &JD = RT.getJITDylib();
|
|
if (auto &InitSym = MU.getInitializerSymbol())
|
|
InitSymbols[&JD].add(InitSym, SymbolLookupFlags::WeaklyReferencedSymbol);
|
|
else {
|
|
// If there's no identified init symbol attached, but there is a symbol
|
|
// with the GenericIRPlatform::InitFunctionPrefix, then treat that as
|
|
// an init function. Add the symbol to both the InitSymbols map (which
|
|
// will trigger a lookup to materialize the module) and the InitFunctions
|
|
// map (which holds the names of the symbols to execute).
|
|
for (auto &KV : MU.getSymbols())
|
|
if ((*KV.first).startswith(InitFunctionPrefix)) {
|
|
InitSymbols[&JD].add(KV.first,
|
|
SymbolLookupFlags::WeaklyReferencedSymbol);
|
|
InitFunctions[&JD].add(KV.first);
|
|
}
|
|
}
|
|
return Error::success();
|
|
}
|
|
|
|
Error initialize(JITDylib &JD) override {
|
|
LLVM_DEBUG({
|
|
dbgs() << "GenericLLVMIRPlatformSupport getting initializers to run\n";
|
|
});
|
|
if (auto Initializers = getInitializers(JD)) {
|
|
LLVM_DEBUG(
|
|
{ dbgs() << "GenericLLVMIRPlatformSupport running initializers\n"; });
|
|
for (auto InitFnAddr : *Initializers) {
|
|
LLVM_DEBUG({
|
|
dbgs() << " Running init " << formatv("{0:x16}", InitFnAddr)
|
|
<< "...\n";
|
|
});
|
|
auto *InitFn = jitTargetAddressToFunction<void (*)()>(InitFnAddr);
|
|
InitFn();
|
|
}
|
|
} else
|
|
return Initializers.takeError();
|
|
return Error::success();
|
|
}
|
|
|
|
Error deinitialize(JITDylib &JD) override {
|
|
LLVM_DEBUG({
|
|
dbgs() << "GenericLLVMIRPlatformSupport getting deinitializers to run\n";
|
|
});
|
|
if (auto Deinitializers = getDeinitializers(JD)) {
|
|
LLVM_DEBUG({
|
|
dbgs() << "GenericLLVMIRPlatformSupport running deinitializers\n";
|
|
});
|
|
for (auto DeinitFnAddr : *Deinitializers) {
|
|
LLVM_DEBUG({
|
|
dbgs() << " Running deinit " << formatv("{0:x16}", DeinitFnAddr)
|
|
<< "...\n";
|
|
});
|
|
auto *DeinitFn = jitTargetAddressToFunction<void (*)()>(DeinitFnAddr);
|
|
DeinitFn();
|
|
}
|
|
} else
|
|
return Deinitializers.takeError();
|
|
|
|
return Error::success();
|
|
}
|
|
|
|
void registerInitFunc(JITDylib &JD, SymbolStringPtr InitName) {
|
|
getExecutionSession().runSessionLocked([&]() {
|
|
InitFunctions[&JD].add(InitName);
|
|
});
|
|
}
|
|
|
|
private:
|
|
|
|
Expected<std::vector<JITTargetAddress>> getInitializers(JITDylib &JD) {
|
|
if (auto Err = issueInitLookups(JD))
|
|
return std::move(Err);
|
|
|
|
DenseMap<JITDylib *, SymbolLookupSet> LookupSymbols;
|
|
std::vector<JITDylibSP> DFSLinkOrder;
|
|
|
|
getExecutionSession().runSessionLocked([&]() {
|
|
DFSLinkOrder = JD.getDFSLinkOrder();
|
|
|
|
for (auto &NextJD : DFSLinkOrder) {
|
|
auto IFItr = InitFunctions.find(NextJD.get());
|
|
if (IFItr != InitFunctions.end()) {
|
|
LookupSymbols[NextJD.get()] = std::move(IFItr->second);
|
|
InitFunctions.erase(IFItr);
|
|
}
|
|
}
|
|
});
|
|
|
|
LLVM_DEBUG({
|
|
dbgs() << "JITDylib init order is [ ";
|
|
for (auto &JD : llvm::reverse(DFSLinkOrder))
|
|
dbgs() << "\"" << JD->getName() << "\" ";
|
|
dbgs() << "]\n";
|
|
dbgs() << "Looking up init functions:\n";
|
|
for (auto &KV : LookupSymbols)
|
|
dbgs() << " \"" << KV.first->getName() << "\": " << KV.second << "\n";
|
|
});
|
|
|
|
auto &ES = getExecutionSession();
|
|
auto LookupResult = Platform::lookupInitSymbols(ES, LookupSymbols);
|
|
|
|
if (!LookupResult)
|
|
return LookupResult.takeError();
|
|
|
|
std::vector<JITTargetAddress> Initializers;
|
|
while (!DFSLinkOrder.empty()) {
|
|
auto &NextJD = *DFSLinkOrder.back();
|
|
DFSLinkOrder.pop_back();
|
|
auto InitsItr = LookupResult->find(&NextJD);
|
|
if (InitsItr == LookupResult->end())
|
|
continue;
|
|
for (auto &KV : InitsItr->second)
|
|
Initializers.push_back(KV.second.getAddress());
|
|
}
|
|
|
|
return Initializers;
|
|
}
|
|
|
|
Expected<std::vector<JITTargetAddress>> getDeinitializers(JITDylib &JD) {
|
|
auto &ES = getExecutionSession();
|
|
|
|
auto LLJITRunAtExits = J.mangleAndIntern("__lljit_run_atexits");
|
|
|
|
DenseMap<JITDylib *, SymbolLookupSet> LookupSymbols;
|
|
std::vector<JITDylibSP> DFSLinkOrder;
|
|
|
|
ES.runSessionLocked([&]() {
|
|
DFSLinkOrder = JD.getDFSLinkOrder();
|
|
|
|
for (auto &NextJD : DFSLinkOrder) {
|
|
auto &JDLookupSymbols = LookupSymbols[NextJD.get()];
|
|
auto DIFItr = DeInitFunctions.find(NextJD.get());
|
|
if (DIFItr != DeInitFunctions.end()) {
|
|
LookupSymbols[NextJD.get()] = std::move(DIFItr->second);
|
|
DeInitFunctions.erase(DIFItr);
|
|
}
|
|
JDLookupSymbols.add(LLJITRunAtExits,
|
|
SymbolLookupFlags::WeaklyReferencedSymbol);
|
|
}
|
|
});
|
|
|
|
LLVM_DEBUG({
|
|
dbgs() << "JITDylib deinit order is [ ";
|
|
for (auto &JD : DFSLinkOrder)
|
|
dbgs() << "\"" << JD->getName() << "\" ";
|
|
dbgs() << "]\n";
|
|
dbgs() << "Looking up deinit functions:\n";
|
|
for (auto &KV : LookupSymbols)
|
|
dbgs() << " \"" << KV.first->getName() << "\": " << KV.second << "\n";
|
|
});
|
|
|
|
auto LookupResult = Platform::lookupInitSymbols(ES, LookupSymbols);
|
|
|
|
if (!LookupResult)
|
|
return LookupResult.takeError();
|
|
|
|
std::vector<JITTargetAddress> DeInitializers;
|
|
for (auto &NextJD : DFSLinkOrder) {
|
|
auto DeInitsItr = LookupResult->find(NextJD.get());
|
|
assert(DeInitsItr != LookupResult->end() &&
|
|
"Every JD should have at least __lljit_run_atexits");
|
|
|
|
auto RunAtExitsItr = DeInitsItr->second.find(LLJITRunAtExits);
|
|
if (RunAtExitsItr != DeInitsItr->second.end())
|
|
DeInitializers.push_back(RunAtExitsItr->second.getAddress());
|
|
|
|
for (auto &KV : DeInitsItr->second)
|
|
if (KV.first != LLJITRunAtExits)
|
|
DeInitializers.push_back(KV.second.getAddress());
|
|
}
|
|
|
|
return DeInitializers;
|
|
}
|
|
|
|
/// Issue lookups for all init symbols required to initialize JD (and any
|
|
/// JITDylibs that it depends on).
|
|
Error issueInitLookups(JITDylib &JD) {
|
|
DenseMap<JITDylib *, SymbolLookupSet> RequiredInitSymbols;
|
|
std::vector<JITDylibSP> DFSLinkOrder;
|
|
|
|
getExecutionSession().runSessionLocked([&]() {
|
|
DFSLinkOrder = JD.getDFSLinkOrder();
|
|
|
|
for (auto &NextJD : DFSLinkOrder) {
|
|
auto ISItr = InitSymbols.find(NextJD.get());
|
|
if (ISItr != InitSymbols.end()) {
|
|
RequiredInitSymbols[NextJD.get()] = std::move(ISItr->second);
|
|
InitSymbols.erase(ISItr);
|
|
}
|
|
}
|
|
});
|
|
|
|
return Platform::lookupInitSymbols(getExecutionSession(),
|
|
RequiredInitSymbols)
|
|
.takeError();
|
|
}
|
|
|
|
static void registerAtExitHelper(void *Self, void (*F)(void *), void *Ctx,
|
|
void *DSOHandle) {
|
|
LLVM_DEBUG({
|
|
dbgs() << "Registering atexit function " << (void *)F << " for JD "
|
|
<< (*static_cast<JITDylib **>(DSOHandle))->getName() << "\n";
|
|
});
|
|
static_cast<GenericLLVMIRPlatformSupport *>(Self)->AtExitMgr.registerAtExit(
|
|
F, Ctx, DSOHandle);
|
|
}
|
|
|
|
static void runAtExitsHelper(void *Self, void *DSOHandle) {
|
|
LLVM_DEBUG({
|
|
dbgs() << "Running atexit functions for JD "
|
|
<< (*static_cast<JITDylib **>(DSOHandle))->getName() << "\n";
|
|
});
|
|
static_cast<GenericLLVMIRPlatformSupport *>(Self)->AtExitMgr.runAtExits(
|
|
DSOHandle);
|
|
}
|
|
|
|
// Constructs an LLVM IR module containing platform runtime globals,
|
|
// functions, and interposes.
|
|
ThreadSafeModule createPlatformRuntimeModule() {
|
|
auto Ctx = std::make_unique<LLVMContext>();
|
|
auto M = std::make_unique<Module>("__standard_lib", *Ctx);
|
|
M->setDataLayout(J.getDataLayout());
|
|
|
|
auto *GenericIRPlatformSupportTy =
|
|
StructType::create(*Ctx, "lljit.GenericLLJITIRPlatformSupport");
|
|
|
|
auto *PlatformInstanceDecl = new GlobalVariable(
|
|
*M, GenericIRPlatformSupportTy, true, GlobalValue::ExternalLinkage,
|
|
nullptr, "__lljit.platform_support_instance");
|
|
|
|
auto *Int8Ty = Type::getInt8Ty(*Ctx);
|
|
auto *IntTy = Type::getIntNTy(*Ctx, sizeof(int) * CHAR_BIT);
|
|
auto *VoidTy = Type::getVoidTy(*Ctx);
|
|
auto *BytePtrTy = PointerType::getUnqual(Int8Ty);
|
|
auto *AtExitCallbackTy = FunctionType::get(VoidTy, {BytePtrTy}, false);
|
|
auto *AtExitCallbackPtrTy = PointerType::getUnqual(AtExitCallbackTy);
|
|
|
|
addHelperAndWrapper(
|
|
*M, "__cxa_atexit",
|
|
FunctionType::get(IntTy, {AtExitCallbackPtrTy, BytePtrTy, BytePtrTy},
|
|
false),
|
|
GlobalValue::DefaultVisibility, "__lljit.cxa_atexit_helper",
|
|
{PlatformInstanceDecl});
|
|
|
|
return ThreadSafeModule(std::move(M), std::move(Ctx));
|
|
}
|
|
|
|
LLJIT &J;
|
|
std::string InitFunctionPrefix;
|
|
DenseMap<JITDylib *, SymbolLookupSet> InitSymbols;
|
|
DenseMap<JITDylib *, SymbolLookupSet> InitFunctions;
|
|
DenseMap<JITDylib *, SymbolLookupSet> DeInitFunctions;
|
|
ItaniumCXAAtExitSupport AtExitMgr;
|
|
};
|
|
|
|
Error GenericLLVMIRPlatform::setupJITDylib(JITDylib &JD) {
|
|
return S.setupJITDylib(JD);
|
|
}
|
|
|
|
Error GenericLLVMIRPlatform::notifyAdding(ResourceTracker &RT,
|
|
const MaterializationUnit &MU) {
|
|
return S.notifyAdding(RT, MU);
|
|
}
|
|
|
|
Expected<ThreadSafeModule>
|
|
GlobalCtorDtorScraper::operator()(ThreadSafeModule TSM,
|
|
MaterializationResponsibility &R) {
|
|
auto Err = TSM.withModuleDo([&](Module &M) -> Error {
|
|
auto &Ctx = M.getContext();
|
|
auto *GlobalCtors = M.getNamedGlobal("llvm.global_ctors");
|
|
|
|
// If there's no llvm.global_ctors or it's just a decl then skip.
|
|
if (!GlobalCtors || GlobalCtors->isDeclaration())
|
|
return Error::success();
|
|
|
|
std::string InitFunctionName;
|
|
raw_string_ostream(InitFunctionName)
|
|
<< InitFunctionPrefix << M.getModuleIdentifier();
|
|
|
|
MangleAndInterner Mangle(PS.getExecutionSession(), M.getDataLayout());
|
|
auto InternedName = Mangle(InitFunctionName);
|
|
if (auto Err =
|
|
R.defineMaterializing({{InternedName, JITSymbolFlags::Callable}}))
|
|
return Err;
|
|
|
|
auto *InitFunc =
|
|
Function::Create(FunctionType::get(Type::getVoidTy(Ctx), {}, false),
|
|
GlobalValue::ExternalLinkage, InitFunctionName, &M);
|
|
InitFunc->setVisibility(GlobalValue::HiddenVisibility);
|
|
std::vector<std::pair<Function *, unsigned>> Inits;
|
|
for (auto E : getConstructors(M))
|
|
Inits.push_back(std::make_pair(E.Func, E.Priority));
|
|
llvm::sort(Inits, [](const std::pair<Function *, unsigned> &LHS,
|
|
const std::pair<Function *, unsigned> &RHS) {
|
|
return LHS.first < RHS.first;
|
|
});
|
|
auto *EntryBlock = BasicBlock::Create(Ctx, "entry", InitFunc);
|
|
IRBuilder<> IB(EntryBlock);
|
|
for (auto &KV : Inits)
|
|
IB.CreateCall(KV.first);
|
|
IB.CreateRetVoid();
|
|
|
|
PS.registerInitFunc(R.getTargetJITDylib(), InternedName);
|
|
GlobalCtors->eraseFromParent();
|
|
return Error::success();
|
|
});
|
|
|
|
if (Err)
|
|
return std::move(Err);
|
|
|
|
return std::move(TSM);
|
|
}
|
|
|
|
/// Inactive Platform Support
|
|
///
|
|
/// Explicitly disables platform support. JITDylibs are not scanned for special
|
|
/// init/deinit symbols. No runtime API interposes are injected.
|
|
class InactivePlatformSupport : public LLJIT::PlatformSupport {
|
|
public:
|
|
InactivePlatformSupport() = default;
|
|
|
|
Error initialize(JITDylib &JD) override {
|
|
LLVM_DEBUG(dbgs() << "InactivePlatformSupport: no initializers running for "
|
|
<< JD.getName() << "\n");
|
|
return Error::success();
|
|
}
|
|
|
|
Error deinitialize(JITDylib &JD) override {
|
|
LLVM_DEBUG(
|
|
dbgs() << "InactivePlatformSupport: no deinitializers running for "
|
|
<< JD.getName() << "\n");
|
|
return Error::success();
|
|
}
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
namespace llvm {
|
|
namespace orc {
|
|
|
|
void LLJIT::PlatformSupport::setInitTransform(
|
|
LLJIT &J, IRTransformLayer::TransformFunction T) {
|
|
J.InitHelperTransformLayer->setTransform(std::move(T));
|
|
}
|
|
|
|
LLJIT::PlatformSupport::~PlatformSupport() {}
|
|
|
|
Error LLJITBuilderState::prepareForConstruction() {
|
|
|
|
LLVM_DEBUG(dbgs() << "Preparing to create LLJIT instance...\n");
|
|
|
|
if (!JTMB) {
|
|
LLVM_DEBUG({
|
|
dbgs() << " No explicitly set JITTargetMachineBuilder. "
|
|
"Detecting host...\n";
|
|
});
|
|
if (auto JTMBOrErr = JITTargetMachineBuilder::detectHost())
|
|
JTMB = std::move(*JTMBOrErr);
|
|
else
|
|
return JTMBOrErr.takeError();
|
|
}
|
|
|
|
LLVM_DEBUG({
|
|
dbgs() << " JITTargetMachineBuilder is "
|
|
<< JITTargetMachineBuilderPrinter(*JTMB, " ")
|
|
<< " Pre-constructed ExecutionSession: " << (ES ? "Yes" : "No")
|
|
<< "\n"
|
|
<< " DataLayout: ";
|
|
if (DL)
|
|
dbgs() << DL->getStringRepresentation() << "\n";
|
|
else
|
|
dbgs() << "None (will be created by JITTargetMachineBuilder)\n";
|
|
|
|
dbgs() << " Custom object-linking-layer creator: "
|
|
<< (CreateObjectLinkingLayer ? "Yes" : "No") << "\n"
|
|
<< " Custom compile-function creator: "
|
|
<< (CreateCompileFunction ? "Yes" : "No") << "\n"
|
|
<< " Custom platform-setup function: "
|
|
<< (SetUpPlatform ? "Yes" : "No") << "\n"
|
|
<< " Number of compile threads: " << NumCompileThreads;
|
|
if (!NumCompileThreads)
|
|
dbgs() << " (code will be compiled on the execution thread)\n";
|
|
else
|
|
dbgs() << "\n";
|
|
});
|
|
|
|
// If the client didn't configure any linker options then auto-configure the
|
|
// JIT linker.
|
|
if (!CreateObjectLinkingLayer) {
|
|
auto &TT = JTMB->getTargetTriple();
|
|
if (TT.isOSBinFormatMachO() &&
|
|
(TT.getArch() == Triple::aarch64 || TT.getArch() == Triple::x86_64)) {
|
|
|
|
JTMB->setRelocationModel(Reloc::PIC_);
|
|
JTMB->setCodeModel(CodeModel::Small);
|
|
CreateObjectLinkingLayer =
|
|
[EPC = this->EPC](
|
|
ExecutionSession &ES,
|
|
const Triple &) -> Expected<std::unique_ptr<ObjectLayer>> {
|
|
std::unique_ptr<ObjectLinkingLayer> ObjLinkingLayer;
|
|
if (EPC)
|
|
ObjLinkingLayer =
|
|
std::make_unique<ObjectLinkingLayer>(ES, EPC->getMemMgr());
|
|
else
|
|
ObjLinkingLayer = std::make_unique<ObjectLinkingLayer>(
|
|
ES, std::make_unique<jitlink::InProcessMemoryManager>());
|
|
ObjLinkingLayer->addPlugin(std::make_unique<EHFrameRegistrationPlugin>(
|
|
ES, std::make_unique<jitlink::InProcessEHFrameRegistrar>()));
|
|
return std::move(ObjLinkingLayer);
|
|
};
|
|
}
|
|
}
|
|
|
|
return Error::success();
|
|
}
|
|
|
|
LLJIT::~LLJIT() {
|
|
if (CompileThreads)
|
|
CompileThreads->wait();
|
|
if (auto Err = ES->endSession())
|
|
ES->reportError(std::move(Err));
|
|
}
|
|
|
|
Error LLJIT::addIRModule(ResourceTrackerSP RT, ThreadSafeModule TSM) {
|
|
assert(TSM && "Can not add null module");
|
|
|
|
if (auto Err =
|
|
TSM.withModuleDo([&](Module &M) { return applyDataLayout(M); }))
|
|
return Err;
|
|
|
|
return InitHelperTransformLayer->add(std::move(RT), std::move(TSM));
|
|
}
|
|
|
|
Error LLJIT::addIRModule(JITDylib &JD, ThreadSafeModule TSM) {
|
|
return addIRModule(JD.getDefaultResourceTracker(), std::move(TSM));
|
|
}
|
|
|
|
Error LLJIT::addObjectFile(ResourceTrackerSP RT,
|
|
std::unique_ptr<MemoryBuffer> Obj) {
|
|
assert(Obj && "Can not add null object");
|
|
|
|
return ObjTransformLayer->add(std::move(RT), std::move(Obj));
|
|
}
|
|
|
|
Error LLJIT::addObjectFile(JITDylib &JD, std::unique_ptr<MemoryBuffer> Obj) {
|
|
return addObjectFile(JD.getDefaultResourceTracker(), std::move(Obj));
|
|
}
|
|
|
|
Expected<JITEvaluatedSymbol> LLJIT::lookupLinkerMangled(JITDylib &JD,
|
|
SymbolStringPtr Name) {
|
|
return ES->lookup(
|
|
makeJITDylibSearchOrder(&JD, JITDylibLookupFlags::MatchAllSymbols), Name);
|
|
}
|
|
|
|
Expected<std::unique_ptr<ObjectLayer>>
|
|
LLJIT::createObjectLinkingLayer(LLJITBuilderState &S, ExecutionSession &ES) {
|
|
|
|
// If the config state provided an ObjectLinkingLayer factory then use it.
|
|
if (S.CreateObjectLinkingLayer)
|
|
return S.CreateObjectLinkingLayer(ES, S.JTMB->getTargetTriple());
|
|
|
|
// Otherwise default to creating an RTDyldObjectLinkingLayer that constructs
|
|
// a new SectionMemoryManager for each object.
|
|
auto GetMemMgr = []() { return std::make_unique<SectionMemoryManager>(); };
|
|
auto Layer =
|
|
std::make_unique<RTDyldObjectLinkingLayer>(ES, std::move(GetMemMgr));
|
|
|
|
if (S.JTMB->getTargetTriple().isOSBinFormatCOFF()) {
|
|
Layer->setOverrideObjectFlagsWithResponsibilityFlags(true);
|
|
Layer->setAutoClaimResponsibilityForObjectSymbols(true);
|
|
}
|
|
|
|
// FIXME: Explicit conversion to std::unique_ptr<ObjectLayer> added to silence
|
|
// errors from some GCC / libstdc++ bots. Remove this conversion (i.e.
|
|
// just return ObjLinkingLayer) once those bots are upgraded.
|
|
return std::unique_ptr<ObjectLayer>(std::move(Layer));
|
|
}
|
|
|
|
Expected<std::unique_ptr<IRCompileLayer::IRCompiler>>
|
|
LLJIT::createCompileFunction(LLJITBuilderState &S,
|
|
JITTargetMachineBuilder JTMB) {
|
|
|
|
/// If there is a custom compile function creator set then use it.
|
|
if (S.CreateCompileFunction)
|
|
return S.CreateCompileFunction(std::move(JTMB));
|
|
|
|
// Otherwise default to creating a SimpleCompiler, or ConcurrentIRCompiler,
|
|
// depending on the number of threads requested.
|
|
if (S.NumCompileThreads > 0)
|
|
return std::make_unique<ConcurrentIRCompiler>(std::move(JTMB));
|
|
|
|
auto TM = JTMB.createTargetMachine();
|
|
if (!TM)
|
|
return TM.takeError();
|
|
|
|
return std::make_unique<TMOwningSimpleCompiler>(std::move(*TM));
|
|
}
|
|
|
|
LLJIT::LLJIT(LLJITBuilderState &S, Error &Err)
|
|
: ES(S.ES ? std::move(S.ES) : std::make_unique<ExecutionSession>()), Main(),
|
|
DL(""), TT(S.JTMB->getTargetTriple()) {
|
|
|
|
ErrorAsOutParameter _(&Err);
|
|
|
|
if (auto MainOrErr = this->ES->createJITDylib("main"))
|
|
Main = &*MainOrErr;
|
|
else {
|
|
Err = MainOrErr.takeError();
|
|
return;
|
|
}
|
|
|
|
if (S.DL)
|
|
DL = std::move(*S.DL);
|
|
else if (auto DLOrErr = S.JTMB->getDefaultDataLayoutForTarget())
|
|
DL = std::move(*DLOrErr);
|
|
else {
|
|
Err = DLOrErr.takeError();
|
|
return;
|
|
}
|
|
|
|
auto ObjLayer = createObjectLinkingLayer(S, *ES);
|
|
if (!ObjLayer) {
|
|
Err = ObjLayer.takeError();
|
|
return;
|
|
}
|
|
ObjLinkingLayer = std::move(*ObjLayer);
|
|
ObjTransformLayer =
|
|
std::make_unique<ObjectTransformLayer>(*ES, *ObjLinkingLayer);
|
|
|
|
{
|
|
auto CompileFunction = createCompileFunction(S, std::move(*S.JTMB));
|
|
if (!CompileFunction) {
|
|
Err = CompileFunction.takeError();
|
|
return;
|
|
}
|
|
CompileLayer = std::make_unique<IRCompileLayer>(
|
|
*ES, *ObjTransformLayer, std::move(*CompileFunction));
|
|
TransformLayer = std::make_unique<IRTransformLayer>(*ES, *CompileLayer);
|
|
InitHelperTransformLayer =
|
|
std::make_unique<IRTransformLayer>(*ES, *TransformLayer);
|
|
}
|
|
|
|
if (S.NumCompileThreads > 0) {
|
|
InitHelperTransformLayer->setCloneToNewContextOnEmit(true);
|
|
CompileThreads =
|
|
std::make_unique<ThreadPool>(hardware_concurrency(S.NumCompileThreads));
|
|
ES->setDispatchTask([this](std::unique_ptr<Task> T) {
|
|
// FIXME: We should be able to use move-capture here, but ThreadPool's
|
|
// AsyncTaskTys are std::functions rather than unique_functions
|
|
// (because MSVC's std::packaged_tasks don't support move-only types).
|
|
// Fix this when all the above gets sorted out.
|
|
CompileThreads->async([UnownedT = T.release()]() mutable {
|
|
std::unique_ptr<Task> T(UnownedT);
|
|
T->run();
|
|
});
|
|
});
|
|
}
|
|
|
|
if (S.SetUpPlatform)
|
|
Err = S.SetUpPlatform(*this);
|
|
else
|
|
setUpGenericLLVMIRPlatform(*this);
|
|
}
|
|
|
|
std::string LLJIT::mangle(StringRef UnmangledName) const {
|
|
std::string MangledName;
|
|
{
|
|
raw_string_ostream MangledNameStream(MangledName);
|
|
Mangler::getNameWithPrefix(MangledNameStream, UnmangledName, DL);
|
|
}
|
|
return MangledName;
|
|
}
|
|
|
|
Error LLJIT::applyDataLayout(Module &M) {
|
|
if (M.getDataLayout().isDefault())
|
|
M.setDataLayout(DL);
|
|
|
|
if (M.getDataLayout() != DL)
|
|
return make_error<StringError>(
|
|
"Added modules have incompatible data layouts: " +
|
|
M.getDataLayout().getStringRepresentation() + " (module) vs " +
|
|
DL.getStringRepresentation() + " (jit)",
|
|
inconvertibleErrorCode());
|
|
|
|
return Error::success();
|
|
}
|
|
|
|
void setUpGenericLLVMIRPlatform(LLJIT &J) {
|
|
LLVM_DEBUG(
|
|
{ dbgs() << "Setting up GenericLLVMIRPlatform support for LLJIT\n"; });
|
|
J.setPlatformSupport(std::make_unique<GenericLLVMIRPlatformSupport>(J));
|
|
}
|
|
|
|
Error setUpInactivePlatform(LLJIT &J) {
|
|
LLVM_DEBUG(
|
|
{ dbgs() << "Explicitly deactivated platform support for LLJIT\n"; });
|
|
J.setPlatformSupport(std::make_unique<InactivePlatformSupport>());
|
|
return Error::success();
|
|
}
|
|
|
|
Error LLLazyJITBuilderState::prepareForConstruction() {
|
|
if (auto Err = LLJITBuilderState::prepareForConstruction())
|
|
return Err;
|
|
TT = JTMB->getTargetTriple();
|
|
return Error::success();
|
|
}
|
|
|
|
Error LLLazyJIT::addLazyIRModule(JITDylib &JD, ThreadSafeModule TSM) {
|
|
assert(TSM && "Can not add null module");
|
|
|
|
if (auto Err = TSM.withModuleDo(
|
|
[&](Module &M) -> Error { return applyDataLayout(M); }))
|
|
return Err;
|
|
|
|
return CODLayer->add(JD, std::move(TSM));
|
|
}
|
|
|
|
LLLazyJIT::LLLazyJIT(LLLazyJITBuilderState &S, Error &Err) : LLJIT(S, Err) {
|
|
|
|
// If LLJIT construction failed then bail out.
|
|
if (Err)
|
|
return;
|
|
|
|
ErrorAsOutParameter _(&Err);
|
|
|
|
/// Take/Create the lazy-compile callthrough manager.
|
|
if (S.LCTMgr)
|
|
LCTMgr = std::move(S.LCTMgr);
|
|
else {
|
|
if (auto LCTMgrOrErr = createLocalLazyCallThroughManager(
|
|
S.TT, *ES, S.LazyCompileFailureAddr))
|
|
LCTMgr = std::move(*LCTMgrOrErr);
|
|
else {
|
|
Err = LCTMgrOrErr.takeError();
|
|
return;
|
|
}
|
|
}
|
|
|
|
// Take/Create the indirect stubs manager builder.
|
|
auto ISMBuilder = std::move(S.ISMBuilder);
|
|
|
|
// If none was provided, try to build one.
|
|
if (!ISMBuilder)
|
|
ISMBuilder = createLocalIndirectStubsManagerBuilder(S.TT);
|
|
|
|
// No luck. Bail out.
|
|
if (!ISMBuilder) {
|
|
Err = make_error<StringError>("Could not construct "
|
|
"IndirectStubsManagerBuilder for target " +
|
|
S.TT.str(),
|
|
inconvertibleErrorCode());
|
|
return;
|
|
}
|
|
|
|
// Create the COD layer.
|
|
CODLayer = std::make_unique<CompileOnDemandLayer>(
|
|
*ES, *InitHelperTransformLayer, *LCTMgr, std::move(ISMBuilder));
|
|
|
|
if (S.NumCompileThreads > 0)
|
|
CODLayer->setCloneToNewContextOnEmit(true);
|
|
}
|
|
|
|
} // End namespace orc.
|
|
} // End namespace llvm.
|