Home
last modified time | relevance | path

Searched refs:LCTM (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/llvm/unittests/ExecutionEngine/Orc/
DLazyCallThroughAndReexportsTest.cpp30 auto LCTM = createLocalLazyCallThroughManager(JTMB->getTargetTriple(), ES, 0); in TEST_F() local
31 if (!LCTM) { in TEST_F()
32 consumeError(LCTM.takeError()); in TEST_F()
59 auto CallThroughTrampoline = cantFail((*LCTM)->getCallThroughTrampoline( in TEST_F()
/external/llvm-project/llvm/lib/ExecutionEngine/Orc/
DTPCIndirectionUtils.cpp326 assert(!LCTM && in createLazyCallThroughManager()
328 LCTM = std::make_unique<LazyCallThroughManager>(ES, ErrorHandlerAddr, in createLazyCallThroughManager()
330 return *LCTM; in createLazyCallThroughManager()
405 auto &LCTM = *jitTargetAddressToPointer<LazyCallThroughManager *>(LCTMAddr); in reentry() local
408 LCTM.resolveTrampolineLandingAddress( in reentry()
415 auto &LCTM = TPCIU.getLazyCallThroughManager(); in setUpInProcessLCTMReentryViaTPCIU() local
418 pointerToJITTargetAddress(&LCTM)) in setUpInProcessLCTMReentryViaTPCIU()
/external/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
DTPCIndirectionUtils.h124 assert(LCTM && "createLazyCallThroughManager must be called first"); in getLazyCallThroughManager()
125 return *LCTM; in getLazyCallThroughManager()
154 std::unique_ptr<LazyCallThroughManager> LCTM; variable
/external/llvm-project/llvm/examples/OrcV2Examples/LLJITWithLazyReexports/
DLLJITWithLazyReexports.cpp124 auto LCTM = ExitOnErr(createLocalLazyCallThroughManager( in main() local
142 lazyReexports(*LCTM, *ISM, J->getMainJITDylib(), std::move(ReExports)))); in main()