gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
self_debug.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019 Metempsy Technology LSC
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  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #include "arch/arm/self_debug.hh"
39 
40 #include "arch/arm/faults.hh"
42 #include "base/bitfield.hh"
43 
44 using namespace ArmISA;
45 
46 Fault
49 {
50  Fault fault = NoFault;
51 
52  if (mode == BaseTLB::Execute) {
53  const bool d_step = softStep->advanceSS(tc);
54  if (!d_step) {
55  fault = testVectorCatch(tc, req->getVaddr(), nullptr);
56  if (fault == NoFault)
57  fault = testBreakPoints(tc, req->getVaddr());
58  }
59  } else if (!req->isCacheMaintenance() ||
60  (req->isCacheInvalidate() && !req->isCacheClean())) {
61  bool md = mode == BaseTLB::Write ? true: false;
62  fault = testWatchPoints(tc, req->getVaddr(), md,
63  req->isAtomic(),
64  req->getSize(),
65  req->isCacheMaintenance());
66  }
67 
68  return fault;
69 }
70 
71 Fault
73 {
74  if (!mde)
75  return NoFault;
76 
77  setAArch32(tc);
78 
79  to32 = targetAArch32(tc);
80 
81  init(tc);
82 
83  if (!isDebugEnabled(tc))
84  return NoFault;
85 
87  for (auto &p: arBrkPoints){
88  PCState pcst = tc->pcState();
89  Addr pc = vaddr;
90  if (pcst.itstate() != 0x0)
91  pc = pcst.pc();
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);
96  if (debug){
97  if (to32)
98  p.onUse = true;
99  return triggerException(tc, pc);
100  }
101  }
102  }
103  }
104  return NoFault;
105 }
106 
107 
108 Fault
110 {
111  if (to32) {
112  return std::make_shared<PrefetchAbort>(vaddr,
113  ArmFault::DebugEvent, false,
116  } else {
117  return std::make_shared<HardwareBreakpoint>(vaddr, 0x22);
118  }
119 }
120 
121 Fault
123  bool atomic, unsigned size, bool cm)
124 {
125  setAArch32(tc);
126  to32 = targetAArch32(tc);
127  if (!initialized)
128  init(tc);
129  if (!isDebugEnabled(tc) || !mde)
130  return NoFault;
131 
133  int idxtmp = -1;
134  for (auto &p: arWatchPoints){
135  idxtmp ++;
136  if (p.enable) {
137  bool debug = p.test(tc, vaddr, el, write, atomic, size);
138  if (debug){
139  return triggerWatchpointException(tc, vaddr, write, cm);
140  }
141  }
142  }
143  return NoFault;
144 }
145 
146 Fault
148  bool write, bool cm)
149 {
150  if (to32) {
153  return std::make_shared<DataAbort>(vaddr,
155  write, ArmFault::DebugEvent, cm,
157  } else {
158  return std::make_shared<Watchpoint>(0, vaddr, write, cm);
159  }
160 }
161 
162 bool
164  bool secure, bool mask)
165 {
166  bool route_to_el2 = ArmSystem::haveEL(tc, EL2) &&
167  (!secure || HaveSecureEL2Ext(tc)) && enableTdeTge;
168 
169  ExceptionLevel target_el = route_to_el2 ? EL2 : EL1;
170  if (oslk || (sdd && secure && ArmSystem::haveEL(tc, EL3))) {
171  return false;
172  }
173 
174  if (el == target_el) {
175  return kde && !mask;
176  } else {
177  return target_el > el;
178  }
179 }
180 
181 bool
183  bool secure, bool mask)
184 {
185  if (el == EL0 && !ELStateUsingAArch32(tc, EL1, secure)) {
186  return isDebugEnabledForEL64(tc, el, secure, mask);
187  }
188 
189  if (oslk) {
190  return false;
191  }
192 
193  bool enabled;
194  if (secure && ArmSystem::haveEL(tc, EL3)) {
195  // We ignore the check for invasive External debug checking SPIDEN
196  // and DBGEN signals. They are not implemented
197  bool spd32 = bits(tc->readMiscReg(MISCREG_MDCR_EL3), 14);
198  enabled = spd32;
199 
200  bool suiden = bits(tc->readMiscReg(MISCREG_SDER), 0);
201  enabled = el == EL0 ? (enabled || suiden) : enabled;
202  } else {
203  enabled = el != EL2;
204  }
205  return enabled;
206 }
207 
208 bool
210 {
211  bool debug = false;
212  const DBGBCR ctr = getControlReg(tc);
213  if ((ctr.bt & 0x1) && enable) {
214  debug = test(tc, vaddr, el, ctr, true);
215  }
216  return debug;
217 }
218 
219 bool
221  bool from_link)
222 {
223  bool v = false;
224  switch (ctr.bt) {
225  case 0x0:
226  v = testAddrMatch(tc, pc, ctr.bas);
227  break;
228 
229  case 0x1:
230  v = testAddrMatch(tc, pc, ctr.bas); // linked
231  if (v) {
232  v = (conf->getBrkPoint(ctr.lbn))->testLinkedBk(tc, pc, el);
233  }
234  break;
235 
236  case 0x2:
237  {
238  bool host = ELIsInHost(tc, el);
239  v = testContextMatch(tc, !host, true);
240  }
241  break;
242 
243  case 0x3:
244  if (from_link){
245  bool host = ELIsInHost(tc, el);
246  v = testContextMatch(tc, !host, true);
247  }
248  break;
249 
250  case 0x4:
251  v = testAddrMissMatch(tc, pc, ctr.bas);
252  break;
253 
254  case 0x5:
255  v = testAddrMissMatch(tc, pc, ctr.bas); // linked
256  if (v && !from_link)
257  v = v && (conf->getBrkPoint(ctr.lbn))->testLinkedBk(tc, pc, el);
258  break;
259 
260  case 0x6:
261  if (HaveVirtHostExt(tc) && !ELIsInHost(tc, el))
262  v = testContextMatch(tc, true);
263  break;
264 
265  case 0x7:
266  if (HaveVirtHostExt(tc) && !ELIsInHost(tc, el) && from_link)
267  v = testContextMatch(tc, true);
268  break;
269 
270  case 0x8:
271  if (EL2Enabled(tc) && !ELIsInHost(tc, el)) {
272  v = testVMIDMatch(tc);
273  }
274  break;
275 
276  case 0x9:
277  if (from_link && EL2Enabled(tc) && !ELIsInHost(tc, el)) {
278  v = testVMIDMatch(tc);
279  }
280  break;
281 
282  case 0xa:
283  if (EL2Enabled(tc) && !ELIsInHost(tc, el)) {
284  v = testContextMatch(tc, true);
285  if (v && !from_link)
286  v = v && testVMIDMatch(tc);
287  }
288  break;
289  case 0xb:
290  if (from_link && EL2Enabled(tc) && !ELIsInHost(tc, el)) {
291  v = testContextMatch(tc, true);
292  v = v && testVMIDMatch(tc);
293  }
294  break;
295 
296  case 0xc:
297  if (HaveVirtHostExt(tc) && (!isSecure(tc)|| HaveSecureEL2Ext(tc)))
298  v = testContextMatch(tc, false);
299  break;
300 
301  case 0xd:
302  if (HaveVirtHostExt(tc) && from_link &&
303  (!isSecure(tc)|| HaveSecureEL2Ext(tc))) {
304  v = testContextMatch(tc, false);
305  }
306  break;
307 
308  case 0xe:
309  if (HaveVirtHostExt(tc) && !ELIsInHost(tc, el) &&
310  (!isSecure(tc)|| HaveSecureEL2Ext(tc))) {
311  v = testContextMatch(tc, true); // CONTEXTIDR_EL1
312  v = v && testContextMatch(tc, false); // CONTEXTIDR_EL2
313  }
314  break;
315  case 0xf:
316  if (HaveVirtHostExt(tc) && !ELIsInHost(tc, el) && from_link &&
317  (!isSecure(tc)|| HaveSecureEL2Ext(tc))) {
318  v = testContextMatch(tc, true); // CONTEXTIDR_EL1
319  v = v && testContextMatch(tc, false); // CONTEXTIDR_EL2
320  }
321  break;
322  default:
323  break;
324  }
325  return v;
326 }
327 
328 void
330 {
331  if (initialized)
332  return;
333  CPSR cpsr = tc->readMiscReg(MISCREG_CPSR);
334  aarch32 = cpsr.width == 1;
335 
336  const AA64DFR0 dfr = tc->readMiscReg(MISCREG_ID_AA64DFR0_EL1);
337  const AA64MMFR2 mm_fr2 = tc->readMiscReg(MISCREG_ID_AA64MMFR2_EL1);
338  const AA64MMFR1 mm_fr1 = tc->readMiscReg(MISCREG_ID_AA64MMFR1_EL1);
339 
340  for (int i = 0; i <= dfr.brps; i++) {
341  const bool isctxaw = i >= (dfr.brps - dfr.ctx_cmps);
342 
345  this, isctxaw, (bool)mm_fr2.varange,
346  mm_fr1.vmidbits, aarch32);
347  const DBGBCR ctr = tc->readMiscReg(MISCREG_DBGBCR0_EL1 + i);
348 
349  bkp.updateControl(ctr);
350  arBrkPoints.push_back(bkp);
351  }
352 
353  for (int i = 0; i <= dfr.wrps; i++) {
356  this, (bool)mm_fr2.varange, aarch32);
357  const DBGWCR ctr = tc->readMiscReg(MISCREG_DBGWCR0 + i);
358 
359  wtp.updateControl(ctr);
360  arWatchPoints.push_back(wtp);
361  }
362 
363  initialized = true;
364 
365  RegVal oslar_el1 = tc->readMiscReg(MISCREG_OSLAR_EL1);
366  updateOSLock(oslar_el1);
367  // Initialize preloaded control booleans
368  uint64_t mdscr_el1 = tc->readMiscReg(MISCREG_MDSCR_EL1);
369  setMDSCRvals(mdscr_el1);
370 
371  const uint64_t mdcr_el3 = tc->readMiscReg(MISCREG_MDCR_EL3);
372  setbSDD(mdcr_el3);
373 
374  const HCR hcr = tc->readMiscReg(MISCREG_HCR_EL2);
375  const HDCR mdcr = tc->readMiscRegNoEffect(MISCREG_MDCR_EL2);
376  setenableTDETGE(hcr, mdcr);
377 
378  // Enable Vector Catch Exceptions
379  const DEVID dvid = tc->readMiscReg(MISCREG_DBGDEVID0);
380  vcExcpt = new VectorCatch(dvid.vectorcatch==0x0, this);
381 }
382 
383 bool
385 {
386  Addr pc_tocmp = getAddrfromReg(tc);
387  Addr pc = bits(in_pc, maxAddrSize, 2);
388 
389  bool prs = true;
390  CPSR cpsr = tc->readMiscReg(MISCREG_CPSR);
391  bool thumb = cpsr.t;
392 
393  if (thumb) {
394  if (bas == 0xc)
395  prs = bits(in_pc, 1, 0) == 0x2;
396  else if (bas == 0x3)
397  prs = bits(in_pc, 1, 0) == 0x0;
398  }
399  return (pc == pc_tocmp) && prs;
400 }
401 
402 bool
404 {
405  if (bas == 0x0)
406  return true;
407  Addr pc_tocmp = getAddrfromReg(tc);
408  Addr pc = bits(in_pc, maxAddrSize, 2);
409  bool prs = false;
410  CPSR cpsr = tc->readMiscReg(MISCREG_CPSR);
411  bool thumb = cpsr.t;
412 
413  if (thumb) {
414  if (bas == 0xc)
415  prs = bits(in_pc, 1, 0) == 0x2;
416  else if (bas == 0x3)
417  prs = bits(in_pc, 1, 0) == 0x0;
418  }
419  return (pc != pc_tocmp) && !prs;
420 }
421 
422 bool
424 {
425  return testContextMatch(tc, ctx1, ctx1);
426 }
427 
428 bool
429 BrkPoint::testContextMatch(ThreadContext *tc, bool ctx1, bool low_ctx)
430 {
431  if (!isCntxtAware)
432  return false;
433  MiscRegIndex miscridx;
434  ExceptionLevel el = currEL(tc);
435  bool a32 = conf->isAArch32();
436 
437  if (ctx1) {
438  miscridx = a32? MISCREG_CONTEXTIDR : MISCREG_CONTEXTIDR_EL1;
439  if ((el == EL3 && !a32) || el == EL2)
440  return false;
441  } else {
442  miscridx = MISCREG_CONTEXTIDR_EL2;
443  if (el == EL2 && a32)
444  return false;
445  }
446 
447  RegVal ctxid = bits(tc->readMiscReg(miscridx), 31, 0);
448  RegVal v = getContextfromReg(tc, low_ctx);
449  return (v == ctxid);
450 }
451 
452 bool
454 {
455  uint32_t vmid_index = 55;
456  if (VMID16enabled)
457  vmid_index = 63;
458  ExceptionLevel el = currEL(tc);
459  if (el == EL2)
460  return false;
461 
462  uint32_t vmid = bits(tc->readMiscReg(MISCREG_VTTBR_EL2), vmid_index, 48);
463  uint32_t v = getVMIDfromReg(tc);
464  return (v == vmid);
465 }
466 
467 
468 bool
470  uint8_t hmc, uint8_t ssc, uint8_t pmc)
471 {
472  bool v;
473  bool aarch32 = conf->isAArch32();
474  bool no_el2 = !ArmSystem::haveEL(tc, EL2);
475  bool no_el3 = !ArmSystem::haveEL(tc, EL3);
476 
477  if (no_el3 && !no_el2 && (ssc == 0x1 || ssc == 0x2) &&
478  !(hmc && ssc == 0x1 && pmc == 0x0)) {
479  return false;
480  } else if (no_el3 && no_el2 && (hmc != 0x0 || ssc != 0x0) &&
481  !(!aarch32 && ((hmc && ssc == 0x1 && pmc == 0x0) || ssc == 0x3))) {
482  return false;
483  } else if (no_el2 && hmc && ssc == 0x3 && pmc == 0x0) {
484  return false;
485  } else if (ssc == 0x11 && pmc == 0x1 &&
486  !(!aarch32 && hmc && ssc == 0x3 && pmc == 0x0)) {
487  // AND secureEL2 not implemented
488  return false;
489  } else if (hmc && ssc == 0x1 && pmc == 0x0) {
490  //AND secureEL2 not implemented
491  return false;
492  }
493  switch (el) {
494  case EL0:
495  v = (pmc == 0x3) || (pmc == 0x2 && hmc == 0x0);
496  if (aarch32)
497  v = v || (pmc == 0x0 && ssc != 0x3 && hmc == 0x0);
498  if (v && ssc == 0x3)
499  panic("Unexpected EL in SelfDebug::isDebugEnabled.\n");
500  break;
501  case EL1:
502  v = (pmc == 0x3) || (pmc == 0x1);
503  if (aarch32)
504  v = v || (pmc == 0x0 && hmc == 0x0 && ssc !=0x3);
505  break;
506  case EL2:
507  v = (ssc == 0x3) ||
508  ((hmc == 0x1) && !((ssc == 0x2) && (pmc == 0x0)));
509  if (v && pmc == 0x2)
510  panic("Unexpected EL in SelfDebug::isDebugEnabled.\n");
511  break;
512  case EL3:
513  if (ssc == 0x1)
514  panic("Unexpected EL in SelfDebug::isDebugEnabled.\n");
515  v = (hmc == 0x1) & (ssc != 0x3);
516  break;
517  default:
518  panic("Unexpected EL %d in BrkPoint::isEnabled.\n", el);
519  }
520  return v && SelfDebug::securityStateMatch(tc, ssc, hmc || !aarch32);
521 }
522 
523 uint32_t
525 {
526  uint32_t vmid_index = 39;
527  if (VMID16enabled)
528  vmid_index = 47;
529  return bits(tc->readMiscReg(valRegIndex), vmid_index, 32);
530 }
531 
532 
533 bool
535  bool hmc, uint8_t ssc, uint8_t pac)
536 {
537 
538  bool v;
539  bool aarch32 = conf->isAArch32();
540  bool no_el2 = !ArmSystem::haveEL(tc, EL2);
541  bool no_el3 = !ArmSystem::haveEL(tc, EL3);
542 
543  if (aarch32) {
544  // WatchPoint PL2 using aarch32 is disabled except for
545  // debug state. Check G2-5395 table G2-15.
546  if (el == EL2)
547  return false;
548  if (no_el3) {
549  if (ssc == 0x01 || ssc == 0x02 ){
550  return false;
551  } else if (no_el2 &&
552  ((!hmc && ssc == 0x3) || (hmc && ssc == 0x0))) {
553  return false;
554  }
555  }
556  if (no_el2 && hmc && ssc == 0x03 && pac == 0)
557  return false;
558  }
559  switch (el) {
560  case EL0:
561  v = (pac == 0x3 || (pac == 0x2 && !hmc && ssc != 0x3));
562  break;
563  case EL1:
564  v = (pac == 0x1 || pac == 0x3);
565  break;
566  case EL2:
567  v = (hmc && (ssc != 0x2 || pac != 0x0));
568  break;
569  case EL3:
570  v = (hmc && (ssc == 0x2 ||
571  (ssc == 0x1 && (pac == 0x1 || pac == 0x3))));
572  break;
573  default:
574  panic("Unexpected EL in WatchPoint::isEnabled.\n");
575  }
576  return v && SelfDebug::securityStateMatch(tc, ssc, hmc);
577 }
578 
579 bool
581  bool atomic, unsigned size)
582 {
583 
584  bool v = false;
585  const DBGWCR ctr = tc->readMiscReg(ctrlRegIndex);
586  if (isEnabled(tc, el, ctr.hmc, ctr.ssc, ctr.pac) &&
587  ((wrt && (ctr.lsv & 0x2)) || (!wrt && (ctr.lsv & 0x1)) || atomic)) {
588  v = compareAddress(tc, addr, ctr.bas, ctr.mask, size);
589  if (ctr.wt) {
590  v = v && (conf->getBrkPoint(ctr.lbn))->testLinkedBk(tc, addr, el);
591  }
592  }
593  if (atomic && (ctr.lsv & 0x1)) {
594  wrt = false;
595  }
596  return v;
597 }
598 
599 bool
601  uint8_t mask, unsigned size)
602 {
603  Addr addr_tocmp = getAddrfromReg(tc);
604  int maxbits = isDoubleAligned(addr_tocmp) ? 4: 8;
605  int bottom = isDoubleAligned(addr_tocmp) ? 2: 3;
606  Addr addr = bits(in_addr, maxAddrSize, 0);
607 
608  if (bas == 0x0)
609  return false;
610 
611  if (mask == 0x0) {
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) {
620  return true;
621  }
622  }
623  }
624  }
625  return false;
626  } else {
627  bool v = false;
628  for (int j = 0; j < size; j++) {
629  Addr compaddr;
630  if (mask > bottom) {
631  addr = bits((in_addr+j), maxAddrSize, mask);
632  compaddr = bits(addr_tocmp, maxAddrSize, mask);
633  } else {
634  addr = bits((in_addr+j), maxAddrSize, bottom);
635  compaddr = bits(addr_tocmp, maxAddrSize, bottom);
636  }
637  v = v || (addr == compaddr);
638  }
639  return v;
640  }
641 }
642 
643 bool
645  ExceptionLevel dest)
646 {
647  bool SS_bit = false;
648  bool enabled_src = false;
649  if (bSS) {
650  enabled_src = conf->isDebugEnabled(tc);
651 
652  bool enabled_dst = false;
653  bool secure = isSecureBelowEL3(tc) || dest == EL3;
654  if (spsr.width) {
655  enabled_dst = conf->isDebugEnabledForEL32(tc, dest, secure,
656  spsr.d == 1);
657  } else {
658  enabled_dst = conf->isDebugEnabledForEL64(tc, dest, secure,
659  spsr.d == 1);
660  }
661  ExceptionLevel ELd = debugTargetFrom(tc, secure);
662 
663  if (!ELIs32(tc, ELd) && !enabled_src && enabled_dst) {
664  SS_bit = spsr.ss;
665  if (SS_bit == 0x0) {
667  } else {
669  }
670  }
671  }
672  return SS_bit;
673 }
674 
675 bool
677 {
678 
679  PCState pc = tc->pcState();
680  bool res = false;
681  switch (stateSS) {
682  case INACTIVE_STATE:
683  pc.debugStep(false);
684  break;
685 
687  pc.debugStep(false);
688  if (cpsrD == 1 || !bSS) {
690  } else {
691  pc.stepped(true);
693  tc->pcState(pc);
694  }
695  break;
696 
698  if (!cpsrD && bSS) {
699  pc.debugStep(true);
700  res = true;
701  tc->pcState(pc);
702  }
704  clearLdx();
705  break;
706 
707  default:
708  break;
709  }
710  return res;
711 }
712 
713 Fault
715  ArmFault *fault)
716 {
717 
718  setAArch32(tc);
719  to32 = targetAArch32(tc);
720  if (!initialized)
721  init(tc);
722  if (!isDebugEnabled(tc) || !mde || !aarch32)
723  return NoFault;
724 
726  bool debug;
727  if (fault == nullptr)
728  debug = vcExcpt->addressMatching(tc, addr, el);
729  else
730  debug = vcExcpt->exceptionTrapping(tc, el, fault);
731  if (debug) {
732  if (enableTdeTge) {
733  return std::make_shared<HypervisorTrap>(0, 0x22,
735  } else {
736  return std::make_shared<PrefetchAbort>(addr,
737  ArmFault::DebugEvent, false,
740  }
741  }
742 
743  return NoFault;
744 }
745 
746 bool
748 {
749  // Each bit position in this string corresponds to a bit in DBGVCR
750  // and an exception vector.
751  bool enabled;
752  if (conf->isAArch32() && ELIs32(tc, EL1) &&
753  (addr & 0x3) == 0 && el != EL2 ) {
754 
755  DBGVCR match_word = 0x0;
756 
757  Addr vbase = getVectorBase(tc, false);
758  Addr vaddress = addr & ~ 0x1f;
759  Addr low_addr = bits(addr, 5, 2);
760  if (vaddress == vbase) {
761  if (ArmSystem::haveEL(tc, EL3) && !isSecure(tc)) {
762  uint32_t bmask = 1UL << (low_addr + 24);
763  match_word = match_word | (DBGVCR) bmask;
764  // Non-secure vectors
765  } else {
766  uint32_t bmask = 1UL << (low_addr);
767  match_word = match_word | (DBGVCR) bmask;
768  // Secure vectors (or no EL3)
769  }
770  }
771  uint32_t mvbase = getVectorBase(tc, true);
772  if (ArmSystem::haveEL(tc, EL3) && ELIs32(tc, EL3) &&
773  isSecure(tc) && (vaddress == mvbase)) {
774  uint32_t bmask = 1UL << (low_addr + 8);
775  match_word = match_word | (DBGVCR) bmask;
776  // Monitor vectors
777  }
778 
779  DBGVCR mask;
780 
781  // Mask out bits not corresponding to vectors.
782  if (!ArmSystem::haveEL(tc, EL3)) {
783  mask = (DBGVCR) 0xDE;
784  } else if (!ELIs32(tc, EL3)) {
785  mask = (DBGVCR) 0xDE0000DE;
786  } else {
787  mask = (DBGVCR) 0xDE00DEDE;
788  }
789  DBGVCR dbgvcr = tc->readMiscReg(MISCREG_DBGVCR);
790  match_word = match_word & dbgvcr & mask;
791  enabled = match_word != 0x0;
792  // Check for UNPREDICTABLE case - match on Prefetch Abort and
793  // Data Abort vectors
794  ExceptionLevel ELd = debugTargetFrom(tc, isSecure(tc));
795  if (((match_word & 0x18001818) != 0x0) && ELd == el) {
796  enabled = false;
797  }
798  } else {
799  enabled = false;
800  }
801  return enabled;
802 }
803 
804 bool
806  ArmFault* fault)
807 {
808  if (conf->isAArch32() && ELIs32(tc, EL1) && el != EL2) {
809 
810  DBGVCR dbgvcr = tc->readMiscReg(MISCREG_DBGVCR);
811  DBGVCR match_type = fault->vectorCatchFlag();
812  DBGVCR mask;
813 
814  if (!ArmSystem::haveEL(tc, EL3)) {
815  mask = (DBGVCR) 0xDE;
816  } else if (ELIs32(tc, EL3) && fault->getToMode() == MODE_MON) {
817  mask = (DBGVCR) 0x0000DE00;
818  } else {
819  if (isSecure(tc))
820  mask = (DBGVCR) 0x000000DE;
821  else
822  mask = (DBGVCR) 0xDE000000;
823  }
824  match_type = match_type & mask & dbgvcr;
825 
826  if (match_type != 0x0) {
827  return true;
828  }
829  }
830  return false;
831 }
832 
ArmISA::SelfDebug::testDebug
Fault testDebug(ThreadContext *tc, const RequestPtr &req, BaseTLB::Mode mode)
Definition: self_debug.cc:47
ThreadContext::readMiscRegNoEffect
virtual RegVal readMiscRegNoEffect(RegIndex misc_reg) const =0
ArmISA::MISCREG_ID_AA64MMFR2_EL1
@ MISCREG_ID_AA64MMFR2_EL1
Definition: miscregs.hh:818
ArmISA::ELIsInHost
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 ...
Definition: utility.cc:337
ArmISA::MISCREG_DBGWVR0
@ MISCREG_DBGWVR0
Definition: miscregs.hh:134
ArmISA::EL2Enabled
bool EL2Enabled(ThreadContext *tc)
Definition: utility.cc:314
ArmISA::ArmFault::WPOINT_NOCM
@ WPOINT_NOCM
Definition: faults.hh:159
ArmISA::debugTargetFrom
ExceptionLevel debugTargetFrom(ThreadContext *tc, bool secure)
Definition: utility.cc:131
ArmISA::WatchPoint::isDoubleAligned
bool isDoubleAligned(Addr addr)
Definition: self_debug.hh:174
ArmISA::SelfDebug::securityStateMatch
static bool securityStateMatch(ThreadContext *tc, uint8_t ssc, bool hmc)
Definition: self_debug.hh:329
ArmISA::VectorCatch::exceptionTrapping
bool exceptionTrapping(ThreadContext *tc, ExceptionLevel el, ArmFault *fault)
Definition: self_debug.cc:805
ArmISA::SelfDebug::init
void init(ThreadContext *tc)
Definition: self_debug.cc:329
ArmISA::EL2
@ EL2
Definition: types.hh:624
ArmISA::BrkPoint::test
bool test(ThreadContext *tc, Addr pc, ExceptionLevel el, DBGBCR ctr, bool from_link)
Definition: self_debug.cc:220
ArmISA::SoftwareStep::stateSS
int stateSS
Definition: self_debug.hh:199
ArmISA::HaveVirtHostExt
bool HaveVirtHostExt(ThreadContext *tc)
Definition: utility.cc:264
ArmISA::cm
Bitfield< 13 > cm
Definition: miscregs_types.hh:423
ArmISA::ArmFault::BRKPOINT
@ BRKPOINT
Definition: faults.hh:156
ArmISA::SelfDebug::enabled
bool enabled() const
Definition: self_debug.hh:320
ArmISA::MISCREG_DBGWCR0
@ MISCREG_DBGWCR0
Definition: miscregs.hh:150
ArmISA::bas
Bitfield< 8, 5 > bas
Definition: miscregs_types.hh:703
ArmISA::MISCREG_CONTEXTIDR_EL1
@ MISCREG_CONTEXTIDR_EL1
Definition: miscregs.hh:741
ArmISA::MISCREG_OSLAR_EL1
@ MISCREG_OSLAR_EL1
Definition: miscregs.hh:524
ArmISA::VectorCatch::getVectorBase
Addr getVectorBase(ThreadContext *tc, bool monitor)
Definition: self_debug.hh:257
ArmISA::BrkPoint::testLinkedBk
bool testLinkedBk(ThreadContext *tc, Addr vaddr, ExceptionLevel el)
Definition: self_debug.cc:209
miscregs_types.hh
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
ArmISA::BrkPoint::valRegIndex
MiscRegIndex valRegIndex
Definition: self_debug.hh:61
ArmISA::atomic
Bitfield< 23, 20 > atomic
Definition: miscregs_types.hh:96
ArmISA::BrkPoint
Definition: self_debug.hh:57
ArmISA::EL0
@ EL0
Definition: types.hh:622
ArmISA::WatchPoint
Definition: self_debug.hh:143
ArmISA::SelfDebug::setAArch32
void setAArch32(ThreadContext *tc)
Definition: self_debug.hh:429
ArmISA::SoftwareStep::ACTIVE_NOT_PENDING_STATE
static const uint8_t ACTIVE_NOT_PENDING_STATE
Definition: self_debug.hh:196
ArmISA::MISCREG_DBGBVR0_EL1
@ MISCREG_DBGBVR0_EL1
Definition: miscregs.hh:454
ArmISA::SelfDebug::softStep
SoftwareStep * softStep
Definition: self_debug.hh:278
ArmISA::ssc
Bitfield< 15, 14 > ssc
Definition: miscregs_types.hh:700
ArmISA::currEL
static ExceptionLevel currEL(const ThreadContext *tc)
Definition: utility.hh:131
ArmISA::MISCREG_VTTBR_EL2
@ MISCREG_VTTBR_EL2
Definition: miscregs.hh:601
ArmISA::SoftwareStep::conf
SelfDebug * conf
Definition: self_debug.hh:200
BaseTLB::Mode
Mode
Definition: tlb.hh:57
ArmISA::ArmFault::VECTORCATCH
@ VECTORCATCH
Definition: faults.hh:157
ArmISA::ArmFault::WPOINT_CM
@ WPOINT_CM
Definition: faults.hh:158
ArmISA::ArmFault::UnknownTran
@ UnknownTran
Definition: faults.hh:150
ArmISA::MISCREG_MDCR_EL3
@ MISCREG_MDCR_EL3
Definition: miscregs.hh:592
RequestPtr
std::shared_ptr< Request > RequestPtr
Definition: request.hh:86
ArmISA::SelfDebug::arBrkPoints
std::vector< BrkPoint > arBrkPoints
Definition: self_debug.hh:276
ArmISA::EL3
@ EL3
Definition: types.hh:625
ArmISA::BrkPoint::testContextMatch
bool testContextMatch(ThreadContext *tc, bool ctx1, bool low_ctx)
Definition: self_debug.cc:429
ArmISA::HaveSecureEL2Ext
bool HaveSecureEL2Ext(ThreadContext *tc)
Definition: utility.cc:293
ArmISA::BrkPoint::maxAddrSize
int maxAddrSize
Definition: self_debug.hh:67
ArmISA::thumb
Bitfield< 36 > thumb
Definition: types.hh:88
ArmISA::BrkPoint::getVMIDfromReg
uint32_t getVMIDfromReg(ThreadContext *tc)
Definition: self_debug.cc:524
ArmISA
Definition: ccregs.hh:41
ArmISA::VectorCatch::conf
SelfDebug * conf
Definition: self_debug.hh:242
ArmISA::SelfDebug::enableTdeTge
bool enableTdeTge
Definition: self_debug.hh:282
ArmISA::SoftwareStep::cpsrD
bool cpsrD
Definition: self_debug.hh:203
ArmISA::SelfDebug::vcExcpt
VectorCatch * vcExcpt
Definition: self_debug.hh:279
ArmISA::BrkPoint::getContextfromReg
RegVal getContextfromReg(ThreadContext *tc, bool ctxid1) const
Definition: self_debug.hh:97
ArmISA::WatchPoint::isEnabled
bool isEnabled(ThreadContext *tc, ExceptionLevel el, bool hmc, uint8_t ssc, uint8_t pac)
Definition: self_debug.cc:534
ArmISA::ArmFault::DebugEvent
@ DebugEvent
Definition: faults.hh:101
ArmISA::md
Bitfield< 12 > md
Definition: miscregs_types.hh:761
ArmISA::SelfDebug::triggerException
Fault triggerException(ThreadContext *tc, Addr vaddr)
Definition: self_debug.cc:109
ArmISA::BrkPoint::enable
bool enable
Definition: self_debug.hh:66
ArmISA::SoftwareStep::clearLdx
void clearLdx()
Definition: self_debug.hh:225
ArmISA::pmc
Bitfield< 2, 1 > pmc
Definition: miscregs_types.hh:705
ArmISA::ELStateUsingAArch32
bool ELStateUsingAArch32(ThreadContext *tc, ExceptionLevel el, bool secure)
Definition: utility.cc:418
ArmISA::MISCREG_DBGBCR0_EL1
@ MISCREG_DBGBCR0_EL1
Definition: miscregs.hh:470
ArmISA::j
Bitfield< 24 > j
Definition: miscregs_types.hh:54
ArmISA::BrkPoint::isEnabled
bool isEnabled(ThreadContext *tc, ExceptionLevel el, uint8_t hmc, uint8_t ssc, uint8_t pmc)
Definition: self_debug.cc:469
ArmISA::ELIs32
bool ELIs32(ThreadContext *tc, ExceptionLevel el)
Definition: utility.cc:328
ArmISA::MISCREG_CONTEXTIDR
@ MISCREG_CONTEXTIDR
Definition: miscregs.hh:395
ArmISA::VectorCatch
Definition: self_debug.hh:238
ArmISA::BrkPoint::getControlReg
const DBGBCR getControlReg(ThreadContext *tc)
Definition: self_debug.hh:116
ArmISA::SelfDebug::setbSDD
void setbSDD(RegVal val)
Definition: self_debug.hh:373
Stats::enabled
bool enabled()
Definition: statistics.cc:275
ArmISA::SelfDebug::testBreakPoints
Fault testBreakPoints(ThreadContext *tc, Addr vaddr)
Definition: self_debug.cc:72
ArmISA::SelfDebug::triggerWatchpointException
Fault triggerWatchpointException(ThreadContext *tc, Addr vaddr, bool write, bool cm)
Definition: self_debug.cc:147
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
bitfield.hh
ArmISA::EC_PREFETCH_ABORT_TO_HYP
@ EC_PREFETCH_ABORT_TO_HYP
Definition: types.hh:673
ArmISA::SelfDebug::testWatchPoints
Fault testWatchPoints(ThreadContext *tc, Addr vaddr, bool write, bool atomic, unsigned size, bool cm)
Definition: self_debug.cc:122
ArmISA::ArmFault
Definition: faults.hh:60
ArmISA::MISCREG_MDSCR_EL1
@ MISCREG_MDSCR_EL1
Definition: miscregs.hh:451
ArmISA::MISCREG_CONTEXTIDR_EL2
@ MISCREG_CONTEXTIDR_EL2
Definition: miscregs.hh:813
ArmISA::ExceptionLevel
ExceptionLevel
Definition: types.hh:621
ArmISA::SelfDebug::setMDSCRvals
void setMDSCRvals(RegVal val)
Definition: self_debug.hh:379
ArmISA::d
Bitfield< 9 > d
Definition: miscregs_types.hh:60
Fault
std::shared_ptr< FaultBase > Fault
Definition: types.hh:246
MipsISA::vaddr
vaddr
Definition: pra_constants.hh:275
MipsISA::pc
Bitfield< 4 > pc
Definition: pra_constants.hh:240
ArmISA::SelfDebug::kde
bool kde
Definition: self_debug.hh:286
ArmISA::MISCREG_ID_AA64MMFR1_EL1
@ MISCREG_ID_AA64MMFR1_EL1
Definition: miscregs.hh:566
ArmISA::WatchPoint::ctrlRegIndex
MiscRegIndex ctrlRegIndex
Definition: self_debug.hh:146
ArmISA::SelfDebug::oslk
bool oslk
Definition: self_debug.hh:287
ArmISA::SelfDebug::isDebugEnabled
bool isDebugEnabled(ThreadContext *tc)
Definition: self_debug.hh:359
ArmISA::SoftwareStep::advanceSS
bool advanceSS(ThreadContext *tc)
Definition: self_debug.cc:676
ArmISA::mode
Bitfield< 4, 0 > mode
Definition: miscregs_types.hh:70
ArmISA::el
Bitfield< 3, 2 > el
Definition: miscregs_types.hh:69
ArmISA::MISCREG_ID_AA64DFR0_EL1
@ MISCREG_ID_AA64DFR0_EL1
Definition: miscregs.hh:559
ArmISA::WatchPoint::compareAddress
bool compareAddress(ThreadContext *tc, Addr in_addr, uint8_t bas, uint8_t mask, unsigned size)
Definition: self_debug.cc:600
ArmISA::VectorCatch::addressMatching
bool addressMatching(ThreadContext *tc, Addr addr, ExceptionLevel el)
Definition: self_debug.cc:747
ArmISA::SelfDebug::isAArch32
bool isAArch32() const
Definition: self_debug.hh:423
ArmISA::WatchPoint::getAddrfromReg
Addr getAddrfromReg(ThreadContext *tc)
Definition: self_debug.hh:168
ArmISA::BrkPoint::testVMIDMatch
bool testVMIDMatch(ThreadContext *tc)
Definition: self_debug.cc:453
ArmISA::SelfDebug::sdd
bool sdd
Definition: self_debug.hh:285
ArmISA::SelfDebug::initialized
bool initialized
Definition: self_debug.hh:281
faults.hh
ArmISA::MISCREG_HCR_EL2
@ MISCREG_HCR_EL2
Definition: miscregs.hh:582
NoFault
constexpr decltype(nullptr) NoFault
Definition: types.hh:251
ArmISA::ArmFault::vectorCatchFlag
virtual uint32_t vectorCatchFlag() const
Definition: faults.hh:247
ArmISA::EL1
@ EL1
Definition: types.hh:623
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
ArmISA::SelfDebug::updateOSLock
void updateOSLock(RegVal val)
Definition: self_debug.hh:399
ArmISA::ArmFault::DebugType
DebugType
Definition: faults.hh:153
ArmISA::BrkPoint::isCntxtAware
bool isCntxtAware
Definition: self_debug.hh:63
ArmISA::SoftwareStep::INACTIVE_STATE
static const uint8_t INACTIVE_STATE
Definition: self_debug.hh:194
ArmISA::SoftwareStep::bSS
bool bSS
Definition: self_debug.hh:198
ThreadContext::pcState
virtual TheISA::PCState pcState() const =0
X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:80
BaseTLB::Write
@ Write
Definition: tlb.hh:57
ArmISA::BrkPoint::VMID16enabled
bool VMID16enabled
Definition: self_debug.hh:64
ArmISA::hmc
Bitfield< 13 > hmc
Definition: miscregs_types.hh:701
ArmISA::BrkPoint::getAddrfromReg
Addr getAddrfromReg(ThreadContext *tc) const
Definition: self_debug.hh:91
ArmISA::MISCREG_CPSR
@ MISCREG_CPSR
Definition: miscregs.hh:57
ArmISA::WatchPoint::updateControl
void updateControl(DBGWCR val)
Definition: self_debug.hh:180
ArmISA::SelfDebug::arWatchPoints
std::vector< WatchPoint > arWatchPoints
Definition: self_debug.hh:277
ArmISA::SelfDebug::mde
bool mde
Definition: self_debug.hh:284
ArmISA::MISCREG_SDER
@ MISCREG_SDER
Definition: miscregs.hh:240
ArmISA::ArmFault::getToMode
OperatingMode getToMode() const
Definition: faults.hh:253
ArmISA::isSecureBelowEL3
bool isSecureBelowEL3(ThreadContext *tc)
Definition: utility.cc:124
ArmISA::WatchPoint::maxAddrSize
int maxAddrSize
Definition: self_debug.hh:150
ArmISA::MISCREG_DBGVCR
@ MISCREG_DBGVCR
Definition: miscregs.hh:97
MipsISA::PCState
GenericISA::DelaySlotPCState< MachInst > PCState
Definition: types.hh:41
ArmISA::MISCREG_MDCR_EL2
@ MISCREG_MDCR_EL2
Definition: miscregs.hh:583
ArmISA::SelfDebug::testVectorCatch
Fault testVectorCatch(ThreadContext *tc, Addr addr, ArmFault *flt)
Definition: self_debug.cc:714
ArmISA::WatchPoint::test
bool test(ThreadContext *tc, Addr addr, ExceptionLevel el, bool &wrt, bool atomic, unsigned size)
Definition: self_debug.cc:580
ArmISA::SelfDebug::isDebugEnabledForEL32
bool isDebugEnabledForEL32(ThreadContext *tc, ExceptionLevel el, bool secure, bool mask)
Definition: self_debug.cc:182
ArmISA::BrkPoint::testAddrMissMatch
bool testAddrMissMatch(ThreadContext *tc, Addr pc, uint8_t bas)
Definition: self_debug.cc:403
ArmISA::SelfDebug::to32
bool to32
Definition: self_debug.hh:290
ThreadContext::readMiscReg
virtual RegVal readMiscReg(RegIndex misc_reg)=0
ArmISA::MiscRegIndex
MiscRegIndex
Definition: miscregs.hh:56
ArmISA::WatchPoint::conf
SelfDebug * conf
Definition: self_debug.hh:148
ArmISA::SoftwareStep::ACTIVE_PENDING_STATE
static const uint8_t ACTIVE_PENDING_STATE
Definition: self_debug.hh:195
ArmISA::BrkPoint::testAddrMatch
bool testAddrMatch(ThreadContext *tc, Addr pc, uint8_t bas)
Definition: self_debug.cc:384
ArmSystem::haveEL
static bool haveEL(ThreadContext *tc, ArmISA::ExceptionLevel el)
Return true if the system implements a specific exception level.
Definition: system.cc:135
bits
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
Definition: bitfield.hh:73
ArmISA::SoftwareStep::debugExceptionReturnSS
bool debugExceptionReturnSS(ThreadContext *tc, CPSR spsr, ExceptionLevel dest)
Definition: self_debug.cc:644
ArmISA::MODE_MON
@ MODE_MON
Definition: types.hh:640
ArmISA::MISCREG_DBGDEVID0
@ MISCREG_DBGDEVID0
Definition: miscregs.hh:193
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
self_debug.hh
ArmISA::BrkPoint::updateControl
void updateControl(DBGBCR val)
Definition: self_debug.hh:137
ArmISA::pac
Bitfield< 2, 1 > pac
Definition: miscregs_types.hh:719
ArmISA::SelfDebug::setenableTDETGE
void setenableTDETGE(HCR hcr, HDCR mdcr)
Definition: self_debug.hh:393
BaseTLB::Execute
@ Execute
Definition: tlb.hh:57
ArmISA::TlbEntry::DomainType::NoAccess
@ NoAccess
ArmISA::SelfDebug::targetAArch32
bool targetAArch32(ThreadContext *tc)
Definition: self_debug.hh:454
ArmISA::v
Bitfield< 28 > v
Definition: miscregs_types.hh:51
RegVal
uint64_t RegVal
Definition: types.hh:174
ArmISA::BrkPoint::conf
SelfDebug * conf
Definition: self_debug.hh:62
ArmISA::SelfDebug::getBrkPoint
BrkPoint * getBrkPoint(uint8_t index)
Definition: self_debug.hh:323
ArmISA::mask
Bitfield< 28, 24 > mask
Definition: miscregs_types.hh:711
ArmISA::SelfDebug::aarch32
bool aarch32
Definition: self_debug.hh:289
ArmISA::isSecure
bool isSecure(ThreadContext *tc)
Definition: utility.cc:112
ArmISA::SelfDebug::isDebugEnabledForEL64
bool isDebugEnabledForEL64(ThreadContext *tc, ExceptionLevel el, bool secure, bool mask)
Definition: self_debug.cc:163
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171

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