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 DExecutorProcessControl.h127 std::promise<MSVCPError> ResultP; in writeUInt8s() local
128 auto ResultF = ResultP.get_future(); in writeUInt8s()
130 [&](Error Err) { ResultP.set_value(std::move(Err)); }); in writeUInt8s()
135 std::promise<MSVCPError> ResultP; in writeUInt16s() local
136 auto ResultF = ResultP.get_future(); in writeUInt16s()
138 [&](Error Err) { ResultP.set_value(std::move(Err)); }); in writeUInt16s()
143 std::promise<MSVCPError> ResultP; in writeUInt32s() local
144 auto ResultF = ResultP.get_future(); in writeUInt32s()
146 [&](Error Err) { ResultP.set_value(std::move(Err)); }); in writeUInt32s()
151 std::promise<MSVCPError> ResultP; in writeUInt64s() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
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 DExecutorProcessControl.cpp206 std::promise<shared::WrapperFunctionResult> ResultP; in jitDispatchViaWrapperFunctionManager() local
207 auto ResultF = ResultP.get_future(); in jitDispatchViaWrapperFunctionManager()
211 [ResultP = std::move(ResultP)]( in jitDispatchViaWrapperFunctionManager()
213 ResultP.set_value(std::move(Result)); in jitDispatchViaWrapperFunctionManager()
H A DCore.cpp1790 std::promise<MSVCPExpected<SymbolFlagsMap>> ResultP; in lookupFlags() local
1793 [&ResultP](Expected<SymbolFlagsMap> Result) { in lookupFlags()
1794 ResultP.set_value(std::move(Result)); in lookupFlags()
1798 auto ResultF = ResultP.get_future(); in lookupFlags()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DSimpleRemoteEPCServer.cpp270 std::promise<shared::WrapperFunctionResult> ResultP; in doJITDispatch()
271 auto ResultF = ResultP.get_future(); in doJITDispatch()
280 PendingJITDispatchResults[SeqNo] = &ResultP; in doJITDispatch()
264 std::promise<shared::WrapperFunctionResult> ResultP; doJITDispatch() local
/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()