Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DELFNixPlatform.cpp354 SendInitializerSequenceFn SendResult, JITDylib &JD, in getInitializersBuildSequencePhase() argument
372 SendResult(std::move(FullInitSeq)); in getInitializersBuildSequencePhase()
376 SendInitializerSequenceFn SendResult, JITDylib &JD) { in getInitializersLookupPhase() argument
380 SendResult(DFSLinkOrder.takeError()); in getInitializersLookupPhase()
398 getInitializersBuildSequencePhase(std::move(SendResult), JD, in getInitializersLookupPhase()
405 [this, SendResult = std::move(SendResult), &JD](Error Err) mutable { in getInitializersLookupPhase()
407 SendResult(std::move(Err)); in getInitializersLookupPhase()
409 getInitializersLookupPhase(std::move(SendResult), JD); in getInitializersLookupPhase()
414 void ELFNixPlatform::rt_getInitializers(SendInitializerSequenceFn SendResult, in rt_getInitializers() argument
425 SendResult(make_error<StringError>("No JITDylib named " + JDName, in rt_getInitializers()
[all …]
H A DCOFFPlatform.cpp488 void COFFPlatform::pushInitializersLoop(PushInitializersSendResultFn SendResult, in pushInitializersLoop() argument
529 SendResult(DIM); in pushInitializersLoop()
535 [this, SendResult = std::move(SendResult), &JD, in pushInitializersLoop()
538 SendResult(std::move(Err)); in pushInitializersLoop()
540 pushInitializersLoop(std::move(SendResult), JD, JDDepMap); in pushInitializersLoop()
545 void COFFPlatform::rt_pushInitializers(PushInitializersSendResultFn SendResult, in rt_pushInitializers() argument
564 SendResult( in rt_pushInitializers()
573 SendResult(JDDepMap.takeError()); in rt_pushInitializers()
577 pushInitializersLoop(std::move(SendResult), JD, *JDDepMap); in rt_pushInitializers()
580 void COFFPlatform::rt_lookupSymbol(SendSymbolAddressFn SendResult, in rt_lookupSymbol() argument
[all …]
H A DMachOPlatform.cpp551 PushInitializersSendResultFn SendResult, JITDylibSP JD) { in pushInitializersLoop() argument
623 SendResult(DIM); in pushInitializersLoop()
629 [this, SendResult = std::move(SendResult), JD](Error Err) mutable { in pushInitializersLoop()
631 SendResult(std::move(Err)); in pushInitializersLoop()
633 pushInitializersLoop(std::move(SendResult), JD); in pushInitializersLoop()
638 void MachOPlatform::rt_pushInitializers(PushInitializersSendResultFn SendResult, in rt_pushInitializers() argument
657 SendResult( in rt_pushInitializers()
664 pushInitializersLoop(std::move(SendResult), JD); in rt_pushInitializers()
667 void MachOPlatform::rt_lookupSymbol(SendSymbolAddressFn SendResult, in rt_lookupSymbol() argument
688 SendResult(make_error<StringError>("No JITDylib associated with handle " + in rt_lookupSymbol()
[all …]
H A DExecutorProcessControl.cpp129 IncomingWFRHandler SendResult, in callWrapperAsync() argument
134 SendResult(WrapperFn(ArgBuffer.data(), ArgBuffer.size())); in callWrapperAsync()
H A DSimpleRemoteEPC.cpp368 IncomingWFRHandler SendResult; in handleResult() local
381 SendResult = std::move(I->second); in handleResult()
388 SendResult(std::move(WFR)); in handleResult()
H A DCore.cpp2217 SendResultFunction SendResult, JITTargetAddress HandlerFnTagAddr, in runJITDispatchHandler() argument
2229 (*F)(std::move(SendResult), ArgBuffer.data(), ArgBuffer.size()); in runJITDispatchHandler()
2231 SendResult(shared::WrapperFunctionResult::createOutOfBandError( in runJITDispatchHandler()
/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/
H A DELFNixPlatform.h196 void getInitializersBuildSequencePhase(SendInitializerSequenceFn SendResult,
200 void getInitializersLookupPhase(SendInitializerSequenceFn SendResult,
203 void rt_getInitializers(SendInitializerSequenceFn SendResult,
206 void rt_getDeinitializers(SendDeinitializerSequenceFn SendResult,
209 void rt_lookupSymbol(SendSymbolAddressFn SendResult, ExecutorAddr Handle,
H A DExecutorProcessControl.h324 SendResultT &&SendResult, const ArgTs &...Args) { in callSPSWrapperAsync() argument
327 (auto &&SendResult, const char *ArgData, size_t ArgSize) mutable { in callSPSWrapperAsync()
329 std::move(SendResult), in callSPSWrapperAsync()
332 std::forward<SendResultT>(SendResult), Args...); in callSPSWrapperAsync()
338 void callSPSWrapperAsync(ExecutorAddr WrapperFnAddr, SendResultT &&SendResult, in callSPSWrapperAsync() argument
341 std::forward<SendResultT>(SendResult), in callSPSWrapperAsync()
H A DCOFFPlatform.h170 void pushInitializersLoop(PushInitializersSendResultFn SendResult,
173 void rt_pushInitializers(PushInitializersSendResultFn SendResult,
176 void rt_lookupSymbol(SendSymbolAddressFn SendResult, ExecutorAddr Handle,
H A DMachOPlatform.h209 void pushInitializersLoop(PushInitializersSendResultFn SendResult,
213 void rt_pushInitializers(PushInitializersSendResultFn SendResult,
217 void rt_lookupSymbol(SendSymbolAddressFn SendResult, ExecutorAddr Handle,
H A DCore.h1394 SendResultFunction SendResult,
1606 void callSPSWrapperAsync(ExecutorAddr WrapperFnAddr, SendResultT &&SendResult, in callSPSWrapperAsync() argument
1609 WrapperFnAddr, std::forward<SendResultT>(SendResult), Args...); in callSPSWrapperAsync()
1634 SendResultFunction SendResult, in wrapAsyncWithSPS()
1637 std::move(SendResult)); in wrapAsyncWithSPS()
1673 runJITDispatchHandler(SendResultFunction SendResult,
/openbsd-src/gnu/llvm/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()