gem5
v20.1.0.5
|
Typedefs | |
template<typename T , std::size_t count, typename Enabled = void> | |
using | Aapcs32HomogeneousAggregate = T[count] |
Functions | |
reg | laneView< Float, 0 > () |
tc | setVecReg (id, reg) |
template<typename ABI , bool store_ret, typename Ret > | |
static std::enable_if<!std::is_void< Ret >::value &&store_ret, Ret >::type | callFrom (ThreadContext *tc, typename ABI::State &state, std::function< Ret(ThreadContext *)> target) |
template<typename ABI , bool store_ret, typename Ret > | |
static std::enable_if<!std::is_void< Ret >::value &&!store_ret, Ret >::type | callFrom (ThreadContext *tc, typename ABI::State &state, std::function< Ret(ThreadContext *)> target) |
template<typename ABI > | |
static void | callFrom (ThreadContext *tc, typename ABI::State &state, std::function< void(ThreadContext *)> target) |
template<typename ABI , bool store_ret, typename Ret , typename NextArg , typename ... Args> | |
static std::enable_if<!std::is_void< Ret >::value, Ret >::type | callFrom (ThreadContext *tc, typename ABI::State &state, std::function< Ret(ThreadContext *, NextArg, Args...)> target) |
template<typename ABI , typename NextArg , typename ... Args> | |
static void | callFrom (ThreadContext *tc, typename ABI::State &state, std::function< void(ThreadContext *, NextArg, Args...)> target) |
template<typename ABI , typename Ret > | |
static void | dumpArgsFrom (int count, std::ostream &os, ThreadContext *tc, typename ABI::State &state) |
template<typename ABI , typename Ret , typename NextArg , typename ... Args> | |
static void | dumpArgsFrom (int count, std::ostream &os, ThreadContext *tc, typename ABI::State &state) |
template<typename ABI > | |
static ABI::State | initializeState (const ThreadContext *tc) |
template<typename ABI , typename Ret , typename Enabled = void> | |
static void | prepareForResult (ThreadContext *tc, typename ABI::State &state) |
template<typename ABI > | |
static void | prepareForArguments (ThreadContext *tc, typename ABI::State &state) |
template<typename ABI , typename NextArg , typename ... Args> | |
static void | prepareForArguments (ThreadContext *tc, typename ABI::State &state) |
template<typename ABI , typename Ret , typename ... Args> | |
static void | prepareForFunction (ThreadContext *tc, typename ABI::State &state) |
template<typename Ret , typename State > | |
std::true_type | foo (void(*)(ThreadContext *, const Ret &ret, State &state)) |
template<typename Ret > | |
std::false_type | foo (void(*)(ThreadContext *, const Ret &ret)) |
template<typename ABI , typename Ret > | |
static void | storeResult (ThreadContext *tc, const Ret &ret, typename ABI::State &state) |
template<typename ABI , typename Arg > | |
static Arg | getArgument (ThreadContext *tc, typename ABI::State &state) |
template<typename ... Types> | |
std::ostream & | operator<< (std::ostream &os, const VarArgs< Types... > &va) |
Variables | |
template<typename E , size_t N> | |
struct IsAapcs64Hfa< E[N], typename std::enable_if< std::is_floating_point< E >::value &&N<=4 >::type > :public std::true_type{};template< typename T, typename Enabled=void >struct IsAapcs64Hva :public std::false_type {};template< typename E, size_t N >struct IsAapcs64Hva< E[N], typename std::enable_if< IsAapcs64ShortVector< E >::value &&N<=4 >::type > :public std::true_type{};template< typename T, typename Enabled=void >struct IsAapcs64Hxa :public std::false_type {};template< typename T >struct IsAapcs64Hxa< T, typename std::enable_if< IsAapcs64Hfa< T >::value||IsAapcs64Hva< T >::value >::type > :public std::true_type{};struct Aapcs64ArgumentBase{ template< typename T > static T loadFromStack(ThreadContext *tc, Aapcs64::State &state) { size_t align=std::max< size_t >(8, alignof(T));size_t size=roundUp(sizeof(T), 8);state.nsaa=roundUp(state.nsaa, align);ConstVPtr< T > val(state.nsaa, tc);state.nsaa+=size;return gtoh(*val, ArmISA::byteOrder(tc));}};template< typename Float >struct Argument< Aapcs64, Float, typename std::enable_if< std::is_floating_point< Float >::value||IsAapcs64ShortVector< Float >::value >::type > :public Aapcs64ArgumentBase{ static Float get(ThreadContext *tc, Aapcs64::State &state) { if(state.nsrn<=state.MAX_SRN) { RegId id(VecRegClass, state.nsrn++);return tc->readVecReg(id).laneView< Float, 0 >();} return loadFromStack< Float >(tc, state);}};template< typename Float >struct Result< Aapcs64, Float, typename std::enable_if< std::is_floating_point< Float >::value||IsAapcs64ShortVector< Float >::value >::type >{ static void store(ThreadContext *tc, const Float &f) { RegId id(VecRegClass, 0);auto reg=tc-> | readVecReg (id) |
using GuestABI::Aapcs32HomogeneousAggregate = typedef T[count] |
Definition at line 92 of file aapcs32.hh.
|
static |
Definition at line 58 of file dispatch.hh.
Referenced by callFrom(), and invokeSimcall().
|
static |
Definition at line 69 of file dispatch.hh.
|
static |
Definition at line 89 of file dispatch.hh.
References callFrom().
|
static |
Definition at line 78 of file dispatch.hh.
|
static |
Definition at line 109 of file dispatch.hh.
References callFrom().
|
static |
Definition at line 135 of file dispatch.hh.
References X86ISA::os.
Referenced by dumpArgsFrom(), and dumpSimcall().
|
static |
Definition at line 146 of file dispatch.hh.
References X86ISA::count, dumpArgsFrom(), and X86ISA::os.
std::false_type GuestABI::foo | ( | void(*)(ThreadContext *, const Ret &ret) | ) |
std::true_type GuestABI::foo | ( | void(*)(ThreadContext *, const Ret &ret, State &state) | ) |
Referenced by cp::_format_string(), ComputeUnit::DTLBPort::recvTimingResp(), and TEST().
|
static |
Definition at line 179 of file layout.hh.
Referenced by GuestABI::Argument< Aapcs32Vfp, VarArgs< Types... > >::get().
|
static |
Definition at line 68 of file layout.hh.
References GuestABI::StateInitializer< ABI, Enabled >::init().
reg GuestABI::laneView< Float, 0 > | ( | ) |
std::ostream& GuestABI::operator<< | ( | std::ostream & | os, |
const VarArgs< Types... > & | va | ||
) |
Definition at line 177 of file varargs.hh.
References X86ISA::os.
|
static |
Definition at line 112 of file layout.hh.
Referenced by invokeSimcall(), prepareForArguments(), and prepareForFunction().
|
static |
Definition at line 119 of file layout.hh.
References GuestABI::Preparer< ABI, Role, Type, Enabled >::prepare(), and prepareForArguments().
|
static |
Definition at line 127 of file layout.hh.
References prepareForArguments().
Referenced by dumpSimcall(), and invokeSimcall().
|
static |
Definition at line 105 of file layout.hh.
References GuestABI::Preparer< ABI, Role, Type, Enabled >::prepare().
tc GuestABI::setVecReg | ( | id | , |
reg | |||
) |
Referenced by FullO3CPU< O3CPUImpl >::setArchVecReg().
|
static |
Definition at line 172 of file layout.hh.
References GuestABI::ResultStorer< ABI, Ret, Enabled >::store().
struct IsAapcs64Hfa< E[N], typename std::enable_if< std::is_floating_point< E >::value && N<=4 >::type > :public std::true_type{};template< typename T, typename Enabled=void >struct IsAapcs64Hva :public std::false_type {};template< typename E, size_t N >struct IsAapcs64Hva< E[N], typename std::enable_if< IsAapcs64ShortVector< E >::value && N<=4 >::type > :public std::true_type{};template< typename T, typename Enabled=void >struct IsAapcs64Hxa :public std::false_type {};template< typename T >struct IsAapcs64Hxa< T, typename std::enable_if< IsAapcs64Hfa< T >::value||IsAapcs64Hva< T >::value >::type > : public std::true_type{};struct Aapcs64ArgumentBase{ template< typename T > static T loadFromStack(ThreadContext *tc, Aapcs64::State &state) { size_t align=std::max< size_t >(8, alignof(T)); size_t size=roundUp(sizeof(T), 8); state.nsaa=roundUp(state.nsaa, align); ConstVPtr< T > val(state.nsaa, tc); state.nsaa+=size; return gtoh(*val, ArmISA::byteOrder(tc)); }};template< typename Float >struct Argument< Aapcs64, Float, typename std::enable_if< std::is_floating_point< Float >::value|| IsAapcs64ShortVector< Float >::value >::type > : public Aapcs64ArgumentBase{ static Float get(ThreadContext *tc, Aapcs64::State &state) { if(state.nsrn<=state.MAX_SRN) { RegId id(VecRegClass, state.nsrn++); return tc->readVecReg(id).laneView< Float, 0 >(); } return loadFromStack< Float >(tc, state); }};template< typename Float >struct Result< Aapcs64, Float, typename std::enable_if< std::is_floating_point< Float >::value|| IsAapcs64ShortVector< Float >::value >::type >{ static void store(ThreadContext *tc, const Float &f) { RegId id(VecRegClass, 0); auto reg=tc-> GuestABI::readVecReg(id) |
Definition at line 203 of file aapcs64.hh.
Referenced by FullO3CPU< O3CPUImpl >::readArchVecReg().