Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
H A 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,
H A DTPCIndirectionUtils.h118 LazyCallThroughManager &
123 LazyCallThroughManager &getLazyCallThroughManager() { in getLazyCallThroughManager()
154 std::unique_ptr<LazyCallThroughManager> LCTM;
H A DCompileOnDemandLayer.h86 LazyCallThroughManager &LCTMgr,
129 LazyCallThroughManager &LCTMgr;
H A DLLJIT.h247 std::unique_ptr<LazyCallThroughManager> LCTMgr;
394 std::unique_ptr<LazyCallThroughManager> LCTMgr;
417 setLazyCallthroughManager(std::unique_ptr<LazyCallThroughManager> LCTMgr) { in setLazyCallthroughManager()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A 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()
H A DTPCIndirectionUtils.cpp324 LazyCallThroughManager &TPCIndirectionUtils::createLazyCallThroughManager( in createLazyCallThroughManager()
328 LCTM = std::make_unique<LazyCallThroughManager>(ES, ErrorHandlerAddr, in createLazyCallThroughManager()
405 auto &LCTM = *jitTargetAddressToPointer<LazyCallThroughManager *>(LCTMAddr); in reentry()
H A DCompileOnDemandLayer.cpp117 ExecutionSession &ES, IRLayer &BaseLayer, LazyCallThroughManager &LCTMgr, in CompileOnDemandLayer()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/SpeculativeJIT/
H A DSpeculativeJIT.cpp102 std::unique_ptr<LazyCallThroughManager> LCTMgr, in SpeculativeJIT()
140 std::unique_ptr<LazyCallThroughManager> LCTMgr;
/netbsd-src/external/apache2/llvm/dist/llvm/tools/lli/
H A Dlli.cpp882 std::make_unique<orc::LazyCallThroughManager>(*ES, 0, nullptr)); in runOrcJIT()