Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/
H A DELFNixPlatform.cpp353 SendInitializerSequenceFn SendResult, JITDylib &JD, in getInitializersBuildSequencePhase() argument
371 SendResult(std::move(FullInitSeq)); in getInitializersBuildSequencePhase()
375 SendInitializerSequenceFn SendResult, JITDylib &JD) { in getInitializersLookupPhase() argument
379 SendResult(DFSLinkOrder.takeError()); in getInitializersLookupPhase()
404 [this, SendResult = std::move(SendResult), &JD](Error Err) mutable { in getInitializersLookupPhase()
406 SendResult(std::move(Err)); in getInitializersLookupPhase()
429 getInitializersLookupPhase(std::move(SendResult), *JD); in rt_getInitializers()
459 SendResult(ELFNixJITDylibDeinitializerSequence()); in rt_getDeinitializers()
494 : SendResult(std::move(SendResult)) {} in rt_lookupSymbol()
500 SendResult(Result.takeError()); in rt_lookupSymbol()
[all …]
H A DMachOPlatform.cpp454 SendResult( in pushInitializersLoop()
477 SendResult(DIM); in pushInitializersLoop()
483 [this, SendResult = std::move(SendResult), &JD](Error Err) mutable { in pushInitializersLoop()
485 SendResult(std::move(Err)); in pushInitializersLoop()
487 pushInitializersLoop(std::move(SendResult), JD); in pushInitializersLoop()
511 SendResult( in rt_pushInitializers()
518 pushInitializersLoop(std::move(SendResult), JD); in rt_pushInitializers()
551 RtLookupNotifyComplete(SendSymbolAddressFn &&SendResult) in rt_lookupSymbol() argument
552 : SendResult(std::move(SendResult)) {} in rt_lookupSymbol()
558 SendResult(Result.takeError()); in rt_lookupSymbol()
[all …]
H A DSimpleRemoteEPC.cpp349 IncomingWFRHandler SendResult; in handleResult() local
362 SendResult = std::move(I->second); in handleResult()
369 SendResult(std::move(WFR)); in handleResult()
H A DExecutorProcessControl.cpp125 IncomingWFRHandler SendResult, in callWrapperAsync() argument
130 SendResult(WrapperFn(ArgBuffer.data(), ArgBuffer.size())); in callWrapperAsync()
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()
/llvm-project-15.0.7/llvm/unittests/ExecutionEngine/Orc/
H A DWrapperFunctionUtilsTest.cpp106 static void voidNoopAsync(unique_function<void(SPSEmpty)> SendResult) { in voidNoopAsync() argument
107 SendResult(SPSEmpty()); in voidNoopAsync()
129 [](unique_function<void(int32_t)> SendResult, int32_t X, int32_t Y) { in addAsyncWrapper() argument
130 SendResult(X + Y); in addAsyncWrapper()
H A DExecutionSessionWrapperFunctionCallsTest.cpp28 static void addAsyncWrapper(unique_function<void(int32_t)> SendResult, in addAsyncWrapper() argument
30 SendResult(X + Y); in addAsyncWrapper()
/llvm-project-15.0.7/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.h315 SendResultT &&SendResult, const ArgTs &...Args) { in callSPSWrapperAsync() argument
318 (auto &&SendResult, const char *ArgData, size_t ArgSize) mutable { in callSPSWrapperAsync()
320 std::move(SendResult), in callSPSWrapperAsync()
323 std::forward<SendResultT>(SendResult), Args...); in callSPSWrapperAsync()
329 void callSPSWrapperAsync(ExecutorAddr WrapperFnAddr, SendResultT &&SendResult, in callSPSWrapperAsync() argument
332 std::forward<SendResultT>(SendResult), in callSPSWrapperAsync()
H A DMachOPlatform.h187 void pushInitializersLoop(PushInitializersSendResultFn SendResult,
191 void rt_pushInitializers(PushInitializersSendResultFn SendResult,
195 void rt_lookupSymbol(SendSymbolAddressFn SendResult, ExecutorAddr Handle,
H A DCore.h1379 SendResultFunction SendResult,
1591 void callSPSWrapperAsync(ExecutorAddr WrapperFnAddr, SendResultT &&SendResult, in callSPSWrapperAsync() argument
1594 WrapperFnAddr, std::forward<SendResultT>(SendResult), Args...); in callSPSWrapperAsync()
1619 SendResultFunction SendResult, in wrapAsyncWithSPS()
1622 std::move(SendResult)); in wrapAsyncWithSPS()
1658 runJITDispatchHandler(SendResultFunction SendResult,
/llvm-project-15.0.7/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()