Go to the documentation of this file.
59 }
else if (!req->isCacheMaintenance() ||
60 (req->isCacheInvalidate() && !req->isCacheClean())) {
65 req->isCacheMaintenance());
90 if (pcst.itstate() != 0x0)
92 if (
p.enable &&
p.isActive(
pc) &&(!
to32 || !
p.onUse)) {
93 const DBGBCR ctr =
p.getControlReg(tc);
94 if (
p.isEnabled(tc,
el, ctr.hmc, ctr.ssc, ctr.pmc)) {
95 bool debug =
p.test(tc,
pc,
el, ctr,
false);
112 return std::make_shared<PrefetchAbort>(
vaddr,
117 return std::make_shared<HardwareBreakpoint>(
vaddr, 0x22);
123 bool atomic,
unsigned size,
bool cm)
153 return std::make_shared<DataAbort>(
vaddr,
158 return std::make_shared<Watchpoint>(0,
vaddr, write,
cm);
164 bool secure,
bool mask)
174 if (
el == target_el) {
177 return target_el >
el;
183 bool secure,
bool mask)
213 if ((ctr.bt & 0x1) &&
enable) {
340 for (
int i = 0;
i <= dfr.brps;
i++) {
341 const bool isctxaw =
i >= (dfr.brps - dfr.ctx_cmps);
345 this, isctxaw, (
bool)mm_fr2.varange,
353 for (
int i = 0;
i <= dfr.wrps;
i++) {
356 this, (
bool)mm_fr2.varange,
aarch32);
395 prs =
bits(in_pc, 1, 0) == 0x2;
397 prs =
bits(in_pc, 1, 0) == 0x0;
399 return (
pc == pc_tocmp) && prs;
415 prs =
bits(in_pc, 1, 0) == 0x2;
417 prs =
bits(in_pc, 1, 0) == 0x0;
419 return (
pc != pc_tocmp) && !prs;
443 if (
el ==
EL2 && a32)
455 uint32_t vmid_index = 55;
477 if (no_el3 && !no_el2 && (
ssc == 0x1 ||
ssc == 0x2) &&
480 }
else if (no_el3 && no_el2 && (
hmc != 0x0 ||
ssc != 0x0) &&
481 !(!aarch32 && ((
hmc &&
ssc == 0x1 &&
pmc == 0x0) ||
ssc == 0x3))) {
483 }
else if (no_el2 &&
hmc &&
ssc == 0x3 &&
pmc == 0x0) {
485 }
else if (
ssc == 0x11 &&
pmc == 0x1 &&
486 !(!aarch32 &&
hmc &&
ssc == 0x3 &&
pmc == 0x0)) {
489 }
else if (
hmc &&
ssc == 0x1 &&
pmc == 0x0) {
495 v = (
pmc == 0x3) || (
pmc == 0x2 &&
hmc == 0x0);
499 panic(
"Unexpected EL in SelfDebug::isDebugEnabled.\n");
502 v = (
pmc == 0x3) || (
pmc == 0x1);
508 ((
hmc == 0x1) && !((
ssc == 0x2) && (
pmc == 0x0)));
510 panic(
"Unexpected EL in SelfDebug::isDebugEnabled.\n");
514 panic(
"Unexpected EL in SelfDebug::isDebugEnabled.\n");
515 v = (
hmc == 0x1) & (
ssc != 0x3);
518 panic(
"Unexpected EL %d in BrkPoint::isEnabled.\n",
el);
526 uint32_t vmid_index = 39;
549 if (
ssc == 0x01 ||
ssc == 0x02 ){
556 if (no_el2 &&
hmc &&
ssc == 0x03 &&
pac == 0)
564 v = (
pac == 0x1 ||
pac == 0x3);
571 (
ssc == 0x1 && (
pac == 0x1 ||
pac == 0x3))));
574 panic(
"Unexpected EL in WatchPoint::isEnabled.\n");
581 bool atomic,
unsigned size)
586 if (
isEnabled(tc,
el, ctr.hmc, ctr.ssc, ctr.pac) &&
587 ((wrt && (ctr.lsv & 0x2)) || (!wrt && (ctr.lsv & 0x1)) ||
atomic)) {
593 if (
atomic && (ctr.lsv & 0x1)) {
601 uint8_t
mask,
unsigned size)
612 for (
int i = 0;
i < maxbits;
i++) {
613 uint8_t bas_m = 0x1 <<
i;
614 uint8_t masked_bas =
bas & bas_m;
615 if (masked_bas == bas_m) {
616 uint8_t off = log2(masked_bas);
617 Addr cmpaddr = addr_tocmp | off;
618 for (
int j = 0;
j < size;
j++) {
619 if ((
addr +
j) == cmpaddr) {
628 for (
int j = 0;
j < size;
j++) {
637 v =
v || (
addr == compaddr);
648 bool enabled_src =
false;
652 bool enabled_dst =
false;
663 if (!
ELIs32(tc, ELd) && !enabled_src && enabled_dst) {
727 if (fault ==
nullptr)
733 return std::make_shared<HypervisorTrap>(0, 0x22,
736 return std::make_shared<PrefetchAbort>(
addr,
755 DBGVCR match_word = 0x0;
760 if (vaddress == vbase) {
762 uint32_t bmask = 1UL << (low_addr + 24);
763 match_word = match_word | (DBGVCR) bmask;
766 uint32_t bmask = 1UL << (low_addr);
767 match_word = match_word | (DBGVCR) bmask;
773 isSecure(tc) && (vaddress == mvbase)) {
774 uint32_t bmask = 1UL << (low_addr + 8);
775 match_word = match_word | (DBGVCR) bmask;
783 mask = (DBGVCR) 0xDE;
785 mask = (DBGVCR) 0xDE0000DE;
787 mask = (DBGVCR) 0xDE00DEDE;
790 match_word = match_word & dbgvcr &
mask;
795 if (((match_word & 0x18001818) != 0x0) && ELd ==
el) {
815 mask = (DBGVCR) 0xDE;
817 mask = (DBGVCR) 0x0000DE00;
820 mask = (DBGVCR) 0x000000DE;
822 mask = (DBGVCR) 0xDE000000;
824 match_type = match_type &
mask & dbgvcr;
826 if (match_type != 0x0) {
Fault testDebug(ThreadContext *tc, const RequestPtr &req, BaseTLB::Mode mode)
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 ...
bool EL2Enabled(ThreadContext *tc)
ExceptionLevel debugTargetFrom(ThreadContext *tc, bool secure)
bool isDoubleAligned(Addr addr)
static bool securityStateMatch(ThreadContext *tc, uint8_t ssc, bool hmc)
bool exceptionTrapping(ThreadContext *tc, ExceptionLevel el, ArmFault *fault)
void init(ThreadContext *tc)
bool test(ThreadContext *tc, Addr pc, ExceptionLevel el, DBGBCR ctr, bool from_link)
bool HaveVirtHostExt(ThreadContext *tc)
Addr getVectorBase(ThreadContext *tc, bool monitor)
bool testLinkedBk(ThreadContext *tc, Addr vaddr, ExceptionLevel el)
Bitfield< 23, 20 > atomic
void setAArch32(ThreadContext *tc)
static const uint8_t ACTIVE_NOT_PENDING_STATE
static ExceptionLevel currEL(const ThreadContext *tc)
std::shared_ptr< Request > RequestPtr
std::vector< BrkPoint > arBrkPoints
bool testContextMatch(ThreadContext *tc, bool ctx1, bool low_ctx)
bool HaveSecureEL2Ext(ThreadContext *tc)
uint32_t getVMIDfromReg(ThreadContext *tc)
RegVal getContextfromReg(ThreadContext *tc, bool ctxid1) const
bool isEnabled(ThreadContext *tc, ExceptionLevel el, bool hmc, uint8_t ssc, uint8_t pac)
Fault triggerException(ThreadContext *tc, Addr vaddr)
bool ELStateUsingAArch32(ThreadContext *tc, ExceptionLevel el, bool secure)
bool isEnabled(ThreadContext *tc, ExceptionLevel el, uint8_t hmc, uint8_t ssc, uint8_t pmc)
bool ELIs32(ThreadContext *tc, ExceptionLevel el)
const DBGBCR getControlReg(ThreadContext *tc)
Fault testBreakPoints(ThreadContext *tc, Addr vaddr)
Fault triggerWatchpointException(ThreadContext *tc, Addr vaddr, bool write, bool cm)
ThreadContext is the external interface to all thread state for anything outside of the CPU.
@ EC_PREFETCH_ABORT_TO_HYP
Fault testWatchPoints(ThreadContext *tc, Addr vaddr, bool write, bool atomic, unsigned size, bool cm)
void setMDSCRvals(RegVal val)
std::shared_ptr< FaultBase > Fault
@ MISCREG_ID_AA64MMFR1_EL1
MiscRegIndex ctrlRegIndex
bool isDebugEnabled(ThreadContext *tc)
bool advanceSS(ThreadContext *tc)
@ MISCREG_ID_AA64DFR0_EL1
bool compareAddress(ThreadContext *tc, Addr in_addr, uint8_t bas, uint8_t mask, unsigned size)
bool addressMatching(ThreadContext *tc, Addr addr, ExceptionLevel el)
Addr getAddrfromReg(ThreadContext *tc)
bool testVMIDMatch(ThreadContext *tc)
constexpr decltype(nullptr) NoFault
virtual uint32_t vectorCatchFlag() const
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
void updateOSLock(RegVal val)
static const uint8_t INACTIVE_STATE
virtual TheISA::PCState pcState() const =0
Addr getAddrfromReg(ThreadContext *tc) const
void updateControl(DBGWCR val)
std::vector< WatchPoint > arWatchPoints
OperatingMode getToMode() const
bool isSecureBelowEL3(ThreadContext *tc)
GenericISA::DelaySlotPCState< MachInst > PCState
Fault testVectorCatch(ThreadContext *tc, Addr addr, ArmFault *flt)
bool test(ThreadContext *tc, Addr addr, ExceptionLevel el, bool &wrt, bool atomic, unsigned size)
bool isDebugEnabledForEL32(ThreadContext *tc, ExceptionLevel el, bool secure, bool mask)
bool testAddrMissMatch(ThreadContext *tc, Addr pc, uint8_t bas)
virtual RegVal readMiscReg(RegIndex misc_reg)=0
static const uint8_t ACTIVE_PENDING_STATE
bool testAddrMatch(ThreadContext *tc, Addr pc, uint8_t bas)
static bool haveEL(ThreadContext *tc, ArmISA::ExceptionLevel el)
Return true if the system implements a specific exception level.
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 debugExceptionReturnSS(ThreadContext *tc, CPSR spsr, ExceptionLevel dest)
void updateControl(DBGBCR val)
void setenableTDETGE(HCR hcr, HDCR mdcr)
bool targetAArch32(ThreadContext *tc)
BrkPoint * getBrkPoint(uint8_t index)
bool isSecure(ThreadContext *tc)
bool isDebugEnabledForEL64(ThreadContext *tc, ExceptionLevel el, bool secure, bool mask)
#define panic(...)
This implements a cprintf based panic() function.
Generated on Tue Jun 22 2021 15:28:21 for gem5 by doxygen 1.8.17