gem5  v20.0.0.3
isa.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010, 2012-2020 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2009 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 #ifndef __ARCH_ARM_ISA_HH__
42 #define __ARCH_ARM_ISA_HH__
43 
44 #include "arch/arm/isa_device.hh"
45 #include "arch/arm/miscregs.hh"
46 #include "arch/arm/registers.hh"
47 #include "arch/arm/system.hh"
48 #include "arch/arm/tlb.hh"
49 #include "arch/arm/types.hh"
50 #include "arch/generic/isa.hh"
51 #include "arch/generic/traits.hh"
52 #include "debug/Checkpoint.hh"
53 #include "enums/DecoderFlavor.hh"
54 #include "enums/VecRegRenameMode.hh"
55 #include "sim/sim_object.hh"
56 
57 struct ArmISAParams;
58 struct DummyArmISADeviceParams;
59 class ThreadContext;
60 class Checkpoint;
61 class EventManager;
62 
63 namespace ArmISA
64 {
65  class ISA : public BaseISA
66  {
67  protected:
68  // Parent system
70 
71  // Micro Architecture
72  const Enums::DecoderFlavor _decoderFlavor;
73  const Enums::VecRegRenameMode _vecRegRenameMode;
74 
77 
78  // PMU belonging to this ISA
80 
81  // Generic timer interface belonging to this ISA
82  std::unique_ptr<BaseISADevice> timer;
83 
84  // GICv3 CPU interface belonging to this ISA
85  std::unique_ptr<BaseISADevice> gicv3CpuInterface;
86 
87  // Cached copies of system-level properties
90  bool haveLPAE;
92  bool haveCrypto;
94  uint8_t physAddrRange;
95  bool haveSVE;
96  bool haveLSE;
97  bool havePAN;
98 
100  unsigned sveVL;
101 
107 
109 
112  uint32_t lower; // Lower half mapped to this register
113  uint32_t upper; // Upper half mapped to this register
114  uint64_t _reset; // value taken on reset (i.e. initialization)
115  uint64_t _res0; // reserved
116  uint64_t _res1; // reserved
117  uint64_t _raz; // read as zero (fixed at 0)
118  uint64_t _rao; // read as one (fixed at 1)
119  public:
121  lower(0), upper(0),
122  _reset(0), _res0(0), _res1(0), _raz(0), _rao(0) {}
123  uint64_t reset() const { return _reset; }
124  uint64_t res0() const { return _res0; }
125  uint64_t res1() const { return _res1; }
126  uint64_t raz() const { return _raz; }
127  uint64_t rao() const { return _rao; }
128  // raz/rao implies writes ignored
129  uint64_t wi() const { return _raz | _rao; }
130  };
131 
134 
137  std::bitset<NUM_MISCREG_INFOS> &info;
139  public:
140  chain mapsTo(uint32_t l, uint32_t u = 0) const {
141  entry.lower = l;
142  entry.upper = u;
143  return *this;
144  }
145  chain res0(uint64_t mask) const {
146  entry._res0 = mask;
147  return *this;
148  }
149  chain res1(uint64_t mask) const {
150  entry._res1 = mask;
151  return *this;
152  }
153  chain raz(uint64_t mask) const {
154  entry._raz = mask;
155  return *this;
156  }
157  chain rao(uint64_t mask) const {
158  entry._rao = mask;
159  return *this;
160  }
161  chain implemented(bool v = true) const {
162  info[MISCREG_IMPLEMENTED] = v;
163  return *this;
164  }
165  chain unimplemented() const {
166  return implemented(false);
167  }
168  chain unverifiable(bool v = true) const {
169  info[MISCREG_UNVERIFIABLE] = v;
170  return *this;
171  }
172  chain warnNotFail(bool v = true) const {
173  info[MISCREG_WARN_NOT_FAIL] = v;
174  return *this;
175  }
176  chain mutex(bool v = true) const {
177  info[MISCREG_MUTEX] = v;
178  return *this;
179  }
180  chain banked(bool v = true) const {
181  info[MISCREG_BANKED] = v;
182  return *this;
183  }
184  chain banked64(bool v = true) const {
185  info[MISCREG_BANKED64] = v;
186  return *this;
187  }
188  chain bankedChild(bool v = true) const {
189  info[MISCREG_BANKED_CHILD] = v;
190  return *this;
191  }
192  chain userNonSecureRead(bool v = true) const {
193  info[MISCREG_USR_NS_RD] = v;
194  return *this;
195  }
196  chain userNonSecureWrite(bool v = true) const {
197  info[MISCREG_USR_NS_WR] = v;
198  return *this;
199  }
200  chain userSecureRead(bool v = true) const {
201  info[MISCREG_USR_S_RD] = v;
202  return *this;
203  }
204  chain userSecureWrite(bool v = true) const {
205  info[MISCREG_USR_S_WR] = v;
206  return *this;
207  }
208  chain user(bool v = true) const {
209  userNonSecureRead(v);
210  userNonSecureWrite(v);
211  userSecureRead(v);
212  userSecureWrite(v);
213  return *this;
214  }
215  chain privNonSecureRead(bool v = true) const {
216  info[MISCREG_PRI_NS_RD] = v;
217  return *this;
218  }
219  chain privNonSecureWrite(bool v = true) const {
220  info[MISCREG_PRI_NS_WR] = v;
221  return *this;
222  }
223  chain privNonSecure(bool v = true) const {
224  privNonSecureRead(v);
225  privNonSecureWrite(v);
226  return *this;
227  }
228  chain privSecureRead(bool v = true) const {
229  info[MISCREG_PRI_S_RD] = v;
230  return *this;
231  }
232  chain privSecureWrite(bool v = true) const {
233  info[MISCREG_PRI_S_WR] = v;
234  return *this;
235  }
236  chain privSecure(bool v = true) const {
237  privSecureRead(v);
238  privSecureWrite(v);
239  return *this;
240  }
241  chain priv(bool v = true) const {
242  privSecure(v);
243  privNonSecure(v);
244  return *this;
245  }
246  chain privRead(bool v = true) const {
247  privSecureRead(v);
248  privNonSecureRead(v);
249  return *this;
250  }
251  chain hypE2HRead(bool v = true) const {
252  info[MISCREG_HYP_E2H_RD] = v;
253  return *this;
254  }
255  chain hypE2HWrite(bool v = true) const {
256  info[MISCREG_HYP_E2H_WR] = v;
257  return *this;
258  }
259  chain hypE2H(bool v = true) const {
260  hypE2HRead(v);
261  hypE2HWrite(v);
262  return *this;
263  }
264  chain hypRead(bool v = true) const {
265  hypE2HRead(v);
266  info[MISCREG_HYP_RD] = v;
267  return *this;
268  }
269  chain hypWrite(bool v = true) const {
270  hypE2HWrite(v);
271  info[MISCREG_HYP_WR] = v;
272  return *this;
273  }
274  chain hyp(bool v = true) const {
275  hypRead(v);
276  hypWrite(v);
277  return *this;
278  }
279  chain monE2HRead(bool v = true) const {
280  info[MISCREG_MON_E2H_RD] = v;
281  return *this;
282  }
283  chain monE2HWrite(bool v = true) const {
284  info[MISCREG_MON_E2H_WR] = v;
285  return *this;
286  }
287  chain monE2H(bool v = true) const {
288  monE2HRead(v);
289  monE2HWrite(v);
290  return *this;
291  }
292  chain monSecureRead(bool v = true) const {
293  monE2HRead(v);
294  info[MISCREG_MON_NS0_RD] = v;
295  return *this;
296  }
297  chain monSecureWrite(bool v = true) const {
298  monE2HWrite(v);
299  info[MISCREG_MON_NS0_WR] = v;
300  return *this;
301  }
302  chain monNonSecureRead(bool v = true) const {
303  monE2HRead(v);
304  info[MISCREG_MON_NS1_RD] = v;
305  return *this;
306  }
307  chain monNonSecureWrite(bool v = true) const {
308  monE2HWrite(v);
309  info[MISCREG_MON_NS1_WR] = v;
310  return *this;
311  }
312  chain mon(bool v = true) const {
313  monSecureRead(v);
314  monSecureWrite(v);
315  monNonSecureRead(v);
316  monNonSecureWrite(v);
317  return *this;
318  }
319  chain monSecure(bool v = true) const {
320  monSecureRead(v);
321  monSecureWrite(v);
322  return *this;
323  }
324  chain monNonSecure(bool v = true) const {
325  monNonSecureRead(v);
326  monNonSecureWrite(v);
327  return *this;
328  }
329  chain allPrivileges(bool v = true) const {
330  userNonSecureRead(v);
331  userNonSecureWrite(v);
332  userSecureRead(v);
333  userSecureWrite(v);
334  privNonSecureRead(v);
335  privNonSecureWrite(v);
336  privSecureRead(v);
337  privSecureWrite(v);
338  hypRead(v);
339  hypWrite(v);
340  monSecureRead(v);
341  monSecureWrite(v);
342  monNonSecureRead(v);
343  monNonSecureWrite(v);
344  return *this;
345  }
346  chain nonSecure(bool v = true) const {
347  userNonSecureRead(v);
348  userNonSecureWrite(v);
349  privNonSecureRead(v);
350  privNonSecureWrite(v);
351  hypRead(v);
352  hypWrite(v);
353  monNonSecureRead(v);
354  monNonSecureWrite(v);
355  return *this;
356  }
357  chain secure(bool v = true) const {
358  userSecureRead(v);
359  userSecureWrite(v);
360  privSecureRead(v);
361  privSecureWrite(v);
362  monSecureRead(v);
363  monSecureWrite(v);
364  return *this;
365  }
366  chain reads(bool v) const {
367  userNonSecureRead(v);
368  userSecureRead(v);
369  privNonSecureRead(v);
370  privSecureRead(v);
371  hypRead(v);
372  monSecureRead(v);
373  monNonSecureRead(v);
374  return *this;
375  }
376  chain writes(bool v) const {
377  userNonSecureWrite(v);
378  userSecureWrite(v);
379  privNonSecureWrite(v);
380  privSecureWrite(v);
381  hypWrite(v);
382  monSecureWrite(v);
383  monNonSecureWrite(v);
384  return *this;
385  }
386  chain exceptUserMode() const {
387  user(0);
388  return *this;
389  }
390  chain highest(ArmSystem *const sys) const;
392  std::bitset<NUM_MISCREG_INFOS> &i)
393  : entry(e),
394  info(i)
395  {
396  // force unimplemented registers to be thusly declared
397  implemented(1);
398  }
399  };
400 
402  return MiscRegLUTEntryInitializer(lookUpMiscReg[reg],
403  miscRegInfo[reg]);
404  }
405 
407 
410 
411  void
412  updateRegMap(CPSR cpsr)
413  {
414  if (cpsr.width == 0) {
415  intRegMap = IntReg64Map;
416  } else {
417  switch (cpsr.mode) {
418  case MODE_USER:
419  case MODE_SYSTEM:
420  intRegMap = IntRegUsrMap;
421  break;
422  case MODE_FIQ:
423  intRegMap = IntRegFiqMap;
424  break;
425  case MODE_IRQ:
426  intRegMap = IntRegIrqMap;
427  break;
428  case MODE_SVC:
429  intRegMap = IntRegSvcMap;
430  break;
431  case MODE_MON:
432  intRegMap = IntRegMonMap;
433  break;
434  case MODE_ABORT:
435  intRegMap = IntRegAbtMap;
436  break;
437  case MODE_HYP:
438  intRegMap = IntRegHypMap;
439  break;
440  case MODE_UNDEFINED:
441  intRegMap = IntRegUndMap;
442  break;
443  default:
444  panic("Unrecognized mode setting in CPSR.\n");
445  }
446  }
447  }
448 
451 
452 
453  private:
454  inline void assert32(ThreadContext *tc) {
455  CPSR cpsr M5_VAR_USED = readMiscReg(MISCREG_CPSR, tc);
456  assert(cpsr.width);
457  }
458 
459  inline void assert64(ThreadContext *tc) {
460  CPSR cpsr M5_VAR_USED = readMiscReg(MISCREG_CPSR, tc);
461  assert(!cpsr.width);
462  }
463 
464  public:
465  void clear(ThreadContext *tc);
466 
467  protected:
468  void clear();
469  void clear32(const ArmISAParams *p, const SCTLR &sctlr_rst);
470  void clear64(const ArmISAParams *p);
471  void initID32(const ArmISAParams *p);
472  void initID64(const ArmISAParams *p);
473 
474  public:
475  RegVal readMiscRegNoEffect(int misc_reg) const;
476  RegVal readMiscReg(int misc_reg, ThreadContext *tc);
477  void setMiscRegNoEffect(int misc_reg, RegVal val);
478  void setMiscReg(int misc_reg, RegVal val, ThreadContext *tc);
479 
480  RegId
481  flattenRegId(const RegId& regId) const
482  {
483  switch (regId.classValue()) {
484  case IntRegClass:
485  return RegId(IntRegClass, flattenIntIndex(regId.index()));
486  case FloatRegClass:
487  return RegId(FloatRegClass, flattenFloatIndex(regId.index()));
488  case VecRegClass:
489  return RegId(VecRegClass, flattenVecIndex(regId.index()));
490  case VecElemClass:
491  return RegId(VecElemClass, flattenVecElemIndex(regId.index()),
492  regId.elemIndex());
493  case VecPredRegClass:
494  return RegId(VecPredRegClass,
495  flattenVecPredIndex(regId.index()));
496  case CCRegClass:
497  return RegId(CCRegClass, flattenCCIndex(regId.index()));
498  case MiscRegClass:
499  return RegId(MiscRegClass, flattenMiscIndex(regId.index()));
500  }
501  return RegId();
502  }
503 
504  int
505  flattenIntIndex(int reg) const
506  {
507  assert(reg >= 0);
508  if (reg < NUM_ARCH_INTREGS) {
509  return intRegMap[reg];
510  } else if (reg < NUM_INTREGS) {
511  return reg;
512  } else if (reg == INTREG_SPX) {
513  CPSR cpsr = miscRegs[MISCREG_CPSR];
515  (OperatingMode) (uint8_t) cpsr.mode);
516  if (!cpsr.sp && el != EL0)
517  return INTREG_SP0;
518  switch (el) {
519  case EL3:
520  return INTREG_SP3;
521  case EL2:
522  return INTREG_SP2;
523  case EL1:
524  return INTREG_SP1;
525  case EL0:
526  return INTREG_SP0;
527  default:
528  panic("Invalid exception level");
529  return 0; // Never happens.
530  }
531  } else {
532  return flattenIntRegModeIndex(reg);
533  }
534  }
535 
536  int
538  {
539  assert(reg >= 0);
540  return reg;
541  }
542 
543  int
544  flattenVecIndex(int reg) const
545  {
546  assert(reg >= 0);
547  return reg;
548  }
549 
550  int
552  {
553  assert(reg >= 0);
554  return reg;
555  }
556 
557  int
559  {
560  assert(reg >= 0);
561  return reg;
562  }
563 
564  int
565  flattenCCIndex(int reg) const
566  {
567  assert(reg >= 0);
568  return reg;
569  }
570 
571  int
573  {
574  assert(reg >= 0);
575  int flat_idx = reg;
576 
577  if (reg == MISCREG_SPSR) {
578  CPSR cpsr = miscRegs[MISCREG_CPSR];
579  switch (cpsr.mode) {
580  case MODE_EL0T:
581  warn("User mode does not have SPSR\n");
582  flat_idx = MISCREG_SPSR;
583  break;
584  case MODE_EL1T:
585  case MODE_EL1H:
586  flat_idx = MISCREG_SPSR_EL1;
587  break;
588  case MODE_EL2T:
589  case MODE_EL2H:
590  flat_idx = MISCREG_SPSR_EL2;
591  break;
592  case MODE_EL3T:
593  case MODE_EL3H:
594  flat_idx = MISCREG_SPSR_EL3;
595  break;
596  case MODE_USER:
597  warn("User mode does not have SPSR\n");
598  flat_idx = MISCREG_SPSR;
599  break;
600  case MODE_FIQ:
601  flat_idx = MISCREG_SPSR_FIQ;
602  break;
603  case MODE_IRQ:
604  flat_idx = MISCREG_SPSR_IRQ;
605  break;
606  case MODE_SVC:
607  flat_idx = MISCREG_SPSR_SVC;
608  break;
609  case MODE_MON:
610  flat_idx = MISCREG_SPSR_MON;
611  break;
612  case MODE_ABORT:
613  flat_idx = MISCREG_SPSR_ABT;
614  break;
615  case MODE_HYP:
616  flat_idx = MISCREG_SPSR_HYP;
617  break;
618  case MODE_UNDEFINED:
619  flat_idx = MISCREG_SPSR_UND;
620  break;
621  default:
622  warn("Trying to access SPSR in an invalid mode: %d\n",
623  cpsr.mode);
624  flat_idx = MISCREG_SPSR;
625  break;
626  }
627  } else if (miscRegInfo[reg][MISCREG_MUTEX]) {
628  // Mutually exclusive CP15 register
629  switch (reg) {
630  case MISCREG_PRRR_MAIR0:
633  {
634  TTBCR ttbcr = readMiscRegNoEffect(MISCREG_TTBCR);
635  // If the muxed reg has been flattened, work out the
636  // offset and apply it to the unmuxed reg
637  int idxOffset = reg - MISCREG_PRRR_MAIR0;
638  if (ttbcr.eae)
639  flat_idx = flattenMiscIndex(MISCREG_MAIR0 +
640  idxOffset);
641  else
642  flat_idx = flattenMiscIndex(MISCREG_PRRR +
643  idxOffset);
644  }
645  break;
646  case MISCREG_NMRR_MAIR1:
649  {
650  TTBCR ttbcr = readMiscRegNoEffect(MISCREG_TTBCR);
651  // If the muxed reg has been flattened, work out the
652  // offset and apply it to the unmuxed reg
653  int idxOffset = reg - MISCREG_NMRR_MAIR1;
654  if (ttbcr.eae)
655  flat_idx = flattenMiscIndex(MISCREG_MAIR1 +
656  idxOffset);
657  else
658  flat_idx = flattenMiscIndex(MISCREG_NMRR +
659  idxOffset);
660  }
661  break;
663  {
664  PMSELR pmselr = miscRegs[MISCREG_PMSELR];
665  if (pmselr.sel == 31)
667  else
669  }
670  break;
671  default:
672  panic("Unrecognized misc. register.\n");
673  break;
674  }
675  } else {
676  if (miscRegInfo[reg][MISCREG_BANKED]) {
677  bool secureReg = haveSecurity && !highestELIs64 &&
678  inSecureState(miscRegs[MISCREG_SCR],
679  miscRegs[MISCREG_CPSR]);
680  flat_idx += secureReg ? 2 : 1;
681  } else {
682  flat_idx = snsBankedIndex64((MiscRegIndex)reg,
683  !inSecureState(miscRegs[MISCREG_SCR],
684  miscRegs[MISCREG_CPSR]));
685  }
686  }
687  return flat_idx;
688  }
689 
690  int
692  {
693  int reg_as_int = static_cast<int>(reg);
694  if (miscRegInfo[reg][MISCREG_BANKED64]) {
695  reg_as_int += (haveSecurity && !ns) ? 2 : 1;
696  }
697  return reg_as_int;
698  }
699 
700  std::pair<int,int> getMiscIndices(int misc_reg) const
701  {
702  // Note: indexes of AArch64 registers are left unchanged
703  int flat_idx = flattenMiscIndex(misc_reg);
704 
705  if (lookUpMiscReg[flat_idx].lower == 0) {
706  return std::make_pair(flat_idx, 0);
707  }
708 
709  // do additional S/NS flattenings if mapped to NS while in S
710  bool S = haveSecurity && !highestELIs64 &&
711  inSecureState(miscRegs[MISCREG_SCR],
712  miscRegs[MISCREG_CPSR]);
713  int lower = lookUpMiscReg[flat_idx].lower;
714  int upper = lookUpMiscReg[flat_idx].upper;
715  // upper == 0, which is CPSR, is not MISCREG_BANKED_CHILD (no-op)
716  lower += S && miscRegInfo[lower][MISCREG_BANKED_CHILD];
717  upper += S && miscRegInfo[upper][MISCREG_BANKED_CHILD];
718  return std::make_pair(lower, upper);
719  }
720 
721  unsigned getCurSveVecLenInBits(ThreadContext *tc) const;
722 
723  unsigned getCurSveVecLenInBitsAtReset() const { return sveVL * 128; }
724 
725  static void zeroSveVecRegUpperPart(VecRegContainer &vc,
726  unsigned eCount);
727 
728  void
729  serialize(CheckpointOut &cp) const override
730  {
731  DPRINTF(Checkpoint, "Serializing Arm Misc Registers\n");
733  }
734 
735  void
737  {
738  DPRINTF(Checkpoint, "Unserializing Arm Misc Registers\n");
740  CPSR tmp_cpsr = miscRegs[MISCREG_CPSR];
741  updateRegMap(tmp_cpsr);
742  }
743 
744  void startup(ThreadContext *tc);
745 
746  void takeOverFrom(ThreadContext *new_tc,
747  ThreadContext *old_tc) override;
748 
749  Enums::DecoderFlavor decoderFlavor() const { return _decoderFlavor; }
750 
752  bool haveGICv3CpuIfc() const
753  {
754  // gicv3CpuInterface is initialized at startup time, hence
755  // trying to read its value before the startup stage will lead
756  // to an error
757  assert(afterStartup);
758  return gicv3CpuInterface != nullptr;
759  }
760 
761  Enums::VecRegRenameMode
763  {
764  return _vecRegRenameMode;
765  }
766 
768  using BaseISA::startup;
769 
770  typedef ArmISAParams Params;
771 
772  const Params *params() const;
773 
774  ISA(Params *p);
775  };
776 }
777 
778 template<>
780 {
781  static Enums::VecRegRenameMode
782  init(const BaseISA* isa)
783  {
784  auto arm_isa = dynamic_cast<const ArmISA::ISA *>(isa);
785  assert(arm_isa);
786  return arm_isa->vecRegRenameMode();
787  }
788 
789  static Enums::VecRegRenameMode
791  {
792  if (pc.aarch64()) {
793  return Enums::Full;
794  } else {
795  return Enums::Elem;
796  }
797  }
798 
799  static bool
800  equalsInit(const BaseISA* isa1, const BaseISA* isa2)
801  {
802  return init(isa1) == init(isa2);
803  }
804 };
805 
806 #endif
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:163
#define DPRINTF(x,...)
Definition: trace.hh:225
const IntRegMap IntRegSvcMap
Definition: intregs.hh:351
chain secure(bool v=true) const
Definition: isa.hh:357
bool haveLPAE
Definition: isa.hh:90
std::bitset< NUM_MISCREG_INFOS > & info
Definition: isa.hh:137
MiscRegIndex
Definition: miscregs.hh:56
unsigned sveVL
SVE vector length in quadwords.
Definition: isa.hh:100
bitset< NUM_MISCREG_INFOS > miscRegInfo[NUM_MISCREGS]
Definition: miscregs.cc:2946
BaseISADevice & getGenericTimer(ThreadContext *tc)
Definition: isa.cc:2099
Bitfield< 5, 3 > reg
Definition: types.hh:87
Bitfield< 28 > v
IntRegIndex
Definition: intregs.hh:51
ArmSystem * system
Definition: isa.hh:69
chain allPrivileges(bool v=true) const
Definition: isa.hh:329
Floating-point register.
Definition: reg_class.hh:54
const MiscRegLUTEntryInitializer InitReg(uint32_t reg)
Definition: isa.hh:401
Bitfield< 7 > i
chain monNonSecureRead(bool v=true) const
Definition: isa.hh:302
STL pair class.
Definition: stl.hh:58
void clear32(const ArmISAParams *p, const SCTLR &sctlr_rst)
Definition: isa.cc:219
chain userSecureRead(bool v=true) const
Definition: isa.hh:200
Vector Register Abstraction This generic class is the model in a particularization of MVC...
Definition: vec_reg.hh:156
struct MiscRegLUTEntry & entry
Definition: isa.hh:136
Control (misc) register.
Definition: reg_class.hh:61
chain hypE2HWrite(bool v=true) const
Definition: isa.hh:255
const IntRegMap IntReg64Map
Definition: intregs.hh:304
RegVal readMiscRegNoEffect(int misc_reg) const
Definition: isa.cc:452
Enums::VecRegRenameMode vecRegRenameMode() const
Definition: isa.hh:762
chain userNonSecureRead(bool v=true) const
Definition: isa.hh:192
static Enums::VecRegRenameMode mode(const ArmISA::PCState &pc)
Definition: isa.hh:790
chain res0(uint64_t mask) const
Definition: isa.hh:145
uint64_t rao() const
Definition: isa.hh:127
OperatingMode
Definition: types.hh:590
Base class for devices that use the MiscReg interfaces.
Definition: isa_device.hh:58
chain privSecure(bool v=true) const
Definition: isa.hh:236
int flattenIntIndex(int reg) const
Definition: isa.hh:505
bool haveSecurity
Definition: isa.hh:89
uint64_t RegVal
Definition: types.hh:166
RegId flattenRegId(const RegId &regId) const
Definition: isa.hh:481
MiscRegLUTEntryInitializer(struct MiscRegLUTEntry &e, std::bitset< NUM_MISCREG_INFOS > &i)
Definition: isa.hh:391
Dummy device that prints a warning when it is accessed.
Definition: isa_device.hh:94
Definition: ccregs.hh:41
MiscReg metadata.
Definition: isa.hh:111
uint8_t physAddrRange
Definition: isa.hh:94
static std::vector< struct MiscRegLUTEntry > lookUpMiscReg
Metadata table accessible via the value of the register.
Definition: isa.hh:133
static Enums::VecRegRenameMode init(const BaseISA *isa)
Definition: isa.hh:782
Definition: cprintf.cc:40
const MiscRegLUTEntryInitializer & chain
Definition: isa.hh:138
chain hypRead(bool v=true) const
Definition: isa.hh:264
void clear64(const ArmISAParams *p)
Definition: isa.cc:271
const int NumMiscRegs
Definition: registers.hh:85
bool haveGICv3CpuIfc() const
Returns true if the ISA has a GICv3 cpu interface.
Definition: isa.hh:752
const IntRegMap IntRegHypMap
Definition: intregs.hh:333
ThreadContext is the external interface to all thread state for anything outside of the CPU...
unsigned getCurSveVecLenInBits(ThreadContext *tc) const
Definition: isa.cc:2127
chain privSecureRead(bool v=true) const
Definition: isa.hh:228
STL vector class.
Definition: stl.hh:37
bool havePAN
Definition: isa.hh:97
Bitfield< 63 > val
Definition: misc.hh:769
ExceptionLevel
Definition: types.hh:583
chain banked64(bool v=true) const
Definition: isa.hh:184
void setMiscRegNoEffect(int misc_reg, RegVal val)
Definition: isa.cc:778
int flattenCCIndex(int reg) const
Definition: isa.hh:565
chain monE2H(bool v=true) const
Definition: isa.hh:287
int flattenMiscIndex(int reg) const
Definition: isa.hh:572
ISA(Params *p)
Definition: isa.cc:61
const RegIndex & elemIndex() const
Elem accessor.
Definition: reg_class.hh:198
const Enums::DecoderFlavor _decoderFlavor
Definition: isa.hh:72
const IntRegMap IntRegFiqMap
Definition: intregs.hh:441
Bitfield< 0 > ns
chain banked(bool v=true) const
Definition: isa.hh:180
Vector Register Native Elem lane.
Definition: reg_class.hh:58
chain hypWrite(bool v=true) const
Definition: isa.hh:269
chain user(bool v=true) const
Definition: isa.hh:208
virtual void startup()
startup() is the final initialization call before simulation.
Definition: sim_object.cc:96
Bitfield< 3, 2 > el
Bitfield< 4 > pc
int flattenVecIndex(int reg) const
Definition: isa.hh:544
int snsBankedIndex64(MiscRegIndex reg, bool ns) const
Definition: isa.hh:691
void initializeMiscRegMetadata()
Definition: miscregs.cc:2949
Bitfield< 22 > u
bool impdefAsNop
If true, accesses to IMPLEMENTATION DEFINED registers are treated as NOP hence not causing UNDEFINED ...
Definition: isa.hh:106
unsigned getCurSveVecLenInBitsAtReset() const
Definition: isa.hh:723
const Enums::VecRegRenameMode _vecRegRenameMode
Definition: isa.hh:73
RegVal miscRegs[NumMiscRegs]
Definition: isa.hh:408
void initID64(const ArmISAParams *p)
Definition: isa.cc:356
chain bankedChild(bool v=true) const
Definition: isa.hh:188
Condition-code register.
Definition: reg_class.hh:60
chain monNonSecure(bool v=true) const
Definition: isa.hh:324
static ExceptionLevel opModeToEL(OperatingMode mode)
Definition: types.hh:688
chain mutex(bool v=true) const
Definition: isa.hh:176
bool haveVirtualization
Definition: isa.hh:91
std::pair< int, int > getMiscIndices(int misc_reg) const
Definition: isa.hh:700
BaseISADevice & getGICv3CPUInterface(ThreadContext *tc)
Definition: isa.cc:2120
chain privNonSecureRead(bool v=true) const
Definition: isa.hh:215
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: isa.hh:736
uint64_t res0() const
Definition: isa.hh:124
const IntRegMap IntRegUndMap
Definition: intregs.hh:405
chain hyp(bool v=true) const
Definition: isa.hh:274
int flattenFloatIndex(int reg) const
Definition: isa.hh:537
chain unverifiable(bool v=true) const
Definition: isa.hh:168
chain monNonSecureWrite(bool v=true) const
Definition: isa.hh:307
bool haveCrypto
Definition: isa.hh:92
const IntRegMap IntRegAbtMap
Definition: intregs.hh:387
std::unique_ptr< BaseISADevice > timer
Definition: isa.hh:82
std::unique_ptr< BaseISADevice > gicv3CpuInterface
Definition: isa.hh:85
bool highestELIs64
Definition: isa.hh:88
chain priv(bool v=true) const
Definition: isa.hh:241
#define SERIALIZE_ARRAY(member, size)
Definition: serialize.hh:805
static int flattenIntRegModeIndex(int reg)
Definition: intregs.hh:469
bool haveLSE
Definition: isa.hh:96
void initID32(const ArmISAParams *p)
Definition: isa.cc:320
uint64_t raz() const
Definition: isa.hh:126
const IntRegIndex * intRegMap
Definition: isa.hh:409
chain privNonSecure(bool v=true) const
Definition: isa.hh:223
chain implemented(bool v=true) const
Definition: isa.hh:161
Bitfield< 9 > e
chain userNonSecureWrite(bool v=true) const
Definition: isa.hh:196
void assert32(ThreadContext *tc)
Definition: isa.hh:454
const Params * params() const
Definition: isa.cc:117
chain privRead(bool v=true) const
Definition: isa.hh:246
DummyISADevice dummyDevice
Dummy device for to handle non-existing ISA devices.
Definition: isa.hh:76
#define UNSERIALIZE_ARRAY(member, size)
Definition: serialize.hh:813
const IntRegMap IntRegUsrMap
Definition: intregs.hh:315
void clear()
Definition: isa.cc:132
bool haveLargeAsid64
Definition: isa.hh:93
chain nonSecure(bool v=true) const
Definition: isa.hh:346
const IntRegMap IntRegMonMap
Definition: intregs.hh:369
chain rao(uint64_t mask) const
Definition: isa.hh:157
static bool equalsInit(const BaseISA *isa1, const BaseISA *isa2)
Definition: isa.hh:800
std::ostream CheckpointOut
Definition: serialize.hh:63
bool afterStartup
Definition: isa.hh:108
chain res1(uint64_t mask) const
Definition: isa.hh:149
chain monSecure(bool v=true) const
Definition: isa.hh:319
const RegClass & classValue() const
Class accessor.
Definition: reg_class.hh:200
void setMiscReg(int misc_reg, RegVal val, ThreadContext *tc)
Definition: isa.cc:800
Enums::DecoderFlavor decoderFlavor() const
Definition: isa.hh:749
int flattenVecElemIndex(int reg) const
Definition: isa.hh:551
bool haveSVE
Definition: isa.hh:95
chain monSecureWrite(bool v=true) const
Definition: isa.hh:297
Helper structure to get the vector register mode for a given ISA.
Definition: traits.hh:53
const RegIndex & index() const
Index accessors.
Definition: reg_class.hh:173
virtual void init()
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: sim_object.cc:73
chain privSecureWrite(bool v=true) const
Definition: isa.hh:232
uint64_t wi() const
Definition: isa.hh:129
BaseISADevice * pmu
Definition: isa.hh:79
chain raz(uint64_t mask) const
Definition: isa.hh:153
Register ID: describe an architectural register with its class and index.
Definition: reg_class.hh:75
Integer register.
Definition: reg_class.hh:53
void assert64(ThreadContext *tc)
Definition: isa.hh:459
Bitfield< 3, 0 > mask
Definition: types.hh:62
Definition: isa.hh:47
chain monE2HWrite(bool v=true) const
Definition: isa.hh:283
Vector Register.
Definition: reg_class.hh:56
#define warn(...)
Definition: logging.hh:208
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: isa.hh:729
chain hypE2H(bool v=true) const
Definition: isa.hh:259
ArmISAParams Params
Definition: isa.hh:770
int flattenVecPredIndex(int reg) const
Definition: isa.hh:558
chain warnNotFail(bool v=true) const
Definition: isa.hh:172
RegVal readMiscReg(int misc_reg, ThreadContext *tc)
Definition: isa.cc:476
bool inSecureState(ThreadContext *tc)
Definition: utility.cc:174
chain monSecureRead(bool v=true) const
Definition: isa.hh:292
chain privNonSecureWrite(bool v=true) const
Definition: isa.hh:219
GenericISA::DelaySlotPCState< MachInst > PCState
Definition: types.hh:41
Bitfield< 0 > p
chain userSecureWrite(bool v=true) const
Definition: isa.hh:204
const IntRegMap IntRegIrqMap
Definition: intregs.hh:423
void updateRegMap(CPSR cpsr)
Definition: isa.hh:412
chain hypE2HRead(bool v=true) const
Definition: isa.hh:251
Bitfield< 5 > l
static void zeroSveVecRegUpperPart(VecRegContainer &vc, unsigned eCount)
Definition: isa.cc:2171
chain mapsTo(uint32_t l, uint32_t u=0) const
Definition: isa.hh:140
uint64_t res1() const
Definition: isa.hh:125
chain monE2HRead(bool v=true) const
Definition: isa.hh:279
chain mon(bool v=true) const
Definition: isa.hh:312
void takeOverFrom(ThreadContext *new_tc, ThreadContext *old_tc) override
Definition: isa.cc:441
uint64_t reset() const
Definition: isa.hh:123
chain writes(bool v) const
Definition: isa.hh:376

Generated on Fri Jul 3 2020 15:42:39 for gem5 by doxygen 1.8.13