aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Analysis/PostDominators.h
Commit message (Expand)AuthorAgeFilesLines
* Update aosp/master LLVM for rebase to r235153Pirama Arumuga Nainar2015-05-181-1/+1
* Update aosp/master LLVM for rebase to r222494.Stephen Hines2014-12-021-1/+1
* Update to LLVM 3.5a.Stephen Hines2014-04-241-5/+11
* Add a const version of findNearestCommonDominator to PostDom for convenience.Benjamin Kramer2013-06-091-0/+5
* Fix include guards so they exactly match file names.Jakub Staszak2013-01-101-2/+2
* remove postdom frontiers, because it is dead. Forward dom frontiers areChris Lattner2011-04-051-32/+1
* split dom frontier handling stuff out to its own DominanceFrontier header,Chris Lattner2011-01-021-1/+1
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-191-1/+4
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-061-2/+2
* Revert r110396 to fix buildbots.Owen Anderson2010-08-061-2/+2
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-051-2/+2
* Add findNearestCommonDominator() for PostDominators.Tobias Grosser2010-03-071-0/+4
* Remove trailing white spaces in post dominators header fileTobias Grosser2010-01-111-6/+6
* Add getNode() to post dominators.Tobias Grosser2010-01-111-0/+4
* Small PostDominatorTree improvementsTobias Grosser2009-11-301-1/+4
* add nodes_begin/end/iterator for dominfo, patch by Tobias Grosser!Chris Lattner2009-10-181-0/+15
* Add dominates and releaseMemory member functions to PostDominatorTree.Dan Gohman2009-09-271-0/+12
* Change Pass::print to take a raw ostream instead of std::ostream,Chris Lattner2009-08-231-1/+1
* eliminate the std::ostream form of WriteAsOperand and update clients.Chris Lattner2009-08-231-3/+1
* Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman2008-09-041-2/+2
* Force postdom to be linked into opt and bugpoint, even though it is no longer...Owen Anderson2008-05-291-0/+3
* Remove uses of llvm/System/IncludeFile.h that are no longer needed.Dan Gohman2008-05-061-3/+0
* Implement destructor for PostDominatorTree to eliminate a memory leak.Torok Edwin2008-05-031-0/+2
* PassInfo keep tracks whether a pass is an analysis pass or not.Devang Patel2008-03-191-1/+1
* Do not use virtual function to identify an analysis pass.Devang Patel2008-03-191-7/+1
* Identify Analysis pass.Devang Patel2008-03-181-0/+6
* Add -analyze support to postdomtree.Dan Gohman2008-02-271-0/+4
* Don't attribute in file headers anymore. See llvmdev for theChris Lattner2007-12-291-2/+2
* Make DomTreeBase not a FunctionPass.Owen Anderson2007-10-231-1/+1
* Make DomTree and PostDomTree thin wrappers around DomTreeBase, rather than in...Owen Anderson2007-10-231-3/+25
* Template DominatorTreeBase by node type. This is the next major step towardsOwen Anderson2007-10-161-2/+2
* Completely merge the implementation details of DomTree and PostDomTree.Owen Anderson2007-10-031-2/+0
* Factor some code from the DomTree and PostDomTree calculate methods up into Owen Anderson2007-10-031-5/+1
* Have PostDomTree use the newly templated DFSPass.Owen Anderson2007-09-281-3/+0
* Merge significant portions of the DomTree and PostDomTree implementations.Owen Anderson2007-09-241-3/+0
* Factor the calculation details for PostDomTree out of PostDominators.cpp andOwen Anderson2007-09-231-5/+7
* Factor the dominator tree calculation details out into DominatorCalculation.h...Owen Anderson2007-09-231-6/+0
* Switch the internal "Info" map from an std::map to a DenseMap. ThisChris Lattner2007-08-051-1/+1
* switch the DomTreeNodes and IDoms maps in idom/postidom to a Chris Lattner2007-08-041-1/+1
* Break DominatorTree from ETNode.Devang Patel2007-06-121-24/+0
* s/llvm::DominatorTreeBase::DomTreeNode/llvm::DomTreeNode/gDevang Patel2007-06-041-2/+2
* s/DominatorTreeBase::Node/DominatorTreeBase:DomTreeNode/gDevang Patel2007-06-031-3/+3
* Fix typo in comment.Nick Lewycky2007-05-061-1/+1
* Drop 'const'Devang Patel2007-05-031-3/+3
* Use 'static const char' instead of 'static const int'.Devang Patel2007-05-021-3/+3
* Do not use typeinfo to identify pass in pass manager.Devang Patel2007-05-011-3/+9
* Tabs -> SpacesOwen Anderson2007-04-151-6/+6
* Remove ImmediateDominator analysis. The same information can be obtained fro...Owen Anderson2007-04-151-30/+16
* Completely purge DomSet. This is the (hopefully) final patch for PR1171.Owen Anderson2007-04-071-23/+0
* For PR780:Reid Spencer2006-06-071-7/+3