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
/
SLPVectorizer.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix PR16797 - Support PHINodes with multiple inputs from the same basic block.
Nadav Rotem
2013-08-12
1
-0
/
+11
*
SLPVectorizer: Fix PR16777. PHInodes may use multiple extracted values that c...
Nadav Rotem
2013-08-02
1
-10
/
+13
*
SLPVectorier: update the debug location for the new instructions.
Nadav Rotem
2013-07-29
1
-2
/
+22
*
Don't vectorize when the attribute NoImplicitFloat is used.
Nadav Rotem
2013-07-29
1
-0
/
+5
*
Update the comment
Nadav Rotem
2013-07-27
1
-0
/
+1
*
SLP Vectorier: Don't vectorize really short chains because they are already ...
Nadav Rotem
2013-07-26
1
-2
/
+6
*
SLP Vectorizer: Disable the vectorization of non power of two chains, such as...
Nadav Rotem
2013-07-26
1
-16
/
+0
*
When we vectorize across multiple basic blocks we may vectorize PHINodes that...
Nadav Rotem
2013-07-22
1
-3
/
+31
*
Delete unused helper functions.
Nadav Rotem
2013-07-22
1
-32
/
+0
*
Revert a part of r186420. Don't forbid multiple store chains that merge.
Nadav Rotem
2013-07-21
1
-3
/
+1
*
fix an 80-col line.
Nadav Rotem
2013-07-19
1
-2
/
+2
*
Use LLVMs ADTs that improve the compile time of this pass.
Nadav Rotem
2013-07-19
1
-2
/
+2
*
SLPVectorizer: Improve the compile time of isConsecutive by reordering the co...
Nadav Rotem
2013-07-19
1
-22
/
+19
*
Handle constants without going through SCEV.
Nadav Rotem
2013-07-18
1
-0
/
+6
*
SLPVectorizer: Speedup isConsecutive by manually checking GEPs with multiple ...
Nadav Rotem
2013-07-18
1
-4
/
+12
*
SLPVectorizer: Speedup isConsecutive (that checks if two addresses are consec...
Nadav Rotem
2013-07-18
1
-12
/
+31
*
Fix a comment.
Nadav Rotem
2013-07-17
1
-1
/
+1
*
Add a micro optimization to catch cases where the PtrA equals PtrB.
Nadav Rotem
2013-07-17
1
-1
/
+1
*
SLPVectorizer: Accelerate the isConsecutive check by replacing the subtractio...
Nadav Rotem
2013-07-17
1
-10
/
+5
*
flip the scev minus direction to simplify the code.
Nadav Rotem
2013-07-16
1
-3
/
+3
*
SLPVectorizer: Improve the compile time of isConsecutive by adding a simple c...
Nadav Rotem
2013-07-16
1
-0
/
+18
*
SLPVectorizer: Reduce the compile time of the consecutive store lookup.
Nadav Rotem
2013-07-16
1
-5
/
+13
*
PR16628: Fix a bug in the code that merges compares.
Nadav Rotem
2013-07-15
1
-1
/
+3
*
SLPVectorizer: change the order in which we search for vectorization candidat...
Nadav Rotem
2013-07-14
1
-4
/
+4
*
SLPVectorizer: Sink and enable CSE for ExtractElements.
Nadav Rotem
2013-07-12
1
-11
/
+25
*
SLPVectorize: Replace the code that checks for vectorization candidates in su...
Nadav Rotem
2013-07-12
1
-25
/
+22
*
Remove an argument that we dont use anymore.
Nadav Rotem
2013-07-11
1
-15
/
+12
*
Fix a warning.
Nadav Rotem
2013-07-11
1
-2
/
+1
*
SLPVectorizer: refactor the code that places extracts. Place the code that de...
Nadav Rotem
2013-07-11
1
-41
/
+131
*
Fix PR16571, which is a bug in the code that checks that all of the types in ...
Nadav Rotem
2013-07-09
1
-1
/
+3
*
Set the default insert point to the first instruction, and not to end()
Nadav Rotem
2013-07-09
1
-1
/
+1
*
This patch changes the saved IRBuilder insert point from BasicBlock::iterator...
Nadav Rotem
2013-07-08
1
-1
/
+2
*
Clear the builder insert point between tree-vectorization phases.
Nadav Rotem
2013-07-07
1
-0
/
+1
*
SLPVectorizer: Implement DCE as part of vectorization.
Nadav Rotem
2013-07-07
1
-1011
/
+1041
*
Use SmallVectorImpl::iterator/const_iterator instead of SmallVector to avoid ...
Craig Topper
2013-07-04
1
-1
/
+1
*
We preserve the CFG and some of the analysis passes.
Nadav Rotem
2013-06-29
1
-0
/
+3
*
Update docs.
Nadav Rotem
2013-06-29
1
-3
/
+2
*
SLP Vectorizer: Add support for trees with external users.
Nadav Rotem
2013-06-28
1
-24
/
+142
*
No need to use a Set when a vector would do.
Nadav Rotem
2013-06-27
1
-3
/
+3
*
SLP: When searching for vectorization opportunities scan the blocks in post-o...
Nadav Rotem
2013-06-26
1
-2
/
+4
*
SLP: Dont erase instructions during vectorization because it prevents the out...
Nadav Rotem
2013-06-26
1
-2
/
+0
*
Erase all of the instructions that we RAUWed
Nadav Rotem
2013-06-26
1
-0
/
+9
*
Do not add cse-ed instructions into the visited map because we dont want to c...
Nadav Rotem
2013-06-26
1
-5
/
+9
*
SLPVectorizer: support slp-vectorization of PHINodes between basic blocks
Nadav Rotem
2013-06-25
1
-1
/
+96
*
Fix a typo in the code that collected the costs recursively.
Nadav Rotem
2013-06-25
1
-1
/
+1
*
Rename the variable to fix a warning. Thanks Andy Gibbs.
Nadav Rotem
2013-06-24
1
-2
/
+2
*
SLP Vectorizer: Add support for vectorizing parts of the tree.
Nadav Rotem
2013-06-24
1
-5
/
+25
*
SLP Vectorizer: Fix a bug in the code that does CSE on the generated gather s...
Nadav Rotem
2013-06-23
1
-4
/
+10
*
SLP Vectorizer: Erase instructions outside the vectorizeTree method.
Nadav Rotem
2013-06-23
1
-3
/
+11
*
SLP Vectorizer: Implement a simple CSE optimization for the gather sequences.
Nadav Rotem
2013-06-23
1
-24
/
+45
[next]