28 #ifndef __ARCH_ARM_AAPCS64_HH__
29 #define __ARCH_ARM_AAPCS64_HH__
33 #include <type_traits>
81 template <
typename T,
typename Enabled=
void>
84 template <
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)>> :
99 template <
typename T,
typename Enabled=
void>
102 template <
typename T>
104 (std::is_array_v<T> || std::is_class_v<T> || std::is_union_v<T>) &&
108 !IsAapcs64ShortVectorV<T>
109 >> :
public std::true_type
112 template <
typename T>
124 template <
typename T,
typename Enabled=
void>
127 template <
typename E,
size_t N>
129 typename
std::enable_if_t<std::is_floating_point_v<E> && N <= 4>> :
130 public std::true_type
133 template <
typename T>
134 constexpr
bool IsAapcs64HfaV = IsAapcs64Hfa<T>::value;
140 template <
typename T,
typename Enabled=
void>
141 struct IsAapcs64Hva :
public std::false_type {};
143 template <
typename E,
size_t N>
144 struct IsAapcs64Hva<
E[N],
145 typename
std::enable_if_t<IsAapcs64ShortVectorV<E> && N <= 4>> :
146 public std::true_type
149 template <
typename T>
150 constexpr
bool IsAapcs64HvaV = IsAapcs64Hva<T>::value;
153 template <
typename T,
typename Enabled=
void>
154 struct IsAapcs64Hxa :
public std::false_type {};
156 template <
typename T>
157 struct IsAapcs64Hxa<T, typename
std::enable_if_t<
158 IsAapcs64HfaV<T> || IsAapcs64HvaV<T>>> :
159 public std::true_type
162 template <
typename T>
163 constexpr
bool IsAapcs64HxaV = IsAapcs64Hxa<T>::value;
165 struct 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);
195 template <
typename Float>
196 struct 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);
214 template <
typename Float>
215 struct Result<Aapcs64, Float, typename
std::enable_if_t<
216 std::is_floating_point_v<Float> || IsAapcs64ShortVectorV<Float>>>
219 store(ThreadContext *tc,
const Float &
f)
224 reg.as<Float>()[0] =
f;
225 tc->setReg(
id, &
reg);
235 template <
typename Integer>
237 std::is_integral_v<Integer> && (sizeof(Integer) <= 8)>> :
238 public Aapcs64ArgumentBase
249 return loadFromStack<Integer>(tc,
state);
253 template <
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);
278 template <
typename Integer>
280 std::is_integral_v<Integer> && (sizeof(Integer) <= 8)>>
285 tc->
setReg(ArmISA::int_reg::X0,
i);
289 template <
typename Integer>
291 std::is_integral_v<Integer> && (sizeof(Integer) > 8)>>
296 tc->
setReg(ArmISA::int_reg::X0, (uint64_t)
i);
297 tc->
setReg(ArmISA::int_reg::X1, (uint64_t)(
i >> 64));
307 template <
typename T>
310 template <
typename E,
size_t N>
313 template <
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);
337 template <
typename HA>
344 constexpr
size_t Count =
sizeof(HA) /
sizeof(Elem);
346 for (
int i = 0;
i < Count;
i++)
356 template <
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);
401 template <
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);
443 #endif // __ARCH_ARM_AAPCS64_HH__