Module Definition
dashboard | hierarchy | modlist | groups | tests | asserts

Module : uart_tx
SCORELINECONDTOGGLEFSMBRANCHASSERT
100.00 100.00 100.00 100.00

Source File(s) :
/workspaces/repo/scratch/os_regression_2024_10_08/uart-sim-vcs/default/sim-vcs/../src/lowrisc_ip_uart_0.1/rtl/uart_tx.sv

Module self-instances :
NAMESCORELINECONDTOGGLEFSMBRANCHASSERT
tb.dut.uart_core.uart_tx 100.00 100.00 100.00 100.00



Module Instance : tb.dut.uart_core.uart_tx

Instance :
SCORELINECONDTOGGLEFSMBRANCHASSERT
100.00 100.00 100.00 100.00


Instance's subtree :
SCORELINECONDTOGGLEFSMBRANCHASSERT
100.00 100.00 100.00 100.00


Parent :
SCORELINECONDTOGGLEFSMBRANCHASSERTNAME
98.98 98.94 99.04 97.96 100.00 uart_core


Subtrees :
NAMESCORELINECONDTOGGLEFSMBRANCHASSERT
no children


Since this is the module's only instance, the coverage report is the same as for the module.
Line Coverage for Module : uart_tx
Line No.TotalCoveredPercent
TOTAL2929100.00
CONT_ASSIGN3211100.00
ALWAYS3566100.00
ALWAYS4677100.00
ALWAYS581414100.00
CONT_ASSIGN7711100.00

31 32 1/1 assign tx = tx_q; Tests: T1 T2 T3  33 34 always_ff @(posedge clk_i or negedge rst_ni) begin 35 1/1 if (!rst_ni) begin Tests: T1 T2 T3  36 1/1 baud_div_q <= 4'h0; Tests: T1 T2 T3  37 1/1 tick_baud_q <= 1'b0; Tests: T1 T2 T3  38 1/1 end else if (tick_baud_x16) begin Tests: T1 T2 T3  39 1/1 {tick_baud_q, baud_div_q} <= {1'b0,baud_div_q} + 5'h1; Tests: T1 T2 T3  40 end else begin 41 1/1 tick_baud_q <= 1'b0; Tests: T1 T2 T3  42 end 43 end 44 45 always_ff @(posedge clk_i or negedge rst_ni) begin 46 1/1 if (!rst_ni) begin Tests: T1 T2 T3  47 1/1 bit_cnt_q <= 4'h0; Tests: T1 T2 T3  48 1/1 sreg_q <= 11'h7ff; Tests: T1 T2 T3  49 1/1 tx_q <= 1'b1; Tests: T1 T2 T3  50 end else begin 51 1/1 bit_cnt_q <= bit_cnt_d; Tests: T1 T2 T3  52 1/1 sreg_q <= sreg_d; Tests: T1 T2 T3  53 1/1 tx_q <= tx_d; Tests: T1 T2 T3  54 end 55 end 56 57 always_comb begin 58 1/1 if (!tx_enable) begin Tests: T1 T2 T3  59 1/1 bit_cnt_d = 4'h0; Tests: T1 T2 T3  60 1/1 sreg_d = 11'h7ff; Tests: T1 T2 T3  61 1/1 tx_d = 1'b1; Tests: T1 T2 T3  62 end else begin 63 1/1 bit_cnt_d = bit_cnt_q; Tests: T1 T2 T3  64 1/1 sreg_d = sreg_q; Tests: T1 T2 T3  65 1/1 tx_d = tx_q; Tests: T1 T2 T3  66 1/1 if (wr) begin Tests: T1 T2 T3  67 1/1 sreg_d = {1'b1, (parity_enable ? wr_parity : 1'b1), wr_data, 1'b0}; Tests: T1 T2 T3  68 1/1 bit_cnt_d = (parity_enable ? 4'd11 : 4'd10); Tests: T1 T2 T3  69 1/1 end else if (tick_baud_q && (bit_cnt_q != 4'h0)) begin Tests: T1 T2 T3  70 1/1 sreg_d = {1'b1, sreg_q[10:1]}; Tests: T1 T2 T3  71 1/1 tx_d = sreg_q[0]; Tests: T1 T2 T3  72 1/1 bit_cnt_d = bit_cnt_q - 4'h1; Tests: T1 T2 T3  73 end MISSING_ELSE 74 end 75 end 76 77 1/1 assign idle = (tx_enable) ? (bit_cnt_q == 4'h0) : 1'b1; Tests: T1 T2 T3 

Cond Coverage for Module : uart_tx
TotalCoveredPercent
Conditions1313100.00
Logical1313100.00
Non-Logical00
Event00

 LINE       67
 SUB-EXPRESSION (parity_enable ? wr_parity : 1'b1)
                 ------1------
-1-StatusTests
0CoveredT1,T3,T5
1CoveredT1,T2,T3

 LINE       68
 EXPRESSION (parity_enable ? 4'd11 : 4'd10)
             ------1------
-1-StatusTests
0CoveredT1,T3,T5
1CoveredT1,T2,T3

 LINE       69
 EXPRESSION (tick_baud_q && (bit_cnt_q != 4'b0))
             -----1-----    ---------2---------
-1--2-StatusTests
01CoveredT1,T2,T3
10CoveredT1,T2,T3
11CoveredT1,T2,T3

 LINE       69
 SUB-EXPRESSION (bit_cnt_q != 4'b0)
                ---------1---------
-1-StatusTests
0CoveredT1,T2,T3
1CoveredT1,T2,T3

 LINE       77
 EXPRESSION (tx_enable ? (bit_cnt_q == 4'b0) : 1'b1)
             ----1----
-1-StatusTests
0CoveredT1,T2,T3
1CoveredT1,T2,T3

 LINE       77
 SUB-EXPRESSION (bit_cnt_q == 4'b0)
                ---------1---------
-1-StatusTests
0CoveredT1,T2,T3
1CoveredT1,T2,T3

Branch Coverage for Module : uart_tx
Line No.TotalCoveredPercent
Branches 12 12 100.00
TERNARY 77 2 2 100.00
IF 35 3 3 100.00
IF 46 2 2 100.00
IF 58 5 5 100.00


77 assign idle = (tx_enable) ? (bit_cnt_q == 4'h0) : 1'b1; -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T1,T2,T3
0 Covered T1,T2,T3


35 if (!rst_ni) begin -1- 36 baud_div_q <= 4'h0; ==> 37 tick_baud_q <= 1'b0; 38 end else if (tick_baud_x16) begin -2- 39 {tick_baud_q, baud_div_q} <= {1'b0,baud_div_q} + 5'h1; ==> 40 end else begin 41 tick_baud_q <= 1'b0; ==>

Branches:
-1--2-StatusTests
1 - Covered T1,T2,T3
0 1 Covered T1,T2,T3
0 0 Covered T1,T2,T3


46 if (!rst_ni) begin -1- 47 bit_cnt_q <= 4'h0; ==> 48 sreg_q <= 11'h7ff; 49 tx_q <= 1'b1; 50 end else begin 51 bit_cnt_q <= bit_cnt_d; ==>

Branches:
-1-StatusTests
1 Covered T1,T2,T3
0 Covered T1,T2,T3


58 if (!tx_enable) begin -1- 59 bit_cnt_d = 4'h0; ==> 60 sreg_d = 11'h7ff; 61 tx_d = 1'b1; 62 end else begin 63 bit_cnt_d = bit_cnt_q; 64 sreg_d = sreg_q; 65 tx_d = tx_q; 66 if (wr) begin -2- 67 sreg_d = {1'b1, (parity_enable ? wr_parity : 1'b1), wr_data, 1'b0}; 68 bit_cnt_d = (parity_enable ? 4'd11 : 4'd10); -3- ==> ==> 69 end else if (tick_baud_q && (bit_cnt_q != 4'h0)) begin -4- 70 sreg_d = {1'b1, sreg_q[10:1]}; ==> 71 tx_d = sreg_q[0]; 72 bit_cnt_d = bit_cnt_q - 4'h1; 73 end MISSING_ELSE ==>

Branches:
-1--2--3--4-StatusTests
1 - - - Covered T1,T2,T3
0 1 1 - Covered T1,T2,T3
0 1 0 - Covered T1,T3,T5
0 0 - 1 Covered T1,T2,T3
0 0 - 0 Covered T1,T2,T3

0% 10% 20% 30% 40% 50% 60% 70% 80% 90% 100%