summaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO/DeadArgumentElimination.cpp
Commit message (Expand)AuthorAge
...
* Speculatively revert r94322 to see if it fixes darwin selfhost buildbot.Nick Lewycky2010-01-23
* Teach DAE that even though it can't modify the function signature of anNick Lewycky2010-01-23
* Change errs() to dbgs().David Greene2010-01-05
* Remove includes of Support/Compiler.h that are no longer needed after theNick Lewycky2009-10-25
* Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky2009-10-25
* back out my recent commit (r80858), it seems to break self-hosting buildbot's...Gabor Greif2009-09-03
* re-commit r66920 (which has been backed out in r66953) I may have more luck t...Gabor Greif2009-09-03
* remove a few DOUTs here and there.Chris Lattner2009-08-23
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-13
* Privatize the StructType table, which unfortunately involves routing contexts...Owen Anderson2009-08-05
* 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 types back to the 2.5 API.Owen Anderson2009-07-29
* Remove Value::getName{Start,End}, the last of the old Name APIs.Daniel Dunbar2009-07-26
* More migration to raw_ostream, the water has dried up around the iostream hole.Daniel Dunbar2009-07-25
* Switch to getNameStr().Daniel Dunbar2009-07-24
* Get rid of the Pass+Context magic.Owen Anderson2009-07-22
* Move the ConstantInt uniquing table into LLVMContextImpl. This exposed a num...Owen Anderson2009-07-16
* More LLVMContext-ification.Owen Anderson2009-07-06
* Implement and use new method Function::hasAddressTaken().Jay Foad2009-06-10
* aha, DAE does have to think about PHI nodes. Many thanks to "Dr Evil" (aka D...Chris Lattner2009-03-18
* add an assertion to make it clear that PHI nodes are not allowed.Chris Lattner2009-03-18
* Fix PR3807 by inserting 'insertelement' instructions in the normal dest of Chris Lattner2009-03-18
* Revert r66920. It was causing failures in the self-hosting buildbot (in releaseBill Wendling2009-03-13
* Second installment of "BasicBlock operands to the back"Gabor Greif2009-03-13
* use CallSite::isCalle instead of slow getOperandNoGabor Greif2009-01-23
* Add the private linkage.Rafael Espindola2009-01-15
* Now Attributes are divided in three groupsDevang Patel2008-09-26
* Large mechanical patch.Devang Patel2008-09-25
* s/ParamAttrsWithIndex/FnAttributeWithIndex/gDevang Patel2008-09-24
* s/ParameterAttributes/Attributes/gDevang Patel2008-09-23
* Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman2008-09-04
* Allow deadargelim to change return types even though now values were dead. ThisMatthijs Kooijman2008-07-15
* Revert r53606. It turns out that explicitely tracking the liveness of theMatthijs Kooijman2008-07-15
* Make deadargelim a bit less smart, so it doesn't choke on nested structs asMatthijs Kooijman2008-07-15
* Don't use isa when we can reuse a previous dyn_cast.Matthijs Kooijman2008-07-15
* Make DeadArgElim keep liveness of the return value as a whole in addition toMatthijs Kooijman2008-07-15
* Let DAE keep a list of live functions, instead of simply marking all argumentsMatthijs Kooijman2008-07-15
* Split DAE::MarkLive into MarkLive and PropagateLiveness.Matthijs Kooijman2008-07-15
* Pass around const RetOrArg references instead of copying values. Also, markMatthijs Kooijman2008-07-15
* Simplify debug code by using RetOrArg::getDescription().Matthijs Kooijman2008-07-15
* Fix indentation (intentionally left out of the previous commit).Matthijs Kooijman2008-07-15
* Move the deadargelim code for intrinsically alive functions into its ownMatthijs Kooijman2008-07-15
* Restructure dead argument elimination, try #3 :-)Matthijs Kooijman2008-07-10
* Restore DeadArgElim back to 52570. It's breaking 447.dealII.Evan Cheng2008-06-25
* Pacify gcc-4.3.Duncan Sands2008-06-25
* Fix a (false) warning on darwin.Matthijs Kooijman2008-06-25
* Fix some cosmetics in comments.Matthijs Kooijman2008-06-25
* Commit the new DeadArgElim pass again, this time with the gcc bootstrap failu...Matthijs Kooijman2008-06-24
* Back out Matthijs' DAE patches. It's miscompiling gcc driver.Evan Cheng2008-06-21