Skip to content

Commit b928395

Browse files
author
pascalgouedo
authored
Merge pull request #2469 from dd-baoshan/cv32e40p/dev
update prev_is_trap to deassert when exit from exception, irq or debug
2 parents 010138d + 2547881 commit b928395

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

cv32e40p/env/uvme/cov/uvme_rv32x_hwloop_covg.sv

+3
Original file line numberDiff line numberDiff line change
@@ -801,6 +801,7 @@ class uvme_rv32x_hwloop_covg # (
801801
function void check_exception_exit();
802802
if (cv32e40p_rvvi_vif.valid && cv32e40p_rvvi_vif.insn == TB_INSTR_MRET && !cv32e40p_rvvi_vif.trap) begin
803803
is_ebreak = 0; is_ecall = 0; is_illegal = 0; is_trap = 0;
804+
prev_is_trap = 0;
804805
`uvm_info(_header, $sformatf("DEBUG - EXCEPTION Exit"), UVM_DEBUG);
805806
end
806807
endfunction : check_exception_exit
@@ -895,6 +896,7 @@ class uvme_rv32x_hwloop_covg # (
895896
if (is_irq && cv32e40p_rvvi_vif.valid && cv32e40p_rvvi_vif.insn == TB_INSTR_MRET) begin
896897
`uvm_info(_header, $sformatf("DEBUG - IRQ Exit"), UVM_DEBUG);
897898
is_irq = 0;
899+
prev_is_trap = 0;
898900
end
899901
end // IRQ_EXIT
900902
forever begin : INIT_MACHINE_MODE
@@ -947,6 +949,7 @@ class uvme_rv32x_hwloop_covg # (
947949
@(posedge cv32e40p_rvvi_vif.clk) ; @(negedge cv32e40p_rvvi_vif.clk);
948950
`uvm_info(_header, $sformatf("DEBUG - Debug Mode Exit"), UVM_DEBUG);
949951
is_dbg_mode = 0; is_ebreakm = 0;
952+
prev_is_trap = 0;
950953
end
951954
end // DBG_EXIT
952955

0 commit comments

Comments
 (0)