1 //===--------- LLJIT.cpp - An ORC-based JIT for compiling LLVM IR ---------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "llvm/ExecutionEngine/Orc/LLJIT.h"
11 #include "llvm/Analysis/TargetLibraryInfo.h"
12 #include "llvm/Config/llvm-config.h" // for LLVM_ENABLE_THREADS
13 #include "llvm/ExecutionEngine/Orc/COFFPlatform.h"
14 #include "llvm/ExecutionEngine/Orc/EHFrameRegistrationPlugin.h"
15 #include "llvm/ExecutionEngine/Orc/ELFNixPlatform.h"
16 #include "llvm/ExecutionEngine/Orc/EPCDynamicLibrarySearchGenerator.h"
17 #include "llvm/ExecutionEngine/Orc/EPCEHFrameRegistrar.h"
18 #include "llvm/ExecutionEngine/Orc/ExecutorProcessControl.h"
19 #include "llvm/ExecutionEngine/Orc/MachOPlatform.h"
20 #include "llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h"
21 #include "llvm/ExecutionEngine/Orc/ObjectTransformLayer.h"
22 #include "llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h"
23 #include "llvm/ExecutionEngine/Orc/TargetProcess/RegisterEHFrames.h"
24 #include "llvm/ExecutionEngine/SectionMemoryManager.h"
25 #include "llvm/IR/GlobalVariable.h"
26 #include "llvm/IR/IRBuilder.h"
27 #include "llvm/IR/Mangler.h"
28 #include "llvm/IR/Module.h"
29 #include "llvm/Support/DynamicLibrary.h"
31 #define DEBUG_TYPE "orc"
34 using namespace llvm::orc
;
38 /// Adds helper function decls and wrapper functions that call the helper with
39 /// some additional prefix arguments.
41 /// E.g. For wrapper "foo" with type i8(i8, i64), helper "bar", and prefix
42 /// args i32 4 and i16 12345, this function will add:
44 /// declare i8 @bar(i32, i16, i8, i64)
46 /// define i8 @foo(i8, i64) {
48 /// %2 = call i8 @bar(i32 4, i16 12345, i8 %0, i64 %1)
52 Function
*addHelperAndWrapper(Module
&M
, StringRef WrapperName
,
53 FunctionType
*WrapperFnType
,
54 GlobalValue::VisibilityTypes WrapperVisibility
,
56 ArrayRef
<Value
*> HelperPrefixArgs
) {
57 std::vector
<Type
*> HelperArgTypes
;
58 for (auto *Arg
: HelperPrefixArgs
)
59 HelperArgTypes
.push_back(Arg
->getType());
60 for (auto *T
: WrapperFnType
->params())
61 HelperArgTypes
.push_back(T
);
63 FunctionType::get(WrapperFnType
->getReturnType(), HelperArgTypes
, false);
64 auto *HelperFn
= Function::Create(HelperFnType
, GlobalValue::ExternalLinkage
,
67 auto *WrapperFn
= Function::Create(
68 WrapperFnType
, GlobalValue::ExternalLinkage
, WrapperName
, M
);
69 WrapperFn
->setVisibility(WrapperVisibility
);
71 auto *EntryBlock
= BasicBlock::Create(M
.getContext(), "entry", WrapperFn
);
72 IRBuilder
<> IB(EntryBlock
);
74 std::vector
<Value
*> HelperArgs
;
75 for (auto *Arg
: HelperPrefixArgs
)
76 HelperArgs
.push_back(Arg
);
77 for (auto &Arg
: WrapperFn
->args())
78 HelperArgs
.push_back(&Arg
);
79 auto *HelperResult
= IB
.CreateCall(HelperFn
, HelperArgs
);
80 if (HelperFn
->getReturnType()->isVoidTy())
83 IB
.CreateRet(HelperResult
);
88 class GenericLLVMIRPlatformSupport
;
90 /// orc::Platform component of Generic LLVM IR Platform support.
91 /// Just forwards calls to the GenericLLVMIRPlatformSupport class below.
92 class GenericLLVMIRPlatform
: public Platform
{
94 GenericLLVMIRPlatform(GenericLLVMIRPlatformSupport
&S
) : S(S
) {}
95 Error
setupJITDylib(JITDylib
&JD
) override
;
96 Error
teardownJITDylib(JITDylib
&JD
) override
;
97 Error
notifyAdding(ResourceTracker
&RT
,
98 const MaterializationUnit
&MU
) override
;
99 Error
notifyRemoving(ResourceTracker
&RT
) override
{
100 // Noop -- Nothing to do (yet).
101 return Error::success();
105 GenericLLVMIRPlatformSupport
&S
;
108 /// This transform parses llvm.global_ctors to produce a single initialization
109 /// function for the module, records the function, then deletes
110 /// llvm.global_ctors.
111 class GlobalCtorDtorScraper
{
113 GlobalCtorDtorScraper(GenericLLVMIRPlatformSupport
&PS
,
114 StringRef InitFunctionPrefix
,
115 StringRef DeInitFunctionPrefix
)
116 : PS(PS
), InitFunctionPrefix(InitFunctionPrefix
),
117 DeInitFunctionPrefix(DeInitFunctionPrefix
) {}
118 Expected
<ThreadSafeModule
> operator()(ThreadSafeModule TSM
,
119 MaterializationResponsibility
&R
);
122 GenericLLVMIRPlatformSupport
&PS
;
123 StringRef InitFunctionPrefix
;
124 StringRef DeInitFunctionPrefix
;
127 /// Generic IR Platform Support
129 /// Scrapes llvm.global_ctors and llvm.global_dtors and replaces them with
130 /// specially named 'init' and 'deinit'. Injects definitions / interposes for
131 /// some runtime API, including __cxa_atexit, dlopen, and dlclose.
132 class GenericLLVMIRPlatformSupport
: public LLJIT::PlatformSupport
{
134 GenericLLVMIRPlatformSupport(LLJIT
&J
, JITDylib
&PlatformJD
)
135 : J(J
), InitFunctionPrefix(J
.mangle("__orc_init_func.")),
136 DeInitFunctionPrefix(J
.mangle("__orc_deinit_func.")) {
138 getExecutionSession().setPlatform(
139 std::make_unique
<GenericLLVMIRPlatform
>(*this));
141 setInitTransform(J
, GlobalCtorDtorScraper(*this, InitFunctionPrefix
,
142 DeInitFunctionPrefix
));
144 SymbolMap StdInterposes
;
146 StdInterposes
[J
.mangleAndIntern("__lljit.platform_support_instance")] = {
147 ExecutorAddr::fromPtr(this), JITSymbolFlags::Exported
};
148 StdInterposes
[J
.mangleAndIntern("__lljit.cxa_atexit_helper")] = {
149 ExecutorAddr::fromPtr(registerCxaAtExitHelper
), JITSymbolFlags()};
151 cantFail(PlatformJD
.define(absoluteSymbols(std::move(StdInterposes
))));
152 cantFail(setupJITDylib(PlatformJD
));
153 cantFail(J
.addIRModule(PlatformJD
, createPlatformRuntimeModule()));
156 ExecutionSession
&getExecutionSession() { return J
.getExecutionSession(); }
158 /// Adds a module that defines the __dso_handle global.
159 Error
setupJITDylib(JITDylib
&JD
) {
161 // Add per-jitdylib standard interposes.
162 SymbolMap PerJDInterposes
;
163 PerJDInterposes
[J
.mangleAndIntern("__lljit.run_atexits_helper")] = {
164 ExecutorAddr::fromPtr(runAtExitsHelper
), JITSymbolFlags()};
165 PerJDInterposes
[J
.mangleAndIntern("__lljit.atexit_helper")] = {
166 ExecutorAddr::fromPtr(registerAtExitHelper
), JITSymbolFlags()};
167 cantFail(JD
.define(absoluteSymbols(std::move(PerJDInterposes
))));
169 auto Ctx
= std::make_unique
<LLVMContext
>();
170 auto M
= std::make_unique
<Module
>("__standard_lib", *Ctx
);
171 M
->setDataLayout(J
.getDataLayout());
173 auto *Int64Ty
= Type::getInt64Ty(*Ctx
);
174 auto *DSOHandle
= new GlobalVariable(
175 *M
, Int64Ty
, true, GlobalValue::ExternalLinkage
,
176 ConstantInt::get(Int64Ty
, reinterpret_cast<uintptr_t>(&JD
)),
178 DSOHandle
->setVisibility(GlobalValue::DefaultVisibility
);
179 DSOHandle
->setInitializer(
180 ConstantInt::get(Int64Ty
, ExecutorAddr::fromPtr(&JD
).getValue()));
182 auto *GenericIRPlatformSupportTy
=
183 StructType::create(*Ctx
, "lljit.GenericLLJITIRPlatformSupport");
185 auto *PlatformInstanceDecl
= new GlobalVariable(
186 *M
, GenericIRPlatformSupportTy
, true, GlobalValue::ExternalLinkage
,
187 nullptr, "__lljit.platform_support_instance");
189 auto *VoidTy
= Type::getVoidTy(*Ctx
);
191 *M
, "__lljit_run_atexits", FunctionType::get(VoidTy
, {}, false),
192 GlobalValue::HiddenVisibility
, "__lljit.run_atexits_helper",
193 {PlatformInstanceDecl
, DSOHandle
});
195 auto *IntTy
= Type::getIntNTy(*Ctx
, sizeof(int) * CHAR_BIT
);
196 auto *AtExitCallbackTy
= FunctionType::get(VoidTy
, {}, false);
197 auto *AtExitCallbackPtrTy
= PointerType::getUnqual(AtExitCallbackTy
);
198 auto *AtExit
= addHelperAndWrapper(
199 *M
, "atexit", FunctionType::get(IntTy
, {AtExitCallbackPtrTy
}, false),
200 GlobalValue::HiddenVisibility
, "__lljit.atexit_helper",
201 {PlatformInstanceDecl
, DSOHandle
});
202 Attribute::AttrKind AtExitExtAttr
=
203 TargetLibraryInfo::getExtAttrForI32Return(J
.getTargetTriple());
204 if (AtExitExtAttr
!= Attribute::None
)
205 AtExit
->addRetAttr(AtExitExtAttr
);
207 return J
.addIRModule(JD
, ThreadSafeModule(std::move(M
), std::move(Ctx
)));
210 Error
notifyAdding(ResourceTracker
&RT
, const MaterializationUnit
&MU
) {
211 auto &JD
= RT
.getJITDylib();
212 if (auto &InitSym
= MU
.getInitializerSymbol())
213 InitSymbols
[&JD
].add(InitSym
, SymbolLookupFlags::WeaklyReferencedSymbol
);
215 // If there's no identified init symbol attached, but there is a symbol
216 // with the GenericIRPlatform::InitFunctionPrefix, then treat that as
217 // an init function. Add the symbol to both the InitSymbols map (which
218 // will trigger a lookup to materialize the module) and the InitFunctions
219 // map (which holds the names of the symbols to execute).
220 for (auto &KV
: MU
.getSymbols())
221 if ((*KV
.first
).starts_with(InitFunctionPrefix
)) {
222 InitSymbols
[&JD
].add(KV
.first
,
223 SymbolLookupFlags::WeaklyReferencedSymbol
);
224 InitFunctions
[&JD
].add(KV
.first
);
225 } else if ((*KV
.first
).starts_with(DeInitFunctionPrefix
)) {
226 DeInitFunctions
[&JD
].add(KV
.first
);
229 return Error::success();
232 Error
initialize(JITDylib
&JD
) override
{
234 dbgs() << "GenericLLVMIRPlatformSupport getting initializers to run\n";
236 if (auto Initializers
= getInitializers(JD
)) {
238 { dbgs() << "GenericLLVMIRPlatformSupport running initializers\n"; });
239 for (auto InitFnAddr
: *Initializers
) {
241 dbgs() << " Running init " << formatv("{0:x16}", InitFnAddr
)
244 auto *InitFn
= InitFnAddr
.toPtr
<void (*)()>();
248 return Initializers
.takeError();
249 return Error::success();
252 Error
deinitialize(JITDylib
&JD
) override
{
254 dbgs() << "GenericLLVMIRPlatformSupport getting deinitializers to run\n";
256 if (auto Deinitializers
= getDeinitializers(JD
)) {
258 dbgs() << "GenericLLVMIRPlatformSupport running deinitializers\n";
260 for (auto DeinitFnAddr
: *Deinitializers
) {
262 dbgs() << " Running deinit " << formatv("{0:x16}", DeinitFnAddr
)
265 auto *DeinitFn
= DeinitFnAddr
.toPtr
<void (*)()>();
269 return Deinitializers
.takeError();
271 return Error::success();
274 void registerInitFunc(JITDylib
&JD
, SymbolStringPtr InitName
) {
275 getExecutionSession().runSessionLocked([&]() {
276 InitFunctions
[&JD
].add(InitName
);
280 void registerDeInitFunc(JITDylib
&JD
, SymbolStringPtr DeInitName
) {
281 getExecutionSession().runSessionLocked(
282 [&]() { DeInitFunctions
[&JD
].add(DeInitName
); });
286 Expected
<std::vector
<ExecutorAddr
>> getInitializers(JITDylib
&JD
) {
287 if (auto Err
= issueInitLookups(JD
))
288 return std::move(Err
);
290 DenseMap
<JITDylib
*, SymbolLookupSet
> LookupSymbols
;
291 std::vector
<JITDylibSP
> DFSLinkOrder
;
293 if (auto Err
= getExecutionSession().runSessionLocked([&]() -> Error
{
294 if (auto DFSLinkOrderOrErr
= JD
.getDFSLinkOrder())
295 DFSLinkOrder
= std::move(*DFSLinkOrderOrErr
);
297 return DFSLinkOrderOrErr
.takeError();
299 for (auto &NextJD
: DFSLinkOrder
) {
300 auto IFItr
= InitFunctions
.find(NextJD
.get());
301 if (IFItr
!= InitFunctions
.end()) {
302 LookupSymbols
[NextJD
.get()] = std::move(IFItr
->second
);
303 InitFunctions
.erase(IFItr
);
306 return Error::success();
308 return std::move(Err
);
311 dbgs() << "JITDylib init order is [ ";
312 for (auto &JD
: llvm::reverse(DFSLinkOrder
))
313 dbgs() << "\"" << JD
->getName() << "\" ";
315 dbgs() << "Looking up init functions:\n";
316 for (auto &KV
: LookupSymbols
)
317 dbgs() << " \"" << KV
.first
->getName() << "\": " << KV
.second
<< "\n";
320 auto &ES
= getExecutionSession();
321 auto LookupResult
= Platform::lookupInitSymbols(ES
, LookupSymbols
);
324 return LookupResult
.takeError();
326 std::vector
<ExecutorAddr
> Initializers
;
327 while (!DFSLinkOrder
.empty()) {
328 auto &NextJD
= *DFSLinkOrder
.back();
329 DFSLinkOrder
.pop_back();
330 auto InitsItr
= LookupResult
->find(&NextJD
);
331 if (InitsItr
== LookupResult
->end())
333 for (auto &KV
: InitsItr
->second
)
334 Initializers
.push_back(KV
.second
.getAddress());
340 Expected
<std::vector
<ExecutorAddr
>> getDeinitializers(JITDylib
&JD
) {
341 auto &ES
= getExecutionSession();
343 auto LLJITRunAtExits
= J
.mangleAndIntern("__lljit_run_atexits");
345 DenseMap
<JITDylib
*, SymbolLookupSet
> LookupSymbols
;
346 std::vector
<JITDylibSP
> DFSLinkOrder
;
348 if (auto Err
= ES
.runSessionLocked([&]() -> Error
{
349 if (auto DFSLinkOrderOrErr
= JD
.getDFSLinkOrder())
350 DFSLinkOrder
= std::move(*DFSLinkOrderOrErr
);
352 return DFSLinkOrderOrErr
.takeError();
354 for (auto &NextJD
: DFSLinkOrder
) {
355 auto &JDLookupSymbols
= LookupSymbols
[NextJD
.get()];
356 auto DIFItr
= DeInitFunctions
.find(NextJD
.get());
357 if (DIFItr
!= DeInitFunctions
.end()) {
358 LookupSymbols
[NextJD
.get()] = std::move(DIFItr
->second
);
359 DeInitFunctions
.erase(DIFItr
);
361 JDLookupSymbols
.add(LLJITRunAtExits
,
362 SymbolLookupFlags::WeaklyReferencedSymbol
);
364 return Error::success();
366 return std::move(Err
);
369 dbgs() << "JITDylib deinit order is [ ";
370 for (auto &JD
: DFSLinkOrder
)
371 dbgs() << "\"" << JD
->getName() << "\" ";
373 dbgs() << "Looking up deinit functions:\n";
374 for (auto &KV
: LookupSymbols
)
375 dbgs() << " \"" << KV
.first
->getName() << "\": " << KV
.second
<< "\n";
378 auto LookupResult
= Platform::lookupInitSymbols(ES
, LookupSymbols
);
381 return LookupResult
.takeError();
383 std::vector
<ExecutorAddr
> DeInitializers
;
384 for (auto &NextJD
: DFSLinkOrder
) {
385 auto DeInitsItr
= LookupResult
->find(NextJD
.get());
386 assert(DeInitsItr
!= LookupResult
->end() &&
387 "Every JD should have at least __lljit_run_atexits");
389 auto RunAtExitsItr
= DeInitsItr
->second
.find(LLJITRunAtExits
);
390 if (RunAtExitsItr
!= DeInitsItr
->second
.end())
391 DeInitializers
.push_back(RunAtExitsItr
->second
.getAddress());
393 for (auto &KV
: DeInitsItr
->second
)
394 if (KV
.first
!= LLJITRunAtExits
)
395 DeInitializers
.push_back(KV
.second
.getAddress());
398 return DeInitializers
;
401 /// Issue lookups for all init symbols required to initialize JD (and any
402 /// JITDylibs that it depends on).
403 Error
issueInitLookups(JITDylib
&JD
) {
404 DenseMap
<JITDylib
*, SymbolLookupSet
> RequiredInitSymbols
;
405 std::vector
<JITDylibSP
> DFSLinkOrder
;
407 if (auto Err
= getExecutionSession().runSessionLocked([&]() -> Error
{
408 if (auto DFSLinkOrderOrErr
= JD
.getDFSLinkOrder())
409 DFSLinkOrder
= std::move(*DFSLinkOrderOrErr
);
411 return DFSLinkOrderOrErr
.takeError();
413 for (auto &NextJD
: DFSLinkOrder
) {
414 auto ISItr
= InitSymbols
.find(NextJD
.get());
415 if (ISItr
!= InitSymbols
.end()) {
416 RequiredInitSymbols
[NextJD
.get()] = std::move(ISItr
->second
);
417 InitSymbols
.erase(ISItr
);
420 return Error::success();
424 return Platform::lookupInitSymbols(getExecutionSession(),
429 static void registerCxaAtExitHelper(void *Self
, void (*F
)(void *), void *Ctx
,
432 dbgs() << "Registering cxa atexit function " << (void *)F
<< " for JD "
433 << (*static_cast<JITDylib
**>(DSOHandle
))->getName() << "\n";
435 static_cast<GenericLLVMIRPlatformSupport
*>(Self
)->AtExitMgr
.registerAtExit(
439 static void registerAtExitHelper(void *Self
, void *DSOHandle
, void (*F
)()) {
441 dbgs() << "Registering atexit function " << (void *)F
<< " for JD "
442 << (*static_cast<JITDylib
**>(DSOHandle
))->getName() << "\n";
444 static_cast<GenericLLVMIRPlatformSupport
*>(Self
)->AtExitMgr
.registerAtExit(
445 reinterpret_cast<void (*)(void *)>(F
), nullptr, DSOHandle
);
448 static void runAtExitsHelper(void *Self
, void *DSOHandle
) {
450 dbgs() << "Running atexit functions for JD "
451 << (*static_cast<JITDylib
**>(DSOHandle
))->getName() << "\n";
453 static_cast<GenericLLVMIRPlatformSupport
*>(Self
)->AtExitMgr
.runAtExits(
457 // Constructs an LLVM IR module containing platform runtime globals,
458 // functions, and interposes.
459 ThreadSafeModule
createPlatformRuntimeModule() {
460 auto Ctx
= std::make_unique
<LLVMContext
>();
461 auto M
= std::make_unique
<Module
>("__standard_lib", *Ctx
);
462 M
->setDataLayout(J
.getDataLayout());
464 auto *GenericIRPlatformSupportTy
=
465 StructType::create(*Ctx
, "lljit.GenericLLJITIRPlatformSupport");
467 auto *PlatformInstanceDecl
= new GlobalVariable(
468 *M
, GenericIRPlatformSupportTy
, true, GlobalValue::ExternalLinkage
,
469 nullptr, "__lljit.platform_support_instance");
471 auto *Int8Ty
= Type::getInt8Ty(*Ctx
);
472 auto *IntTy
= Type::getIntNTy(*Ctx
, sizeof(int) * CHAR_BIT
);
473 auto *VoidTy
= Type::getVoidTy(*Ctx
);
474 auto *BytePtrTy
= PointerType::getUnqual(Int8Ty
);
475 auto *CxaAtExitCallbackTy
= FunctionType::get(VoidTy
, {BytePtrTy
}, false);
476 auto *CxaAtExitCallbackPtrTy
= PointerType::getUnqual(CxaAtExitCallbackTy
);
478 auto *CxaAtExit
= addHelperAndWrapper(
480 FunctionType::get(IntTy
, {CxaAtExitCallbackPtrTy
, BytePtrTy
, BytePtrTy
},
482 GlobalValue::DefaultVisibility
, "__lljit.cxa_atexit_helper",
483 {PlatformInstanceDecl
});
484 Attribute::AttrKind CxaAtExitExtAttr
=
485 TargetLibraryInfo::getExtAttrForI32Return(J
.getTargetTriple());
486 if (CxaAtExitExtAttr
!= Attribute::None
)
487 CxaAtExit
->addRetAttr(CxaAtExitExtAttr
);
489 return ThreadSafeModule(std::move(M
), std::move(Ctx
));
493 std::string InitFunctionPrefix
;
494 std::string DeInitFunctionPrefix
;
495 DenseMap
<JITDylib
*, SymbolLookupSet
> InitSymbols
;
496 DenseMap
<JITDylib
*, SymbolLookupSet
> InitFunctions
;
497 DenseMap
<JITDylib
*, SymbolLookupSet
> DeInitFunctions
;
498 ItaniumCXAAtExitSupport AtExitMgr
;
501 Error
GenericLLVMIRPlatform::setupJITDylib(JITDylib
&JD
) {
502 return S
.setupJITDylib(JD
);
505 Error
GenericLLVMIRPlatform::teardownJITDylib(JITDylib
&JD
) {
506 return Error::success();
509 Error
GenericLLVMIRPlatform::notifyAdding(ResourceTracker
&RT
,
510 const MaterializationUnit
&MU
) {
511 return S
.notifyAdding(RT
, MU
);
514 Expected
<ThreadSafeModule
>
515 GlobalCtorDtorScraper::operator()(ThreadSafeModule TSM
,
516 MaterializationResponsibility
&R
) {
517 auto Err
= TSM
.withModuleDo([&](Module
&M
) -> Error
{
518 auto &Ctx
= M
.getContext();
519 auto *GlobalCtors
= M
.getNamedGlobal("llvm.global_ctors");
520 auto *GlobalDtors
= M
.getNamedGlobal("llvm.global_dtors");
522 auto RegisterCOrDtors
= [&](GlobalVariable
*GlobalCOrDtors
,
523 bool isCtor
) -> Error
{
524 // If there's no llvm.global_c/dtor or it's just a decl then skip.
525 if (!GlobalCOrDtors
|| GlobalCOrDtors
->isDeclaration())
526 return Error::success();
527 std::string InitOrDeInitFunctionName
;
529 raw_string_ostream(InitOrDeInitFunctionName
)
530 << InitFunctionPrefix
<< M
.getModuleIdentifier();
532 raw_string_ostream(InitOrDeInitFunctionName
)
533 << DeInitFunctionPrefix
<< M
.getModuleIdentifier();
535 MangleAndInterner
Mangle(PS
.getExecutionSession(), M
.getDataLayout());
536 auto InternedInitOrDeInitName
= Mangle(InitOrDeInitFunctionName
);
537 if (auto Err
= R
.defineMaterializing(
538 {{InternedInitOrDeInitName
, JITSymbolFlags::Callable
}}))
541 auto *InitOrDeInitFunc
= Function::Create(
542 FunctionType::get(Type::getVoidTy(Ctx
), {}, false),
543 GlobalValue::ExternalLinkage
, InitOrDeInitFunctionName
, &M
);
544 InitOrDeInitFunc
->setVisibility(GlobalValue::HiddenVisibility
);
545 std::vector
<std::pair
<Function
*, unsigned>> InitsOrDeInits
;
546 auto COrDtors
= isCtor
? getConstructors(M
) : getDestructors(M
);
548 for (auto E
: COrDtors
)
549 InitsOrDeInits
.push_back(std::make_pair(E
.Func
, E
.Priority
));
550 llvm::stable_sort(InitsOrDeInits
, llvm::less_second());
552 auto *InitOrDeInitFuncEntryBlock
=
553 BasicBlock::Create(Ctx
, "entry", InitOrDeInitFunc
);
554 IRBuilder
<> IB(InitOrDeInitFuncEntryBlock
);
555 for (auto &KV
: InitsOrDeInits
)
556 IB
.CreateCall(KV
.first
);
560 PS
.registerInitFunc(R
.getTargetJITDylib(), InternedInitOrDeInitName
);
562 PS
.registerDeInitFunc(R
.getTargetJITDylib(), InternedInitOrDeInitName
);
564 GlobalCOrDtors
->eraseFromParent();
565 return Error::success();
568 if (auto Err
= RegisterCOrDtors(GlobalCtors
, true))
570 if (auto Err
= RegisterCOrDtors(GlobalDtors
, false))
573 return Error::success();
577 return std::move(Err
);
579 return std::move(TSM
);
582 /// Inactive Platform Support
584 /// Explicitly disables platform support. JITDylibs are not scanned for special
585 /// init/deinit symbols. No runtime API interposes are injected.
586 class InactivePlatformSupport
: public LLJIT::PlatformSupport
{
588 InactivePlatformSupport() = default;
590 Error
initialize(JITDylib
&JD
) override
{
591 LLVM_DEBUG(dbgs() << "InactivePlatformSupport: no initializers running for "
592 << JD
.getName() << "\n");
593 return Error::success();
596 Error
deinitialize(JITDylib
&JD
) override
{
598 dbgs() << "InactivePlatformSupport: no deinitializers running for "
599 << JD
.getName() << "\n");
600 return Error::success();
604 } // end anonymous namespace
609 Error
ORCPlatformSupport::initialize(orc::JITDylib
&JD
) {
610 using llvm::orc::shared::SPSExecutorAddr
;
611 using llvm::orc::shared::SPSString
;
612 using SPSDLOpenSig
= SPSExecutorAddr(SPSString
, int32_t);
613 using SPSDLUpdateSig
= int32_t(SPSExecutorAddr
);
614 enum dlopen_mode
: int32_t {
615 ORC_RT_RTLD_LAZY
= 0x1,
616 ORC_RT_RTLD_NOW
= 0x2,
617 ORC_RT_RTLD_LOCAL
= 0x4,
618 ORC_RT_RTLD_GLOBAL
= 0x8
621 auto &ES
= J
.getExecutionSession();
622 auto MainSearchOrder
= J
.getMainJITDylib().withLinkOrderDo(
623 [](const JITDylibSearchOrder
&SO
) { return SO
; });
624 StringRef WrapperToCall
= "__orc_rt_jit_dlopen_wrapper";
625 bool dlupdate
= false;
626 const Triple
&TT
= ES
.getTargetTriple();
627 if (TT
.isOSBinFormatMachO() || TT
.isOSBinFormatELF()) {
628 if (InitializedDylib
.contains(&JD
)) {
629 WrapperToCall
= "__orc_rt_jit_dlupdate_wrapper";
632 InitializedDylib
.insert(&JD
);
635 if (auto WrapperAddr
=
636 ES
.lookup(MainSearchOrder
, J
.mangleAndIntern(WrapperToCall
))) {
639 auto E
= ES
.callSPSWrapper
<SPSDLUpdateSig
>(WrapperAddr
->getAddress(),
640 result
, DSOHandles
[&JD
]);
642 return make_error
<StringError
>("dlupdate failed",
643 inconvertibleErrorCode());
646 return ES
.callSPSWrapper
<SPSDLOpenSig
>(WrapperAddr
->getAddress(),
647 DSOHandles
[&JD
], JD
.getName(),
648 int32_t(ORC_RT_RTLD_LAZY
));
650 return WrapperAddr
.takeError();
653 Error
ORCPlatformSupport::deinitialize(orc::JITDylib
&JD
) {
654 using llvm::orc::shared::SPSExecutorAddr
;
655 using SPSDLCloseSig
= int32_t(SPSExecutorAddr
);
657 auto &ES
= J
.getExecutionSession();
658 auto MainSearchOrder
= J
.getMainJITDylib().withLinkOrderDo(
659 [](const JITDylibSearchOrder
&SO
) { return SO
; });
661 if (auto WrapperAddr
= ES
.lookup(
662 MainSearchOrder
, J
.mangleAndIntern("__orc_rt_jit_dlclose_wrapper"))) {
664 auto E
= J
.getExecutionSession().callSPSWrapper
<SPSDLCloseSig
>(
665 WrapperAddr
->getAddress(), result
, DSOHandles
[&JD
]);
669 return make_error
<StringError
>("dlclose failed",
670 inconvertibleErrorCode());
671 DSOHandles
.erase(&JD
);
672 InitializedDylib
.erase(&JD
);
674 return WrapperAddr
.takeError();
675 return Error::success();
678 void LLJIT::PlatformSupport::setInitTransform(
679 LLJIT
&J
, IRTransformLayer::TransformFunction T
) {
680 J
.InitHelperTransformLayer
->setTransform(std::move(T
));
683 LLJIT::PlatformSupport::~PlatformSupport() = default;
685 Error
LLJITBuilderState::prepareForConstruction() {
687 LLVM_DEBUG(dbgs() << "Preparing to create LLJIT instance...\n");
691 dbgs() << " No explicitly set JITTargetMachineBuilder. "
692 "Detecting host...\n";
694 if (auto JTMBOrErr
= JITTargetMachineBuilder::detectHost())
695 JTMB
= std::move(*JTMBOrErr
);
697 return JTMBOrErr
.takeError();
700 if ((ES
|| EPC
) && NumCompileThreads
)
701 return make_error
<StringError
>(
702 "NumCompileThreads cannot be used with a custom ExecutionSession or "
703 "ExecutorProcessControl",
704 inconvertibleErrorCode());
706 #if !LLVM_ENABLE_THREADS
707 if (NumCompileThreads
)
708 return make_error
<StringError
>(
709 "LLJIT num-compile-threads is " + Twine(NumCompileThreads
) +
710 " but LLVM was compiled with LLVM_ENABLE_THREADS=Off",
711 inconvertibleErrorCode());
712 #endif // !LLVM_ENABLE_THREADS
714 // Only used in debug builds.
715 [[maybe_unused
]] bool ConcurrentCompilationSettingDefaulted
=
716 !SupportConcurrentCompilation
;
718 if (!SupportConcurrentCompilation
) {
719 #if LLVM_ENABLE_THREADS
720 SupportConcurrentCompilation
= NumCompileThreads
|| ES
|| EPC
;
722 SupportConcurrentCompilation
= false;
723 #endif // LLVM_ENABLE_THREADS
725 #if !LLVM_ENABLE_THREADS
726 if (*SupportConcurrentCompilation
)
727 return make_error
<StringError
>(
728 "LLJIT concurrent compilation support requested, but LLVM was built "
729 "with LLVM_ENABLE_THREADS=Off",
730 inconvertibleErrorCode());
731 #endif // !LLVM_ENABLE_THREADS
735 dbgs() << " JITTargetMachineBuilder is "
736 << JITTargetMachineBuilderPrinter(*JTMB
, " ")
737 << " Pre-constructed ExecutionSession: " << (ES
? "Yes" : "No")
741 dbgs() << DL
->getStringRepresentation() << "\n";
743 dbgs() << "None (will be created by JITTargetMachineBuilder)\n";
745 dbgs() << " Custom object-linking-layer creator: "
746 << (CreateObjectLinkingLayer
? "Yes" : "No") << "\n"
747 << " Custom compile-function creator: "
748 << (CreateCompileFunction
? "Yes" : "No") << "\n"
749 << " Custom platform-setup function: "
750 << (SetUpPlatform
? "Yes" : "No") << "\n"
751 << " Support concurrent compilation: "
752 << (*SupportConcurrentCompilation
? "Yes" : "No");
753 if (ConcurrentCompilationSettingDefaulted
)
754 dbgs() << " (defaulted based on ES / EPC / NumCompileThreads)\n";
757 dbgs() << " Number of compile threads: " << NumCompileThreads
<< "\n";
760 // Create DL if not specified.
762 if (auto DLOrErr
= JTMB
->getDefaultDataLayoutForTarget())
763 DL
= std::move(*DLOrErr
);
765 return DLOrErr
.takeError();
768 // If neither ES nor EPC has been set then create an EPC instance.
771 dbgs() << "ExecutorProcessControl not specified, "
772 "Creating SelfExecutorProcessControl instance\n";
775 std::unique_ptr
<TaskDispatcher
> D
= nullptr;
776 #if LLVM_ENABLE_THREADS
777 if (*SupportConcurrentCompilation
) {
778 std::optional
<size_t> NumThreads
= std ::nullopt
;
779 if (NumCompileThreads
)
780 NumThreads
= NumCompileThreads
;
781 D
= std::make_unique
<DynamicThreadPoolTaskDispatcher
>(NumThreads
);
783 D
= std::make_unique
<InPlaceTaskDispatcher
>();
784 #endif // LLVM_ENABLE_THREADS
786 SelfExecutorProcessControl::Create(nullptr, std::move(D
), nullptr))
787 EPC
= std::move(*EPCOrErr
);
789 return EPCOrErr
.takeError();
792 dbgs() << "Using explicitly specified ExecutorProcessControl instance "
793 << EPC
.get() << "\n";
797 dbgs() << "Using explicitly specified ExecutionSession instance "
802 // If the client didn't configure any linker options then auto-configure the
804 if (!CreateObjectLinkingLayer
) {
805 auto &TT
= JTMB
->getTargetTriple();
806 bool UseJITLink
= false;
807 switch (TT
.getArch()) {
808 case Triple::riscv64
:
809 case Triple::loongarch64
:
812 case Triple::aarch64
:
813 UseJITLink
= !TT
.isOSBinFormatCOFF();
818 case Triple::thumbeb
:
819 UseJITLink
= TT
.isOSBinFormatELF();
822 UseJITLink
= !TT
.isOSBinFormatCOFF();
825 UseJITLink
= TT
.isPPC64ELFv2ABI();
827 case Triple::ppc64le
:
828 UseJITLink
= TT
.isOSBinFormatELF();
834 if (!JTMB
->getCodeModel())
835 JTMB
->setCodeModel(CodeModel::Small
);
836 JTMB
->setRelocationModel(Reloc::PIC_
);
837 CreateObjectLinkingLayer
=
838 [](ExecutionSession
&ES
,
839 const Triple
&) -> Expected
<std::unique_ptr
<ObjectLayer
>> {
840 auto ObjLinkingLayer
= std::make_unique
<ObjectLinkingLayer
>(ES
);
841 if (auto EHFrameRegistrar
= EPCEHFrameRegistrar::Create(ES
))
842 ObjLinkingLayer
->addPlugin(
843 std::make_unique
<EHFrameRegistrationPlugin
>(
844 ES
, std::move(*EHFrameRegistrar
)));
846 return EHFrameRegistrar
.takeError();
847 return std::move(ObjLinkingLayer
);
852 // If we need a process JITDylib but no setup function has been given then
853 // create a default one.
854 if (!SetupProcessSymbolsJITDylib
&& LinkProcessSymbolsByDefault
) {
855 LLVM_DEBUG(dbgs() << "Creating default Process JD setup function\n");
856 SetupProcessSymbolsJITDylib
= [](LLJIT
&J
) -> Expected
<JITDylibSP
> {
858 J
.getExecutionSession().createBareJITDylib("<Process Symbols>");
859 auto G
= EPCDynamicLibrarySearchGenerator::GetForTargetProcess(
860 J
.getExecutionSession());
862 return G
.takeError();
863 JD
.addGenerator(std::move(*G
));
868 return Error::success();
872 if (auto Err
= ES
->endSession())
873 ES
->reportError(std::move(Err
));
876 JITDylibSP
LLJIT::getProcessSymbolsJITDylib() { return ProcessSymbols
; }
878 JITDylibSP
LLJIT::getPlatformJITDylib() { return Platform
; }
880 Expected
<JITDylib
&> LLJIT::createJITDylib(std::string Name
) {
881 auto JD
= ES
->createJITDylib(std::move(Name
));
883 return JD
.takeError();
885 JD
->addToLinkOrder(DefaultLinks
);
889 Expected
<JITDylib
&> LLJIT::loadPlatformDynamicLibrary(const char *Path
) {
890 auto G
= EPCDynamicLibrarySearchGenerator::Load(*ES
, Path
);
892 return G
.takeError();
894 if (auto *ExistingJD
= ES
->getJITDylibByName(Path
))
897 auto &JD
= ES
->createBareJITDylib(Path
);
898 JD
.addGenerator(std::move(*G
));
902 Error
LLJIT::linkStaticLibraryInto(JITDylib
&JD
,
903 std::unique_ptr
<MemoryBuffer
> LibBuffer
) {
904 auto G
= StaticLibraryDefinitionGenerator::Create(*ObjLinkingLayer
,
905 std::move(LibBuffer
));
907 return G
.takeError();
909 JD
.addGenerator(std::move(*G
));
911 return Error::success();
914 Error
LLJIT::linkStaticLibraryInto(JITDylib
&JD
, const char *Path
) {
915 auto G
= StaticLibraryDefinitionGenerator::Load(*ObjLinkingLayer
, Path
);
917 return G
.takeError();
919 JD
.addGenerator(std::move(*G
));
921 return Error::success();
924 Error
LLJIT::addIRModule(ResourceTrackerSP RT
, ThreadSafeModule TSM
) {
925 assert(TSM
&& "Can not add null module");
928 TSM
.withModuleDo([&](Module
&M
) { return applyDataLayout(M
); }))
931 return InitHelperTransformLayer
->add(std::move(RT
), std::move(TSM
));
934 Error
LLJIT::addIRModule(JITDylib
&JD
, ThreadSafeModule TSM
) {
935 return addIRModule(JD
.getDefaultResourceTracker(), std::move(TSM
));
938 Error
LLJIT::addObjectFile(ResourceTrackerSP RT
,
939 std::unique_ptr
<MemoryBuffer
> Obj
) {
940 assert(Obj
&& "Can not add null object");
942 return ObjTransformLayer
->add(std::move(RT
), std::move(Obj
));
945 Error
LLJIT::addObjectFile(JITDylib
&JD
, std::unique_ptr
<MemoryBuffer
> Obj
) {
946 return addObjectFile(JD
.getDefaultResourceTracker(), std::move(Obj
));
949 Expected
<ExecutorAddr
> LLJIT::lookupLinkerMangled(JITDylib
&JD
,
950 SymbolStringPtr Name
) {
951 if (auto Sym
= ES
->lookup(
952 makeJITDylibSearchOrder(&JD
, JITDylibLookupFlags::MatchAllSymbols
),
954 return Sym
->getAddress();
956 return Sym
.takeError();
959 Expected
<std::unique_ptr
<ObjectLayer
>>
960 LLJIT::createObjectLinkingLayer(LLJITBuilderState
&S
, ExecutionSession
&ES
) {
962 // If the config state provided an ObjectLinkingLayer factory then use it.
963 if (S
.CreateObjectLinkingLayer
)
964 return S
.CreateObjectLinkingLayer(ES
, S
.JTMB
->getTargetTriple());
966 // Otherwise default to creating an RTDyldObjectLinkingLayer that constructs
967 // a new SectionMemoryManager for each object.
968 auto GetMemMgr
= []() { return std::make_unique
<SectionMemoryManager
>(); };
970 std::make_unique
<RTDyldObjectLinkingLayer
>(ES
, std::move(GetMemMgr
));
972 if (S
.JTMB
->getTargetTriple().isOSBinFormatCOFF()) {
973 Layer
->setOverrideObjectFlagsWithResponsibilityFlags(true);
974 Layer
->setAutoClaimResponsibilityForObjectSymbols(true);
977 if (S
.JTMB
->getTargetTriple().isOSBinFormatELF() &&
978 (S
.JTMB
->getTargetTriple().getArch() == Triple::ArchType::ppc64
||
979 S
.JTMB
->getTargetTriple().getArch() == Triple::ArchType::ppc64le
))
980 Layer
->setAutoClaimResponsibilityForObjectSymbols(true);
982 // FIXME: Explicit conversion to std::unique_ptr<ObjectLayer> added to silence
983 // errors from some GCC / libstdc++ bots. Remove this conversion (i.e.
984 // just return ObjLinkingLayer) once those bots are upgraded.
985 return std::unique_ptr
<ObjectLayer
>(std::move(Layer
));
988 Expected
<std::unique_ptr
<IRCompileLayer::IRCompiler
>>
989 LLJIT::createCompileFunction(LLJITBuilderState
&S
,
990 JITTargetMachineBuilder JTMB
) {
992 /// If there is a custom compile function creator set then use it.
993 if (S
.CreateCompileFunction
)
994 return S
.CreateCompileFunction(std::move(JTMB
));
996 // If using a custom EPC then use a ConcurrentIRCompiler by default.
997 if (*S
.SupportConcurrentCompilation
)
998 return std::make_unique
<ConcurrentIRCompiler
>(std::move(JTMB
));
1000 auto TM
= JTMB
.createTargetMachine();
1002 return TM
.takeError();
1004 return std::make_unique
<TMOwningSimpleCompiler
>(std::move(*TM
));
1007 LLJIT::LLJIT(LLJITBuilderState
&S
, Error
&Err
)
1008 : DL(std::move(*S
.DL
)), TT(S
.JTMB
->getTargetTriple()) {
1010 ErrorAsOutParameter
_(Err
);
1012 assert(!(S
.EPC
&& S
.ES
) && "EPC and ES should not both be set");
1015 ES
= std::make_unique
<ExecutionSession
>(std::move(S
.EPC
));
1017 ES
= std::move(S
.ES
);
1019 if (auto EPC
= SelfExecutorProcessControl::Create()) {
1020 ES
= std::make_unique
<ExecutionSession
>(std::move(*EPC
));
1022 Err
= EPC
.takeError();
1027 auto ObjLayer
= createObjectLinkingLayer(S
, *ES
);
1029 Err
= ObjLayer
.takeError();
1032 ObjLinkingLayer
= std::move(*ObjLayer
);
1034 std::make_unique
<ObjectTransformLayer
>(*ES
, *ObjLinkingLayer
);
1037 auto CompileFunction
= createCompileFunction(S
, std::move(*S
.JTMB
));
1038 if (!CompileFunction
) {
1039 Err
= CompileFunction
.takeError();
1042 CompileLayer
= std::make_unique
<IRCompileLayer
>(
1043 *ES
, *ObjTransformLayer
, std::move(*CompileFunction
));
1044 TransformLayer
= std::make_unique
<IRTransformLayer
>(*ES
, *CompileLayer
);
1045 InitHelperTransformLayer
=
1046 std::make_unique
<IRTransformLayer
>(*ES
, *TransformLayer
);
1049 if (*S
.SupportConcurrentCompilation
)
1050 InitHelperTransformLayer
->setCloneToNewContextOnEmit(true);
1052 if (S
.SetupProcessSymbolsJITDylib
) {
1053 if (auto ProcSymsJD
= S
.SetupProcessSymbolsJITDylib(*this)) {
1054 ProcessSymbols
= ProcSymsJD
->get();
1056 Err
= ProcSymsJD
.takeError();
1061 if (S
.PrePlatformSetup
) {
1062 if (auto Err2
= S
.PrePlatformSetup(*this)) {
1063 Err
= std::move(Err2
);
1068 if (!S
.SetUpPlatform
)
1069 S
.SetUpPlatform
= setUpGenericLLVMIRPlatform
;
1071 if (auto PlatformJDOrErr
= S
.SetUpPlatform(*this)) {
1072 Platform
= PlatformJDOrErr
->get();
1074 DefaultLinks
.push_back(
1075 {Platform
, JITDylibLookupFlags::MatchExportedSymbolsOnly
});
1077 Err
= PlatformJDOrErr
.takeError();
1081 if (S
.LinkProcessSymbolsByDefault
)
1082 DefaultLinks
.push_back(
1083 {ProcessSymbols
, JITDylibLookupFlags::MatchExportedSymbolsOnly
});
1085 if (auto MainOrErr
= createJITDylib("main"))
1088 Err
= MainOrErr
.takeError();
1093 std::string
LLJIT::mangle(StringRef UnmangledName
) const {
1094 std::string MangledName
;
1096 raw_string_ostream
MangledNameStream(MangledName
);
1097 Mangler::getNameWithPrefix(MangledNameStream
, UnmangledName
, DL
);
1102 Error
LLJIT::applyDataLayout(Module
&M
) {
1103 if (M
.getDataLayout().isDefault())
1104 M
.setDataLayout(DL
);
1106 if (M
.getDataLayout() != DL
)
1107 return make_error
<StringError
>(
1108 "Added modules have incompatible data layouts: " +
1109 M
.getDataLayout().getStringRepresentation() + " (module) vs " +
1110 DL
.getStringRepresentation() + " (jit)",
1111 inconvertibleErrorCode());
1113 return Error::success();
1116 Error
setUpOrcPlatformManually(LLJIT
&J
) {
1117 LLVM_DEBUG({ dbgs() << "Setting up orc platform support for LLJIT\n"; });
1118 J
.setPlatformSupport(std::make_unique
<ORCPlatformSupport
>(J
));
1119 return Error::success();
1122 class LoadAndLinkDynLibrary
{
1124 LoadAndLinkDynLibrary(LLJIT
&J
) : J(J
) {}
1125 Error
operator()(JITDylib
&JD
, StringRef DLLName
) {
1126 if (!DLLName
.ends_with_insensitive(".dll"))
1127 return make_error
<StringError
>("DLLName not ending with .dll",
1128 inconvertibleErrorCode());
1129 auto DLLNameStr
= DLLName
.str(); // Guarantees null-termination.
1130 auto DLLJD
= J
.loadPlatformDynamicLibrary(DLLNameStr
.c_str());
1132 return DLLJD
.takeError();
1133 JD
.addToLinkOrder(*DLLJD
);
1134 return Error::success();
1141 Expected
<JITDylibSP
> ExecutorNativePlatform::operator()(LLJIT
&J
) {
1142 auto ProcessSymbolsJD
= J
.getProcessSymbolsJITDylib();
1143 if (!ProcessSymbolsJD
)
1144 return make_error
<StringError
>(
1145 "Native platforms require a process symbols JITDylib",
1146 inconvertibleErrorCode());
1148 const Triple
&TT
= J
.getTargetTriple();
1149 ObjectLinkingLayer
*ObjLinkingLayer
=
1150 dyn_cast
<ObjectLinkingLayer
>(&J
.getObjLinkingLayer());
1152 if (!ObjLinkingLayer
)
1153 return make_error
<StringError
>(
1154 "ExecutorNativePlatform requires ObjectLinkingLayer",
1155 inconvertibleErrorCode());
1157 std::unique_ptr
<MemoryBuffer
> RuntimeArchiveBuffer
;
1158 if (OrcRuntime
.index() == 0) {
1159 auto A
= errorOrToExpected(MemoryBuffer::getFile(std::get
<0>(OrcRuntime
)));
1161 return A
.takeError();
1162 RuntimeArchiveBuffer
= std::move(*A
);
1164 RuntimeArchiveBuffer
= std::move(std::get
<1>(OrcRuntime
));
1166 auto &ES
= J
.getExecutionSession();
1167 auto &PlatformJD
= ES
.createBareJITDylib("<Platform>");
1168 PlatformJD
.addToLinkOrder(*ProcessSymbolsJD
);
1170 J
.setPlatformSupport(std::make_unique
<ORCPlatformSupport
>(J
));
1172 switch (TT
.getObjectFormat()) {
1173 case Triple::COFF
: {
1174 const char *VCRuntimePath
= nullptr;
1175 bool StaticVCRuntime
= false;
1177 VCRuntimePath
= VCRuntime
->first
.c_str();
1178 StaticVCRuntime
= VCRuntime
->second
;
1180 if (auto P
= COFFPlatform::Create(
1181 *ObjLinkingLayer
, PlatformJD
, std::move(RuntimeArchiveBuffer
),
1182 LoadAndLinkDynLibrary(J
), StaticVCRuntime
, VCRuntimePath
))
1183 J
.getExecutionSession().setPlatform(std::move(*P
));
1185 return P
.takeError();
1189 auto G
= StaticLibraryDefinitionGenerator::Create(
1190 *ObjLinkingLayer
, std::move(RuntimeArchiveBuffer
));
1192 return G
.takeError();
1195 ELFNixPlatform::Create(*ObjLinkingLayer
, PlatformJD
, std::move(*G
)))
1196 J
.getExecutionSession().setPlatform(std::move(*P
));
1198 return P
.takeError();
1201 case Triple::MachO
: {
1202 auto G
= StaticLibraryDefinitionGenerator::Create(
1203 *ObjLinkingLayer
, std::move(RuntimeArchiveBuffer
));
1205 return G
.takeError();
1208 MachOPlatform::Create(*ObjLinkingLayer
, PlatformJD
, std::move(*G
)))
1209 ES
.setPlatform(std::move(*P
));
1211 return P
.takeError();
1215 return make_error
<StringError
>("Unsupported object format in triple " +
1217 inconvertibleErrorCode());
1223 Expected
<JITDylibSP
> setUpGenericLLVMIRPlatform(LLJIT
&J
) {
1225 { dbgs() << "Setting up GenericLLVMIRPlatform support for LLJIT\n"; });
1226 auto ProcessSymbolsJD
= J
.getProcessSymbolsJITDylib();
1227 if (!ProcessSymbolsJD
)
1228 return make_error
<StringError
>(
1229 "Native platforms require a process symbols JITDylib",
1230 inconvertibleErrorCode());
1232 auto &PlatformJD
= J
.getExecutionSession().createBareJITDylib("<Platform>");
1233 PlatformJD
.addToLinkOrder(*ProcessSymbolsJD
);
1235 J
.setPlatformSupport(
1236 std::make_unique
<GenericLLVMIRPlatformSupport
>(J
, PlatformJD
));
1241 Expected
<JITDylibSP
> setUpInactivePlatform(LLJIT
&J
) {
1243 { dbgs() << "Explicitly deactivated platform support for LLJIT\n"; });
1244 J
.setPlatformSupport(std::make_unique
<InactivePlatformSupport
>());
1248 Error
LLLazyJITBuilderState::prepareForConstruction() {
1249 if (auto Err
= LLJITBuilderState::prepareForConstruction())
1251 TT
= JTMB
->getTargetTriple();
1252 return Error::success();
1255 Error
LLLazyJIT::addLazyIRModule(JITDylib
&JD
, ThreadSafeModule TSM
) {
1256 assert(TSM
&& "Can not add null module");
1258 if (auto Err
= TSM
.withModuleDo(
1259 [&](Module
&M
) -> Error
{ return applyDataLayout(M
); }))
1262 return CODLayer
->add(JD
, std::move(TSM
));
1265 LLLazyJIT::LLLazyJIT(LLLazyJITBuilderState
&S
, Error
&Err
) : LLJIT(S
, Err
) {
1267 // If LLJIT construction failed then bail out.
1271 ErrorAsOutParameter
_(&Err
);
1273 /// Take/Create the lazy-compile callthrough manager.
1275 LCTMgr
= std::move(S
.LCTMgr
);
1277 if (auto LCTMgrOrErr
= createLocalLazyCallThroughManager(
1278 S
.TT
, *ES
, S
.LazyCompileFailureAddr
))
1279 LCTMgr
= std::move(*LCTMgrOrErr
);
1281 Err
= LCTMgrOrErr
.takeError();
1286 // Take/Create the indirect stubs manager builder.
1287 auto ISMBuilder
= std::move(S
.ISMBuilder
);
1289 // If none was provided, try to build one.
1291 ISMBuilder
= createLocalIndirectStubsManagerBuilder(S
.TT
);
1293 // No luck. Bail out.
1295 Err
= make_error
<StringError
>("Could not construct "
1296 "IndirectStubsManagerBuilder for target " +
1298 inconvertibleErrorCode());
1302 // Create the IP Layer.
1303 IPLayer
= std::make_unique
<IRPartitionLayer
>(*ES
, *InitHelperTransformLayer
);
1305 // Create the COD layer.
1306 CODLayer
= std::make_unique
<CompileOnDemandLayer
>(*ES
, *IPLayer
, *LCTMgr
,
1307 std::move(ISMBuilder
));
1309 if (*S
.SupportConcurrentCompilation
)
1310 CODLayer
->setCloneToNewContextOnEmit(true);
1313 // In-process LLJIT uses eh-frame section wrappers via EPC, so we need to force
1314 // them to be linked in.
1315 LLVM_ATTRIBUTE_USED
void linkComponents() {
1316 errs() << (void *)&llvm_orc_registerEHFrameSectionWrapper
1317 << (void *)&llvm_orc_deregisterEHFrameSectionWrapper
;
1320 } // End namespace orc.
1321 } // End namespace llvm.