Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
DELFNixPlatform.cpp330 ExecutionSession::JITDispatchHandlerAssociationMap WFs; in associateRuntimeSupportFunctions() local
334 WFs[ES.intern("__orc_rt_elfnix_get_initializers_tag")] = in associateRuntimeSupportFunctions()
340 WFs[ES.intern("__orc_rt_elfnix_get_deinitializers_tag")] = in associateRuntimeSupportFunctions()
346 WFs[ES.intern("__orc_rt_elfnix_symbol_lookup_tag")] = in associateRuntimeSupportFunctions()
350 return ES.registerJITDispatchHandlers(PlatformJD, std::move(WFs)); in associateRuntimeSupportFunctions()
DCOFFPlatform.cpp632 ExecutionSession::JITDispatchHandlerAssociationMap WFs; in associateRuntimeSupportFunctions() local
636 WFs[ES.intern("__orc_rt_coff_symbol_lookup_tag")] = in associateRuntimeSupportFunctions()
641 WFs[ES.intern("__orc_rt_coff_push_initializers_tag")] = in associateRuntimeSupportFunctions()
645 return ES.registerJITDispatchHandlers(PlatformJD, std::move(WFs)); in associateRuntimeSupportFunctions()
DMachOPlatform.cpp533 ExecutionSession::JITDispatchHandlerAssociationMap WFs; in associateRuntimeSupportFunctions() local
537 WFs[ES.intern("___orc_rt_macho_push_initializers_tag")] = in associateRuntimeSupportFunctions()
543 WFs[ES.intern("___orc_rt_macho_symbol_lookup_tag")] = in associateRuntimeSupportFunctions()
547 return ES.registerJITDispatchHandlers(PlatformJD, std::move(WFs)); in associateRuntimeSupportFunctions()
DCore.cpp2186 JITDylib &JD, JITDispatchHandlerAssociationMap WFs) { in registerJITDispatchHandlers() argument
2190 WFs, SymbolLookupFlags::WeaklyReferencedSymbol)); in registerJITDispatchHandlers()
2203 auto I = WFs.find(KV.first); in registerJITDispatchHandlers()
2204 assert(I != WFs.end() && I->second && in registerJITDispatchHandlers()
/openbsd/src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/
DCore.h1667 JITDispatchHandlerAssociationMap WFs);