Searched refs:maxobjsize (Results 1 – 4 of 4) sorted by relevance
/dflybsd-src/contrib/gcc-8.0/gcc/ |
H A D | gimple-ssa-warn-restrict.c | 244 const offset_int maxobjsize = tree_to_shwi (max_object_size ()); in builtin_memref() local 260 if (sizrange[1] > maxobjsize) in builtin_memref() 261 sizrange[1] = maxobjsize; in builtin_memref() 264 sizrange[1] = maxobjsize; in builtin_memref() 274 offset_int maxoff = maxobjsize; in builtin_memref() 283 offrange[1] = offrange[0] <= maxoff ? maxoff : maxobjsize; in builtin_memref() 295 const offset_int maxobjsize = tree_to_shwi (max_object_size ()); in extend_offset_range() local 334 offrange[1] += maxobjsize; in extend_offset_range() 339 offrange[1] += maxobjsize; in extend_offset_range() 348 const offset_int maxobjsize = tree_to_shwi (max_object_size ()); in set_base_and_offset() local [all …]
|
H A D | calls.c | 1435 tree maxobjsize = alloc_max_size (); in maybe_warn_alloc_args_overflow() local 1473 else if (tree_int_cst_lt (maxobjsize, args[i])) in maybe_warn_alloc_args_overflow() 1489 exp, idx[i] + 1, args[i], maxobjsize); in maybe_warn_alloc_args_overflow() 1505 else if (tree_int_cst_lt (maxobjsize, argrange[i][0])) in maybe_warn_alloc_args_overflow() 1512 maxobjsize); in maybe_warn_alloc_args_overflow() 1542 else if (wi::ltu_p (wi::to_wide (maxobjsize, szprec), prod)) in maybe_warn_alloc_args_overflow() 1548 maxobjsize); in maybe_warn_alloc_args_overflow()
|
H A D | builtins.c | 3052 tree maxobjsize = max_object_size (); in check_access() local 3116 dstsize = maxobjsize; in check_access() 3125 if (range[0] && tree_int_cst_lt (maxobjsize, range[0])) in check_access() 3134 exp, func, range[0], maxobjsize); in check_access() 3140 range[0], range[1], maxobjsize); in check_access() 3217 if (tree_int_cst_lt (maxobjsize, range[0])) in check_access() 3230 range[0], maxobjsize); in check_access() 3236 range[0], range[1], maxobjsize); in check_access() 3241 if (dstsize != maxobjsize && tree_int_cst_lt (dstsize, range[0])) in check_access()
|
H A D | tree-ssa-strlen.c | 1830 wide_int maxobjsize = wi::to_wide (TYPE_MAX_VALUE (ptrdiff_type_node)); in maybe_diag_stxncpy_trunc() local 1832 if (wi::ltu_p (cntrange[1], maxobjsize)) in maybe_diag_stxncpy_trunc() 1835 cntrange[1] = maxobjsize; in maybe_diag_stxncpy_trunc()
|