summaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO/DeadArgumentElimination.cpp
Commit message (Expand)AuthorAge
* 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
* 80 column and trailing whitespace fixes.Matthijs Kooijman2008-06-20
* Don't let DeadArgumentElimination attempt to update callers when the returnMatthijs Kooijman2008-06-20
* Don't let DeadArgElimination change the return type ({} into void and {T}Matthijs Kooijman2008-06-20
* Explicitely track if any arguments or return values were removed inMatthijs Kooijman2008-06-20
* Remove debug output.Matthijs Kooijman2008-06-20
* Recommit r52459, rewriting of the dead argument elimination pass.Matthijs Kooijman2008-06-20
* Revert r52459, which was causing an infinite loop or massive slowdown on Mult...Owen Anderson2008-06-18
* Rewrite the DeadArgumentElimination pass, to use a more explicit tracking ofMatthijs Kooijman2008-06-18
* Use use_iterator::getOperandNo instead of CallSite::hasArgument to check if aMatthijs Kooijman2008-06-05
* Replace two manual loops with calls to CallSite::hasArguments (no functional ...Matthijs Kooijman2008-06-04
* Use eraseFromParent() instead of doing that manually in two places.Matthijs Kooijman2008-05-30
* Factor code to copy global value attributes likeDuncan Sands2008-05-26
* Clean up the use of static and anonymous namespaces. This turned upDan Gohman2008-05-13
* API changes for class Use size reduction, wave 1.Gabor Greif2008-04-06
* Don't include <map> in Pass.h, which doesn't need it. This requiresDan Gohman2008-03-21
* Reimplement the parameter attributes support, phase #1. hilights:Chris Lattner2008-03-12
* s/isReturnStruct()/hasStructRetAttr()/gDevang Patel2008-03-03
* Split ParameterAttributes.h, putting the complicatedDale Johannesen2008-02-22
* Expand ParameterAttributes to 32 bits (in preparationDale Johannesen2008-02-19
* DAE bug fix. Don't lose parameter attributes on vararg arguments.Evan Cheng2008-01-17
* When DAE drops the varargs part of a function, ensure anyDuncan Sands2008-01-11
* Small cleanup for handling of type/parameter attributeDuncan Sands2008-01-07
* The transform that tries to turn calls to bitcast functions intoDuncan Sands2008-01-06
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-29
* Fixing several transforms which would drop the collector attributeGordon Henriksen2007-12-25
* Make DAE not wipe out attributes on calls, and not dropDuncan Sands2007-12-21
* Rather than having special rules like "intrinsics cannotDuncan Sands2007-12-03
* Fix PR1146: parameter attributes are longer part ofDuncan Sands2007-11-27
* Fix PR1788 by taking the approach suggested by Richard Smith.Chris Lattner2007-11-15
* Fix PR1735 and Transforms/DeadArgElim/2007-10-18-VarargsReturn.ll byChris Lattner2007-10-18
* Update InvokeInst to work like CallInstDavid Greene2007-08-27