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

  /src/external/gpl3/gcc.old/dist/gcc/
gimple-array-bounds.cc 192 tree up_bound = array_ref_up_bound (ref); local
202 if (!up_bound
203 || TREE_CODE (up_bound) != INTEGER_CST
216 up_bound = NULL_TREE;
272 up_bound = int_const_binop (MINUS_EXPR, up_bound_p1,
275 up_bound = NULL_TREE;
279 up_bound_p1 = int_const_binop (PLUS_EXPR, up_bound,
280 build_int_cst (TREE_TYPE (up_bound), 1));
289 if (up_bound && tree_int_cst_equal (low_bound, up_bound_p1))
309 if (up_bound
587 tree low_bound, up_bound, el_sz; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
gimple-array-bounds.cc 166 reference REF and record them into UP_BOUND and UP_BOUND_P1.
171 tree *up_bound, tree *up_bound_p1)
173 if (!(*up_bound)
174 || TREE_CODE (*up_bound) != INTEGER_CST
187 *up_bound = NULL_TREE;
243 *up_bound = int_const_binop (MINUS_EXPR, *up_bound_p1,
246 *up_bound = NULL_TREE;
250 *up_bound_p1 = int_const_binop (PLUS_EXPR, *up_bound,
251 build_int_cst (TREE_TYPE (*up_bound), 1));
255 /* Given the LOW_SUB_ORG, LOW_SUB and UP_SUB, and the computed UP_BOUND
672 tree low_bound, up_bound, el_sz; local
    [all...]

Completed in 24 milliseconds