Home
last modified time | relevance | path

Searched refs:nb_iterations_upper_bound (Results 1 – 18 of 18) sorted by relevance

/netbsd/src/external/gpl3/gcc/dist/gcc/
Dcfgloop.cc355 loop->nb_iterations_upper_bound = 0; in alloc_loop()
1909 || wi::ltu_p (i_bound, loop->nb_iterations_upper_bound))) in record_niter_bound()
1912 loop->nb_iterations_upper_bound = i_bound; in record_niter_bound()
1938 && wi::ltu_p (loop->nb_iterations_upper_bound, in record_niter_bound()
1940 loop->nb_iterations_estimate = loop->nb_iterations_upper_bound; in record_niter_bound()
1943 && wi::ltu_p (loop->nb_iterations_upper_bound, in record_niter_bound()
1945 loop->nb_iterations_likely_upper_bound = loop->nb_iterations_upper_bound; in record_niter_bound()
2040 *nit = loop->nb_iterations_upper_bound; in get_max_loop_iterations()
Dloop-unroll.cc535 loop->nb_iterations_upper_bound -= exit_mod; in unroll_loop_constant_iterations()
580 loop->nb_iterations_upper_bound -= exit_mod + 1; in unroll_loop_constant_iterations()
633 loop->nb_iterations_upper_bound in unroll_loop_constant_iterations()
634 = wi::udiv_trunc (loop->nb_iterations_upper_bound, max_unroll + 1); in unroll_loop_constant_iterations()
1096 loop->nb_iterations_upper_bound in unroll_loop_runtime_iterations()
1097 = wi::udiv_trunc (loop->nb_iterations_upper_bound, max_unroll + 1); in unroll_loop_runtime_iterations()
1109 --loop->nb_iterations_upper_bound; in unroll_loop_runtime_iterations()
Dtree-ssa-loop-ivcanon.cc564 && wi::ltu_p (loop->nb_iterations_upper_bound, elt->bound)) in remove_redundant_iv_tests()
581 || !wi::ltu_p (loop->nb_iterations_upper_bound, in remove_redundant_iv_tests()
1122 if (wi::ltu_p (npeel, loop->nb_iterations_upper_bound)) in try_peel_loop()
1123 loop->nb_iterations_upper_bound -= npeel; in try_peel_loop()
1125 loop->nb_iterations_upper_bound = 0; in try_peel_loop()
Dcfgloop.h164 widest_int nb_iterations_upper_bound; variable
Dcfgloopmanip.cc944 target->nb_iterations_upper_bound = loop->nb_iterations_upper_bound; in copy_loop_info()
Dtree-ssa-loop-niter.cc4072 || wi::ltu_p (bound, loop->nb_iterations_upper_bound)) in discover_iteration_bound_by_body_walk()
4102 || wi::ltu_p (bound, loop->nb_iterations_upper_bound)) in discover_iteration_bound_by_body_walk()
4230 && wi::ltu_p (elt->bound, loop->nb_iterations_upper_bound)) in maybe_lower_iteration_bound()
4304 record_niter_bound (loop, loop->nb_iterations_upper_bound - 1, in maybe_lower_iteration_bound()
4460 loop->nb_iterations_upper_bound = wi::to_widest (loop->nb_iterations); in estimate_numbers_of_iterations()
Dtree-ssa-loop-manip.cc1176 widest_int bound = wi::udiv_floor (loop->nb_iterations_upper_bound, in niter_for_unrolled_loop()
Dtree-vect-loop.cc9991 loop->nb_iterations_upper_bound in vect_transform_loop()
9993 ? wi::udiv_ceil (loop->nb_iterations_upper_bound + bias_for_lowest, in vect_transform_loop()
9995 : wi::udiv_floor (loop->nb_iterations_upper_bound + bias_for_lowest, in vect_transform_loop()
10013 loop->nb_iterations_upper_bound in vect_transform_loop()
10015 loop->nb_iterations_upper_bound); in vect_transform_loop()
Dlto-streamer-in.cc1107 loop->nb_iterations_upper_bound = streamer_read_widest_int (ib); in input_cfg()
Dlto-streamer-out.cc2167 streamer_write_widest_int (ob, loop->nb_iterations_upper_bound); in output_cfg()
Dtree-cfg.cc8404 print_decu (loop->nb_iterations_upper_bound, file); in print_loop()
DChangeLog-20135533 nb_iterations_upper_bound by one.
5696 nb_iterations_upper_bound by one.
36557 nb_iterations_upper_bound back to it.
DChangeLog-201122239 * cfgloop.h (nb_iterations_upper_bound, nb_iterations_estimate):
22246 (record_estimate): Change nb_iterations_upper_bound and
22266 instead of nb_iterations_upper_bound.
DChangeLog-20128645 update of loop->nb_iterations_upper_bound I missed in my previous
8720 nb_iterations_upper_bound and nb_iterations_estimate.
DChangeLog-201439691 * cfgloop.c (alloc_loop): Initialize nb_iterations_upper_bound and
39699 (struct loop): Change nb_iterations_upper_bound and
DChangeLog-200725630 nb_iterations_upper_bound, any_estimate and nb_iterations_estimate
DChangeLog-201626895 nb_iterations_upper_bound computation for vectorized loop.
DChangeLog-201732215 iterations to the maximum given by nb_iterations_upper_bound,