Home
last modified time | relevance | path

Searched refs:WrapperFunctionResult (Results 1 – 8 of 8) sorted by relevance

/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ExecutionEngine/Orc/Shared/
DWrapperFunctionUtils.h40 class WrapperFunctionResult {
43 WrapperFunctionResult() { init(R); } in WrapperFunctionResult() function
50 WrapperFunctionResult(CWrapperFunctionResult R) : R(R) { in WrapperFunctionResult() function
55 WrapperFunctionResult(const WrapperFunctionResult &) = delete;
56 WrapperFunctionResult &operator=(const WrapperFunctionResult &) = delete;
58 WrapperFunctionResult(WrapperFunctionResult &&Other) { in WrapperFunctionResult() function
63 WrapperFunctionResult &operator=(WrapperFunctionResult &&Other) {
64 WrapperFunctionResult Tmp(std::move(Other));
69 ~WrapperFunctionResult() { in ~WrapperFunctionResult()
113 static WrapperFunctionResult allocate(size_t Size) { in allocate()
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/lib/ExecutionEngine/Orc/TargetProcess/
DSimpleRemoteEPCServer.cpp133 shared::WrapperFunctionResult::createOutOfBandError("disconnecting")); in handleDisconnect()
213 shared::WrapperFunctionResult::allocate(SPSSerialize::size(EI)); in sendSetupMessage()
226 std::promise<shared::WrapperFunctionResult> *P = nullptr; in handleResult()
238 auto R = shared::WrapperFunctionResult::allocate(ArgBytes.size()); in handleResult()
251 shared::WrapperFunctionResult ResultBytes( in handleCallWrapper()
260 shared::WrapperFunctionResult
264 std::promise<shared::WrapperFunctionResult> ResultP; in doJITDispatch()
269 return shared::WrapperFunctionResult::createOutOfBandError( in doJITDispatch()
/external/swiftshader/third_party/llvm-16.0/llvm/lib/ExecutionEngine/Orc/
DSimpleRemoteEPC.cpp104 H(shared::WrapperFunctionResult::createOutOfBandError("disconnecting")); in callWrapperAsync()
191 shared::WrapperFunctionResult::createOutOfBandError("disconnecting")); in handleDisconnect()
274 shared::WrapperFunctionResult::copyFrom(ArgBytes.data(), ArgBytes.size()); in handleSetup()
288 [&](shared::WrapperFunctionResult SetupMsgBytes) { in setup()
387 shared::WrapperFunctionResult::copyFrom(ArgBytes.data(), ArgBytes.size()); in handleResult()
399 [this, RemoteSeqNo](shared::WrapperFunctionResult WFR) { in handleCallWrapper()
412 auto WFR = WrapperFunctionResult::copyFrom(ArgBytes.data(), ArgBytes.size()); in handleHangup()
DExecutorProcessControl.cpp186 std::promise<shared::WrapperFunctionResult> ResultP; in jitDispatchViaWrapperFunctionManager()
192 shared::WrapperFunctionResult Result) mutable { in jitDispatchViaWrapperFunctionManager()
DCore.cpp2231 SendResult(shared::WrapperFunctionResult::createOutOfBandError( in runJITDispatchHandler()
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ExecutionEngine/Orc/
DExecutorProcessControl.h53 void operator()(shared::WrapperFunctionResult WFR) { H(std::move(WFR)); } in operator()
58 unique_function<void(shared::WrapperFunctionResult)> H;
88 (shared::WrapperFunctionResult WFR) mutable { in operator()
307 shared::WrapperFunctionResult callWrapper(ExecutorAddr WrapperFnAddr, in callWrapper()
309 std::promise<shared::WrapperFunctionResult> RP; in callWrapper()
313 [&](shared::WrapperFunctionResult R) { in callWrapper()
DCore.h1386 using SendResultFunction = unique_function<void(shared::WrapperFunctionResult)>;
1598 shared::WrapperFunctionResult callWrapper(ExecutorAddr WrapperFnAddr, in callWrapper()
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ExecutionEngine/Orc/TargetProcess/
DSimpleRemoteEPCServer.h151 shared::WrapperFunctionResult
163 DenseMap<uint64_t, std::promise<shared::WrapperFunctionResult> *>;