/netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
H A D | loop-unroll.c | 543 && wi::leu_p (exit_mod, loop->nb_iterations_estimate)) in unroll_loop_constant_iterations() 544 loop->nb_iterations_estimate -= exit_mod; in unroll_loop_constant_iterations() 591 && wi::leu_p (exit_mod + 1, loop->nb_iterations_estimate)) in unroll_loop_constant_iterations() 592 loop->nb_iterations_estimate -= exit_mod + 1; in unroll_loop_constant_iterations() 649 loop->nb_iterations_estimate in unroll_loop_constant_iterations() 650 = wi::udiv_trunc (loop->nb_iterations_estimate, max_unroll + 1); in unroll_loop_constant_iterations() 1122 loop->nb_iterations_estimate in unroll_loop_runtime_iterations() 1123 = wi::udiv_trunc (loop->nb_iterations_estimate, max_unroll + 1); in unroll_loop_runtime_iterations() 1134 && loop->nb_iterations_estimate != 0) in unroll_loop_runtime_iterations() 1135 --loop->nb_iterations_estimate; in unroll_loop_runtime_iterations()
|
H A D | cfgloop.c | 357 loop->nb_iterations_estimate = 0; in alloc_loop() 1909 || wi::ltu_p (i_bound, loop->nb_iterations_estimate))) in record_niter_bound() 1912 loop->nb_iterations_estimate = i_bound; in record_niter_bound() 1927 loop->nb_iterations_estimate)) in record_niter_bound() 1928 loop->nb_iterations_estimate = loop->nb_iterations_upper_bound; in record_niter_bound() 2014 *nit = loop->nb_iterations_estimate; in get_estimated_loop_iterations()
|
H A D | tree-ssa-loop-ivcanon.c | 1118 if (wi::ltu_p (npeel, loop->nb_iterations_estimate)) in try_peel_loop() 1119 loop->nb_iterations_estimate -= npeel; in try_peel_loop() 1121 loop->nb_iterations_estimate = 0; in try_peel_loop() 1137 loop->nb_iterations_estimate = 0; in try_peel_loop()
|
H A D | cfgloop.h | 171 widest_int nb_iterations_estimate; variable
|
H A D | cfgloopmanip.c | 1015 target->nb_iterations_estimate = loop->nb_iterations_estimate; in copy_loop_info()
|
H A D | lto-streamer-in.c | 1126 loop->nb_iterations_estimate = streamer_read_widest_int (ib);
|
H A D | tree-vect-loop.c | 9027 loop->nb_iterations_estimate in vect_transform_loop() 9029 ? wi::udiv_ceil (loop->nb_iterations_estimate + bias_for_assumed, in vect_transform_loop() 9031 : wi::udiv_floor (loop->nb_iterations_estimate + bias_for_assumed, in vect_transform_loop()
|
H A D | lto-streamer-out.c | 2115 streamer_write_widest_int (ob, loop->nb_iterations_estimate); in output_cfg()
|
H A D | tree-cfg.c | 8321 print_decu (loop->nb_iterations_estimate, file); in print_loop()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/ |
H A D | loop-unroll.cc | 537 && wi::leu_p (exit_mod, loop->nb_iterations_estimate)) in unroll_loop_constant_iterations() 538 loop->nb_iterations_estimate -= exit_mod; in unroll_loop_constant_iterations() 582 && wi::leu_p (exit_mod + 1, loop->nb_iterations_estimate)) in unroll_loop_constant_iterations() 583 loop->nb_iterations_estimate -= exit_mod + 1; in unroll_loop_constant_iterations() 636 loop->nb_iterations_estimate in unroll_loop_constant_iterations() 637 = wi::udiv_trunc (loop->nb_iterations_estimate, max_unroll + 1); in unroll_loop_constant_iterations() 1099 loop->nb_iterations_estimate in unroll_loop_runtime_iterations() 1100 = wi::udiv_trunc (loop->nb_iterations_estimate, max_unroll + 1); in unroll_loop_runtime_iterations() 1111 && loop->nb_iterations_estimate != 0) in unroll_loop_runtime_iterations() 1112 --loop->nb_iterations_estimate; in unroll_loop_runtime_iterations()
|
H A D | cfgloop.cc | 357 loop->nb_iterations_estimate = 0; in alloc_loop() 1921 || wi::ltu_p (i_bound, loop->nb_iterations_estimate))) in record_niter_bound() 1924 loop->nb_iterations_estimate = i_bound; in record_niter_bound() 1939 loop->nb_iterations_estimate)) in record_niter_bound() 1940 loop->nb_iterations_estimate = loop->nb_iterations_upper_bound; in record_niter_bound() 2026 *nit = loop->nb_iterations_estimate; in get_estimated_loop_iterations()
|
H A D | tree-ssa-loop-ivcanon.cc | 1115 if (wi::ltu_p (npeel, loop->nb_iterations_estimate)) in try_peel_loop() 1116 loop->nb_iterations_estimate -= npeel; in try_peel_loop() 1118 loop->nb_iterations_estimate = 0; in try_peel_loop() 1134 loop->nb_iterations_estimate = 0; in try_peel_loop()
|
H A D | cfgloop.h | 171 widest_int nb_iterations_estimate; variable
|
H A D | cfgloopmanip.cc | 949 target->nb_iterations_estimate = loop->nb_iterations_estimate; in copy_loop_info()
|
H A D | lto-streamer-in.cc | 1113 loop->nb_iterations_estimate = streamer_read_widest_int (ib); in input_cfg()
|
H A D | tree-vect-loop.cc | 10026 loop->nb_iterations_estimate in vect_transform_loop() 10028 ? wi::udiv_ceil (loop->nb_iterations_estimate + bias_for_assumed, in vect_transform_loop() 10030 : wi::udiv_floor (loop->nb_iterations_estimate + bias_for_assumed, in vect_transform_loop()
|
H A D | lto-streamer-out.cc | 2173 streamer_write_widest_int (ob, loop->nb_iterations_estimate); in output_cfg()
|
H A D | tree-cfg.cc | 8415 print_decu (loop->nb_iterations_estimate, file); in print_loop()
|
H A D | ChangeLog-2011 | 22239 * cfgloop.h (nb_iterations_upper_bound, nb_iterations_estimate): 22247 nb_iterations_estimate semantics.
|
H A D | ChangeLog-2014 | 39692 nb_iterations_estimate. 39700 nb_iterations_estimate to widest_int.
|
H A D | ChangeLog-2012 | 8720 nb_iterations_upper_bound and nb_iterations_estimate.
|
/netbsd-src/external/gpl3/gcc/dist/gcc/config/gcn/ |
H A D | gcn-tree.cc | 255 lock_loop->nb_iterations_estimate = 1; in gcn_lockfull_update()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/gcn/ |
H A D | gcn-tree.c | 374 lock_loop->nb_iterations_estimate = 1; in gcn_lockfull_update()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/nvptx/ |
H A D | nvptx.c | 6079 lock_loop->nb_iterations_estimate = 1; in nvptx_lockfull_update()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/config/nvptx/ |
H A D | nvptx.cc | 6830 lock_loop->nb_iterations_estimate = 1; in nvptx_lockfull_update()
|