Home
last modified time | relevance | path

Searched refs:SendResult (Results 1 – 12 of 12) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DELFNixPlatform.cpp323 SendInitializerSequenceFn SendResult, JITDylib &JD, in getInitializersBuildSequencePhase() argument
341 SendResult(std::move(FullInitSeq)); in getInitializersBuildSequencePhase()
345 SendInitializerSequenceFn SendResult, JITDylib &JD) { in getInitializersLookupPhase() argument
349 SendResult(DFSLinkOrder.takeError()); in getInitializersLookupPhase()
374 [this, SendResult = std::move(SendResult), &JD](Error Err) mutable { in getInitializersLookupPhase()
376 SendResult(std::move(Err)); in getInitializersLookupPhase()
399 getInitializersLookupPhase(std::move(SendResult), *JD); in rt_getInitializers()
425 SendResult(ELFNixJITDylibDeinitializerSequence()); in rt_getDeinitializers()
456 : SendResult(std::move(SendResult)) {} in rt_lookupSymbol()
462 SendResult(Result.takeError()); in rt_lookupSymbol()
[all …]
H A DCOFFPlatform.cpp547 SendResult(DIM); in pushInitializersLoop()
553 [this, SendResult = std::move(SendResult), &JD, in pushInitializersLoop()
556 SendResult(std::move(Err)); in pushInitializersLoop()
590 SendResult(JDDepMap.takeError()); in rt_pushInitializers()
594 pushInitializersLoop(std::move(SendResult), JD, *JDDepMap); in rt_pushInitializers()
597 void COFFPlatform::rt_lookupSymbol(SendSymbolAddressFn SendResult, in rt_lookupSymbol() argument
621 RtLookupNotifyComplete(SendSymbolAddressFn &&SendResult) in rt_lookupSymbol() argument
622 : SendResult(std::move(SendResult)) {} in rt_lookupSymbol()
626 SendResult(Result->begin()->second.getAddress()); in rt_lookupSymbol()
628 SendResult(Result.takeError()); in rt_lookupSymbol()
[all …]
H A DMachOPlatform.cpp574 PushInitializersSendResultFn SendResult, JITDylibSP JD) { in pushInitializersLoop() argument
646 SendResult(DIM); in pushInitializersLoop()
652 [this, SendResult = std::move(SendResult), JD](Error Err) mutable { in pushInitializersLoop()
654 SendResult(std::move(Err)); in pushInitializersLoop()
656 pushInitializersLoop(std::move(SendResult), JD); in pushInitializersLoop()
680 SendResult(make_error<StringError>("No JITDylib with header addr " + in rt_pushInitializers()
686 pushInitializersLoop(std::move(SendResult), JD); in rt_pushInitializers()
690 PushSymbolsInSendResultFn SendResult, ExecutorAddr Handle, in rt_pushSymbols() argument
713 SendResult(make_error<StringError>("No JITDylib associated with handle " + in rt_pushSymbols()
728 [SendResult = std::move(SendResult)](Expected<SymbolMap> Result) mutable { in rt_pushSymbols()
[all …]
H A DSimpleRemoteEPC.cpp372 IncomingWFRHandler SendResult; in handleResult() local
385 SendResult = std::move(I->second); in handleResult()
392 SendResult(std::move(WFR)); in handleResult()
H A DExecutorProcessControl.cpp139 IncomingWFRHandler SendResult, in callWrapperAsync() argument
144 SendResult(WrapperFn(ArgBuffer.data(), ArgBuffer.size())); in callWrapperAsync()
H A DCore.cpp2261 void ExecutionSession::runJITDispatchHandler(SendResultFunction SendResult, in runJITDispatchHandler() argument
2274 (*F)(std::move(SendResult), ArgBuffer.data(), ArgBuffer.size()); in runJITDispatchHandler()
2276 SendResult(shared::WrapperFunctionResult::createOutOfBandError( in runJITDispatchHandler()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DELFNixPlatform.h199 void getInitializersBuildSequencePhase(SendInitializerSequenceFn SendResult,
203 void getInitializersLookupPhase(SendInitializerSequenceFn SendResult,
206 void rt_getInitializers(SendInitializerSequenceFn SendResult,
209 void rt_getDeinitializers(SendDeinitializerSequenceFn SendResult,
212 void rt_lookupSymbol(SendSymbolAddressFn SendResult, ExecutorAddr Handle,
H A DExecutorProcessControl.h362 SendResultT &&SendResult, const ArgTs &...Args) { in callSPSWrapperAsync() argument
365 (auto &&SendResult, const char *ArgData, size_t ArgSize) mutable { in callSPSWrapperAsync()
367 std::move(SendResult), in callSPSWrapperAsync()
370 std::forward<SendResultT>(SendResult), Args...); in callSPSWrapperAsync()
376 void callSPSWrapperAsync(ExecutorAddr WrapperFnAddr, SendResultT &&SendResult, in callSPSWrapperAsync() argument
379 std::forward<SendResultT>(SendResult), in callSPSWrapperAsync()
H A DCOFFPlatform.h178 void pushInitializersLoop(PushInitializersSendResultFn SendResult,
181 void rt_pushInitializers(PushInitializersSendResultFn SendResult,
184 void rt_lookupSymbol(SendSymbolAddressFn SendResult, ExecutorAddr Handle,
H A DMachOPlatform.h301 void pushInitializersLoop(PushInitializersSendResultFn SendResult,
305 void rt_pushInitializers(PushInitializersSendResultFn SendResult,
312 void rt_pushSymbols(PushSymbolsInSendResultFn SendResult, ExecutorAddr Handle,
H A DCore.h1404 SendResultFunction SendResult,
1634 void callSPSWrapperAsync(ExecutorAddr WrapperFnAddr, SendResultT &&SendResult, in callSPSWrapperAsync() argument
1637 WrapperFnAddr, std::forward<SendResultT>(SendResult), Args...); in callSPSWrapperAsync()
1662 SendResultFunction SendResult, in wrapAsyncWithSPS()
1665 std::move(SendResult)); in wrapAsyncWithSPS()
1700 void runJITDispatchHandler(SendResultFunction SendResult,
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DWrapperFunctionUtils.h290 auto SendResult = in applyAsync()
296 callAsync(std::forward<HandlerT>(H), std::move(SendResult), std::move(Args), in applyAsync()
528 HandlerT &&Handler, SendResultT &&SendResult) { in handleAsync() argument
532 std::forward<SendResultT>(SendResult), ArgData, ArgSize); in handleAsync()