summaryrefslogtreecommitdiff
path: root/test/Transforms
Commit message (Expand)AuthorAge
...
* fix a really nasty basicaa mod/ref calculation bug that was causing miscompil...Chris Lattner2011-05-23
* Transform any logical shift of a power of two into an exact/NUW shift whenChris Lattner2011-05-23
* Teach valuetracking that byval arguments with a specified alignment areChris Lattner2011-05-23
* implement PR9315, constant folding exp2 in terms of pow (since hosts withoutChris Lattner2011-05-22
* Carve out a place in instcombine to put transformations which work knowing th...Chris Lattner2011-05-22
* Fix PR9815: I was trying to get out of "generating code and thenChris Lattner2011-05-22
* Add a parameter to ConstantFoldTerminator() that callers can use to ask it to...Frits van Bommel2011-05-22
* fix PR9856, an incorrectly conservative assertion: a global can beChris Lattner2011-05-22
* fix PR9841 by having GVN not process dead loads. This wasChris Lattner2011-05-22
* remove a trivial test, make some other tests less trivial.Chris Lattner2011-05-22
* make this test less trivial.Chris Lattner2011-05-22
* Commit test change, forgotten as part of r131838.Nick Lewycky2011-05-22
* Teach the inliner to emit llvm.lifetime.start/end, to scope the local variablesNick Lewycky2011-05-22
* Fix grammar in test.Nick Lewycky2011-05-22
* Revert "InstCombine: Turn mul.with.overflow(X, 2) into the cheaper add.with.o...Benjamin Kramer2011-05-21
* InstCombine: Turn mul.with.overflow(X, 2) into the cheaper add.with.overflow(...Benjamin Kramer2011-05-21
* Revert r131664 and fix it in instcombine instead. rdar://9467055Evan Cheng2011-05-20
* Move test to Transforms/InstCombine.Stuart Hastings2011-05-19
* Add test for PR9946.Rafael Espindola2011-05-19
* More instcombine cleanup, towards improving debug line info.Eli Friedman2011-05-18
* When forming an ICmpZero LSRUse, normalize the non-IV operandDan Gohman2011-05-18
* More instcombine cleanup aimed towards improving debug line info.Eli Friedman2011-05-18
* Start trying to make InstCombine preserve more debug info. The idea here is ...Eli Friedman2011-05-18
* Drop lli, revise test.Stuart Hastings2011-05-17
* Don't do tail calls in a function that call setjmp. The stack might beRafael Espindola2011-05-16
* Disable test harder.Benjamin Kramer2011-05-14
* Disable this test while I revise it. rdar://problem/9267970Stuart Hastings2011-05-14
* SimplifyCFG: Use ComputeMaskedBits to prune dead cases from switch instructions.Benjamin Kramer2011-05-14
* Avoid combining GEPs that might overflow at runtime.Stuart Hastings2011-05-14
* The comparision "max(x,y)==x" is equivalent to "x>=y". Since the max isDuncan Sands2011-05-07
* Move few target-dependant tests to appropriate directories.Galina Kistanova2011-05-06
* Fix PR9820: a read-only call differs from a load in that a load doesn'tDuncan Sands2011-05-06
* PR9838: Fix transform introduced in r127064 to not trigger when only one side...Eli Friedman2011-05-05
* Add variations on: max(x,y) >= min(x,z) folds to true. This isn't that common,Duncan Sands2011-05-04
* Implement some basic simplifications involving min/max, for exampleDuncan Sands2011-05-03
* Fix PR9579: when simplifying a compare to "true" or "false", and it wasDuncan Sands2011-05-02
* Move some rem transforms out of instcombine and into instsimplify.Duncan Sands2011-05-02
* InstCombine: Turn (zext A) udiv (zext B) into (zext (A udiv B)). Same for ure...Benjamin Kramer2011-04-30
* Use SimplifyDemandedBits on div instructions.Benjamin Kramer2011-04-30
* FileCheckize.Benjamin Kramer2011-04-30
* SimplifyCFG: Expose phi node folding cost threshold as command line parameterPeter Collingbourne2011-04-29
* SimplifyCFG: Add CostRemaining parameter to DominatesMergePointPeter Collingbourne2011-04-29
* SimplifyCFG: Add Trunc, ZExt and SExt to the list of cheap instructions for p...Peter Collingbourne2011-04-29
* InstCombine: turn (C1 << A) << C2) into (C1 << C2) << A)Benjamin Kramer2011-04-29
* final step needed to resolve PR6627, which allows us to flatten the code down toChris Lattner2011-04-28
* InstCombine: Merge "(trunc x) == C1 & (and x, CA) == C2" into a single and+icmp.Benjamin Kramer2011-04-28
* teach GVN to widen integer loads when they are overaligned, when doing an Chris Lattner2011-04-28
* Fixes PR9730: indvars: An asserting value handle still pointed to this valueAndrew Trick2011-04-27
* Simplify cfg inserts a call to trap when unreachable code is detected. Assign...Devang Patel2011-04-27
* remove support for llvm.invariant.end from memdep. It is a Chris Lattner2011-04-26