aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Scalar/Reassociate.cpp
Commit message (Expand)AuthorAgeFilesLines
* Fix reassociate to use a worklist instead of recursing when newDan Gohman2011-04-121-59/+67
* RecursivelyDeleteTriviallyDeadInstructions only needs aDan Gohman2011-03-101-3/+2
* Fix reassociate to postpone certain instruction deletions untilDan Gohman2011-03-101-3/+11
* fix PR9215, preventing -reassociate from clearing nsw/nuw whenChris Lattner2011-02-171-3/+4
* Fix reassociate to clear optional flags, such as nsw.Dan Gohman2011-02-021-0/+16
* Fix PR9039, a use-after-free in reassociate. The issue was that theDuncan Sands2011-01-261-4/+11
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-191-1/+3
* Now with fewer extraneous semicolons!Owen Anderson2010-10-071-1/+1
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-061-1/+1
* Revert r110396 to fix buildbots.Owen Anderson2010-08-061-1/+1
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-051-1/+1
* Fix batch of converting RegisterPass<> to INTIALIZE_PASS().Owen Anderson2010-07-211-1/+2
* cache dereferenced iteratorsGabor Greif2010-07-121-2/+3
* fix a nice subtle reassociate bug which would only occurChris Lattner2010-03-051-5/+21
* There are two ways of checking for a given type, for example isa<PointerType>(T)Duncan Sands2010-02-161-1/+1
* Uniformize the names of type predicates: rather than having isFloatTy andDuncan Sands2010-02-151-3/+3
* Fix "the the" and similar typos.Dan Gohman2010-02-101-2/+2
* Do not reassociate expressions with i1 type. SimplifyCFG converts someBob Wilson2010-02-041-0/+9
* only factor from expressions whose uses are empty and whoseChris Lattner2010-01-091-0/+5
* Suppress an unused variable warning when assertions are off;Duncan Sands2010-01-081-2/+3
* fix an infinite loop in reassociate building emacs.Chris Lattner2010-01-051-0/+4
* Change errs() to dbgs().David Greene2010-01-051-15/+15
* theoretically the negate we find could be in a different function, checkChris Lattner2010-01-021-0/+4
* When factoring multiply expressions across adds, factor both Chris Lattner2010-01-011-21/+49
* clean up some comments.Chris Lattner2010-01-011-13/+13
* switch from std::map to DenseMap for rank data structures.Chris Lattner2010-01-011-13/+13
* reuse negates where possible instead of always creating them from scratch.Chris Lattner2009-12-311-1/+30
* we don't need a smallptrset to detect duplicates, the values areChris Lattner2009-12-311-27/+27
* make reassociate more careful about not leaving around dead mul'sChris Lattner2009-12-311-1/+7
* remove debugChris Lattner2009-12-311-1/+1
* teach reassociate to factor x+x+x -> x*3. While I'm at it,Chris Lattner2009-12-311-22/+70
* change reassociate to use SmallVector for its key datastructuresChris Lattner2009-12-311-15/+18
* change an if to an assert, fix comment.Chris Lattner2009-12-311-4/+4
* move the rest of the add optimization code out to OptimizeAdd,Chris Lattner2009-12-311-93/+94
* factor statistic updating better.Chris Lattner2009-12-311-19/+9
* simple fix for an incorrect factoring which causes aChris Lattner2009-12-311-0/+7
* factor code out into helper functions.Chris Lattner2009-12-311-88/+109
* switch some std::vector's to smallvector. Reduce nesting.Chris Lattner2009-12-311-54/+57
* use more modern datastructures.Chris Lattner2009-12-311-4/+5
* clean up -debug output.Chris Lattner2009-12-311-3/+4
* Remove LLVMContext from reassociate. It was threaded through every function butNick Lewycky2009-11-141-22/+14
* Make changes to rev 84292 as requested by Chris Lattner.Victor Hernandez2009-10-211-2/+0
* Remove MallocInst from LLVM Instructions.Victor Hernandez2009-10-171-1/+1
* Autoupgrade malloc insts to malloc calls.Victor Hernandez2009-10-171-1/+2
* calls are already unmovable, malloc doesn't need a special case.Chris Lattner2009-09-271-2/+1
* Enhance transform passes so that they apply the same tranforms to malloc call...Victor Hernandez2009-09-181-1/+2
* eliminate VISIBILITY_HIDDEN from Transforms/Scalar. PR4861Chris Lattner2009-09-021-3/+2
* remove the std::ostream version of module and type printing.Chris Lattner2009-08-231-3/+3
* eliminate the "Value" printing methods that print to a std::ostream.Chris Lattner2009-08-231-13/+14
* Fix debug output to include a newline after printing a Value, nowDan Gohman2009-08-171-7/+7