HomeSort by: relevance | last modified time | path
    Searched defs:case_high (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
tree-vrp.cc 813 if (CASE_HIGH (t) != NULL
814 && tree_int_cst_compare (CASE_HIGH (t), val) >= 0)
862 if (CASE_HIGH (gimple_switch_label (stmt, i)))
863 high = CASE_HIGH (gimple_switch_label (stmt, i));
873 if (CASE_HIGH (gimple_switch_label (stmt, k)))
874 high = CASE_HIGH (gimple_switch_label (stmt, k));
905 tree case_high local
906 = CASE_HIGH (label) ? CASE_HIGH (label) : CASE_LOW (label);
908 wide_int whigh = wi::to_wide (case_high);
930 tree case_high = CASE_HIGH (max_label); local
    [all...]
vr-values.cc 489 tree case_low, case_high; local
518 case_high = CASE_HIGH (gimple_switch_label (stmt, j));
521 if (case_high != NULL_TREE
522 && tree_int_cst_compare (max, case_high) < 0)
1395 && CASE_HIGH (min_label) != NULL_TREE
1396 && tree_int_cst_compare (CASE_HIGH (min_label), vr_min) >= 0)
1402 && CASE_HIGH (max_label) != NULL_TREE
1403 && tree_int_cst_compare (CASE_HIGH (max_label), vr_max) > 0)
1404 CASE_HIGH (max_label) = vr_max
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
tree-vrp.cc 2375 if (CASE_HIGH (t) != NULL
2376 && tree_int_cst_compare (CASE_HIGH (t), val) >= 0)
2424 if (CASE_HIGH (gimple_switch_label (stmt, i)))
2425 high = CASE_HIGH (gimple_switch_label (stmt, i));
2435 if (CASE_HIGH (gimple_switch_label (stmt, k)))
2436 high = CASE_HIGH (gimple_switch_label (stmt, k));
2468 tree case_high local
2469 = CASE_HIGH (label) ? CASE_HIGH (label) : CASE_LOW (label);
2470 int_range_max label_range (CASE_LOW (label), case_high); local
2491 tree case_high = CASE_HIGH (max_label); local
2494 int_range_max label_range (CASE_LOW (min_label), case_high); local
    [all...]
vr-values.cc 2530 tree case_low, case_high; local
2558 case_high = CASE_HIGH (gimple_switch_label (stmt, j));
2561 if (case_high != NULL_TREE
2562 && tree_int_cst_compare (max, case_high) < 0)
3778 && CASE_HIGH (min_label) != NULL_TREE
3779 && tree_int_cst_compare (CASE_HIGH (min_label), vr_min) >= 0)
3785 && CASE_HIGH (max_label) != NULL_TREE
3786 && tree_int_cst_compare (CASE_HIGH (max_label), vr_max) > 0)
3787 CASE_HIGH (max_label) = vr_max
    [all...]

Completed in 33 milliseconds