| Current Instance | Statement | Branch | Toggle | Expression | FSM state | Functional | Average |
|---|---|---|---|---|---|---|---|
| CTU_CAN_FD_TB.TB_TOP_CTU_CAN_FD.DUT.PRESCALER_INST.BIT_SEGMENT_METER_NBT_INST | 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 (res_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 | 34296120 | 1 |
| Bin | False | 34169909 | 1 |
357: resize(unsigned(tseg_1), C_BS_WIDTH) when (sel_tseg1 = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 34167973 | 1 |
| Bin | False | 34184649 | 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 | 105893 | 1 |
| Bin | False | 340477954 | 1 |
363: resize(unsigned(sjw), C_EXT_WIDTH) when (phase_err_mt_sjw = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 205528635 | 1 |
| Bin | False | 134949319 | 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 | 100809610 | 1 |
| Bin | False | 134633792 | 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 | 22779886 | 1 |
| Bin | False | 22915406 | 1 |
396: resize(basic_segm_length, C_EXP_WIDTH) when (use_basic_segm_length = '1') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 150780305 | 1 |
| Bin | False | 194356641 | 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 | 24152305 | 1 |
| Bin | False | 23126615 | 1 |
407: if (res_n = '0') then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 2424883 | 1 |
| Bin | False | 1087593323 | 1 |
409: elsif (rising_edge(clk_sys)) then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 543791678 | 1 |
| Bin | False | 543801645 | 1 |
410: if (exp_seg_length_ce = '1') then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 23517458 | 1 |
| Bin | False | 520274220 | 1 |
428: phase_err <= resize(neg_phase_err, C_E_WIDTH) when (is_tseg2 = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 197866265 | 1 |
| Bin | False | 437240550 | 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 | 201962334 | 1 |
| Bin | False | 126957421 | 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 | 18748721 | 1 |
| Bin | False | 310171034 | 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 | 14000163 | 1 |
| Bin | False | 314919592 | 1 |
447: sjw_mt_zero <= '1' when (unsigned(sjw) > 0) else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 8248 | 1 |
| Bin | False | 1801 | 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 | 13196 | 1 |
| Bin | False | 59716424 | 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 | 12832 | 1 |
| Bin | False | 28017045 | 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 | 25716686 | 1 |
| Bin | False | 314650246 | 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 | 623215 | 1 |
| Bin | False | 46796589 | 1 |
489: '1' when (is_tseg1 = '1' and exit_segm_regular = '1') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 6700930 | 1 |
| Bin | False | 40095659 | 1 |
496: exit_segm_regular_tseg2 <= '1' when (is_tseg2 = '1' and exit_segm_regular = '1') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 16337588 | 1 |
| Bin | False | 29488705 | 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 | 23055314 | 1 |
| Bin | False | 16473794 | 1 |
CLK_SYS| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
RES_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 | 16470592 | 1 |
| Bin | 1 | 0 | 16472193 | 1 |
SEL_TSEG1| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 34164331 | 1 |
| Bin | 1 | 0 | 34165922 | 1 |
EXP_SEG_LENGTH_CE| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 23121812 | 1 |
| Bin | 1 | 0 | 23123413 | 1 |
PHASE_ERR_MT_SJW| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 11448607 | 1 |
| Bin | 1 | 0 | 11450200 | 1 |
PHASE_ERR_EQ_SJW| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 18748721 | 1 |
| Bin | 1 | 0 | 18750320 | 1 |
EXIT_PH2_IMMEDIATE| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 13183 | 1 |
| Bin | 1 | 0 | 14784 | 1 |
EXIT_SEGM_REGULAR| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 16469743 | 1 |
| Bin | 1 | 0 | 16471344 | 1 |
EXIT_SEGM_REGULAR_TSEG1| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 6700928 | 1 |
| Bin | 1 | 0 | 6702529 | 1 |
EXIT_SEGM_REGULAR_TSEG2| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 16337588 | 1 |
| Bin | 1 | 0 | 16339189 | 1 |
SJW_MT_ZERO| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 1793 | 1 |
| Bin | 1 | 0 | 1801 | 1 |
USE_BASIC_SEGM_LENGTH| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 22779886 | 1 |
| Bin | 1 | 0 | 22781487 | 1 |
PHASE_ERR_SJW_BY_ONE| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 14000163 | 1 |
| Bin | 1 | 0 | 14001760 | 1 |
SHORTEN_TSEG1_AFTER_TSEG2| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 12832 | 1 |
| Bin | 1 | 0 | 14433 | 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 | 34169909 | 1 |
| Bin | False | True | 11438127 | 1 |
| Bin | True | False | 22805980 | 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 | 45608036 | 1 |
| Bin | False | True | 22747322 | 1 |
| Bin | True | False | 93783 | 1 |
h_sync_valid = '1' or start_edge = '1' or shorten_tseg1_after_tseg2 = '1'
<----------------LHS-----------------> <-------------RHS-------------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 68355358 | 1 |
| Bin | False | True | 22517 | 1 |
| Bin | True | False | 88154 | 1 |
h_sync_valid = '1' or start_edge = '1'
<------LHS-------> <-----RHS------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 68377875 | 1 |
| Bin | False | True | 6482 | 1 |
| Bin | True | False | 81672 | 1 |
h_sync_valid = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 68384357 | 1 |
| Bin | True | 81672 | 1 |
start_edge = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 68459547 | 1 |
| Bin | True | 6482 | 1 |
shorten_tseg1_after_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 68443512 | 1 |
| Bin | True | 22517 | 1 |
segm_end = '1' and is_tseg2 = '1'
<----LHS-----> <----RHS-----> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 11397091 | 1 |
| Bin | True | False | 22803314 | 1 |
| Bin | True | True | 22764210 | 1 |
segm_end = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 22898505 | 1 |
| Bin | True | 45567524 | 1 |
is_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 34304728 | 1 |
| Bin | True | 34161301 | 1 |
segm_end = '0' and is_tseg1 = '1'
<----LHS-----> <----RHS-----> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 22804196 | 1 |
| Bin | True | False | 11405163 | 1 |
| Bin | True | True | 11490140 | 1 |
segm_end = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 45570726 | 1 |
| Bin | True | 22895303 | 1 |
is_tseg1 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 34171693 | 1 |
| Bin | True | 34294336 | 1 |
sel_tseg1 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 34184649 | 1 |
| Bin | True | 34167973 | 1 |
h_sync_valid = '1' or shorten_tseg1_after_tseg2 = '1'
<------LHS-------> <-------------RHS-------------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 340477954 | 1 |
| Bin | False | True | 21906 | 1 |
| Bin | True | False | 83987 | 1 |
h_sync_valid = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 340499860 | 1 |
| Bin | True | 83987 | 1 |
shorten_tseg1_after_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 340561941 | 1 |
| Bin | True | 21906 | 1 |
phase_err_mt_sjw = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 134949319 | 1 |
| Bin | True | 205528635 | 1 |
is_tseg2 = '1' or h_sync_valid = '1' or exit_ph2_immediate = '1'
<---------------LHS----------------> <---------RHS----------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 134633792 | 1 |
| Bin | False | True | 9384 | 1 |
| Bin | True | False | 100764908 | 1 |
is_tseg2 = '1' or h_sync_valid = '1'
<----LHS-----> <------RHS-------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 134643176 | 1 |
| Bin | False | True | 106559 | 1 |
| Bin | True | False | 100670379 | 1 |
is_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 134749735 | 1 |
| Bin | True | 100693667 | 1 |
h_sync_valid = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 235313555 | 1 |
| Bin | True | 129847 | 1 |
exit_ph2_immediate = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 235398700 | 1 |
| Bin | True | 44702 | 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 | 22915406 | 1 |
| Bin | False | True | 22773404 | 1 |
| Bin | True | False | 6482 | 1 |
start_edge = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 45688810 | 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 | 22906895 | 1 |
| Bin | True | False | 9132 | 1 |
| Bin | True | True | 22773404 | 1 |
segm_end = '1' and h_sync_valid = '0'
<----LHS-----> <------RHS-------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 22835525 | 1 |
| Bin | True | False | 21604 | 1 |
| Bin | True | True | 22782536 | 1 |
segm_end = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 22891152 | 1 |
| Bin | True | 22804140 | 1 |
h_sync_valid = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 77231 | 1 |
| Bin | True | 45618061 | 1 |
shorten_tseg1_after_tseg2 = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 14993 | 1 |
| Bin | True | 45680299 | 1 |
use_basic_segm_length = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 194356641 | 1 |
| Bin | True | 150780305 | 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 | 23126615 | 1 |
| Bin | False | True | 6482 | 1 |
| Bin | True | False | 24145823 | 1 |
segm_end = '1' or resync_edge_valid = '1' or h_sync_valid = '1'
<------------------LHS------------------> <------RHS-------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 23133097 | 1 |
| Bin | False | True | 52425 | 1 |
| Bin | True | False | 24071794 | 1 |
segm_end = '1' or resync_edge_valid = '1'
<----LHS-----> <---------RHS---------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 23185522 | 1 |
| Bin | False | True | 729814 | 1 |
| Bin | True | False | 22865553 | 1 |
segm_end = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 23915336 | 1 |
| Bin | True | 23363584 | 1 |
resync_edge_valid = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 46051075 | 1 |
| Bin | True | 1227845 | 1 |
h_sync_valid = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 47204891 | 1 |
| Bin | True | 74029 | 1 |
start_edge = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 47272438 | 1 |
| Bin | True | 6482 | 1 |
res_n = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 1087593323 | 1 |
| Bin | True | 2424883 | 1 |
exp_seg_length_ce = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 520274220 | 1 |
| Bin | True | 23517458 | 1 |
is_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 437240550 | 1 |
| Bin | True | 197866265 | 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 | 787271 | 1 |
| Bin | True | False | 20371492 | 1 |
| Bin | True | True | 13196 | 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 | 9987613 | 1 |
| Bin | True | False | 23148713 | 1 |
| Bin | True | True | 20384688 | 1 |
phase_err_mt_sjw = '0' or phase_err_sjw_by_one = '1'
<--------LHS---------> <----------RHS-----------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 16196219 | 1 |
| Bin | False | True | 19698737 | 1 |
| Bin | True | False | 23834664 | 1 |
phase_err_mt_sjw = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 35894956 | 1 |
| Bin | True | 23834664 | 1 |
phase_err_sjw_by_one = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 40030883 | 1 |
| Bin | True | 19698737 | 1 |
is_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 29357319 | 1 |
| Bin | True | 30372301 | 1 |
resync_edge_valid = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 58929153 | 1 |
| Bin | True | 800467 | 1 |
exit_ph2_immediate = '1' and phase_err_sjw_by_one = '0'
<---------LHS----------> <----------RHS-----------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 14014579 | 1 |
| Bin | True | False | 351 | 1 |
| Bin | True | True | 12832 | 1 |
exit_ph2_immediate = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 28016694 | 1 |
| Bin | True | 13183 | 1 |
phase_err_sjw_by_one = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 14002466 | 1 |
| Bin | True | 14027411 | 1 |
is_tseg1 = '1' and resync_edge_valid = '1' and sjw_mt_zero = '1'
<------------------LHS-------------------> <------RHS------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 40545825 | 1 |
| Bin | True | False | 156272 | 1 |
| Bin | True | True | 623215 | 1 |
is_tseg1 = '1' and resync_edge_valid = '1'
<----LHS-----> <---------RHS---------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 20874 | 1 |
| Bin | True | False | 18883879 | 1 |
| Bin | True | True | 779487 | 1 |
is_tseg1 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 27756438 | 1 |
| Bin | True | 19663366 | 1 |
resync_edge_valid = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 46619443 | 1 |
| Bin | True | 800361 | 1 |
sjw_mt_zero = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 6250764 | 1 |
| Bin | True | 41169040 | 1 |
is_tseg1 = '1' and exit_segm_regular = '1'
<----LHS-----> <---------RHS---------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 16353563 | 1 |
| Bin | True | False | 12339221 | 1 |
| Bin | True | True | 6700930 | 1 |
is_tseg1 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 27756438 | 1 |
| Bin | True | 19040151 | 1 |
exit_segm_regular = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 23742096 | 1 |
| Bin | True | 23054493 | 1 |
is_tseg2 = '1' and exit_segm_regular = '1'
<----LHS-----> <---------RHS---------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 6701010 | 1 |
| Bin | True | False | 11382739 | 1 |
| Bin | True | True | 16337588 | 1 |
is_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 18105966 | 1 |
| Bin | True | 27720327 | 1 |
exit_segm_regular = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 22787695 | 1 |
| Bin | True | 23038598 | 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 | 16473794 | 1 |
| Bin | False | True | 23042131 | 1 |
| Bin | True | False | 926 | 1 |
exit_ph2_immediate = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 39515925 | 1 |
| Bin | True | 13183 | 1 |
exit_segm_regular_tseg1 = '1' or exit_segm_regular_tseg2 = '1'
<------------LHS------------> <------------RHS------------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 16474720 | 1 |
| Bin | False | True | 16353460 | 1 |
| Bin | True | False | 6700928 | 1 |
exit_segm_regular_tseg1 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 32828180 | 1 |
| Bin | True | 6700928 | 1 |
exit_segm_regular_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 23175648 | 1 |
| Bin | True | 16353460 | 1 |