Go to the documentation of this file.
50 #include "debug/Arm.hh"
51 #include "debug/MiscRegs.hh"
55 #include "params/ArmISA.hh"
64 _decoderFlavor(
p.decoderFlavor), _vecRegRenameMode(Enums::Full),
65 pmu(
p.pmu), impdefAsNop(
p.impdef_nop),
153 mvfr0.advSimdRegisters = 2;
154 mvfr0.singlePrecision = 2;
155 mvfr0.doublePrecision = 2;
156 mvfr0.vfpExceptionTrapping = 0;
158 mvfr0.squareRoot = 1;
159 mvfr0.shortVectors = 1;
160 mvfr0.roundingModes = 1;
164 mvfr1.flushToZero = 1;
165 mvfr1.defaultNaN = 1;
166 mvfr1.advSimdLoadStore = 1;
167 mvfr1.advSimdInteger = 1;
168 mvfr1.advSimdSinglePrecision = 1;
169 mvfr1.advSimdHalfPrecision = 1;
170 mvfr1.vfpHalfPrecision = 1;
231 sctlr.te = (bool) sctlr_rst.te;
232 sctlr.nmfi = (
bool) sctlr_rst.nmfi;
233 sctlr.v = (bool) sctlr_rst.v;
291 panic(
"Invalid highest implemented exception level");
363 (
p.id_aa64dfr0_el1 & 0xfffffffffffff0ff
ULL) |
364 (
p.pmu ? 0x0000000000000100ULL : 0);
374 (
p.pmu ? 0x03000000
ULL : 0);
491 int lower = map.first, upper = map.second;
497 DPRINTF(MiscRegs,
"Reading MiscReg %s with set res0 bits: %#x\n",
501 DPRINTF(MiscRegs,
"Reading MiscReg %s with clear res1 bits: %#x\n",
518 cpsr.j =
pc.jazelle() ? 1 : 0;
519 cpsr.t =
pc.thumb() ? 1 : 0;
526 warn(
"Unimplemented system register %s read.\n",
529 panic(
"Unimplemented system register %s read.\n",
543 const uint32_t ones = (uint32_t)(-1);
547 cpacrMask.cp10 = ones;
548 cpacrMask.cp11 = ones;
549 cpacrMask.asedis = ones;
558 if (!nsacr.cp10) cpacrMask.cp10 = 0;
559 if (!nsacr.cp11) cpacrMask.cp11 = 0;
564 DPRINTF(MiscRegs,
"Reading misc reg %s: %#x\n",
594 warn_once(
"The clidr register always reports 0 caches.\n");
595 warn_once(
"clidr LoUIS field of 0b001 to match current "
596 "ARM implementations.\n");
599 warn_once(
"The ccsidr register isn't implemented and "
600 "always reads as 0.\n");
607 unsigned lineSizeWords =
609 unsigned log2LineSizeWords = 0;
611 while (lineSizeWords >>= 1) {
617 ctr.iCacheLineSize = log2LineSizeWords;
619 ctr.l1IndexPolicy = 0x3;
621 ctr.dCacheLineSize = log2LineSizeWords;
623 ctr.erg = log2LineSizeWords;
625 ctr.cwg = log2LineSizeWords;
632 warn(
"Not doing anything for miscreg ACTLR\n");
642 panic(
"shouldn't be reading this register seperately\n");
649 const uint32_t ones = (uint32_t)(-1);
651 fpscrMask.ioc = ones;
652 fpscrMask.dzc = ones;
653 fpscrMask.ofc = ones;
654 fpscrMask.ufc = ones;
655 fpscrMask.ixc = ones;
656 fpscrMask.idc = ones;
666 const uint32_t ones = (uint32_t)(-1);
668 fpscrMask.len = ones;
669 fpscrMask.fz16 = ones;
670 fpscrMask.stride = ones;
671 fpscrMask.rMode = ones;
674 fpscrMask.ahp = ones;
758 if (!secure_lookup) {
760 val |= (
mask ^ 0x7FFF) & 0xBFFF;
780 | (haveTimer ? 0x00010000 : 0x0);
783 return 0x0000000000000002 |
787 (
haveSVE ? 0x0000000100000000 : 0) |
817 int lower = map.first, upper = map.second;
823 DPRINTF(MiscRegs,
"Writing MiscReg %s (%d %d:%d) : %#x\n",
827 DPRINTF(MiscRegs,
"Writing MiscReg %s (%d %d) : %#x\n",
845 int old_mode = old_cpsr.mode;
847 if (old_mode != cpsr.mode || cpsr.il != old_cpsr.il) {
851 if (cpsr.pan != old_cpsr.pan) {
855 DPRINTF(
Arm,
"Updating CPSR from %#x to %#x f:%d i:%d a:%d mode:%#x\n",
856 miscRegs[misc_reg], cpsr, cpsr.f, cpsr.i, cpsr.a, cpsr.mode);
858 pc.nextThumb(cpsr.t);
859 pc.nextJazelle(cpsr.j);
860 pc.illegalExec(cpsr.il == 1);
877 warn(
"Unimplemented system register %s write with %#x.\n",
880 panic(
"Unimplemented system register %s write with %#x.\n",
890 const uint32_t ones = (uint32_t)(-1);
894 cpacrMask.cp10 = ones;
895 cpacrMask.cp11 = ones;
896 cpacrMask.asedis = ones;
905 if (!nsacr.cp10) cpacrMask.cp10 = 0;
906 if (!nsacr.cp11) cpacrMask.cp11 = 0;
912 newVal |= old_val & ~cpacrMask;
913 DPRINTF(MiscRegs,
"Writing misc reg %s: %#x\n",
919 const uint32_t ones = (uint32_t)(-1);
921 cpacrMask.tta = ones;
922 cpacrMask.fpen = ones;
924 cpacrMask.zen = ones;
927 DPRINTF(MiscRegs,
"Writing misc reg %s: %#x\n",
934 const uint32_t ones = (uint32_t)(-1);
936 cptrMask.tcpac = ones;
941 cptrMask.zen = hcr.e2h ? ones : 0;
943 cptrMask.fpen = hcr.e2h ? ones : 0;
946 cptrMask.res1_13_12_el2 = ones;
947 cptrMask.res1_7_0_el2 = ones;
949 cptrMask.res1_8_el2 = ones;
951 cptrMask.res1_9_el2 = ones;
953 DPRINTF(MiscRegs,
"Writing misc reg %s: %#x\n",
959 const uint32_t ones = (uint32_t)(-1);
961 cptrMask.tcpac = ones;
968 DPRINTF(MiscRegs,
"Writing misc reg %s: %#x\n",
973 warn_once(
"The csselr register isn't implemented.\n");
977 warn(
"Calling DC ZVA! Not Implemeted! Expect WEIRD results\n");
982 const uint32_t ones = (uint32_t)(-1);
984 fpscrMask.ioc = ones;
985 fpscrMask.dzc = ones;
986 fpscrMask.ofc = ones;
987 fpscrMask.ufc = ones;
988 fpscrMask.ixc = ones;
989 fpscrMask.idc = ones;
990 fpscrMask.ioe = ones;
991 fpscrMask.dze = ones;
992 fpscrMask.ofe = ones;
993 fpscrMask.ufe = ones;
994 fpscrMask.ixe = ones;
995 fpscrMask.ide = ones;
996 fpscrMask.len = ones;
997 fpscrMask.fz16 = ones;
998 fpscrMask.stride = ones;
999 fpscrMask.rMode = ones;
1000 fpscrMask.fz = ones;
1001 fpscrMask.dn = ones;
1002 fpscrMask.ahp = ones;
1003 fpscrMask.qc = ones;
1008 newVal = (newVal & (uint32_t)fpscrMask) |
1010 ~(uint32_t)fpscrMask);
1016 const uint32_t ones = (uint32_t)(-1);
1017 FPSCR fpscrMask = 0;
1018 fpscrMask.ioc = ones;
1019 fpscrMask.dzc = ones;
1020 fpscrMask.ofc = ones;
1021 fpscrMask.ufc = ones;
1022 fpscrMask.ixc = ones;
1023 fpscrMask.idc = ones;
1024 fpscrMask.qc = ones;
1029 newVal = (newVal & (uint32_t)fpscrMask) |
1031 ~(uint32_t)fpscrMask);
1037 const uint32_t ones = (uint32_t)(-1);
1038 FPSCR fpscrMask = 0;
1039 fpscrMask.len = ones;
1040 fpscrMask.fz16 = ones;
1041 fpscrMask.stride = ones;
1042 fpscrMask.rMode = ones;
1043 fpscrMask.fz = ones;
1044 fpscrMask.dn = ones;
1045 fpscrMask.ahp = ones;
1046 newVal = (newVal & (uint32_t)fpscrMask) |
1048 ~(uint32_t)fpscrMask);
1077 const uint32_t fpexcMask = 0x60000000;
1078 newVal = (newVal & fpexcMask) |
1104 const uint32_t temp = (
val == 0xC5ACCE55)? 0x1 : 0x0;
1106 r.oslk =
bits(temp,0);
1225 r.udccdis =
v.udccdis;
1226 r.mdbgen =
v.mdbgen;
1347 const uint32_t ifsrMask =
1349 newVal = newVal & ~ifsrMask;
1355 const uint32_t dfsrMask =
mask(31, 14) |
mask(8, 8);
1356 newVal = newVal & ~dfsrMask;
1366 DPRINTF(MiscRegs,
"Writing AMAIR: %#x\n", newVal);
1374 DPRINTF(MiscRegs,
"Writing SCTLR: %#x\n", newVal);
1385 SCTLR new_sctlr = newVal;
1478 mbits(newVal, 31, 12),
1493 mbits(newVal, 31, 12),
1536 mbits(newVal, 31,12));
1549 mbits(newVal, 31,12));
1565 mbits(newVal, 31,12));
1578 mbits(newVal, 31,12));
1595 static_cast<Addr>(
bits(newVal, 35, 0)) << 12);
1610 static_cast<Addr>(
bits(newVal, 35, 0)) << 12);
1623 mbits(newVal, 31, 12),
1637 mbits(newVal, 31, 12),
1778 bool is_host = (hcr.tge && hcr.e2h);
1799 bool is_host = (hcr.tge && hcr.e2h);
1815 static_cast<Addr>(
bits(newVal, 43, 0)) << 12,
1827 static_cast<Addr>(
bits(newVal, 43, 0)) << 12,
1841 static_cast<Addr>(
bits(newVal, 43, 0)) << 12,
1854 static_cast<Addr>(
bits(newVal, 43, 0)) << 12,
1867 bits(newVal, 55, 48);
1870 bool is_host = (hcr.tge && hcr.e2h);
1873 static_cast<Addr>(
bits(newVal, 43, 0)) << 12,
1886 bits(newVal, 55, 48);
1889 bool is_host = (hcr.tge && hcr.e2h);
1892 static_cast<Addr>(
bits(newVal, 43, 0)) << 12,
1904 bits(newVal, 55, 48);
1907 bool is_host = (hcr.tge && hcr.e2h);
1919 bits(newVal, 55, 48);
1922 bool is_host = (hcr.tge && hcr.e2h);
1938 bool is_host = (hcr.tge && hcr.e2h);
1941 static_cast<Addr>(
bits(newVal, 43, 0)) << 12);
1954 bool is_host = (hcr.tge && hcr.e2h);
1957 static_cast<Addr>(
bits(newVal, 43, 0)) << 12);
1971 static_cast<Addr>(
bits(newVal, 35, 0)) << 12);
1985 static_cast<Addr>(
bits(newVal, 35, 0)) << 12);
1991 warn(
"Not doing anything for write of miscreg ACTLR\n");
2006 newVal &= ~((uint32_t) hstrMask);
2014 if (!secure_lookup) {
2018 newVal = (newVal & ~
mask) | (oldValue &
mask);
2044 panic(
"Security Extensions required for ATS12NSOPR");
2049 panic(
"Security Extensions required for ATS12NSOPW");
2054 panic(
"Security Extensions required for ATS12NSOUR");
2060 panic(
"Security Extensions required for ATS12NSOUW");
2073 const uint32_t ones = (uint32_t)(-1);
2074 TTBCR ttbcrMask = 0;
2075 TTBCR ttbcrNew = newVal;
2080 ttbcrMask.pd0 = ones;
2081 ttbcrMask.pd1 = ones;
2083 ttbcrMask.epd0 = ones;
2084 ttbcrMask.irgn0 = ones;
2085 ttbcrMask.orgn0 = ones;
2086 ttbcrMask.sh0 = ones;
2087 ttbcrMask.ps = ones;
2088 ttbcrMask.a1 = ones;
2089 ttbcrMask.epd1 = ones;
2090 ttbcrMask.irgn1 = ones;
2091 ttbcrMask.orgn1 = ones;
2092 ttbcrMask.sh1 = ones;
2094 ttbcrMask.eae = ones;
2097 newVal = newVal & ttbcrMask;
2099 newVal = (newVal & ttbcrMask) | (ttbcr & (~ttbcrMask));
2113 uint64_t ttbrMask =
mask(63,56) |
mask(47,40);
2114 newVal = (newVal & (~ttbrMask));
2162 cpsr.daif = (uint8_t) ((CPSR) newVal).
daif;
2179 cpsr.sp = (uint8_t) ((CPSR) newVal).
sp;
2187 cpsr.el = (uint8_t) ((CPSR) newVal).
el;
2198 cpsr.pan = (uint8_t) ((CPSR) newVal).
pan;
2248 ~(0x2 << 22) : ~(0x3 << 22);
2250 newVal =
val & spsr_mask;
2254 warn(
"miscreg L2CTLR (%s) written with %#x. ignored...\n",
2284 return *
timer.get();
2288 if (!generic_timer) {
2289 panic(
"Trying to get a generic timer from a system that hasn't "
2290 "been configured to use a generic timer.\n");
2296 return *
timer.get();
2314 "A ThreadContext is needed to determine the SVE vector length "
2315 "in full-system mode");
2332 static_cast<unsigned>(
2341 static_cast<unsigned>(
2347 return (
len + 1) * 128;
2353 auto vv = vc.
as<uint64_t>();
2354 for (
int i = 2;
i < eCount; ++
i) {
2362 DPRINTF(Checkpoint,
"Serializing Arm Misc Registers\n");
2369 DPRINTF(Checkpoint,
"Unserializing Arm Misc Registers\n");
2385 warn_once(
"Doing AT (address translation) in functional mode! Fix Me!\n");
2387 auto req = std::make_shared<Request>(
2392 req,
tc,
mode, tran_type);
2396 Addr paddr = req->getPaddr();
2398 uint64_t attr1 =
attr >> 56;
2399 if (!attr1 || attr1 ==0x44) {
2401 attr &= ~ uint64_t(0x80);
2403 par = (paddr &
mask(47, 12)) |
attr;
2405 "MISCREG: Translated addr %#x: PAR_EL1: %#xx\n",
2414 par.fst = fsr.status;
2415 par.ptw = (arm_fault->
iss() >> 7) & 0x1;
2416 par.s = arm_fault->
isStage2() ? 1 : 0;
2419 "MISCREG: Translated addr %#x fault fsr %#x: PAR: %#x\n",
2436 warn_once(
"Doing AT (address translation) in functional mode! Fix Me!\n");
2438 auto req = std::make_shared<Request>(
2443 req,
tc,
mode, tran_type);
2447 Addr paddr = req->getPaddr();
2451 uint8_t max_paddr_bit = 0;
2460 par = (paddr &
mask(max_paddr_bit, 12)) |
2464 "MISCREG: Translated addr 0x%08x: PAR: 0x%08x\n",
2473 par.lpae = fsr.lpae;
2474 par.ptw = (arm_fault->
iss() >> 7) & 0x1;
2475 par.s = arm_fault->
isStage2() ? 1 : 0;
2479 par.fst = fsr.status;
2482 par.fs4_0 = fsr.fsLow | (fsr.fsHigh << 5);
2486 "MISCREG: Translated addr 0x%08x fault fsr %#x: PAR: 0x%08x\n",
void setupThreadContext()
virtual RegVal readMiscRegNoEffect(RegIndex misc_reg) const =0
@ MISCREG_ID_AA64MMFR2_EL1
bool ELIsInHost(ThreadContext *tc, ExceptionLevel el)
Returns true if the current exception level el is executing a Host OS or an application of a Host OS ...
@ MISCREG_ICC_IGRPEN1_EL3
@ MISCREG_TLBI_IPAS2E1IS_Xt
@ MISCREG_ID_AA64AFR1_EL1
uint8_t encodePhysAddrRange64(int pa_size)
Returns the encoding corresponding to the specified n.
std::pair< int, int > getMiscIndices(int misc_reg) const
constexpr T insertBits(T val, unsigned first, unsigned last, B bit_val)
Returns val with bits first to last set to the LSBs of bit_val.
void initializeMiscRegMetadata()
@ MISCREG_ID_AA64ISAR1_EL1
void init(ThreadContext *tc)
bool haveCrypto() const
Returns true if this system implements the Crypto Extension.
uint8_t physAddrRange() const
Returns the supported physical address range in bits.
@ MISCREG_TLBI_VAALE1IS_Xt
Base class for devices that use the MiscReg interfaces.
void preUnflattenMiscReg()
virtual uint32_t iss() const =0
bool highestELIs64() const
Returns true if the register width of the highest implemented exception level is 64 bits (ARMv8)
RegVal miscRegs[NumMiscRegs]
Addr resetAddr() const
Returns the reset address if the highest implemented exception level is 64 bits (ARMv8)
@ MISCREG_ID_AA64ZFR0_EL1
@ MISCREG_ID_AA64ISAR0_EL1
@ MISCREG_TLBI_VAAE1IS_Xt
void setMDBGen(RegVal val)
std::unique_ptr< BaseISADevice > gicv3CpuInterface
virtual void setThreadContext(ThreadContext *tc)
void clear32(const ArmISAParams &p, const SCTLR &sctlr_rst)
virtual void setIntReg(RegIndex reg_idx, RegVal val)=0
@ MISCREG_TLBI_VMALLS12E1
@ MISCREG_TLBI_VALE3IS_Xt
void updateDBGWCR(int index, DBGWCR val)
void setMiscReg(int misc_reg, RegVal val)
@ MISCREG_TLBI_ASIDE1IS_Xt
bool haveSVE() const
Returns true if SVE is implemented (ARMv8)
@ MISCREG_TLBI_IPAS2LE1IS_Xt
Implementaton of AArch64 TLBI VMALLE1(IS)/VMALLS112E1(IS) instructions.
virtual bool isStage2() const
void broadcast(ThreadContext *tc)
Broadcast the TLB Invalidate operation to all TLBs in the Arm system.
int redirectRegVHE(ThreadContext *tc, int misc_reg)
Returns the enconcing equivalent when VHE is implemented and HCR_EL2.E2H is enabled and executing at ...
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
#define SERIALIZE_MAPPING(member, names, size)
BaseGic * getGIC() const
Get a pointer to the system's GIC.
GenericTimer * getGenericTimer() const
Get a pointer to the system's generic timer model.
virtual void setHtmCheckpointPtr(BaseHTMCheckpointPtr cpt)=0
TLB Invalidate by ASID match.
int unflattenMiscReg(int reg)
const char *const miscRegName[]
unsigned sveVL
SVE vector length in quadwords.
@ MISCREG_TLBI_VALE2IS_Xt
bool haveVirtualization() const
Returns true if this system implements the virtualization Extensions.
RegVal readMiscRegNoEffect(int misc_reg) const
static void zeroSveVecRegUpperPart(VecRegContainer &vc, unsigned eCount)
void takeOverFrom(ThreadContext *new_tc, ThreadContext *old_tc) override
@ MISCREG_ID_AA64MMFR0_EL1
virtual int threadId() const =0
void addressTranslation(TLB::ArmTranslationType tran_type, BaseTLB::Mode mode, Request::Flags flags, RegVal val)
@ MISCREG_ID_AA64AFR0_EL1
std::unique_ptr< BaseISADevice > timer
VecRegT< VecElem, NumElems, true > as() const
View interposers.
@ MISCREG_ID_AA64DFR1_EL1
const Enums::VecRegRenameMode _vecRegRenameMode
virtual void startup()
startup() is the final initialization call before simulation.
void setDebugMask(bool mask)
bool ELIs32(ThreadContext *tc, ExceptionLevel el)
virtual void setMiscReg(int misc_reg, RegVal val)=0
Write to a system register belonging to this device.
@ MISCREG_ID_AA64PFR0_EL1
void serialize(CheckpointOut &cp) const override
Serialize an object.
bool haveSecurity() const
Returns true if this system implements the Security Extensions.
ThreadContext is the external interface to all thread state for anything outside of the CPU.
DummyISADevice dummyDevice
Dummy device for to handle non-existing ISA devices.
bool haveLPAE() const
Returns true if this system implements the Large Physical Address Extension.
bool haveLSE() const
Returns true if LSE is implemented (ARMv8.1)
virtual void pcStateNoRecord(const TheISA::PCState &val)=0
bool havePAN() const
Returns true if Priviledge Access Never is implemented.
void setMDSCRvals(RegVal val)
std::shared_ptr< FaultBase > Fault
@ MISCREG_ID_AA64MMFR1_EL1
static const uint32_t FpscrExcMask
BaseISADevice & getGICv3CPUInterface()
@ MISCREG_ID_AA64DFR0_EL1
@ MISCREG_TLBI_VMALLS12E1IS
unsigned sveVL() const
Returns the SVE vector length at reset, in quadwords.
bool haveSecEL2() const
Returns true if Priviledge Access Never is implemented.
virtual ContextID contextId() const =0
constexpr T mbits(T val, unsigned first, unsigned last)
Mask off the given bits in place like bits() but without shifting.
TLB Invalidate by VA, All ASID.
chain highest(ArmSystem *const sys) const
void setMiscRegNoEffect(int misc_reg, RegVal val)
constexpr decltype(nullptr) NoFault
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
void clear64(const ArmISAParams &p)
RegVal readMPIDR(ArmSystem *arm_sys, ThreadContext *tc)
This helper function is either returing the value of MPIDR_EL1 (by calling getMPIDR),...
void updateOSLock(RegVal val)
@ funcRequestorId
This requestor id is used for functional requests that don't come from a particular device.
chain hyp(bool v=true) const
void updateRegMap(CPSR cpsr)
void initID32(const ArmISAParams &p)
BaseISADevice & getGenericTimer()
virtual TheISA::PCState pcState() const =0
static const uint32_t CpsrMaskQ
virtual RegVal readCCReg(RegIndex reg_idx) const =0
const typedef MiscRegLUTEntryInitializer & chain
Data TLB Invalidate by VA.
Instruction TLB Invalidate All.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
@ MISCREG_TLBI_VALE1IS_Xt
virtual void setCCReg(RegIndex reg_idx, RegVal val)=0
void update(ThreadContext *tc)
GenericISA::DelaySlotPCState< MachInst > PCState
Gicv3CPUInterface * getCPUInterface(int cpu_id) const
ArmISA::ExceptionLevel highestEL() const
Returns the highest implemented exception level.
virtual FSR getFsr(ThreadContext *tc) const
virtual RegVal readMiscReg(RegIndex misc_reg)=0
@ MISCREG_PMXEVTYPER_PMCCFILTR
virtual CheckerCPU * getCheckerCpuPtr()=0
virtual void setMiscReg(RegIndex misc_reg, RegVal val)=0
void initID64(const ArmISAParams &p)
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Implementaton of AArch64 TLBI ALLE(1,2,3)(IS) instructions.
TLB Invalidate by Intermediate Physical Address.
std::ostream CheckpointOut
virtual TheISA::Decoder * getDecoderPtr()=0
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
@ MISCREG_TLBI_IPAS2E1_Xt
static const uint32_t FpscrQcMask
void startup() override
startup() is the final initialization call before simulation.
RegVal readMiscReg(int misc_reg)
void updateDBGBCR(int index, DBGBCR val)
chain mon(bool v=true) const
void addressTranslation64(TLB::ArmTranslationType tran_type, BaseTLB::Mode mode, Request::Flags flags, RegVal val)
unsigned getCurSveVecLenInBits() const
const Params & params() const
Data TLB Invalidate by ASID match.
unsigned int cacheLineSize() const
Get the cache line size of the system.
Instruction TLB Invalidate by ASID match.
chain priv(bool v=true) const
virtual RegVal readIntReg(RegIndex reg_idx) const =0
bool translateFunctional(ThreadContext *tc, Addr vaddr, Addr &paddr)
bool haveTME() const
Returns true if this system implements the transactional memory extension (ARMv9)
void setenableTDETGE(HCR hcr, HDCR mdcr)
virtual void setISA(ISA *isa)
@ MISCREG_TLBI_IPAS2LE1_Xt
virtual BaseCPU * getCpuPtr()=0
#define UNSERIALIZE_MAPPING(member, names, size)
std::bitset< NUM_MISCREG_INFOS > miscRegInfo[NUM_MISCREGS]
BaseInterrupts * getInterruptController(ThreadID tid)
@ MISCREG_ID_AA64PFR1_EL1
bool haveVHE() const
Returns true if Virtualization Host Extensions is implemented.
Instruction TLB Invalidate by VA.
#define ULL(N)
uint64_t constant
Vector Register Abstraction This generic class is the model in a particularization of MVC,...
bool isSecure(ThreadContext *tc)
static std::vector< struct MiscRegLUTEntry > lookUpMiscReg
Metadata table accessible via the value of the register.
virtual System * getSystemPtr()=0
bool haveLargeAsid64() const
Returns true if ASID is 16 bits in AArch64 (ARMv8)
#define panic(...)
This implements a cprintf based panic() function.
TLB Invalidate All, Non-Secure.
void invalidateMiscReg(TLBType type=ALL_TLBS)
virtual RegVal readMiscReg(int misc_reg)=0
Read a system register belonging to this device.
Generated on Tue Mar 23 2021 19:41:18 for gem5 by doxygen 1.8.17