Age | Commit message (Expand) | Author |
2011-03-28 | Make more use of PHINode::getNumIncomingValues(). | Jay Foad |
2011-03-17 | Try to not lose variable's debug info during instcombine. | Devang Patel |
2011-02-15 | Do not forget DebugLoc! | Devang Patel |
2011-02-02 | Conservatively, clear optional flags, such as nsw, when performing | Dan Gohman |
2011-01-21 | fix PR9013, an infinite loop in instcombine. | Chris Lattner |
2011-01-21 | update obsolete comment. | Chris Lattner |
2011-01-21 | Don't try to pull vector bitcasts that change the number of elements through | Nick Lewycky |
2011-01-16 | remove a dead check, this was needed before we had an explicit veto on uses o... | Chris Lattner |
2011-01-16 | enhance FoldOpIntoPhi in instcombine to try harder when a phi has | Chris Lattner |
2011-01-16 | remove the AllowAggressive argument to FoldOpIntoPhi. It is forced to false ... | Chris Lattner |
2011-01-16 | more cleanups: use the IR builder. | Chris Lattner |
2011-01-16 | tidy up code. | Chris Lattner |
2010-12-22 | Add a generic expansion transform: A op (B op' C) -> (A op B) op' (A op C) | Duncan Sands |
2010-12-22 | Add some statistics, good for understanding how much more powerful | Duncan Sands |
2010-12-19 | fix an oversight caught by Frits! | Chris Lattner |
2010-12-19 | move a transformation to a more logical place, simplifying it. | Chris Lattner |
2010-11-29 | Transform (extractvalue (load P), ...) to (load (gep P, 0, ...)) if the load ... | Frits van Bommel |
2010-11-23 | Rename SimplifyDistributed to the more meaningfull name SimplifyByFactorizing. | Duncan Sands |
2010-11-23 | Propagate LeftDistributes and RightDistributes into their only uses. | Duncan Sands |
2010-11-23 | Fix typo pointed out by Frits van Bommel and Marius Wachtler. | Duncan Sands |
2010-11-23 | Exploit distributive laws (eg: And distributes over Or, Mul over Add, etc) in a | 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-13 | Generalize the reassociation transform in SimplifyCommutative (now renamed to | Duncan Sands |
2010-10-23 | SmallVectorize. | Benjamin Kramer |
2010-10-07 | Now with fewer extraneous semicolons! | Owen Anderson |
2010-10-07 | Add initialization routines to InstCombine. | Owen Anderson |
2010-07-21 | Fix batch of converting RegisterPass<> to INTIALIZE_PASS(). | Owen Anderson |
2010-07-09 | cache result of operator* | Gabor Greif |
2010-06-24 | use ArgOperand API, also tighten the type of visitFree to make this work out ... | Gabor Greif |
2010-05-27 | Teach instCombine to remove malloc+free if malloc's only uses are comparisons | Duncan Sands |
2010-04-16 | Revert 101465, it broke internal OpenGL testing. | Eric Christopher |
2010-04-16 | reapply r101434 | Gabor Greif |
2010-04-16 | back out r101423 and r101397, they break llvm-gcc self-host on darwin10 | Gabor Greif |
2010-04-15 | reapply r101364, which has been backed out in r101368 | Gabor Greif |
2010-04-15 | back out r101364, as it trips the linux nightlybot on some clang C++ tests | Gabor Greif |
2010-04-15 | rotate CallInst operands, i.e. move callee to the back | Gabor Greif |
2010-02-16 | There are two ways of checking for a given type, for example isa<PointerType>(T) | Duncan Sands |
2010-02-15 | Uniformize the names of type predicates: rather than having isFloatTy and | Duncan Sands |
2010-01-07 | teach ComputeNumSignBits to look through PHI nodes. | Chris Lattner |
2010-01-05 | Move remaining stuff to the isInteger predicate. | Benjamin Kramer |
2010-01-05 | Convert a ton of simple integer type equality tests to the new predicate. | Benjamin Kramer |
2010-01-05 | Use do+while instead of while for loops which obviously have a | Dan Gohman |
2010-01-05 | prune some #includes. | Chris Lattner |
2010-01-05 | split and/or/xor out into one overly-large (2000LOC) file. However, I think | Chris Lattner |
2010-01-05 | missed file with previous commit. | Chris Lattner |
2010-01-05 | eliminate getBitCastOperand and simplify some over-complex inbounds stuff. | Chris Lattner |
2010-01-05 | split call handling out to InstCombineCalls.cpp | Chris Lattner |
2010-01-05 | optimize cttz and ctlz when we can prove something about the | Chris Lattner |
2010-01-05 | this inline function moved to addsub | Chris Lattner |