aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Vectorize/LoopVectorize.cpp
Commit message (Expand)AuthorAgeFilesLines
* LoopVectorize: Refactor the code that vectorizes loads/stores to remove dupli...Nadav Rotem2013-01-251-145/+113
* LoopVectorize: Simplify code. No functionality change.Benjamin Kramer2013-01-251-26/+17
* LoopVectorizer: Refactor more code to use the IRBuilder. Nadav Rotem2013-01-251-24/+25
* Refactor some code to use the IRBuilder.Nadav Rotem2013-01-251-20/+21
* Add support for reverse pointer induction variables. These are loops that con...Nadav Rotem2013-01-231-7/+82
* Fix a comment. Induction vars dont need to start at zero.Nadav Rotem2013-01-211-1/+1
* LoopVectorize: Fix a C++11 incompatibility.Benjamin Kramer2013-01-201-1/+1
* Fix a build error.Nadav Rotem2013-01-201-2/+3
* LoopVectorizer: Implement a new heuristics for selecting the unroll factor.Nadav Rotem2013-01-201-22/+65
* LoopVectorizer: Emit memory checks into their own basic block.Benjamin Kramer2013-01-191-33/+53
* LoopVectorizer cost model. Honor the user command line flag that selects the ...Nadav Rotem2013-01-151-1/+1
* Fix PR14547. Handle induction variables of small sizes smaller than i32 (i8 a...Nadav Rotem2013-01-131-0/+3
* ARM Cost Model: We need to detect the max bitwidth of types in the loop in o...Nadav Rotem2013-01-111-6/+12
* LoopVectorizer: Fix a bug in the vectorization of BinaryOperators. The Binary...Nadav Rotem2013-01-101-4/+4
* ARM Cost model: Use the size of vector registers and widest vectorizable inst...Nadav Rotem2013-01-091-3/+48
* Cost Model: Move the 'max unroll factor' variable to the TTI and add initial ...Nadav Rotem2013-01-091-3/+2
* Code cleanup: refactor the switch statements in the generation of reduction v...Nadav Rotem2013-01-081-59/+28
* Rename the enum members to match the LLVM coding style.Nadav Rotem2013-01-081-25/+25
* LoopVectorizer: Add support for floating point reductionsNadav Rotem2013-01-071-58/+91
* LoopVectorizer: When we vectorizer and widen loops we process many elements a...Nadav Rotem2013-01-071-3/+15
* Simplify LoopVectorize to require target transform info and rely on itChandler Carruth2013-01-071-55/+43
* Merge the unused header file for LoopVectorizer into the source file.Chandler Carruth2013-01-071-3/+519
* Fix the enumerator names for ShuffleKind to match tho coding standards,Chandler Carruth2013-01-071-2/+2
* Move TargetTransformInfo to live under the Analysis library. This noChandler Carruth2013-01-071-1/+1
* Switch the loop vectorizer from VTTI to just use TTI directly.Chandler Carruth2013-01-051-49/+45
* iLoopVectorize: Non commutative operators can be used as reduction variables ...Nadav Rotem2013-01-051-4/+13
* Do not vectorize loops with subtraction reductionsPaul Redmond2013-01-041-1/+0
* Fix a warningNadav Rotem2013-01-041-2/+2
* LoopVectorizer:Nadav Rotem2013-01-041-4/+162
* LoopVectorizer: Add support for loop-unrolling during vectorization for incre...Nadav Rotem2013-01-031-155/+267
* Avoid vectorization when the function has the "noimplicitflot" attribute.Nadav Rotem2013-01-021-3/+11
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-021-10/+10
* Add IRBuilder::CreateVectorSplat and use it to simplify code.Benjamin Kramer2013-01-011-12/+1
* Remove the Function::getFnAttributes method in favor of using the AttributeSetBill Wendling2012-12-301-1/+2
* LoopVectorizer: Fix a bug in the code that updates the loop exiting block.Nadav Rotem2012-12-301-0/+13
* If all of the write objects are identified then we can vectorize the loop eve...Nadav Rotem2012-12-261-1/+5
* LoopVectorizer: Optimize the vectorization of consecutive memory access when ...Nadav Rotem2012-12-261-22/+63
* LoopVectorize: Enable vectorization of the fmuladd intrinsicHal Finkel2012-12-251-0/+1
* LoopVectorizer: When checking for vectorizable types, also checkNadav Rotem2012-12-241-1/+8
* LoopVectorizer: Fix an endless loop in the code that looks for reductions.Nadav Rotem2012-12-241-7/+8
* LoopVectorize: Fix accidentaly inverted condition.Benjamin Kramer2012-12-231-1/+1
* LoopVectorize: For scalars and void types there is no need to compute vector ...Benjamin Kramer2012-12-231-12/+10
* Loop Vectorizer: Update the cost model of scatter/gather operations and makeNadav Rotem2012-12-231-13/+29
* Change 'AttrVal' to 'AttrKind' to better reflect that it's a kind of attribut...Bill Wendling2012-12-221-1/+1
* Remove duplicate includes.Roman Divacky2012-12-211-1/+0
* Enable if-conversion.Nadav Rotem2012-12-211-1/+1
* Fix a bug in the code that checks if we can vectorize loops while using dynamicNadav Rotem2012-12-211-19/+24
* LoopVectorize: Fix a bug in the scalarization of instructions.Nadav Rotem2012-12-201-1/+1
* Loop Vectorizer: turn-off if-conversion.Nadav Rotem2012-12-201-1/+1
* Loop Vectorizer: Enable if-conversion.Nadav Rotem2012-12-201-1/+1