28#ifndef __ARCH_ARM_AAPCS64_HH__
29#define __ARCH_ARM_AAPCS64_HH__
65 nsaa(tc->getReg(ArmISA::int_reg::Spx))
81template <
typename T,
typename Enabled=
void>
84template <
typename E,
size_t N>
86 typename
std::enable_if_t<
87 (std::is_integral_v<E> || std::is_floating_point_v<E>) &&
88 (sizeof(E) * N == 8 || sizeof(E) * N == 16)>> :
99template <
typename T,
typename Enabled=
void>
104 (std::is_array_v<T> || std::is_class_v<T> || std::is_union_v<T>) &&
108 !IsAapcs64ShortVectorV<T>
109 >> :
public std::true_type
124template <
typename T,
typename Enabled=
void>
127template <
typename E,
size_t N>
129 typename
std::enable_if_t<std::is_floating_point_v<E> && N <= 4>> :
130 public std::true_type
134constexpr bool IsAapcs64HfaV = IsAapcs64Hfa<T>::value;
140template <
typename T,
typename Enabled=
void>
141struct IsAapcs64Hva :
public std::false_type {};
143template <
typename E,
size_t N>
144struct IsAapcs64Hva<
E[N],
145 typename
std::enable_if_t<IsAapcs64ShortVectorV<E> && N <= 4>> :
146 public std::true_type
150constexpr bool IsAapcs64HvaV = IsAapcs64Hva<T>::value;
153template <
typename T,
typename Enabled=
void>
154struct IsAapcs64Hxa :
public std::false_type {};
157struct IsAapcs64Hxa<T, typename
std::enable_if_t<
158 IsAapcs64HfaV<T> || IsAapcs64HvaV<T>>> :
159 public std::true_type
163constexpr bool IsAapcs64HxaV = IsAapcs64Hxa<T>::value;
165struct Aapcs64ArgumentBase
167 template <
typename T>
169 loadFromStack(ThreadContext *tc, Aapcs64::State &
state)
172 size_t align = std::max<size_t>(8,
alignof(T));
174 size_t size = roundUp(
sizeof(T), 8);
186 return gtoh(*val, ArmISA::byteOrder(tc));
195template <
typename Float>
196struct Argument<Aapcs64, Float, typename
std::enable_if_t<
197 std::is_floating_point_v<Float> || IsAapcs64ShortVectorV<Float>>> :
198 public Aapcs64ArgumentBase
201 get(ThreadContext *tc, Aapcs64::State &
state)
207 return vc.as<Float>()[0];
210 return loadFromStack<Float>(tc,
state);
214template <
typename Float>
215struct Result<Aapcs64, Float, typename
std::enable_if_t<
216 std::is_floating_point_v<Float> || IsAapcs64ShortVectorV<Float>>>
219 store(ThreadContext *tc,
const Float &
f)
235template <
typename Integer>
237 std::is_integral_v<Integer> && (sizeof(Integer) <= 8)>> :
238 public Aapcs64ArgumentBase
249 return loadFromStack<Integer>(tc,
state);
253template <
typename Integer>
255 std::is_integral_v<Integer> && (sizeof(Integer) > 8)>> :
256 public Aapcs64ArgumentBase
261 if (
alignof(Integer) == 16 && (
state.ngrn % 2))
264 if (
sizeof(Integer) == 16 &&
state.ngrn + 1 <=
state.MAX_GRN) {
274 return loadFromStack<Integer>(tc,
state);
278template <
typename Integer>
280 std::is_integral_v<Integer> && (sizeof(Integer) <= 8)>>
289template <
typename Integer>
291 std::is_integral_v<Integer> && (sizeof(Integer) > 8)>>
310template <
typename E,
size_t N>
313template <
typename HA>
315 IsAapcs64HxaV<HA>>> :
public Aapcs64ArgumentBase
321 constexpr size_t Count =
sizeof(HA) /
sizeof(Elem);
323 if (
state.nsrn + Count - 1 <=
state.MAX_SRN) {
325 for (
int i = 0;
i < Count;
i++)
333 return loadFromStack<HA>(tc,
state);
337template <
typename HA>
344 constexpr size_t Count =
sizeof(HA) /
sizeof(Elem);
346 for (
int i = 0;
i < Count;
i++)
356template <
typename Composite>
358 IsAapcs64CompositeV<Composite> && !IsAapcs64HxaV<Composite>>> :
359 public Aapcs64ArgumentBase
364 if (
sizeof(Composite) > 16) {
375 size_t bytes =
sizeof(Composite);
376 using Chunk = uint64_t;
378 const int chunk_size =
sizeof(Chunk);
379 const int regs = (bytes + chunk_size - 1) / chunk_size;
383 alignas(
alignof(Composite)) uint8_t buf[bytes];
384 for (
int i = 0;
i < regs;
i++) {
387 size_t to_copy = std::min<size_t>(bytes, chunk_size);
388 memcpy(buf +
i * chunk_size, &
val, to_copy);
397 return loadFromStack<Composite>(tc,
state);
401template <
typename Composite>
403 IsAapcs64CompositeV<Composite> && !IsAapcs64HxaV<Composite>>>
408 if (
sizeof(Composite) > 16) {
417 size_t bytes =
sizeof(Composite);
418 using Chunk = uint64_t;
420 const int chunk_size =
sizeof(Chunk);
421 const int regs = (bytes + chunk_size - 1) / chunk_size;
424 uint8_t *buf = (uint8_t *)&cp;
425 for (
int i = 0;
i < regs;
i++) {
426 size_t to_copy = std::min<size_t>(bytes, chunk_size);
429 memcpy(&
val, buf, to_copy);
ThreadContext is the external interface to all thread state for anything outside of the CPU.
virtual RegVal getReg(const RegId ®) const
virtual void setReg(const RegId ®, RegVal val)
static RegId x(unsigned index)
ByteOrder byteOrder(const ThreadContext *tc)
gem5::VecRegContainer< NumVecElemPerVecReg *sizeof(VecElem)> VecRegContainer
constexpr RegClass intRegClass
constexpr RegClass vecRegClass
constexpr bool IsAapcs64CompositeV
constexpr bool IsAapcs64ShortVectorV
double Result
All results are doubles.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
T gtoh(T value, ByteOrder guest_byte_order)
T htog(T value, ByteOrder guest_byte_order)
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)
Overload hash function for BasicBlockRange type.
State(const ThreadContext *tc)
static Composite get(ThreadContext *tc, Aapcs64::State &state)
static HA get(ThreadContext *tc, Aapcs64::State &state)
static Integer get(ThreadContext *tc, Aapcs64::State &state)
static Integer get(ThreadContext *tc, Aapcs64::State &state)
static void store(ThreadContext *tc, const Composite &c)
static HA store(ThreadContext *tc, const HA &ha)
static void store(ThreadContext *tc, const Integer &i)
static void store(ThreadContext *tc, const Integer &i)