Home | History | Annotate | Download | only in gcc

Lines Matching refs:pmin

1029 /* Determine the range [*PMIN, *PMAX] that the expression ARG is
1039 HOST_WIDE_INT *pmin, HOST_WIDE_INT *pmax,
1050 *pmin = tree_to_shwi (TYPE_MIN_VALUE (type));
1059 *pmin = tree_fits_shwi_p (arg) ? tree_to_shwi (arg) : tree_to_uhwi (arg);
1060 *pmax = *pmin;
1095 *pmin = TREE_INT_CST_LOW (tmin);
1098 if (*pmin < *pmax)
1102 be less than *PMIN when the argument is unsigned
1106 knownrange = type_min < *pmin || *pmax < type_max;
1116 return get_int_range (NULL_TREE, NULL, pmin, pmax, absolute,
1123 if (*pmin < 0)
1125 if (*pmin == *pmax)
1126 *pmin = *pmax = -*pmin;
1130 gcc_assert (*pmin != HOST_WIDE_INT_MIN);
1132 HOST_WIDE_INT tmp = -*pmin;
1133 *pmin = 0;
1139 else if (*pmin < negbound)
1140 *pmin = negbound;