aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Scalar/SCCP.cpp
Commit message (Expand)AuthorAgeFilesLines
* Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke2003-11-111-1/+4
* Added LLVM project notice to the top of every C++ source file.John Criswell2003-10-201-0/+7
* ADd support for the new varargs instructionsChris Lattner2003-10-181-1/+2
* Fix spelling.Misha Brukman2003-10-101-1/+1
* Update commentChris Lattner2003-10-081-2/+2
* Use a set to keep track of which edges have been noticed as executable alreadyChris Lattner2003-10-081-15/+27
* Minor fixes here and thereChris Lattner2003-10-081-22/+21
* Avoid building data structures we don't really need. This improves the runtimeChris Lattner2003-10-081-10/+39
* Add support for the unwind instructionChris Lattner2003-09-081-0/+1
* Fix bug: SCCP/2003-08-26-InvokeHandling.llChris Lattner2003-08-271-1/+4
* Spell `necessary' correctly.Misha Brukman2003-08-181-1/+1
* DEBUG got moved to Support/Debug.hChris Lattner2003-08-011-1/+2
* Fix bug: SCCP/2003-06-24-OverdefinedPHIValue.llChris Lattner2003-06-241-4/+5
* Hopefully, the final fix for `[Pp]ropogate'.Misha Brukman2003-05-201-5/+5
* Handle va_arg instruction correctlyChris Lattner2003-05-081-0/+1
* Fix major problem with PHI node traversal: rechecking PHIs should go intoChris Lattner2003-04-251-1/+1
* Minor non-functional changes:Chris Lattner2003-04-251-61/+47
* Remove unnecesary &*'sChris Lattner2003-04-231-1/+1
* Make sure to _delete_ memory allocated by worklistsChris Lattner2002-11-041-0/+2
* Fix spelling of `propagate'.Misha Brukman2002-10-291-1/+1
* - Rename AnalysisUsage::preservesAll to getPreservesAll & preservesCFG toChris Lattner2002-10-211-1/+1
* Updates to work with recent Statistic's changes:Chris Lattner2002-10-011-3/+3
* - Implement SCCP of getelementptr instructionsChris Lattner2002-08-301-5/+31
* Eliminated the MemAccessInst class, folding contents into GEP class.Chris Lattner2002-08-221-1/+2
* Remove extra #includesChris Lattner2002-08-141-2/+0
* Remove support for unary operatorsChris Lattner2002-08-141-6/+4
* * Add support for different "PassType's"Chris Lattner2002-07-261-1/+1
* *** empty log message ***Chris Lattner2002-07-231-5/+2
* MEGAPATCH checkin.Chris Lattner2002-06-251-67/+65
* Use the new DEBUG(x) macro to allow debugging code to be enabled on the comma...Chris Lattner2002-05-221-19/+11
* Fix bug: test/Regression/Transforms/SCCP/2002-05-21-InvalidSimplify.llChris Lattner2002-05-221-12/+12
* Fix bug: test/Regression/Transforms/SCCP/2002-05-20-MissedIncomingValue.llChris Lattner2002-05-201-1/+11
* Add support for printing out statistics information when -stats is added toChris Lattner2002-05-101-0/+4
* Merge all individual .h files into a single Scalar.h fileChris Lattner2002-05-071-1/+1
* Add #include no longer included by llvm/Transforms/Scalar/ConstantProp.hChris Lattner2002-05-071-0/+1
* * Convert InstWorkList to vector instead of set, because on big programs itChris Lattner2002-05-071-5/+5
* Implement constant propogation of shift instructionsChris Lattner2002-05-061-3/+9
* Ok, really it only takes me 3 times to get this right!Chris Lattner2002-05-021-1/+1
* Oops, disable debugging code all the way. :)Chris Lattner2002-05-021-1/+1
* * Finish the implementation of isEdgeFeasible this fixes bug:Chris Lattner2002-05-021-57/+77
* * Enable SCCP debugging to be turned on with a simple change of #defineChris Lattner2002-05-021-32/+52
* * Simplify the code by not bothering to name the folded constantChris Lattner2002-05-021-10/+7
* Significantly clean up SCCP pass. Now the two classes are merged and inChris Lattner2002-04-291-44/+37
* Eliminate duplicate or unneccesary #include'sChris Lattner2002-04-291-3/+0
* Add new optional getPassName() virtual function that a Pass can overrideChris Lattner2002-04-291-0/+4
* Tighten up the AnalysisUsage of lots of passes, primarily to correctly indica...Chris Lattner2002-04-281-0/+4
* Split ConstantVals.h into Constant.h and Constants.hChris Lattner2002-04-281-1/+1
* * Rename MethodPass class to FunctionPassChris Lattner2002-04-271-11/+9
* Changes because the Terminator::getSuccessor function now FAILS if successorChris Lattner2002-04-271-2/+2
* Convert SCCP over to use InstVisitor instead of hand crafted switchChris Lattner2002-04-181-181/+136