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

Generated on Tue Jun 22 2021 15:28:19 for gem5 by doxygen 1.8.17