summaryrefslogtreecommitdiff
path: root/lib/Analysis/PostDominators.cpp
Commit message (Expand)AuthorAge
* [Modules] Fix potential ODR violations by sinking the DEBUG_TYPEChandler Carruth2014-04-22
* [Modules] Move CFG.h to the IR library as it defines graph traits overChandler Carruth2014-03-04
* [cleanup] Re-sort all the includes with utils/sort_includes.py.Chandler Carruth2014-03-04
* [PM] Pull the generic graph algorithms and data structures for dominatorChandler Carruth2014-01-13
* [cleanup] Move the Dominators.h and Verifier.h headers into the IRChandler Carruth2014-01-13
* Put the functionality for printing a value to a raw_ostream as anChandler Carruth2014-01-09
* Move the LLVM IR asm writer header files into the IR directory, as theyChandler Carruth2014-01-07
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-02
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-03
* 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
* Begin adding static dependence information to passes, which will allow us toOwen Anderson2010-10-12
* Now with fewer extraneous semicolons!Owen Anderson2010-10-07
* Add INSTANTIATE_AG_PASS, which combines RegisterPass<> with RegisterAnalysisG...Owen Anderson2010-07-21
* Fix batch of converting RegisterPass<> to INTIALIZE_PASS().Owen Anderson2010-07-21
* cache result of operator*Gabor Greif2010-07-09
* Remove unneeded debug in PostDominator runOnFunction()Tobias Grosser2010-04-12
* Convert debug messages to use dbgs(). Generally this meansDavid Greene2009-12-23
* 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
* Add newline at end of file.Owen Anderson2008-05-29
* 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
* 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
* 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
* Factor the calculation details for PostDomTree out of PostDominators.cpp andOwen Anderson2007-09-23
* reimplement dfs number computation to be significantly faster. This speeds upChris Lattner2007-08-08
* Fix an iterator invalidation bug I induced.Chris Lattner2007-08-05
* Switch some std::sets to SmallPtrSet. This speeds upChris 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
* Unreachable block is not a root node in post dominator tree.Devang Patel2007-07-24
* Break DominatorTree from ETNode.Devang Patel2007-06-12
* Maintain ETNode as part of DomTreeNode.Devang Patel2007-06-07
* s/llvm::DominatorTreeBase::DomTreeNode/llvm::DomTreeNode/gDevang Patel2007-06-04
* s/DominatorTreeBase::Node/DominatorTreeBase:DomTreeNode/gDevang Patel2007-06-03
* 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
* Cache DT[*SI] lookup.Devang Patel2007-04-18
* FixDevang Patel2007-04-18