aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/IPO/DeadArgumentElimination.cpp
Commit message (Expand)AuthorAgeFilesLines
* Update aosp/master LLVM for rebase to r235153Pirama Arumuga Nainar2015-05-181-5/+5
* Update aosp/master LLVM for rebase to r230699.Stephen Hines2015-03-231-69/+92
* Update aosp/master LLVM for rebase to r222494.Stephen Hines2014-12-021-10/+18
* Update LLVM for rebase to r212749.Stephen Hines2014-07-211-35/+4
* Update LLVM for 3.5 rebase (r209712).Stephen Hines2014-05-291-3/+5
* Update to LLVM 3.5a.Stephen Hines2014-04-241-36/+33
* Fix spelling, grammar, and match naming convention for test files.Eric Christopher2013-10-211-3/+3
* Fix a bug in Dead Argument Elimination.Shuxin Yang2013-10-091-0/+13
* DeadArgumentElimination: keep return value on functions that have a live argu...Stephen Lin2013-06-301-28/+60
* Debug Info: clean up usage of Verify.Manman Ren2013-06-281-1/+3
* Fix DeleteDeadVarargs not to crash on functions referenced by BlockAddressesDerek Schuff2013-06-131-2/+9
* Make DeadArgumentElimination more conservative on variadic functionsTim Northover2013-06-091-5/+17
* Revert accidental commit (ran svn commit from wrong directory).Nick Lewycky2013-02-021-61/+7
* This patch makes "&Cls::purevfn" not an odr use. This isn't what the standardNick Lewycky2013-02-021-7/+61
* Convert typeIncompatible to return an AttributeSet.Bill Wendling2013-01-301-3/+10
* Use the AttributeSet instead of AttributeWithIndex.Bill Wendling2013-01-271-27/+15
* Remove some introspection functions.Bill Wendling2013-01-251-8/+10
* Use the new 'getSlotIndex' method to retrieve the attribute's slot index.Bill Wendling2013-01-251-2/+2
* Remove the last of uses that use the Attribute object as a collection of attr...Bill Wendling2013-01-231-9/+18
* Have AttributeSet::getRetAttributes() return an AttributeSet instead of Attri...Bill Wendling2013-01-211-12/+16
* Make AttributeSet::getFnAttributes() return an AttributeSet instead of an Att...Bill Wendling2013-01-211-12/+12
* Push some more methods down to hide the use of the Attribute class.Bill Wendling2013-01-181-1/+1
* Remove redundant 'llvm::' qualificationsDmitri Gribenko2013-01-131-1/+1
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-021-7/+7
* Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling2012-12-191-13/+13
* s/AttrListPtr/AttributeSet/g to better label what this class is going to be i...Bill Wendling2012-12-071-11/+11
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-5/+5
* Make the AttrListPtr object a part of the LLVMContext.Bill Wendling2012-11-201-3/+3
* Move the Attributes::Builder outside of the Attributes class and into its own...Bill Wendling2012-10-151-3/+3
* Add an enum for the return and function indexes into the AttrListPtr object. ...Bill Wendling2012-10-151-5/+10
* Attributes RewriteBill Wendling2012-10-151-2/+2
* Remove operator cast method in favor of querying with the correct method.Bill Wendling2012-10-141-6/+10
* Remove the bitwise AND operators from the Attributes class. Replace it with t...Bill Wendling2012-10-141-2/+3
* Remove the bitwise NOT operator from the Attributes class. Replace it with th...Bill Wendling2012-10-141-2/+6
* Fixup for r165490: Use DenseMap instead of std::map. Simplify the loop in Col...Alexey Samsonov2012-10-091-13/+16
* Fix PR14016.Alexey Samsonov2012-10-091-0/+50
* Query for attributes via the correct method call.Bill Wendling2012-10-041-2/+2
* Move Attribute::typeIncompatible inside of the Attributes class.Bill Wendling2012-09-251-3/+3
* switch AttrListPtr::get to take an ArrayRef, simplifying a lot of clients.Chris Lattner2012-05-281-5/+3
* Remove all remaining uses of Value::getNameStr().Benjamin Kramer2011-11-151-1/+1
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-181-6/+6
* Convert CallInst and InvokeInst APIs to use ArrayRef.Jay Foad2011-07-151-4/+4
* Second attempt at de-constifying LLVM Types in FunctionType::get(),Jay Foad2011-07-121-4/+4
* Revert r134893 and r134888 (and related patches in other trees). It was causingBill Wendling2011-07-121-4/+4
* De-constify Types in StructType::get() and TargetData::getIntPtrType().Jay Foad2011-07-111-2/+2
* De-constify Types in FunctionType::get().Jay Foad2011-07-111-2/+2
* Fix a ton of comment typos found by codespell. Patch byChris Lattner2011-04-151-6/+6
* Add an obvious missing safety check to DAE::RemoveDeadArgumentsFromCallers.Eli Friedman2011-03-011-1/+1
* Teach DAE to look for functions whose arguments are unused, and change all ca...Anders Carlsson2011-01-161-1/+61
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-191-1/+3