Home
last modified time | relevance | path

Searched refs:WFR (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DSimpleRemoteEPC.cpp288 auto WFR = in handleSetup() local
290 SetupMsgHandler(std::move(WFR)); in handleSetup()
407 auto WFR = in handleResult() local
409 SendResult(std::move(WFR)); in handleResult()
420 [this, RemoteSeqNo](shared::WrapperFunctionResult WFR) { in handleCallWrapper() argument
423 ExecutorAddr(), {WFR.data(), WFR.size()})) in handleCallWrapper()
433 auto WFR = WrapperFunctionResult::copyFrom(ArgBytes.data(), ArgBytes.size()); in handleHangup() local
434 if (const char *ErrMsg = WFR.getOutOfBandError()) in handleHangup()
438 SPSInputBuffer IB(WFR.data(), WFR.size()); in handleHangup()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DWrapperFunctionUtils.h115 WrapperFunctionResult WFR; in allocate() local
116 WFR.R.Size = Size; in allocate()
117 if (WFR.R.Size > sizeof(WFR.R.Data.Value)) in allocate()
118 WFR.R.Data.ValuePtr = (char *)malloc(WFR.R.Size); in allocate()
119 return WFR; in allocate()
124 auto WFR = allocate(Size); in copyFrom() local
125 memcpy(WFR.data(), Source, Size); in copyFrom()
126 return WFR; in copyFrom()
142 WrapperFunctionResult WFR; in createOutOfBandError() local
145 WFR.R.Data.ValuePtr = Tmp; in createOutOfBandError()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/
H A Dwrapper_function_utils_test.cpp159 WrapperFunctionResult WFR(WFC.run()); in TEST() local
160 EXPECT_EQ(WFR.size(), 1U); in TEST()
161 EXPECT_EQ(WFR.data()[0], 10); in TEST()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DExecutorProcessControl.h53 void operator()(shared::WrapperFunctionResult WFR) { H(std::move(WFR)); } in operator()
88 (shared::WrapperFunctionResult WFR) mutable { in operator()
91 [Fn = std::move(Fn), WFR = std::move(WFR)]() mutable { in operator()
92 Fn(std::move(WFR)); in operator()
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/
H A Dwrapper_function_utils.h450 auto WFR = run(); in runWithSPSRet()
451 if (const char *ErrMsg = WFR.getOutOfBandError()) in runWithSPSRet()
453 SPSInputBuffer IB(WFR.data(), WFR.size()); in runWithSPSRet()
446 auto WFR = run(); runWithSPSRet() local