| 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_DBT_INST | 100.0 % (66/66) | 100.0 % (48/48) | 100.0 % (90/90) | 100.0 % (161/161) | N.A. | N.A. | 100.0 % (365/365) |
| 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 | 34297804 | 1 |
| Bin | False | 34166881 | 1 |
357: resize(unsigned(tseg_1), C_BS_WIDTH) when (sel_tseg1 = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 34164945 | 1 |
| Bin | False | 34181020 | 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 | 71427 | 1 |
| Bin | False | 103379501 | 1 |
363: resize(unsigned(sjw), C_EXT_WIDTH) when (phase_err_mt_sjw = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 59392976 | 1 |
| Bin | False | 43986525 | 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 | 63672896 | 1 |
| Bin | False | 74210440 | 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 | 22779884 | 1 |
| Bin | False | 22914064 | 1 |
396: resize(basic_segm_length, C_EXP_WIDTH) when (use_basic_segm_length = '1') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 130546808 | 1 |
| Bin | False | 106820760 | 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 | 68202743 | 1 |
| Bin | False | 130034641 | 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 | 59311623 | 1 |
| Bin | False | 51129409 | 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 | 13488135 | 1 |
| Bin | False | 96952897 | 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 | 6281443 | 1 |
| Bin | False | 104159589 | 1 |
447: sjw_mt_zero <= '1' when (unsigned(sjw) > 0) else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 3900 | 1 |
| Bin | False | 1838 | 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 | 8215 | 1 |
| Bin | False | 41061595 | 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 | 8014 | 1 |
| Bin | False | 12574476 | 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 | 17260317 | 1 |
| Bin | False | 98272188 | 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 | 623276 | 1 |
| Bin | False | 38721127 | 1 |
489: '1' when (is_tseg1 = '1' and exit_segm_regular = '1') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 5051667 | 1 |
| Bin | False | 33669460 | 1 |
496: exit_segm_regular_tseg2 <= '1' when (is_tseg2 = '1' and exit_segm_regular = '1') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 9938090 | 1 |
| Bin | False | 27809426 | 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 | 14997937 | 1 |
| Bin | False | 9981454 | 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 | (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 | (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 | (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 | 9978252 | 1 |
| Bin | 1 | 0 | 9979853 | 1 |
SEL_TSEG1| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 34161303 | 1 |
| Bin | 1 | 0 | 34162894 | 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 | 5296194 | 1 |
| Bin | 1 | 0 | 5297794 | 1 |
PHASE_ERR_EQ_SJW| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 13488135 | 1 |
| Bin | 1 | 0 | 13489728 | 1 |
EXIT_PH2_IMMEDIATE| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 8206 | 1 |
| Bin | 1 | 0 | 9807 | 1 |
EXIT_SEGM_REGULAR| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 9967316 | 1 |
| Bin | 1 | 0 | 9968917 | 1 |
EXIT_SEGM_REGULAR_TSEG1| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 5051635 | 1 |
| Bin | 1 | 0 | 5053236 | 1 |
EXIT_SEGM_REGULAR_TSEG2| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 9938090 | 1 |
| Bin | 1 | 0 | 9939691 | 1 |
SJW_MT_ZERO| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 1830 | 1 |
| Bin | 1 | 0 | 1838 | 1 |
USE_BASIC_SEGM_LENGTH| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 22779884 | 1 |
| Bin | 1 | 0 | 22781485 | 1 |
PHASE_ERR_SJW_BY_ONE| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 6281443 | 1 |
| Bin | 1 | 0 | 6283043 | 1 |
SHORTEN_TSEG1_AFTER_TSEG2| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 8014 | 1 |
| Bin | 1 | 0 | 9615 | 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 | 34166881 | 1 |
| Bin | False | True | 11438127 | 1 |
| Bin | True | False | 22807664 | 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 | 45605008 | 1 |
| Bin | False | True | 22749142 | 1 |
| Bin | True | False | 95437 | 1 |
h_sync_valid = '1' or start_edge = '1' or shorten_tseg1_after_tseg2 = '1'
<----------------LHS-----------------> <-------------RHS-------------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 68354150 | 1 |
| Bin | False | True | 22381 | 1 |
| Bin | True | False | 88154 | 1 |
h_sync_valid = '1' or start_edge = '1'
<------LHS-------> <-----RHS------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 68376531 | 1 |
| Bin | False | True | 6482 | 1 |
| Bin | True | False | 81672 | 1 |
h_sync_valid = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 68383013 | 1 |
| Bin | True | 81672 | 1 |
start_edge = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 68458203 | 1 |
| Bin | True | 6482 | 1 |
shorten_tseg1_after_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 68442304 | 1 |
| Bin | True | 22381 | 1 |
segm_end = '1' and is_tseg2 = '1'
<----LHS-----> <----RHS-----> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 11397539 | 1 |
| Bin | True | False | 22801492 | 1 |
| Bin | True | True | 22764240 | 1 |
segm_end = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 22898953 | 1 |
| Bin | True | 45565732 | 1 |
is_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 34302906 | 1 |
| Bin | True | 34161779 | 1 |
segm_end = '0' and is_tseg1 = '1'
<----LHS-----> <----RHS-----> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 22802374 | 1 |
| Bin | True | False | 11405611 | 1 |
| Bin | True | True | 11490140 | 1 |
segm_end = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 45568934 | 1 |
| Bin | True | 22895751 | 1 |
is_tseg1 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 34172171 | 1 |
| Bin | True | 34292514 | 1 |
sel_tseg1 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 34181020 | 1 |
| Bin | True | 34164945 | 1 |
h_sync_valid = '1' or shorten_tseg1_after_tseg2 = '1'
<------LHS-------> <-------------RHS-------------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 103379501 | 1 |
| Bin | False | True | 14838 | 1 |
| Bin | True | False | 56589 | 1 |
h_sync_valid = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 103394339 | 1 |
| Bin | True | 56589 | 1 |
shorten_tseg1_after_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 103436090 | 1 |
| Bin | True | 14838 | 1 |
phase_err_mt_sjw = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 43986525 | 1 |
| Bin | True | 59392976 | 1 |
is_tseg2 = '1' or h_sync_valid = '1' or exit_ph2_immediate = '1'
<---------------LHS----------------> <---------RHS----------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 74210440 | 1 |
| Bin | False | True | 7441 | 1 |
| Bin | True | False | 63641527 | 1 |
is_tseg2 = '1' or h_sync_valid = '1'
<----LHS-----> <------RHS-------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 74217881 | 1 |
| Bin | False | True | 110507 | 1 |
| Bin | True | False | 63531885 | 1 |
is_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 74328388 | 1 |
| Bin | True | 63554948 | 1 |
h_sync_valid = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 137749766 | 1 |
| Bin | True | 133570 | 1 |
exit_ph2_immediate = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 137851967 | 1 |
| Bin | True | 31369 | 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 | 22914064 | 1 |
| Bin | False | True | 22773402 | 1 |
| Bin | True | False | 6482 | 1 |
start_edge = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 45687466 | 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 | 22903867 | 1 |
| Bin | True | False | 7342 | 1 |
| Bin | True | True | 22773402 | 1 |
segm_end = '1' and h_sync_valid = '0'
<----LHS-----> <------RHS-------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 22835973 | 1 |
| Bin | True | False | 21604 | 1 |
| Bin | True | True | 22780744 | 1 |
segm_end = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 22891600 | 1 |
| Bin | True | 22802348 | 1 |
h_sync_valid = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 77231 | 1 |
| Bin | True | 45616717 | 1 |
shorten_tseg1_after_tseg2 = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 16679 | 1 |
| Bin | True | 45677269 | 1 |
use_basic_segm_length = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 106820760 | 1 |
| Bin | True | 130546808 | 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 | 130034641 | 1 |
| Bin | True | 68202743 | 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 | 792192 | 1 |
| Bin | True | False | 13010287 | 1 |
| Bin | True | True | 8215 | 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 | 5298051 | 1 |
| Bin | True | False | 17398176 | 1 |
| Bin | True | True | 13018502 | 1 |
phase_err_mt_sjw = '0' or phase_err_sjw_by_one = '1'
<--------LHS---------> <----------RHS-----------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 10653132 | 1 |
| Bin | False | True | 7749297 | 1 |
| Bin | True | False | 22667381 | 1 |
phase_err_mt_sjw = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 18402429 | 1 |
| Bin | True | 22667381 | 1 |
phase_err_sjw_by_one = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 33320513 | 1 |
| Bin | True | 7749297 | 1 |
is_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 22753257 | 1 |
| Bin | True | 18316553 | 1 |
resync_edge_valid = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 40269403 | 1 |
| Bin | True | 800407 | 1 |
exit_ph2_immediate = '1' and phase_err_sjw_by_one = '0'
<---------LHS----------> <----------RHS-----------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 6291048 | 1 |
| Bin | True | False | 192 | 1 |
| Bin | True | True | 8014 | 1 |
exit_ph2_immediate = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 12574284 | 1 |
| Bin | True | 8206 | 1 |
phase_err_sjw_by_one = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 6283428 | 1 |
| Bin | True | 6299062 | 1 |
is_tseg1 = '1' and resync_edge_valid = '1' and sjw_mt_zero = '1'
<------------------LHS-------------------> <------RHS------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 29990437 | 1 |
| Bin | True | False | 156211 | 1 |
| Bin | True | True | 623276 | 1 |
is_tseg1 = '1' and resync_edge_valid = '1'
<----LHS-----> <---------RHS---------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 20874 | 1 |
| Bin | True | False | 17227110 | 1 |
| Bin | True | True | 779487 | 1 |
is_tseg1 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 21337806 | 1 |
| Bin | True | 18006597 | 1 |
resync_edge_valid = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 38544042 | 1 |
| Bin | True | 800361 | 1 |
sjw_mt_zero = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 8730690 | 1 |
| Bin | True | 30613713 | 1 |
is_tseg1 = '1' and exit_segm_regular = '1'
<----LHS-----> <---------RHS---------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 9938298 | 1 |
| Bin | True | False | 12331654 | 1 |
| Bin | True | True | 5051667 | 1 |
is_tseg1 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 21337806 | 1 |
| Bin | True | 17383321 | 1 |
exit_segm_regular = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 23731162 | 1 |
| Bin | True | 14989965 | 1 |
is_tseg2 = '1' and exit_segm_regular = '1'
<----LHS-----> <---------RHS---------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 5048828 | 1 |
| Bin | True | False | 11364168 | 1 |
| Bin | True | True | 9938090 | 1 |
is_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 16445258 | 1 |
| Bin | True | 21302258 | 1 |
exit_segm_regular = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 22760598 | 1 |
| Bin | True | 14986918 | 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 | 9981454 | 1 |
| Bin | False | True | 14989731 | 1 |
| Bin | True | False | 8153 | 1 |
exit_ph2_immediate = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 24971185 | 1 |
| Bin | True | 8206 | 1 |
exit_segm_regular_tseg1 = '1' or exit_segm_regular_tseg2 = '1'
<------------LHS------------> <------------RHS------------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 9989607 | 1 |
| Bin | False | True | 9938149 | 1 |
| Bin | True | False | 5051635 | 1 |
exit_segm_regular_tseg1 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 19927756 | 1 |
| Bin | True | 5051635 | 1 |
exit_segm_regular_tseg2 = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 15041242 | 1 |
| Bin | True | 9938149 | 1 |