summaryrefslogtreecommitdiff
path: root/lib/VMCore/Dominators.cpp
Commit message (Expand)AuthorAge
* 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
* Speed up updateDFSNumbers with two observations:Chris Lattner2007-08-08
* reimplement dfs number computation to be significantly faster. This speeds upChris Lattner2007-08-08
* 1. Random tidiness cleanupsChris Lattner2007-08-06
* Fix an iterator invalidation bug I induced.Chris Lattner2007-08-05
* Switch some std::sets to SmallPtrSet. This speeds upChris Lattner2007-08-05
* Switch DomTreeNode::assignDFSNumber from using a std::set to usingChris Lattner2007-08-05
* Switch the internal "Info" map from an std::map to a DenseMap. ThisChris Lattner2007-08-05
* switch the DomTreeNodes and IDoms maps in idom/postidom to a Chris Lattner2007-08-04