Home
last modified time | relevance | path

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

/dragonfly/contrib/gcc-8.0/gcc/
H A Dcfgloop.c355 loop->nb_iterations_upper_bound = 0; in alloc_loop()
1865 || wi::ltu_p (i_bound, loop->nb_iterations_upper_bound))) in record_niter_bound()
1868 loop->nb_iterations_upper_bound = i_bound; in record_niter_bound()
1894 && wi::ltu_p (loop->nb_iterations_upper_bound, in record_niter_bound()
1896 loop->nb_iterations_estimate = loop->nb_iterations_upper_bound; in record_niter_bound()
1899 && wi::ltu_p (loop->nb_iterations_upper_bound, in record_niter_bound()
1901 loop->nb_iterations_likely_upper_bound = loop->nb_iterations_upper_bound; in record_niter_bound()
1996 *nit = loop->nb_iterations_upper_bound; in get_max_loop_iterations()
H A Dloop-unroll.c541 loop->nb_iterations_upper_bound -= exit_mod; in unroll_loop_constant_iterations()
589 loop->nb_iterations_upper_bound -= exit_mod + 1; in unroll_loop_constant_iterations()
646 loop->nb_iterations_upper_bound in unroll_loop_constant_iterations()
647 = wi::udiv_trunc (loop->nb_iterations_upper_bound, max_unroll + 1); in unroll_loop_constant_iterations()
1119 loop->nb_iterations_upper_bound in unroll_loop_runtime_iterations()
1120 = wi::udiv_trunc (loop->nb_iterations_upper_bound, max_unroll + 1); in unroll_loop_runtime_iterations()
1132 --loop->nb_iterations_upper_bound; in unroll_loop_runtime_iterations()
H A Dtree-ssa-loop-ivcanon.c567 && wi::ltu_p (loop->nb_iterations_upper_bound, elt->bound)) in remove_redundant_iv_tests()
584 || !wi::ltu_p (loop->nb_iterations_upper_bound, in remove_redundant_iv_tests()
1117 if (wi::ltu_p (npeel, loop->nb_iterations_upper_bound)) in try_peel_loop()
1118 loop->nb_iterations_upper_bound -= npeel; in try_peel_loop()
1120 loop->nb_iterations_upper_bound = 0; in try_peel_loop()
H A Dcfgloop.h162 widest_int nb_iterations_upper_bound; member
H A Dtree-ssa-loop-niter.c3638 || wi::ltu_p (bound, loop->nb_iterations_upper_bound)) in discover_iteration_bound_by_body_walk()
3668 || wi::ltu_p (bound, loop->nb_iterations_upper_bound)) in discover_iteration_bound_by_body_walk()
3796 && wi::ltu_p (elt->bound, loop->nb_iterations_upper_bound)) in maybe_lower_iteration_bound()
3870 record_niter_bound (loop, loop->nb_iterations_upper_bound - 1, in maybe_lower_iteration_bound()
3956 loop->nb_iterations_upper_bound = wi::to_widest (loop->nb_iterations); in estimate_numbers_of_iterations()
H A Dcfgloopmanip.c1011 target->nb_iterations_upper_bound = loop->nb_iterations_upper_bound; in copy_loop_info()
H A Dtree-ssa-loop-manip.c1145 widest_int bound = wi::udiv_floor (loop->nb_iterations_upper_bound, in niter_for_unrolled_loop()
H A Dlto-streamer-in.c818 loop->nb_iterations_upper_bound = streamer_read_widest_int (ib); in input_cfg()
H A Dtree-vect-loop.c9031 loop->nb_iterations_upper_bound in vect_transform_loop()
9033 ? wi::udiv_ceil (loop->nb_iterations_upper_bound + bias_for_lowest, in vect_transform_loop()
9035 : wi::udiv_floor (loop->nb_iterations_upper_bound + bias_for_lowest, in vect_transform_loop()
9103 epilogue->nb_iterations_upper_bound = eiters - 1; in vect_transform_loop()
H A Dlto-streamer-out.c1937 streamer_write_widest_int (ob, loop->nb_iterations_upper_bound); in output_cfg()
H A Dtree-cfg.c8309 print_decu (loop->nb_iterations_upper_bound, file); in print_loop()
/dragonfly/contrib/gcc-4.7/gcc/
H A Dcfgloop.h148 double_int nb_iterations_upper_bound; member
H A Dtree-ssa-loop-niter.c2510 || double_int_ucmp (i_bound, loop->nb_iterations_upper_bound) < 0)) in record_niter_bound()
2513 loop->nb_iterations_upper_bound = i_bound; in record_niter_bound()
3049 && double_int_ucmp (loop->nb_iterations_upper_bound, in estimate_numbers_of_iterations_loop()
3051 loop->nb_iterations_estimate = loop->nb_iterations_upper_bound; in estimate_numbers_of_iterations_loop()
3069 *nit = loop->nb_iterations_upper_bound; in estimated_loop_iterations()
H A Dtree-cfg.c6767 dump_double_int (file, loop->nb_iterations_upper_bound, true); in print_loop()