Home
last modified time | relevance | path

Searched refs:nunroll (Results 1 – 2 of 2) sorted by relevance

/freebsd-10-stable/contrib/gcc/
Dloop-unroll.c547 unsigned nunroll, nunroll_by_av, best_copies, best_unroll = 0, n_copies, i; in decide_unroll_constant_iterations() local
563 nunroll = PARAM_VALUE (PARAM_MAX_UNROLLED_INSNS) / loop->ninsns; in decide_unroll_constant_iterations()
566 if (nunroll > nunroll_by_av) in decide_unroll_constant_iterations()
567 nunroll = nunroll_by_av; in decide_unroll_constant_iterations()
568 if (nunroll > (unsigned) PARAM_VALUE (PARAM_MAX_UNROLL_TIMES)) in decide_unroll_constant_iterations()
569 nunroll = PARAM_VALUE (PARAM_MAX_UNROLL_TIMES); in decide_unroll_constant_iterations()
572 if (nunroll <= 1) in decide_unroll_constant_iterations()
592 if (desc->niter < 2 * nunroll) in decide_unroll_constant_iterations()
603 best_copies = 2 * nunroll + 10; in decide_unroll_constant_iterations()
605 i = 2 * nunroll + 2; in decide_unroll_constant_iterations()
[all …]
Dtree-ssa-loop-ivcanon.c147 unsigned HOST_WIDE_INT nunroll) in estimated_unrolled_size() argument
152 unr_insns *= (nunroll + 1); in estimated_unrolled_size()