| Nested Instances | Statement | Branch | Toggle | Expression | FSM state | Functional | Average |
|---|---|---|---|---|---|---|---|
| I_DFF_ENA_REG | 100.0 % (3/3) | 100.0 % (4/4) | 100.0 % (8/8) | 100.0 % (2/2) | N.A. | N.A. | 100.0 % (17/17) |
| I_DFF_FIXED_STUFF_REG | 100.0 % (4/4) | 100.0 % (6/6) | 100.0 % (10/10) | 100.0 % (4/4) | N.A. | N.A. | 100.0 % (24/24) |
| I_DFF_DESTUFFED_FLAG_REG | 100.0 % (3/3) | 100.0 % (4/4) | 100.0 % (8/8) | 100.0 % (2/2) | N.A. | N.A. | 100.0 % (17/17) |
| I_DFF_ERR_REG | 100.0 % (3/3) | 100.0 % (4/4) | 100.0 % (8/8) | 100.0 % (2/2) | N.A. | N.A. | 100.0 % (17/17) |
| I_DFF_PREV_VAL_REG | 100.0 % (3/3) | 100.0 % (4/4) | 100.0 % (8/8) | 100.0 % (2/2) | N.A. | N.A. | 100.0 % (17/17) |
| I_DFF_DATA_OUT_VAL_REG | 100.0 % (4/4) | 100.0 % (6/6) | 100.0 % (10/10) | 100.0 % (4/4) | N.A. | N.A. | 100.0 % (24/24) |
| Current Instance | Statement | Branch | Toggle | Expression | FSM state | Functional | Average |
|---|---|---|---|---|---|---|---|
| CTU_CAN_FD_TB.TB_TOP_CTU_CAN_FD.I_DUT.I_MAC_TOP.I_MAC_BIT_DESTUFFING | 100.0 % (53/53) | 100.0 % (48/48) | 100.0 % (88/88) | 100.0 % (107/107) | N.A. | N.A. | 100.0 % (296/296) |
| Statement | Branch | Toggle | Expression | FSM state | Functional |
|---|
208: non_fix_to_fix_chng <= '1' when (fixed_stuff = '1' and fixed_prev_q = '0')
209: else
210: '0'; 208: non_fix_to_fix_chng <= '1' when (fixed_stuff = '1' and fixed_prev_q = '0') 210: '0'; 222: stuff_lvl_reached <= '1' when (same_bits_q = "101")
223: else
224: '0'; 222: stuff_lvl_reached <= '1' when (same_bits_q = "101") 224: '0'; 231: discard_stuff_bit <= '1' when (non_fix_to_fix_chng = '1' or stuff_lvl_reached = '1')
232: else
233: '0'; 231: discard_stuff_bit <= '1' when (non_fix_to_fix_chng = '1' or stuff_lvl_reached = '1') 233: '0'; 240: fixed_prev_d <= '0' when (enable_prev = '0') else
241: fixed_stuff when (bds_trigger = '1') else
242: fixed_prev_q; 240: fixed_prev_d <= '0' when (enable_prev = '0') else 241: fixed_stuff when (bds_trigger = '1') else 242: fixed_prev_q; 250: stuff_rule_violate <= '1' when (discard_stuff_bit = '1' and prev_val_q = data_in and
251: destuff_enable = '1')
252: else
253: '0'; 250: stuff_rule_violate <= '1' when (discard_stuff_bit = '1' and prev_val_q = data_in and 253: '0'; 276: dst_ctr_add <= (dst_ctr_q + 1) mod 8; 284: dst_ctr_d <= "000" when (enable_prev = '0')
285: else
286: dst_ctr_add when (bds_trigger = '1' and stuff_lvl_reached = '1' and
287: fixed_stuff = '0')
288: else
289: dst_ctr_q; 284: dst_ctr_d <= "000" when (enable_prev = '0') 286: dst_ctr_add when (bds_trigger = '1' and stuff_lvl_reached = '1' and 289: dst_ctr_q; 296: if (rst_n = '0') then
297: dst_ctr_q <= (others => '0');
...
301: end if;
302: end if; 297: dst_ctr_q <= (others => '0'); 299: if (destuff_enable = '1') then
300: dst_ctr_q <= dst_ctr_d;
301: end if; 300: dst_ctr_q <= dst_ctr_d; 311: same_bits_erase <= '1' when (destuff_enable = '0' or enable_prev = '0') else
312: '1' when (bds_trigger = '1' and discard_stuff_bit = '1') else
313: '1' when (bds_trigger = '1' and data_in /= prev_val_q and
314: fixed_stuff = '0') else
315: '0'; 311: same_bits_erase <= '1' when (destuff_enable = '0' or enable_prev = '0') else 312: '1' when (bds_trigger = '1' and discard_stuff_bit = '1') else 313: '1' when (bds_trigger = '1' and data_in /= prev_val_q and 315: '0'; 320: same_bits_add <= (same_bits_q + 1) mod 8; 328: same_bits_d <= "001" when (same_bits_erase = '1') else
329: same_bits_add when (bds_trigger = '1') else
330: same_bits_q; 328: same_bits_d <= "001" when (same_bits_erase = '1') else 329: same_bits_add when (bds_trigger = '1') else 330: same_bits_q; 337: if (rst_n = '0') then
338: same_bits_q <= "001";
339: elsif (rising_edge(clk_sys)) then
340: same_bits_q <= same_bits_d;
341: end if; 338: same_bits_q <= "001"; 340: same_bits_q <= same_bits_d; 351: destuffed_d <= '0' when (destuff_enable = '0') else
352: '1' when (bds_trigger = '1' and discard_stuff_bit = '1') else
353: '0' when (bds_trigger = '1') else
354: destuffed_q; 351: destuffed_d <= '0' when (destuff_enable = '0') else 352: '1' when (bds_trigger = '1' and discard_stuff_bit = '1') else 353: '0' when (bds_trigger = '1') else 354: destuffed_q; 377: stuff_err_d <= '1' when (bds_trigger = '1' and stuff_rule_violate = '1') else
378: '0'; 377: stuff_err_d <= '1' when (bds_trigger = '1' and stuff_rule_violate = '1') else 378: '0'; 401: prev_val_d <= RECESSIVE when (bds_trigger = '1' and non_fix_to_fix_chng = '1') else
402: data_in when (bds_trigger = '1') else
403: prev_val_q; 401: prev_val_d <= RECESSIVE when (bds_trigger = '1' and non_fix_to_fix_chng = '1') else 402: data_in when (bds_trigger = '1') else 403: prev_val_q; 444: destuffed <= destuffed_q; 445: stuff_err <= stuff_err_q; 446: dst_ctr <= std_logic_vector(dst_ctr_q); 208: non_fix_to_fix_chng <= '1' when (fixed_stuff = '1' and fixed_prev_q = '0') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 13027 | 1 |
| Bin | False | 43883 | 1 |
222: stuff_lvl_reached <= '1' when (same_bits_q = "101") | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 1011160 | 1 |
| Bin | False | 5467749 | 1 |
231: discard_stuff_bit <= '1' when (non_fix_to_fix_chng = '1' or stuff_lvl_reached = '1') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 1024187 | 1 |
| Bin | False | 1026056 | 1 |
240: fixed_prev_d <= '0' when (enable_prev = '0') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 15871775 | 1 |
| Bin | False | 30017768 | 1 |
241: fixed_stuff when (bds_trigger = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 14977962 | 1 |
| Bin | False | 15039806 | 1 |
250: stuff_rule_violate <= '1' when (discard_stuff_bit = '1' and prev_val_q = data_in and
251: destuff_enable = '1') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 2020330 | 1 |
| Bin | False | 5753706 | 1 |
284: dst_ctr_d <= "000" when (enable_prev = '0') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 15883498 | 1 |
| Bin | False | 33007495 | 1 |
286: dst_ctr_add when (bds_trigger = '1' and stuff_lvl_reached = '1' and
287: fixed_stuff = '0') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 3783297 | 1 |
| Bin | False | 29224198 | 1 |
296: if (rst_n = '0') then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 2422674 | 1 |
| Bin | False | 1094358647 | 1 |
298: elsif (rising_edge(clk_sys)) then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 547174334 | 1 |
| Bin | False | 547184313 | 1 |
299: if (destuff_enable = '1') then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 306009541 | 1 |
| Bin | False | 241164793 | 1 |
311: same_bits_erase <= '1' when (destuff_enable = '0' or enable_prev = '0') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 16255976 | 1 |
| Bin | False | 37378683 | 1 |
312: '1' when (bds_trigger = '1' and discard_stuff_bit = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 4052237 | 1 |
| Bin | False | 33326446 | 1 |
313: '1' when (bds_trigger = '1' and data_in /= prev_val_q and
314: fixed_stuff = '0') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 2144791 | 1 |
| Bin | False | 31181655 | 1 |
328: same_bits_d <= "001" when (same_bits_erase = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 25295031 | 1 |
| Bin | False | 41341925 | 1 |
329: same_bits_add when (bds_trigger = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 26328403 | 1 |
| Bin | False | 15013522 | 1 |
337: if (rst_n = '0') then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 2422674 | 1 |
| Bin | False | 1094358647 | 1 |
339: elsif (rising_edge(clk_sys)) then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 547174334 | 1 |
| Bin | False | 547184313 | 1 |
351: destuffed_d <= '0' when (destuff_enable = '0') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 15892929 | 1 |
| Bin | False | 34035495 | 1 |
352: '1' when (bds_trigger = '1' and discard_stuff_bit = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 4077607 | 1 |
| Bin | False | 29957888 | 1 |
353: '0' when (bds_trigger = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 14932431 | 1 |
| Bin | False | 15025457 | 1 |
377: stuff_err_d <= '1' when (bds_trigger = '1' and stuff_rule_violate = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 1591661 | 1 |
| Bin | False | 45699988 | 1 |
401: prev_val_d <= RECESSIVE when (bds_trigger = '1' and non_fix_to_fix_chng = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 34086 | 1 |
| Bin | False | 51329547 | 1 |
402: data_in when (bds_trigger = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 25633161 | 1 |
| Bin | False | 25696386 | 1 |
CLK_SYS| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
RST_N| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
DATA_IN| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
BDS_TRIGGER| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
DESTUFF_ENABLE| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
FIXED_STUFF| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
DATA_OUT| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 1399537 | 1 |
| Bin | 1 | 0 | 1397936 | 1 |
STUFF_ERR| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 20507 | 1 |
| Bin | 1 | 0 | 22108 | 1 |
DESTUFFED| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 1022144 | 1 |
| Bin | 1 | 0 | 1023745 | 1 |
DST_CTR| Element | From | To | Count | Threshold | |
|---|---|---|---|---|---|
| Bin | (2) | 0 | 1 | 117167 | 1 |
| Bin | (2) | 1 | 0 | 118766 | 1 |
| Bin | (1) | 0 | 1 | 243244 | 1 |
| Bin | (1) | 1 | 0 | 244841 | 1 |
| Bin | (0) | 0 | 1 | 487033 | 1 |
| Bin | (0) | 1 | 0 | 488629 | 1 |
DISCARD_STUFF_BIT| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 1022854 | 1 |
| Bin | 1 | 0 | 1024455 | 1 |
NON_FIX_TO_FIX_CHNG| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 13027 | 1 |
| Bin | 1 | 0 | 14628 | 1 |
STUFF_LVL_REACHED| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 1011160 | 1 |
| Bin | 1 | 0 | 1012761 | 1 |
STUFF_RULE_VIOLATE| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 2020330 | 1 |
| Bin | 1 | 0 | 2021931 | 1 |
ENABLE_PREV| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 55951 | 1 |
| Bin | 1 | 0 | 57552 | 1 |
FIXED_PREV_Q| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 13027 | 1 |
| Bin | 1 | 0 | 14627 | 1 |
FIXED_PREV_D| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 38006 | 1 |
| Bin | 1 | 0 | 39607 | 1 |
SAME_BITS_D| Element | From | To | Count | Threshold | |
|---|---|---|---|---|---|
| Bin | (2) | 0 | 1 | 5805252 | 1 |
| Bin | (2) | 1 | 0 | 5806853 | 1 |
| Bin | (1) | 0 | 1 | 12329279 | 1 |
| Bin | (1) | 1 | 0 | 12330880 | 1 |
| Bin | (0) | 0 | 1 | 18757988 | 1 |
| Bin | (0) | 1 | 0 | 18756387 | 1 |
SAME_BITS_Q| Element | From | To | Count | Threshold | |
|---|---|---|---|---|---|
| Bin | (2) | 0 | 1 | 1103207 | 1 |
| Bin | (2) | 1 | 0 | 1104808 | 1 |
| Bin | (1) | 0 | 1 | 1553403 | 1 |
| Bin | (1) | 1 | 0 | 1555004 | 1 |
| Bin | (0) | 0 | 1 | 2658211 | 1 |
| Bin | (0) | 1 | 0 | 2656610 | 1 |
SAME_BITS_ADD| Element | From | To | Count | Threshold | |
|---|---|---|---|---|---|
| Bin | (2) | 0 | 1 | 1254534 | 1 |
| Bin | (2) | 1 | 0 | 1256135 | 1 |
| Bin | (1) | 0 | 1 | 1256135 | 1 |
| Bin | (1) | 1 | 0 | 1254534 | 1 |
| Bin | (0) | 0 | 1 | 2656610 | 1 |
| Bin | (0) | 1 | 0 | 2658211 | 1 |
SAME_BITS_ERASE| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 5257754 | 1 |
| Bin | 1 | 0 | 5257754 | 1 |
DESTUFFED_Q| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 1022144 | 1 |
| Bin | 1 | 0 | 1023745 | 1 |
DESTUFFED_D| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 5079226 | 1 |
| Bin | 1 | 0 | 5080827 | 1 |
STUFF_ERR_Q| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 20507 | 1 |
| Bin | 1 | 0 | 22108 | 1 |
STUFF_ERR_D| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 1591661 | 1 |
| Bin | 1 | 0 | 1593262 | 1 |
DST_CTR_Q| Element | From | To | Count | Threshold | |
|---|---|---|---|---|---|
| Bin | (2) | 0 | 1 | 117167 | 1 |
| Bin | (2) | 1 | 0 | 118766 | 1 |
| Bin | (1) | 0 | 1 | 243244 | 1 |
| Bin | (1) | 1 | 0 | 244841 | 1 |
| Bin | (0) | 0 | 1 | 487033 | 1 |
| Bin | (0) | 1 | 0 | 488629 | 1 |
DST_CTR_D| Element | From | To | Count | Threshold | |
|---|---|---|---|---|---|
| Bin | (2) | 0 | 1 | 547564 | 1 |
| Bin | (2) | 1 | 0 | 549165 | 1 |
| Bin | (1) | 0 | 1 | 1160658 | 1 |
| Bin | (1) | 1 | 0 | 1162259 | 1 |
| Bin | (0) | 0 | 1 | 2379634 | 1 |
| Bin | (0) | 1 | 0 | 2381235 | 1 |
DST_CTR_ADD| Element | From | To | Count | Threshold | |
|---|---|---|---|---|---|
| Bin | (2) | 0 | 1 | 126687 | 1 |
| Bin | (2) | 1 | 0 | 128286 | 1 |
| Bin | (1) | 0 | 1 | 259516 | 1 |
| Bin | (1) | 1 | 0 | 261108 | 1 |
| Bin | (0) | 0 | 1 | 488629 | 1 |
| Bin | (0) | 1 | 0 | 487033 | 1 |
PREV_VAL_Q| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 1398038 | 1 |
| Bin | 1 | 0 | 1396437 | 1 |
PREV_VAL_D| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 2574597 | 1 |
| Bin | 1 | 0 | 2572996 | 1 |
fixed_stuff = '1' and fixed_prev_q = '0'
<------LHS------> <------RHS-------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 14627 | 1 |
| Bin | True | False | 13027 | 1 |
| Bin | True | True | 13027 | 1 |
fixed_stuff = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 30856 | 1 |
| Bin | True | 26054 | 1 |
fixed_prev_q = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 29256 | 1 |
| Bin | True | 27654 | 1 |
non_fix_to_fix_chng = '1' or stuff_lvl_reached = '1'
<----------LHS----------> <---------RHS---------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 1026056 | 1 |
| Bin | False | True | 1011160 | 1 |
| Bin | True | False | 11694 | 1 |
non_fix_to_fix_chng = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 2037216 | 1 |
| Bin | True | 13027 | 1 |
stuff_lvl_reached = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 1037750 | 1 |
| Bin | True | 1012493 | 1 |
enable_prev = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 30017768 | 1 |
| Bin | True | 15871775 | 1 |
bds_trigger = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 15039806 | 1 |
| Bin | True | 14977962 | 1 |
discard_stuff_bit = '1' and prev_val_q = data_in and destuff_enable = '1'
<---------------------LHS----------------------> <-------RHS--------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 5420499 | 1 |
| Bin | True | False | 710 | 1 |
| Bin | True | True | 2020330 | 1 |
discard_stuff_bit = '1' and prev_val_q = data_in
<---------LHS---------> <-------RHS--------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 2941076 | 1 |
| Bin | True | False | 1002600 | 1 |
| Bin | True | True | 2021040 | 1 |
discard_stuff_bit = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 4750396 | 1 |
| Bin | True | 3023640 | 1 |
prev_val_q = data_in | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 2811920 | 1 |
| Bin | True | 4962116 | 1 |
destuff_enable = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 333207 | 1 |
| Bin | True | 7440829 | 1 |
enable_prev = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 33007495 | 1 |
| Bin | True | 15883498 | 1 |
bds_trigger = '1' and stuff_lvl_reached = '1' and fixed_stuff = '0'
<--------------------LHS--------------------> <------RHS------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 27697385 | 1 |
| Bin | True | False | 194126 | 1 |
| Bin | True | True | 3783297 | 1 |
bds_trigger = '1' and stuff_lvl_reached = '1'
<------LHS------> <---------RHS---------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 2023111 | 1 |
| Bin | True | False | 13942533 | 1 |
| Bin | True | True | 3977423 | 1 |
bds_trigger = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 15087539 | 1 |
| Bin | True | 17919956 | 1 |
stuff_lvl_reached = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 27006961 | 1 |
| Bin | True | 6000534 | 1 |
fixed_stuff = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 1526813 | 1 |
| Bin | True | 31480682 | 1 |
rst_n = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 1094358647 | 1 |
| Bin | True | 2422674 | 1 |
destuff_enable = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 241164793 | 1 |
| Bin | True | 306009541 | 1 |
destuff_enable = '0' or enable_prev = '0'
<-------LHS--------> <------RHS------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 37378683 | 1 |
| Bin | False | True | 55975 | 1 |
| Bin | True | False | 57098 | 1 |
destuff_enable = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 37434658 | 1 |
| Bin | True | 16200001 | 1 |
enable_prev = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 37435781 | 1 |
| Bin | True | 16198878 | 1 |
bds_trigger = '1' and discard_stuff_bit = '1'
<------LHS------> <---------RHS---------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 3049666 | 1 |
| Bin | True | False | 15598461 | 1 |
| Bin | True | True | 4052237 | 1 |
bds_trigger = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 17727985 | 1 |
| Bin | True | 19650698 | 1 |
discard_stuff_bit = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 30276780 | 1 |
| Bin | True | 7101903 | 1 |
bds_trigger = '1' and data_in /= prev_val_q and fixed_stuff = '0'
<-------------------LHS-------------------> <------RHS------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 29500350 | 1 |
| Bin | True | False | 207856 | 1 |
| Bin | True | True | 2144791 | 1 |
bds_trigger = '1' and data_in /= prev_val_q
<------LHS------> <--------RHS--------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 3802188 | 1 |
| Bin | True | False | 13245814 | 1 |
| Bin | True | True | 2352647 | 1 |
bds_trigger = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 17727985 | 1 |
| Bin | True | 15598461 | 1 |
data_in /= prev_val_q | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 27171611 | 1 |
| Bin | True | 6154835 | 1 |
fixed_stuff = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 1681305 | 1 |
| Bin | True | 31645141 | 1 |
same_bits_erase = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 41341925 | 1 |
| Bin | True | 25295031 | 1 |
bds_trigger = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 15013522 | 1 |
| Bin | True | 26328403 | 1 |
rst_n = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 1094358647 | 1 |
| Bin | True | 2422674 | 1 |
destuff_enable = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 34035495 | 1 |
| Bin | True | 15892929 | 1 |
bds_trigger = '1' and discard_stuff_bit = '1'
<------LHS------> <---------RHS---------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 2045013 | 1 |
| Bin | True | False | 14932431 | 1 |
| Bin | True | True | 4077607 | 1 |
bds_trigger = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 15025457 | 1 |
| Bin | True | 19010038 | 1 |
discard_stuff_bit = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 27912875 | 1 |
| Bin | True | 6122620 | 1 |
bds_trigger = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 15025457 | 1 |
| Bin | True | 14932431 | 1 |
bds_trigger = '1' and stuff_rule_violate = '1'
<------LHS------> <---------RHS----------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 1598012 | 1 |
| Bin | True | False | 22265252 | 1 |
| Bin | True | True | 1591661 | 1 |
bds_trigger = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 23434736 | 1 |
| Bin | True | 23856913 | 1 |
stuff_rule_violate = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 44101976 | 1 |
| Bin | True | 3189673 | 1 |
bds_trigger = '1' and non_fix_to_fix_chng = '1'
<------LHS------> <----------RHS----------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 38980 | 1 |
| Bin | True | False | 25633161 | 1 |
| Bin | True | True | 34086 | 1 |
bds_trigger = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 25696386 | 1 |
| Bin | True | 25667247 | 1 |
non_fix_to_fix_chng = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 51290567 | 1 |
| Bin | True | 73066 | 1 |
bds_trigger = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 25696386 | 1 |
| Bin | True | 25633161 | 1 |