Home
last modified time | relevance | path

Searched refs:unroll (Results 1 – 25 of 283) sorted by relevance

12345678910>>...12

/netbsd/crypto/external/bsd/openssl.old/lib/libdes/
H A Doecb_enc.c72 const char *ptr,*unroll,*risc,*size; in des_options() local
90 unroll="16"; in des_options()
92 unroll="4"; in des_options()
98 sprintf(buf,"des(%s,%s,%s,%s)",ptr,risc,unroll,size); in des_options()
/netbsd/crypto/external/bsd/openssl/lib/libdes/
H A Doecb_enc.c72 const char *ptr,*unroll,*risc,*size; in des_options() local
90 unroll="16"; in des_options()
92 unroll="4"; in des_options()
98 sprintf(buf,"des(%s,%s,%s,%s)",ptr,risc,unroll,size); in des_options()
/netbsd/sys/crypto/des/
H A Ddes_ecb.c74 const char *ptr,*unroll,*risc,*size; in des_options() local
92 unroll="16"; in des_options()
94 unroll="4"; in des_options()
102 ptr, risc, unroll, size); in des_options()
/netbsd/external/apache2/llvm/dist/llvm/docs/
H A DTransformMetadata.rst90 ``llvm.loop.vectorize.enable`` and ``llvm.loop.unroll.enable`` are
166 has unroll metadata).
181 metadata or option (``llvm.loop.unroll.count``, ``llvm.loop.unroll.full``)
194 is transformed into (using an unroll factor of 4):
210 without the ``llvm.loop.unroll.*`` attributes are copied and
211 ``llvm.loop.unroll.disable`` added to it.
213 ``llvm.loop.unroll.followup_remainder`` defines the attributes of the
222 recommended to add ``llvm.loop.unroll.disable`` to
264 original outer loop without the ``llvm.loop.unroll.*`` attributes are
265 copied and ``llvm.loop.unroll.disable`` added to it.
[all …]
H A DVectorizers.rst37 and unroll factor. However, users of the vectorizer can force the vectorizer to use
47 Users can control the unroll factor using the command line flag "-force-vector-interleave"
370 The Loop Vectorizer uses a cost model to decide when it is profitable to unroll loops.
371 The decision to unroll the loop depends on the register pressure and the generated code size.
378 does not evenly divide the vectorization and unroll factors. When the
379 vectorization and unroll factors are large, it's possible for loops with smaller
383 vectorization and unroll factor combination that makes it more likely for small
/netbsd/external/gpl3/gcc/dist/gcc/
H A Dgimple-loop-jam.c389 unsigned *unroll, unsigned *profit_unroll, in adjust_unroll_factor() argument
409 else if (dist >= (lambda_int)*unroll) in adjust_unroll_factor()
460 *unroll = dist; in adjust_unroll_factor()
466 *unroll = dist; in adjust_unroll_factor()
512 bool unroll = false; in tree_loop_unroll_and_jam() local
583 unroll = (unroll_factor > 1 in tree_loop_unroll_and_jam()
586 if (unroll) in tree_loop_unroll_and_jam()
H A Dgimple-loop-jam.cc394 unsigned *unroll, unsigned *profit_unroll, in adjust_unroll_factor() argument
414 else if (dist >= (lambda_int)*unroll) in adjust_unroll_factor()
465 *unroll = dist; in adjust_unroll_factor()
471 *unroll = dist; in adjust_unroll_factor()
516 bool unroll = false; in tree_loop_unroll_and_jam() local
585 unroll = (unroll_factor > 1 in tree_loop_unroll_and_jam()
588 if (unroll) in tree_loop_unroll_and_jam()
H A Dloop-unroll.c230 if (loop->unroll == 1) in decide_unrolling()
356 if (!(flags & UAP_UNROLL) && !loop->unroll) in decide_unroll_constant_iterations()
398 if (loop->unroll > 0 && loop->unroll < USHRT_MAX) in decide_unroll_constant_iterations()
402 if (desc->niter == 0 || (unsigned) loop->unroll > desc->niter - 1) in decide_unroll_constant_iterations()
410 loop->lpt_decision.times = loop->unroll - 1; in decide_unroll_constant_iterations()
676 if (!(flags & UAP_UNROLL) && !loop->unroll) in decide_unroll_runtime_iterations()
696 if (loop->unroll > 0 && loop->unroll < USHRT_MAX) in decide_unroll_runtime_iterations()
697 nunroll = loop->unroll; in decide_unroll_runtime_iterations()
1161 if (!(flags & UAP_UNROLL_ALL) && !loop->unroll) in decide_unroll_stupid()
1180 if (loop->unroll > 0 && loop->unroll < USHRT_MAX) in decide_unroll_stupid()
[all …]
H A Dloop-unroll.cc228 if (loop->unroll == 1) in decide_unrolling()
353 if (!(flags & UAP_UNROLL) && !loop->unroll) in decide_unroll_constant_iterations()
395 if (loop->unroll > 0 && loop->unroll < USHRT_MAX) in decide_unroll_constant_iterations()
399 if (desc->niter == 0 || (unsigned) loop->unroll > desc->niter - 1) in decide_unroll_constant_iterations()
407 loop->lpt_decision.times = loop->unroll - 1; in decide_unroll_constant_iterations()
663 if (!(flags & UAP_UNROLL) && !loop->unroll) in decide_unroll_runtime_iterations()
683 if (loop->unroll > 0 && loop->unroll < USHRT_MAX) in decide_unroll_runtime_iterations()
684 nunroll = loop->unroll; in decide_unroll_runtime_iterations()
1138 if (!(flags & UAP_UNROLL_ALL) && !loop->unroll) in decide_unroll_stupid()
1157 if (loop->unroll > 0 && loop->unroll < USHRT_MAX) in decide_unroll_stupid()
[all …]
H A Dtree-ssa-loop-ivcanon.cc741 if (!loop->unroll in try_unroll_loop_completely()
759 if (loop->unroll) in try_unroll_loop_completely()
762 if (n_unroll > (unsigned)loop->unroll) in try_unroll_loop_completely()
1013 if (loop->unroll) in try_peel_loop()
1384 if (loop->unroll > 1) in tree_unroll_loops_completely_1()
H A Dtree-ssa-loop-ivcanon.c742 if (!loop->unroll in try_unroll_loop_completely()
760 if (loop->unroll) in try_unroll_loop_completely()
763 if (n_unroll > (unsigned)loop->unroll) in try_unroll_loop_completely()
1015 if (loop->unroll) in try_peel_loop()
1389 if (loop->unroll > 1) in tree_unroll_loops_completely_1()
/netbsd/external/gpl3/gcc.old/dist/gcc/
H A Dgimple-loop-jam.c389 unsigned *unroll, unsigned *profit_unroll, in adjust_unroll_factor() argument
409 else if (dist >= (lambda_int)*unroll) in adjust_unroll_factor()
460 *unroll = dist; in adjust_unroll_factor()
466 *unroll = dist; in adjust_unroll_factor()
512 bool unroll = false; in tree_loop_unroll_and_jam() local
583 unroll = (unroll_factor > 1 in tree_loop_unroll_and_jam()
586 if (unroll) in tree_loop_unroll_and_jam()
H A Dloop-unroll.c230 if (loop->unroll == 1) in decide_unrolling()
356 if (!(flags & UAP_UNROLL) && !loop->unroll) in decide_unroll_constant_iterations()
398 if (loop->unroll > 0 && loop->unroll < USHRT_MAX) in decide_unroll_constant_iterations()
402 if (desc->niter == 0 || (unsigned) loop->unroll > desc->niter - 1) in decide_unroll_constant_iterations()
410 loop->lpt_decision.times = loop->unroll - 1; in decide_unroll_constant_iterations()
676 if (!(flags & UAP_UNROLL) && !loop->unroll) in decide_unroll_runtime_iterations()
696 if (loop->unroll > 0 && loop->unroll < USHRT_MAX) in decide_unroll_runtime_iterations()
697 nunroll = loop->unroll; in decide_unroll_runtime_iterations()
1161 if (!(flags & UAP_UNROLL_ALL) && !loop->unroll) in decide_unroll_stupid()
1180 if (loop->unroll > 0 && loop->unroll < USHRT_MAX) in decide_unroll_stupid()
[all …]
H A Dtree-ssa-loop-ivcanon.c742 if (!loop->unroll in try_unroll_loop_completely()
760 if (loop->unroll) in try_unroll_loop_completely()
763 if (n_unroll > (unsigned)loop->unroll) in try_unroll_loop_completely()
1015 if (loop->unroll) in try_peel_loop()
1389 if (loop->unroll > 1) in tree_unroll_loops_completely_1()
/netbsd/external/lgpl3/gmp/dist/mpn/alpha/ev6/nails/
H A DREADME43 Routine c/l unroll c/l unroll c/l i/c
/netbsd/common/lib/libc/arch/mips/string/
H A Dstrcmp.S51 lbu t0, 1(a0) # unroll loop
/netbsd/external/lgpl3/gmp/dist/mpn/x86/k7/mmx/
H A Dcopyi.asm78 jae L(unroll)
103 L(unroll):
H A Drshift.asm124 jae L(unroll)
172 L(unroll):
H A Dlshift.asm118 jae L(unroll)
167 L(unroll):
/netbsd/sys/arch/mvme68k/stand/sboot/
H A Doc_cksum.s71 | (It's clear why this happens for a count of 40: unroll-8 pays a
72 | loop branch cost and unroll-16 doesn't. But the tests also showed
/netbsd/external/lgpl3/gmp/dist/mpn/x86/k7/
H A Daors_n.asm123 jae L(unroll)
162 L(unroll):
/netbsd/crypto/external/bsd/openssl.old/dist/crypto/modes/asm/
H A Dghash-x86.pl150 $unroll = 0; # Affects x86 loop. Folded loop performs ~7% worse
169 if (!$unroll) {
240 if ($unroll) {
289 if ($unroll) {
332 if ($unroll) {
340 &mov (&wparam(2),$inp) if (!$unroll);
/netbsd/crypto/external/bsd/openssl/dist/crypto/modes/asm/
H A Dghash-x86.pl149 $unroll = 0; # Affects x86 loop. Folded loop performs ~7% worse
168 if (!$unroll) {
239 if ($unroll) {
288 if ($unroll) {
331 if ($unroll) {
339 &mov (&wparam(2),$inp) if (!$unroll);
/netbsd/sys/arch/m68k/m68k/
H A Doc_cksum.s67 | (It's clear why this happens for a count of 40: unroll-8 pays a
68 | loop branch cost and unroll-16 doesn't. But the tests also showed
/netbsd/external/lgpl3/gmp/dist/mpn/x86/k6/k62mmx/
H A Dlshift.asm103 jae L(unroll)
143 L(unroll):

12345678910>>...12