Age | Commit message (Expand) | Author |
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 |
2009-09-27 | calls are already unmovable, malloc doesn't need a special case. | Chris Lattner |
2009-09-18 | Enhance transform passes so that they apply the same tranforms to malloc call... | Victor Hernandez |
2009-09-02 | eliminate VISIBILITY_HIDDEN from Transforms/Scalar. PR4861 | Chris Lattner |
2009-08-23 | remove the std::ostream version of module and type printing. | Chris Lattner |
2009-08-23 | eliminate the "Value" printing methods that print to a std::ostream. | Chris Lattner |
2009-08-17 | Fix debug output to include a newline after printing a Value, now | Dan Gohman |
2009-08-12 | Remove a bunch more now-unnecessary Context arguments. | Dan Gohman |
2009-07-31 | Move a few more APIs back to 2.5 forms. The only remaining ones left to chan... | Owen Anderson |
2009-07-30 | Move more code back to 2.5 APIs. | Owen Anderson |
2009-07-29 | Move ConstantExpr to 2.5 API. | Owen Anderson |
2009-07-24 | Revert the ConstantInt constructors back to their 2.5 forms where possible, t... | Owen Anderson |
2009-07-22 | Get rid of the Pass+Context magic. | Owen Anderson |