Home
last modified time | relevance | path

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

12345

/minix/external/bsd/llvm/dist/clang/test/Parser/
H A Dpragma-unroll.cpp9 #pragma unroll in test()
19 #pragma unroll 4 in test()
24 #pragma unroll(8) in test()
51 #pragma unroll in test()
53 #pragma unroll 4 in test()
65 #pragma clang loop unroll(full) in test()
71 #pragma unroll in test()
89 #pragma unroll in test()
95 #pragma clang loop unroll(full) in test()
101 #pragma unroll(4) in test()
[all …]
H A Dpragma-loop.cpp84 #pragma clang loop unroll(full) in test()
98 #pragma clang loop unroll(disable) in test()
114 #pragma clang loop vectorize(disable) interleave(disable) unroll(disable) in test()
123 /* expected-error {{expected '('}} */ #pragma clang loop unroll in test()
127 /* expected-error {{expected ')'}} */ #pragma clang loop unroll(full in test()
135 /* expected-error {{missing argument; expected 'enable' or 'disable'}} */ #pragma clang loop unroll in test()
189 /* expected-error {{invalid argument; expected 'full' or 'disable'}} */ #pragma clang loop unroll(b… in test()
198 /* expected-error {{invalid argument; expected 'full' or 'disable'}} */ #pragma clang loop unroll(=) in test()
224 #pragma clang loop unroll(disable) in test()
233 …or {{duplicate directives 'unroll(disable)' and 'unroll(full)'}} */ #pragma clang loop unroll(full) in test()
[all …]
/minix/external/bsd/llvm/dist/clang/test/CodeGen/
H A Dpragma-unroll.cpp8 #pragma unroll in while_test()
30 #pragma unroll 8 in for_test()
41 #pragma unroll(4) in for_range_test()
52 #pragma unroll(UNROLLCOUNT) in for_define_test()
62 #pragma unroll 8 in for_template_test()
72 #pragma unroll(UNROLLCOUNT) in for_template_define_test()
H A Dpragma-loop.cpp11 #pragma clang loop unroll(full) in while_test()
23 #pragma clang loop vectorize_width(8) interleave_count(4) unroll(disable) in do_test()
58 #pragma clang loop vectorize(disable) unroll(disable) in disable_test()
/minix/external/bsd/llvm/dist/llvm/test/Transforms/LoopUnroll/
H A Dloop-remarks.ll1 ; RUN: opt < %s -S -loop-unroll -pass-remarks=loop-unroll -unroll-count=16 2>&1 | FileCheck -check-…
2 ; RUN: opt < %s -S -loop-unroll -pass-remarks=loop-unroll -unroll-count=4 2>&1 | FileCheck -check-p…
H A Dunroll-pragmas-disabled.ll1 ; RUN: opt < %s -loop-unroll -S | FileCheck %s
3 ; Verify that the unrolling pass removes existing unroll count metadata
35 !3 = !{!"llvm.loop.unroll.count", i32 4}
38 ; #pragma clang loop unroll(full)
40 ; An unroll disable metadata node is only added for the unroll count case.
67 !6 = !{!"llvm.loop.unroll.full"}
69 ; #pragma clang loop unroll(disable)
93 !8 = !{!"llvm.loop.unroll.disable"}
138 !10 = !{!"llvm.loop.unroll.count", i32 2}
144 ; CHECK: ![[UNROLL_DISABLE]] = !{!"llvm.loop.unroll.disable"}
[all …]
H A Druntime-loop2.ll1 ; RUN: opt < %s -S -loop-unroll -unroll-threshold=25 -unroll-runtime -unroll-count=8 | FileCheck %s
3 ; Choose a smaller, power-of-two, unroll count if the loop is too large.
H A Druntime-loop1.ll1 ; RUN: opt < %s -S -loop-unroll -unroll-runtime -unroll-count=2 | FileCheck %s
3 ; This tests that setting the unroll count works
H A Dunroll-pragmas.ll1 ; RUN: opt < %s -loop-unroll -S | FileCheck %s
2 ; RUN: opt < %s -loop-unroll -loop-unroll -S | FileCheck %s
12 ; unroll(disable) pragma test loop4_with_disable.
34 ; #pragma clang loop unroll(disable)
58 !2 = !{!"llvm.loop.unroll.disable"}
86 ; #pragma clang loop unroll(full)
109 !4 = !{!"llvm.loop.unroll.full"}
139 !6 = !{!"llvm.loop.unroll.count", i32 4}
141 ; #pragma clang loop unroll(full)
232 !11 = !{!"llvm.loop.unroll.count", i32 1}
[all …]
H A Dshifted-tripcount.ll1 ; RUN: opt < %s -loop-unroll -unroll-count=2 -S | FileCheck %s
3 ; LoopUnroll should unroll this loop into one big basic block.
H A Dbasic.ll1 ; RUN: opt < %s -loop-unroll -S | FileCheck %s
4 ; This should not unroll since the address of the loop header is taken.
26 ; This should not unroll since the call is 'noduplicate'.
H A D2007-05-09-UnknownTripCount.ll1 ; RUN: opt < %s -loop-unroll -unroll-count=3 -S | grep bb72.2
H A Dtripcount-overflow.ll1 ; RUN: opt < %s -S -unroll-runtime -unroll-count=2 -loop-unroll | FileCheck %s
H A Druntime-loop3.ll2 ; RUN: opt < %s -disable-output -stats -loop-unroll -unroll-runtime -unroll-threshold=400 -info-out…
6 ; STATS: 2 loop-unroll - Number of loops unrolled (completely or otherwise)
H A Druntime-loop.ll1 ; RUN: opt < %s -S -loop-unroll -unroll-runtime=true | FileCheck %s
37 ; Still try to completely unroll loops with compile-time trip counts
38 ; even if the -unroll-runtime is specified
63 ; if the -unroll-runtime option is turned on
117 ; CHECK: !1 = !{!"llvm.loop.unroll.disable"}
H A D2011-08-08-PhiUpdate.ll1 ; RUN: opt < %s -loop-unroll -S -unroll-count=4 | FileCheck %s
2 ; Test phi update after partial unroll.
31 ; PR7318: assertion failure after doing a simple loop unroll
/minix/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()
/minix/crypto/external/bsd/openssl/dist/crypto/des/
H A Decb_enc.c73 const char *ptr, *unroll, *risc, *size; in DES_options() local
91 unroll = "16"; in DES_options()
93 unroll = "2"; in DES_options()
99 BIO_snprintf(buf, sizeof buf, "des(%s,%s,%s,%s)", ptr, risc, unroll, in DES_options()
/minix/external/bsd/llvm/dist/clang/test/PCH/
H A Dpragma-loop.cpp42 #pragma clang loop unroll(disable) in run2()
53 #pragma clang loop unroll(full) in run3()
62 #pragma unroll in run4()
71 #pragma unroll 32 in run5()
/minix/external/bsd/llvm/dist/llvm/test/Transforms/LoopVectorize/X86/
H A Dmetadata-enable.ll1 ; RUN: opt < %s -mcpu=corei7 -O1 -S -unroll-allow-partial=0 | FileCheck %s --check-prefix=O1
2 ; RUN: opt < %s -mcpu=corei7 -O2 -S -unroll-allow-partial=0 | FileCheck %s --check-prefix=O2
3 ; RUN: opt < %s -mcpu=corei7 -O3 -S -unroll-allow-partial=0 | FileCheck %s --check-prefix=O3
4 ; RUN: opt < %s -mcpu=corei7 -Os -S -unroll-allow-partial=0 | FileCheck %s --check-prefix=Os
5 ; RUN: opt < %s -mcpu=corei7 -Oz -S -unroll-allow-partial=0 | FileCheck %s --check-prefix=Oz
6 ; RUN: opt < %s -mcpu=corei7 -O1 -vectorize-loops -S -unroll-allow-partial=0 | FileCheck %s --check…
7 ; RUN: opt < %s -mcpu=corei7 -Oz -vectorize-loops -S -unroll-allow-partial=0 | FileCheck %s --check…
8 ; RUN: opt < %s -mcpu=corei7 -O1 -loop-vectorize -S -unroll-allow-partial=0 | FileCheck %s --check-…
9 ; RUN: opt < %s -mcpu=corei7 -Oz -loop-vectorize -S -unroll-allow-partial=0 | FileCheck %s --check-…
10 ; RUN: opt < %s -mcpu=corei7 -O3 -disable-loop-vectorization -S -unroll-allow-partial=0 | FileCheck…
H A Dalready-vectorized.ll42 ; CHECK: [[vect]] = distinct !{[[vect]], [[width:![0-9]+]], [[unroll:![0-9]+]]}
44 ; CHECK: [[unroll]] = !{!"llvm.loop.interleave.count", i32 1}
45 ; CHECK: [[scalar]] = distinct !{[[scalar]], [[width]], [[unroll]]}
/minix/external/bsd/llvm/dist/llvm/test/Transforms/LICM/
H A D2014-09-10-doFinalizationAssert.ll1 ; RUN: opt < %s -scalar-evolution -licm -loop-unroll -disable-output
2 ; Test triggered an assertion in doFinalization() because loop unroll was deleting
/minix/external/bsd/llvm/dist/llvm/test/Analysis/ScalarEvolution/
H A Dscev-invalid.ll1 ; RUN: opt < %s -S -indvars -loop-unroll | FileCheck %s
9 ; When loop-unroll asks for the expression, it contains a NULL
/minix/external/bsd/llvm/dist/llvm/test/Transforms/LoopUnroll/X86/
H A Dpartial.ll1 ; RUN: opt < %s -S -loop-unroll -mcpu=nehalem | FileCheck %s
2 ; RUN: opt < %s -S -loop-unroll -mcpu=core -unroll-runtime=0 | FileCheck -check-prefix=CHECK-NOUNRL…
32 ; FIXME: We should probably unroll this loop by a factor of 2, but the cost
60 ; FIXME: We should probably unroll this loop by a factor of 2, but the cost
/minix/external/bsd/llvm/dist/llvm/test/Transforms/JumpThreading/
H A Dno-irreducible-loops.ll1 ; RUN: opt < %s -jump-threading -loop-rotate -instcombine -indvars -loop-unroll -simplifycfg -S -ve…
11 define i32 @unroll() nounwind {

12345