aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Vectorize/LoopVectorize.cpp
AgeCommit message (Expand)Author
2012-12-04Add support for reduction variables when IF-conversion is enabled. Nadav Rotem
2012-12-04Give scalar if-converted blocks half the score because they are not always ex...Nadav Rotem
2012-12-04Add the last part that is needed for vectorization of if-converted code.Nadav Rotem
2012-12-04LoopVectorize.cpp: Suppress a warning. [-Wunused-variable]NAKAMURA Takumi
2012-12-04Fix whitespace.NAKAMURA Takumi
2012-12-03minor renaming, documentation and cleanups.Nadav Rotem
2012-12-03IF-conversion: teach the cost-model how to grade if-converted loops.Nadav Rotem
2012-12-03Now that we have a basic if-conversion infrastructure we can rename theNadav Rotem
2012-12-03Add initial support for IF-conversion. This patch implements the first 1/3,Nadav Rotem
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth
2012-11-30minor cleanupsNadav Rotem
2012-11-30Remove the use of LPPassManager. We can remove LPM because we dont need to ru...Nadav Rotem
2012-11-29When broadcasting invariant scalars into vectors, place the broadcast code in...Nadav Rotem
2012-11-26Move the code that uses SCEVs prior to creating the new loops. Nadav Rotem
2012-11-25Move the max vector width to a constant parameter. No functionality change.Nadav Rotem
2012-11-25Fix the document style.Nadav Rotem
2012-11-25Refactor the ptr runtime check generation code. No functionality change.Nadav Rotem
2012-11-25Rename method. No functionality change.Nadav Rotem
2012-11-25The induction-pointer work is inspired by a research paper. This commit adds ...Nadav Rotem
2012-11-25Add support for pointer induction variables even when there is no integer ind...Nadav Rotem
2012-11-17LoopVectorizer: Add initial support for pointer induction variables (for exam...Nadav Rotem
2012-11-16LoopVectorize: Division reductions generate incorrect code. Remove the part o...Nadav Rotem
2012-11-14use the getSplat API. Patch by Paul Redmond.Nadav Rotem
2012-11-11Fix a comment typo and add comments.Nadav Rotem
2012-11-09Add support for memory runtime check. When we can, we calculate array bounds.Nadav Rotem
2012-11-02Fix sign compare warning. Patch by Mahesha HS.Chandler Carruth
2012-10-31LoopVectorize: Preserve NSW, NUW and IsExact flags.Nadav Rotem
2012-10-31Put the threshold magic number in a variable.Nadav Rotem
2012-10-31Remove enum values since they are not used anymore.Nadav Rotem
2012-10-31LoopVectorize: Do not vectorize loops with tiny constant trip counts.Nadav Rotem
2012-10-31Add support for loops that don't start with Zero.Nadav Rotem
2012-10-30Add documentation.Nadav Rotem
2012-10-30LoopVectorize: Add support for write-only loops when the write destination is...Nadav Rotem
2012-10-30LoopVectorize: Fix a bug in the initialization of reduction variables. AND ne...Nadav Rotem
2012-10-30LoopVectorizer: change debug prints: Print the module identifier when decidin...Nadav Rotem
2012-10-29LoopVectorize: Update and preserve the dominator tree info.Nadav Rotem
2012-10-271. Fix a bug in getTypeConversion. When a *simple* type is split, we need to ...Nadav Rotem
2012-10-26Refactor the VectorTargetTransformInfo interface.Nadav Rotem
2012-10-25LoopVectorize: Teach the cost model to query scalar costs as scalar types and...Nadav Rotem
2012-10-25Add support for additional reduction variables: AND, OR, XOR.Nadav Rotem
2012-10-24Implement a basic cost model for vector and scalar instructions. Nadav Rotem
2012-10-24whitespaceNadav Rotem
2012-10-24LoopVectorizer: Add a basic cost model which uses the VTTI interface.Nadav Rotem
2012-10-24Back out r166591, not sure why this made it through since I cancelled the com...Micah Villmow
2012-10-24Delete a directory that wasn't supposed to be checked in yet.Micah Villmow
2012-10-23Use the AliasAnalysis isIdentifiedObj because it also understands mallocs and...Nadav Rotem
2012-10-22Don't crash if the load/store pointer is not a GEP.Nadav Rotem
2012-10-22Rename a variable.Nadav Rotem
2012-10-22Vectorizer: optimize the generation of selects. If the condition is uniform, ...Nadav Rotem
2012-10-22Update the loop vectorizer docs.Nadav Rotem