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:       T79 T80 T12 
47         1/1                out_o.err <= '0;
           Tests:       T79 T80 T12 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T7 T15 T16 
50         1/1                out_o.err <= '0;
           Tests:       T7 T15 T16 
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 T7 
53         1/1                out_o.part <= part_i;
           Tests:       T2 T3 T7 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T2 T3 T7 
55         1/1                out_o.attr <= Wip;
           Tests:       T2 T3 T7 
56         1/1                out_o.err <= '0;
           Tests:       T2 T3 T7 
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 T7 
59         1/1                out_o.attr <= Valid;
           Tests:       T2 T3 T7 
60         1/1                out_o.err <= err_i;
           Tests:       T2 T3 T7 
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,T7 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T79,T80,T81 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T2,T3,T7 | 
 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 | T7,T15,T16 | 
 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,T7 | 
 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,T7 | 
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 | 
T79,T80,T12 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T7,T15,T16 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T2,T3,T7 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T2,T3,T7 | 
| 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 | 
5094498 | 
0 | 
0 | 
| T2 | 
85400 | 
436 | 
0 | 
0 | 
| T3 | 
20424 | 
73 | 
0 | 
0 | 
| T7 | 
18120 | 
10 | 
0 | 
0 | 
| T13 | 
10600 | 
5 | 
0 | 
0 | 
| T14 | 
441880 | 
478 | 
0 | 
0 | 
| T15 | 
772456 | 
1188 | 
0 | 
0 | 
| T16 | 
0 | 
83 | 
0 | 
0 | 
| T17 | 
0 | 
583 | 
0 | 
0 | 
| T20 | 
11784 | 
74 | 
0 | 
0 | 
| T21 | 
15376 | 
73 | 
0 | 
0 | 
| T22 | 
1432016 | 
0 | 
0 | 
0 | 
| T23 | 
763336 | 
42 | 
0 | 
0 | 
| T27 | 
0 | 
30 | 
0 | 
0 | 
| T43 | 
0 | 
8825 | 
0 | 
0 | 
| T65 | 
0 | 
9824 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
2147483647 | 
5094487 | 
0 | 
0 | 
| T2 | 
85400 | 
436 | 
0 | 
0 | 
| T3 | 
20424 | 
73 | 
0 | 
0 | 
| T7 | 
18120 | 
10 | 
0 | 
0 | 
| T13 | 
10600 | 
5 | 
0 | 
0 | 
| T14 | 
441880 | 
478 | 
0 | 
0 | 
| T15 | 
772456 | 
1188 | 
0 | 
0 | 
| T16 | 
0 | 
83 | 
0 | 
0 | 
| T17 | 
0 | 
583 | 
0 | 
0 | 
| T20 | 
11784 | 
74 | 
0 | 
0 | 
| T21 | 
15376 | 
73 | 
0 | 
0 | 
| T22 | 
1432016 | 
0 | 
0 | 
0 | 
| T23 | 
763336 | 
42 | 
0 | 
0 | 
| T27 | 
0 | 
30 | 
0 | 
0 | 
| T43 | 
0 | 
8825 | 
0 | 
0 | 
| T65 | 
0 | 
9824 | 
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:       T80 T12 T81 
47         1/1                out_o.err <= '0;
           Tests:       T80 T12 T81 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T7 T15 T16 
50         1/1                out_o.err <= '0;
           Tests:       T7 T15 T16 
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 T7 
53         1/1                out_o.part <= part_i;
           Tests:       T2 T3 T7 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T2 T3 T7 
55         1/1                out_o.attr <= Wip;
           Tests:       T2 T3 T7 
56         1/1                out_o.err <= '0;
           Tests:       T2 T3 T7 
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 T7 
59         1/1                out_o.attr <= Valid;
           Tests:       T2 T3 T7 
60         1/1                out_o.err <= err_i;
           Tests:       T2 T3 T7 
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,T7 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T80,T81,T82 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T2,T3,T7 | 
 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 | T7,T15,T16 | 
 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,T7 | 
 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,T7 | 
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 | 
T80,T12,T81 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T7,T15,T16 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T2,T3,T7 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T2,T3,T7 | 
| 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 | 
386976888 | 
651083 | 
0 | 
0 | 
| T2 | 
10675 | 
65 | 
0 | 
0 | 
| T3 | 
2553 | 
19 | 
0 | 
0 | 
| T7 | 
2265 | 
3 | 
0 | 
0 | 
| T13 | 
1325 | 
2 | 
0 | 
0 | 
| T14 | 
55235 | 
80 | 
0 | 
0 | 
| T15 | 
96557 | 
132 | 
0 | 
0 | 
| T16 | 
0 | 
14 | 
0 | 
0 | 
| T17 | 
0 | 
71 | 
0 | 
0 | 
| T20 | 
1473 | 
0 | 
0 | 
0 | 
| T21 | 
1922 | 
19 | 
0 | 
0 | 
| T22 | 
179002 | 
0 | 
0 | 
0 | 
| T23 | 
95417 | 
7 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
386976888 | 
651083 | 
0 | 
0 | 
| T2 | 
10675 | 
65 | 
0 | 
0 | 
| T3 | 
2553 | 
19 | 
0 | 
0 | 
| T7 | 
2265 | 
3 | 
0 | 
0 | 
| T13 | 
1325 | 
2 | 
0 | 
0 | 
| T14 | 
55235 | 
80 | 
0 | 
0 | 
| T15 | 
96557 | 
132 | 
0 | 
0 | 
| T16 | 
0 | 
14 | 
0 | 
0 | 
| T17 | 
0 | 
71 | 
0 | 
0 | 
| T20 | 
1473 | 
0 | 
0 | 
0 | 
| T21 | 
1922 | 
19 | 
0 | 
0 | 
| T22 | 
179002 | 
0 | 
0 | 
0 | 
| T23 | 
95417 | 
7 | 
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:       T80 T12 T81 
47         1/1                out_o.err <= '0;
           Tests:       T80 T12 T81 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T7 T15 T16 
50         1/1                out_o.err <= '0;
           Tests:       T7 T15 T16 
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 T7 
53         1/1                out_o.part <= part_i;
           Tests:       T2 T3 T7 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T2 T3 T7 
55         1/1                out_o.attr <= Wip;
           Tests:       T2 T3 T7 
56         1/1                out_o.err <= '0;
           Tests:       T2 T3 T7 
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 T7 
59         1/1                out_o.attr <= Valid;
           Tests:       T2 T3 T7 
60         1/1                out_o.err <= err_i;
           Tests:       T2 T3 T7 
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,T7 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T80,T81,T82 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T2,T3,T7 | 
 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 | T7,T15,T16 | 
 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,T7 | 
 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,T7 | 
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 | 
T80,T12,T81 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T7,T15,T16 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T2,T3,T7 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T2,T3,T7 | 
| 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 | 
386976888 | 
650624 | 
0 | 
0 | 
| T2 | 
10675 | 
65 | 
0 | 
0 | 
| T3 | 
2553 | 
18 | 
0 | 
0 | 
| T7 | 
2265 | 
3 | 
0 | 
0 | 
| T13 | 
1325 | 
1 | 
0 | 
0 | 
| T14 | 
55235 | 
80 | 
0 | 
0 | 
| T15 | 
96557 | 
132 | 
0 | 
0 | 
| T16 | 
0 | 
13 | 
0 | 
0 | 
| T17 | 
0 | 
70 | 
0 | 
0 | 
| T20 | 
1473 | 
0 | 
0 | 
0 | 
| T21 | 
1922 | 
18 | 
0 | 
0 | 
| T22 | 
179002 | 
0 | 
0 | 
0 | 
| T23 | 
95417 | 
6 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
386976888 | 
650622 | 
0 | 
0 | 
| T2 | 
10675 | 
65 | 
0 | 
0 | 
| T3 | 
2553 | 
18 | 
0 | 
0 | 
| T7 | 
2265 | 
3 | 
0 | 
0 | 
| T13 | 
1325 | 
1 | 
0 | 
0 | 
| T14 | 
55235 | 
80 | 
0 | 
0 | 
| T15 | 
96557 | 
132 | 
0 | 
0 | 
| T16 | 
0 | 
13 | 
0 | 
0 | 
| T17 | 
0 | 
70 | 
0 | 
0 | 
| T20 | 
1473 | 
0 | 
0 | 
0 | 
| T21 | 
1922 | 
18 | 
0 | 
0 | 
| T22 | 
179002 | 
0 | 
0 | 
0 | 
| T23 | 
95417 | 
6 | 
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:       T80 T12 T81 
47         1/1                out_o.err <= '0;
           Tests:       T80 T12 T81 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T7 T15 T16 
50         1/1                out_o.err <= '0;
           Tests:       T7 T15 T16 
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 T7 
53         1/1                out_o.part <= part_i;
           Tests:       T2 T3 T7 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T2 T3 T7 
55         1/1                out_o.attr <= Wip;
           Tests:       T2 T3 T7 
56         1/1                out_o.err <= '0;
           Tests:       T2 T3 T7 
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 T7 
59         1/1                out_o.attr <= Valid;
           Tests:       T2 T3 T7 
60         1/1                out_o.err <= err_i;
           Tests:       T2 T3 T7 
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,T7 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T80,T81,T83 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T2,T3,T7 | 
 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 | T7,T15,T16 | 
 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,T7 | 
 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,T7 | 
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 | 
T80,T12,T81 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T7,T15,T16 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T2,T3,T7 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T2,T3,T7 | 
| 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 | 
386976888 | 
650545 | 
0 | 
0 | 
| T2 | 
10675 | 
64 | 
0 | 
0 | 
| T3 | 
2553 | 
18 | 
0 | 
0 | 
| T7 | 
2265 | 
2 | 
0 | 
0 | 
| T13 | 
1325 | 
1 | 
0 | 
0 | 
| T14 | 
55235 | 
79 | 
0 | 
0 | 
| T15 | 
96557 | 
132 | 
0 | 
0 | 
| T16 | 
0 | 
13 | 
0 | 
0 | 
| T17 | 
0 | 
70 | 
0 | 
0 | 
| T20 | 
1473 | 
0 | 
0 | 
0 | 
| T21 | 
1922 | 
18 | 
0 | 
0 | 
| T22 | 
179002 | 
0 | 
0 | 
0 | 
| T23 | 
95417 | 
6 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
386976888 | 
650544 | 
0 | 
0 | 
| T2 | 
10675 | 
64 | 
0 | 
0 | 
| T3 | 
2553 | 
18 | 
0 | 
0 | 
| T7 | 
2265 | 
2 | 
0 | 
0 | 
| T13 | 
1325 | 
1 | 
0 | 
0 | 
| T14 | 
55235 | 
79 | 
0 | 
0 | 
| T15 | 
96557 | 
132 | 
0 | 
0 | 
| T16 | 
0 | 
13 | 
0 | 
0 | 
| T17 | 
0 | 
70 | 
0 | 
0 | 
| T20 | 
1473 | 
0 | 
0 | 
0 | 
| T21 | 
1922 | 
18 | 
0 | 
0 | 
| T22 | 
179002 | 
0 | 
0 | 
0 | 
| T23 | 
95417 | 
6 | 
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:       T80 T12 T81 
47         1/1                out_o.err <= '0;
           Tests:       T80 T12 T81 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T7 T15 T16 
50         1/1                out_o.err <= '0;
           Tests:       T7 T15 T16 
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 T7 
53         1/1                out_o.part <= part_i;
           Tests:       T2 T3 T7 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T2 T3 T7 
55         1/1                out_o.attr <= Wip;
           Tests:       T2 T3 T7 
56         1/1                out_o.err <= '0;
           Tests:       T2 T3 T7 
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 T7 
59         1/1                out_o.attr <= Valid;
           Tests:       T2 T3 T7 
60         1/1                out_o.err <= err_i;
           Tests:       T2 T3 T7 
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,T7 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T80,T81,T83 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T2,T3,T7 | 
 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 | T7,T15,T16 | 
 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,T7 | 
 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,T7 | 
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 | 
T80,T12,T81 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T7,T15,T16 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T2,T3,T7 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T2,T3,T7 | 
| 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 | 
386976888 | 
649923 | 
0 | 
0 | 
| T2 | 
10675 | 
64 | 
0 | 
0 | 
| T3 | 
2553 | 
18 | 
0 | 
0 | 
| T7 | 
2265 | 
2 | 
0 | 
0 | 
| T13 | 
1325 | 
1 | 
0 | 
0 | 
| T14 | 
55235 | 
79 | 
0 | 
0 | 
| T15 | 
96557 | 
118 | 
0 | 
0 | 
| T16 | 
0 | 
12 | 
0 | 
0 | 
| T17 | 
0 | 
70 | 
0 | 
0 | 
| T20 | 
1473 | 
0 | 
0 | 
0 | 
| T21 | 
1922 | 
18 | 
0 | 
0 | 
| T22 | 
179002 | 
0 | 
0 | 
0 | 
| T23 | 
95417 | 
6 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
386976888 | 
649920 | 
0 | 
0 | 
| T2 | 
10675 | 
64 | 
0 | 
0 | 
| T3 | 
2553 | 
18 | 
0 | 
0 | 
| T7 | 
2265 | 
2 | 
0 | 
0 | 
| T13 | 
1325 | 
1 | 
0 | 
0 | 
| T14 | 
55235 | 
79 | 
0 | 
0 | 
| T15 | 
96557 | 
118 | 
0 | 
0 | 
| T16 | 
0 | 
12 | 
0 | 
0 | 
| T17 | 
0 | 
70 | 
0 | 
0 | 
| T20 | 
1473 | 
0 | 
0 | 
0 | 
| T21 | 
1922 | 
18 | 
0 | 
0 | 
| T22 | 
179002 | 
0 | 
0 | 
0 | 
| T23 | 
95417 | 
6 | 
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:       T79 T80 T12 
47         1/1                out_o.err <= '0;
           Tests:       T79 T80 T12 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T15 T16 T27 
50         1/1                out_o.err <= '0;
           Tests:       T15 T16 T27 
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 T20 T14 
53         1/1                out_o.part <= part_i;
           Tests:       T2 T20 T14 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T2 T20 T14 
55         1/1                out_o.attr <= Wip;
           Tests:       T2 T20 T14 
56         1/1                out_o.err <= '0;
           Tests:       T2 T20 T14 
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 T20 T14 
59         1/1                out_o.attr <= Valid;
           Tests:       T2 T20 T14 
60         1/1                out_o.err <= err_i;
           Tests:       T2 T20 T14 
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,T20,T14 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T79,T80,T81 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T2,T20,T14 | 
 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 | T15,T16,T27 | 
 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,T20,T14 | 
 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,T20,T14 | 
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 | 
T79,T80,T12 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T15,T16,T27 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T2,T20,T14 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T2,T20,T14 | 
| 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 | 
386976888 | 
623372 | 
0 | 
0 | 
| T2 | 
10675 | 
45 | 
0 | 
0 | 
| T3 | 
2553 | 
0 | 
0 | 
0 | 
| T7 | 
2265 | 
0 | 
0 | 
0 | 
| T13 | 
1325 | 
0 | 
0 | 
0 | 
| T14 | 
55235 | 
40 | 
0 | 
0 | 
| T15 | 
96557 | 
172 | 
0 | 
0 | 
| T16 | 
0 | 
8 | 
0 | 
0 | 
| T17 | 
0 | 
76 | 
0 | 
0 | 
| T20 | 
1473 | 
19 | 
0 | 
0 | 
| T21 | 
1922 | 
0 | 
0 | 
0 | 
| T22 | 
179002 | 
0 | 
0 | 
0 | 
| T23 | 
95417 | 
5 | 
0 | 
0 | 
| T27 | 
0 | 
9 | 
0 | 
0 | 
| T43 | 
0 | 
2207 | 
0 | 
0 | 
| T65 | 
0 | 
2456 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
386976888 | 
623371 | 
0 | 
0 | 
| T2 | 
10675 | 
45 | 
0 | 
0 | 
| T3 | 
2553 | 
0 | 
0 | 
0 | 
| T7 | 
2265 | 
0 | 
0 | 
0 | 
| T13 | 
1325 | 
0 | 
0 | 
0 | 
| T14 | 
55235 | 
40 | 
0 | 
0 | 
| T15 | 
96557 | 
172 | 
0 | 
0 | 
| T16 | 
0 | 
8 | 
0 | 
0 | 
| T17 | 
0 | 
76 | 
0 | 
0 | 
| T20 | 
1473 | 
19 | 
0 | 
0 | 
| T21 | 
1922 | 
0 | 
0 | 
0 | 
| T22 | 
179002 | 
0 | 
0 | 
0 | 
| T23 | 
95417 | 
5 | 
0 | 
0 | 
| T27 | 
0 | 
9 | 
0 | 
0 | 
| T43 | 
0 | 
2207 | 
0 | 
0 | 
| T65 | 
0 | 
2456 | 
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:       T79 T80 T12 
47         1/1                out_o.err <= '0;
           Tests:       T79 T80 T12 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T15 T16 T84 
50         1/1                out_o.err <= '0;
           Tests:       T15 T16 T84 
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 T20 T14 
53         1/1                out_o.part <= part_i;
           Tests:       T2 T20 T14 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T2 T20 T14 
55         1/1                out_o.attr <= Wip;
           Tests:       T2 T20 T14 
56         1/1                out_o.err <= '0;
           Tests:       T2 T20 T14 
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 T20 T14 
59         1/1                out_o.attr <= Valid;
           Tests:       T2 T20 T14 
60         1/1                out_o.err <= err_i;
           Tests:       T2 T20 T14 
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,T20,T14 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T79,T80,T81 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T2,T20,T14 | 
 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 | T15,T16,T84 | 
 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,T20,T14 | 
 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,T20,T14 | 
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 | 
T79,T80,T12 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T15,T16,T84 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T2,T20,T14 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T2,T20,T14 | 
| 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 | 
386976888 | 
623293 | 
0 | 
0 | 
| T2 | 
10675 | 
45 | 
0 | 
0 | 
| T3 | 
2553 | 
0 | 
0 | 
0 | 
| T7 | 
2265 | 
0 | 
0 | 
0 | 
| T13 | 
1325 | 
0 | 
0 | 
0 | 
| T14 | 
55235 | 
40 | 
0 | 
0 | 
| T15 | 
96557 | 
172 | 
0 | 
0 | 
| T16 | 
0 | 
7 | 
0 | 
0 | 
| T17 | 
0 | 
76 | 
0 | 
0 | 
| T20 | 
1473 | 
19 | 
0 | 
0 | 
| T21 | 
1922 | 
0 | 
0 | 
0 | 
| T22 | 
179002 | 
0 | 
0 | 
0 | 
| T23 | 
95417 | 
4 | 
0 | 
0 | 
| T27 | 
0 | 
7 | 
0 | 
0 | 
| T43 | 
0 | 
2207 | 
0 | 
0 | 
| T65 | 
0 | 
2452 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
386976888 | 
623292 | 
0 | 
0 | 
| T2 | 
10675 | 
45 | 
0 | 
0 | 
| T3 | 
2553 | 
0 | 
0 | 
0 | 
| T7 | 
2265 | 
0 | 
0 | 
0 | 
| T13 | 
1325 | 
0 | 
0 | 
0 | 
| T14 | 
55235 | 
40 | 
0 | 
0 | 
| T15 | 
96557 | 
172 | 
0 | 
0 | 
| T16 | 
0 | 
7 | 
0 | 
0 | 
| T17 | 
0 | 
76 | 
0 | 
0 | 
| T20 | 
1473 | 
19 | 
0 | 
0 | 
| T21 | 
1922 | 
0 | 
0 | 
0 | 
| T22 | 
179002 | 
0 | 
0 | 
0 | 
| T23 | 
95417 | 
4 | 
0 | 
0 | 
| T27 | 
0 | 
7 | 
0 | 
0 | 
| T43 | 
0 | 
2207 | 
0 | 
0 | 
| T65 | 
0 | 
2452 | 
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:       T79 T80 T12 
47         1/1                out_o.err <= '0;
           Tests:       T79 T80 T12 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T15 T16 T84 
50         1/1                out_o.err <= '0;
           Tests:       T15 T16 T84 
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 T20 T14 
53         1/1                out_o.part <= part_i;
           Tests:       T2 T20 T14 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T2 T20 T14 
55         1/1                out_o.attr <= Wip;
           Tests:       T2 T20 T14 
56         1/1                out_o.err <= '0;
           Tests:       T2 T20 T14 
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 T20 T14 
59         1/1                out_o.attr <= Valid;
           Tests:       T2 T20 T14 
60         1/1                out_o.err <= err_i;
           Tests:       T2 T20 T14 
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,T20,T14 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T79,T80,T81 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T2,T20,T14 | 
 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 | T15,T16,T84 | 
 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,T20,T14 | 
 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,T20,T14 | 
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 | 
T79,T80,T12 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T15,T16,T84 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T2,T20,T14 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T2,T20,T14 | 
| 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 | 
386976888 | 
623172 | 
0 | 
0 | 
| T2 | 
10675 | 
44 | 
0 | 
0 | 
| T3 | 
2553 | 
0 | 
0 | 
0 | 
| T7 | 
2265 | 
0 | 
0 | 
0 | 
| T13 | 
1325 | 
0 | 
0 | 
0 | 
| T14 | 
55235 | 
40 | 
0 | 
0 | 
| T15 | 
96557 | 
171 | 
0 | 
0 | 
| T16 | 
0 | 
8 | 
0 | 
0 | 
| T17 | 
0 | 
75 | 
0 | 
0 | 
| T20 | 
1473 | 
18 | 
0 | 
0 | 
| T21 | 
1922 | 
0 | 
0 | 
0 | 
| T22 | 
179002 | 
0 | 
0 | 
0 | 
| T23 | 
95417 | 
4 | 
0 | 
0 | 
| T27 | 
0 | 
7 | 
0 | 
0 | 
| T43 | 
0 | 
2200 | 
0 | 
0 | 
| T65 | 
0 | 
2463 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
386976888 | 
623171 | 
0 | 
0 | 
| T2 | 
10675 | 
44 | 
0 | 
0 | 
| T3 | 
2553 | 
0 | 
0 | 
0 | 
| T7 | 
2265 | 
0 | 
0 | 
0 | 
| T13 | 
1325 | 
0 | 
0 | 
0 | 
| T14 | 
55235 | 
40 | 
0 | 
0 | 
| T15 | 
96557 | 
171 | 
0 | 
0 | 
| T16 | 
0 | 
8 | 
0 | 
0 | 
| T17 | 
0 | 
75 | 
0 | 
0 | 
| T20 | 
1473 | 
18 | 
0 | 
0 | 
| T21 | 
1922 | 
0 | 
0 | 
0 | 
| T22 | 
179002 | 
0 | 
0 | 
0 | 
| T23 | 
95417 | 
4 | 
0 | 
0 | 
| T27 | 
0 | 
7 | 
0 | 
0 | 
| T43 | 
0 | 
2200 | 
0 | 
0 | 
| T65 | 
0 | 
2463 | 
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:       T79 T80 T12 
47         1/1                out_o.err <= '0;
           Tests:       T79 T80 T12 
48         1/1              end else if (wipe_i && en_i) begin
           Tests:       T1 T2 T3 
49         1/1                out_o.attr <= Invalid;
           Tests:       T15 T16 T84 
50         1/1                out_o.err <= '0;
           Tests:       T15 T16 T84 
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 T20 T14 
53         1/1                out_o.part <= part_i;
           Tests:       T2 T20 T14 
54         1/1                out_o.info_sel <= info_sel_i;
           Tests:       T2 T20 T14 
55         1/1                out_o.attr <= Wip;
           Tests:       T2 T20 T14 
56         1/1                out_o.err <= '0;
           Tests:       T2 T20 T14 
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 T20 T14 
59         1/1                out_o.attr <= Valid;
           Tests:       T2 T20 T14 
60         1/1                out_o.err <= err_i;
           Tests:       T2 T20 T14 
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,T20,T14 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T79,T80,T81 | 
 LINE       45
 SUB-EXPRESSION (out_o.attr != Invalid)
                -----------1-----------
| -1- | Status | Tests | 
| 0 | Covered | T1,T2,T3 | 
| 1 | Covered | T2,T20,T14 | 
 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 | T15,T16,T84 | 
 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,T20,T14 | 
 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,T20,T14 | 
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 | 
T79,T80,T12 | 
| 0 | 
0 | 
1 | 
- | 
- | 
Covered | 
T15,T16,T84 | 
| 0 | 
0 | 
0 | 
1 | 
- | 
Covered | 
T2,T20,T14 | 
| 0 | 
0 | 
0 | 
0 | 
1 | 
Covered | 
T2,T20,T14 | 
| 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 | 
386976888 | 
622486 | 
0 | 
0 | 
| T2 | 
10675 | 
44 | 
0 | 
0 | 
| T3 | 
2553 | 
0 | 
0 | 
0 | 
| T7 | 
2265 | 
0 | 
0 | 
0 | 
| T13 | 
1325 | 
0 | 
0 | 
0 | 
| T14 | 
55235 | 
40 | 
0 | 
0 | 
| T15 | 
96557 | 
159 | 
0 | 
0 | 
| T16 | 
0 | 
8 | 
0 | 
0 | 
| T17 | 
0 | 
75 | 
0 | 
0 | 
| T20 | 
1473 | 
18 | 
0 | 
0 | 
| T21 | 
1922 | 
0 | 
0 | 
0 | 
| T22 | 
179002 | 
0 | 
0 | 
0 | 
| T23 | 
95417 | 
4 | 
0 | 
0 | 
| T27 | 
0 | 
7 | 
0 | 
0 | 
| T43 | 
0 | 
2211 | 
0 | 
0 | 
| T65 | 
0 | 
2453 | 
0 | 
0 | 
UpdateCheck_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
386976888 | 
622484 | 
0 | 
0 | 
| T2 | 
10675 | 
44 | 
0 | 
0 | 
| T3 | 
2553 | 
0 | 
0 | 
0 | 
| T7 | 
2265 | 
0 | 
0 | 
0 | 
| T13 | 
1325 | 
0 | 
0 | 
0 | 
| T14 | 
55235 | 
40 | 
0 | 
0 | 
| T15 | 
96557 | 
159 | 
0 | 
0 | 
| T16 | 
0 | 
8 | 
0 | 
0 | 
| T17 | 
0 | 
75 | 
0 | 
0 | 
| T20 | 
1473 | 
18 | 
0 | 
0 | 
| T21 | 
1922 | 
0 | 
0 | 
0 | 
| T22 | 
179002 | 
0 | 
0 | 
0 | 
| T23 | 
95417 | 
4 | 
0 | 
0 | 
| T27 | 
0 | 
7 | 
0 | 
0 | 
| T43 | 
0 | 
2211 | 
0 | 
0 | 
| T65 | 
0 | 
2453 | 
0 | 
0 |