Go to the documentation of this file.
28 #ifndef __ARCH_ARM_AAPCS32_HH__
29 #define __ARCH_ARM_AAPCS32_HH__
33 #include <type_traits>
80 template <
typename T,
typename Enabled=
void>
85 (std::is_array_v<T> || std::is_class_v<T> || std::is_union_v<T>) &&
88 >> :
public std::true_type
99 template <
typename T, std::
size_t count,
typename Enabled=
void>
102 template <
typename T>
105 template <
typename E,
size_t N>
108 template <
typename T>
114 template <
typename T>
118 state.stackUsed =
true;
121 size_t align = std::max<size_t>(4,
alignof(T));
123 size_t size =
roundUp(
sizeof(T), 4);
144 template <
typename Integer>
146 std::is_integral_v<Integer> && (sizeof(Integer) < sizeof(uint32_t))>>
151 uint32_t
val = std::is_signed_v<Integer> ?
152 sext<sizeof(Integer) * 8>(
i) :
i;
157 template <
typename Integer>
159 std::is_integral_v<Integer> && (sizeof(Integer) == sizeof(uint32_t))>>
168 template <
typename Integer>
170 std::is_integral_v<Integer> && (sizeof(Integer) == sizeof(uint64_t))>>
185 template <
typename Integer>
187 std::is_integral_v<Integer> && (sizeof(Integer) <= sizeof(uint32_t))
200 return loadFromStack<Integer>(tc,
state);
204 template <
typename Integer>
206 std::is_integral_v<Integer> && (sizeof(Integer) > sizeof(uint32_t))
212 if (
alignof(Integer) == 8 && (
state.ncrn % 2))
215 if (
sizeof(Integer) ==
sizeof(uint64_t) &&
225 return low | (
high << 32);
231 return loadFromStack<Integer>(tc,
state);
240 template <
typename Float>
242 std::is_floating_point_v<Float>>>
248 storeResult<Aapcs32, decltype(i)>(tc,
i,
state);
252 template <
typename Float>
259 if (
sizeof(Float) ==
sizeof(uint32_t)) {
261 getArgument<Aapcs32, uint32_t>(tc,
state));
264 getArgument<Aapcs32, uint64_t>(tc,
state));
274 template <
typename Composite>
276 IsAapcs32CompositeV<Composite>>>
282 if (
sizeof(Composite) <=
sizeof(uint32_t)) {
285 memcpy((
void *)&
val, (
void *)&cp,
sizeof(Composite));
297 if (
sizeof(Composite) >
sizeof(uint32_t))
302 template <
typename Composite>
304 IsAapcs32CompositeV<Composite>>> :
310 size_t bytes =
sizeof(Composite);
311 using Chunk = uint32_t;
313 const int chunk_size =
sizeof(Chunk);
314 const int regs = (bytes + chunk_size - 1) / chunk_size;
316 if (bytes <= chunk_size) {
318 alignas(
alignof(Composite)) uint32_t
val =
325 if (
alignof(Composite) == 8 && (
state.ncrn % 2))
329 alignas(
alignof(Composite)) uint8_t buf[bytes];
330 for (
int i = 0;
i < regs;
i++) {
333 size_t to_copy = std::min<size_t>(bytes, chunk_size);
334 memcpy(buf +
i * chunk_size, &
val, to_copy);
341 alignas(
alignof(Composite)) uint8_t buf[bytes];
347 size_t to_copy = std::min<size_t>(bytes, chunk_size);
356 state.nsaa, buf, bytes);
358 state.stackUsed =
true;
368 return loadFromStack<Composite>(tc,
state);
387 std::array<bool, 16>
s;
388 std::array<bool, 8>
d;
400 for (
int i = 0;
i <=
s.size() -
count;
i++) {
405 if (
i - last + 1 ==
count) {
408 d[(last +
j) / 2] =
true;
422 for (
int i = 0;
i <=
d.size() -
count;
i++) {
427 if (
i - last + 1 ==
count) {
430 s[(last +
j) * 2] =
true;
431 s[(last +
j) * 2 + 1] =
true;
451 template <
typename Integer>
453 std::is_integral_v<Integer>>> :
public Result<Aapcs32, Integer>
456 template <
typename Integer>
458 std::is_integral_v<Integer>>> :
public Argument<Aapcs32, Integer>
466 template <
typename Float>
468 std::is_floating_point_v<Float>>>
473 if (
state.variadic) {
474 storeResult<Aapcs32, Float>(tc,
f,
state);
481 for (
int chunk = 0; chunk < chunks; chunk++)
486 template <
typename Float>
494 return getArgument<Aapcs32, Float>(tc,
state);
499 return loadFromStack<Float>(tc,
state);
505 for (
int chunk = 0; chunk < chunks; chunk++)
517 template <
typename Composite>
519 IsAapcs32CompositeV<Composite> &&
520 !IsAapcs32HomogeneousAggregateV<Composite>>> :
521 public Result<Aapcs32, Composite>
524 template <
typename Composite>
526 IsAapcs32CompositeV<Composite> &&
527 !IsAapcs32HomogeneousAggregateV<Composite>>> :
536 template <
typename T>
539 template <
typename E,
size_t N>
542 template <
typename HA>
544 IsAapcs32HomogeneousAggregateV<HA>>> :
551 constexpr
size_t Count =
sizeof(HA) /
sizeof(Elem);
552 return state.variadic || !std::is_floating_point_v<Elem> ||
560 constexpr
size_t Count =
sizeof(HA) /
sizeof(Elem);
562 if (useBaseABI(
state))
563 return getArgument<Aapcs32, HA>(tc,
state);
565 const int base =
state.allocate(Elem{}, Count);
567 constexpr
int lane_per_reg = 16 /
sizeof(Elem);
569 for (
int i = 0;
i < Count;
i++) {
571 const int reg =
index / lane_per_reg;
572 const int lane =
index % lane_per_reg;
577 ha[
i] =
val.as<Elem>()[lane];
582 return loadFromStack<HA>(tc,
state);
588 if (useBaseABI(
state))
593 template <
typename HA>
595 typename
std::enable_if_t<IsAapcs32HomogeneousAggregateV<HA>>>
601 constexpr
size_t Count =
sizeof(HA) /
sizeof(Elem);
602 return state.variadic || !std::is_floating_point_v<Elem> ||
610 constexpr
size_t Count =
sizeof(HA) /
sizeof(Elem);
612 if (useBaseABI(
state)) {
613 storeResult<Aapcs32, HA>(tc,
ha,
state);
617 constexpr
int lane_per_reg = 16 /
sizeof(Elem);
618 for (
int i = 0;
i < Count;
i++) {
619 const int reg =
i / lane_per_reg;
620 const int lane =
i % lane_per_reg;
625 val.as<Elem>()[lane] =
ha[
i];
633 if (useBaseABI(
state))
643 template <
typename ...Types>
649 state.variadic =
true;
657 #endif // __ARCH_ARM_AAPCS32_HH__
int allocate(double, int count)
State(const ThreadContext *tc)
static void prepare(ThreadContext *tc, Aapcs32Vfp::State &state)
static float bitsToFloat32(uint32_t val)
constexpr RegId R1(IntRegClass, _R1Idx)
static Arg getArgument(ThreadContext *tc, typename ABI::State &state)
@ VecElemClass
Vector Register Native Elem lane.
virtual RegVal getReg(const RegId ®) const
static Float get(ThreadContext *tc, Aapcs32::State &state)
static double bitsToFloat64(uint64_t val)
static Integer get(ThreadContext *tc, Aapcs32::State &state)
static void prepare(ThreadContext *tc, Aapcs32Vfp::State &state)
static void store(ThreadContext *tc, const Integer &i)
static void store(ThreadContext *tc, const Composite &composite, Aapcs32::State &state)
ByteOrder byteOrder(const ThreadContext *tc)
static T loadFromStack(ThreadContext *tc, Aapcs32::State &state)
void align(const scfx_rep &lhs, const scfx_rep &rhs, int &new_wp, int &len_mant, scfx_mant_ref &lhs_mant, scfx_mant_ref &rhs_mant)
constexpr uint64_t mask(unsigned nbits)
Generate a 64-bit mask of 'nbits' 1s, right justified.
static void store(ThreadContext *tc, const Integer &i)
This proxy attempts to translate virtual addresses using the TLBs.
static void store(ThreadContext *tc, const Float &f, Aapcs32::State &state)
static HA store(ThreadContext *tc, const HA &ha, Aapcs32Vfp::State &state)
static Composite get(ThreadContext *tc, Aapcs32::State &state)
State(const ThreadContext *tc)
static uint64_t floatToBits(double val)
Vector Register Abstraction This generic class is the model in a particularization of MVC,...
ThreadContext is the external interface to all thread state for anything outside of the CPU.
static HA get(ThreadContext *tc, Aapcs32Vfp::State &state)
T gtoh(T value, ByteOrder guest_byte_order)
static bool useBaseABI(Aapcs32Vfp::State &state)
int allocate(float, int count)
T htog(T value, ByteOrder guest_byte_order)
static double bitsToFloat(uint64_t val)
constexpr RegId R0(IntRegClass, _R0Idx)
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi)
static VarArgs< Types... > get(ThreadContext *tc, typename Aapcs32Vfp::State &state)
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
@ IntRegClass
Integer register.
static void prepare(ThreadContext *tc, Aapcs32::State &state)
static Float get(ThreadContext *tc, Aapcs32Vfp::State &state)
constexpr bool IsAapcs32HomogeneousAggregateV
constexpr bool IsAapcs32CompositeV
Overload hash function for BasicBlockRange type.
static constexpr T roundUp(const T &val, const U &align)
This function is used to align addresses in memory.
static bool useBaseABI(Aapcs32Vfp::State &state)
@ VecRegClass
Vector Register.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
static void store(ThreadContext *tc, const Integer &i)
T[count] Aapcs32HomogeneousAggregate
Register ID: describe an architectural register with its class and index.
struct IsAapcs64Hfa< E[N], typename std::enable_if_t< std::is_floating_point_v< E > &&N<=4 > > :public std::true_type{};template< typename T >constexpr bool IsAapcs64HfaV=IsAapcs64Hfa< T >::value;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_t< IsAapcs64ShortVectorV< E > &&N<=4 > > :public std::true_type{};template< typename T >constexpr bool IsAapcs64HvaV=IsAapcs64Hva< T >::value;template< typename T, typename Enabled=void >struct IsAapcs64Hxa :public std::false_type {};template< typename T >struct IsAapcs64Hxa< T, typename std::enable_if_t< IsAapcs64HfaV< T >||IsAapcs64HvaV< T > > > :public std::true_type{};template< typename T >constexpr bool IsAapcs64HxaV=IsAapcs64Hxa< T >::value;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_t< std::is_floating_point_v< Float >||IsAapcs64ShortVectorV< Float > > > :public Aapcs64ArgumentBase{ static Float get(ThreadContext *tc, Aapcs64::State &state) { if(state.nsrn<=state.MAX_SRN) { RegId id(VecRegClass, state.nsrn++);ArmISA::VecRegContainer vc;tc->getReg(id, &vc);return vc.as< Float >()[0];} return loadFromStack< Float >(tc, state);}};template< typename Float >struct Result< Aapcs64, Float, typename std::enable_if_t< std::is_floating_point_v< Float >||IsAapcs64ShortVectorV< Float > > >{ static void store(ThreadContext *tc, const Float &f) { RegId id(VecRegClass, 0);ArmISA::VecRegContainer reg;tc-> getReg(id, ®)
static void store(ThreadContext *tc, const Float &f, Aapcs32Vfp::State &state)
virtual void setReg(const RegId ®, RegVal val)
Generated on Thu Jun 16 2022 10:41:36 for gem5 by doxygen 1.8.17