summaryrefslogtreecommitdiff
path: root/lib/VMCore/Dominators.cpp
Commit message (Expand)AuthorAge
* Spruce up the error output.Bill Wendling2011-03-29
* Update a comment.Cameron Zwarich2011-01-20
* Remove an unnecessary #include.Cameron Zwarich2011-01-18
* Move DominanceFrontier from VMCore to Analysis.Cameron Zwarich2011-01-18
* There is no point in verifying an analysis that is never updated.Cameron Zwarich2011-01-18
* Remove some now-unused DominanceFrontier methods.Cameron Zwarich2011-01-18
* make domtree verification print something useful on failure.Chris Lattner2011-01-08
* split dom frontier handling stuff out to its own DominanceFrontier header,Chris Lattner2011-01-02
* Begin adding static dependence information to passes, which will allow us toOwen Anderson2010-10-12
* Now with fewer extraneous semicolons!Owen Anderson2010-10-07
* Fix (at least) quadratic worst-case complexity in DominanceFrontier::splitBlock:Dan Gohman2010-07-26
* Avoid copying and recopying a std::set.Dan Gohman2010-07-26
* Exit a search loop when the search goal is found.Dan Gohman2010-07-26
* Fix formatting.Dan Gohman2010-07-26
* Fix batch of converting RegisterPass<> to INTIALIZE_PASS().Owen Anderson2010-07-21
* LoopSimplify does not update domfrontier correctly.Tobias Grosser2010-07-16
* Add dump() to DominanceFrontierTobias Grosser2010-07-16
* Fix a bunch of namespace polution.Dan Gohman2010-04-15
* Fix a typo and some indentation.Dan Gohman2010-04-09
* Qualify a bunch of explicit template instantiations to satisfy clang++.John McCall2009-12-19
* Make DominanceFrontierBase::print's output prettier.Dan Gohman2009-10-24
* Remove temporary debugging hack.Dan Gohman2009-09-28
* Move the dominator verification code out of special code embedded withinDan Gohman2009-09-28
* Fix PR5023: The instruction form of DominatorTree::dominates did not Chris Lattner2009-09-21
* move DominatorTree::dominates for instructions out of line,Chris Lattner2009-09-21
* Change Pass::print to take a raw ostream instead of std::ostream,Chris Lattner2009-08-23
* eliminate the std::ostream form of WriteAsOperand and update clients.Chris Lattner2009-08-23
* switch DominanceFrontier::splitBlock to use a smallvector forChris Lattner2009-08-15
* Fix some incorrect logic in DominanceFrontier::splitBlock. Part of Eli Friedman2009-05-21
* Move dominator info printer into tool/opt/GraphPrinters.cppDevang Patel2008-06-30
* Add dominator info printer pass.Devang Patel2008-06-27
* Dominance Frontier is cfg only pass.Devang Patel2008-05-13
* don't print dominators every time it is computed with -debug.Chris Lattner2008-04-21
* Major repairs to the post-dominators implementation. Patch from Florian Bran...Owen Anderson2008-04-16
* These passes preserve CFG.Devang Patel2008-03-20
* Restore isCFGOnly property of various analysis passes.Devang Patel2008-03-20
* PassInfo keep tracks whether a pass is an analysis pass or not.Devang Patel2008-03-19
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-29
* Make DomTree and PostDomTree thin wrappers around DomTreeBase, rather than in...Owen Anderson2007-10-23
* Move splitBlock into DomTreeBase from DomTree.Owen Anderson2007-10-17
* Template DominatorTreeBase by node type. This is the next major step towardsOwen Anderson2007-10-16
* Begin the process of allowing DomTree on MBB's. Step One: template DomTreeNo...Owen Anderson2007-10-08
* Fix bug in updating dominance frontier after loop Devang Patel2007-10-05
* Completely merge the implementation details of DomTree and PostDomTree.Owen Anderson2007-10-03
* Factor some code from the DomTree and PostDomTree calculate methods up into Owen Anderson2007-10-03
* Convert DFSPass into a templated friend function, in preparation for making i...Owen Anderson2007-09-27
* Move DFSPass back down into DominatorTree. I need to figure out what the dif...Owen Anderson2007-09-23
* Factor the dominator tree calculation details out into DominatorCalculation.h...Owen Anderson2007-09-23
* Assert sooner. Fix wordings.Devang Patel2007-08-14
* Add methods to erase basic block entry.Devang Patel2007-08-13