| Current Instance | Statement | Branch | Toggle | Expression | FSM state | Functional | Average |
|---|---|---|---|---|---|---|---|
| CTU_CAN_FD_TB.TB_TOP_CTU_CAN_FD.I_DUT.I_BTL_TOP.I_BTL_SEGMENT_METER_NBT | 100.0 % (66/66) | 100.0 % (48/48) | 100.0 % (96/96) | 100.0 % (161/161) | N.A. | N.A. | 100.0 % (371/371) |
| Statement | Branch | Toggle | Expression | FSM state | Functional |
|---|
273: if (a > b) then
274: return a;
275: else
276: return b;
277: end if; 274: return a; 276: return b; 351: sel_tseg1 <= '1' when (h_sync_valid = '1' or start_edge = '1' or shorten_tseg1_after_tseg2 = '1') or
352: (segm_end = '1' and is_tseg2 = '1') or
353: (segm_end = '0' and is_tseg1 = '1') else
354: '0'; 351: sel_tseg1 <= '1' when (h_sync_valid = '1' or start_edge = '1' or shorten_tseg1_after_tseg2 = '1') or 354: '0'; 356: basic_segm_length <=
357: resize(unsigned(tseg_1), C_BS_WIDTH) when (sel_tseg1 = '1') else
358: resize(unsigned(tseg_2), C_BS_WIDTH); 357: resize(unsigned(tseg_1), C_BS_WIDTH) when (sel_tseg1 = '1') else 358: resize(unsigned(tseg_2), C_BS_WIDTH); 360: segm_extension <=
361: to_unsigned(1, C_EXT_WIDTH) when (h_sync_valid = '1' or
362: shorten_tseg1_after_tseg2 = '1') else
363: resize(unsigned(sjw), C_EXT_WIDTH) when (phase_err_mt_sjw = '1') else
364: resize(unsigned(segm_counter), C_EXT_WIDTH); 361: to_unsigned(1, C_EXT_WIDTH) when (h_sync_valid = '1' or 363: resize(unsigned(sjw), C_EXT_WIDTH) when (phase_err_mt_sjw = '1') else 364: resize(unsigned(segm_counter), C_EXT_WIDTH); 366: segm_ext_add <= resize(basic_segm_length, C_EXP_WIDTH) +
367: resize(segm_extension, C_EXP_WIDTH); 369: segm_ext_sub <= resize(basic_segm_length, C_EXP_WIDTH) -
370: resize(segm_extension, C_EXP_WIDTH); 372: sync_segm_length <= segm_ext_sub when (is_tseg2 = '1' or h_sync_valid = '1' or
373: exit_ph2_immediate = '1')
374: else
375: segm_ext_add; 372: sync_segm_length <= segm_ext_sub when (is_tseg2 = '1' or h_sync_valid = '1' or 375: segm_ext_add; 384: use_basic_segm_length <= '1' when (start_edge = '1') or
385: (segm_end = '1' and h_sync_valid = '0' and
386: shorten_tseg1_after_tseg2 = '0')
387: else
388: '0'; 384: use_basic_segm_length <= '1' when (start_edge = '1') or 388: '0'; 395: exp_seg_length_d <=
396: resize(basic_segm_length, C_EXP_WIDTH) when (use_basic_segm_length = '1')
397: else
398: resize(sync_segm_length, C_EXP_WIDTH); 396: resize(basic_segm_length, C_EXP_WIDTH) when (use_basic_segm_length = '1') 398: resize(sync_segm_length, C_EXP_WIDTH); 400: exp_seg_length_ce <= '1' when (segm_end = '1' or resync_edge_valid = '1' or
401: h_sync_valid = '1' or start_edge = '1')
402: else
403: '0'; 400: exp_seg_length_ce <= '1' when (segm_end = '1' or resync_edge_valid = '1' or 403: '0'; 407: if (rst_n = '0') then
408: exp_seg_length_q <= (others => '1');
...
412: end if;
413: end if; 408: exp_seg_length_q <= (others => '1'); 410: if (exp_seg_length_ce = '1') then
411: exp_seg_length_q <= exp_seg_length_d;
412: end if; 411: exp_seg_length_q <= exp_seg_length_d; 425: neg_phase_err <= resize(unsigned(tseg_2), C_E_WIDTH) -
426: resize(unsigned(segm_counter), C_E_WIDTH); 428: phase_err <= resize(neg_phase_err, C_E_WIDTH) when (is_tseg2 = '1') else
429: resize(unsigned(segm_counter), C_E_WIDTH); 428: phase_err <= resize(neg_phase_err, C_E_WIDTH) when (is_tseg2 = '1') else 429: resize(unsigned(segm_counter), C_E_WIDTH); 431: phase_err_mt_sjw <= '1' when (resize(phase_err, C_E_SJW_WIDTH) >
432: resize(unsigned(sjw), C_E_SJW_WIDTH))
433: else
434: '0'; 431: phase_err_mt_sjw <= '1' when (resize(phase_err, C_E_SJW_WIDTH) > 434: '0'; 436: phase_err_eq_sjw <= '1' when (resize(phase_err, C_E_SJW_WIDTH) =
437: resize(unsigned(sjw), C_E_SJW_WIDTH))
438: else
439: '0'; 436: phase_err_eq_sjw <= '1' when (resize(phase_err, C_E_SJW_WIDTH) = 439: '0'; 441: phase_err_sjw_by_one <= '1' when (resize(phase_err, C_E_SJW_WIDTH) =
442: (resize(unsigned(sjw), C_E_SJW_WIDTH) +
443: to_unsigned(1, C_E_SJW_WIDTH)))
444: else
445: '0'; 441: phase_err_sjw_by_one <= '1' when (resize(phase_err, C_E_SJW_WIDTH) = 445: '0'; 447: sjw_mt_zero <= '1' when (unsigned(sjw) > 0) else
448: '0'; 447: sjw_mt_zero <= '1' when (unsigned(sjw) > 0) else 448: '0'; 458: exit_ph2_immediate <= '1' when ((phase_err_mt_sjw = '0' or phase_err_sjw_by_one = '1') and
459: is_tseg2 = '1' and resync_edge_valid = '1')
460: else
461: '0'; 458: exit_ph2_immediate <= '1' when ((phase_err_mt_sjw = '0' or phase_err_sjw_by_one = '1') and 461: '0'; 468: shorten_tseg1_after_tseg2 <= '1' when (exit_ph2_immediate = '1' and phase_err_sjw_by_one = '0')
469: else
470: '0'; 468: shorten_tseg1_after_tseg2 <= '1' when (exit_ph2_immediate = '1' and phase_err_sjw_by_one = '0') 470: '0'; 475: exit_segm_regular <= '1' when (resize(unsigned(segm_counter), C_EXP_WIDTH) >=
476: resize(unsigned(exp_seg_length_q) - 1, C_EXP_WIDTH))
477: else
478: '0'; 475: exit_segm_regular <= '1' when (resize(unsigned(segm_counter), C_EXP_WIDTH) >= 478: '0'; 486: exit_segm_regular_tseg1 <= '0' when (is_tseg1 = '1' and resync_edge_valid = '1' and
487: sjw_mt_zero = '1')
488: else
489: '1' when (is_tseg1 = '1' and exit_segm_regular = '1')
490: else
491: '0'; 486: exit_segm_regular_tseg1 <= '0' when (is_tseg1 = '1' and resync_edge_valid = '1' and 489: '1' when (is_tseg1 = '1' and exit_segm_regular = '1') 491: '0'; 496: exit_segm_regular_tseg2 <= '1' when (is_tseg2 = '1' and exit_segm_regular = '1')
497: else
498: '0'; 496: exit_segm_regular_tseg2 <= '1' when (is_tseg2 = '1' and exit_segm_regular = '1') 498: '0'; 507: exit_segm_req <= '1' when (exit_ph2_immediate = '1') or
508: (exit_segm_regular_tseg1 = '1' or exit_segm_regular_tseg2 = '1')
509: else
510: '0'; 507: exit_segm_req <= '1' when (exit_ph2_immediate = '1') or 510: '0'; 273: if (a > b) then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 6404 | 1 |
| Bin | False | 1601 | 1 |
351: sel_tseg1 <= '1' when (h_sync_valid = '1' or start_edge = '1' or shorten_tseg1_after_tseg2 = '1') or
352: (segm_end = '1' and is_tseg2 = '1') or
353: (segm_end = '0' and is_tseg1 = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 34415564 | 1 |
| Bin | False | 34292292 | 1 |
357: resize(unsigned(tseg_1), C_BS_WIDTH) when (sel_tseg1 = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 34290383 | 1 |
| Bin | False | 34307038 | 1 |
361: to_unsigned(1, C_EXT_WIDTH) when (h_sync_valid = '1' or
362: shorten_tseg1_after_tseg2 = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 104004 | 1 |
| Bin | False | 342750811 | 1 |
363: resize(unsigned(sjw), C_EXT_WIDTH) when (phase_err_mt_sjw = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 207168086 | 1 |
| Bin | False | 135582725 | 1 |
372: sync_segm_length <= segm_ext_sub when (is_tseg2 = '1' or h_sync_valid = '1' or
373: exit_ph2_immediate = '1') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 101224433 | 1 |
| Bin | False | 135197914 | 1 |
384: use_basic_segm_length <= '1' when (start_edge = '1') or
385: (segm_end = '1' and h_sync_valid = '0' and
386: shorten_tseg1_after_tseg2 = '0') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 22861592 | 1 |
| Bin | False | 22993563 | 1 |
396: resize(basic_segm_length, C_EXP_WIDTH) when (use_basic_segm_length = '1') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 151305944 | 1 |
| Bin | False | 195223515 | 1 |
400: exp_seg_length_ce <= '1' when (segm_end = '1' or resync_edge_valid = '1' or
401: h_sync_valid = '1' or start_edge = '1') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 24237640 | 1 |
| Bin | False | 23209227 | 1 |
407: if (rst_n = '0') then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 2422674 | 1 |
| Bin | False | 1094358647 | 1 |
409: elsif (rising_edge(clk_sys)) then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 547174334 | 1 |
| Bin | False | 547184313 | 1 |
410: if (exp_seg_length_ce = '1') then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 23602497 | 1 |
| Bin | False | 523571837 | 1 |
428: phase_err <= resize(neg_phase_err, C_E_WIDTH) when (is_tseg2 = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 199072650 | 1 |
| Bin | False | 440493497 | 1 |
431: phase_err_mt_sjw <= '1' when (resize(phase_err, C_E_SJW_WIDTH) >
432: resize(unsigned(sjw), C_E_SJW_WIDTH)) | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 203597904 | 1 |
| Bin | False | 127581040 | 1 |
436: phase_err_eq_sjw <= '1' when (resize(phase_err, C_E_SJW_WIDTH) =
437: resize(unsigned(sjw), C_E_SJW_WIDTH)) | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 18821595 | 1 |
| Bin | False | 312357349 | 1 |
441: phase_err_sjw_by_one <= '1' when (resize(phase_err, C_E_SJW_WIDTH) =
442: (resize(unsigned(sjw), C_E_SJW_WIDTH) +
443: to_unsigned(1, C_E_SJW_WIDTH))) | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 14053993 | 1 |
| Bin | False | 317124951 | 1 |
447: sjw_mt_zero <= '1' when (unsigned(sjw) > 0) else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 8246 | 1 |
| Bin | False | 1800 | 1 |
458: exit_ph2_immediate <= '1' when ((phase_err_mt_sjw = '0' or phase_err_sjw_by_one = '1') and
459: is_tseg2 = '1' and resync_edge_valid = '1') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 13058 | 1 |
| Bin | False | 59897998 | 1 |
468: shorten_tseg1_after_tseg2 <= '1' when (exit_ph2_immediate = '1' and phase_err_sjw_by_one = '0') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 12711 | 1 |
| Bin | False | 28124540 | 1 |
475: exit_segm_regular <= '1' when (resize(unsigned(segm_counter), C_EXP_WIDTH) >=
476: resize(unsigned(exp_seg_length_q) - 1, C_EXP_WIDTH)) | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 25826808 | 1 |
| Bin | False | 316851135 | 1 |
486: exit_segm_regular_tseg1 <= '0' when (is_tseg1 = '1' and resync_edge_valid = '1' and
487: sjw_mt_zero = '1') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 629109 | 1 |
| Bin | False | 46940829 | 1 |
489: '1' when (is_tseg1 = '1' and exit_segm_regular = '1') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 6713574 | 1 |
| Bin | False | 40227255 | 1 |
496: exit_segm_regular_tseg2 <= '1' when (is_tseg2 = '1' and exit_segm_regular = '1') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 16385011 | 1 |
| Bin | False | 29583281 | 1 |
507: exit_segm_req <= '1' when (exit_ph2_immediate = '1') or
508: (exit_segm_regular_tseg1 = '1' or exit_segm_regular_tseg2 = '1') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 23114927 | 1 |
| Bin | False | 16520713 | 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 |
RESYNC_EDGE_VALID| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
IS_TSEG1| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
IS_TSEG2| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
TSEG_1| Element | From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|---|
| Bin | (7) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (7) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (6) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (6) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (5) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (5) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (4) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (4) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (3) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (3) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (2) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (2) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (1) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (1) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (0) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (0) | 1 | 0 | 0 | 1 | Exclude file |
TSEG_2| Element | From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|---|
| Bin | (5) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (5) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (4) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (4) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (3) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (3) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (2) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (2) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (1) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (1) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (0) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (0) | 1 | 0 | 0 | 1 | Exclude file |
SJW| Element | From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|---|
| Bin | (4) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (4) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (3) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (3) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (2) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (2) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (1) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (1) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (0) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (0) | 1 | 0 | 0 | 1 | Exclude file |
START_EDGE| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
SEGM_COUNTER| Element | From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|---|
| Bin | (7) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (7) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (6) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (6) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (5) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (5) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (4) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (4) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (3) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (3) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (2) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (2) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (1) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (1) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (0) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (0) | 1 | 0 | 0 | 1 | Exclude file |
SEGM_END| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
H_SYNC_VALID| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
EXIT_SEGM_REQ| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 16517513 | 1 |
| Bin | 1 | 0 | 16519112 | 1 |
SEL_TSEG1| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 34286720 | 1 |
| Bin | 1 | 0 | 34288310 | 1 |
EXP_SEG_LENGTH_CE| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 23204426 | 1 |
| Bin | 1 | 0 | 23206025 | 1 |
PHASE_ERR_MT_SJW| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 11471039 | 1 |
| Bin | 1 | 0 | 11472630 | 1 |
PHASE_ERR_EQ_SJW| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 18821595 | 1 |
| Bin | 1 | 0 | 18823196 | 1 |
EXIT_PH2_IMMEDIATE| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 13042 | 1 |
| Bin | 1 | 0 | 14643 | 1 |
EXIT_SEGM_REGULAR| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 16516673 | 1 |
| Bin | 1 | 0 | 16518272 | 1 |
EXIT_SEGM_REGULAR_TSEG1| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 6713570 | 1 |
| Bin | 1 | 0 | 6715171 | 1 |
EXIT_SEGM_REGULAR_TSEG2| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 16385011 | 1 |
| Bin | 1 | 0 | 16386610 | 1 |
SJW_MT_ZERO| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 1791 | 1 |
| Bin | 1 | 0 | 1800 | 1 |
USE_BASIC_SEGM_LENGTH| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 22861592 | 1 |
| Bin | 1 | 0 | 22863191 | 1 |
PHASE_ERR_SJW_BY_ONE| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 14053993 | 1 |
| Bin | 1 | 0 | 14055589 | 1 |
SHORTEN_TSEG1_AFTER_TSEG2| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 12711 | 1 |
| Bin | 1 | 0 | 14312 | 1 |
a > b | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 1601 | 1 |
| Bin | True | 6404 | 1 |
(h_sync_valid = '1' or start_edge = '1' or shorten_tseg1_after_tseg2 = '1') or (segm_end = '1' and is_tseg2 = '1') or (segm_end = '0' and is_tseg1 = '1')
<------------------------------------------------------LHS-------------------------------------------------------> <--------------RHS--------------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 34292292 | 1 |
| Bin | False | True | 11478163 | 1 |
| Bin | True | False | 22886584 | 1 |
(h_sync_valid = '1' or start_edge = '1' or shorten_tseg1_after_tseg2 = '1') or (segm_end = '1' and is_tseg2 = '1')
<----------------------------------LHS----------------------------------> <--------------RHS--------------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 45770455 | 1 |
| Bin | False | True | 22829212 | 1 |
| Bin | True | False | 91253 | 1 |
h_sync_valid = '1' or start_edge = '1' or shorten_tseg1_after_tseg2 = '1'
<----------------LHS-----------------> <-------------RHS-------------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 68599667 | 1 |
| Bin | False | True | 22637 | 1 |
| Bin | True | False | 85552 | 1 |
h_sync_valid = '1' or start_edge = '1'
<------LHS-------> <-----RHS------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 68622304 | 1 |
| Bin | False | True | 6482 | 1 |
| Bin | True | False | 79070 | 1 |
h_sync_valid = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 68628786 | 1 |
| Bin | True | 79070 | 1 |
start_edge = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 68701374 | 1 |
| Bin | True | 6482 | 1 |
shorten_tseg1_after_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 68685219 | 1 |
| Bin | True | 22637 | 1 |
segm_end = '1' and is_tseg2 = '1'
<----LHS-----> <----RHS-----> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 11437298 | 1 |
| Bin | True | False | 22884156 | 1 |
| Bin | True | True | 22846148 | 1 |
segm_end = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 22977552 | 1 |
| Bin | True | 45730304 | 1 |
is_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 34424410 | 1 |
| Bin | True | 34283446 | 1 |
segm_end = '0' and is_tseg1 = '1'
<----LHS-----> <----RHS-----> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 22885044 | 1 |
| Bin | True | False | 11445370 | 1 |
| Bin | True | True | 11528980 | 1 |
segm_end = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 45733506 | 1 |
| Bin | True | 22974350 | 1 |
is_tseg1 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 34293832 | 1 |
| Bin | True | 34414024 | 1 |
sel_tseg1 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 34307038 | 1 |
| Bin | True | 34290383 | 1 |
h_sync_valid = '1' or shorten_tseg1_after_tseg2 = '1'
<------LHS-------> <-------------RHS-------------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 342750811 | 1 |
| Bin | False | True | 21981 | 1 |
| Bin | True | False | 82023 | 1 |
h_sync_valid = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 342772792 | 1 |
| Bin | True | 82023 | 1 |
shorten_tseg1_after_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 342832834 | 1 |
| Bin | True | 21981 | 1 |
phase_err_mt_sjw = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 135582725 | 1 |
| Bin | True | 207168086 | 1 |
is_tseg2 = '1' or h_sync_valid = '1' or exit_ph2_immediate = '1'
<---------------LHS----------------> <---------RHS----------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 135197914 | 1 |
| Bin | False | True | 9566 | 1 |
| Bin | True | False | 101179655 | 1 |
is_tseg2 = '1' or h_sync_valid = '1'
<----LHS-----> <------RHS-------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 135207480 | 1 |
| Bin | False | True | 103135 | 1 |
| Bin | True | False | 101088904 | 1 |
is_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 135310615 | 1 |
| Bin | True | 101111732 | 1 |
h_sync_valid = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 236296384 | 1 |
| Bin | True | 125963 | 1 |
exit_ph2_immediate = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 236377569 | 1 |
| Bin | True | 44778 | 1 |
(start_edge = '1') or (segm_end = '1' and h_sync_valid = '0' and shorten_tseg1_after_tseg2 = '0')
<-----LHS------> <----------------------------------RHS----------------------------------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 22993563 | 1 |
| Bin | False | True | 22855110 | 1 |
| Bin | True | False | 6482 | 1 |
start_edge = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 45848673 | 1 |
| Bin | True | 6482 | 1 |
segm_end = '1' and h_sync_valid = '0' and shorten_tseg1_after_tseg2 = '0'
<----------------LHS----------------> <-------------RHS-------------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 22985130 | 1 |
| Bin | True | False | 9331 | 1 |
| Bin | True | True | 22855110 | 1 |
segm_end = '1' and h_sync_valid = '0'
<----LHS-----> <------RHS-------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 22915925 | 1 |
| Bin | True | False | 20521 | 1 |
| Bin | True | True | 22864441 | 1 |
segm_end = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 22970193 | 1 |
| Bin | True | 22884962 | 1 |
h_sync_valid = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 74789 | 1 |
| Bin | True | 45780366 | 1 |
shorten_tseg1_after_tseg2 = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 14915 | 1 |
| Bin | True | 45840240 | 1 |
use_basic_segm_length = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 195223515 | 1 |
| Bin | True | 151305944 | 1 |
segm_end = '1' or resync_edge_valid = '1' or h_sync_valid = '1' or start_edge = '1'
<-----------------------------LHS-----------------------------> <-----RHS------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 23209227 | 1 |
| Bin | False | True | 6482 | 1 |
| Bin | True | False | 24231158 | 1 |
segm_end = '1' or resync_edge_valid = '1' or h_sync_valid = '1'
<------------------LHS------------------> <------RHS-------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 23215709 | 1 |
| Bin | False | True | 51066 | 1 |
| Bin | True | False | 24159571 | 1 |
segm_end = '1' or resync_edge_valid = '1'
<----LHS-----> <---------RHS---------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 23266775 | 1 |
| Bin | False | True | 733321 | 1 |
| Bin | True | False | 22946513 | 1 |
segm_end = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 24000096 | 1 |
| Bin | True | 23446771 | 1 |
resync_edge_valid = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 46213288 | 1 |
| Bin | True | 1233579 | 1 |
h_sync_valid = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 47375280 | 1 |
| Bin | True | 71587 | 1 |
start_edge = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 47440385 | 1 |
| Bin | True | 6482 | 1 |
rst_n = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 1094358647 | 1 |
| Bin | True | 2422674 | 1 |
exp_seg_length_ce = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 523571837 | 1 |
| Bin | True | 23602497 | 1 |
is_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 440493497 | 1 |
| Bin | True | 199072650 | 1 |
(phase_err_mt_sjw = '0' or phase_err_sjw_by_one = '1') and is_tseg2 = '1' and resync_edge_valid = '1'
<----------------------------------LHS----------------------------------> <---------RHS---------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 791249 | 1 |
| Bin | True | False | 20448592 | 1 |
| Bin | True | True | 13058 | 1 |
(phase_err_mt_sjw = '0' or phase_err_sjw_by_one = '1') and is_tseg2 = '1'
<-----------------------LHS------------------------> <----RHS-----> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 9997973 | 1 |
| Bin | True | False | 23212978 | 1 |
| Bin | True | True | 20461650 | 1 |
phase_err_mt_sjw = '0' or phase_err_sjw_by_one = '1'
<--------LHS---------> <----------RHS-----------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 16236428 | 1 |
| Bin | False | True | 19745819 | 1 |
| Bin | True | False | 23928809 | 1 |
phase_err_mt_sjw = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 35982247 | 1 |
| Bin | True | 23928809 | 1 |
phase_err_sjw_by_one = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 40165237 | 1 |
| Bin | True | 19745819 | 1 |
is_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 29451433 | 1 |
| Bin | True | 30459623 | 1 |
resync_edge_valid = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 59106749 | 1 |
| Bin | True | 804307 | 1 |
exit_ph2_immediate = '1' and phase_err_sjw_by_one = '0'
<---------LHS----------> <----------RHS-----------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 14068284 | 1 |
| Bin | True | False | 331 | 1 |
| Bin | True | True | 12711 | 1 |
exit_ph2_immediate = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 28124209 | 1 |
| Bin | True | 13042 | 1 |
phase_err_sjw_by_one = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 14056256 | 1 |
| Bin | True | 14080995 | 1 |
is_tseg1 = '1' and resync_edge_valid = '1' and sjw_mt_zero = '1'
<------------------LHS-------------------> <------RHS------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 40697609 | 1 |
| Bin | True | False | 155059 | 1 |
| Bin | True | True | 629109 | 1 |
is_tseg1 = '1' and resync_edge_valid = '1'
<----LHS-----> <---------RHS---------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 20035 | 1 |
| Bin | True | False | 18942108 | 1 |
| Bin | True | True | 784168 | 1 |
is_tseg1 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 27843662 | 1 |
| Bin | True | 19726276 | 1 |
resync_edge_valid = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 46765735 | 1 |
| Bin | True | 804203 | 1 |
sjw_mt_zero = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 6243220 | 1 |
| Bin | True | 41326718 | 1 |
is_tseg1 = '1' and exit_segm_regular = '1'
<----LHS-----> <---------RHS---------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 16400539 | 1 |
| Bin | True | False | 12383593 | 1 |
| Bin | True | True | 6713574 | 1 |
is_tseg1 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 27843662 | 1 |
| Bin | True | 19097167 | 1 |
exit_segm_regular = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 23826716 | 1 |
| Bin | True | 23114113 | 1 |
is_tseg2 = '1' and exit_segm_regular = '1'
<----LHS-----> <---------RHS---------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 6713660 | 1 |
| Bin | True | False | 11423696 | 1 |
| Bin | True | True | 16385011 | 1 |
is_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 18159585 | 1 |
| Bin | True | 27808707 | 1 |
exit_segm_regular = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 22869621 | 1 |
| Bin | True | 23098671 | 1 |
(exit_ph2_immediate = '1') or (exit_segm_regular_tseg1 = '1' or exit_segm_regular_tseg2 = '1')
<---------LHS----------> <----------------------------RHS-----------------------------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 16520713 | 1 |
| Bin | False | True | 23101885 | 1 |
| Bin | True | False | 924 | 1 |
exit_ph2_immediate = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 39622598 | 1 |
| Bin | True | 13042 | 1 |
exit_segm_regular_tseg1 = '1' or exit_segm_regular_tseg2 = '1'
<------------LHS------------> <------------RHS------------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 16521637 | 1 |
| Bin | False | True | 16400433 | 1 |
| Bin | True | False | 6713570 | 1 |
exit_segm_regular_tseg1 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 32922070 | 1 |
| Bin | True | 6713570 | 1 |
exit_segm_regular_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 23235207 | 1 |
| Bin | True | 16400433 | 1 |