Age | Commit message (Expand) | Author |
2011-08-12 | Silence a bunch (but not all) "variable written but not read" warnings | Duncan Sands |
2011-08-02 | Revert r136503 and r136480 in an effort to fix non-determinism in the llvm-gc... | Owen Anderson |
2011-07-29 | Clear DbgValues in the end. | Devang Patel |
2011-07-29 | Clean up debug info after reassociation. | Devang Patel |
2011-07-15 | start using the new helper methods a bit. | Chris Lattner |
2011-04-28 | Preserve line number information. | Devang Patel |
2011-04-12 | Fix reassociate to use a worklist instead of recursing when new | Dan Gohman |
2011-03-10 | RecursivelyDeleteTriviallyDeadInstructions only needs a | Dan Gohman |
2011-03-10 | Fix reassociate to postpone certain instruction deletions until | Dan Gohman |
2011-02-17 | fix PR9215, preventing -reassociate from clearing nsw/nuw when | Chris Lattner |
2011-02-02 | Fix reassociate to clear optional flags, such as nsw. | Dan Gohman |
2011-01-26 | Fix PR9039, a use-after-free in reassociate. The issue was that the | Duncan Sands |
2010-10-19 | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson |
2010-10-07 | Now with fewer extraneous semicolons! | Owen Anderson |
2010-08-06 | Reapply r110396, with fixes to appease the Linux buildbot gods. | Owen Anderson |
2010-08-06 | Revert r110396 to fix buildbots. | Owen Anderson |
2010-08-05 | Don't use PassInfo* as a type identifier for passes. Instead, use the addres... | Owen Anderson |
2010-07-21 | Fix batch of converting RegisterPass<> to INTIALIZE_PASS(). | Owen Anderson |
2010-07-12 | cache dereferenced iterators | Gabor Greif |
2010-03-05 | fix a nice subtle reassociate bug which would only occur | Chris Lattner |
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-02-10 | Fix "the the" and similar typos. | Dan Gohman |
2010-02-04 | Do not reassociate expressions with i1 type. SimplifyCFG converts some | Bob Wilson |
2010-01-09 | only factor from expressions whose uses are empty and whose | Chris Lattner |
2010-01-08 | Suppress an unused variable warning when assertions are off; | Duncan Sands |
2010-01-05 | fix an infinite loop in reassociate building emacs. | Chris Lattner |
2010-01-05 | Change errs() to dbgs(). | David Greene |
2010-01-02 | theoretically the negate we find could be in a different function, check | Chris Lattner |
2010-01-01 | When factoring multiply expressions across adds, factor both | Chris Lattner |
2010-01-01 | clean up some comments. | Chris Lattner |
2010-01-01 | switch from std::map to DenseMap for rank data structures. | Chris Lattner |
2009-12-31 | reuse negates where possible instead of always creating them from scratch. | Chris Lattner |
2009-12-31 | we don't need a smallptrset to detect duplicates, the values are | Chris Lattner |
2009-12-31 | make reassociate more careful about not leaving around dead mul's | Chris Lattner |
2009-12-31 | remove debug | Chris Lattner |
2009-12-31 | teach reassociate to factor x+x+x -> x*3. While I'm at it, | Chris Lattner |
2009-12-31 | change reassociate to use SmallVector for its key datastructures | Chris Lattner |
2009-12-31 | change an if to an assert, fix comment. | Chris Lattner |
2009-12-31 | move the rest of the add optimization code out to OptimizeAdd, | Chris Lattner |
2009-12-31 | factor statistic updating better. | Chris Lattner |
2009-12-31 | simple fix for an incorrect factoring which causes a | Chris Lattner |
2009-12-31 | factor code out into helper functions. | Chris Lattner |
2009-12-31 | switch some std::vector's to smallvector. Reduce nesting. | Chris Lattner |
2009-12-31 | use more modern datastructures. | Chris Lattner |
2009-12-31 | clean up -debug output. | Chris Lattner |
2009-11-14 | Remove LLVMContext from reassociate. It was threaded through every function but | Nick Lewycky |
2009-10-21 | Make changes to rev 84292 as requested by Chris Lattner. | Victor Hernandez |
2009-10-17 | Remove MallocInst from LLVM Instructions. | Victor Hernandez |
2009-10-17 | Autoupgrade malloc insts to malloc calls. | Victor Hernandez |