Home
last modified time | relevance | path

Searched refs:LazyCallThroughManager (Results 1 – 9 of 9) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
DLazyReexports.h38 class LazyCallThroughManager {
43 LazyCallThroughManager(ExecutionSession &ES,
56 virtual ~LazyCallThroughManager() = default;
87 class LocalLazyCallThroughManager : public LazyCallThroughManager {
93 : LazyCallThroughManager(ES, ErrorHandlerAddr, nullptr) {} in LocalLazyCallThroughManager()
132 Expected<std::unique_ptr<LazyCallThroughManager>>
143 LazyReexportsMaterializationUnit(LazyCallThroughManager &LCTManager,
156 LazyCallThroughManager &LCTManager;
167 lazyReexports(LazyCallThroughManager &LCTManager,
DEPCIndirectionUtils.h118 LazyCallThroughManager &
123 LazyCallThroughManager &getLazyCallThroughManager() { in getLazyCallThroughManager()
154 std::unique_ptr<LazyCallThroughManager> LCTM;
DCompileOnDemandLayer.h85 LazyCallThroughManager &LCTMgr,
128 LazyCallThroughManager &LCTMgr;
DLLJIT.h247 std::unique_ptr<LazyCallThroughManager> LCTMgr;
405 std::unique_ptr<LazyCallThroughManager> LCTMgr;
428 setLazyCallthroughManager(std::unique_ptr<LazyCallThroughManager> LCTMgr) { in setLazyCallthroughManager()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
DLazyReexports.cpp19 LazyCallThroughManager::LazyCallThroughManager( in LazyCallThroughManager() function in llvm::orc::LazyCallThroughManager
23 Expected<JITTargetAddress> LazyCallThroughManager::getCallThroughTrampoline( in getCallThroughTrampoline()
39 JITTargetAddress LazyCallThroughManager::reportCallThroughError(Error Err) { in reportCallThroughError()
44 Expected<LazyCallThroughManager::ReexportsEntry>
45 LazyCallThroughManager::findReexport(JITTargetAddress TrampolineAddr) { in findReexport()
55 Error LazyCallThroughManager::notifyResolved(JITTargetAddress TrampolineAddr, in notifyResolved()
70 void LazyCallThroughManager::resolveTrampolineLandingAddress( in resolveTrampolineLandingAddress()
105 Expected<std::unique_ptr<LazyCallThroughManager>>
145 LazyCallThroughManager &LCTManager, IndirectStubsManager &ISManager, in LazyReexportsMaterializationUnit()
DEPCIndirectionUtils.cpp324 LazyCallThroughManager &EPCIndirectionUtils::createLazyCallThroughManager( in createLazyCallThroughManager()
328 LCTM = std::make_unique<LazyCallThroughManager>(ES, ErrorHandlerAddr, in createLazyCallThroughManager()
405 auto &LCTM = *jitTargetAddressToPointer<LazyCallThroughManager *>(LCTMAddr); in reentry()
DCompileOnDemandLayer.cpp117 ExecutionSession &ES, IRLayer &BaseLayer, LazyCallThroughManager &LCTMgr, in CompileOnDemandLayer()
DOrcV2CBindings.cpp103 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(LazyCallThroughManager,
962 std::unique_ptr<LazyCallThroughManager> TmpLCM(unwrap(LCM)); in LLVMOrcDisposeLazyCallThroughManager()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/lli/
Dlli.cpp881 std::make_unique<orc::LazyCallThroughManager>(*ES, 0, nullptr)); in runOrcJIT()