28#ifndef __SIM_GUEST_ABI_LAYOUT_HH__
29#define __SIM_GUEST_ABI_LAYOUT_HH__
48template <
typename ABI,
typename Enabled=
void>
51 static typename ABI::State
54 return typename ABI::State();
58template <
typename ABI>
60 std::is_constructible_v<typename ABI::State, const ThreadContext *>>>
62 static typename ABI::State
65 return typename ABI::State(tc);
69template <
typename ABI>
70static typename ABI::State
82template <
typename ABI,
template <
class ...>
class Role,
83 typename Type,
typename Enabled=
void>
96template <
typename ABI,
template <
class ...>
class Role,
typename Type>
97struct Preparer<ABI, Role, Type, decltype((void)&Role<ABI, Type>::prepare)>
102 Role<ABI, Type>::prepare(tc,
state);
106template <
typename ABI,
typename Ret,
typename Enabled=
void>
113template <
typename ABI,
typename ...Args>
116 typename ABI::State &
state)
121template <
typename ABI,
typename Ret,
typename ...Args>
125 prepareForResult<ABI, Ret>(tc,
state);
134template <
typename ABI,
typename Ret,
typename Enabled=
void>
144template <
typename ABI,
typename Ret>
146 std::is_same_v<void (*)(ThreadContext *, const Ret &,
147 typename ABI::State &),
148 decltype(&Result<ABI, Ret>::store)>>>
161template <
typename ABI,
typename Ret>
168template <
typename ABI,
typename Arg>
ThreadContext is the external interface to all thread state for anything outside of the CPU.
static ABI::State initializeState(const ThreadContext *tc)
static void prepareForFunction(ThreadContext *tc, typename ABI::State &state)
static void storeResult(ThreadContext *tc, const Ret &ret, typename ABI::State &state)
static Arg getArgument(ThreadContext *tc, typename ABI::State &state)
static void prepareForResult(ThreadContext *tc, typename ABI::State &state)
static void prepareForArguments(ThreadContext *tc, typename ABI::State &state)
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Overload hash function for BasicBlockRange type.
static void prepare(ThreadContext *tc, typename ABI::State &state)
static void prepare(ThreadContext *tc, typename ABI::State &state)
static void store(ThreadContext *tc, const Ret &ret, typename ABI::State &state)
static void store(ThreadContext *tc, const Ret &ret, typename ABI::State &state)
static ABI::State init(const ThreadContext *tc)
static ABI::State init(const ThreadContext *tc)