summaryrefslogtreecommitdiff
path: root/include/llvm/Analysis/PostDominators.h
Commit message (Expand)AuthorAge
* [C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper2014-03-05
* [cleanup] Move the Dominators.h and Verifier.h headers into the IRChandler Carruth2014-01-13
* Add PostDominatorTree::getDescendants.Diego Novillo2013-11-26
* Add a const version of findNearestCommonDominator to PostDom for convenience.Benjamin Kramer2013-06-09
* Fix include guards so they exactly match file names.Jakub Staszak2013-01-10
* remove postdom frontiers, because it is dead. Forward dom frontiers areChris Lattner2011-04-05
* split dom frontier handling stuff out to its own DominanceFrontier header,Chris Lattner2011-01-02
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-19
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-06
* Revert r110396 to fix buildbots.Owen Anderson2010-08-06
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-05
* Add findNearestCommonDominator() for PostDominators.Tobias Grosser2010-03-07
* Remove trailing white spaces in post dominators header fileTobias Grosser2010-01-11
* Add getNode() to post dominators.Tobias Grosser2010-01-11
* Small PostDominatorTree improvementsTobias Grosser2009-11-30
* add nodes_begin/end/iterator for dominfo, patch by Tobias Grosser!Chris Lattner2009-10-18
* Add dominates and releaseMemory member functions to PostDominatorTree.Dan Gohman2009-09-27
* 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
* Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman2008-09-04
* Force postdom to be linked into opt and bugpoint, even though it is no longer...Owen Anderson2008-05-29
* Remove uses of llvm/System/IncludeFile.h that are no longer needed.Dan Gohman2008-05-06
* Implement destructor for PostDominatorTree to eliminate a memory leak.Torok Edwin2008-05-03
* PassInfo keep tracks whether a pass is an analysis pass or not.Devang Patel2008-03-19
* Do not use virtual function to identify an analysis pass.Devang Patel2008-03-19
* Identify Analysis pass.Devang Patel2008-03-18
* Add -analyze support to postdomtree.Dan Gohman2008-02-27
* Don't attribute in file headers anymore. See llvmdev for theChris Lattner2007-12-29
* Make DomTreeBase not a FunctionPass.Owen Anderson2007-10-23
* Make DomTree and PostDomTree thin wrappers around DomTreeBase, rather than in...Owen Anderson2007-10-23
* Template DominatorTreeBase by node type. This is the next major step towardsOwen Anderson2007-10-16
* 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
* Have PostDomTree use the newly templated DFSPass.Owen Anderson2007-09-28
* Merge significant portions of the DomTree and PostDomTree implementations.Owen Anderson2007-09-24
* Factor the calculation details for PostDomTree out of PostDominators.cpp andOwen Anderson2007-09-23
* Factor the dominator tree calculation details out into DominatorCalculation.h...Owen Anderson2007-09-23
* 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
* Break DominatorTree from ETNode.Devang Patel2007-06-12
* s/llvm::DominatorTreeBase::DomTreeNode/llvm::DomTreeNode/gDevang Patel2007-06-04
* s/DominatorTreeBase::Node/DominatorTreeBase:DomTreeNode/gDevang Patel2007-06-03
* Fix typo in comment.Nick Lewycky2007-05-06
* Drop 'const'Devang Patel2007-05-03
* Use 'static const char' instead of 'static const int'.Devang Patel2007-05-02
* Do not use typeinfo to identify pass in pass manager.Devang Patel2007-05-01
* Tabs -> SpacesOwen Anderson2007-04-15
* Remove ImmediateDominator analysis. The same information can be obtained fro...Owen Anderson2007-04-15
* Completely purge DomSet. This is the (hopefully) final patch for PR1171.Owen Anderson2007-04-07
* For PR780:Reid Spencer2006-06-07