| Age | Commit message (Expand) | Author |
| 2009-11-15 | Teach instcombine to look for booleans in wider integers when it encounters a | Nick Lewycky |
| 2009-11-14 | Remove LLVMContext from reassociate. It was threaded through every function but | Nick Lewycky |
| 2009-11-14 | Add an option for running GVN with redundant load processing disabled. | Dan Gohman |
| 2009-11-12 | Re-enable this code, since redundant PHIs are now being better nuked. | Owen Anderson |
| 2009-11-12 | use isInstructionTriviallyDead, as pointed out by Duncan | Chris Lattner |
| 2009-11-12 | implement a nice little efficiency hack in the inliner. Since we're now | Chris Lattner |
| 2009-11-12 | - Teach LSR to avoid changing cmp iv stride if it will create an immediate that | Evan Cheng |
| 2009-11-12 | use getPredicateOnEdge to fold comparisons through PHI nodes, | Chris Lattner |
| 2009-11-12 | various fixes to the lattice transfer functions. | Chris Lattner |
| 2009-11-12 | switch jump threading to use getPredicateOnEdge in one place | Chris Lattner |
| 2009-11-12 | Add the braces gcc suggested. | Daniel Dunbar |
| 2009-11-12 | with the new code we can thread non-instruction values. This | Chris Lattner |
| 2009-11-12 | this argument can be an arbitrary value, it doesn't need to be an instruction. | Chris Lattner |
| 2009-11-12 | expose edge information and switch j-t to use it. | Chris Lattner |
| 2009-11-11 | pass TD into a SimplifyCmpInst call. Add another case that | Chris Lattner |
| 2009-11-11 | Don't trivially delete unused calls to llvm.invariant.start. This allows | Duncan Sands |
| 2009-11-11 | remove the now dead condprop pass, PR3906. | Chris Lattner |
| 2009-11-11 | stub out some LazyValueInfo interfaces, and have JumpThreading | Chris Lattner |
| 2009-11-11 | add a fixme | Chris Lattner |
| 2009-11-11 | Block terminator may be a switch. | Evan Cheng |
| 2009-11-10 | Implement support to debug inlined functions. | Devang Patel |
| 2009-11-10 | implement a TODO by teaching jump threading about "xor x, 1". | Chris Lattner |
| 2009-11-10 | move some generally useful functions out of jump threading | Chris Lattner |
| 2009-11-10 | fix a crash in SCCP handling extractvalue of an array, pointed out and | Chris Lattner |
| 2009-11-10 | improve comment. | Chris Lattner |
| 2009-11-10 | Make jump threading eliminate blocks that just contain phi nodes, | Chris Lattner |
| 2009-11-10 | Generalize lsr code that optimize loop to count down towards zero. | Evan Cheng |
| 2009-11-10 | Add defensive break. | Duncan Sands |
| 2009-11-10 | Fix obvious typo. | Duncan Sands |
| 2009-11-10 | clarify logic. | Chris Lattner |
| 2009-11-10 | Teach DSE to eliminate useless trampolines. | Duncan Sands |
| 2009-11-10 | Add brackets to make gcc-4.4 happy. | Duncan Sands |
| 2009-11-10 | Update computeArraySize() to use ComputeMultiple() to determine the array siz... | Victor Hernandez |
| 2009-11-10 | unify the code that determines whether it is a good idea to change the type | Chris Lattner |
| 2009-11-10 | Simplify. | Nick Lewycky |
| 2009-11-10 | Reapply r86359, "Teach dead store elimination that certain intrinsics write to | Nick Lewycky |
| 2009-11-10 | refactor TryToSimplifyUncondBranchFromEmptyBlock out of SimplifyCFG. | Chris Lattner |
| 2009-11-10 | CMake: Support for building llvm loadable modules. | Oscar Fuentes |
| 2009-11-10 | make jump threading recursively simplify expressions instead of doing it | Chris Lattner |
| 2009-11-10 | don't invalidate PN, rewrite of this code is in progress anyway. | Chris Lattner |
| 2009-11-10 | add a new SimplifyInstruction API, which is like ConstantFoldInstruction, | Chris Lattner |
| 2009-11-10 | Fix DenseMap iterator constness. | Jeffrey Yasskin |
| 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 | inline a simple function. | 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 | use instructionsimplify instead of a weak clone of ad-hoc folding stuff. | Chris Lattner |
| 2009-11-09 | stub out a new form of BasicBlock::RemovePredecessorAndSimplify which | Chris Lattner |
| 2009-11-09 | Fix a comment in a typo that Duncan noticed. | Dan Gohman |