aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Utils/LCSSA.cpp
Commit message (Expand)AuthorAgeFilesLines
* Change class' public PassInfo variables to by initialized with theDan Gohman2008-05-131-1/+1
* Clean up the use of static and anonymous namespaces. This turned upDan Gohman2008-05-131-3/+3
* Handle multiple return values.Devang Patel2008-05-031-1/+23
* API changes for class Use size reduction, wave 1.Gabor Greif2008-04-061-4/+4
* Fix newly-introduced 4.3 warningsAnton Korobeynikov2008-02-201-1/+1
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
* Use SmallVector instead of std::vector.Devang Patel2007-08-211-7/+5
* When one branch of condition is eliminated then head of the otherDevang Patel2007-08-171-1/+2
* LCSSA preserves dom info.Devang Patel2007-07-301-0/+8
* Now this temp. fix is not required.Devang Patel2007-07-191-4/+0
* Return Undef if the block has no dominator. This was required to allowReid Spencer2007-07-161-0/+4
* Make LCSSA a loop pass.Devang Patel2007-07-131-21/+11
* Maintain ETNode as part of DomTreeNode.Devang Patel2007-06-071-1/+1
* s/llvm::DominatorTreeBase::DomTreeNode/llvm::DomTreeNode/gDevang Patel2007-06-041-8/+8
* s/DominatorTreeBase::Node/DominatorTreeBase:DomTreeNode/gDevang Patel2007-06-031-8/+8
* Fix typos.Dan Gohman2007-05-111-1/+1
* 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
* Revert Owen's last check-in. This is breaking Mac OS X / PPC llvm-gcc bootstrap.Evan Cheng2007-04-181-18/+21
* Use ETForest instead of DominatorTree.Owen Anderson2007-04-181-21/+18
* avoid copying sets and vectors around.Chris Lattner2007-04-141-7/+6
* Apply the VISIBILITY_HIDDEN field to the remaining anonymous classes inReid Spencer2007-02-051-1/+2
* For PR1177:Reid Spencer2007-02-051-4/+4
* Use DenseMap for pointer->pointer maps.Owen Anderson2007-02-051-4/+4
* switch more statistics over to STATISTIC, eliminating static ctors. Also,Chris Lattner2006-12-191-4/+3
* Detemplatize the Statistic class. The only type it is instantiated withChris Lattner2006-12-061-1/+1
* generalize the fix for PR977 to also fixChris Lattner2006-10-311-28/+26
* Fix PR977 and Transforms/LCSSA/2006-10-31-UnreachableBlock.llChris Lattner2006-10-311-1/+8
* eliminate RegisterOpt. It does the same thing as RegisterPass.Chris Lattner2006-08-271-1/+1
* Add special check to avoid isLoop call. Simple, but doesn't seem to speedChris Lattner2006-08-021-2/+2
* Replace the SSA update code in LCSSA with a bottom-up approach instead of a topChris Lattner2006-08-021-125/+95
* Fix typo in the comment.Owen Anderson2006-07-091-1/+1
* Add a fix for an issue where LCSSA would fail to insert undef's in some cornerOwen Anderson2006-07-091-14/+21
* Use the PotDoms map to memoize 'dominating value' lookup. With this patch,Chris Lattner2006-06-141-17/+14
* Fix another instance where PHI nodes need special treatment.Owen Anderson2006-06-131-0/+6
* Fix a bug that was causing major slowdowns in povray. This was due to LCSSAOwen Anderson2006-06-131-2/+7
* Fix for 2006-06-26-MultipleExitsSingleBlock.Owen Anderson2006-06-121-4/+7
* Re-commit the safe parts of my 6/9 patch. Still working on fixing the unsafe...Owen Anderson2006-06-111-0/+2
* Back out Owen's 6/9 changes. They broke MultiSource/Benchmarks/Prolangs-C/bis...Evan Cheng2006-06-111-3/+1
* Make Loop able to verify that it is in LCSSA-form, and have the LCSSA pass as...Owen Anderson2006-06-091-1/+3
* Update some comments, and expose LCSSAID in preparation for having other passesOwen Anderson2006-06-081-1/+8
* Fix some formatting, and use inLoop() when appropriate.Owen Anderson2006-06-061-3/+3
* Stop a memory leak, and update some comments.Owen Anderson2006-06-061-10/+10
* Some more clean-up, and squash an IDF-Phi related bug.Owen Anderson2006-06-041-16/+13
* Various clean-ups suggested by Chris.Owen Anderson2006-06-041-30/+32
* Fix a bug in Phi-noded insertion. Also, update some comments to reflect what'sOwen Anderson2006-06-031-12/+21
* Remove a FIXME that was fixed with my last patch.Owen Anderson2006-06-011-2/+0
* More cleanups. Also, add a special case for updating PHI nodes, andOwen Anderson2006-06-011-21/+33