aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Vectorize/LoopVectorize.cpp
AgeCommit message (Expand)Author
2013-01-03LoopVectorizer: Add support for loop-unrolling during vectorization for incre...Nadav Rotem
2013-01-02Avoid vectorization when the function has the "noimplicitflot" attribute.Nadav Rotem
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth
2013-01-01Add IRBuilder::CreateVectorSplat and use it to simplify code.Benjamin Kramer
2012-12-30Remove the Function::getFnAttributes method in favor of using the AttributeSetBill Wendling
2012-12-30LoopVectorizer: Fix a bug in the code that updates the loop exiting block.Nadav Rotem
2012-12-26If all of the write objects are identified then we can vectorize the loop eve...Nadav Rotem
2012-12-26LoopVectorizer: Optimize the vectorization of consecutive memory access when ...Nadav Rotem
2012-12-25LoopVectorize: Enable vectorization of the fmuladd intrinsicHal Finkel
2012-12-24LoopVectorizer: When checking for vectorizable types, also checkNadav Rotem
2012-12-24LoopVectorizer: Fix an endless loop in the code that looks for reductions.Nadav Rotem
2012-12-23LoopVectorize: Fix accidentaly inverted condition.Benjamin Kramer
2012-12-23LoopVectorize: For scalars and void types there is no need to compute vector ...Benjamin Kramer
2012-12-23Loop Vectorizer: Update the cost model of scatter/gather operations and makeNadav Rotem
2012-12-22Change 'AttrVal' to 'AttrKind' to better reflect that it's a kind of attribut...Bill Wendling
2012-12-21Remove duplicate includes.Roman Divacky
2012-12-21Enable if-conversion.Nadav 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-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