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

  /src/external/gpl3/gcc/dist/gcc/
builtins.h 72 /* [MINLEN, MAXBOUND, MAXLEN] is a range describing the length of
75 MINLEN == MAXBOUND == MAXLEN holds.
77 string. MAXBOUND is the length of a string that could be stored
81 MINLEN <= MAXBOUND <= MAXLEN holds. For example, given:
96 As the tighter (and more optimistic) bound, MAXBOUND is suitable
102 tree maxbound; member in struct:c_strlen_data
gimple-array-bounds.cc 193 tree maxbound = ptrdiff_max; local
203 maxbound = refsize;
206 if (maxbound == ptrdiff_max)
221 maxbound = size;
227 maxbound = basesize;
232 maxbound = wide_int_to_tree (sizetype,
233 wi::sub (wi::to_wide (maxbound),
238 maxbound = fold_convert (sizetype, maxbound);
240 *up_bound_p1 = int_const_binop (TRUNC_DIV_EXPR, maxbound, eltsize)
    [all...]
tree-ssa-strlen.cc 1102 && (!argdata.maxbound
1103 || integer_all_onesp (argdata.maxbound))
1124 if (!pdata->maxbound
1125 || TREE_CODE (pdata->maxbound) != INTEGER_CST
1126 || (argdata.maxbound
1127 && tree_int_cst_lt (pdata->maxbound, argdata.maxbound)
1128 && !integer_all_onesp (argdata.maxbound)))
1129 pdata->maxbound = argdata.maxbound;
1331 tree maxbound = pdata->maxbound; local
4102 unsigned HOST_WIDE_INT maxbound = HOST_WIDE_INT_M1U; local
    [all...]
gimple-fold.cc 1549 PDATA->MAXBOUND. */
1608 bool maxbound = false; local
1746 maxbound = true;
1760 if (pdata->maxbound && TREE_CODE (pdata->maxbound) == INTEGER_CST)
1767 if (tree_int_cst_lt (pdata->maxbound, val))
1768 pdata->maxbound = val;
1771 pdata->maxbound = val;
1773 else if (pdata->maxbound || maxbound)
1972 tree maxbound = pdata->maxbound; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
builtins.h 65 /* [MINLEN, MAXBOUND, MAXLEN] is a range describing the length of
68 MINLEN == MAXBOUND == MAXLEN holds.
70 string. MAXBOUND is the length of a string that could be stored
74 MINLEN <= MAXBOUND <= MAXLEN holds. For example, given:
89 As the tighter (and more optimistic) bound, MAXBOUND is suitable
95 tree maxbound; member in struct:c_strlen_data
gimple-array-bounds.cc 222 tree maxbound = ptrdiff_max; local
232 maxbound = refsize;
235 if (maxbound == ptrdiff_max)
250 maxbound = size;
256 maxbound = basesize;
261 maxbound = wide_int_to_tree (sizetype,
262 wi::sub (wi::to_wide (maxbound),
267 maxbound = fold_convert (sizetype, maxbound);
269 up_bound_p1 = int_const_binop (TRUNC_DIV_EXPR, maxbound, eltsize)
    [all...]
tree-ssa-strlen.cc 1128 && (!argdata.maxbound
1129 || integer_all_onesp (argdata.maxbound))
1150 if (!pdata->maxbound
1151 || TREE_CODE (pdata->maxbound) != INTEGER_CST
1152 || (argdata.maxbound
1153 && tree_int_cst_lt (pdata->maxbound, argdata.maxbound)
1154 && !integer_all_onesp (argdata.maxbound)))
1155 pdata->maxbound = argdata.maxbound;
1344 tree maxbound = pdata->maxbound; local
4075 unsigned HOST_WIDE_INT maxbound = HOST_WIDE_INT_M1U; local
    [all...]
gimple-fold.cc 1548 PDATA->MAXBOUND. */
1607 bool maxbound = false; local
1747 maxbound = true;
1761 if (pdata->maxbound && TREE_CODE (pdata->maxbound) == INTEGER_CST)
1768 if (tree_int_cst_lt (pdata->maxbound, val))
1769 pdata->maxbound = val;
1772 pdata->maxbound = val;
1774 else if (pdata->maxbound || maxbound)
1973 tree maxbound = pdata->maxbound; local
    [all...]

Completed in 33 milliseconds