aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Vectorize/LoopVectorize.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* Fix PR14565. Don't if-convert loops that have switch statements in them.Nadav Rotem2012-12-111-0/+4
* Split the LoopVectorizer into H and CPP.Nadav Rotem2012-12-101-951/+535
* Add support for reverse induction variables. For example:Nadav Rotem2012-12-101-90/+191
* LoopVectorize: support vectorizing intrinsic callsPaul Redmond2012-12-091-2/+55
* test commit.Paul Redmond2012-12-091-1/+1
* LoopVectorizer: Increase the number of pointers that can be tested at runtime...Nadav Rotem2012-12-041-1/+1
* Enable if-conversion during vectorization.Nadav Rotem2012-12-041-1/+1
* Fix a bug in vectorization of if-converted reduction variables. If theNadav Rotem2012-12-041-14/+20
* Add support for reduction variables when IF-conversion is enabled. Nadav Rotem2012-12-041-10/+23
* Give scalar if-converted blocks half the score because they are not always ex...Nadav Rotem2012-12-041-5/+5
* Add the last part that is needed for vectorization of if-converted code.Nadav Rotem2012-12-041-162/+251
* LoopVectorize.cpp: Suppress a warning. [-Wunused-variable]NAKAMURA Takumi2012-12-041-2/+2
* Fix whitespace.NAKAMURA Takumi2012-12-041-4/+3
* minor renaming, documentation and cleanups.Nadav Rotem2012-12-031-25/+21
* IF-conversion: teach the cost-model how to grade if-converted loops.Nadav Rotem2012-12-031-15/+26
* Now that we have a basic if-conversion infrastructure we can rename theNadav Rotem2012-12-031-18/+18
* Add initial support for IF-conversion. This patch implements the first 1/3,Nadav Rotem2012-12-031-134/+253
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-18/+19
* minor cleanupsNadav Rotem2012-11-301-8/+3
* Remove the use of LPPassManager. We can remove LPM because we dont need to ru...Nadav Rotem2012-11-301-10/+10
* When broadcasting invariant scalars into vectors, place the broadcast code in...Nadav Rotem2012-11-291-11/+29
* Move the code that uses SCEVs prior to creating the new loops. Nadav Rotem2012-11-261-32/+35
* Move the max vector width to a constant parameter. No functionality change.Nadav Rotem2012-11-251-5/+7
* Fix the document style.Nadav Rotem2012-11-251-3/+3
* Refactor the ptr runtime check generation code. No functionality change.Nadav Rotem2012-11-251-50/+66
* Rename method. No functionality change.Nadav Rotem2012-11-251-3/+3
* The induction-pointer work is inspired by a research paper. This commit adds ...Nadav Rotem2012-11-251-0/+4
* Add support for pointer induction variables even when there is no integer ind...Nadav Rotem2012-11-251-105/+182
* LoopVectorizer: Add initial support for pointer induction variables (for exam...Nadav Rotem2012-11-171-33/+126
* LoopVectorize: Division reductions generate incorrect code. Remove the part o...Nadav Rotem2012-11-161-2/+0
* use the getSplat API. Patch by Paul Redmond.Nadav Rotem2012-11-141-7/+1
* Fix a comment typo and add comments.Nadav Rotem2012-11-111-4/+5
* Add support for memory runtime check. When we can, we calculate array bounds.Nadav Rotem2012-11-091-33/+191
* Fix sign compare warning. Patch by Mahesha HS.Chandler Carruth2012-11-021-2/+2
* LoopVectorize: Preserve NSW, NUW and IsExact flags.Nadav Rotem2012-10-311-1/+12
* Put the threshold magic number in a variable.Nadav Rotem2012-10-311-1/+4
* Remove enum values since they are not used anymore.Nadav Rotem2012-10-311-6/+6
* LoopVectorize: Do not vectorize loops with tiny constant trip counts.Nadav Rotem2012-10-311-0/+8
* Add support for loops that don't start with Zero.Nadav Rotem2012-10-311-12/+19
* Add documentation.Nadav Rotem2012-10-301-0/+5
* LoopVectorize: Add support for write-only loops when the write destination is...Nadav Rotem2012-10-301-0/+7
* LoopVectorize: Fix a bug in the initialization of reduction variables. AND ne...Nadav Rotem2012-10-301-7/+21
* LoopVectorizer: change debug prints: Print the module identifier when decidin...Nadav Rotem2012-10-301-4/+6
* LoopVectorize: Update and preserve the dominator tree info.Nadav Rotem2012-10-291-9/+37
* 1. Fix a bug in getTypeConversion. When a *simple* type is split, we need to ...Nadav Rotem2012-10-271-1/+1
* Refactor the VectorTargetTransformInfo interface.Nadav Rotem2012-10-261-9/+52
* LoopVectorize: Teach the cost model to query scalar costs as scalar types and...Nadav Rotem2012-10-251-41/+61
* Add support for additional reduction variables: AND, OR, XOR.Nadav Rotem2012-10-251-7/+42
* Implement a basic cost model for vector and scalar instructions. Nadav Rotem2012-10-241-17/+32
* whitespaceNadav Rotem2012-10-241-3/+3