| Age | Commit message (Expand) | Author |
| 2010-11-29 | Add some dead stores to pacify my least favorite GCC warning: may be | Chandler Carruth |
| 2010-11-23 | Expand a little on the description of what InstructionSimplify does. | Duncan Sands |
| 2010-11-22 | If a GEP index simply advances by multiples of a type of zero size, | Duncan Sands |
| 2010-11-22 | Move the "gep undef" -> "undef" transform from instcombine to | Duncan Sands |
| 2010-11-21 | Add a rather pointless InstructionSimplify transform, inspired by recent cons... | Duncan Sands |
| 2010-11-19 | Remove threading of Xor over selects and phis, with an explanation | Duncan Sands |
| 2010-11-17 | Move some those Xor simplifications which don't require creating new | Duncan Sands |
| 2010-11-17 | Previously SimplifyInstruction could report that an instruction | Duncan Sands |
| 2010-11-17 | Fix a layering violation: hasConstantValue, which is part of the PHINode | Duncan Sands |
| 2010-11-16 | In which I discover the existence of loops. Threading an operation | Duncan Sands |
| 2010-11-15 | Teach InstructionSimplify the trick of skipping incoming phi | Duncan Sands |
| 2010-11-14 | If dom tree information is available, make it possible to pass | Duncan Sands |
| 2010-11-14 | Teach InstructionSimplify about phi nodes. I chose to have it simply | Duncan Sands |
| 2010-11-14 | Strip trailing whitespace. | Duncan Sands |
| 2010-11-10 | Reduce the maximum recursion depth, 5 seems pointlessly too much. | Duncan Sands |
| 2010-11-10 | Teach InstructionSimplify how to look through PHI nodes. Since PHI | Duncan Sands |
| 2010-11-10 | Simplify binary operations where one operand is a select instruction. | Duncan Sands |
| 2010-11-09 | Factorize code, no functionality change. | Duncan Sands |
| 2010-11-07 | Add simplification of floating point comparisons with the result | Duncan Sands |
| 2010-11-07 | Fix a README item: when doing a comparison with the result | Duncan Sands |
| 2010-09-16 | Revert r114097, adding back in the assertion against replacing an Instruction... | Owen Anderson |
| 2010-09-16 | Fix PR8161, in which an unreachable loop causes recursive instruction simplif... | Owen Anderson |
| 2010-09-10 | Teach InstructionSimplify to fold (A & B) & A -> A & B and (A | B) | A -> A | B. | Benjamin Kramer |
| 2010-07-15 | Fix PR7647, handling the case when 'To' ends up being | Chris Lattner |
| 2010-07-15 | Revert r108401; it breaks bootstrap :( | Eli Friedman |
| 2010-07-15 | Add AssertingVH which makes PR7647 break consistently. | Eli Friedman |
| 2010-04-20 | move some select simplifications out out instcombine into | Chris Lattner |
| 2010-03-03 | fix incorrect folding of icmp with undef, PR6481. | Chris Lattner |
| 2010-02-22 | Constant-fold certain comparisons with infinity and negative infinity. | Dan Gohman |
| 2009-11-27 | factor some logic out of instcombine into a new SimplifyAddInst method. | Chris Lattner |
| 2009-11-27 | factor some instcombine simplifications for getelementptr out to a new | Chris Lattner |
| 2009-11-10 | move some generally useful functions out of jump threading | Chris Lattner |
| 2009-11-10 | I misread the parens, not so redundant after all. | Chris Lattner |
| 2009-11-10 | remove some redundant parens. | Chris Lattner |
| 2009-11-10 | add a new SimplifyInstruction API, which is like ConstantFoldInstruction, | Chris Lattner |
| 2009-11-10 | factor simplification logic for AND and OR out to InstSimplify from instcombine. | Chris Lattner |
| 2009-11-09 | pull a bunch of logic out of instcombine into instsimplify for compare | Chris Lattner |
| 2009-11-09 | rename SimplifyCompare -> SimplifyCmpInst and split it into | Chris Lattner |
| 2009-11-09 | fix ConstantFoldCompareInstOperands to take the LHS/RHS as | Chris Lattner |
| 2009-11-09 | stub out a new libanalysis "instruction simplify" interface that | Chris Lattner |