aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Vectorize
AgeCommit message (Expand)Author
2012-12-21BB-Vectorizer: Check the cost of the store pointer typeNadav Rotem
2012-12-21Fix a bug in the code that checks if we can vectorize loops while using dynamicNadav Rotem
2012-12-20LoopVectorize: Fix a bug in the scalarization of instructions.Nadav Rotem
2012-12-20Loop Vectorizer: turn-off if-conversion.Nadav Rotem
2012-12-20Loop Vectorizer: Enable if-conversion.Nadav Rotem
2012-12-20whitespaceNadav Rotem
2012-12-19LoopVectorize: Make iteration over induction variables not depend on pointer ...Benjamin Kramer
2012-12-19Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling
2012-12-18LoopVectorize: Emit reductions as log2(vectorsize) shuffles + vector ops inst...Benjamin Kramer
2012-12-13Enable the Loop Vectorizer by default for O2 and O3. Disable if-conversion by...Nadav Rotem
2012-12-13Teach the cost model about the optimization in r169904: Truncation of inducti...Nadav Rotem
2012-12-12Fix indentation.Nadav Rotem
2012-12-12LoopVectorizer: Use the "optsize" attribute to decide if we are allowed to in...Nadav Rotem
2012-12-12Fix the ascii drawing that was ruined when I split the H and CPPNadav Rotem
2012-12-12fix a typo.Nadav Rotem
2012-12-12LoopVectorizer: When -Os is used, vectorize only loops that dont require a ta...Nadav Rotem
2012-12-11PR14574. Fix a bug in the code that calculates the mask the converted PHIs in...Nadav Rotem
2012-12-11Loop Vectorize: optimize the vectorization of trunc(induction_var). The trunc...Nadav Rotem
2012-12-11Fix PR14565. Don't if-convert loops that have switch statements in them.Nadav Rotem
2012-12-10Split the LoopVectorizer into H and CPP.Nadav Rotem
2012-12-10Add support for reverse induction variables. For example:Nadav Rotem
2012-12-09LoopVectorize: support vectorizing intrinsic callsPaul Redmond
2012-12-09test commit.Paul Redmond
2012-12-04LoopVectorizer: Increase the number of pointers that can be tested at runtime...Nadav Rotem
2012-12-04Enable if-conversion during vectorization.Nadav Rotem
2012-12-04Fix a bug in vectorization of if-converted reduction variables. If theNadav Rotem
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-28BBVectorize: Correctly merge SubclassOptionalDataHal Finkel
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-14Replace std::vector -> SmallVector in BBVectorizeHal Finkel