aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/IPO/GlobalDCE.cpp
Commit message (Expand)AuthorAgeFilesLines
* Fix typo in comment.Nick Lewycky2007-05-061-1/+1
* Drop 'const'Devang Patel2007-05-031-2/+2
* Use 'static const char' instead of 'static const int'.Devang Patel2007-05-021-2/+2
* Do not use typeinfo to identify pass in pass manager.Devang Patel2007-05-011-0/+4
* Implement review feedbackAnton Korobeynikov2007-04-291-1/+1
* Implement review feedback. Aliasees can be either GlobalValue's orAnton Korobeynikov2007-04-281-6/+2
* Implement aliases. This fixes PR1017 and it's dependent bugs. CFE partAnton Korobeynikov2007-04-251-1/+12
* Apply the VISIBILITY_HIDDEN field to the remaining anonymous classes inReid Spencer2007-02-051-1/+2
* For PR1136: Rename GlobalVariable::isExternal as isDeclaration to avoidReid Spencer2007-01-301-3/+3
* Eliminate static ctors due to Statistic objectsChris Lattner2006-12-191-3/+4
* Detemplatize the Statistic class. The only type it is instantiated withChris Lattner2006-12-061-2/+2
* eliminate RegisterOpt. It does the same thing as RegisterPass.Chris Lattner2006-08-271-1/+1
* Remove trailing whitespaceMisha Brukman2005-04-211-5/+5
* This mega patch converts us from using Function::a{iterator|begin|end} toChris Lattner2005-03-151-2/+2
* 'Pass' should now not be derived from by clients. Instead, they should deriveChris Lattner2004-09-201-4/+4
* Changes For Bug 352Reid Spencer2004-09-011-1/+1
* Remove useless statistic, fix some slightly broken logicChris Lattner2004-07-181-8/+4
* bug 122:Reid Spencer2004-07-181-22/+17
* Finegrainify namespacificationChris Lattner2003-11-211-4/+2
* Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke2003-11-111-0/+4
* Added LLVM project notice to the top of every C++ source file.John Criswell2003-10-201-0/+7
* Global variables with APPENDING linkage are very important to keep around!Chris Lattner2003-09-201-3/+6
* This is effectively a complete rewrite of the globaldce algorithm, resultingChris Lattner2003-09-161-177/+104
* Ugh, a bug fix needed because of the bug in the CallGraph codeChris Lattner2003-09-151-2/+4
* Fixed a segfault in gccld.John Criswell2003-08-071-2/+4
* Add support to globaldce for deleting dead function prototypesChris Lattner2003-06-261-1/+7
* Use methods that are more explanatoryChris Lattner2002-10-131-1/+1
* Updates to work with recent Statistic's changes:Chris Lattner2002-10-011-41/+40
* - Made GlobalDCE worklist driven, making it more successful. Now can handleChris Lattner2002-08-181-17/+176
* - Cleaned up the interface to AnalysisUsage to take analysis class namesChris Lattner2002-08-081-1/+1
* * Add support for different "PassType's"Chris Lattner2002-07-261-1/+1
* Eliminate several include/llvm/Transforms/IPO/*.h files, moving their content...Chris Lattner2002-07-241-1/+1
* *** empty log message ***Chris Lattner2002-07-231-2/+1
* Seperate stats for DCE'd functions and varsChris Lattner2002-07-181-3/+4
* *** empty log message ***Chris Lattner2002-07-181-2/+3
* MEGAPATCH checkin.Chris Lattner2002-06-251-10/+9
* Add support for printing out statistics information when -stats is added toChris Lattner2002-05-101-0/+5
* Eliminate dead global variablesChris Lattner2002-04-291-2/+20
* Eliminate duplicate or unneccesary #include'sChris Lattner2002-04-291-2/+0
* Add new optional getPassName() virtual function that a Pass can overrideChris Lattner2002-04-291-0/+2
* * Rename MethodPass class to FunctionPassChris Lattner2002-04-271-7/+4
* Change references to the Method class to be references to the FunctionChris Lattner2002-04-071-17/+17
* Take CallGraph out of the CFG namespace. It has nothing to do with CFGsChris Lattner2002-03-061-9/+9
* Change over to use new style pass mechanism, now passes only expose smallChris Lattner2002-02-261-13/+23
* Convert xforms over to new pass structure.Chris Lattner2002-01-311-4/+13
* Implement a more powerful, simpler, pass system. This pass system can figureChris Lattner2002-01-211-13/+7
* Changes to build successfully with GCC 3.02Chris Lattner2002-01-201-4/+4
* Create a new #include "Support/..." directory structure to move thingsChris Lattner2001-11-271-1/+1
* Implement DCE of global valuesChris Lattner2001-11-261-0/+59