@@ -197,8 +197,9 @@ interface uvma_rvfi_instr_if_t
197
197
198
198
199
199
// -------------------------------------------------------------------
200
- // Local variables
200
+ // Signals
201
201
// -------------------------------------------------------------------
202
+
202
203
int unsigned irq_cnt; // number of taken interrupts
203
204
int unsigned nmi_instr_cnt; // number of instructions after nmi
204
205
int unsigned single_step_cnt; // number of instructions stepped
@@ -275,6 +276,10 @@ interface uvma_rvfi_instr_if_t
275
276
276
277
asm_t instr_asm;
277
278
279
+ wire is_exception_cause_instr_acc_fault = (rvfi_trap.exception_cause == EXC_CAUSE_INSTR_ACC_FAULT );
280
+ wire is_exception_cause_integrity_fault = (rvfi_trap.exception_cause == EXC_CAUSE_INSTR_INTEGRITY_FAULT );
281
+ wire is_exception_cause_bus_fault = (rvfi_trap.exception_cause == EXC_CAUSE_INSTR_BUS_FAULT );
282
+
278
283
// -------------------------------------------------------------------
279
284
// Begin module code
280
285
// -------------------------------------------------------------------
@@ -335,7 +340,7 @@ interface uvma_rvfi_instr_if_t
335
340
end
336
341
337
342
always_comb begin
338
- is_mret = is_mret_f ( );
343
+ is_mret = match_instr ( INSTR_OPCODE_MRET , INSTR_MASK_FULL );
339
344
end
340
345
341
346
always_comb begin
@@ -437,7 +442,15 @@ interface uvma_rvfi_instr_if_t
437
442
end
438
443
439
444
always_comb begin
440
- is_instr_bus_valid = is_instr_bus_valid_f ();
445
+ is_instr_bus_valid = (
446
+ (
447
+ ! is_exception_cause_bus_fault &&
448
+ ! is_exception_cause_integrity_fault &&
449
+ ! is_exception_cause_instr_acc_fault
450
+ ) ||
451
+ rvfi_trap.clicptr
452
+ // Note: `clicptr` pertains to the fetch of the next instr. See the user manual.
453
+ );
441
454
end
442
455
443
456
always_comb begin
@@ -623,6 +636,7 @@ interface uvma_rvfi_instr_if_t
623
636
624
637
modport passive_mp (clocking mon_cb);
625
638
639
+
626
640
// -------------------------------------------------------------------
627
641
// Functions
628
642
// -------------------------------------------------------------------
@@ -637,9 +651,11 @@ interface uvma_rvfi_instr_if_t
637
651
logic [ XLEN - 1 : 0 ] instr_ref,
638
652
logic [ XLEN - 1 : 0 ] instr_mask
639
653
);
640
-
641
- return rvfi_valid && is_instr_bus_valid && ((rvfi_insn & instr_mask) == instr_ref);
642
-
654
+ return (
655
+ rvfi_valid &&
656
+ is_instr_bus_valid &&
657
+ ((rvfi_insn & instr_mask) == instr_ref)
658
+ );
643
659
endfunction : match_instr
644
660
645
661
// Check if instruction is of a certain type, without verifying the instr word is valid
@@ -841,10 +857,6 @@ function automatic logic is_dret_f();
841
857
return match_instr (INSTR_OPCODE_DRET , INSTR_MASK_FULL );
842
858
endfunction : is_dret_f
843
859
844
- function automatic logic is_mret_f ();
845
- return match_instr (INSTR_OPCODE_MRET , INSTR_MASK_FULL );
846
- endfunction : is_mret_f
847
-
848
860
function automatic logic is_uret_f ();
849
861
return match_instr (INSTR_OPCODE_URET , INSTR_MASK_FULL );
850
862
endfunction : is_uret_f
@@ -967,13 +979,6 @@ function automatic logic is_pma_fault_f();
967
979
(rvfi_trap.cause_type == 'h 0 );
968
980
endfunction : is_pma_fault_f
969
981
970
- function automatic logic is_instr_bus_valid_f ();
971
- return ! ( (rvfi_trap.exception_cause == EXC_CAUSE_INSTR_ACC_FAULT ) ||
972
- (rvfi_trap.exception_cause == EXC_CAUSE_INSTR_INTEGRITY_FAULT ) ||
973
- (rvfi_trap.exception_cause == EXC_CAUSE_INSTR_BUS_FAULT )
974
- );
975
- endfunction : is_instr_bus_valid_f
976
-
977
982
function automatic logic [31 : 0 ] rvfi_mem_addr_word0highbyte_f ();
978
983
logic [31 : 0 ] addr = rvfi_mem_addr[31 : 0 ];
979
984
case (1 )
0 commit comments