HomeSort by relevance Sort by last modified time
    Searched full:unroll (Results 1 - 25 of 408) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/Other/
2008-02-14-PassManager.ll 1 ; RUN: opt < %s -loop-unroll -loop-rotate -simplifycfg -disable-output
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
options.txt 1 Note that the UNROLL option makes the 'inner' des loop unroll all 16 rounds
7 IRIX 6.2 - R10000 195mhz - cc (-O3 -n32) - UNROLL RISC2 PTR 496,000 3968k/s
8 solaris 2.5.1 usparc 167mhz?? - SC4.0 - UNROLL RISC1 PTR [1] 459,400 3672k/s
9 FreeBSD - Pentium Pro 200mhz - gcc 2.7.2.2 - UNROLL RISC1 433,000 3468k/s
10 solaris 2.5.1 usparc 167mhz?? - gcc 2.7.2 - UNROLL 380,000 3041k/s
13 AIX 4.1? - PPC604 100mhz - cc - UNROLL 275,000 2200k/s
14 IRIX 5.3 - R4400 200mhz - gcc 2.6.3 - UNROLL RISC2 PTR 235,300 1882k/s
15 IRIX 5.3 - R4400 200mhz - cc - UNROLL RISC2 PTR 233,700 1869k/s
16 NT 4.0 - pentium 100mhz - VC 4.2 - UNROLL RISC1 PTR 191,000 1528k/
    [all...]
  /external/openssl/crypto/des/
options.txt 1 Note that the UNROLL option makes the 'inner' des loop unroll all 16 rounds
7 IRIX 6.2 - R10000 195mhz - cc (-O3 -n32) - UNROLL RISC2 PTR 496,000 3968k/s
8 solaris 2.5.1 usparc 167mhz?? - SC4.0 - UNROLL RISC1 PTR [1] 459,400 3672k/s
9 FreeBSD - Pentium Pro 200mhz - gcc 2.7.2.2 - UNROLL RISC1 433,000 3468k/s
10 solaris 2.5.1 usparc 167mhz?? - gcc 2.7.2 - UNROLL 380,000 3041k/s
13 AIX 4.1? - PPC604 100mhz - cc - UNROLL 275,000 2200k/s
14 IRIX 5.3 - R4400 200mhz - gcc 2.6.3 - UNROLL RISC2 PTR 235,300 1882k/s
15 IRIX 5.3 - R4400 200mhz - cc - UNROLL RISC2 PTR 233,700 1869k/s
16 NT 4.0 - pentium 100mhz - VC 4.2 - UNROLL RISC1 PTR 191,000 1528k/
    [all...]
  /external/llvm/test/Transforms/LoopUnroll/
2007-05-09-UnknownTripCount.ll 1 ; RUN: opt < %s -loop-unroll -unroll-count=3 -S | grep bb72.2
runtime-loop1.ll 1 ; RUN: opt < %s -S -loop-unroll -unroll-runtime -unroll-count=4 | FileCheck %s
3 ; This tests that setting the unroll count works
runtime-loop2.ll 1 ; RUN: opt < %s -S -loop-unroll -unroll-threshold=50 -unroll-runtime -unroll-count=8 | FileCheck %s
3 ; Choose a smaller, power-of-two, unroll count if the loop is too large.
basic.ll 1 ; 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'.
shifted-tripcount.ll 1 ; RUN: opt < %s -loop-unroll -unroll-count=2 -S | FileCheck %s
3 ; LoopUnroll should unroll this loop into one big basic block.
2004-05-13-DontUnrollTooMuch.ll 1 ; RUN: opt < %s -loop-unroll -disable-output
partial-unroll-optsize.ll 1 ; RUN: opt < %s -S -loop-unroll -unroll-allow-partial | FileCheck %s
2006-08-24-MultiBlockLoop.ll 1 ; RUN: opt < %s -loop-unroll -S | grep bb72.2
2007-04-16-PhiUpdate.ll 2 ; RUN: opt < %s -loop-unroll -disable-output
runtime-loop3.ll 2 ; RUN: opt < %s -disable-output -stats -loop-unroll -unroll-runtime -unroll-threshold=400 -info-output-file - | FileCheck %s --check-prefix=STATS
6 ; STATS: 2 loop-unroll - Number of loops unrolled (completely or otherwise)
runtime-loop.ll 1 ; RUN: opt < %s -S -loop-unroll -unroll-runtime=true | FileCheck %s
32 ; Still try to completely unroll loops with compile-time trip counts
33 ; even if the -unroll-runtime is specified
58 ; if the -unroll-runtime option is turned on
2011-10-01-NoopTrunc.ll 1 ; RUN: opt < %s -S -loop-unroll -unroll-threshold=150 | FileCheck %s
  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 15 #define DEBUG_TYPE "loop-unroll"
32 UnrollThreshold("unroll-threshold", cl::init(150), cl::Hidden,
36 UnrollCount("unroll-count", cl::init(0), cl::Hidden,
37 cl::desc("Use this unroll count for all loops, for testing purposes"));
40 UnrollAllowPartial("unroll-allow-partial", cl::init(false), cl::Hidden,
42 "-unroll-threshold loop size is reached."));
45 UnrollRuntime("unroll-runtime", cl::ZeroOrMore, cl::init(false), cl::Hidden,
46 cl::desc("Unroll loops with run-time trip counts"));
63 /// that the loop unroll should be performed regardless of how much
68 // explicit -unroll-threshold)
    [all...]
  /external/llvm/test/Transforms/LoopVectorize/X86/
gcc-examples.ll 2 ; RUN: opt < %s -loop-vectorize -mtriple=x86_64-apple-macosx10.8.0 -mcpu=corei7 -force-vector-unroll=0 -dce -instcombine -S | FileCheck %s -check-prefix=UNROLL
18 ;UNROLL-LABEL: @example1(
19 ;UNROLL: load <4 x i32>
20 ;UNROLL: load <4 x i32>
21 ;UNROLL: add nsw <4 x i32>
22 ;UNROLL: add nsw <4 x i32>
23 ;UNROLL: store <4 x i32>
24 ;UNROLL: store <4 x i32>
25 ;UNROLL: ret voi
    [all...]
  /external/eigen/Eigen/src/Core/
BooleanRedux.h 82 unroll = SizeAtCompileTime != Dynamic enumerator in enum:Eigen::__anon19294
87 if(unroll)
89 unroll ? int(SizeAtCompileTime) : Dynamic
108 unroll = SizeAtCompileTime != Dynamic enumerator in enum:Eigen::__anon19295
113 if(unroll)
115 unroll ? int(SizeAtCompileTime) : Dynamic
  /external/llvm/test/Analysis/ScalarEvolution/
scev-invalid.ll 1 ; RUN: opt < %s -S -indvars -loop-unroll | FileCheck %s
9 ; When loop-unroll asks for the expression, it contains a NULL
  /external/chromium_org/third_party/skia/src/opts/
SkBlitRow_opts_arm_neon.cpp 424 #define UNROLL 4
425 while (count >= UNROLL) {
438 #if UNROLL > 2
444 #if UNROLL > 2
470 #if UNROLL > 2
494 #if UNROLL > 2
498 src += UNROLL;
499 dst += UNROLL;
500 count -= UNROLL;
502 #undef UNROLL
    [all...]
  /external/skia/src/opts/
SkBlitRow_opts_arm_neon.cpp 424 #define UNROLL 4
425 while (count >= UNROLL) {
438 #if UNROLL > 2
444 #if UNROLL > 2
470 #if UNROLL > 2
494 #if UNROLL > 2
498 src += UNROLL;
499 dst += UNROLL;
500 count -= UNROLL;
502 #undef UNROLL
    [all...]
  /external/llvm/test/Transforms/LoopUnswitch/
2007-10-04-DomFrontier.ll 1 ; RUN: opt < %s -licm -loop-unroll -disable-output
  /external/llvm/test/Transforms/JumpThreading/
no-irreducible-loops.ll 1 ; RUN: opt < %s -jump-threading -loop-rotate -instcombine -indvars -loop-unroll -simplifycfg -S -verify-dom-info -verify-loop-info > %t
11 define i32 @unroll() nounwind {
  /external/llvm/test/Transforms/LoopVectorize/
gcc-examples.ll 1 ; RUN: opt < %s -loop-vectorize -force-vector-width=4 -force-vector-unroll=1 -dce -instcombine -S | FileCheck %s
2 ; RUN: opt < %s -loop-vectorize -force-vector-width=4 -force-vector-unroll=4 -dce -instcombine -S | FileCheck %s -check-prefix=UNROLL
28 ;UNROLL-LABEL: @example1(
29 ;UNROLL: load <4 x i32>
30 ;UNROLL: load <4 x i32>
31 ;UNROLL: load <4 x i32>
32 ;UNROLL: load <4 x i32>
33 ;UNROLL: add nsw <4 x i32>
34 ;UNROLL: add nsw <4 x i32
    [all...]
  /external/llvm/lib/Transforms/Utils/
LoopUnrollRuntime.cpp 15 // run-time trip count modulo the unroll factor is not 0. When this is the
24 #define DEBUG_TYPE "loop-unroll"
46 /// unroll count is non-zero.
54 /// than the unroll factor.
107 // trip count is less than the unroll factor.
205 /// This method assumes that the loop unroll factor is total number
207 /// to the unroll factor as the number of *extra* copies added).
208 /// We assume also that the loop unroll factor is a power-of-two. So, after
229 // for now, only unroll loops that contain a single exit
246 // Only unroll loops with a computable trip count and the trip count need
    [all...]

Completed in 363 milliseconds

1 2 3 4 5 6 7 8 91011>>