Set badaddr=0 on illegal instruction traps
[riscv-isa-sim.git] / riscv / extension.cc
index 097713929bf43c92da73396ebaf017a311a7b5ac..520c2ed578c3964c4cfba8c9f7da394a48c1bc5d 100644 (file)
@@ -1,3 +1,5 @@
+// See LICENSE for license details.
+
 #include "extension.h"
 #include "trap.h"
 
@@ -7,18 +9,12 @@ extension_t::~extension_t()
 
 void extension_t::illegal_instruction()
 {
-  throw trap_illegal_instruction();
+  throw trap_illegal_instruction(0);
 }
 
 void extension_t::raise_interrupt()
 {
-  int priv = get_field(p->get_state()->mstatus, MSTATUS_PRV);
-  int ie = get_field(p->get_state()->mstatus, MSTATUS_IE);
-
-  if (priv < PRV_M || (priv == PRV_M && ie)) {
-    p->raise_interrupt(IRQ_COP);
-  }
-
+  p->take_interrupt((reg_t)1 << IRQ_COP); // must not return
   throw std::logic_error("a COP exception was posted, but interrupts are disabled!");
 }