summaryrefslogtreecommitdiff
path: root/lib/VMCore/Dominators.cpp
Commit message (Expand)AuthorAge
* Rename VMCore directory to IR.Chandler Carruth2013-01-02
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-03
* Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S...Sylvestre Ledru2012-09-27
* Fix a typo 'iff' => 'if'Sylvestre Ledru2012-09-27
* Assert that dominates is not given a multiple edge. Finding out if we haveRafael Espindola2012-08-17
* Teach GVN to reason about edges dominating uses. This allows it to handle casesRafael Espindola2012-08-16
* Move BasicBlockEdge to the cpp file. No functionality change.Rafael Espindola2012-08-10
* The dominance computation already has logic for computing if an edge dominatesRafael Espindola2012-08-07
* Def here is an Instruction, so !isa<Instruction>(Def) is always false,Dan Gohman2012-04-13
* Add forms of dominates and isReachableFromEntry that accept a UseDan Gohman2012-04-12
* Handle unreachable code in the dominates functions. This changes users whenRafael Espindola2012-03-30
* Change the implementation of dominates(inst, inst) to one based on what theRafael Espindola2012-02-26
* White space fixes.Rafael Espindola2012-02-18
* 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