Home
last modified time | relevance | path

Searched refs:WFs (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DReOptimizeLayer.cpp30 ExecutionSession::JITDispatchHandlerAssociationMap WFs; in reigsterRuntimeFunctions() local
32 WFs[Mangle("__orc_rt_reoptimize_tag")] = in reigsterRuntimeFunctions()
35 return ES.registerJITDispatchHandlers(PlatformJD, std::move(WFs)); in reigsterRuntimeFunctions()
H A DCOFFPlatform.cpp634 ExecutionSession::JITDispatchHandlerAssociationMap WFs; in associateRuntimeSupportFunctions() local
638 WFs[ES.intern("__orc_rt_coff_symbol_lookup_tag")] = in associateRuntimeSupportFunctions()
643 WFs[ES.intern("__orc_rt_coff_push_initializers_tag")] = in associateRuntimeSupportFunctions()
647 return ES.registerJITDispatchHandlers(PlatformJD, std::move(WFs)); in associateRuntimeSupportFunctions()
H A DLazyReexports.cpp345 ExecutionSession::JITDispatchHandlerAssociationMap WFs; in LazyReexportsManager() local
347 WFs[ES.intern("__orc_rt_resolve_tag")] = in LazyReexportsManager()
351 Err = ES.registerJITDispatchHandlers(PlatformJD, std::move(WFs)); in LazyReexportsManager()
H A DELFNixPlatform.cpp441 ExecutionSession::JITDispatchHandlerAssociationMap WFs; in associateRuntimeSupportFunctions() local
445 WFs[ES.intern("__orc_rt_elfnix_push_initializers_tag")] = in associateRuntimeSupportFunctions()
451 WFs[ES.intern("__orc_rt_elfnix_symbol_lookup_tag")] = in associateRuntimeSupportFunctions()
455 return ES.registerJITDispatchHandlers(PlatformJD, std::move(WFs)); in associateRuntimeSupportFunctions()
H A DMachOPlatform.cpp607 ExecutionSession::JITDispatchHandlerAssociationMap WFs; in associateRuntimeSupportFunctions() local
611 WFs[ES.intern("___orc_rt_macho_push_initializers_tag")] = in associateRuntimeSupportFunctions()
617 WFs[ES.intern("___orc_rt_macho_push_symbols_tag")] = in associateRuntimeSupportFunctions()
621 return ES.registerJITDispatchHandlers(PlatformJD, std::move(WFs)); in associateRuntimeSupportFunctions()
H A DCore.cpp1899 JITDylib &JD, JITDispatchHandlerAssociationMap WFs) { in registerJITDispatchHandlers() argument
1903 WFs, SymbolLookupFlags::WeaklyReferencedSymbol)); in registerJITDispatchHandlers()
1923 auto I = WFs.find(TagName); in registerJITDispatchHandlers()
1924 assert(I != WFs.end() && I->second && in registerJITDispatchHandlers()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DCore.h1701 JITDylib &JD, JITDispatchHandlerAssociationMap WFs);