aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms
AgeCommit message (Expand)Author
2012-10-24Update GVN to support vectors of pointers.Hal Finkel
2012-10-24LoopVectorizer: Add a basic cost model which uses the VTTI interface.Nadav Rotem
2012-10-24getSmallConstantTripMultiple should never return zero.Hal Finkel
2012-10-24Add in support for getIntPtrType to get the pointer type based on the address...Micah Villmow
2012-10-24Add a testcase that would have noticed the typo fixed in commit 166475.Duncan Sands
2012-10-23Use the AliasAnalysis isIdentifiedObj because it also understands mallocs and...Nadav Rotem
2012-10-23Ignore unreachable blocks when doing memory dependence analysis on non-localBill Wendling
2012-10-23Transform code like thisDuncan Sands
2012-10-22Don't crash if the load/store pointer is not a GEP.Nadav Rotem
2012-10-22Revert r166407 because it caused analyzer tests to crash and broke self-host ...Argyrios Kyrtzidis
2012-10-22BBVectorize should ignore unreachable blocks.Hal Finkel
2012-10-22Vectorizer: optimize the generation of selects. If the condition is uniform, ...Nadav Rotem
2012-10-22Reapply r166405, teaching tailcallelim to be smarter about nocapture, with aNick Lewycky
2012-10-22Revert r166405, "Teach TailRecursionElimination to consider 'nocapture' when ...NAKAMURA Takumi
2012-10-21Teach TailRecursionElimination to consider 'nocapture' when deciding whetherNick Lewycky
2012-10-21DataLayout should use itself when calculating the size of a vector.Hal Finkel
2012-10-21Revert r166390 "LoopIdiom: Replace custom dependence analysis with LoopDepend...Benjamin Kramer
2012-10-21LoopIdiom: Replace custom dependence analysis with LoopDependenceAnalysis.Benjamin Kramer
2012-10-21Fix a bug in the vectorization of wide load/store operations.Nadav Rotem
2012-10-21Add support for reduction variables that do not start at zero.Nadav Rotem
2012-10-21Vectorizer: fix a bug in the classification of induction/reduction phis.Nadav Rotem
2012-10-20Fix an infinite loop in the loop-vectorizer.Nadav Rotem
2012-10-20InstCombine: Fix an edge case where constant icmps could sneak into ConstantF...Benjamin Kramer
2012-10-20Vectorize: teach cavVectorizeMemory to distinguish between A[i]+=x and A[B[i]...Nadav Rotem
2012-10-19Vectorizer: Add support for loop reductions.Nadav Rotem
2012-10-19SimplifyLibcalls: The return value of ffsll is always i32, even when the inpu...Benjamin Kramer
2012-10-19Indvars: Don't recursively delete instruction during BB iteration.Benjamin Kramer
2012-10-19SCEVExpander: Don't crash when trying to merge two constant phis.Benjamin Kramer
2012-10-19vectorizer: Add support for reading and writing from the same memory location.Nadav Rotem
2012-10-18instcombine: Migrate strcpy optimizationsMeador Inge
2012-10-18Vectorizer: Add support for loops with an unknown count. For example:Nadav Rotem
2012-10-17Add a loop vectorizer.Nadav Rotem
2012-10-17This just in, it is a *bad idea* to use 'udiv' on an offset ofChandler Carruth
2012-10-16[InstCombine] Teach InstCombine how to handle an obfuscated splat.Michael Gottesman
2012-10-15Update the memcpy rewriting to fully support widened int rewriting. ThisChandler Carruth
2012-10-15Follow-up fix to r165928: handle memset rewriting for widened integers,Chandler Carruth
2012-10-15First major step toward addressing PR14059. This teaches SROA to handleChandler Carruth
2012-10-15instcombine: Migrate strcmp and strncmp optimizationsMeador Inge
2012-10-13instcombine: Migrate strchr and strrchr optimizationsMeador Inge
2012-10-13instcombine: Migrate strcat and strncat optimizationsMeador Inge
2012-10-13Teach SROA to cope with wrapper aggregates. These show up a lot in ABIChandler Carruth
2012-10-11Don't crash when !tbaa.struct contents is invalid.Nick Lewycky
2012-10-10Add the testcase from pr13254 (the old scalarreply pass handles this wrong;Duncan Sands
2012-10-09New EarlyCSE tests for CSE-ing across commutativity.Michael Ilseman
2012-10-09Fix PR14016.Alexey Samsonov
2012-10-09Fix PR14034, an infloop / heap corruption / crash bug in the new SROA.Chandler Carruth
2012-10-08Move TargetData to DataLayout.Micah Villmow
2012-10-05Teach the new SROA a new trick. Now we zap any memcpy or memmoves whichChandler Carruth
2012-10-04SimplifyCFG: Enhance the "remove CFG edge that leads to null pointer derefere...Benjamin Kramer
2012-10-04In my recent change to avoid use of underaligned memory I didn't notice thatDuncan Sands