Home | History | Annotate | Download | only in gcc

Lines Matching defs:bump

2138 replace_mult_candidate (slsr_cand_t c, tree basis_name, widest_int bump)
2157 if (wi::neg_p (bump))
2160 bump = -bump;
2163 /* It is possible that the resulting bump doesn't fit in target_type.
2166 if (bump != wi::ext (bump, TYPE_PRECISION (target_type),
2170 bump_tree = wide_int_to_tree (target_type, bump);
2183 if (bump == 0)
2246 folded value ((i - i') * S) is referred to here as the "bump." */
2257 widest_int bump = cand_increment (c) * wi::to_widest (c->stride);
2259 replace_mult_candidate (c, gimple_assign_lhs (basis->cand_stmt), bump);
2312 widest_int bump = increment * wi::to_widest (c->stride);
2313 if (wi::neg_p (bump) && !POINTER_TYPE_P (basis_type))
2316 bump = -bump;
2320 bump_tree = wide_int_to_tree (stride_type, bump);
2538 widest_int bump = c->index * wi::to_widest (c->stride);
2540 replace_mult_candidate (c, name, bump);