aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms
AgeCommit message (Expand)Author
2013-01-09Consider expression "0.0 - X" as the negation of X ifShuxin Yang
2013-01-08Make sure we don't emit instructions before a landingpad instruction.Bill Wendling
2013-01-07LoopVectorizer: Add support for floating point reductionsNadav Rotem
2013-01-07LoopVectorizer: When we vectorizer and widen loops we process many elements a...Nadav Rotem
2013-01-07This change is to implement following rules:Shuxin Yang
2013-01-07When code size is the priority (Oz, MinSize attribute), help llvmQuentin Colombet
2013-01-07Switch the SCEV expander and LoopStrengthReduce to useChandler Carruth
2013-01-07Fix a mistaken commit that included some debugging code.David Tweed
2013-01-07There was a switch fall-through in the parser for textual LLVM that causedDavid Tweed
2013-01-07Switch BBVectorize to directly depend on having a TTI analysis.Chandler Carruth
2013-01-06Fix a crash in LSR replaceCongruentIVs.Andrew Trick
2013-01-05Fix a typo. Remove the duplicated test.Nadav Rotem
2013-01-05iLoopVectorize: Non commutative operators can be used as reduction variables ...Nadav Rotem
2013-01-05Force a fixed unroll count on the target independent tests.Nadav Rotem
2013-01-04tabs-to-spacesAndrew Trick
2013-01-04Do not vectorize loops with subtraction reductionsPaul Redmond
2013-01-04Memory Dependence Analysis: fix a miscompile that uses DT to approxmiate theManman Ren
2013-01-04LoopVectorizer:Nadav Rotem
2013-01-03LoopVectorizer: Test the unrolling flag.Nadav Rotem
2013-01-02Avoid vectorization when the function has the "noimplicitflot" attribute.Nadav Rotem
2013-01-01Tests: rewrite 'opt ... %s' to 'opt ... < %s' so that opt does not emit a Mod...Dmitri Gribenko
2013-01-01Tests: rewrite 'opt ... %s' to 'opt ... < %s' so that opt does not emit a Mod...Dmitri Gribenko
2013-01-01Make opt grab the triple from the module and use it to initialize the target ...Nadav Rotem
2012-12-31recommit r171298 (add support for PHI nodes to ObjectSizeOffsetVisitor). Hope...Nuno Lopes
2012-12-31Revert "add support for PHI nodes to ObjectSizeOffsetVisitor"Benjamin Kramer
2012-12-31Add extra CHECK to make sure that 'or' instruction was replaced.Jakub Staszak
2012-12-31add support for PHI nodes to ObjectSizeOffsetVisitorNuno Lopes
2012-12-31Fix LICM's memory promotion optimization to preserve TBAA tags whenChris Lattner
2012-12-31teach instcombine to preserve TBAA tag when merging two stores, part ofChris Lattner
2012-12-31Transform (A == C1 || A == C2) into (A & ~(C1 ^ C2)) == C1Jakub Staszak
2012-12-30LoopVectorizer: Fix a bug in the code that updates the loop exiting block.Nadav Rotem
2012-12-30Tests: rewrite 'opt ... %s' to 'opt ... < %s' so that opt does not emit a Mod...Dmitri Gribenko
2012-12-30Tests: rewrite 'opt ... %s' to 'opt ... < %s' so that opt does not emit a Mod...Dmitri Gribenko
2012-12-30llvm/test/Transforms/GVN/null-aliases-nothing.ll: Fix a RUN line not to emit ...NAKAMURA Takumi
2012-12-28Fix a stunning oversight in the inline cost analysis. It was neverChandler Carruth
2012-12-28Teach the inline cost analysis about calls that can be simplified andChandler Carruth
2012-12-28Teach instsimplify to use the constant folder where appropriate forChandler Carruth
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-26BBVectorize: Use VTTI to compute costs for intrinsics vectorizationHal Finkel
2012-12-25LoopVectorize: Enable vectorization of the fmuladd intrinsicHal Finkel
2012-12-25BBVectorize: Enable vectorization of the fmuladd intrinsicHal Finkel
2012-12-24Fix typo "Makre" -> "Make".Nick Lewycky
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-23CostModel: Change the default target-independent implementation for findingNadav Rotem
2012-12-23Loop Vectorizer: Update the cost model of scatter/gather operations and makeNadav 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-20Add a new attribute, 'noduplicate'. If a function contains a noduplicate call...James Molloy