HomeSort by: relevance | last modified time | path
    Searched refs:nb_iterations_estimate (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/external/gpl3/gcc/dist/gcc/
cfgloopanal.cc 339 nb_iterations_estimate. If those differ, it is a but in profile
345 && (wi::ltu_p (intret * 2, loop->nb_iterations_estimate)
346 || wi::gtu_p (intret, loop->nb_iterations_estimate * 2)))
352 "while nb_iterations_estimate is %i\n",
355 (int)loop->nb_iterations_estimate.to_shwi ());
370 && wi::geu_p (intret, loop->nb_iterations_estimate))
loop-unroll.cc 539 && wi::leu_p (exit_mod, loop->nb_iterations_estimate))
540 loop->nb_iterations_estimate -= exit_mod;
584 && wi::leu_p (exit_mod + 1, loop->nb_iterations_estimate))
585 loop->nb_iterations_estimate -= exit_mod + 1;
644 loop->nb_iterations_estimate
645 = wi::udiv_trunc (loop->nb_iterations_estimate, max_unroll + 1);
1107 loop->nb_iterations_estimate
1108 = wi::udiv_trunc (loop->nb_iterations_estimate, max_unroll + 1);
1119 && loop->nb_iterations_estimate != 0)
1120 --loop->nb_iterations_estimate;
    [all...]
tree-ssa-loop-split.cc 727 && wi::fits_shwi_p (loop1->nb_iterations_estimate))
738 loop1->nb_iterations_estimate
739 = MAX ((((sreal)loop1->nb_iterations_estimate.to_shwi () + 1)
743 loop2->nb_iterations_estimate
744 = MAX ((((sreal)loop2->nb_iterations_estimate.to_shwi () + 1) * scale2
cfgloop.cc 351 loop->nb_iterations_estimate = 0;
1920 || wi::ltu_p (bound, loop->nb_iterations_estimate)))
1923 loop->nb_iterations_estimate = bound;
1938 loop->nb_iterations_estimate))
1939 loop->nb_iterations_estimate = loop->nb_iterations_upper_bound;
2027 *nit = widest_int::from (loop->nb_iterations_estimate, SIGNED);
tree-ssa-loop-ivcanon.cc 1056 if (wi::leu_p (npeel, loop->nb_iterations_estimate))
1057 loop->nb_iterations_estimate -= npeel;
1080 loop->nb_iterations_estimate = 0;
cfgloop.h 174 bound_wide_int nb_iterations_estimate; variable
tree-ssa-loop-manip.cc 1296 loop->nb_iterations_estimate = wi::udiv_floor
1297 (loop->nb_iterations_estimate + 1, factor) - 1;
cfgloopmanip.cc 1085 target->nb_iterations_estimate = loop->nb_iterations_estimate;
lto-streamer-in.cc 1133 loop->nb_iterations_estimate
tree-vect-loop.cc 12259 loop->nb_iterations_estimate
12261 ? wi::udiv_ceil (loop->nb_iterations_estimate + bias_for_assumed,
12263 : wi::udiv_floor (loop->nb_iterations_estimate + bias_for_assumed,
lto-streamer-out.cc 2192 widest_int w = widest_int::from (loop->nb_iterations_estimate,
tree-vect-loop-manip.cc 3612 epilog->nb_iterations_estimate -= lowest_vf;
tree-cfg.cc 8636 print_decu (loop->nb_iterations_estimate, file);
  /src/external/gpl3/gcc.old/dist/gcc/
loop-unroll.cc 537 && wi::leu_p (exit_mod, loop->nb_iterations_estimate))
538 loop->nb_iterations_estimate -= exit_mod;
582 && wi::leu_p (exit_mod + 1, loop->nb_iterations_estimate))
583 loop->nb_iterations_estimate -= exit_mod + 1;
636 loop->nb_iterations_estimate
637 = wi::udiv_trunc (loop->nb_iterations_estimate, max_unroll + 1);
1099 loop->nb_iterations_estimate
1100 = wi::udiv_trunc (loop->nb_iterations_estimate, max_unroll + 1);
1111 && loop->nb_iterations_estimate != 0)
1112 --loop->nb_iterations_estimate;
    [all...]
cfgloop.cc 358 loop->nb_iterations_estimate = 0;
1922 || wi::ltu_p (i_bound, loop->nb_iterations_estimate)))
1925 loop->nb_iterations_estimate = i_bound;
1940 loop->nb_iterations_estimate))
1941 loop->nb_iterations_estimate = loop->nb_iterations_upper_bound;
2027 *nit = loop->nb_iterations_estimate;
tree-ssa-loop-ivcanon.cc 1115 if (wi::ltu_p (npeel, loop->nb_iterations_estimate))
1116 loop->nb_iterations_estimate -= npeel;
1118 loop->nb_iterations_estimate = 0;
1134 loop->nb_iterations_estimate = 0;
cfgloop.h 171 widest_int nb_iterations_estimate; variable
cfgloopmanip.cc 949 target->nb_iterations_estimate = loop->nb_iterations_estimate;
lto-streamer-in.cc 1113 loop->nb_iterations_estimate = streamer_read_widest_int (ib);
tree-vect-loop.cc 10028 loop->nb_iterations_estimate
10030 ? wi::udiv_ceil (loop->nb_iterations_estimate + bias_for_assumed,
10032 : wi::udiv_floor (loop->nb_iterations_estimate + bias_for_assumed,
lto-streamer-out.cc 2173 streamer_write_widest_int (ob, loop->nb_iterations_estimate);
  /src/external/gpl3/gcc/dist/gcc/config/gcn/
gcn-tree.cc 255 lock_loop->nb_iterations_estimate = 1;
  /src/external/gpl3/gcc.old/dist/gcc/config/gcn/
gcn-tree.cc 255 lock_loop->nb_iterations_estimate = 1;
  /src/external/gpl3/gcc.old/dist/gcc/config/nvptx/
nvptx.cc 6838 lock_loop->nb_iterations_estimate = 1;
  /src/external/gpl3/gcc/dist/gcc/config/nvptx/
nvptx.cc 6985 lock_loop->nb_iterations_estimate = 1;

Completed in 58 milliseconds

1 2