Home
last modified time | relevance | path

Searched refs:ArgTs (Results 1 – 14 of 14) sorted by relevance

/openbsd/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DWrapperFunctionUtils.h171 template <typename SPSArgListT, typename... ArgTs>
208 template <typename RetT, typename... ArgTs,
241 template <typename RetT, typename... ArgTs,
320 template <typename RetT, typename... ArgTs,
447 const ArgTs &...Args) { in call()
474 typename... ArgTs>
477 const ArgTs &...Args) { in callAsync()
562 typename... ArgTs>
565 const ArgTs &...Args) { in callAsync()
604 using MethodT = RetT (ClassT::*)(ArgTs...);
[all …]
H A DSimplePackedSerialization.h109 template <typename... ArgTs> class SPSArgList;
134 template <typename ArgT, typename... ArgTs>
135 static size_t size(const ArgT &Arg, const ArgTs &...Args) { in size()
140 template <typename ArgT, typename... ArgTs>
142 const ArgTs &...Args) { in serialize()
147 template <typename ArgT, typename... ArgTs>
148 static bool deserialize(SPSInputBuffer &IB, ArgT &Arg, ArgTs &...Args) { in deserialize()
/openbsd/gnu/llvm/compiler-rt/lib/orc/
H A Dwrapper_function_utils.h107 template <typename SPSArgListT, typename... ArgTs>
155 template <typename RetT, typename... ArgTs,
160 using ArgTuple = std::tuple<std::decay_t<ArgTs>...>;
188 template <typename RetT, typename... ArgTs,
196 template <typename ClassT, typename RetT, typename... ArgTs,
291 template <typename RetT, typename... ArgTs>
346 template <typename... ArgTs>
380 using MethodT = RetT (ClassT::*)(ArgTs...);
382 RetT operator()(ExecutorAddr ObjAddr, ArgTs &...Args) { in operator()
392 MethodWrapperHandler<RetT, ClassT, ArgTs...>
[all …]
H A Derror.h32 template <typename ErrT, typename... ArgTs>
33 friend Error make_error(ArgTs &&...Args);
131 template <typename ErrT, typename... ArgTs> Error make_error(ArgTs &&...Args) { in make_error()
134 return Error(std::make_unique<ErrT>(std::forward<ArgTs>(Args)...)); in make_error()
H A Dsimple_packed_serialization.h107 template <typename... ArgTs> class SPSArgList;
122 template <typename ArgT, typename... ArgTs>
123 static size_t size(const ArgT &Arg, const ArgTs &...Args) { in size()
128 template <typename ArgT, typename... ArgTs>
130 const ArgTs &...Args) { in serialize()
135 template <typename ArgT, typename... ArgTs>
136 static bool deserialize(SPSInputBuffer &IB, ArgT &Arg, ArgTs &...Args) { in deserialize()
/openbsd/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkGeneric.h104 template <typename... ArgTs> static void link(ArgTs &&... Args) { in link()
105 auto L = std::make_unique<LinkerImpl>(std::forward<ArgTs>(Args)...); in link()
H A DMachOLinkGraphBuilder.h99 template <typename... ArgTs>
100 NormalizedSymbol &createNormalizedSymbol(ArgTs &&... Args) { in createNormalizedSymbol()
103 new (Sym) NormalizedSymbol(std::forward<ArgTs>(Args)...); in createNormalizedSymbol()
/openbsd/gnu/llvm/llvm/include/llvm/ADT/
H A DAllocatorList.h53 template <class... ArgTs> Node *create(ArgTs &&... Args) { in create()
54 return new (getAlloc()) Node(std::forward<ArgTs>(Args)...); in create()
/openbsd/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/
H A DExecutorProcessControl.h322 typename... ArgTs>
324 SendResultT &&SendResult, const ArgTs &...Args) { in callSPSWrapperAsync()
337 template <typename SPSSignature, typename SendResultT, typename... ArgTs>
339 const ArgTs &...Args) { in callSPSWrapperAsync()
H A DCore.h1587 template <typename... ArgTs>
1588 void callWrapperAsync(ArgTs &&... Args) { in callWrapperAsync()
1589 EPC->callWrapperAsync(std::forward<ArgTs>(Args)...); in callWrapperAsync()
1605 template <typename SPSSignature, typename SendResultT, typename... ArgTs>
1607 const ArgTs &...Args) { in callSPSWrapperAsync()
1608 EPC->callSPSWrapperAsync<SPSSignature, SendResultT, ArgTs...>( in callSPSWrapperAsync()
/openbsd/gnu/llvm/llvm/tools/llvm-exegesis/
H A Dllvm-exegesis.cpp248 template <typename... ArgTs> static void ExitWithError(ArgTs &&... Args) { in ExitWithError()
249 ExitOnErr(make_error<Failure>(std::forward<ArgTs>(Args)...)); in ExitWithError()
/openbsd/gnu/llvm/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h828 template <typename... ArgTs>
829 Addressable &createAddressable(ArgTs &&... Args) { in createAddressable()
832 new (A) Addressable(std::forward<ArgTs>(Args)...); in createAddressable()
841 template <typename... ArgTs> Block &createBlock(ArgTs &&... Args) { in createBlock()
843 new (B) Block(std::forward<ArgTs>(Args)...); in createBlock()
/openbsd/gnu/llvm/llvm/include/llvm/Support/
H A DError.h334 template <typename ErrT, typename... ArgTs> Error make_error(ArgTs &&... Args) { in make_error()
335 return Error(std::make_unique<ErrT>(std::forward<ArgTs>(Args)...)); in make_error()
/openbsd/gnu/llvm/llvm/include/llvm/IR/
H A DPassManager.h422 typename... ArgTs, size_t... Ns>
425 std::tuple<ArgTs...> Args, in getAnalysisResultUnpackTuple()