Line Coverage for Module : 
flash_phy_rd_buffers
 | Line No. | Total | Covered | Percent | 
| TOTAL |  | 23 | 23 | 100.00 | 
| ALWAYS | 38 | 23 | 23 | 100.00 | 
37                        always_ff @(posedge clk_i or negedge rst_ni) begin
38         1/1              if (!rst_ni) begin
           Tests:       T1 T2 T3 
39         1/1                out_o.data <= '0;
           Tests:       T1 T2 T3 
40         1/1                out_o.addr <= '0;
           Tests:       T1 T2 T3 
41         1/1                out_o.part <= flash_ctrl_pkg::FlashPartData;
           Tests:       T1 T2 T3 
42         1/1                out_o.info_sel <= '0;
           Tests:       T1 T2 T3 
43         1/1                out_o.attr <= Invalid;
           Tests:       T1 T2 T3 
44         1/1                out_o.err <= '0;
           Tests:       T1 T2 T3 
45         1/1              end else if (!en_i && out_o.attr != Invalid) begin
           Tests:       T1 T2 T3 
46         1/1                out_o.attr <= Invalid;
           Tests:       T5 T98 T99 
47         1/1                out_o.err <= '0;
           Tests:       T5 T98 T99 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T2 T3 T9 
50         1/1                out_o.err <= '0;
           Tests:       T2 T3 T9 
51         1/1              end else if (alloc_i && en_i) begin
           Tests:       T1 T2 T3 
52         1/1                out_o.addr <= addr_i;
           Tests:       T1 T2 T3 
53         1/1                out_o.part <= part_i;
           Tests:       T1 T2 T3 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T1 T2 T3 
55         1/1                out_o.attr <= Wip;
           Tests:       T1 T2 T3 
56         1/1                out_o.err <= '0;
           Tests:       T1 T2 T3 
57         1/1              end else if (update_i && en_i) begin
           Tests:       T1 T2 T3 
58         1/1                out_o.data <= data_i;
           Tests:       T1 T2 T3 
59         1/1                out_o.attr <= Valid;
           Tests:       T1 T2 T3 
60         1/1                out_o.err <= err_i;
           Tests:       T1 T2 T3 
61                          end
                        MISSING_ELSE
Cond Coverage for Module : 
flash_phy_rd_buffers
 | Total | Covered | Percent | 
| Conditions | 14 | 11 | 78.57 | 
| Logical | 14 | 11 | 78.57 | 
| Non-Logical | 0 | 0 |  | 
| Event | 0 | 0 |  | 
 LINE       45
 EXPRESSION (((!en_i)) && (out_o.attr != Invalid))
             ----1----    -----------2-----------
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T5,T98,T99 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T1,T2,T3 | 
 LINE       48
 EXPRESSION (wipe_i && en_i)
             ---1--    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T2,T3,T9 | 
 LINE       51
 EXPRESSION (alloc_i && en_i)
             ---1---    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       57
 EXPRESSION (update_i && en_i)
             ----1---    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T1,T2,T3 | 
Branch Coverage for Module : 
flash_phy_rd_buffers
 | Line No. | Total | Covered | Percent | 
| Branches | 
 | 
6 | 
6 | 
100.00 | 
| IF | 
38 | 
6 | 
6 | 
100.00 | 
38             if (!rst_ni) begin
               -1-  
39               out_o.data <= '0;
                 ==>
40               out_o.addr <= '0;
41               out_o.part <= flash_ctrl_pkg::FlashPartData;
42               out_o.info_sel <= '0;
43               out_o.attr <= Invalid;
44               out_o.err <= '0;
45             end else if (!en_i && out_o.attr != Invalid) begin
                        -2-  
46               out_o.attr <= Invalid;
                 ==>
47               out_o.err <= '0;
48             end else if (wipe_i && en_i) begin
                        -3-  
49               out_o.attr <= Invalid;
                 ==>
50               out_o.err <= '0;
51             end else if (alloc_i && en_i) begin
                        -4-  
52               out_o.addr <= addr_i;
                 ==>
53               out_o.part <= part_i;
54               out_o.info_sel <= info_sel_i;
55               out_o.attr <= Wip;
56               out_o.err <= '0;
57             end else if (update_i && en_i) begin
                        -5-  
58               out_o.data <= data_i;
                 ==>
59               out_o.attr <= Valid;
60               out_o.err <= err_i;
61             end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | -4- | -5- | Status | Tests | 
| 1 | 
- | 
- | 
- | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
1 | 
- | 
- | 
- | 
Covered | 
T5,T98,T99 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T2,T3,T9 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
0 | 
0 | 
Covered | 
T1,T2,T3 | 
Assert Coverage for Module : 
flash_phy_rd_buffers
Assertion Details
AllocCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
2147483647 | 
5128278 | 
0 | 
0 | 
| T1 | 
4004 | 
5 | 
0 | 
0 | 
| T2 | 
6992 | 
10 | 
0 | 
0 | 
| T3 | 
6220 | 
21 | 
0 | 
0 | 
| T4 | 
28952 | 
0 | 
0 | 
0 | 
| T9 | 
500016 | 
728 | 
0 | 
0 | 
| T10 | 
32304 | 
0 | 
0 | 
0 | 
| T11 | 
380016 | 
42 | 
0 | 
0 | 
| T12 | 
67072 | 
389 | 
0 | 
0 | 
| T13 | 
0 | 
19349 | 
0 | 
0 | 
| T17 | 
14064 | 
9 | 
0 | 
0 | 
| T18 | 
38800 | 
102 | 
0 | 
0 | 
| T19 | 
19040 | 
54 | 
0 | 
0 | 
| T32 | 
352372 | 
1212 | 
0 | 
0 | 
| T48 | 
0 | 
282 | 
0 | 
0 | 
| T49 | 
0 | 
9807 | 
0 | 
0 | 
| T66 | 
8296 | 
73 | 
0 | 
0 | 
| T70 | 
0 | 
758 | 
0 | 
0 | 
| T71 | 
606444 | 
0 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
2147483647 | 
5128266 | 
0 | 
0 | 
| T1 | 
4004 | 
5 | 
0 | 
0 | 
| T2 | 
6992 | 
10 | 
0 | 
0 | 
| T3 | 
6220 | 
21 | 
0 | 
0 | 
| T4 | 
28952 | 
0 | 
0 | 
0 | 
| T9 | 
500016 | 
728 | 
0 | 
0 | 
| T10 | 
32304 | 
0 | 
0 | 
0 | 
| T11 | 
380016 | 
41 | 
0 | 
0 | 
| T12 | 
67072 | 
389 | 
0 | 
0 | 
| T13 | 
0 | 
19349 | 
0 | 
0 | 
| T17 | 
14064 | 
9 | 
0 | 
0 | 
| T18 | 
38800 | 
102 | 
0 | 
0 | 
| T19 | 
19040 | 
54 | 
0 | 
0 | 
| T32 | 
352372 | 
1212 | 
0 | 
0 | 
| T48 | 
0 | 
282 | 
0 | 
0 | 
| T49 | 
0 | 
9807 | 
0 | 
0 | 
| T66 | 
8296 | 
73 | 
0 | 
0 | 
| T70 | 
0 | 
758 | 
0 | 
0 | 
| T71 | 
606444 | 
0 | 
0 | 
0 | 
 
Line Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[0].u_core.u_rd.gen_bufs[0].u_rd_buf
 | Line No. | Total | Covered | Percent | 
| TOTAL |  | 23 | 23 | 100.00 | 
| ALWAYS | 38 | 23 | 23 | 100.00 | 
37                        always_ff @(posedge clk_i or negedge rst_ni) begin
38         1/1              if (!rst_ni) begin
           Tests:       T1 T2 T3 
39         1/1                out_o.data <= '0;
           Tests:       T1 T2 T3 
40         1/1                out_o.addr <= '0;
           Tests:       T1 T2 T3 
41         1/1                out_o.part <= flash_ctrl_pkg::FlashPartData;
           Tests:       T1 T2 T3 
42         1/1                out_o.info_sel <= '0;
           Tests:       T1 T2 T3 
43         1/1                out_o.attr <= Invalid;
           Tests:       T1 T2 T3 
44         1/1                out_o.err <= '0;
           Tests:       T1 T2 T3 
45         1/1              end else if (!en_i && out_o.attr != Invalid) begin
           Tests:       T1 T2 T3 
46         1/1                out_o.attr <= Invalid;
           Tests:       T5 T98 T99 
47         1/1                out_o.err <= '0;
           Tests:       T5 T98 T99 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T2 T3 T9 
50         1/1                out_o.err <= '0;
           Tests:       T2 T3 T9 
51         1/1              end else if (alloc_i && en_i) begin
           Tests:       T1 T2 T3 
52         1/1                out_o.addr <= addr_i;
           Tests:       T1 T2 T3 
53         1/1                out_o.part <= part_i;
           Tests:       T1 T2 T3 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T1 T2 T3 
55         1/1                out_o.attr <= Wip;
           Tests:       T1 T2 T3 
56         1/1                out_o.err <= '0;
           Tests:       T1 T2 T3 
57         1/1              end else if (update_i && en_i) begin
           Tests:       T1 T2 T3 
58         1/1                out_o.data <= data_i;
           Tests:       T1 T2 T3 
59         1/1                out_o.attr <= Valid;
           Tests:       T1 T2 T3 
60         1/1                out_o.err <= err_i;
           Tests:       T1 T2 T3 
61                          end
                        MISSING_ELSE
Cond Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[0].u_core.u_rd.gen_bufs[0].u_rd_buf
 | Total | Covered | Percent | 
| Conditions | 14 | 11 | 78.57 | 
| Logical | 14 | 11 | 78.57 | 
| Non-Logical | 0 | 0 |  | 
| Event | 0 | 0 |  | 
 LINE       45
 EXPRESSION (((!en_i)) && (out_o.attr != Invalid))
             ----1----    -----------2-----------
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T5,T98,T99 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T1,T2,T3 | 
 LINE       48
 EXPRESSION (wipe_i && en_i)
             ---1--    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T2,T3,T9 | 
 LINE       51
 EXPRESSION (alloc_i && en_i)
             ---1---    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       57
 EXPRESSION (update_i && en_i)
             ----1---    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T1,T2,T3 | 
Branch Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[0].u_core.u_rd.gen_bufs[0].u_rd_buf
 | Line No. | Total | Covered | Percent | 
| Branches | 
 | 
6 | 
6 | 
100.00 | 
| IF | 
38 | 
6 | 
6 | 
100.00 | 
38             if (!rst_ni) begin
               -1-  
39               out_o.data <= '0;
                 ==>
40               out_o.addr <= '0;
41               out_o.part <= flash_ctrl_pkg::FlashPartData;
42               out_o.info_sel <= '0;
43               out_o.attr <= Invalid;
44               out_o.err <= '0;
45             end else if (!en_i && out_o.attr != Invalid) begin
                        -2-  
46               out_o.attr <= Invalid;
                 ==>
47               out_o.err <= '0;
48             end else if (wipe_i && en_i) begin
                        -3-  
49               out_o.attr <= Invalid;
                 ==>
50               out_o.err <= '0;
51             end else if (alloc_i && en_i) begin
                        -4-  
52               out_o.addr <= addr_i;
                 ==>
53               out_o.part <= part_i;
54               out_o.info_sel <= info_sel_i;
55               out_o.attr <= Wip;
56               out_o.err <= '0;
57             end else if (update_i && en_i) begin
                        -5-  
58               out_o.data <= data_i;
                 ==>
59               out_o.attr <= Valid;
60               out_o.err <= err_i;
61             end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | -4- | -5- | Status | Tests | 
| 1 | 
- | 
- | 
- | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
1 | 
- | 
- | 
- | 
Covered | 
T5,T98,T99 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T2,T3,T9 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
0 | 
0 | 
Covered | 
T1,T2,T3 | 
Assert Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[0].u_core.u_rd.gen_bufs[0].u_rd_buf
Assertion Details
AllocCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
365919510 | 
647969 | 
0 | 
0 | 
| T1 | 
1001 | 
2 | 
0 | 
0 | 
| T2 | 
1748 | 
3 | 
0 | 
0 | 
| T3 | 
1555 | 
6 | 
0 | 
0 | 
| T4 | 
3619 | 
0 | 
0 | 
0 | 
| T9 | 
125004 | 
182 | 
0 | 
0 | 
| T10 | 
4038 | 
0 | 
0 | 
0 | 
| T11 | 
0 | 
6 | 
0 | 
0 | 
| T12 | 
8384 | 
42 | 
0 | 
0 | 
| T13 | 
0 | 
2378 | 
0 | 
0 | 
| T17 | 
1758 | 
1 | 
0 | 
0 | 
| T18 | 
4850 | 
0 | 
0 | 
0 | 
| T19 | 
2380 | 
14 | 
0 | 
0 | 
| T32 | 
0 | 
137 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
365919510 | 
647965 | 
0 | 
0 | 
| T1 | 
1001 | 
2 | 
0 | 
0 | 
| T2 | 
1748 | 
3 | 
0 | 
0 | 
| T3 | 
1555 | 
6 | 
0 | 
0 | 
| T4 | 
3619 | 
0 | 
0 | 
0 | 
| T9 | 
125004 | 
182 | 
0 | 
0 | 
| T10 | 
4038 | 
0 | 
0 | 
0 | 
| T11 | 
0 | 
6 | 
0 | 
0 | 
| T12 | 
8384 | 
42 | 
0 | 
0 | 
| T13 | 
0 | 
2378 | 
0 | 
0 | 
| T17 | 
1758 | 
1 | 
0 | 
0 | 
| T18 | 
4850 | 
0 | 
0 | 
0 | 
| T19 | 
2380 | 
14 | 
0 | 
0 | 
| T32 | 
0 | 
137 | 
0 | 
0 | 
 
Line Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[0].u_core.u_rd.gen_bufs[1].u_rd_buf
 | Line No. | Total | Covered | Percent | 
| TOTAL |  | 23 | 23 | 100.00 | 
| ALWAYS | 38 | 23 | 23 | 100.00 | 
37                        always_ff @(posedge clk_i or negedge rst_ni) begin
38         1/1              if (!rst_ni) begin
           Tests:       T1 T2 T3 
39         1/1                out_o.data <= '0;
           Tests:       T1 T2 T3 
40         1/1                out_o.addr <= '0;
           Tests:       T1 T2 T3 
41         1/1                out_o.part <= flash_ctrl_pkg::FlashPartData;
           Tests:       T1 T2 T3 
42         1/1                out_o.info_sel <= '0;
           Tests:       T1 T2 T3 
43         1/1                out_o.attr <= Invalid;
           Tests:       T1 T2 T3 
44         1/1                out_o.err <= '0;
           Tests:       T1 T2 T3 
45         1/1              end else if (!en_i && out_o.attr != Invalid) begin
           Tests:       T1 T2 T3 
46         1/1                out_o.attr <= Invalid;
           Tests:       T5 T98 T99 
47         1/1                out_o.err <= '0;
           Tests:       T5 T98 T99 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T2 T3 T9 
50         1/1                out_o.err <= '0;
           Tests:       T2 T3 T9 
51         1/1              end else if (alloc_i && en_i) begin
           Tests:       T1 T2 T3 
52         1/1                out_o.addr <= addr_i;
           Tests:       T1 T2 T3 
53         1/1                out_o.part <= part_i;
           Tests:       T1 T2 T3 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T1 T2 T3 
55         1/1                out_o.attr <= Wip;
           Tests:       T1 T2 T3 
56         1/1                out_o.err <= '0;
           Tests:       T1 T2 T3 
57         1/1              end else if (update_i && en_i) begin
           Tests:       T1 T2 T3 
58         1/1                out_o.data <= data_i;
           Tests:       T1 T2 T3 
59         1/1                out_o.attr <= Valid;
           Tests:       T1 T2 T3 
60         1/1                out_o.err <= err_i;
           Tests:       T1 T2 T3 
61                          end
                        MISSING_ELSE
Cond Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[0].u_core.u_rd.gen_bufs[1].u_rd_buf
 | Total | Covered | Percent | 
| Conditions | 14 | 11 | 78.57 | 
| Logical | 14 | 11 | 78.57 | 
| Non-Logical | 0 | 0 |  | 
| Event | 0 | 0 |  | 
 LINE       45
 EXPRESSION (((!en_i)) && (out_o.attr != Invalid))
             ----1----    -----------2-----------
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T5,T98,T99 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T1,T2,T3 | 
 LINE       48
 EXPRESSION (wipe_i && en_i)
             ---1--    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T2,T3,T9 | 
 LINE       51
 EXPRESSION (alloc_i && en_i)
             ---1---    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       57
 EXPRESSION (update_i && en_i)
             ----1---    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T1,T2,T3 | 
Branch Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[0].u_core.u_rd.gen_bufs[1].u_rd_buf
 | Line No. | Total | Covered | Percent | 
| Branches | 
 | 
6 | 
6 | 
100.00 | 
| IF | 
38 | 
6 | 
6 | 
100.00 | 
38             if (!rst_ni) begin
               -1-  
39               out_o.data <= '0;
                 ==>
40               out_o.addr <= '0;
41               out_o.part <= flash_ctrl_pkg::FlashPartData;
42               out_o.info_sel <= '0;
43               out_o.attr <= Invalid;
44               out_o.err <= '0;
45             end else if (!en_i && out_o.attr != Invalid) begin
                        -2-  
46               out_o.attr <= Invalid;
                 ==>
47               out_o.err <= '0;
48             end else if (wipe_i && en_i) begin
                        -3-  
49               out_o.attr <= Invalid;
                 ==>
50               out_o.err <= '0;
51             end else if (alloc_i && en_i) begin
                        -4-  
52               out_o.addr <= addr_i;
                 ==>
53               out_o.part <= part_i;
54               out_o.info_sel <= info_sel_i;
55               out_o.attr <= Wip;
56               out_o.err <= '0;
57             end else if (update_i && en_i) begin
                        -5-  
58               out_o.data <= data_i;
                 ==>
59               out_o.attr <= Valid;
60               out_o.err <= err_i;
61             end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | -4- | -5- | Status | Tests | 
| 1 | 
- | 
- | 
- | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
1 | 
- | 
- | 
- | 
Covered | 
T5,T98,T99 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T2,T3,T9 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
0 | 
0 | 
Covered | 
T1,T2,T3 | 
Assert Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[0].u_core.u_rd.gen_bufs[1].u_rd_buf
Assertion Details
AllocCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
365919510 | 
648082 | 
0 | 
0 | 
| T1 | 
1001 | 
1 | 
0 | 
0 | 
| T2 | 
1748 | 
3 | 
0 | 
0 | 
| T3 | 
1555 | 
6 | 
0 | 
0 | 
| T4 | 
3619 | 
0 | 
0 | 
0 | 
| T9 | 
125004 | 
182 | 
0 | 
0 | 
| T10 | 
4038 | 
0 | 
0 | 
0 | 
| T11 | 
0 | 
5 | 
0 | 
0 | 
| T12 | 
8384 | 
42 | 
0 | 
0 | 
| T13 | 
0 | 
2379 | 
0 | 
0 | 
| T17 | 
1758 | 
1 | 
0 | 
0 | 
| T18 | 
4850 | 
0 | 
0 | 
0 | 
| T19 | 
2380 | 
14 | 
0 | 
0 | 
| T32 | 
0 | 
137 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
365919510 | 
648081 | 
0 | 
0 | 
| T1 | 
1001 | 
1 | 
0 | 
0 | 
| T2 | 
1748 | 
3 | 
0 | 
0 | 
| T3 | 
1555 | 
6 | 
0 | 
0 | 
| T4 | 
3619 | 
0 | 
0 | 
0 | 
| T9 | 
125004 | 
182 | 
0 | 
0 | 
| T10 | 
4038 | 
0 | 
0 | 
0 | 
| T11 | 
0 | 
5 | 
0 | 
0 | 
| T12 | 
8384 | 
42 | 
0 | 
0 | 
| T13 | 
0 | 
2379 | 
0 | 
0 | 
| T17 | 
1758 | 
1 | 
0 | 
0 | 
| T18 | 
4850 | 
0 | 
0 | 
0 | 
| T19 | 
2380 | 
14 | 
0 | 
0 | 
| T32 | 
0 | 
137 | 
0 | 
0 | 
 
Line Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[0].u_core.u_rd.gen_bufs[2].u_rd_buf
 | Line No. | Total | Covered | Percent | 
| TOTAL |  | 23 | 23 | 100.00 | 
| ALWAYS | 38 | 23 | 23 | 100.00 | 
37                        always_ff @(posedge clk_i or negedge rst_ni) begin
38         1/1              if (!rst_ni) begin
           Tests:       T1 T2 T3 
39         1/1                out_o.data <= '0;
           Tests:       T1 T2 T3 
40         1/1                out_o.addr <= '0;
           Tests:       T1 T2 T3 
41         1/1                out_o.part <= flash_ctrl_pkg::FlashPartData;
           Tests:       T1 T2 T3 
42         1/1                out_o.info_sel <= '0;
           Tests:       T1 T2 T3 
43         1/1                out_o.attr <= Invalid;
           Tests:       T1 T2 T3 
44         1/1                out_o.err <= '0;
           Tests:       T1 T2 T3 
45         1/1              end else if (!en_i && out_o.attr != Invalid) begin
           Tests:       T1 T2 T3 
46         1/1                out_o.attr <= Invalid;
           Tests:       T5 T98 T99 
47         1/1                out_o.err <= '0;
           Tests:       T5 T98 T99 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T2 T3 T9 
50         1/1                out_o.err <= '0;
           Tests:       T2 T3 T9 
51         1/1              end else if (alloc_i && en_i) begin
           Tests:       T1 T2 T3 
52         1/1                out_o.addr <= addr_i;
           Tests:       T1 T2 T3 
53         1/1                out_o.part <= part_i;
           Tests:       T1 T2 T3 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T1 T2 T3 
55         1/1                out_o.attr <= Wip;
           Tests:       T1 T2 T3 
56         1/1                out_o.err <= '0;
           Tests:       T1 T2 T3 
57         1/1              end else if (update_i && en_i) begin
           Tests:       T1 T2 T3 
58         1/1                out_o.data <= data_i;
           Tests:       T1 T2 T3 
59         1/1                out_o.attr <= Valid;
           Tests:       T1 T2 T3 
60         1/1                out_o.err <= err_i;
           Tests:       T1 T2 T3 
61                          end
                        MISSING_ELSE
Cond Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[0].u_core.u_rd.gen_bufs[2].u_rd_buf
 | Total | Covered | Percent | 
| Conditions | 14 | 11 | 78.57 | 
| Logical | 14 | 11 | 78.57 | 
| Non-Logical | 0 | 0 |  | 
| Event | 0 | 0 |  | 
 LINE       45
 EXPRESSION (((!en_i)) && (out_o.attr != Invalid))
             ----1----    -----------2-----------
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T5,T98,T99 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T1,T2,T3 | 
 LINE       48
 EXPRESSION (wipe_i && en_i)
             ---1--    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T2,T3,T9 | 
 LINE       51
 EXPRESSION (alloc_i && en_i)
             ---1---    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       57
 EXPRESSION (update_i && en_i)
             ----1---    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T1,T2,T3 | 
Branch Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[0].u_core.u_rd.gen_bufs[2].u_rd_buf
 | Line No. | Total | Covered | Percent | 
| Branches | 
 | 
6 | 
6 | 
100.00 | 
| IF | 
38 | 
6 | 
6 | 
100.00 | 
38             if (!rst_ni) begin
               -1-  
39               out_o.data <= '0;
                 ==>
40               out_o.addr <= '0;
41               out_o.part <= flash_ctrl_pkg::FlashPartData;
42               out_o.info_sel <= '0;
43               out_o.attr <= Invalid;
44               out_o.err <= '0;
45             end else if (!en_i && out_o.attr != Invalid) begin
                        -2-  
46               out_o.attr <= Invalid;
                 ==>
47               out_o.err <= '0;
48             end else if (wipe_i && en_i) begin
                        -3-  
49               out_o.attr <= Invalid;
                 ==>
50               out_o.err <= '0;
51             end else if (alloc_i && en_i) begin
                        -4-  
52               out_o.addr <= addr_i;
                 ==>
53               out_o.part <= part_i;
54               out_o.info_sel <= info_sel_i;
55               out_o.attr <= Wip;
56               out_o.err <= '0;
57             end else if (update_i && en_i) begin
                        -5-  
58               out_o.data <= data_i;
                 ==>
59               out_o.attr <= Valid;
60               out_o.err <= err_i;
61             end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | -4- | -5- | Status | Tests | 
| 1 | 
- | 
- | 
- | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
1 | 
- | 
- | 
- | 
Covered | 
T5,T98,T99 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T2,T3,T9 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
0 | 
0 | 
Covered | 
T1,T2,T3 | 
Assert Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[0].u_core.u_rd.gen_bufs[2].u_rd_buf
Assertion Details
AllocCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
365919510 | 
647942 | 
0 | 
0 | 
| T1 | 
1001 | 
1 | 
0 | 
0 | 
| T2 | 
1748 | 
2 | 
0 | 
0 | 
| T3 | 
1555 | 
5 | 
0 | 
0 | 
| T4 | 
3619 | 
0 | 
0 | 
0 | 
| T9 | 
125004 | 
182 | 
0 | 
0 | 
| T10 | 
4038 | 
0 | 
0 | 
0 | 
| T11 | 
0 | 
5 | 
0 | 
0 | 
| T12 | 
8384 | 
42 | 
0 | 
0 | 
| T13 | 
0 | 
2379 | 
0 | 
0 | 
| T17 | 
1758 | 
1 | 
0 | 
0 | 
| T18 | 
4850 | 
0 | 
0 | 
0 | 
| T19 | 
2380 | 
13 | 
0 | 
0 | 
| T32 | 
0 | 
137 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
365919510 | 
647942 | 
0 | 
0 | 
| T1 | 
1001 | 
1 | 
0 | 
0 | 
| T2 | 
1748 | 
2 | 
0 | 
0 | 
| T3 | 
1555 | 
5 | 
0 | 
0 | 
| T4 | 
3619 | 
0 | 
0 | 
0 | 
| T9 | 
125004 | 
182 | 
0 | 
0 | 
| T10 | 
4038 | 
0 | 
0 | 
0 | 
| T11 | 
0 | 
5 | 
0 | 
0 | 
| T12 | 
8384 | 
42 | 
0 | 
0 | 
| T13 | 
0 | 
2379 | 
0 | 
0 | 
| T17 | 
1758 | 
1 | 
0 | 
0 | 
| T18 | 
4850 | 
0 | 
0 | 
0 | 
| T19 | 
2380 | 
13 | 
0 | 
0 | 
| T32 | 
0 | 
137 | 
0 | 
0 | 
 
Line Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[0].u_core.u_rd.gen_bufs[3].u_rd_buf
 | Line No. | Total | Covered | Percent | 
| TOTAL |  | 23 | 23 | 100.00 | 
| ALWAYS | 38 | 23 | 23 | 100.00 | 
37                        always_ff @(posedge clk_i or negedge rst_ni) begin
38         1/1              if (!rst_ni) begin
           Tests:       T1 T2 T3 
39         1/1                out_o.data <= '0;
           Tests:       T1 T2 T3 
40         1/1                out_o.addr <= '0;
           Tests:       T1 T2 T3 
41         1/1                out_o.part <= flash_ctrl_pkg::FlashPartData;
           Tests:       T1 T2 T3 
42         1/1                out_o.info_sel <= '0;
           Tests:       T1 T2 T3 
43         1/1                out_o.attr <= Invalid;
           Tests:       T1 T2 T3 
44         1/1                out_o.err <= '0;
           Tests:       T1 T2 T3 
45         1/1              end else if (!en_i && out_o.attr != Invalid) begin
           Tests:       T1 T2 T3 
46         1/1                out_o.attr <= Invalid;
           Tests:       T98 T99 T100 
47         1/1                out_o.err <= '0;
           Tests:       T98 T99 T100 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T2 T3 T9 
50         1/1                out_o.err <= '0;
           Tests:       T2 T3 T9 
51         1/1              end else if (alloc_i && en_i) begin
           Tests:       T1 T2 T3 
52         1/1                out_o.addr <= addr_i;
           Tests:       T1 T2 T3 
53         1/1                out_o.part <= part_i;
           Tests:       T1 T2 T3 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T1 T2 T3 
55         1/1                out_o.attr <= Wip;
           Tests:       T1 T2 T3 
56         1/1                out_o.err <= '0;
           Tests:       T1 T2 T3 
57         1/1              end else if (update_i && en_i) begin
           Tests:       T1 T2 T3 
58         1/1                out_o.data <= data_i;
           Tests:       T1 T2 T3 
59         1/1                out_o.attr <= Valid;
           Tests:       T1 T2 T3 
60         1/1                out_o.err <= err_i;
           Tests:       T1 T2 T3 
61                          end
                        MISSING_ELSE
Cond Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[0].u_core.u_rd.gen_bufs[3].u_rd_buf
 | Total | Covered | Percent | 
| Conditions | 14 | 11 | 78.57 | 
| Logical | 14 | 11 | 78.57 | 
| Non-Logical | 0 | 0 |  | 
| Event | 0 | 0 |  | 
 LINE       45
 EXPRESSION (((!en_i)) && (out_o.attr != Invalid))
             ----1----    -----------2-----------
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T98,T99,T100 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T1,T2,T3 | 
 LINE       48
 EXPRESSION (wipe_i && en_i)
             ---1--    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T2,T3,T9 | 
 LINE       51
 EXPRESSION (alloc_i && en_i)
             ---1---    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       57
 EXPRESSION (update_i && en_i)
             ----1---    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T1,T2,T3 | 
Branch Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[0].u_core.u_rd.gen_bufs[3].u_rd_buf
 | Line No. | Total | Covered | Percent | 
| Branches | 
 | 
6 | 
6 | 
100.00 | 
| IF | 
38 | 
6 | 
6 | 
100.00 | 
38             if (!rst_ni) begin
               -1-  
39               out_o.data <= '0;
                 ==>
40               out_o.addr <= '0;
41               out_o.part <= flash_ctrl_pkg::FlashPartData;
42               out_o.info_sel <= '0;
43               out_o.attr <= Invalid;
44               out_o.err <= '0;
45             end else if (!en_i && out_o.attr != Invalid) begin
                        -2-  
46               out_o.attr <= Invalid;
                 ==>
47               out_o.err <= '0;
48             end else if (wipe_i && en_i) begin
                        -3-  
49               out_o.attr <= Invalid;
                 ==>
50               out_o.err <= '0;
51             end else if (alloc_i && en_i) begin
                        -4-  
52               out_o.addr <= addr_i;
                 ==>
53               out_o.part <= part_i;
54               out_o.info_sel <= info_sel_i;
55               out_o.attr <= Wip;
56               out_o.err <= '0;
57             end else if (update_i && en_i) begin
                        -5-  
58               out_o.data <= data_i;
                 ==>
59               out_o.attr <= Valid;
60               out_o.err <= err_i;
61             end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | -4- | -5- | Status | Tests | 
| 1 | 
- | 
- | 
- | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
1 | 
- | 
- | 
- | 
Covered | 
T98,T99,T100 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T2,T3,T9 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
0 | 
0 | 
Covered | 
T1,T2,T3 | 
Assert Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[0].u_core.u_rd.gen_bufs[3].u_rd_buf
Assertion Details
AllocCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
365919510 | 
647749 | 
0 | 
0 | 
| T1 | 
1001 | 
1 | 
0 | 
0 | 
| T2 | 
1748 | 
2 | 
0 | 
0 | 
| T3 | 
1555 | 
4 | 
0 | 
0 | 
| T4 | 
3619 | 
0 | 
0 | 
0 | 
| T9 | 
125004 | 
182 | 
0 | 
0 | 
| T10 | 
4038 | 
0 | 
0 | 
0 | 
| T11 | 
0 | 
5 | 
0 | 
0 | 
| T12 | 
8384 | 
42 | 
0 | 
0 | 
| T13 | 
0 | 
2381 | 
0 | 
0 | 
| T17 | 
1758 | 
1 | 
0 | 
0 | 
| T18 | 
4850 | 
0 | 
0 | 
0 | 
| T19 | 
2380 | 
13 | 
0 | 
0 | 
| T32 | 
0 | 
123 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
365919510 | 
647748 | 
0 | 
0 | 
| T1 | 
1001 | 
1 | 
0 | 
0 | 
| T2 | 
1748 | 
2 | 
0 | 
0 | 
| T3 | 
1555 | 
4 | 
0 | 
0 | 
| T4 | 
3619 | 
0 | 
0 | 
0 | 
| T9 | 
125004 | 
182 | 
0 | 
0 | 
| T10 | 
4038 | 
0 | 
0 | 
0 | 
| T11 | 
0 | 
5 | 
0 | 
0 | 
| T12 | 
8384 | 
42 | 
0 | 
0 | 
| T13 | 
0 | 
2381 | 
0 | 
0 | 
| T17 | 
1758 | 
1 | 
0 | 
0 | 
| T18 | 
4850 | 
0 | 
0 | 
0 | 
| T19 | 
2380 | 
13 | 
0 | 
0 | 
| T32 | 
0 | 
123 | 
0 | 
0 | 
 
Line Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[1].u_core.u_rd.gen_bufs[0].u_rd_buf
 | Line No. | Total | Covered | Percent | 
| TOTAL |  | 23 | 23 | 100.00 | 
| ALWAYS | 38 | 23 | 23 | 100.00 | 
37                        always_ff @(posedge clk_i or negedge rst_ni) begin
38         1/1              if (!rst_ni) begin
           Tests:       T1 T2 T3 
39         1/1                out_o.data <= '0;
           Tests:       T1 T2 T3 
40         1/1                out_o.addr <= '0;
           Tests:       T1 T2 T3 
41         1/1                out_o.part <= flash_ctrl_pkg::FlashPartData;
           Tests:       T1 T2 T3 
42         1/1                out_o.info_sel <= '0;
           Tests:       T1 T2 T3 
43         1/1                out_o.attr <= Invalid;
           Tests:       T1 T2 T3 
44         1/1                out_o.err <= '0;
           Tests:       T1 T2 T3 
45         1/1              end else if (!en_i && out_o.attr != Invalid) begin
           Tests:       T1 T2 T3 
46         1/1                out_o.attr <= Invalid;
           Tests:       T98 T99 T101 
47         1/1                out_o.err <= '0;
           Tests:       T98 T99 T101 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T18 T32 T28 
50         1/1                out_o.err <= '0;
           Tests:       T18 T32 T28 
51         1/1              end else if (alloc_i && en_i) begin
           Tests:       T1 T2 T3 
52         1/1                out_o.addr <= addr_i;
           Tests:       T17 T12 T18 
53         1/1                out_o.part <= part_i;
           Tests:       T17 T12 T18 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T17 T12 T18 
55         1/1                out_o.attr <= Wip;
           Tests:       T17 T12 T18 
56         1/1                out_o.err <= '0;
           Tests:       T17 T12 T18 
57         1/1              end else if (update_i && en_i) begin
           Tests:       T1 T2 T3 
58         1/1                out_o.data <= data_i;
           Tests:       T17 T12 T18 
59         1/1                out_o.attr <= Valid;
           Tests:       T17 T12 T18 
60         1/1                out_o.err <= err_i;
           Tests:       T17 T12 T18 
61                          end
                        MISSING_ELSE
Cond Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[1].u_core.u_rd.gen_bufs[0].u_rd_buf
 | Total | Covered | Percent | 
| Conditions | 14 | 11 | 78.57 | 
| Logical | 14 | 11 | 78.57 | 
| Non-Logical | 0 | 0 |  | 
| Event | 0 | 0 |  | 
 LINE       45
 EXPRESSION (((!en_i)) && (out_o.attr != Invalid))
             ----1----    -----------2-----------
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T17,T12,T18 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T98,T99,T101 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T17,T12,T18 | 
 LINE       48
 EXPRESSION (wipe_i && en_i)
             ---1--    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T18,T32,T28 | 
 LINE       51
 EXPRESSION (alloc_i && en_i)
             ---1---    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T17,T12,T18 | 
 LINE       57
 EXPRESSION (update_i && en_i)
             ----1---    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T17,T12,T18 | 
Branch Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[1].u_core.u_rd.gen_bufs[0].u_rd_buf
 | Line No. | Total | Covered | Percent | 
| Branches | 
 | 
6 | 
6 | 
100.00 | 
| IF | 
38 | 
6 | 
6 | 
100.00 | 
38             if (!rst_ni) begin
               -1-  
39               out_o.data <= '0;
                 ==>
40               out_o.addr <= '0;
41               out_o.part <= flash_ctrl_pkg::FlashPartData;
42               out_o.info_sel <= '0;
43               out_o.attr <= Invalid;
44               out_o.err <= '0;
45             end else if (!en_i && out_o.attr != Invalid) begin
                        -2-  
46               out_o.attr <= Invalid;
                 ==>
47               out_o.err <= '0;
48             end else if (wipe_i && en_i) begin
                        -3-  
49               out_o.attr <= Invalid;
                 ==>
50               out_o.err <= '0;
51             end else if (alloc_i && en_i) begin
                        -4-  
52               out_o.addr <= addr_i;
                 ==>
53               out_o.part <= part_i;
54               out_o.info_sel <= info_sel_i;
55               out_o.attr <= Wip;
56               out_o.err <= '0;
57             end else if (update_i && en_i) begin
                        -5-  
58               out_o.data <= data_i;
                 ==>
59               out_o.attr <= Valid;
60               out_o.err <= err_i;
61             end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | -4- | -5- | Status | Tests | 
| 1 | 
- | 
- | 
- | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
1 | 
- | 
- | 
- | 
Covered | 
T98,T99,T101 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T18,T32,T28 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T17,T12,T18 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T17,T12,T18 | 
| 0 | 
0 | 
0 | 
0 | 
0 | 
Covered | 
T1,T2,T3 | 
Assert Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[1].u_core.u_rd.gen_bufs[0].u_rd_buf
Assertion Details
AllocCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
365919510 | 
634220 | 
0 | 
0 | 
| T4 | 
3619 | 
0 | 
0 | 
0 | 
| T10 | 
4038 | 
0 | 
0 | 
0 | 
| T11 | 
95004 | 
6 | 
0 | 
0 | 
| T12 | 
8384 | 
56 | 
0 | 
0 | 
| T13 | 
0 | 
2462 | 
0 | 
0 | 
| T17 | 
1758 | 
2 | 
0 | 
0 | 
| T18 | 
4850 | 
26 | 
0 | 
0 | 
| T19 | 
2380 | 
0 | 
0 | 
0 | 
| T32 | 
88093 | 
174 | 
0 | 
0 | 
| T48 | 
0 | 
71 | 
0 | 
0 | 
| T49 | 
0 | 
2453 | 
0 | 
0 | 
| T66 | 
2074 | 
19 | 
0 | 
0 | 
| T70 | 
0 | 
190 | 
0 | 
0 | 
| T71 | 
151611 | 
0 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
365919510 | 
634217 | 
0 | 
0 | 
| T4 | 
3619 | 
0 | 
0 | 
0 | 
| T10 | 
4038 | 
0 | 
0 | 
0 | 
| T11 | 
95004 | 
5 | 
0 | 
0 | 
| T12 | 
8384 | 
56 | 
0 | 
0 | 
| T13 | 
0 | 
2462 | 
0 | 
0 | 
| T17 | 
1758 | 
2 | 
0 | 
0 | 
| T18 | 
4850 | 
26 | 
0 | 
0 | 
| T19 | 
2380 | 
0 | 
0 | 
0 | 
| T32 | 
88093 | 
174 | 
0 | 
0 | 
| T48 | 
0 | 
71 | 
0 | 
0 | 
| T49 | 
0 | 
2453 | 
0 | 
0 | 
| T66 | 
2074 | 
19 | 
0 | 
0 | 
| T70 | 
0 | 
190 | 
0 | 
0 | 
| T71 | 
151611 | 
0 | 
0 | 
0 | 
 
Line Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[1].u_core.u_rd.gen_bufs[1].u_rd_buf
 | Line No. | Total | Covered | Percent | 
| TOTAL |  | 23 | 23 | 100.00 | 
| ALWAYS | 38 | 23 | 23 | 100.00 | 
37                        always_ff @(posedge clk_i or negedge rst_ni) begin
38         1/1              if (!rst_ni) begin
           Tests:       T1 T2 T3 
39         1/1                out_o.data <= '0;
           Tests:       T1 T2 T3 
40         1/1                out_o.addr <= '0;
           Tests:       T1 T2 T3 
41         1/1                out_o.part <= flash_ctrl_pkg::FlashPartData;
           Tests:       T1 T2 T3 
42         1/1                out_o.info_sel <= '0;
           Tests:       T1 T2 T3 
43         1/1                out_o.attr <= Invalid;
           Tests:       T1 T2 T3 
44         1/1                out_o.err <= '0;
           Tests:       T1 T2 T3 
45         1/1              end else if (!en_i && out_o.attr != Invalid) begin
           Tests:       T1 T2 T3 
46         1/1                out_o.attr <= Invalid;
           Tests:       T98 T99 T101 
47         1/1                out_o.err <= '0;
           Tests:       T98 T99 T101 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T18 T32 T28 
50         1/1                out_o.err <= '0;
           Tests:       T18 T32 T28 
51         1/1              end else if (alloc_i && en_i) begin
           Tests:       T1 T2 T3 
52         1/1                out_o.addr <= addr_i;
           Tests:       T17 T12 T18 
53         1/1                out_o.part <= part_i;
           Tests:       T17 T12 T18 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T17 T12 T18 
55         1/1                out_o.attr <= Wip;
           Tests:       T17 T12 T18 
56         1/1                out_o.err <= '0;
           Tests:       T17 T12 T18 
57         1/1              end else if (update_i && en_i) begin
           Tests:       T1 T2 T3 
58         1/1                out_o.data <= data_i;
           Tests:       T17 T12 T18 
59         1/1                out_o.attr <= Valid;
           Tests:       T17 T12 T18 
60         1/1                out_o.err <= err_i;
           Tests:       T17 T12 T18 
61                          end
                        MISSING_ELSE
Cond Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[1].u_core.u_rd.gen_bufs[1].u_rd_buf
 | Total | Covered | Percent | 
| Conditions | 14 | 11 | 78.57 | 
| Logical | 14 | 11 | 78.57 | 
| Non-Logical | 0 | 0 |  | 
| Event | 0 | 0 |  | 
 LINE       45
 EXPRESSION (((!en_i)) && (out_o.attr != Invalid))
             ----1----    -----------2-----------
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T17,T12,T18 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T98,T99,T101 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T17,T12,T18 | 
 LINE       48
 EXPRESSION (wipe_i && en_i)
             ---1--    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T18,T32,T28 | 
 LINE       51
 EXPRESSION (alloc_i && en_i)
             ---1---    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T17,T12,T18 | 
 LINE       57
 EXPRESSION (update_i && en_i)
             ----1---    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T17,T12,T18 | 
Branch Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[1].u_core.u_rd.gen_bufs[1].u_rd_buf
 | Line No. | Total | Covered | Percent | 
| Branches | 
 | 
6 | 
6 | 
100.00 | 
| IF | 
38 | 
6 | 
6 | 
100.00 | 
38             if (!rst_ni) begin
               -1-  
39               out_o.data <= '0;
                 ==>
40               out_o.addr <= '0;
41               out_o.part <= flash_ctrl_pkg::FlashPartData;
42               out_o.info_sel <= '0;
43               out_o.attr <= Invalid;
44               out_o.err <= '0;
45             end else if (!en_i && out_o.attr != Invalid) begin
                        -2-  
46               out_o.attr <= Invalid;
                 ==>
47               out_o.err <= '0;
48             end else if (wipe_i && en_i) begin
                        -3-  
49               out_o.attr <= Invalid;
                 ==>
50               out_o.err <= '0;
51             end else if (alloc_i && en_i) begin
                        -4-  
52               out_o.addr <= addr_i;
                 ==>
53               out_o.part <= part_i;
54               out_o.info_sel <= info_sel_i;
55               out_o.attr <= Wip;
56               out_o.err <= '0;
57             end else if (update_i && en_i) begin
                        -5-  
58               out_o.data <= data_i;
                 ==>
59               out_o.attr <= Valid;
60               out_o.err <= err_i;
61             end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | -4- | -5- | Status | Tests | 
| 1 | 
- | 
- | 
- | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
1 | 
- | 
- | 
- | 
Covered | 
T98,T99,T101 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T18,T32,T28 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T17,T12,T18 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T17,T12,T18 | 
| 0 | 
0 | 
0 | 
0 | 
0 | 
Covered | 
T1,T2,T3 | 
Assert Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[1].u_core.u_rd.gen_bufs[1].u_rd_buf
Assertion Details
AllocCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
365919510 | 
634363 | 
0 | 
0 | 
| T4 | 
3619 | 
0 | 
0 | 
0 | 
| T10 | 
4038 | 
0 | 
0 | 
0 | 
| T11 | 
95004 | 
5 | 
0 | 
0 | 
| T12 | 
8384 | 
55 | 
0 | 
0 | 
| T13 | 
0 | 
2457 | 
0 | 
0 | 
| T17 | 
1758 | 
1 | 
0 | 
0 | 
| T18 | 
4850 | 
26 | 
0 | 
0 | 
| T19 | 
2380 | 
0 | 
0 | 
0 | 
| T32 | 
88093 | 
174 | 
0 | 
0 | 
| T48 | 
0 | 
71 | 
0 | 
0 | 
| T49 | 
0 | 
2450 | 
0 | 
0 | 
| T66 | 
2074 | 
18 | 
0 | 
0 | 
| T70 | 
0 | 
190 | 
0 | 
0 | 
| T71 | 
151611 | 
0 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
365919510 | 
634360 | 
0 | 
0 | 
| T4 | 
3619 | 
0 | 
0 | 
0 | 
| T10 | 
4038 | 
0 | 
0 | 
0 | 
| T11 | 
95004 | 
5 | 
0 | 
0 | 
| T12 | 
8384 | 
55 | 
0 | 
0 | 
| T13 | 
0 | 
2457 | 
0 | 
0 | 
| T17 | 
1758 | 
1 | 
0 | 
0 | 
| T18 | 
4850 | 
26 | 
0 | 
0 | 
| T19 | 
2380 | 
0 | 
0 | 
0 | 
| T32 | 
88093 | 
174 | 
0 | 
0 | 
| T48 | 
0 | 
71 | 
0 | 
0 | 
| T49 | 
0 | 
2450 | 
0 | 
0 | 
| T66 | 
2074 | 
18 | 
0 | 
0 | 
| T70 | 
0 | 
190 | 
0 | 
0 | 
| T71 | 
151611 | 
0 | 
0 | 
0 | 
 
Line Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[1].u_core.u_rd.gen_bufs[2].u_rd_buf
 | Line No. | Total | Covered | Percent | 
| TOTAL |  | 23 | 23 | 100.00 | 
| ALWAYS | 38 | 23 | 23 | 100.00 | 
37                        always_ff @(posedge clk_i or negedge rst_ni) begin
38         1/1              if (!rst_ni) begin
           Tests:       T1 T2 T3 
39         1/1                out_o.data <= '0;
           Tests:       T1 T2 T3 
40         1/1                out_o.addr <= '0;
           Tests:       T1 T2 T3 
41         1/1                out_o.part <= flash_ctrl_pkg::FlashPartData;
           Tests:       T1 T2 T3 
42         1/1                out_o.info_sel <= '0;
           Tests:       T1 T2 T3 
43         1/1                out_o.attr <= Invalid;
           Tests:       T1 T2 T3 
44         1/1                out_o.err <= '0;
           Tests:       T1 T2 T3 
45         1/1              end else if (!en_i && out_o.attr != Invalid) begin
           Tests:       T1 T2 T3 
46         1/1                out_o.attr <= Invalid;
           Tests:       T98 T99 T101 
47         1/1                out_o.err <= '0;
           Tests:       T98 T99 T101 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T18 T32 T28 
50         1/1                out_o.err <= '0;
           Tests:       T18 T32 T28 
51         1/1              end else if (alloc_i && en_i) begin
           Tests:       T1 T2 T3 
52         1/1                out_o.addr <= addr_i;
           Tests:       T17 T12 T18 
53         1/1                out_o.part <= part_i;
           Tests:       T17 T12 T18 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T17 T12 T18 
55         1/1                out_o.attr <= Wip;
           Tests:       T17 T12 T18 
56         1/1                out_o.err <= '0;
           Tests:       T17 T12 T18 
57         1/1              end else if (update_i && en_i) begin
           Tests:       T1 T2 T3 
58         1/1                out_o.data <= data_i;
           Tests:       T17 T12 T18 
59         1/1                out_o.attr <= Valid;
           Tests:       T17 T12 T18 
60         1/1                out_o.err <= err_i;
           Tests:       T17 T12 T18 
61                          end
                        MISSING_ELSE
Cond Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[1].u_core.u_rd.gen_bufs[2].u_rd_buf
 | Total | Covered | Percent | 
| Conditions | 14 | 11 | 78.57 | 
| Logical | 14 | 11 | 78.57 | 
| Non-Logical | 0 | 0 |  | 
| Event | 0 | 0 |  | 
 LINE       45
 EXPRESSION (((!en_i)) && (out_o.attr != Invalid))
             ----1----    -----------2-----------
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T17,T12,T18 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T98,T99,T101 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T17,T12,T18 | 
 LINE       48
 EXPRESSION (wipe_i && en_i)
             ---1--    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T18,T32,T28 | 
 LINE       51
 EXPRESSION (alloc_i && en_i)
             ---1---    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T17,T12,T18 | 
 LINE       57
 EXPRESSION (update_i && en_i)
             ----1---    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T17,T12,T18 | 
Branch Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[1].u_core.u_rd.gen_bufs[2].u_rd_buf
 | Line No. | Total | Covered | Percent | 
| Branches | 
 | 
6 | 
6 | 
100.00 | 
| IF | 
38 | 
6 | 
6 | 
100.00 | 
38             if (!rst_ni) begin
               -1-  
39               out_o.data <= '0;
                 ==>
40               out_o.addr <= '0;
41               out_o.part <= flash_ctrl_pkg::FlashPartData;
42               out_o.info_sel <= '0;
43               out_o.attr <= Invalid;
44               out_o.err <= '0;
45             end else if (!en_i && out_o.attr != Invalid) begin
                        -2-  
46               out_o.attr <= Invalid;
                 ==>
47               out_o.err <= '0;
48             end else if (wipe_i && en_i) begin
                        -3-  
49               out_o.attr <= Invalid;
                 ==>
50               out_o.err <= '0;
51             end else if (alloc_i && en_i) begin
                        -4-  
52               out_o.addr <= addr_i;
                 ==>
53               out_o.part <= part_i;
54               out_o.info_sel <= info_sel_i;
55               out_o.attr <= Wip;
56               out_o.err <= '0;
57             end else if (update_i && en_i) begin
                        -5-  
58               out_o.data <= data_i;
                 ==>
59               out_o.attr <= Valid;
60               out_o.err <= err_i;
61             end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | -4- | -5- | Status | Tests | 
| 1 | 
- | 
- | 
- | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
1 | 
- | 
- | 
- | 
Covered | 
T98,T99,T101 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T18,T32,T28 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T17,T12,T18 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T17,T12,T18 | 
| 0 | 
0 | 
0 | 
0 | 
0 | 
Covered | 
T1,T2,T3 | 
Assert Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[1].u_core.u_rd.gen_bufs[2].u_rd_buf
Assertion Details
AllocCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
365919510 | 
634178 | 
0 | 
0 | 
| T4 | 
3619 | 
0 | 
0 | 
0 | 
| T10 | 
4038 | 
0 | 
0 | 
0 | 
| T11 | 
95004 | 
5 | 
0 | 
0 | 
| T12 | 
8384 | 
55 | 
0 | 
0 | 
| T13 | 
0 | 
2454 | 
0 | 
0 | 
| T17 | 
1758 | 
1 | 
0 | 
0 | 
| T18 | 
4850 | 
26 | 
0 | 
0 | 
| T19 | 
2380 | 
0 | 
0 | 
0 | 
| T32 | 
88093 | 
173 | 
0 | 
0 | 
| T48 | 
0 | 
70 | 
0 | 
0 | 
| T49 | 
0 | 
2454 | 
0 | 
0 | 
| T66 | 
2074 | 
18 | 
0 | 
0 | 
| T70 | 
0 | 
189 | 
0 | 
0 | 
| T71 | 
151611 | 
0 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
365919510 | 
634178 | 
0 | 
0 | 
| T4 | 
3619 | 
0 | 
0 | 
0 | 
| T10 | 
4038 | 
0 | 
0 | 
0 | 
| T11 | 
95004 | 
5 | 
0 | 
0 | 
| T12 | 
8384 | 
55 | 
0 | 
0 | 
| T13 | 
0 | 
2454 | 
0 | 
0 | 
| T17 | 
1758 | 
1 | 
0 | 
0 | 
| T18 | 
4850 | 
26 | 
0 | 
0 | 
| T19 | 
2380 | 
0 | 
0 | 
0 | 
| T32 | 
88093 | 
173 | 
0 | 
0 | 
| T48 | 
0 | 
70 | 
0 | 
0 | 
| T49 | 
0 | 
2454 | 
0 | 
0 | 
| T66 | 
2074 | 
18 | 
0 | 
0 | 
| T70 | 
0 | 
189 | 
0 | 
0 | 
| T71 | 
151611 | 
0 | 
0 | 
0 | 
 
Line Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[1].u_core.u_rd.gen_bufs[3].u_rd_buf
 | Line No. | Total | Covered | Percent | 
| TOTAL |  | 23 | 23 | 100.00 | 
| ALWAYS | 38 | 23 | 23 | 100.00 | 
37                        always_ff @(posedge clk_i or negedge rst_ni) begin
38         1/1              if (!rst_ni) begin
           Tests:       T1 T2 T3 
39         1/1                out_o.data <= '0;
           Tests:       T1 T2 T3 
40         1/1                out_o.addr <= '0;
           Tests:       T1 T2 T3 
41         1/1                out_o.part <= flash_ctrl_pkg::FlashPartData;
           Tests:       T1 T2 T3 
42         1/1                out_o.info_sel <= '0;
           Tests:       T1 T2 T3 
43         1/1                out_o.attr <= Invalid;
           Tests:       T1 T2 T3 
44         1/1                out_o.err <= '0;
           Tests:       T1 T2 T3 
45         1/1              end else if (!en_i && out_o.attr != Invalid) begin
           Tests:       T1 T2 T3 
46         1/1                out_o.attr <= Invalid;
           Tests:       T98 T99 T101 
47         1/1                out_o.err <= '0;
           Tests:       T98 T99 T101 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T18 T32 T28 
50         1/1                out_o.err <= '0;
           Tests:       T18 T32 T28 
51         1/1              end else if (alloc_i && en_i) begin
           Tests:       T1 T2 T3 
52         1/1                out_o.addr <= addr_i;
           Tests:       T17 T12 T18 
53         1/1                out_o.part <= part_i;
           Tests:       T17 T12 T18 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T17 T12 T18 
55         1/1                out_o.attr <= Wip;
           Tests:       T17 T12 T18 
56         1/1                out_o.err <= '0;
           Tests:       T17 T12 T18 
57         1/1              end else if (update_i && en_i) begin
           Tests:       T1 T2 T3 
58         1/1                out_o.data <= data_i;
           Tests:       T17 T12 T18 
59         1/1                out_o.attr <= Valid;
           Tests:       T17 T12 T18 
60         1/1                out_o.err <= err_i;
           Tests:       T17 T12 T18 
61                          end
                        MISSING_ELSE
Cond Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[1].u_core.u_rd.gen_bufs[3].u_rd_buf
 | Total | Covered | Percent | 
| Conditions | 14 | 11 | 78.57 | 
| Logical | 14 | 11 | 78.57 | 
| Non-Logical | 0 | 0 |  | 
| Event | 0 | 0 |  | 
 LINE       45
 EXPRESSION (((!en_i)) && (out_o.attr != Invalid))
             ----1----    -----------2-----------
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T17,T12,T18 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T98,T99,T101 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T17,T12,T18 | 
 LINE       48
 EXPRESSION (wipe_i && en_i)
             ---1--    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T18,T32,T28 | 
 LINE       51
 EXPRESSION (alloc_i && en_i)
             ---1---    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T17,T12,T18 | 
 LINE       57
 EXPRESSION (update_i && en_i)
             ----1---    --2-
| -1- | -2- | Status | Tests | 
| 0 | 1 | Covered | T1,T2,T3 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T17,T12,T18 | 
Branch Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[1].u_core.u_rd.gen_bufs[3].u_rd_buf
 | Line No. | Total | Covered | Percent | 
| Branches | 
 | 
6 | 
6 | 
100.00 | 
| IF | 
38 | 
6 | 
6 | 
100.00 | 
38             if (!rst_ni) begin
               -1-  
39               out_o.data <= '0;
                 ==>
40               out_o.addr <= '0;
41               out_o.part <= flash_ctrl_pkg::FlashPartData;
42               out_o.info_sel <= '0;
43               out_o.attr <= Invalid;
44               out_o.err <= '0;
45             end else if (!en_i && out_o.attr != Invalid) begin
                        -2-  
46               out_o.attr <= Invalid;
                 ==>
47               out_o.err <= '0;
48             end else if (wipe_i && en_i) begin
                        -3-  
49               out_o.attr <= Invalid;
                 ==>
50               out_o.err <= '0;
51             end else if (alloc_i && en_i) begin
                        -4-  
52               out_o.addr <= addr_i;
                 ==>
53               out_o.part <= part_i;
54               out_o.info_sel <= info_sel_i;
55               out_o.attr <= Wip;
56               out_o.err <= '0;
57             end else if (update_i && en_i) begin
                        -5-  
58               out_o.data <= data_i;
                 ==>
59               out_o.attr <= Valid;
60               out_o.err <= err_i;
61             end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | -4- | -5- | Status | Tests | 
| 1 | 
- | 
- | 
- | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
1 | 
- | 
- | 
- | 
Covered | 
T98,T99,T101 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T18,T32,T28 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T17,T12,T18 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T17,T12,T18 | 
| 0 | 
0 | 
0 | 
0 | 
0 | 
Covered | 
T1,T2,T3 | 
Assert Coverage for Instance : tb.dut.u_eflash.gen_flash_cores[1].u_core.u_rd.gen_bufs[3].u_rd_buf
Assertion Details
AllocCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
365919510 | 
633775 | 
0 | 
0 | 
| T4 | 
3619 | 
0 | 
0 | 
0 | 
| T10 | 
4038 | 
0 | 
0 | 
0 | 
| T11 | 
95004 | 
5 | 
0 | 
0 | 
| T12 | 
8384 | 
55 | 
0 | 
0 | 
| T13 | 
0 | 
2459 | 
0 | 
0 | 
| T17 | 
1758 | 
1 | 
0 | 
0 | 
| T18 | 
4850 | 
24 | 
0 | 
0 | 
| T19 | 
2380 | 
0 | 
0 | 
0 | 
| T32 | 
88093 | 
157 | 
0 | 
0 | 
| T48 | 
0 | 
70 | 
0 | 
0 | 
| T49 | 
0 | 
2450 | 
0 | 
0 | 
| T66 | 
2074 | 
18 | 
0 | 
0 | 
| T70 | 
0 | 
189 | 
0 | 
0 | 
| T71 | 
151611 | 
0 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
365919510 | 
633775 | 
0 | 
0 | 
| T4 | 
3619 | 
0 | 
0 | 
0 | 
| T10 | 
4038 | 
0 | 
0 | 
0 | 
| T11 | 
95004 | 
5 | 
0 | 
0 | 
| T12 | 
8384 | 
55 | 
0 | 
0 | 
| T13 | 
0 | 
2459 | 
0 | 
0 | 
| T17 | 
1758 | 
1 | 
0 | 
0 | 
| T18 | 
4850 | 
24 | 
0 | 
0 | 
| T19 | 
2380 | 
0 | 
0 | 
0 | 
| T32 | 
88093 | 
157 | 
0 | 
0 | 
| T48 | 
0 | 
70 | 
0 | 
0 | 
| T49 | 
0 | 
2450 | 
0 | 
0 | 
| T66 | 
2074 | 
18 | 
0 | 
0 | 
| T70 | 
0 | 
189 | 
0 | 
0 | 
| T71 | 
151611 | 
0 | 
0 | 
0 |