gem5  v22.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
aapcs32.hh
Go to the documentation of this file.
1 /*
2  * Copyright 2019 Google Inc.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met: redistributions of source code must retain the above copyright
7  * notice, this list of conditions and the following disclaimer;
8  * redistributions in binary form must reproduce the above copyright
9  * notice, this list of conditions and the following disclaimer in the
10  * documentation and/or other materials provided with the distribution;
11  * neither the name of the copyright holders nor the names of its
12  * contributors may be used to endorse or promote products derived from
13  * this software without specific prior written permission.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
18  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 #ifndef __ARCH_ARM_AAPCS32_HH__
29 #define __ARCH_ARM_AAPCS32_HH__
30 
31 #include <algorithm>
32 #include <array>
33 #include <type_traits>
34 #include <utility>
35 
36 #include "arch/arm/regs/int.hh"
37 #include "arch/arm/utility.hh"
38 #include "base/intmath.hh"
39 #include "cpu/thread_context.hh"
40 #include "mem/port_proxy.hh"
43 #include "sim/full_system.hh"
44 #include "sim/guest_abi.hh"
45 #include "sim/proxy_ptr.hh"
46 
47 namespace gem5
48 {
49 
50 class ThreadContext;
51 
52 struct Aapcs32
53 {
54  struct State
55  {
56  bool stackUsed=false; // Whether anything has been put on the stack.
57 
58  int ncrn=0; // Next general purpose register number.
59  Addr nsaa; // Next stacked argument address.
60 
61  // The maximum allowed general purpose register number.
62  static const int MAX_CRN = 3;
63 
65 
66  explicit State(const ThreadContext *tc) :
67  nsaa(tc->getReg(ArmISA::int_reg::Spx))
68  {}
69  };
70 };
71 
72 GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi);
73 namespace guest_abi
74 {
75 
76 /*
77  * Composite Types
78  */
79 
80 template <typename T, typename Enabled=void>
81 struct IsAapcs32Composite : public std::false_type {};
82 
83 template <typename T>
84 struct IsAapcs32Composite<T, typename std::enable_if_t<
85  (std::is_array_v<T> || std::is_class_v<T> || std::is_union_v<T>) &&
86  // VarArgs is technically a composite type, but it's not a normal argument.
87  !IsVarArgsV<T>
88  >> : public std::true_type
89 {};
90 
91 template <typename T>
93 
94 // Homogeneous Aggregates
95 // These *should* be any aggregate type which has only one type of member, but
96 // we can't actually detect that or manipulate that with templates. Instead,
97 // we approximate that by detecting only arrays with that property.
98 
99 template <typename T, std::size_t count, typename Enabled=void>
101 
102 template <typename T>
103 struct IsAapcs32HomogeneousAggregate : public std::false_type {};
104 
105 template <typename E, size_t N>
106 struct IsAapcs32HomogeneousAggregate<E[N]> : public std::true_type {};
107 
108 template <typename T>
111 
113 {
114  template <typename T>
115  static T
117  {
118  state.stackUsed = true;
119 
120  // The alignment is the larger of 4 or the natural alignment of T.
121  size_t align = std::max<size_t>(4, alignof(T));
122  // Increase the size to the next multiple of 4.
123  size_t size = roundUp(sizeof(T), 4);
124 
125  // Align the stack.
126  state.nsaa = roundUp(state.nsaa, align);
127 
128  // Extract the value from it.
129  ConstVPtr<T> val(state.nsaa, tc);
130 
131  // Move the nsaa past this argument.
132  state.nsaa += size;
133 
134  // Return the value we extracted.
135  return gtoh(*val, ArmISA::byteOrder(tc));
136  }
137 };
138 
139 
140 /*
141  * Integer arguments and return values.
142  */
143 
144 template <typename Integer>
145 struct Result<Aapcs32, Integer, typename std::enable_if_t<
146  std::is_integral_v<Integer> && (sizeof(Integer) < sizeof(uint32_t))>>
147 {
148  static void
149  store(ThreadContext *tc, const Integer &i)
150  {
151  uint32_t val = std::is_signed_v<Integer> ?
152  sext<sizeof(Integer) * 8>(i) : i;
154  }
155 };
156 
157 template <typename Integer>
158 struct Result<Aapcs32, Integer, typename std::enable_if_t<
159  std::is_integral_v<Integer> && (sizeof(Integer) == sizeof(uint32_t))>>
160 {
161  static void
162  store(ThreadContext *tc, const Integer &i)
163  {
164  tc->setReg(ArmISA::int_reg::R0, (uint32_t)i);
165  }
166 };
167 
168 template <typename Integer>
169 struct Result<Aapcs32, Integer, typename std::enable_if_t<
170  std::is_integral_v<Integer> && (sizeof(Integer) == sizeof(uint64_t))>>
171 {
172  static void
173  store(ThreadContext *tc, const Integer &i)
174  {
175  if (ArmISA::byteOrder(tc) == ByteOrder::little) {
176  tc->setReg(ArmISA::int_reg::R0, (uint32_t)(i >> 0));
177  tc->setReg(ArmISA::int_reg::R1, (uint32_t)(i >> 32));
178  } else {
179  tc->setReg(ArmISA::int_reg::R0, (uint32_t)(i >> 32));
180  tc->setReg(ArmISA::int_reg::R1, (uint32_t)(i >> 0));
181  }
182  }
183 };
184 
185 template <typename Integer>
186 struct Argument<Aapcs32, Integer, typename std::enable_if_t<
187  std::is_integral_v<Integer> && (sizeof(Integer) <= sizeof(uint32_t))
188  >> : public Aapcs32ArgumentBase
189 {
190  static Integer
192  {
193  if (state.ncrn <= state.MAX_CRN) {
194  return tc->getReg(RegId(IntRegClass, state.ncrn++));
195  }
196 
197  // Max out the ncrn since we effectively exhausted it.
198  state.ncrn = state.MAX_CRN + 1;
199 
200  return loadFromStack<Integer>(tc, state);
201  }
202 };
203 
204 template <typename Integer>
205 struct Argument<Aapcs32, Integer, typename std::enable_if_t<
206  std::is_integral_v<Integer> && (sizeof(Integer) > sizeof(uint32_t))
207  >> : public Aapcs32ArgumentBase
208 {
209  static Integer
211  {
212  if (alignof(Integer) == 8 && (state.ncrn % 2))
213  state.ncrn++;
214 
215  if (sizeof(Integer) == sizeof(uint64_t) &&
216  state.ncrn + 1 <= state.MAX_CRN) {
217  Integer low, high;
218  if (ArmISA::byteOrder(tc) == ByteOrder::little) {
219  low = tc->getReg(RegId(IntRegClass, state.ncrn++)) & mask(32);
220  high = tc->getReg(RegId(IntRegClass, state.ncrn++)) & mask(32);
221  } else {
222  high = tc->getReg(RegId(IntRegClass, state.ncrn++)) & mask(32);
223  low = tc->getReg(RegId(IntRegClass, state.ncrn++)) & mask(32);
224  }
225  return low | (high << 32);
226  }
227 
228  // Max out the ncrn since we effectively exhausted it.
229  state.ncrn = state.MAX_CRN + 1;
230 
231  return loadFromStack<Integer>(tc, state);
232  }
233 };
234 
235 
236 /*
237  * Floating point and Short-Vector arguments and return values.
238  */
239 
240 template <typename Float>
241 struct Result<Aapcs32, Float, typename std::enable_if_t<
242  std::is_floating_point_v<Float>>>
243 {
244  static void
245  store(ThreadContext *tc, const Float &f, Aapcs32::State &state)
246  {
247  auto i = floatToBits(f);
248  storeResult<Aapcs32, decltype(i)>(tc, i, state);
249  };
250 };
251 
252 template <typename Float>
253 struct Argument<Aapcs32, Float, typename std::enable_if_t<
254  std::is_floating_point_v<Float>>> : public Aapcs32ArgumentBase
255 {
256  static Float
258  {
259  if (sizeof(Float) == sizeof(uint32_t)) {
260  return bitsToFloat32(
261  getArgument<Aapcs32, uint32_t>(tc, state));
262  } else {
263  return bitsToFloat64(
264  getArgument<Aapcs32, uint64_t>(tc, state));
265  }
266  }
267 };
268 
269 
270 /*
271  * Composite arguments and return values.
272  */
273 
274 template <typename Composite>
275 struct Result<Aapcs32, Composite, typename std::enable_if_t<
276  IsAapcs32CompositeV<Composite>>>
277 {
278  static void
279  store(ThreadContext *tc, const Composite &composite,
281  {
282  if (sizeof(Composite) <= sizeof(uint32_t)) {
283  Composite cp = htog(composite, ArmISA::byteOrder(tc));
284  uint32_t val;
285  memcpy((void *)&val, (void *)&cp, sizeof(Composite));
286  val = gtoh(val, ArmISA::byteOrder(tc));
288  } else {
289  VPtr<Composite> cp(state.retAddr, tc);
290  *cp = htog(composite, ArmISA::byteOrder(tc));
291  }
292  }
293 
294  static void
296  {
297  if (sizeof(Composite) > sizeof(uint32_t))
298  state.retAddr = tc->getReg(RegId(IntRegClass, state.ncrn++));
299  }
300 };
301 
302 template <typename Composite>
303 struct Argument<Aapcs32, Composite, typename std::enable_if_t<
304  IsAapcs32CompositeV<Composite>>> :
305  public Aapcs32ArgumentBase
306 {
307  static Composite
309  {
310  size_t bytes = sizeof(Composite);
311  using Chunk = uint32_t;
312 
313  const int chunk_size = sizeof(Chunk);
314  const int regs = (bytes + chunk_size - 1) / chunk_size;
315 
316  if (bytes <= chunk_size) {
317  if (state.ncrn++ <= state.MAX_CRN) {
318  alignas(alignof(Composite)) uint32_t val =
319  tc->getReg(RegId(IntRegClass, state.ncrn++));
320  val = htog(val, ArmISA::byteOrder(tc));
321  return gtoh(*(Composite *)&val, ArmISA::byteOrder(tc));
322  }
323  }
324 
325  if (alignof(Composite) == 8 && (state.ncrn % 2))
326  state.ncrn++;
327 
328  if (state.ncrn + regs - 1 <= state.MAX_CRN) {
329  alignas(alignof(Composite)) uint8_t buf[bytes];
330  for (int i = 0; i < regs; i++) {
331  Chunk val = tc->getReg(RegId(IntRegClass, state.ncrn++));
332  val = htog(val, ArmISA::byteOrder(tc));
333  size_t to_copy = std::min<size_t>(bytes, chunk_size);
334  memcpy(buf + i * chunk_size, &val, to_copy);
335  bytes -= to_copy;
336  }
337  return gtoh(*(Composite *)buf, ArmISA::byteOrder(tc));
338  }
339 
340  if (!state.stackUsed && state.ncrn <= state.MAX_CRN) {
341  alignas(alignof(Composite)) uint8_t buf[bytes];
342 
343  int offset = 0;
344  while (state.ncrn <= state.MAX_CRN) {
345  Chunk val = tc->getReg(RegId(IntRegClass, state.ncrn++));
346  val = htog(val, ArmISA::byteOrder(tc));
347  size_t to_copy = std::min<size_t>(bytes, chunk_size);
348  memcpy(buf + offset, &val, to_copy);
349  offset += to_copy;
350  bytes -= to_copy;
351  }
352 
353  if (bytes) {
355  SETranslatingPortProxy(tc)).readBlob(
356  state.nsaa, buf, bytes);
357 
358  state.stackUsed = true;
359  state.nsaa += roundUp(bytes, 4);
360  state.ncrn = state.MAX_CRN + 1;
361  }
362 
363  return gtoh(*(Composite *)buf, ArmISA::byteOrder(tc));
364  }
365 
366  state.ncrn = state.MAX_CRN + 1;
367 
368  return loadFromStack<Composite>(tc, state);
369  }
370 };
371 
372 } // namespace guest_abi
373 
374 
375 /*
376  * VFP ABI variant.
377  */
378 
379 struct Aapcs32Vfp : public Aapcs32
380 {
381  struct State : public Aapcs32::State
382  {
383  bool variadic=false; // Whether this function is variadic.
384 
385  // Whether the various single and double precision registers have
386  // been allocated.
387  std::array<bool, 16> s;
388  std::array<bool, 8> d;
389 
390  explicit State(const ThreadContext *tc) : Aapcs32::State(tc)
391  {
392  s.fill(false);
393  d.fill(false);
394  }
395 
396  int
397  allocate(float, int count)
398  {
399  int last = 0;
400  for (int i = 0; i <= s.size() - count; i++) {
401  if (s[i]) {
402  last = i + 1;
403  continue;
404  }
405  if (i - last + 1 == count) {
406  for (int j = 0; j < count; j++) {
407  s[last + j] = true;
408  d[(last + j) / 2] = true;
409  }
410  return last;
411  }
412  }
413  s.fill(true);
414  d.fill(true);
415  return -1;
416  }
417 
418  int
419  allocate(double, int count)
420  {
421  int last = 0;
422  for (int i = 0; i <= d.size() - count; i++) {
423  if (d[i]) {
424  last = i + 1;
425  continue;
426  }
427  if (i - last + 1 == count) {
428  for (int j = 0; j < count; j++) {
429  d[last + j] = true;
430  s[(last + j) * 2] = true;
431  s[(last + j) * 2 + 1] = true;
432  }
433  return last;
434  }
435  }
436  s.fill(true);
437  d.fill(true);
438  return -1;
439  }
440  };
441 };
442 
443 GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi);
444 namespace guest_abi
445 {
446 
447 /*
448  * Integer arguments and return values.
449  */
450 
451 template <typename Integer>
452 struct Result<Aapcs32Vfp, Integer, typename std::enable_if_t<
453  std::is_integral_v<Integer>>> : public Result<Aapcs32, Integer>
454 {};
455 
456 template <typename Integer>
457 struct Argument<Aapcs32Vfp, Integer, typename std::enable_if_t<
458  std::is_integral_v<Integer>>> : public Argument<Aapcs32, Integer>
459 {};
460 
461 
462 /*
463  * Floating point arguments and return values.
464  */
465 
466 template <typename Float>
467 struct Result<Aapcs32Vfp, Float, typename std::enable_if_t<
468  std::is_floating_point_v<Float>>>
469 {
470  static void
472  {
473  if (state.variadic) {
474  storeResult<Aapcs32, Float>(tc, f, state);
475  return;
476  }
477 
478  auto bytes = floatToBits(f);
479  auto *vec_elems = static_cast<ArmISA::VecElem *>(&bytes);
480  constexpr int chunks = sizeof(Float) / sizeof(ArmISA::VecElem);
481  for (int chunk = 0; chunk < chunks; chunk++)
482  tc->setReg(RegId(VecElemClass, chunk), vec_elems[chunk]);
483  };
484 };
485 
486 template <typename Float>
487 struct Argument<Aapcs32Vfp, Float, typename std::enable_if_t<
488  std::is_floating_point_v<Float>>> : public Aapcs32ArgumentBase
489 {
490  static Float
492  {
493  if (state.variadic)
494  return getArgument<Aapcs32, Float>(tc, state);
495 
496  const int index = state.allocate(Float{}, 1);
497 
498  if (index < 0)
499  return loadFromStack<Float>(tc, state);
500 
501  decltype(floatToBits(Float{})) result;
502  auto *vec_elems = static_cast<ArmISA::VecElem *>(&result);
503 
504  constexpr int chunks = sizeof(Float) / sizeof(ArmISA::VecElem);
505  for (int chunk = 0; chunk < chunks; chunk++)
506  vec_elems[chunk] = tc->getReg(RegId(VecElemClass, chunk));
507 
508  return bitsToFloat(result);
509  }
510 };
511 
512 
513 /*
514  * Composite arguments and return values which are not Homogeneous Aggregates.
515  */
516 
517 template <typename Composite>
518 struct Result<Aapcs32Vfp, Composite, typename std::enable_if_t<
519  IsAapcs32CompositeV<Composite> &&
520  !IsAapcs32HomogeneousAggregateV<Composite>>> :
521  public Result<Aapcs32, Composite>
522 {};
523 
524 template <typename Composite>
525 struct Argument<Aapcs32Vfp, Composite, typename std::enable_if_t<
526  IsAapcs32CompositeV<Composite> &&
527  !IsAapcs32HomogeneousAggregateV<Composite>>> :
528  public Argument<Aapcs32, Composite>
529 {};
530 
531 
532 /*
533  * Homogeneous Aggregate argument and return values.
534  */
535 
536 template <typename T>
537 struct Aapcs32ArrayType { using Type = void; };
538 
539 template <typename E, size_t N>
540 struct Aapcs32ArrayType<E[N]> { using Type = E; };
541 
542 template <typename HA>
543 struct Argument<Aapcs32Vfp, HA, typename std::enable_if_t<
544  IsAapcs32HomogeneousAggregateV<HA>>> :
545  public Aapcs32ArgumentBase
546 {
547  static bool
549  {
550  using Elem = typename Aapcs32ArrayType<HA>::Type;
551  constexpr size_t Count = sizeof(HA) / sizeof(Elem);
552  return state.variadic || !std::is_floating_point_v<Elem> ||
553  Count > 4;
554  }
555 
556  static HA
558  {
559  using Elem = typename Aapcs32ArrayType<HA>::Type;
560  constexpr size_t Count = sizeof(HA) / sizeof(Elem);
561 
562  if (useBaseABI(state))
563  return getArgument<Aapcs32, HA>(tc, state);
564 
565  const int base = state.allocate(Elem{}, Count);
566  if (base >= 0) {
567  constexpr int lane_per_reg = 16 / sizeof(Elem);
568  HA ha;
569  for (int i = 0; i < Count; i++) {
570  const int index = base + i;
571  const int reg = index / lane_per_reg;
572  const int lane = index % lane_per_reg;
573 
576  tc->getReg(id, &val);
577  ha[i] = val.as<Elem>()[lane];
578  }
579  return ha;
580  }
581 
582  return loadFromStack<HA>(tc, state);
583  }
584 
585  static void
587  {
588  if (useBaseABI(state))
590  }
591 };
592 
593 template <typename HA>
594 struct Result<Aapcs32Vfp, HA,
595  typename std::enable_if_t<IsAapcs32HomogeneousAggregateV<HA>>>
596 {
597  static bool
599  {
600  using Elem = typename Aapcs32ArrayType<HA>::Type;
601  constexpr size_t Count = sizeof(HA) / sizeof(Elem);
602  return state.variadic || !std::is_floating_point_v<Elem> ||
603  Count > 4;
604  }
605 
606  static HA
608  {
609  using Elem = typename Aapcs32ArrayType<HA>::Type;
610  constexpr size_t Count = sizeof(HA) / sizeof(Elem);
611 
612  if (useBaseABI(state)) {
613  storeResult<Aapcs32, HA>(tc, ha, state);
614  return;
615  }
616 
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;
621 
624  tc->getReg(id, &val);
625  val.as<Elem>()[lane] = ha[i];
626  tc->setReg(id, &val);
627  }
628  }
629 
630  static void
632  {
633  if (useBaseABI(state))
635  }
636 };
637 
638 
639 /*
640  * Varargs
641  */
642 
643 template <typename ...Types>
644 struct Argument<Aapcs32Vfp, VarArgs<Types...>>
645 {
646  static VarArgs<Types...>
648  {
649  state.variadic = true;
650  return getArgument<Aapcs32, VarArgs<Types...>>(tc, state);
651  }
652 };
653 
654 } // namespace guest_abi
655 } // namespace gem5
656 
657 #endif // __ARCH_ARM_AAPCS32_HH__
gem5::Aapcs32Vfp::State::allocate
int allocate(double, int count)
Definition: aapcs32.hh:419
gem5::Aapcs32Vfp::State::State
State(const ThreadContext *tc)
Definition: aapcs32.hh:390
gem5::VegaISA::f
Bitfield< 56 > f
Definition: pagetable.hh:53
gem5::SETranslatingPortProxy
Definition: se_translating_port_proxy.hh:49
gem5::guest_abi::Result< Aapcs32Vfp, HA, typename std::enable_if_t< IsAapcs32HomogeneousAggregateV< HA > > >::prepare
static void prepare(ThreadContext *tc, Aapcs32Vfp::State &state)
Definition: aapcs32.hh:631
gem5::bitsToFloat32
static float bitsToFloat32(uint32_t val)
Definition: types.hh:206
gem5::ConstProxyPtr
Definition: proxy_ptr.hh:109
gem5::PowerISA::int_reg::R1
constexpr RegId R1(IntRegClass, _R1Idx)
gem5::guest_abi::getArgument
static Arg getArgument(ThreadContext *tc, typename ABI::State &state)
Definition: layout.hh:171
gem5::Aapcs32Vfp
Definition: aapcs32.hh:379
gem5::VecElemClass
@ VecElemClass
Vector Register Native Elem lane.
Definition: reg_class.hh:63
gem5::MipsISA::index
Bitfield< 30, 0 > index
Definition: pra_constants.hh:47
gem5::ThreadContext::getReg
virtual RegVal getReg(const RegId &reg) const
Definition: thread_context.cc:171
gem5::Aapcs32::State::retAddr
Addr retAddr
Definition: aapcs32.hh:64
gem5::guest_abi::Argument< Aapcs32, Float, typename std::enable_if_t< std::is_floating_point_v< Float > > >::get
static Float get(ThreadContext *tc, Aapcs32::State &state)
Definition: aapcs32.hh:257
gem5::Aapcs32::State
Definition: aapcs32.hh:54
gem5::bitsToFloat64
static double bitsToFloat64(uint64_t val)
Definition: types.hh:218
gem5::guest_abi::enable_if_t< std::is_integral_v< Integer > &&(sizeof(Integer)<=sizeof(uint32_t)) > >::get
static Integer get(ThreadContext *tc, Aapcs32::State &state)
Definition: aapcs32.hh:191
gem5::Aapcs32
Definition: aapcs32.hh:52
translating_port_proxy.hh
gem5::guest_abi::Argument< Aapcs32Vfp, HA, typename std::enable_if_t< IsAapcs32HomogeneousAggregateV< HA > > >::prepare
static void prepare(ThreadContext *tc, Aapcs32Vfp::State &state)
Definition: aapcs32.hh:586
gem5::X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:769
gem5::guest_abi::enable_if_t< std::is_integral_v< Integer > &&(sizeof(Integer)< sizeof(uint32_t))> >::store
static void store(ThreadContext *tc, const Integer &i)
Definition: aapcs32.hh:149
gem5::guest_abi::Result< Aapcs32, Composite, typename std::enable_if_t< IsAapcs32CompositeV< Composite > > >::store
static void store(ThreadContext *tc, const Composite &composite, Aapcs32::State &state)
Definition: aapcs32.hh:279
gem5::ArmISA::byteOrder
ByteOrder byteOrder(const ThreadContext *tc)
Definition: utility.hh:370
proxy_ptr.hh
gem5::X86ISA::base
Bitfield< 51, 12 > base
Definition: pagetable.hh:141
gem5::guest_abi::Aapcs32ArgumentBase::loadFromStack
static T loadFromStack(ThreadContext *tc, Aapcs32::State &state)
Definition: aapcs32.hh:116
gem5::Aapcs32Vfp::State::variadic
bool variadic
Definition: aapcs32.hh:383
gem5::ArmISA::i
Bitfield< 7 > i
Definition: misc_types.hh:67
gem5::Aapcs32Vfp::State::d
std::array< bool, 8 > d
Definition: aapcs32.hh:388
gem5::guest_abi::Aapcs32ArrayType
Definition: aapcs32.hh:537
gem5::Aapcs32::State::ncrn
int ncrn
Definition: aapcs32.hh:58
sc_dt::align
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)
Definition: scfx_rep.cc:2083
gem5::mask
constexpr uint64_t mask(unsigned nbits)
Generate a 64-bit mask of 'nbits' 1s, right justified.
Definition: bitfield.hh:63
gem5::guest_abi::Result< Aapcs32, Integer, typename std::enable_if_t< std::is_integral_v< Integer > &&(sizeof(Integer)==sizeof(uint64_t))> >::store
static void store(ThreadContext *tc, const Integer &i)
Definition: aapcs32.hh:173
gem5::TranslatingPortProxy
This proxy attempts to translate virtual addresses using the TLBs.
Definition: translating_port_proxy.hh:60
gem5::guest_abi::Result< Aapcs32, Float, typename std::enable_if_t< std::is_floating_point_v< Float > > >::store
static void store(ThreadContext *tc, const Float &f, Aapcs32::State &state)
Definition: aapcs32.hh:245
gem5::guest_abi::Result< Aapcs32Vfp, HA, typename std::enable_if_t< IsAapcs32HomogeneousAggregateV< HA > > >::store
static HA store(ThreadContext *tc, const HA &ha, Aapcs32Vfp::State &state)
Definition: aapcs32.hh:607
gem5::guest_abi::Argument< Aapcs32, Composite, typename std::enable_if_t< IsAapcs32CompositeV< Composite > > >::get
static Composite get(ThreadContext *tc, Aapcs32::State &state)
Definition: aapcs32.hh:308
gem5::Aapcs32::State::State
State(const ThreadContext *tc)
Definition: aapcs32.hh:66
gem5::ArmISA::j
Bitfield< 24 > j
Definition: misc_types.hh:57
gem5::floatToBits
static uint64_t floatToBits(double val)
Definition: types.hh:202
gem5::high
high
Definition: intmath.hh:176
gem5::guest_abi::IsAapcs32HomogeneousAggregate
Definition: aapcs32.hh:103
gem5::VecRegContainer
Vector Register Abstraction This generic class is the model in a particularization of MVC,...
Definition: vec_reg.hh:123
gem5::ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:94
gem5::guest_abi::Argument< Aapcs32Vfp, HA, typename std::enable_if_t< IsAapcs32HomogeneousAggregateV< HA > > >::get
static HA get(ThreadContext *tc, Aapcs32Vfp::State &state)
Definition: aapcs32.hh:557
gem5::X86ISA::count
count
Definition: misc.hh:703
port_proxy.hh
gem5::gtoh
T gtoh(T value, ByteOrder guest_byte_order)
Definition: byteswap.hh:194
gem5::guest_abi::Argument< Aapcs32Vfp, HA, typename std::enable_if_t< IsAapcs32HomogeneousAggregateV< HA > > >::useBaseABI
static bool useBaseABI(Aapcs32Vfp::State &state)
Definition: aapcs32.hh:548
gem5::Aapcs32Vfp::State::allocate
int allocate(float, int count)
Definition: aapcs32.hh:397
gem5::Aapcs32Vfp::State::s
std::array< bool, 16 > s
Definition: aapcs32.hh:387
gem5::htog
T htog(T value, ByteOrder guest_byte_order)
Definition: byteswap.hh:187
gem5::ProxyPtr
Definition: proxy_ptr.hh:238
gem5::bitsToFloat
static double bitsToFloat(uint64_t val)
Definition: types.hh:229
gem5::ArmISA::offset
Bitfield< 23, 0 > offset
Definition: types.hh:144
gem5::PowerISA::int_reg::R0
constexpr RegId R0(IntRegClass, _R0Idx)
gem5::guest_abi::Aapcs32ArrayType::Type
void Type
Definition: aapcs32.hh:537
gem5::guest_abi::IsAapcs32Composite
Definition: aapcs32.hh:81
gem5::Aapcs32::State::nsaa
Addr nsaa
Definition: aapcs32.hh:59
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
gem5::GEM5_DEPRECATED_NAMESPACE
GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi)
utility.hh
full_system.hh
gem5::X86ISA::reg
Bitfield< 5, 3 > reg
Definition: types.hh:92
gem5::guest_abi::Argument< Aapcs32Vfp, VarArgs< Types... > >::get
static VarArgs< Types... > get(ThreadContext *tc, typename Aapcs32Vfp::State &state)
Definition: aapcs32.hh:647
gem5::FullSystem
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
Definition: root.cc:220
gem5::Aapcs32::State::MAX_CRN
static const int MAX_CRN
Definition: aapcs32.hh:62
gem5::IntRegClass
@ IntRegClass
Integer register.
Definition: reg_class.hh:58
gem5::guest_abi::Result< Aapcs32, Composite, typename std::enable_if_t< IsAapcs32CompositeV< Composite > > >::prepare
static void prepare(ThreadContext *tc, Aapcs32::State &state)
Definition: aapcs32.hh:295
state
atomic_var_t state
Definition: helpers.cc:188
gem5::guest_abi::Argument< Aapcs32Vfp, Float, typename std::enable_if_t< std::is_floating_point_v< Float > > >::get
static Float get(ThreadContext *tc, Aapcs32Vfp::State &state)
Definition: aapcs32.hh:491
gem5::guest_abi::IsAapcs32HomogeneousAggregateV
constexpr bool IsAapcs32HomogeneousAggregateV
Definition: aapcs32.hh:109
gem5::guest_abi::IsAapcs32CompositeV
constexpr bool IsAapcs32CompositeV
Definition: aapcs32.hh:92
std
Overload hash function for BasicBlockRange type.
Definition: misc.hh:2388
gem5::ArmISA::VecElem
uint32_t VecElem
Definition: vec.hh:60
guest_abi.hh
gem5::X86ISA::E
Bitfield< 31, 0 > E
Definition: int.hh:55
gem5::roundUp
static constexpr T roundUp(const T &val, const U &align)
This function is used to align addresses in memory.
Definition: intmath.hh:260
gem5::guest_abi::Result< Aapcs32Vfp, HA, typename std::enable_if_t< IsAapcs32HomogeneousAggregateV< HA > > >::useBaseABI
static bool useBaseABI(Aapcs32Vfp::State &state)
Definition: aapcs32.hh:598
gem5::ArmISA::id
Bitfield< 33 > id
Definition: misc_types.hh:251
gem5::guest_abi::Aapcs32ArgumentBase
Definition: aapcs32.hh:112
gem5::guest_abi::Argument
Definition: definition.hh:99
se_translating_port_proxy.hh
gem5::Aapcs32Vfp::State
Definition: aapcs32.hh:381
gem5::VecRegClass
@ VecRegClass
Vector Register.
Definition: reg_class.hh:61
gem5::guest_abi::VarArgs
Definition: varargs.hh:150
intmath.hh
gem5::guest_abi::Result
Definition: definition.hh:64
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
gem5::ArmISA::ha
Bitfield< 39 > ha
Definition: misc_types.hh:544
gem5::guest_abi::Aapcs32ArrayType< E[N]>::Type
E Type
Definition: aapcs32.hh:540
int.hh
thread_context.hh
gem5::guest_abi::Result< Aapcs32, Integer, typename std::enable_if_t< std::is_integral_v< Integer > &&(sizeof(Integer)==sizeof(uint32_t))> >::store
static void store(ThreadContext *tc, const Integer &i)
Definition: aapcs32.hh:162
gem5::Aapcs32::State::stackUsed
bool stackUsed
Definition: aapcs32.hh:56
gem5::guest_abi::Aapcs32HomogeneousAggregate
T[count] Aapcs32HomogeneousAggregate
Definition: aapcs32.hh:100
gem5::RegId
Register ID: describe an architectural register with its class and index.
Definition: reg_class.hh:126
gem5::guest_abi::getReg
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, &reg)
Definition: aapcs64.hh:223
gem5::guest_abi::Result< Aapcs32Vfp, Float, typename std::enable_if_t< std::is_floating_point_v< Float > > >::store
static void store(ThreadContext *tc, const Float &f, Aapcs32Vfp::State &state)
Definition: aapcs32.hh:471
gem5::ThreadContext::setReg
virtual void setReg(const RegId &reg, RegVal val)
Definition: thread_context.cc:183

Generated on Thu Jun 16 2022 10:41:36 for gem5 by doxygen 1.8.17