aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/IPO/DeadArgumentElimination.cpp
Commit message (Expand)AuthorAgeFilesLines
* Add the private linkage.Rafael Espindola2009-01-151-2/+2
* Now Attributes are divided in three groupsDevang Patel2008-09-261-7/+16
* Large mechanical patch.Devang Patel2008-09-251-31/+31
* s/ParamAttrsWithIndex/FnAttributeWithIndex/gDevang Patel2008-09-241-7/+7
* s/ParameterAttributes/Attributes/gDevang Patel2008-09-231-5/+5
* Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman2008-09-041-1/+1
* Allow deadargelim to change return types even though now values were dead. ThisMatthijs Kooijman2008-07-151-11/+1
* Revert r53606. It turns out that explicitely tracking the liveness of theMatthijs Kooijman2008-07-151-97/+103
* Make deadargelim a bit less smart, so it doesn't choke on nested structs asMatthijs Kooijman2008-07-151-38/+21
* Don't use isa when we can reuse a previous dyn_cast.Matthijs Kooijman2008-07-151-3/+2
* Make DeadArgElim keep liveness of the return value as a whole in addition toMatthijs Kooijman2008-07-151-126/+124
* Let DAE keep a list of live functions, instead of simply marking all argumentsMatthijs Kooijman2008-07-151-6/+14
* Split DAE::MarkLive into MarkLive and PropagateLiveness.Matthijs Kooijman2008-07-151-0/+6
* Pass around const RetOrArg references instead of copying values. Also, markMatthijs Kooijman2008-07-151-3/+3
* Simplify debug code by using RetOrArg::getDescription().Matthijs Kooijman2008-07-151-6/+1
* Fix indentation (intentionally left out of the previous commit).Matthijs Kooijman2008-07-151-51/+51
* Move the deadargelim code for intrinsically alive functions into its ownMatthijs Kooijman2008-07-151-23/+25
* Restructure dead argument elimination, try #3 :-)Matthijs Kooijman2008-07-101-381/+551
* Restore DeadArgElim back to 52570. It's breaking 447.dealII.Evan Cheng2008-06-251-527/+374
* Pacify gcc-4.3.Duncan Sands2008-06-251-1/+1
* Fix a (false) warning on darwin.Matthijs Kooijman2008-06-251-1/+3
* Fix some cosmetics in comments.Matthijs Kooijman2008-06-251-6/+6
* Commit the new DeadArgElim pass again, this time with the gcc bootstrap failu...Matthijs Kooijman2008-06-241-374/+525
* Back out Matthijs' DAE patches. It's miscompiling gcc driver.Evan Cheng2008-06-211-518/+367
* 80 column and trailing whitespace fixes.Matthijs Kooijman2008-06-201-49/+72
* Don't let DeadArgumentElimination attempt to update callers when the returnMatthijs Kooijman2008-06-201-9/+12
* Don't let DeadArgElimination change the return type ({} into void and {T}Matthijs Kooijman2008-06-201-7/+13
* Explicitely track if any arguments or return values were removed inMatthijs Kooijman2008-06-201-1/+10
* Remove debug output.Matthijs Kooijman2008-06-201-4/+0
* Recommit r52459, rewriting of the dead argument elimination pass.Matthijs Kooijman2008-06-201-369/+483
* Revert r52459, which was causing an infinite loop or massive slowdown on Mult...Owen Anderson2008-06-181-469/+369
* Rewrite the DeadArgumentElimination pass, to use a more explicit tracking ofMatthijs Kooijman2008-06-181-369/+469
* Use use_iterator::getOperandNo instead of CallSite::hasArgument to check if aMatthijs Kooijman2008-06-051-7/+6
* Replace two manual loops with calls to CallSite::hasArguments (no functional ...Matthijs Kooijman2008-06-041-7/+5
* Use eraseFromParent() instead of doing that manually in two places.Matthijs Kooijman2008-05-301-2/+2
* Factor code to copy global value attributes likeDuncan Sands2008-05-261-7/+2
* Clean up the use of static and anonymous namespaces. This turned upDan Gohman2008-05-131-5/+10
* API changes for class Use size reduction, wave 1.Gabor Greif2008-04-061-9/+9
* Don't include <map> in Pass.h, which doesn't need it. This requiresDan Gohman2008-03-211-0/+1
* Reimplement the parameter attributes support, phase #1. hilights:Chris Lattner2008-03-121-30/+22
* s/isReturnStruct()/hasStructRetAttr()/gDevang Patel2008-03-031-1/+1
* Split ParameterAttributes.h, putting the complicatedDale Johannesen2008-02-221-1/+1
* Expand ParameterAttributes to 32 bits (in preparationDale Johannesen2008-02-191-5/+8
* DAE bug fix. Don't lose parameter attributes on vararg arguments.Evan Cheng2008-01-171-5/+9
* When DAE drops the varargs part of a function, ensure anyDuncan Sands2008-01-111-2/+15
* Small cleanup for handling of type/parameter attributeDuncan Sands2008-01-071-2/+2
* The transform that tries to turn calls to bitcast functions intoDuncan Sands2008-01-061-3/+2
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
* Fixing several transforms which would drop the collector attributeGordon Henriksen2007-12-251-0/+4
* Make DAE not wipe out attributes on calls, and not dropDuncan Sands2007-12-211-36/+55