gem5  v20.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/intregs.hh"
37 #include "arch/arm/utility.hh"
38 #include "base/intmath.hh"
39 #include "cpu/thread_context.hh"
40 #include "sim/guest_abi.hh"
41 #include "sim/syscall_emul_buf.hh"
42 
43 class ThreadContext;
44 
45 struct Aapcs32
46 {
47  struct State
48  {
49  bool stackUsed=false; // Whether anything has been put on the stack.
50 
51  int ncrn=0; // Next general purpose register number.
52  Addr nsaa; // Next stacked argument address.
53 
54  // The maximum allowed general purpose register number.
55  static const int MAX_CRN = 3;
56 
58 
59  explicit State(const ThreadContext *tc) :
60  nsaa(tc->readIntReg(ArmISA::INTREG_SPX))
61  {}
62  };
63 };
64 
65 namespace GuestABI
66 {
67 
68 /*
69  * Composite Types
70  */
71 
72 template <typename T, typename Enabled=void>
73 struct IsAapcs32Composite : public std::false_type {};
74 
75 template <typename T>
76 struct IsAapcs32Composite<T, typename std::enable_if<
77  (std::is_array<T>::value ||
78  std::is_class<T>::value ||
79  std::is_union<T>::value) &&
80  // VarArgs is technically a composite type, but it's not a normal argument.
81  !IsVarArgs<T>::value
82  >::type> : public std::true_type
83 {};
84 
85 // Homogeneous Aggregates
86 // These *should* be any aggregate type which has only one type of member, but
87 // we can't actually detect that or manipulate that with templates. Instead,
88 // we approximate that by detecting only arrays with that property.
89 
90 template <typename T, std::size_t count, typename Enabled=void>
92 
93 template <typename T>
94 struct IsAapcs32HomogeneousAggregate : public std::false_type {};
95 
96 template <typename E, size_t N>
97 struct IsAapcs32HomogeneousAggregate<E[N]> : public std::true_type {};
98 
100 {
101  template <typename T>
102  static T
104  {
105  state.stackUsed = true;
106 
107  // The alignment is the larger of 4 or the natural alignment of T.
108  size_t align = std::max<size_t>(4, alignof(T));
109  // Increase the size to the next multiple of 4.
110  size_t size = roundUp(sizeof(T), 4);
111 
112  // Align the stack.
113  state.nsaa = roundUp(state.nsaa, align);
114 
115  // Extract the value from it.
116  TypedBufferArg<T> val(state.nsaa);
117  val.copyIn(tc->getVirtProxy());
118 
119  // Move the nsaa past this argument.
120  state.nsaa += size;
121 
122  // Return the value we extracted.
123  return gtoh(*val, ArmISA::byteOrder(tc));
124  }
125 };
126 
127 
128 /*
129  * Integer arguments and return values.
130  */
131 
132 template <typename Integer>
133 struct Result<Aapcs32, Integer, typename std::enable_if<
134  std::is_integral<Integer>::value && (sizeof(Integer) < sizeof(uint32_t))
135  >::type>
136 {
137  static void
138  store(ThreadContext *tc, const Integer &i)
139  {
140  uint32_t val = std::is_signed<Integer>::value ?
141  sext<sizeof(Integer) * 8>(i) : i;
142  tc->setIntReg(ArmISA::INTREG_R0, val);
143  }
144 };
145 
146 template <typename Integer>
147 struct Result<Aapcs32, Integer, typename std::enable_if<
148  std::is_integral<Integer>::value && (sizeof(Integer) == sizeof(uint32_t))
149  >::type>
150 {
151  static void
152  store(ThreadContext *tc, const Integer &i)
153  {
154  tc->setIntReg(ArmISA::INTREG_R0, (uint32_t)i);
155  }
156 };
157 
158 template <typename Integer>
159 struct Result<Aapcs32, Integer, typename std::enable_if<
160  std::is_integral<Integer>::value && (sizeof(Integer) == sizeof(uint64_t))
161  >::type>
162 {
163  static void
164  store(ThreadContext *tc, const Integer &i)
165  {
166  if (std::is_same<Integer, Addr>::value) {
167  tc->setIntReg(ArmISA::INTREG_R0, (uint32_t)i);
168  } else if (ArmISA::byteOrder(tc) == LittleEndianByteOrder) {
169  tc->setIntReg(ArmISA::INTREG_R0, (uint32_t)(i >> 0));
170  tc->setIntReg(ArmISA::INTREG_R1, (uint32_t)(i >> 32));
171  } else {
172  tc->setIntReg(ArmISA::INTREG_R0, (uint32_t)(i >> 32));
173  tc->setIntReg(ArmISA::INTREG_R1, (uint32_t)(i >> 0));
174  }
175  }
176 };
177 
178 template <typename Integer>
179 struct Argument<Aapcs32, Integer, typename std::enable_if<
180  std::is_integral<Integer>::value && (sizeof(Integer) <= sizeof(uint32_t))
181  >::type> : public Aapcs32ArgumentBase
182 {
183  static Integer
184  get(ThreadContext *tc, Aapcs32::State &state)
185  {
186  if (state.ncrn <= state.MAX_CRN) {
187  return tc->readIntReg(state.ncrn++);
188  }
189 
190  // Max out the ncrn since we effectively exhausted it.
191  state.ncrn = state.MAX_CRN + 1;
192 
193  return loadFromStack<Integer>(tc, state);
194  }
195 };
196 
197 template <typename Integer>
198 struct Argument<Aapcs32, Integer, typename std::enable_if<
199  std::is_integral<Integer>::value && (sizeof(Integer) > sizeof(uint32_t))
200  >::type> : public Aapcs32ArgumentBase
201 {
202  static Integer
203  get(ThreadContext *tc, Aapcs32::State &state)
204  {
205  if (std::is_same<Integer, Addr>::value &&
206  state.ncrn <= state.MAX_CRN) {
207  return tc->readIntReg(state.ncrn++);
208  }
209 
210  if (alignof(Integer) == 8 && (state.ncrn % 2))
211  state.ncrn++;
212 
213  if (sizeof(Integer) == sizeof(uint64_t) &&
214  state.ncrn + 1 <= state.MAX_CRN) {
215  Integer low, high;
217  low = tc->readIntReg(state.ncrn++) & mask(32);
218  high = tc->readIntReg(state.ncrn++) & mask(32);
219  } else {
220  high = tc->readIntReg(state.ncrn++) & mask(32);
221  low = tc->readIntReg(state.ncrn++) & mask(32);
222  }
223  return low | (high << 32);
224  }
225 
226  // Max out the ncrn since we effectively exhausted it.
227  state.ncrn = state.MAX_CRN + 1;
228 
229  return loadFromStack<Integer>(tc, state);
230  }
231 };
232 
233 
234 /*
235  * Floating point and Short-Vector arguments and return values.
236  */
237 
238 template <typename Float>
239 struct Result<Aapcs32, Float, typename std::enable_if<
240  std::is_floating_point<Float>::value>::type>
241 {
242  static void
243  store(ThreadContext *tc, const Float &f, Aapcs32::State &state)
244  {
245  auto i = floatToBits(f);
246  storeResult<Aapcs32, decltype(i)>(tc, i, state);
247  };
248 };
249 
250 template <typename Float>
251 struct Argument<Aapcs32, Float, typename std::enable_if<
252  std::is_floating_point<Float>::value>::type> : public Aapcs32ArgumentBase
253 {
254  static Float
255  get(ThreadContext *tc, Aapcs32::State &state)
256  {
257  if (sizeof(Float) == sizeof(uint32_t)) {
258  return bitsToFloat32(
259  getArgument<Aapcs32, uint32_t>(tc, state));
260  } else {
261  return bitsToFloat64(
262  getArgument<Aapcs32, uint64_t>(tc, state));
263  }
264  }
265 };
266 
267 
268 /*
269  * Composite arguments and return values.
270  */
271 
272 template <typename Composite>
273 struct Result<Aapcs32, Composite, typename std::enable_if<
274  IsAapcs32Composite<Composite>::value>::type>
275 {
276  static void
277  store(ThreadContext *tc, const Composite &composite,
278  Aapcs32::State &state)
279  {
280  if (sizeof(Composite) <= sizeof(uint32_t)) {
281  Composite cp = htog(composite, ArmISA::byteOrder(tc));
282  uint32_t val;
283  memcpy((void *)&val, (void *)&cp, sizeof(Composite));
284  val = gtoh(val, ArmISA::byteOrder(tc));
285  tc->setIntReg(ArmISA::INTREG_R0, val);
286  } else {
288  cp = htog(composite, ArmISA::byteOrder(tc));
289  cp.copyOut(tc->getVirtProxy());
290  }
291  }
292 
293  static void
295  {
296  if (sizeof(Composite) > sizeof(uint32_t))
297  state.retAddr = tc->readIntReg(state.ncrn++);
298  }
299 };
300 
301 template <typename Composite>
302 struct Argument<Aapcs32, Composite, typename std::enable_if<
303  IsAapcs32Composite<Composite>::value>::type> :
304  public Aapcs32ArgumentBase
305 {
306  static Composite
307  get(ThreadContext *tc, Aapcs32::State &state)
308  {
309  size_t bytes = sizeof(Composite);
310  using Chunk = uint32_t;
311 
312  const int chunk_size = sizeof(Chunk);
313  const int regs = (bytes + chunk_size - 1) / chunk_size;
314 
315  if (bytes <= chunk_size) {
316  if (state.ncrn++ <= state.MAX_CRN) {
317  alignas(alignof(Composite)) uint32_t val =
318  tc->readIntReg(state.ncrn++);
319  val = htog(val, ArmISA::byteOrder(tc));
320  return gtoh(*(Composite *)&val, ArmISA::byteOrder(tc));
321  }
322  }
323 
324  if (alignof(Composite) == 8 && (state.ncrn % 2))
325  state.ncrn++;
326 
327  if (state.ncrn + regs - 1 <= state.MAX_CRN) {
328  alignas(alignof(Composite)) uint8_t buf[bytes];
329  for (int i = 0; i < regs; i++) {
330  Chunk val = tc->readIntReg(state.ncrn++);
331  val = htog(val, ArmISA::byteOrder(tc));
332  size_t to_copy = std::min<size_t>(bytes, chunk_size);
333  memcpy(buf + i * chunk_size, &val, to_copy);
334  bytes -= to_copy;
335  }
336  return gtoh(*(Composite *)buf, ArmISA::byteOrder(tc));
337  }
338 
339  if (!state.stackUsed && state.ncrn <= state.MAX_CRN) {
340  alignas(alignof(Composite)) uint8_t buf[bytes];
341 
342  int offset = 0;
343  while (state.ncrn <= state.MAX_CRN) {
344  Chunk val = tc->readIntReg(state.ncrn++);
345  val = htog(val, ArmISA::byteOrder(tc));
346  size_t to_copy = std::min<size_t>(bytes, chunk_size);
347  memcpy(buf + offset, &val, to_copy);
348  offset += to_copy;
349  bytes -= to_copy;
350  }
351 
352  if (bytes) {
353  tc->getVirtProxy().readBlob(state.nsaa, buf, bytes);
354 
355  state.stackUsed = true;
356  state.nsaa += roundUp(bytes, 4);
357  state.ncrn = state.MAX_CRN + 1;
358  }
359 
360  return gtoh(*(Composite *)buf, ArmISA::byteOrder(tc));
361  }
362 
363  state.ncrn = state.MAX_CRN + 1;
364 
365  return loadFromStack<Composite>(tc, state);
366  }
367 };
368 
369 } // namespace GuestABI
370 
371 
372 /*
373  * VFP ABI variant.
374  */
375 
376 struct Aapcs32Vfp : public Aapcs32
377 {
378  struct State : public Aapcs32::State
379  {
380  bool variadic=false; // Whether this function is variadic.
381 
382  // Whether the various single and double precision registers have
383  // been allocated.
384  std::array<bool, 16> s;
385  std::array<bool, 8> d;
386 
387  explicit State(const ThreadContext *tc) : Aapcs32::State(tc)
388  {
389  s.fill(false);
390  d.fill(false);
391  }
392 
393  int
394  allocate(float, int count)
395  {
396  int last = 0;
397  for (int i = 0; i <= s.size() - count; i++) {
398  if (s[i]) {
399  last = i + 1;
400  continue;
401  }
402  if (i - last + 1 == count) {
403  for (int j = 0; j < count; j++) {
404  s[last + j] = true;
405  d[(last + j) / 2] = true;
406  }
407  return last;
408  }
409  }
410  s.fill(true);
411  d.fill(true);
412  return -1;
413  }
414 
415  int
416  allocate(double, int count)
417  {
418  int last = 0;
419  for (int i = 0; i <= d.size() - count; i++) {
420  if (d[i]) {
421  last = i + 1;
422  continue;
423  }
424  if (i - last + 1 == count) {
425  for (int j = 0; j < count; j++) {
426  d[last + j] = true;
427  s[(last + j) * 2] = true;
428  s[(last + j) * 2 + 1] = true;
429  }
430  return last;
431  }
432  }
433  s.fill(true);
434  d.fill(true);
435  return -1;
436  }
437  };
438 };
439 
440 namespace GuestABI
441 {
442 
443 /*
444  * Integer arguments and return values.
445  */
446 
447 template <typename Integer>
448 struct Result<Aapcs32Vfp, Integer, typename std::enable_if<
449  std::is_integral<Integer>::value>::type> : public Result<Aapcs32, Integer>
450 {};
451 
452 template <typename Integer>
453 struct Argument<Aapcs32Vfp, Integer, typename std::enable_if<
454  std::is_integral<Integer>::value>::type> :
455  public Argument<Aapcs32, Integer>
456 {};
457 
458 
459 /*
460  * Floating point arguments and return values.
461  */
462 
463 template <typename Float>
464 struct Result<Aapcs32Vfp, Float, typename std::enable_if<
465  std::is_floating_point<Float>::value>::type>
466 {
467  static void
468  store(ThreadContext *tc, const Float &f, Aapcs32Vfp::State &state)
469  {
470  if (state.variadic) {
471  storeResult<Aapcs32, Float>(tc, f, state);
472  return;
473  }
474 
475  RegId id(VecRegClass, 0);
476  auto reg = tc->readVecReg(id);
477  reg.laneView<Float, 0>() = f;
478  tc->setVecReg(id, reg);
479  };
480 };
481 
482 template <typename Float>
483 struct Argument<Aapcs32Vfp, Float, typename std::enable_if<
484  std::is_floating_point<Float>::value>::type> : public Aapcs32ArgumentBase
485 {
486  static Float
488  {
489  if (state.variadic)
490  return getArgument<Aapcs32, Float>(tc, state);
491 
492  const int index = state.allocate(Float{}, 1);
493 
494  if (index >= 0) {
495  constexpr int lane_per_reg = 16 / sizeof(Float);
496  const int reg = index / lane_per_reg;
497  const int lane = index % lane_per_reg;
498 
499  RegId id(VecRegClass, reg);
500  auto val = tc->readVecReg(id);
501  return val.laneView<Float>(lane);
502  }
503 
504  return loadFromStack<Float>(tc, state);
505  }
506 };
507 
508 
509 /*
510  * Composite arguments and return values which are not Homogeneous Aggregates.
511  */
512 
513 template <typename Composite>
514 struct Result<Aapcs32Vfp, Composite, typename std::enable_if<
515  IsAapcs32Composite<Composite>::value &&
516  !IsAapcs32HomogeneousAggregate<Composite>::value>::type> :
517  public Result<Aapcs32, Composite>
518 {};
519 
520 template <typename Composite>
521 struct Argument<Aapcs32Vfp, Composite, typename std::enable_if<
522  IsAapcs32Composite<Composite>::value &&
523  !IsAapcs32HomogeneousAggregate<Composite>::value>::type> :
524  public Argument<Aapcs32, Composite>
525 {};
526 
527 
528 /*
529  * Homogeneous Aggregate argument and return values.
530  */
531 
532 template <typename T>
533 struct Aapcs32ArrayType { using Type = void; };
534 
535 template <typename E, size_t N>
536 struct Aapcs32ArrayType<E[N]> { using Type = E; };
537 
538 template <typename HA>
539 struct Argument<Aapcs32Vfp, HA, typename std::enable_if<
540  IsAapcs32HomogeneousAggregate<HA>::value>::type> :
541  public Aapcs32ArgumentBase
542 {
543  static bool
545  {
546  using Elem = typename Aapcs32ArrayType<HA>::Type;
547  constexpr size_t Count = sizeof(HA) / sizeof(Elem);
548  return state.variadic || !std::is_floating_point<Elem>::value ||
549  Count > 4;
550  }
551 
552  static HA
554  {
555  using Elem = typename Aapcs32ArrayType<HA>::Type;
556  constexpr size_t Count = sizeof(HA) / sizeof(Elem);
557 
558  if (useBaseABI(state))
559  return getArgument<Aapcs32, HA>(tc, state);
560 
561  const int base = state.allocate(Elem{}, Count);
562  if (base >= 0) {
563  constexpr int lane_per_reg = 16 / sizeof(Elem);
564  HA ha;
565  for (int i = 0; i < Count; i++) {
566  const int index = base + i;
567  const int reg = index / lane_per_reg;
568  const int lane = index % lane_per_reg;
569 
570  RegId id(VecRegClass, reg);
571  auto val = tc->readVecReg(id);
572  ha[i] = val.laneView<Elem>(lane);
573  }
574  return ha;
575  }
576 
577  return loadFromStack<HA>(tc, state);
578  }
579 
580  static void
582  {
583  if (useBaseABI(state))
584  return Argument<Aapcs32, HA>::prepare(tc, state);
585  }
586 };
587 
588 template <typename HA>
589 struct Result<Aapcs32Vfp, HA,
590  typename std::enable_if<IsAapcs32HomogeneousAggregate<HA>::value>::type>
591 {
592  static bool
594  {
595  using Elem = typename Aapcs32ArrayType<HA>::Type;
596  constexpr size_t Count = sizeof(HA) / sizeof(Elem);
597  return state.variadic || !std::is_floating_point<Elem>::value ||
598  Count > 4;
599  }
600 
601  static HA
602  store(ThreadContext *tc, const HA &ha, Aapcs32Vfp::State &state)
603  {
604  using Elem = typename Aapcs32ArrayType<HA>::Type;
605  constexpr size_t Count = sizeof(HA) / sizeof(Elem);
606 
607  if (useBaseABI(state)) {
608  storeResult<Aapcs32, HA>(tc, ha, state);
609  return;
610  }
611 
612  constexpr int lane_per_reg = 16 / sizeof(Elem);
613  for (int i = 0; i < Count; i++) {
614  const int reg = i / lane_per_reg;
615  const int lane = i % lane_per_reg;
616 
617  RegId id(VecRegClass, reg);
618  auto val = tc->readVecReg(id);
619  val.laneView<Elem>(lane) = ha[i];
620  tc->setVecReg(id, val);
621  }
622  }
623 
624  static void
626  {
627  if (useBaseABI(state))
628  return Result<Aapcs32, HA>::prepare(tc, state);
629  }
630 };
631 
632 
633 /*
634  * Varargs
635  */
636 
637 template <typename ...Types>
638 struct Argument<Aapcs32Vfp, VarArgs<Types...>>
639 {
640  static VarArgs<Types...>
641  get(ThreadContext *tc, typename Aapcs32Vfp::State &state)
642  {
643  state.variadic = true;
644  return getArgument<Aapcs32, VarArgs<Types...>>(tc, state);
645  }
646 };
647 
648 } // namespace GuestABI
649 
650 #endif // __ARCH_ARM_AAPCS32_HH__
count
Definition: misc.hh:703
This file defines buffer classes used to handle pointer arguments in emulated syscalls.
static const int MAX_CRN
Definition: aapcs32.hh:55
Bitfield< 30, 0 > index
Bitfield< 5, 3 > reg
Definition: types.hh:87
std::array< bool, 16 > s
Definition: aapcs32.hh:384
T gtoh(T value, ByteOrder guest_byte_order)
Definition: byteswap.hh:162
Bitfield< 7 > i
virtual void setVecReg(const RegId &reg, const VecRegContainer &val)=0
virtual RegVal readIntReg(RegIndex reg_idx) const =0
bool copyIn(PortProxy &memproxy)
copy data into simulator space (read from target memory)
virtual PortProxy & getVirtProxy()=0
Bitfield< 23, 0 > offset
Definition: types.hh:152
Overload hash function for BasicBlockRange type.
Definition: vec_reg.hh:587
static float bitsToFloat32(uint32_t val)
Definition: types.hh:196
Definition: ccregs.hh:41
Definition: cprintf.cc:40
T roundUp(const T &val, const U &align)
This function is used to align addresses in memory.
Definition: intmath.hh:114
TypedBufferArg is a class template; instances of this template represent typed buffers in target user...
ThreadContext is the external interface to all thread state for anything outside of the CPU...
Bitfield< 33 > id
virtual const VecRegContainer & readVecReg(const RegId &reg) const =0
Bitfield< 63 > val
Definition: misc.hh:769
State(const ThreadContext *tc)
Definition: aapcs32.hh:59
Bitfield< 6 > f
static double bitsToFloat64(uint64_t val)
Definition: types.hh:208
uint8_t type
Definition: inet.hh:328
T htog(T value, ByteOrder guest_byte_order)
Definition: byteswap.hh:155
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:2051
uint64_t getArgument(ThreadContext *tc, int &number, uint16_t size, bool fp)
Definition: utility.cc:56
static void store(ThreadContext *tc, const Float &f, Aapcs32::State &state)
Definition: aapcs32.hh:243
State(const ThreadContext *tc)
Definition: aapcs32.hh:387
Bitfield< 51, 12 > base
Definition: pagetable.hh:141
Addr retAddr
Definition: aapcs32.hh:57
T[count] Aapcs32HomogeneousAggregate
Definition: aapcs32.hh:91
static void store(ThreadContext *tc, const Float &f, Aapcs32Vfp::State &state)
Definition: aapcs32.hh:468
int allocate(float, int count)
Definition: aapcs32.hh:394
virtual void setIntReg(RegIndex reg_idx, RegVal val)=0
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
Bitfield< 39 > ha
void readBlob(Addr addr, void *p, int size) const
Higher level interfaces based on the above.
Definition: port_proxy.hh:177
Bitfield< 24 > j
bool stackUsed
Definition: aapcs32.hh:49
bool copyOut(PortProxy &memproxy)
copy data out of simulator space (write to target memory)
static void store(ThreadContext *tc, const Composite &composite, Aapcs32::State &state)
Definition: aapcs32.hh:277
Register ID: describe an architectural register with its class and index.
Definition: reg_class.hh:75
std::array< bool, 8 > d
Definition: aapcs32.hh:385
Bitfield< 3, 0 > mask
Definition: types.hh:62
Vector Register.
Definition: reg_class.hh:56
static uint64_t floatToBits(double val)
Definition: types.hh:192
static T loadFromStack(ThreadContext *tc, Aapcs32::State &state)
Definition: aapcs32.hh:103
int allocate(double, int count)
Definition: aapcs32.hh:416
Bitfield< 31, 0 > E
Definition: int.hh:51
ByteOrder byteOrder(const ThreadContext *tc)
Definition: utility.hh:437

Generated on Thu May 28 2020 16:11:00 for gem5 by doxygen 1.8.13