Go to the documentation of this file.
54 #include "debug/Faults.hh"
108 "Invalid size of ArmFault::shortDescFaultSources[]");
153 "Invalid size of ArmFault::longDescFaultSources[]");
199 "Invalid size of ArmFault::aarch64FaultSources[]");
207 "Reset", 0x000, 0x000, 0x000, 0x000, 0x000,
MODE_SVC,
211 "Undefined Instruction", 0x004, 0x000, 0x200, 0x400, 0x600,
MODE_UNDEFINED,
215 "Supervisor Call", 0x008, 0x000, 0x200, 0x400, 0x600,
MODE_SVC,
219 "Secure Monitor Call", 0x008, 0x000, 0x200, 0x400, 0x600,
MODE_MON,
223 "Hypervisor Call", 0x008, 0x000, 0x200, 0x400, 0x600,
MODE_HYP,
227 "Prefetch Abort", 0x00C, 0x000, 0x200, 0x400, 0x600,
MODE_ABORT,
231 "Data Abort", 0x010, 0x000, 0x200, 0x400, 0x600,
MODE_ABORT,
235 "Virtual Data Abort", 0x010, 0x000, 0x200, 0x400, 0x600,
MODE_ABORT,
240 "Hypervisor Trap", 0x014, 0x000, 0x200, 0x400, 0x600,
MODE_HYP,
244 "Secure Monitor Trap", 0x004, 0x000, 0x200, 0x400, 0x600,
MODE_MON,
248 "IRQ", 0x018, 0x080, 0x280, 0x480, 0x680,
MODE_IRQ,
252 "Virtual IRQ", 0x018, 0x080, 0x280, 0x480, 0x680,
MODE_IRQ,
256 "FIQ", 0x01C, 0x100, 0x300, 0x500, 0x700,
MODE_FIQ,
260 "Virtual FIQ", 0x01C, 0x100, 0x300, 0x500, 0x700,
MODE_FIQ,
264 "Illegal Inst Set State Fault", 0x004, 0x000, 0x200, 0x400, 0x600,
MODE_UNDEFINED,
269 "Supervisor Trap", 0x014, 0x000, 0x200, 0x400, 0x600,
MODE_SVC,
274 "PC Alignment Fault", 0x000, 0x000, 0x200, 0x400, 0x600,
MODE_SVC,
279 "SP Alignment Fault", 0x000, 0x000, 0x200, 0x400, 0x600,
MODE_SVC,
284 "SError", 0x000, 0x180, 0x380, 0x580, 0x780,
MODE_SVC,
289 "Software Breakpoint", 0x000, 0x000, 0x200, 0x400, 0x600,
MODE_SVC,
293 "Hardware Breakpoint", 0x000, 0x000, 0x200, 0x400, 0x600,
MODE_SVC,
297 "Watchpoint", 0x000, 0x000, 0x200, 0x400, 0x600,
MODE_SVC,
301 "SoftwareStep", 0x000, 0x000, 0x200, 0x400, 0x600,
MODE_SVC,
306 "ArmSev Flush", 0x000, 0x000, 0x000, 0x000, 0x000,
MODE_SVC,
359 panic(
"Invalid target exception level");
376 panic(
"Invalid exception level");
392 panic(
"Invalid exception level");
401 uint32_t exc_class = (uint32_t)
ec(tc);
402 uint32_t iss_val =
iss();
410 if (!
from64 && ((
bits(exc_class, 5, 4) == 0) &&
411 (
bits(exc_class, 3, 0) != 0))) {
420 esr.cond_iss.iss =
bits(iss_val, 19, 0);
456 if (
HaveExt(tc, ArmExtension::FEAT_PAN)) {
463 if (
toEL ==
EL2 && hcr.e2h && hcr.tge) {
523 saved_cpsr.it2 = it.top6;
524 saved_cpsr.it1 = it.bottom2;
532 if (have_security && saved_cpsr.mode ==
MODE_MON) {
548 if (!scr.ea) {cpsr.a = 1;}
549 if (!scr.fiq) {cpsr.f = 1;}
550 if (!scr.irq) {cpsr.i = 1;}
567 cpsr.it1 = cpsr.it2 = 0;
569 cpsr.pan =
span ? 1 : saved_cpsr.pan;
597 assert(have_security);
614 panic(
"unknown Mode\n");
618 DPRINTF(Faults,
"Invoking Fault:%s cpsr:%#x PC:%#x lr:%#x newVec: %#x "
624 pc.nextThumb(
pc.thumb());
626 pc.nextJazelle(
pc.jazelle());
627 pc.aarch64(!cpsr.width);
628 pc.nextAArch64(!cpsr.width);
629 pc.illegalExec(
false);
654 panic(
"Invalid target exception level");
677 spsr.it1 = it.bottom2;
684 Addr ret_addr = curr_pc;
694 OperatingMode64
mode = 0;
702 cpsr.pan =
span ? 1 : spsr.pan;
713 DPRINTF(Faults,
"Invoking Fault (AArch64 target EL):%s cpsr:%#x PC:%#x "
714 "elr:%#x newVec: %#x %s\n",
name(), cpsr, curr_pc, ret_addr,
718 pc.aarch64(!cpsr.width);
719 pc.nextAArch64(!cpsr.width);
720 pc.illegalExec(
false);
782 pc.nextAArch64(
true);
799 panic(
"Attempted to execute disabled instruction "
800 "'%s' (inst 0x%08x)",
mnemonic, arm_inst->encoding());
802 panic(
"Attempted to execute unknown instruction (inst 0x%08x)",
803 arm_inst->encoding());
805 panic(
"Attempted to execute unimplemented instruction "
806 "'%s' (inst 0x%08x)",
mnemonic, arm_inst->encoding());
830 uint32_t new_iss = 0;
831 uint32_t op0, op1, op2, CRn, CRm, Rt, dir;
841 new_iss = op0 << 20 | op2 << 17 | op1 << 14 | CRn << 10 |
842 Rt << 5 | CRm << 1 | dir;
943 bool isHypTrap =
false;
949 if (vals.hypTrappable) {
956 return isHypTrap ? 0x14 : vals.offset;
963 if (toEL == fromEL) {
965 return vals.currELTOffset;
966 return vals.currELHOffset;
968 bool lower_32 =
false;
981 return vals.lowerEL32Offset;
982 return vals.lowerEL64Offset;
1059 bool override_LPAE =
false;
1061 [[maybe_unused]] TTBCR ttbcr_ns =
1064 override_LPAE =
true;
1068 DPRINTF(Faults,
"Warning: Incomplete translation method "
1069 "override detected.\n");
1087 FSR fsr = getFsr(tc);
1090 }
else if (stage2) {
1112 DPRINTF(Faults,
"Abort Fault source=%#x fsr=%#x faultAddr=%#x "\
1113 "tranMethod=%#x\n", source, fsr, faultAddr, tranMethod);
1123 DPRINTF(Faults,
"Abort Fault (Stage 2) VA: 0x%x IPA: 0x%x\n",
1135 srcEncoded = getFaultStatusCode(tc);
1137 panic(
"Invalid fault source\n");
1148 "Trying to use un-updated ArmFault internal variables\n");
1174 auto fsc = getFaultStatusCode(tc);
1182 fsr.fsLow =
bits(fsc, 3, 0);
1183 fsr.fsHigh =
bits(fsc, 4);
1184 fsr.domain =
static_cast<uint8_t
>(
domain);
1187 fsr.wnr = (write ? 1 : 0);
1199 return (!scr.ns || scr.aw);
1244 va = (stage2 ? OVAddr : faultAddr);
1277 auto&
iss = esr.instruction_abort_iss;
1313 panic(
"Asynchronous External Abort should be handled with "
1314 "SystemErrors (SErrors)!");
1359 amo = (!
HaveExt(tc, ArmExtension::FEAT_VHE) || hcr.e2h == 0);
1377 auto&
iss = esr.data_abort_iss;
1469 return (!scr.ns || scr.aw);
1498 return (!scr.ns || scr.aw);
1510 return (!scr.ns || scr.fw);
1638 panic(
"Invalid target exception level");
1647 bool _write,
bool _cm)
1649 write(_write),
cm(_cm)
1656 auto&
iss = esr.watchpoint_iss;
1657 iss.dfsc = 0b100010;
1739 auto&
iss = esr.software_step_iss;
1740 iss.ifsc = 0b100010;
1749 DPRINTF(Faults,
"Invoking ArmSev Fault\n");
1802 auto arm_fault =
dynamic_cast<ArmFault *
>(fault.get());
1809 va = pgt_fault->getFaultVAddr();
1815 va = align_fault->getFaultVAddr();
void annotate(ArmFault::AnnotationIDs id, uint64_t val) override
void setSyndrome(ThreadContext *tc, MiscRegIndex syndrome_reg) override
ExceptionClass ec(ThreadContext *tc) const override
Syndrome methods.
Addr instAddr() const
Returns the memory address of the instruction this PC points to.
virtual RegVal readMiscReg(RegIndex misc_reg)=0
bool routeToMonitor(ThreadContext *tc) const override
virtual System * getSystemPtr()=0
ExceptionClass ec(ThreadContext *tc) const override
Syndrome methods.
bool ELIs64(ThreadContext *tc, ExceptionLevel el)
bool routeToHyp(ThreadContext *tc) const override
bool highestELIs64() const
Returns true if the register width of the highest implemented exception level is 64 bits (ARMv8)
Addr faultPC
The unaligned value of the PC.
virtual bool abortDisable(ThreadContext *tc)=0
bool il(ThreadContext *tc) const override
virtual RegVal getReg(const RegId ®) const
ExceptionClass overrideEc
ExceptionClass ec(ThreadContext *tc) const override
Syndrome methods.
bool routeToHyp(ThreadContext *tc) const override
ExceptionClass ec(ThreadContext *tc) const override
Syndrome methods.
virtual const PCStateBase & pcState() const =0
ExceptionClass overrideEc
@ SynchronousExternalAbort
uint32_t iss() const override
bool routeToHyp(ThreadContext *tc) const override
bool routeToHyp(ThreadContext *tc) const override
virtual uint8_t armPcElrOffset()=0
uint8_t getFaultStatusCode(ThreadContext *tc) const
bool routeToMonitor(ThreadContext *tc) const override
static bool opModeIsT(OperatingMode mode)
bool routeToMonitor(ThreadContext *tc) const override
virtual FaultOffset offset64(ThreadContext *tc)=0
Workload * workload
OS kernel.
bool routeToHyp(ThreadContext *tc) const override
static ExceptionLevel opModeToEL(OperatingMode mode)
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 ...
std::string csprintf(const char *format, const Args &...args)
uint32_t iss() const override
T * get() const
Directly access the pointer itself without taking a reference.
virtual uint8_t thumbPcOffset(bool is_hyp)=0
void invoke(ThreadContext *tc, const StaticInstPtr &inst) override
MachInst encoding() const
Returns the real encoding of the instruction: the machInst field is in fact always 64 bit wide and co...
virtual void setSyndrome(ThreadContext *tc, MiscRegIndex syndrome_reg)
bool getFaultVAddr(Fault fault, Addr &va)
Returns true if the fault passed as a first argument was triggered by a memory access,...
ExceptionClass ec(ThreadContext *tc) const override
Syndrome methods.
bool routeToHyp(ThreadContext *tc) const override
Addr getVector64(ThreadContext *tc)
bool routeToMonitor(ThreadContext *tc) const override
virtual void advancePC(PCStateBase &pc_state) const =0
virtual FaultName name() const =0
@ AsynchronousExternalAbort
void invoke(ThreadContext *tc, const StaticInstPtr &inst=nullStaticInstPtr) override
FSR getFsr(ThreadContext *tc) const override
Addr purifyTaggedAddr(Addr addr, ThreadContext *tc, ExceptionLevel el, TCR tcr, bool is_instr)
Removes the tag from tagged addresses if that mode is enabled.
uint32_t iss() const override
virtual uint32_t iss() const =0
bool abortDisable(ThreadContext *tc) override
void invoke(ThreadContext *tc, const StaticInstPtr &inst=nullStaticInstPtr) override
ArmStaticInst * instrAnnotate(const StaticInstPtr &inst)
virtual uint8_t thumbPcElrOffset()=0
ThreadContext is the external interface to all thread state for anything outside of the CPU.
virtual FaultOffset offset(ThreadContext *tc)=0
std::shared_ptr< FaultBase > Fault
MiscRegIndex getSyndromeReg64() const
void invoke(ThreadContext *tc, const StaticInstPtr &inst=nullStaticInstPtr) override
ExceptionClass ec(ThreadContext *tc) const override
Syndrome methods.
ExceptionClass ec(ThreadContext *tc) const override
Syndrome methods.
bool routeToHyp(ThreadContext *tc) const override
void invoke(ThreadContext *tc, const StaticInstPtr &inst=nullStaticInstPtr) override
static uint8_t shortDescFaultSources[NumFaultSources]
Encodings of the fault sources when the short-desc.
bool ELIs32(ThreadContext *tc, ExceptionLevel el)
void update(ThreadContext *tc)
FaultOffset offset64(ThreadContext *tc) override
void syncVecElemsToRegs(ThreadContext *tc)
void clearInterrupt(ThreadID tid, int int_num, int index)
virtual bool getFaultVAddr(Addr &va) const
virtual uint8_t armPcOffset(bool is_hyp)=0
uint32_t iss() const override
bool routeToHyp(ThreadContext *tc) const override
bool abortDisable(ThreadContext *tc) override
void invoke(ThreadContext *tc, const StaticInstPtr &inst=nullStaticInstPtr) override
bool EL2Enabled(ThreadContext *tc)
ExceptionClass overrideEc
void annotate(AnnotationIDs id, uint64_t val) override
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
bool il(ThreadContext *tc) const override
virtual OperatingMode nextMode()=0
bool fiqDisable(ThreadContext *tc) override
virtual RegVal readMiscRegNoEffect(RegIndex misc_reg) const =0
uint32_t iss() const override
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Software Breakpoint (AArch64 only)
FaultOffset offset(ThreadContext *tc) override
uint32_t iss() const override
ExceptionClass ec(ThreadContext *tc) const override
Syndrome methods.
ExceptionClass ec(ThreadContext *tc) const override
Syndrome methods.
bool isSecure(ThreadContext *tc)
virtual void invoke(ThreadContext *tc, const StaticInstPtr &inst=nullStaticInstPtr)
bool getFaultVAddr(Addr &va) const override
bool routeToHyp(ThreadContext *tc) const override
MiscRegIndex getFaultAddrReg64() const
HardwareBreakpoint(Addr _vaddr, uint32_t _iss)
Addr getVector(ThreadContext *tc) override
ExceptionLevel currEL(const ThreadContext *tc)
Returns the current Exception Level (EL) of the provided ThreadContext.
Addr faultAddr
The virtual address the fault occured at.
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
MipsFaultBase::FaultVals FaultVals
static uint8_t aarch64FaultSources[NumFaultSources]
Encodings of the fault sources in AArch64 state.
ExceptionClass overrideEc
Watchpoint(ExtMachInst mach_inst, Addr vaddr, bool _write, bool _cm)
bool routeToHyp(ThreadContext *tc) const override
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
bool routeToHyp(ThreadContext *tc) const override
void invoke64(ThreadContext *tc, const StaticInstPtr &inst=nullStaticInstPtr)
void invoke(ThreadContext *tc, const StaticInstPtr &inst=nullStaticInstPtr) override
bool routeToHyp(ThreadContext *tc) const override
void syncVecRegsToElems(ThreadContext *tc)
void annotate(AnnotationIDs id, uint64_t val) override
virtual Addr getVector(ThreadContext *tc)
uint32_t iss() const override
void invoke(ThreadContext *tc, const StaticInstPtr &inst=nullStaticInstPtr) override
ExceptionClass ec(ThreadContext *tc) const override
Syndrome methods.
virtual void setMiscReg(RegIndex misc_reg, RegVal val)=0
virtual ExceptionClass ec(ThreadContext *tc) const =0
SoftwareBreakpoint(ExtMachInst mach_inst, uint32_t _iss)
bool longDescFormatInUse(ThreadContext *tc)
virtual void annotate(AnnotationIDs id, uint64_t val)
Addr resetAddr() const
Returns the reset address if the highest implemented exception level is 64 bits (ARMv8)
virtual bool il(ThreadContext *tc) const =0
ExceptionClass ec(ThreadContext *tc) const override
Syndrome methods.
uint32_t iss() const override
@ PREFETCH_ABORT_LOWER_EL
bool routeToMonitor(ThreadContext *tc) const override
void invoke(ThreadContext *tc, const StaticInstPtr &inst=nullStaticInstPtr) override
virtual BaseCPU * getCpuPtr()=0
void invoke(ThreadContext *tc, const StaticInstPtr &inst=nullStaticInstPtr) override
virtual bool routeToHyp(ThreadContext *tc) const
virtual void clearArchRegs()=0
void invoke(ThreadContext *tc, const StaticInstPtr &inst=nullStaticInstPtr) override
virtual int threadId() const =0
bool routeToHyp(ThreadContext *tc) const override
ExceptionClass ec(ThreadContext *tc) const override
Syndrome methods.
bool routeToHyp(ThreadContext *tc) const override
bool routeToMonitor(ThreadContext *tc) const override
bool routeToHyp(ThreadContext *tc) const override
void invoke(ThreadContext *tc, const StaticInstPtr &inst=nullStaticInstPtr) override
static bool haveEL(ThreadContext *tc, ArmISA::ExceptionLevel el)
Return true if the system implements a specific exception level.
bool routeToHyp(ThreadContext *tc) const override
ExceptionClass ec(ThreadContext *tc) const override
Syndrome methods.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
void invoke32(ThreadContext *tc, const StaticInstPtr &inst=nullStaticInstPtr)
virtual bool routeToMonitor(ThreadContext *tc) const =0
IllegalInstSetStateFault()
Bitfield< 55, 48 > itstate
static uint8_t longDescFaultSources[NumFaultSources]
Encodings of the fault sources when the long-desc.
void clearInterrupts(ThreadID tid)
bool HaveExt(ThreadContext *tc, ArmExtension ext)
Returns true if the provided ThreadContext supports the ArmExtension passed as a second argument.
virtual void annotateFault(ArmFault *fault)
virtual void syscall(ThreadContext *tc)
ExceptionClass overrideEc
SoftwareStepFault(ExtMachInst mach_inst, bool is_ldx, bool stepped)
RegVal getMPIDR(ArmSystem *arm_sys, ThreadContext *tc)
This helper function is returning the value of MPIDR_EL1.
bool abortDisable(ThreadContext *tc) override
#define panic(...)
This implements a cprintf based panic() function.
ExceptionClass ec(ThreadContext *tc) const override
Syndrome methods.
HypervisorCall(ExtMachInst mach_inst, uint32_t _imm)
virtual void setMiscRegNoEffect(RegIndex misc_reg, RegVal val)=0
virtual bool fiqDisable(ThreadContext *tc)=0
virtual void setReg(const RegId ®, RegVal val)
Generated on Sun Jul 30 2023 01:56:46 for gem5 by doxygen 1.8.17