Home
last modified time | relevance | path

Searched refs:ResultP (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DMemoryAccess.h90 std::promise<MSVCPError> ResultP; in writeUInt8s() local
91 auto ResultF = ResultP.get_future(); in writeUInt8s()
92 writeUInt8sAsync(Ws, [&](Error Err) { ResultP.set_value(std::move(Err)); }); in writeUInt8s()
97 std::promise<MSVCPError> ResultP; in writeUInt16s() local
98 auto ResultF = ResultP.get_future(); in writeUInt16s()
100 [&](Error Err) { ResultP.set_value(std::move(Err)); }); in writeUInt16s()
105 std::promise<MSVCPError> ResultP; in writeUInt32s() local
106 auto ResultF = ResultP.get_future(); in writeUInt32s()
108 [&](Error Err) { ResultP.set_value(std::move(Err)); }); in writeUInt32s()
113 std::promise<MSVCPError> ResultP; in writeUInt64s() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DSelfExecutorProcessControl.cpp158 std::promise<shared::WrapperFunctionResult> ResultP; in jitDispatchViaWrapperFunctionManager() local
159 auto ResultF = ResultP.get_future(); in jitDispatchViaWrapperFunctionManager()
163 [ResultP = std::move(ResultP)]( in jitDispatchViaWrapperFunctionManager()
165 ResultP.set_value(std::move(Result)); in jitDispatchViaWrapperFunctionManager()
H A DLookupAndRecordAddrs.cpp47 std::promise<MSVCPError> ResultP; in lookupAndRecordAddrs() local
48 auto ResultF = ResultP.get_future(); in lookupAndRecordAddrs()
49 lookupAndRecordAddrs([&](Error Err) { ResultP.set_value(std::move(Err)); }, in lookupAndRecordAddrs()
H A DCore.cpp1791 std::promise<MSVCPExpected<SymbolFlagsMap>> ResultP; in lookupFlags() local
1794 [&ResultP](Expected<SymbolFlagsMap> Result) { in lookupFlags()
1795 ResultP.set_value(std::move(Result)); in lookupFlags()
1799 auto ResultF = ResultP.get_future(); in lookupFlags()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DSimpleRemoteEPCServer.cpp268 std::promise<shared::WrapperFunctionResult> ResultP; in doJITDispatch() local
269 auto ResultF = ResultP.get_future(); in doJITDispatch()
278 PendingJITDispatchResults[SeqNo] = &ResultP; in doJITDispatch()
/freebsd/contrib/llvm-project/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp868 auto ResultP = std::make_shared<std::promise<ExpectedLookupResult>>(); in linkAndVerify() local
869 auto ResultF = ResultP->get_future(); in linkAndVerify()
873 ResultP->set_value(std::move(Result)); in linkAndVerify()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp1395 SDNode *ResultP = selectI64ImmDirectPrefix(CurDAG, dl, Imm, InstCntDirectP); in selectI64Imm() local
1401 if (ResultP && (!Result || InstCntDirectP < InstCntDirect)) { in selectI64Imm()
1404 return ResultP; in selectI64Imm()