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:       T7 T10 T70 
47         1/1                out_o.err <= '0;
           Tests:       T7 T10 T70 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T12 T20 T23 
50         1/1                out_o.err <= '0;
           Tests:       T12 T20 T23 
51         1/1              end else if (alloc_i && en_i) begin
           Tests:       T1 T2 T3 
52         1/1                out_o.addr <= addr_i;
           Tests:       T2 T3 T17 
53         1/1                out_o.part <= part_i;
           Tests:       T2 T3 T17 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T2 T3 T17 
55         1/1                out_o.attr <= Wip;
           Tests:       T2 T3 T17 
56         1/1                out_o.err <= '0;
           Tests:       T2 T3 T17 
57         1/1              end else if (update_i && en_i) begin
           Tests:       T1 T2 T3 
58         1/1                out_o.data <= data_i;
           Tests:       T2 T3 T17 
59         1/1                out_o.attr <= Valid;
           Tests:       T2 T3 T17 
60         1/1                out_o.err <= err_i;
           Tests:       T2 T3 T17 
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 | T2,T3,T17 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T7,T70,T77 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T2,T3,T17 | 
 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 | T12,T20,T23 | 
 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 | T2,T3,T17 | 
 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 | T2,T3,T17 | 
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 | 
T7,T10,T70 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T12,T20,T23 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T2,T3,T17 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T2,T3,T17 | 
| 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 | 
5240910 | 
0 | 
0 | 
| T2 | 
86784 | 
437 | 
0 | 
0 | 
| T3 | 
9792 | 
5 | 
0 | 
0 | 
| T4 | 
7120 | 
0 | 
0 | 
0 | 
| T7 | 
7776 | 
1 | 
0 | 
0 | 
| T10 | 
0 | 
6 | 
0 | 
0 | 
| T12 | 
16016 | 
10 | 
0 | 
0 | 
| T13 | 
0 | 
27 | 
0 | 
0 | 
| T14 | 
0 | 
808 | 
0 | 
0 | 
| T15 | 
0 | 
97 | 
0 | 
0 | 
| T17 | 
12352 | 
74 | 
0 | 
0 | 
| T18 | 
15600 | 
54 | 
0 | 
0 | 
| T19 | 
18424 | 
73 | 
0 | 
0 | 
| T20 | 
11784 | 
24 | 
0 | 
0 | 
| T23 | 
58392 | 
132 | 
0 | 
0 | 
| T51 | 
0 | 
656 | 
0 | 
0 | 
| T54 | 
0 | 
50 | 
0 | 
0 | 
| T58 | 
0 | 
5 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
2147483647 | 
5240896 | 
0 | 
0 | 
| T2 | 
86784 | 
437 | 
0 | 
0 | 
| T3 | 
9792 | 
5 | 
0 | 
0 | 
| T4 | 
7120 | 
0 | 
0 | 
0 | 
| T7 | 
7776 | 
1 | 
0 | 
0 | 
| T10 | 
0 | 
6 | 
0 | 
0 | 
| T12 | 
16016 | 
10 | 
0 | 
0 | 
| T13 | 
0 | 
27 | 
0 | 
0 | 
| T14 | 
0 | 
808 | 
0 | 
0 | 
| T15 | 
0 | 
97 | 
0 | 
0 | 
| T17 | 
12352 | 
74 | 
0 | 
0 | 
| T18 | 
15600 | 
54 | 
0 | 
0 | 
| T19 | 
18424 | 
73 | 
0 | 
0 | 
| T20 | 
11784 | 
24 | 
0 | 
0 | 
| T23 | 
58392 | 
132 | 
0 | 
0 | 
| T51 | 
0 | 
656 | 
0 | 
0 | 
| T54 | 
0 | 
50 | 
0 | 
0 | 
| T58 | 
0 | 
5 | 
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:       T7 T10 T70 
47         1/1                out_o.err <= '0;
           Tests:       T7 T10 T70 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T12 T23 T13 
50         1/1                out_o.err <= '0;
           Tests:       T12 T23 T13 
51         1/1              end else if (alloc_i && en_i) begin
           Tests:       T1 T2 T3 
52         1/1                out_o.addr <= addr_i;
           Tests:       T2 T3 T17 
53         1/1                out_o.part <= part_i;
           Tests:       T2 T3 T17 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T2 T3 T17 
55         1/1                out_o.attr <= Wip;
           Tests:       T2 T3 T17 
56         1/1                out_o.err <= '0;
           Tests:       T2 T3 T17 
57         1/1              end else if (update_i && en_i) begin
           Tests:       T1 T2 T3 
58         1/1                out_o.data <= data_i;
           Tests:       T2 T3 T17 
59         1/1                out_o.attr <= Valid;
           Tests:       T2 T3 T17 
60         1/1                out_o.err <= err_i;
           Tests:       T2 T3 T17 
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 | T2,T3,T17 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T7,T70,T77 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T2,T3,T17 | 
 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 | T12,T23,T13 | 
 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 | T2,T3,T17 | 
 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 | T2,T3,T17 | 
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 | 
T7,T10,T70 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T12,T23,T13 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T2,T3,T17 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T2,T3,T17 | 
| 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 | 
388255766 | 
665971 | 
0 | 
0 | 
| T2 | 
10848 | 
56 | 
0 | 
0 | 
| T3 | 
1224 | 
2 | 
0 | 
0 | 
| T4 | 
890 | 
0 | 
0 | 
0 | 
| T7 | 
972 | 
1 | 
0 | 
0 | 
| T12 | 
2002 | 
3 | 
0 | 
0 | 
| T13 | 
0 | 
6 | 
0 | 
0 | 
| T14 | 
0 | 
202 | 
0 | 
0 | 
| T17 | 
1544 | 
19 | 
0 | 
0 | 
| T18 | 
1950 | 
0 | 
0 | 
0 | 
| T19 | 
2303 | 
19 | 
0 | 
0 | 
| T20 | 
1473 | 
5 | 
0 | 
0 | 
| T23 | 
7299 | 
26 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
388255766 | 
665971 | 
0 | 
0 | 
| T2 | 
10848 | 
56 | 
0 | 
0 | 
| T3 | 
1224 | 
2 | 
0 | 
0 | 
| T4 | 
890 | 
0 | 
0 | 
0 | 
| T7 | 
972 | 
1 | 
0 | 
0 | 
| T12 | 
2002 | 
3 | 
0 | 
0 | 
| T13 | 
0 | 
6 | 
0 | 
0 | 
| T14 | 
0 | 
202 | 
0 | 
0 | 
| T17 | 
1544 | 
19 | 
0 | 
0 | 
| T18 | 
1950 | 
0 | 
0 | 
0 | 
| T19 | 
2303 | 
19 | 
0 | 
0 | 
| T20 | 
1473 | 
5 | 
0 | 
0 | 
| T23 | 
7299 | 
26 | 
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:       T10 T70 T11 
47         1/1                out_o.err <= '0;
           Tests:       T10 T70 T11 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T12 T23 T14 
50         1/1                out_o.err <= '0;
           Tests:       T12 T23 T14 
51         1/1              end else if (alloc_i && en_i) begin
           Tests:       T1 T2 T3 
52         1/1                out_o.addr <= addr_i;
           Tests:       T2 T3 T17 
53         1/1                out_o.part <= part_i;
           Tests:       T2 T3 T17 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T2 T3 T17 
55         1/1                out_o.attr <= Wip;
           Tests:       T2 T3 T17 
56         1/1                out_o.err <= '0;
           Tests:       T2 T3 T17 
57         1/1              end else if (update_i && en_i) begin
           Tests:       T1 T2 T3 
58         1/1                out_o.data <= data_i;
           Tests:       T2 T3 T17 
59         1/1                out_o.attr <= Valid;
           Tests:       T2 T3 T17 
60         1/1                out_o.err <= err_i;
           Tests:       T2 T3 T17 
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 | T2,T3,T17 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T70,T77,T78 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T2,T3,T17 | 
 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 | T12,T23,T14 | 
 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 | T2,T3,T17 | 
 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 | T2,T3,T17 | 
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 | 
T10,T70,T11 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T12,T23,T14 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T2,T3,T17 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T2,T3,T17 | 
| 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 | 
388255766 | 
665757 | 
0 | 
0 | 
| T2 | 
10848 | 
56 | 
0 | 
0 | 
| T3 | 
1224 | 
1 | 
0 | 
0 | 
| T4 | 
890 | 
0 | 
0 | 
0 | 
| T7 | 
972 | 
0 | 
0 | 
0 | 
| T12 | 
2002 | 
3 | 
0 | 
0 | 
| T13 | 
0 | 
5 | 
0 | 
0 | 
| T14 | 
0 | 
202 | 
0 | 
0 | 
| T15 | 
0 | 
10 | 
0 | 
0 | 
| T17 | 
1544 | 
19 | 
0 | 
0 | 
| T18 | 
1950 | 
0 | 
0 | 
0 | 
| T19 | 
2303 | 
18 | 
0 | 
0 | 
| T20 | 
1473 | 
5 | 
0 | 
0 | 
| T23 | 
7299 | 
24 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
388255766 | 
665755 | 
0 | 
0 | 
| T2 | 
10848 | 
56 | 
0 | 
0 | 
| T3 | 
1224 | 
1 | 
0 | 
0 | 
| T4 | 
890 | 
0 | 
0 | 
0 | 
| T7 | 
972 | 
0 | 
0 | 
0 | 
| T12 | 
2002 | 
3 | 
0 | 
0 | 
| T13 | 
0 | 
5 | 
0 | 
0 | 
| T14 | 
0 | 
202 | 
0 | 
0 | 
| T15 | 
0 | 
10 | 
0 | 
0 | 
| T17 | 
1544 | 
19 | 
0 | 
0 | 
| T18 | 
1950 | 
0 | 
0 | 
0 | 
| T19 | 
2303 | 
18 | 
0 | 
0 | 
| T20 | 
1473 | 
5 | 
0 | 
0 | 
| T23 | 
7299 | 
24 | 
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:       T10 T11 T77 
47         1/1                out_o.err <= '0;
           Tests:       T10 T11 T77 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T12 T23 T14 
50         1/1                out_o.err <= '0;
           Tests:       T12 T23 T14 
51         1/1              end else if (alloc_i && en_i) begin
           Tests:       T1 T2 T3 
52         1/1                out_o.addr <= addr_i;
           Tests:       T2 T3 T17 
53         1/1                out_o.part <= part_i;
           Tests:       T2 T3 T17 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T2 T3 T17 
55         1/1                out_o.attr <= Wip;
           Tests:       T2 T3 T17 
56         1/1                out_o.err <= '0;
           Tests:       T2 T3 T17 
57         1/1              end else if (update_i && en_i) begin
           Tests:       T1 T2 T3 
58         1/1                out_o.data <= data_i;
           Tests:       T2 T3 T17 
59         1/1                out_o.attr <= Valid;
           Tests:       T2 T3 T17 
60         1/1                out_o.err <= err_i;
           Tests:       T2 T3 T17 
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 | T2,T3,T17 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T77,T78,T79 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T2,T3,T17 | 
 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 | T12,T23,T14 | 
 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 | T2,T3,T17 | 
 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 | T2,T3,T17 | 
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 | 
T10,T11,T77 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T12,T23,T14 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T2,T3,T17 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T2,T3,T17 | 
| 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 | 
388255766 | 
665757 | 
0 | 
0 | 
| T2 | 
10848 | 
55 | 
0 | 
0 | 
| T3 | 
1224 | 
1 | 
0 | 
0 | 
| T4 | 
890 | 
0 | 
0 | 
0 | 
| T7 | 
972 | 
0 | 
0 | 
0 | 
| T12 | 
2002 | 
2 | 
0 | 
0 | 
| T13 | 
0 | 
4 | 
0 | 
0 | 
| T14 | 
0 | 
202 | 
0 | 
0 | 
| T15 | 
0 | 
11 | 
0 | 
0 | 
| T17 | 
1544 | 
18 | 
0 | 
0 | 
| T18 | 
1950 | 
0 | 
0 | 
0 | 
| T19 | 
2303 | 
18 | 
0 | 
0 | 
| T20 | 
1473 | 
4 | 
0 | 
0 | 
| T23 | 
7299 | 
24 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
388255766 | 
665757 | 
0 | 
0 | 
| T2 | 
10848 | 
55 | 
0 | 
0 | 
| T3 | 
1224 | 
1 | 
0 | 
0 | 
| T4 | 
890 | 
0 | 
0 | 
0 | 
| T7 | 
972 | 
0 | 
0 | 
0 | 
| T12 | 
2002 | 
2 | 
0 | 
0 | 
| T13 | 
0 | 
4 | 
0 | 
0 | 
| T14 | 
0 | 
202 | 
0 | 
0 | 
| T15 | 
0 | 
11 | 
0 | 
0 | 
| T17 | 
1544 | 
18 | 
0 | 
0 | 
| T18 | 
1950 | 
0 | 
0 | 
0 | 
| T19 | 
2303 | 
18 | 
0 | 
0 | 
| T20 | 
1473 | 
4 | 
0 | 
0 | 
| T23 | 
7299 | 
24 | 
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:       T10 T11 T77 
47         1/1                out_o.err <= '0;
           Tests:       T10 T11 T77 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T12 T20 T23 
50         1/1                out_o.err <= '0;
           Tests:       T12 T20 T23 
51         1/1              end else if (alloc_i && en_i) begin
           Tests:       T1 T2 T3 
52         1/1                out_o.addr <= addr_i;
           Tests:       T2 T3 T17 
53         1/1                out_o.part <= part_i;
           Tests:       T2 T3 T17 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T2 T3 T17 
55         1/1                out_o.attr <= Wip;
           Tests:       T2 T3 T17 
56         1/1                out_o.err <= '0;
           Tests:       T2 T3 T17 
57         1/1              end else if (update_i && en_i) begin
           Tests:       T1 T2 T3 
58         1/1                out_o.data <= data_i;
           Tests:       T2 T3 T17 
59         1/1                out_o.attr <= Valid;
           Tests:       T2 T3 T17 
60         1/1                out_o.err <= err_i;
           Tests:       T2 T3 T17 
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 | T2,T3,T17 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T77,T78,T79 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T2,T3,T17 | 
 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 | T12,T20,T23 | 
 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 | T2,T3,T17 | 
 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 | T2,T3,T17 | 
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 | 
T10,T11,T77 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T12,T20,T23 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T2,T3,T17 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T2,T3,T17 | 
| 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 | 
388255766 | 
665246 | 
0 | 
0 | 
| T2 | 
10848 | 
55 | 
0 | 
0 | 
| T3 | 
1224 | 
1 | 
0 | 
0 | 
| T4 | 
890 | 
0 | 
0 | 
0 | 
| T7 | 
972 | 
0 | 
0 | 
0 | 
| T12 | 
2002 | 
2 | 
0 | 
0 | 
| T13 | 
0 | 
4 | 
0 | 
0 | 
| T14 | 
0 | 
202 | 
0 | 
0 | 
| T15 | 
0 | 
11 | 
0 | 
0 | 
| T17 | 
1544 | 
18 | 
0 | 
0 | 
| T18 | 
1950 | 
0 | 
0 | 
0 | 
| T19 | 
2303 | 
18 | 
0 | 
0 | 
| T20 | 
1473 | 
5 | 
0 | 
0 | 
| T23 | 
7299 | 
24 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
388255766 | 
665245 | 
0 | 
0 | 
| T2 | 
10848 | 
55 | 
0 | 
0 | 
| T3 | 
1224 | 
1 | 
0 | 
0 | 
| T4 | 
890 | 
0 | 
0 | 
0 | 
| T7 | 
972 | 
0 | 
0 | 
0 | 
| T12 | 
2002 | 
2 | 
0 | 
0 | 
| T13 | 
0 | 
4 | 
0 | 
0 | 
| T14 | 
0 | 
202 | 
0 | 
0 | 
| T15 | 
0 | 
11 | 
0 | 
0 | 
| T17 | 
1544 | 
18 | 
0 | 
0 | 
| T18 | 
1950 | 
0 | 
0 | 
0 | 
| T19 | 
2303 | 
18 | 
0 | 
0 | 
| T20 | 
1473 | 
5 | 
0 | 
0 | 
| T23 | 
7299 | 
24 | 
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:       T10 T11 T77 
47         1/1                out_o.err <= '0;
           Tests:       T10 T11 T77 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T51 T10 T59 
50         1/1                out_o.err <= '0;
           Tests:       T51 T10 T59 
51         1/1              end else if (alloc_i && en_i) begin
           Tests:       T1 T2 T3 
52         1/1                out_o.addr <= addr_i;
           Tests:       T2 T18 T20 
53         1/1                out_o.part <= part_i;
           Tests:       T2 T18 T20 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T2 T18 T20 
55         1/1                out_o.attr <= Wip;
           Tests:       T2 T18 T20 
56         1/1                out_o.err <= '0;
           Tests:       T2 T18 T20 
57         1/1              end else if (update_i && en_i) begin
           Tests:       T1 T2 T3 
58         1/1                out_o.data <= data_i;
           Tests:       T2 T18 T20 
59         1/1                out_o.attr <= Valid;
           Tests:       T2 T18 T20 
60         1/1                out_o.err <= err_i;
           Tests:       T2 T18 T20 
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 | T2,T18,T20 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T77,T78,T79 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T2,T18,T20 | 
 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 | T51,T59,T80 | 
 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 | T2,T18,T20 | 
 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 | T2,T18,T20 | 
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 | 
T10,T11,T77 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T51,T10,T59 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T2,T18,T20 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T2,T18,T20 | 
| 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 | 
388255766 | 
645028 | 
0 | 
0 | 
| T2 | 
10848 | 
54 | 
0 | 
0 | 
| T3 | 
1224 | 
0 | 
0 | 
0 | 
| T4 | 
890 | 
0 | 
0 | 
0 | 
| T7 | 
972 | 
0 | 
0 | 
0 | 
| T10 | 
0 | 
2 | 
0 | 
0 | 
| T12 | 
2002 | 
0 | 
0 | 
0 | 
| T13 | 
0 | 
2 | 
0 | 
0 | 
| T15 | 
0 | 
17 | 
0 | 
0 | 
| T17 | 
1544 | 
0 | 
0 | 
0 | 
| T18 | 
1950 | 
14 | 
0 | 
0 | 
| T19 | 
2303 | 
0 | 
0 | 
0 | 
| T20 | 
1473 | 
2 | 
0 | 
0 | 
| T23 | 
7299 | 
9 | 
0 | 
0 | 
| T51 | 
0 | 
166 | 
0 | 
0 | 
| T54 | 
0 | 
14 | 
0 | 
0 | 
| T58 | 
0 | 
2 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
388255766 | 
645027 | 
0 | 
0 | 
| T2 | 
10848 | 
54 | 
0 | 
0 | 
| T3 | 
1224 | 
0 | 
0 | 
0 | 
| T4 | 
890 | 
0 | 
0 | 
0 | 
| T7 | 
972 | 
0 | 
0 | 
0 | 
| T10 | 
0 | 
2 | 
0 | 
0 | 
| T12 | 
2002 | 
0 | 
0 | 
0 | 
| T13 | 
0 | 
2 | 
0 | 
0 | 
| T15 | 
0 | 
17 | 
0 | 
0 | 
| T17 | 
1544 | 
0 | 
0 | 
0 | 
| T18 | 
1950 | 
14 | 
0 | 
0 | 
| T19 | 
2303 | 
0 | 
0 | 
0 | 
| T20 | 
1473 | 
2 | 
0 | 
0 | 
| T23 | 
7299 | 
9 | 
0 | 
0 | 
| T51 | 
0 | 
166 | 
0 | 
0 | 
| T54 | 
0 | 
14 | 
0 | 
0 | 
| T58 | 
0 | 
2 | 
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:       T10 T11 T77 
47         1/1                out_o.err <= '0;
           Tests:       T10 T11 T77 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T51 T10 T59 
50         1/1                out_o.err <= '0;
           Tests:       T51 T10 T59 
51         1/1              end else if (alloc_i && en_i) begin
           Tests:       T1 T2 T3 
52         1/1                out_o.addr <= addr_i;
           Tests:       T2 T18 T20 
53         1/1                out_o.part <= part_i;
           Tests:       T2 T18 T20 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T2 T18 T20 
55         1/1                out_o.attr <= Wip;
           Tests:       T2 T18 T20 
56         1/1                out_o.err <= '0;
           Tests:       T2 T18 T20 
57         1/1              end else if (update_i && en_i) begin
           Tests:       T1 T2 T3 
58         1/1                out_o.data <= data_i;
           Tests:       T2 T18 T20 
59         1/1                out_o.attr <= Valid;
           Tests:       T2 T18 T20 
60         1/1                out_o.err <= err_i;
           Tests:       T2 T18 T20 
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 | T2,T18,T20 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T77,T78,T79 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T2,T18,T20 | 
 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 | T51,T59,T80 | 
 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 | T2,T18,T20 | 
 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 | T2,T18,T20 | 
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 | 
T10,T11,T77 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T51,T10,T59 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T2,T18,T20 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T2,T18,T20 | 
| 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 | 
388255766 | 
644850 | 
0 | 
0 | 
| T2 | 
10848 | 
54 | 
0 | 
0 | 
| T3 | 
1224 | 
0 | 
0 | 
0 | 
| T4 | 
890 | 
0 | 
0 | 
0 | 
| T7 | 
972 | 
0 | 
0 | 
0 | 
| T10 | 
0 | 
2 | 
0 | 
0 | 
| T12 | 
2002 | 
0 | 
0 | 
0 | 
| T13 | 
0 | 
2 | 
0 | 
0 | 
| T15 | 
0 | 
16 | 
0 | 
0 | 
| T17 | 
1544 | 
0 | 
0 | 
0 | 
| T18 | 
1950 | 
14 | 
0 | 
0 | 
| T19 | 
2303 | 
0 | 
0 | 
0 | 
| T20 | 
1473 | 
1 | 
0 | 
0 | 
| T23 | 
7299 | 
9 | 
0 | 
0 | 
| T51 | 
0 | 
165 | 
0 | 
0 | 
| T54 | 
0 | 
12 | 
0 | 
0 | 
| T58 | 
0 | 
1 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
388255766 | 
644847 | 
0 | 
0 | 
| T2 | 
10848 | 
54 | 
0 | 
0 | 
| T3 | 
1224 | 
0 | 
0 | 
0 | 
| T4 | 
890 | 
0 | 
0 | 
0 | 
| T7 | 
972 | 
0 | 
0 | 
0 | 
| T10 | 
0 | 
2 | 
0 | 
0 | 
| T12 | 
2002 | 
0 | 
0 | 
0 | 
| T13 | 
0 | 
2 | 
0 | 
0 | 
| T15 | 
0 | 
16 | 
0 | 
0 | 
| T17 | 
1544 | 
0 | 
0 | 
0 | 
| T18 | 
1950 | 
14 | 
0 | 
0 | 
| T19 | 
2303 | 
0 | 
0 | 
0 | 
| T20 | 
1473 | 
1 | 
0 | 
0 | 
| T23 | 
7299 | 
9 | 
0 | 
0 | 
| T51 | 
0 | 
165 | 
0 | 
0 | 
| T54 | 
0 | 
12 | 
0 | 
0 | 
| T58 | 
0 | 
1 | 
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:       T10 T11 T77 
47         1/1                out_o.err <= '0;
           Tests:       T10 T11 T77 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T51 T10 T59 
50         1/1                out_o.err <= '0;
           Tests:       T51 T10 T59 
51         1/1              end else if (alloc_i && en_i) begin
           Tests:       T1 T2 T3 
52         1/1                out_o.addr <= addr_i;
           Tests:       T2 T18 T20 
53         1/1                out_o.part <= part_i;
           Tests:       T2 T18 T20 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T2 T18 T20 
55         1/1                out_o.attr <= Wip;
           Tests:       T2 T18 T20 
56         1/1                out_o.err <= '0;
           Tests:       T2 T18 T20 
57         1/1              end else if (update_i && en_i) begin
           Tests:       T1 T2 T3 
58         1/1                out_o.data <= data_i;
           Tests:       T2 T18 T20 
59         1/1                out_o.attr <= Valid;
           Tests:       T2 T18 T20 
60         1/1                out_o.err <= err_i;
           Tests:       T2 T18 T20 
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 | T2,T18,T20 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T77,T78,T79 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T2,T18,T20 | 
 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 | T51,T59,T80 | 
 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 | T2,T18,T20 | 
 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 | T2,T18,T20 | 
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 | 
T10,T11,T77 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T51,T10,T59 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T2,T18,T20 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T2,T18,T20 | 
| 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 | 
388255766 | 
644473 | 
0 | 
0 | 
| T2 | 
10848 | 
54 | 
0 | 
0 | 
| T3 | 
1224 | 
0 | 
0 | 
0 | 
| T4 | 
890 | 
0 | 
0 | 
0 | 
| T7 | 
972 | 
0 | 
0 | 
0 | 
| T10 | 
0 | 
1 | 
0 | 
0 | 
| T12 | 
2002 | 
0 | 
0 | 
0 | 
| T13 | 
0 | 
2 | 
0 | 
0 | 
| T15 | 
0 | 
16 | 
0 | 
0 | 
| T17 | 
1544 | 
0 | 
0 | 
0 | 
| T18 | 
1950 | 
13 | 
0 | 
0 | 
| T19 | 
2303 | 
0 | 
0 | 
0 | 
| T20 | 
1473 | 
1 | 
0 | 
0 | 
| T23 | 
7299 | 
8 | 
0 | 
0 | 
| T51 | 
0 | 
165 | 
0 | 
0 | 
| T54 | 
0 | 
12 | 
0 | 
0 | 
| T58 | 
0 | 
1 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
388255766 | 
644467 | 
0 | 
0 | 
| T2 | 
10848 | 
54 | 
0 | 
0 | 
| T3 | 
1224 | 
0 | 
0 | 
0 | 
| T4 | 
890 | 
0 | 
0 | 
0 | 
| T7 | 
972 | 
0 | 
0 | 
0 | 
| T10 | 
0 | 
1 | 
0 | 
0 | 
| T12 | 
2002 | 
0 | 
0 | 
0 | 
| T13 | 
0 | 
2 | 
0 | 
0 | 
| T15 | 
0 | 
16 | 
0 | 
0 | 
| T17 | 
1544 | 
0 | 
0 | 
0 | 
| T18 | 
1950 | 
13 | 
0 | 
0 | 
| T19 | 
2303 | 
0 | 
0 | 
0 | 
| T20 | 
1473 | 
1 | 
0 | 
0 | 
| T23 | 
7299 | 
8 | 
0 | 
0 | 
| T51 | 
0 | 
165 | 
0 | 
0 | 
| T54 | 
0 | 
12 | 
0 | 
0 | 
| T58 | 
0 | 
1 | 
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:       T10 T11 T77 
47         1/1                out_o.err <= '0;
           Tests:       T10 T11 T77 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T51 T10 T59 
50         1/1                out_o.err <= '0;
           Tests:       T51 T10 T59 
51         1/1              end else if (alloc_i && en_i) begin
           Tests:       T1 T2 T3 
52         1/1                out_o.addr <= addr_i;
           Tests:       T2 T18 T20 
53         1/1                out_o.part <= part_i;
           Tests:       T2 T18 T20 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T2 T18 T20 
55         1/1                out_o.attr <= Wip;
           Tests:       T2 T18 T20 
56         1/1                out_o.err <= '0;
           Tests:       T2 T18 T20 
57         1/1              end else if (update_i && en_i) begin
           Tests:       T1 T2 T3 
58         1/1                out_o.data <= data_i;
           Tests:       T2 T18 T20 
59         1/1                out_o.attr <= Valid;
           Tests:       T2 T18 T20 
60         1/1                out_o.err <= err_i;
           Tests:       T2 T18 T20 
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 | T2,T18,T20 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T77,T78,T79 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T2,T18,T20 | 
 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 | T51,T59,T80 | 
 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 | T2,T18,T20 | 
 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 | T2,T18,T20 | 
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 | 
T10,T11,T77 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T51,T10,T59 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T2,T18,T20 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T2,T18,T20 | 
| 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 | 
388255766 | 
643828 | 
0 | 
0 | 
| T2 | 
10848 | 
53 | 
0 | 
0 | 
| T3 | 
1224 | 
0 | 
0 | 
0 | 
| T4 | 
890 | 
0 | 
0 | 
0 | 
| T7 | 
972 | 
0 | 
0 | 
0 | 
| T10 | 
0 | 
1 | 
0 | 
0 | 
| T12 | 
2002 | 
0 | 
0 | 
0 | 
| T13 | 
0 | 
2 | 
0 | 
0 | 
| T15 | 
0 | 
16 | 
0 | 
0 | 
| T17 | 
1544 | 
0 | 
0 | 
0 | 
| T18 | 
1950 | 
13 | 
0 | 
0 | 
| T19 | 
2303 | 
0 | 
0 | 
0 | 
| T20 | 
1473 | 
1 | 
0 | 
0 | 
| T23 | 
7299 | 
8 | 
0 | 
0 | 
| T51 | 
0 | 
160 | 
0 | 
0 | 
| T54 | 
0 | 
12 | 
0 | 
0 | 
| T58 | 
0 | 
1 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
388255766 | 
643827 | 
0 | 
0 | 
| T2 | 
10848 | 
53 | 
0 | 
0 | 
| T3 | 
1224 | 
0 | 
0 | 
0 | 
| T4 | 
890 | 
0 | 
0 | 
0 | 
| T7 | 
972 | 
0 | 
0 | 
0 | 
| T10 | 
0 | 
1 | 
0 | 
0 | 
| T12 | 
2002 | 
0 | 
0 | 
0 | 
| T13 | 
0 | 
2 | 
0 | 
0 | 
| T15 | 
0 | 
16 | 
0 | 
0 | 
| T17 | 
1544 | 
0 | 
0 | 
0 | 
| T18 | 
1950 | 
13 | 
0 | 
0 | 
| T19 | 
2303 | 
0 | 
0 | 
0 | 
| T20 | 
1473 | 
1 | 
0 | 
0 | 
| T23 | 
7299 | 
8 | 
0 | 
0 | 
| T51 | 
0 | 
160 | 
0 | 
0 | 
| T54 | 
0 | 
12 | 
0 | 
0 | 
| T58 | 
0 | 
1 | 
0 | 
0 |