index
:
external_llvm
replicant-6.0
external/llvm
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib
/
Transforms
/
Vectorize
/
LoopVectorize.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
LoopVectorizer: Improve reduction variable identification
Arnold Schwaighofer
2013-05-07
1
-84
/
+132
*
LoopVectorize: getConsecutiveVector must respect signed arithmetic
Arnold Schwaighofer
2013-05-07
1
-5
/
+6
*
Update the comment to mention that we use TTI.
Nadav Rotem
2013-05-06
1
-3
/
+3
*
LoopVectorize: Print values instead of pointers in debug output.
Benjamin Kramer
2013-05-05
1
-4
/
+4
*
LoopVectorize: Add support for floating point min/max reductions
Arnold Schwaighofer
2013-05-05
1
-22
/
+69
*
LoopVectorizer: Cleanup of miminimum/maximum pattern match code
Arnold Schwaighofer
2013-05-05
1
-2
/
+2
*
LoopVectorize: We don't need an identity element for min/max reductions
Arnold Schwaighofer
2013-05-05
1
-32
/
+19
*
Add ArrayRef constructor from None, and do the cleanups that this constructor...
Dmitri Gribenko
2013-05-05
1
-1
/
+1
*
LoopVectorizer: Add support for if-conversion of PHINodes with 3+ incoming va...
Nadav Rotem
2013-05-03
1
-20
/
+29
*
LoopVectorizer: Calculate the number of pointers to disambiguate at runtime ...
Nadav Rotem
2013-04-26
1
-4
/
+11
*
LoopVectorizer: No need to generate pointer disambiguation checks between rea...
Nadav Rotem
2013-04-25
1
-4
/
+12
*
LoopVectorizer: Change variable name Stride to ConsecutiveStride
Arnold Schwaighofer
2013-04-24
1
-6
/
+6
*
LoopVectorize: Scalarize padded types
Arnold Schwaighofer
2013-04-24
1
-1
/
+9
*
LoopVectorizer: Bail out if we don't have datalayout we need it
Arnold Schwaighofer
2013-04-24
1
-0
/
+5
*
LoopVectorizer: Fix 15830. When scalarizing and unrolling stores make sure th...
Nadav Rotem
2013-04-23
1
-4
/
+4
*
Call the potentially costly isAnnotatedParallel() only once.
Pekka Jaaskelainen
2013-04-23
1
-3
/
+5
*
Refuse to (even try to) vectorize loops which have uniform writes,
Pekka Jaaskelainen
2013-04-23
1
-9
/
+9
*
LoopVectorizer: Use matcher from PatternMatch.h for the min/max patterns
Arnold Schwaighofer
2013-04-19
1
-104
/
+102
*
Fix a -Wdocumentation warning
Dmitri Gribenko
2013-04-18
1
-1
/
+1
*
LoopVectorizer: Recognize min/max reductions
Arnold Schwaighofer
2013-04-18
1
-34
/
+209
*
LoopVectorize: Use a set to avoid longer cycles in the reduction chain too.
Benjamin Kramer
2013-04-18
1
-8
/
+6
*
LoopVectorizer: integer division is not a reduction operation
Arnold Schwaighofer
2013-04-12
1
-2
/
+0
*
LoopVectorizer: Pass OperandValueKind information to the cost model
Arnold Schwaighofer
2013-04-04
1
-2
/
+13
*
LoopVectorize: Invert case when we use a vector cmp value to query select cost
Arnold Schwaighofer
2013-03-14
1
-1
/
+1
*
Remove a source of nondeterminism from the LoopVectorizer.
Benjamin Kramer
2013-03-09
1
-1
/
+1
*
LoopVectorizer: Ignore all dbg intrinisic
Arnold Schwaighofer
2013-03-09
1
-6
/
+6
*
LoopVectorizer: Ignore dbg.value instructions
Arnold Schwaighofer
2013-03-09
1
-2
/
+11
*
Insert the reduction start value into the first bypass block to preserve domi...
Benjamin Kramer
2013-03-08
1
-1
/
+1
*
PR14448 - prevent the loop vectorizer from vectorizing the same loop twice.
Nadav Rotem
2013-03-02
1
-0
/
+18
*
LoopVectorize: Don't hang forever if a PHI only has skipped PHI uses.
Benjamin Kramer
2013-03-01
1
-1
/
+8
*
LoopVectorize: Vectorize math builtin calls.
Benjamin Kramer
2013-02-27
1
-50
/
+137
*
Allow GlobalValues to vectorize with AliasAnalysis
Renato Golin
2013-02-21
1
-35
/
+154
*
LoopVectorize: Simplify code for clarity.
Benjamin Kramer
2013-02-13
1
-10
/
+8
*
Metadata for annotating loops as parallel. The first consumer for this
Pekka Jaaskelainen
2013-02-13
1
-0
/
+8
*
Typos.
Jakob Stoklund Olesen
2013-02-08
1
-4
/
+4
*
ARM cost model: Address computation in vector mem ops not free
Arnold Schwaighofer
2013-02-08
1
-8
/
+14
*
Test Commit
Michael Kuperstein
2013-02-08
1
-1
/
+1
*
fix 80-col violation and fix the docs.
Nadav Rotem
2013-02-07
1
-3
/
+7
*
Loop Vectorizer: Refactor Memory Cost Computation
Arnold Schwaighofer
2013-02-07
1
-180
/
+52
*
Loop Vectorizer: Refactor code to compute vectorized memory instruction cost
Arnold Schwaighofer
2013-02-05
1
-79
/
+178
*
Loop Vectorizer: Handle pointer stores/loads in getWidestType()
Arnold Schwaighofer
2013-02-05
1
-9
/
+31
*
LoopVectorize: convert TinyTripCountVectorThreshold constant
Pekka Jaaskelainen
2013-01-29
1
-1
/
+3
*
LoopVectorize: Clean up ValueMap a bit and avoid double lookups.
Benjamin Kramer
2013-01-29
1
-10
/
+12
*
Vectorization Factor clarification
Renato Golin
2013-01-28
1
-17
/
+24
*
LoopVectorize: Refactor the code that vectorizes loads/stores to remove dupli...
Nadav Rotem
2013-01-25
1
-145
/
+113
*
LoopVectorize: Simplify code. No functionality change.
Benjamin Kramer
2013-01-25
1
-26
/
+17
*
LoopVectorizer: Refactor more code to use the IRBuilder.
Nadav Rotem
2013-01-25
1
-24
/
+25
*
Refactor some code to use the IRBuilder.
Nadav Rotem
2013-01-25
1
-20
/
+21
*
Add support for reverse pointer induction variables. These are loops that con...
Nadav Rotem
2013-01-23
1
-7
/
+82
*
Fix a comment. Induction vars dont need to start at zero.
Nadav Rotem
2013-01-21
1
-1
/
+1
[next]