Home | History | Annotate | Download | only in gcc

Lines Matching defs:strict_overflow_p

340   bool strict_overflow_p;
348 &strict_overflow_p);
354 &strict_overflow_p);
359 &strict_overflow_p);
1393 Also set *STRICT_OVERFLOW_P to indicate whether comparision evaluation
1399 const value_range_equiv *vr1, bool *strict_overflow_p)
1431 if (compare_values_warnv (vr0->min (), vr1->min (), strict_overflow_p) == 0
1432 && compare_values_warnv (vr0->max (), vr1->max (), strict_overflow_p) == 0)
1450 if (compare_values_warnv (vr0->min (), vr0->max (), strict_overflow_p) == 0
1451 && compare_values_warnv (vr1->min (), vr1->max (), strict_overflow_p) == 0)
1454 strict_overflow_p);
1456 strict_overflow_p);
1464 strict_overflow_p) == 1
1466 strict_overflow_p) == 1)
1480 cmp1 = compare_values_warnv (vr0->max (), vr1->min (), strict_overflow_p);
1481 cmp2 = compare_values_warnv (vr0->min (), vr1->max (), strict_overflow_p);
1488 strict_overflow_p) == 0
1490 strict_overflow_p) == 0
1492 strict_overflow_p) == 0
1494 strict_overflow_p) == 0)
1506 tst = compare_values_warnv (vr0->max (), vr1->min (), strict_overflow_p);
1512 tst = compare_values_warnv (vr0->min (), vr1->max (), strict_overflow_p);
1529 *STRICT_OVERFLOW_P to indicate whether comparision evaluation
1534 tree val, bool *strict_overflow_p)
1561 if (compare_values_warnv (vr->min (), vr->max (), strict_overflow_p) == 0)
1563 int cmp = compare_values_warnv (vr->min (), val, strict_overflow_p);
1569 else if (compare_values_warnv (val, vr->min (), strict_overflow_p) == -1
1570 || compare_values_warnv (vr->max (), val, strict_overflow_p) == -1)
1578 if (compare_values_warnv (vr->max (), val, strict_overflow_p) == -1
1579 || compare_values_warnv (vr->min (), val, strict_overflow_p) == 1)
1584 if (compare_values_warnv (vr->min (), vr->max (), strict_overflow_p) == 0
1585 strict_overflow_p) == 0)
1596 tst = compare_values_warnv (vr->max (), val, strict_overflow_p);
1602 tst = compare_values_warnv (vr->min (), val, strict_overflow_p);
1615 tst = compare_values_warnv (vr->min (), val, strict_overflow_p);
1621 tst = compare_values_warnv (vr->max (), val, strict_overflow_p);
2008 *STRICT_OVERFLOW_P. */
2013 bool *strict_overflow_p, bool use_equiv_p,
2036 *strict_overflow_p = true;
2078 *strict_overflow_p = true;
2087 returned by compare_ranges. Set *STRICT_OVERFLOW_P to indicate
2093 bool *strict_overflow_p, gimple *s)
2191 *strict_overflow_p = true;
2208 (enum tree_code code, tree op0, tree op1, bool * strict_overflow_p,
2217 res = compare_ranges (code, vr0, vr1, strict_overflow_p);
2219 res = compare_range_with_value (code, vr0, op1, strict_overflow_p);
2222 (swap_tree_comparison (code), vr1, op0, strict_overflow_p));
2234 bool *strict_overflow_p,
2313 (code, op0, op1, strict_overflow_p, stmt)))
2320 return compare_names (code, op0, op1, strict_overflow_p, stmt);
2323 strict_overflow_p, use_equiv_p, stmt);
2326 strict_overflow_p, use_equiv_p, stmt);
3344 the conditional, then set *STRICT_OVERFLOW_P to true. */