summaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/Reassociate.cpp
Commit message (Expand)AuthorAge
* only factor from expressions whose uses are empty and whoseChris Lattner2010-01-09
* Suppress an unused variable warning when assertions are off;Duncan Sands2010-01-08
* fix an infinite loop in reassociate building emacs.Chris Lattner2010-01-05
* Change errs() to dbgs().David Greene2010-01-05
* theoretically the negate we find could be in a different function, checkChris Lattner2010-01-02
* When factoring multiply expressions across adds, factor both Chris Lattner2010-01-01
* clean up some comments.Chris Lattner2010-01-01
* switch from std::map to DenseMap for rank data structures.Chris Lattner2010-01-01
* reuse negates where possible instead of always creating them from scratch.Chris Lattner2009-12-31
* we don't need a smallptrset to detect duplicates, the values areChris Lattner2009-12-31
* make reassociate more careful about not leaving around dead mul'sChris Lattner2009-12-31
* remove debugChris Lattner2009-12-31
* teach reassociate to factor x+x+x -> x*3. While I'm at it,Chris Lattner2009-12-31
* change reassociate to use SmallVector for its key datastructuresChris Lattner2009-12-31
* change an if to an assert, fix comment.Chris Lattner2009-12-31
* move the rest of the add optimization code out to OptimizeAdd,Chris Lattner2009-12-31
* factor statistic updating better.Chris Lattner2009-12-31
* simple fix for an incorrect factoring which causes aChris Lattner2009-12-31
* factor code out into helper functions.Chris Lattner2009-12-31
* switch some std::vector's to smallvector. Reduce nesting.Chris Lattner2009-12-31
* use more modern datastructures.Chris Lattner2009-12-31
* clean up -debug output.Chris Lattner2009-12-31
* Remove LLVMContext from reassociate. It was threaded through every function butNick Lewycky2009-11-14
* Make changes to rev 84292 as requested by Chris Lattner.Victor Hernandez2009-10-21
* Remove MallocInst from LLVM Instructions.Victor Hernandez2009-10-17
* Autoupgrade malloc insts to malloc calls.Victor Hernandez2009-10-17
* calls are already unmovable, malloc doesn't need a special case.Chris Lattner2009-09-27
* Enhance transform passes so that they apply the same tranforms to malloc call...Victor Hernandez2009-09-18
* eliminate VISIBILITY_HIDDEN from Transforms/Scalar. PR4861Chris Lattner2009-09-02
* remove the std::ostream version of module and type printing.Chris Lattner2009-08-23
* eliminate the "Value" printing methods that print to a std::ostream.Chris Lattner2009-08-23
* Fix debug output to include a newline after printing a Value, nowDan Gohman2009-08-17
* Remove a bunch more now-unnecessary Context arguments.Dan Gohman2009-08-12
* Move a few more APIs back to 2.5 forms. The only remaining ones left to chan...Owen Anderson2009-07-31
* Move more code back to 2.5 APIs.Owen Anderson2009-07-30
* Move ConstantExpr to 2.5 API.Owen Anderson2009-07-29
* Revert the ConstantInt constructors back to their 2.5 forms where possible, t...Owen Anderson2009-07-24
* Get rid of the Pass+Context magic.Owen Anderson2009-07-22
* These don't really need contexts either.Owen Anderson2009-07-13
* Move more functionality over to LLVMContext.Owen Anderson2009-07-13
* Begin the painful process of tearing apart the rat'ss nest that is Constants....Owen Anderson2009-07-13
* "LLVMContext* " --> "LLVMContext *"Owen Anderson2009-07-06
* Even more passes being LLVMContext'd.Owen Anderson2009-07-03
* Make the key of ValueRankMap an AssertingVH, so that we die violentlyChris Lattner2009-03-31
* This pass keeps a map of Instructions to Rank numbers,Dale Johannesen2009-03-19
* Don't assign rank numbers to debug intrinsic "calls".Dale Johannesen2009-03-06
* Fix build failure.Devang Patel2008-11-21
* Silence unused variable warnings.Devang Patel2008-11-21
* Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman2008-09-04
* don't use the result of WriteAsOperandChris Lattner2008-08-19