28#ifndef __SIM_GUEST_ABI_DISPATCH_HH__
29#define __SIM_GUEST_ABI_DISPATCH_HH__
59template <
typename ABI,
typename Ret,
bool store_ret,
typename Target,
60 typename State,
typename Args, std::size_t... I>
61static inline typename std::enable_if_t<!store_ret, Ret>
63 std::index_sequence<I...>)
65 return target(tc, std::get<I>(args)...);
68template <
typename ABI,
typename Ret,
bool store_ret,
typename Target,
69 typename State,
typename Args, std::size_t... I>
70static inline typename std::enable_if_t<store_ret, Ret>
72 std::index_sequence<I...>)
74 Ret ret = target(tc, std::get<I>(args)...);
75 storeResult<ABI, Ret>(tc, ret,
state);
79template <
typename ABI,
typename Ret,
bool store_ret,
typename ...Args>
86 auto args = std::tuple<Args...>{getArgument<ABI, Args>(tc,
state)...};
89 return callFromHelper<ABI, Ret, store_ret>(
90 target, tc,
state, std::move(args),
91 std::make_index_sequence<
sizeof...(Args)>{});
100template <
typename ABI,
typename Ret,
typename ...Args>
103 typename ABI::State &
state)
108 GEM5_FOR_EACH_IN_PACK(
os << (
count++ ?
", " :
"("),
109 os << getArgument<ABI, Args>(tc,
state));
ThreadContext is the external interface to all thread state for anything outside of the CPU.
static std::enable_if_t<!store_ret, Ret > callFromHelper(Target &target, ThreadContext *tc, State &state, Args &&args, std::index_sequence< I... >)
static void dumpArgsFrom(std::ostream &os, ThreadContext *tc, typename ABI::State &state)
static Ret callFrom(ThreadContext *tc, typename ABI::State &state, std::function< Ret(ThreadContext *, Args...)> target)
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....