Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix icache regression failure on VCS #2204

Merged
merged 1 commit into from
Aug 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions dv/uvm/icache/dv/fcov/ibex_icache_fcov_if.sv
Original file line number Diff line number Diff line change
Expand Up @@ -265,10 +265,10 @@ interface ibex_icache_fcov_if import ibex_pkg::*; #(
}
cp_state: coverpoint fill_buffer_state;
cp_fill_buffer_done_reason : coverpoint fill_buffer_done_reason;
cp_state_when_disabling: coverpoint fill_buffer_state iff icache_just_disabled;
cp_state_when_enabling: coverpoint fill_buffer_state iff icache_just_enabled;
cp_state_when_inval_start: coverpoint fill_buffer_state iff icache_inval_start;
cp_starting_beat: coverpoint starting_beat iff fill_alloc[i_fb];
cp_state_when_disabling: coverpoint fill_buffer_state iff (icache_just_disabled);
cp_state_when_enabling: coverpoint fill_buffer_state iff (icache_just_enabled);
cp_state_when_inval_start: coverpoint fill_buffer_state iff (icache_inval_start);
cp_starting_beat: coverpoint starting_beat iff (fill_alloc[i_fb]);
endgroup

`DV_FCOV_INSTANTIATE_CG(icache_fillbuf_cg, en_icache_fcov)
Expand Down
Loading