OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:unroll
(Results
51 - 75
of
408
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/llvm/test/Transforms/BBVectorize/X86/
loop1.ll
4
; RUN: opt < %s -mtriple=x86_64-unknown-linux-gnu -mcpu=corei7 -basicaa -loop-
unroll
-
unroll
-threshold=45 -
unroll
-allow-partial -bb-vectorize -bb-vectorize-req-chain-depth=3 -instcombine -gvn -S | FileCheck %s -check-prefix=CHECK-UNRL
/external/llvm/test/Transforms/LoopVectorize/X86/
unroll_selection.ll
1
; RUN: opt < %s -loop-vectorize -mtriple=x86_64-apple-macosx10.8.0 -mcpu=corei7-avx -force-vector-width=4 -force-vector-
unroll
=0 -dce -S | FileCheck %s
6
; Don't
unroll
when we have register pressure.
50
; This is a small loop.
Unroll
it twice.
/external/llvm/docs/
Vectorizers.rst
37
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-
unroll
"
51
$ clang -mllvm -force-vector-
unroll
=2 ...
52
$ opt -loop-vectorize -force-vector-
unroll
=2 ...
277
The Loop Vectorizer uses a cost model to decide when it is profitable to
unroll
loops.
278
The decision to
unroll
the loop depends on the register pressure and the generated code size.
/external/llvm/lib/Transforms/Utils/
LoopUnroll.cpp
19
#define DEBUG_TYPE "loop-
unroll
"
114
///
Unroll
the given loop by Count. The loop must be in LCSSA form. Returns true
144
DEBUG(dbgs() << " Can't
unroll
; loop preheader-insertion failed.\n");
150
DEBUG(dbgs() << " Can't
unroll
; loop exit-block-insertion failed.\n");
156
DEBUG(dbgs() << " Can't
unroll
; Loop body cannot be cloned.\n");
166
" Can't
unroll
; loop not terminated by a conditional branch.\n");
173
" Won't
unroll
loop: address of header block is taken.\n");
187
// Don't enter the
unroll
code if there is nothing to do. This way we don't
200
// figure out the loop trip count and the
unroll
-runtime
365
// For a complete
unroll
, make the last iteration end with a branc
[
all
...]
/bionic/libc/arch-x86/string/
strcat.S
37
L1: movb (%edx),%al /*
unroll
loop, but not too much */
/external/llvm/test/Transforms/LoopUnroll/
2007-05-05-UnrollMiscomp.ll
1
; RUN: opt < %s -loop-
unroll
-S | not grep undef
pr11361.ll
1
; RUN: opt -loop-
unroll
-disable-output < %s
/external/llvm/test/Transforms/LoopVectorize/
bsd_regex.ll
1
; RUN: opt -S -loop-vectorize -dce -instcombine -force-vector-width=2 -force-vector-
unroll
=2 < %s | FileCheck %s
funcall.ll
1
; RUN: opt -S -loop-vectorize -force-vector-width=2 -force-vector-
unroll
=1 < %s | FileCheck %s
i8-induction.ll
1
; RUN: opt < %s -loop-vectorize -force-vector-
unroll
=1 -force-vector-width=4 -dce -instcombine -S
induction.ll
1
; RUN: opt < %s -loop-vectorize -force-vector-
unroll
=1 -force-vector-width=2 -S | FileCheck %s
induction_plus.ll
1
; RUN: opt < %s -loop-vectorize -force-vector-
unroll
=1 -force-vector-width=4 -instcombine -S | FileCheck %s
lcssa-crash.ll
1
; RUN: opt < %s -loop-vectorize -force-vector-
unroll
=1 -force-vector-width=4
metadata-unroll.ll
41
!1 = metadata !{metadata !"llvm.vectorizer.
unroll
", i32 2}
metadata-width.ll
1
; RUN: opt < %s -loop-vectorize -force-vector-
unroll
=1 -dce -instcombine -S | FileCheck %s
no_int_induction.ll
1
; RUN: opt < %s -loop-vectorize -force-vector-
unroll
=1 -force-vector-width=4 -dce -instcombine -S | FileCheck %s
no_outside_user.ll
1
; RUN: opt -S -loop-vectorize -force-vector-
unroll
=1 -force-vector-width=2 < %s | FileCheck %s
non-const-n.ll
1
; RUN: opt < %s -loop-vectorize -force-vector-
unroll
=1 -force-vector-width=4 -dce -instcombine -S | FileCheck %s
read-only.ll
1
; RUN: opt < %s -loop-vectorize -force-vector-
unroll
=1 -force-vector-width=4 -dce -instcombine -S | FileCheck %s
reverse_iter.ll
1
; RUN: opt < %s -loop-vectorize -force-vector-
unroll
=1 -force-vector-width=4 -dce -instcombine -S | FileCheck %s
runtime-check-readonly.ll
1
; RUN: opt < %s -loop-vectorize -force-vector-
unroll
=1 -force-vector-width=4 -dce -instcombine -S | FileCheck %s
runtime-check.ll
1
; RUN: opt < %s -loop-vectorize -force-vector-
unroll
=1 -force-vector-width=4 -dce -instcombine -S | FileCheck %s
scalar-select.ll
1
; RUN: opt < %s -loop-vectorize -force-vector-
unroll
=1 -force-vector-width=4 -dce -instcombine -S | FileCheck %s
simple-unroll.ll
1
; RUN: opt < %s -loop-vectorize -force-vector-width=4 -force-vector-
unroll
=2 -dce -instcombine -S | FileCheck %s
small-loop.ll
1
; RUN: opt < %s -loop-vectorize -force-vector-
unroll
=1 -force-vector-width=4 -dce -instcombine -S | FileCheck %s
Completed in 140 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>