Searched refs:max_unroll (Results 1 - 2 of 2) sorted by relevance

/freebsd-9.3-release/contrib/gcc/
H A Dloop-unroll.c629 fprintf (dump_file, ";; max_unroll %d (%d copies, initial %d).\n",
668 unsigned max_unroll = loop->lpt_decision.times; local
677 gcc_assert (niter > max_unroll + 1);
679 exit_mod = niter % (max_unroll + 1);
681 wont_exit = sbitmap_alloc (max_unroll + 1);
684 remove_edges = XCNEWVEC (edge, max_unroll + exit_mod + 1);
735 /* We know that niter >= max_unroll + 2; so we do not need to care of
738 if (exit_mod != max_unroll
767 RESET_BIT (wont_exit, max_unroll);
774 loops, max_unroll,
945 unsigned max_unroll = loop->lpt_decision.times; local
[all...]
H A Dtree-ssa-loop-ivcanon.c167 unsigned HOST_WIDE_INT n_unroll, ninsns, max_unroll, unr_insns; local
177 max_unroll = PARAM_VALUE (PARAM_MAX_COMPLETELY_PEEL_TIMES);
178 if (n_unroll > max_unroll)

Completed in 57 milliseconds