aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Analysis/Dominators.h
Commit message (Expand)AuthorAgeFilesLines
* Add assert to check dominance dfs numbers.Tobias Grosser2010-01-071-0/+7
* Remove workaround in PostDominatorsTobias Grosser2010-01-071-10/+4
* Fix DFS number calculation for postdominatorsTobias Grosser2010-01-071-23/+29
* Remove dead variable found by clang++.Benjamin Kramer2009-11-141-1/+0
* Make DominanceFrontier::addBasicBlock return the iterator for the newlyDan Gohman2009-10-241-2/+2
* add nodes_begin/end/iterator for dominfo, patch by Tobias Grosser!Chris Lattner2009-10-181-4/+23
* Move the dominator verification code out of special code embedded withinDan Gohman2009-09-281-0/+4
* move DominatorTree::dominates for instructions out of line,Chris Lattner2009-09-211-24/+3
* fix PR4915, a crash in -debug mode.Chris Lattner2009-09-081-1/+3
* Add const qualifiers to dominates' arguments.Dan Gohman2009-09-021-7/+11
* Be somewhat more consistent about const qualifiers.Dan Gohman2009-08-271-3/+4
* Strip trailing whitespace from blank lines.Dan Gohman2009-08-271-56/+56
* Change Pass::print to take a raw ostream instead of std::ostream,Chris Lattner2009-08-231-3/+2
* eliminate the std::ostream form of WriteAsOperand and update clients.Chris Lattner2009-08-231-20/+7
* Fix a bunch of other places that used operator[] to test whetherDan Gohman2009-07-021-2/+3
* PR4317: Handle splits where the new block is unreachable correctly in Eli Friedman2009-06-031-2/+7
* Fix broken logic in DominatorTreeBase::Split. Part of PR4238.Eli Friedman2009-05-211-40/+7
* Fix indentation.Eli Friedman2009-05-211-20/+20
* When comparing DominanceFrontier's, advance iteratorsDuncan Sands2009-05-201-3/+4
* Tidy up #includes, deleting a bunch of unnecessary #includes.Dan Gohman2009-01-051-1/+0
* Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman2008-09-041-3/+3
* Fix dom tree compare. Don't forget to compare children!Devang Patel2008-07-011-24/+36
* Fix typos in comments. Devang Patel2008-07-011-3/+3
* Add dom info verifier.Devang Patel2008-07-011-5/+108
* Add an isReachableFromEntry method.Owen Anderson2008-06-301-0/+4
* Check empty dominance frontier.Devang Patel2008-06-181-0/+3
* Fix more -Wshorten-64-to-32 warnings.Evan Cheng2008-05-051-2/+2
* Fix PR1098 by correcting the postdominators analysis.Owen Anderson2008-05-041-9/+1
* Major repairs to the post-dominators implementation. Patch from Florian Bran...Owen Anderson2008-04-161-7/+17
* Make GVN more memory efficient, particularly on code that contains a large nu...Owen Anderson2008-04-071-0/+4
* Add explicit keywords.Dan Gohman2008-03-251-2/+2
* Don't include <map> in Pass.h, which doesn't need it. This requiresDan Gohman2008-03-211-0/+1
* PassInfo keep tracks whether a pass is an analysis pass or not.Devang Patel2008-03-191-2/+2
* Do not use virtual function to identify an analysis pass.Devang Patel2008-03-191-11/+2
* Identify Analysis pass.Devang Patel2008-03-181-0/+9
* Add -analyze support to postdomtree.Dan Gohman2008-02-271-1/+4
* Don't attribute in file headers anymore. See llvmdev for theChris Lattner2007-12-291-2/+2
* Add accessor for getting the underlying templated type. This is necessary fo...Owen Anderson2007-11-271-0/+2
* Remove meaningless qualifiers from return types, avoiding compiler warnings.Dan Gohman2007-11-191-1/+1
* Some fixes to get MachineDomTree working better.Owen Anderson2007-10-311-11/+14
* Add a first attempt at dominator information for MBB's. Use with caution: th...Owen Anderson2007-10-291-7/+7
* Make it possible for DomTreeBase to be constructed from MachineFunction's as ...Owen Anderson2007-10-251-9/+10
* Make DomTreeBase not a FunctionPass.Owen Anderson2007-10-231-9/+22
* Unbreak the build. Forgot to commit this file.Owen Anderson2007-10-231-39/+176
* Move Split<...>() into DomTreeBase. This should make the #include's of Domin...Owen Anderson2007-10-181-15/+96
* Updated VC++ build system.Hartmut Kaiser2007-10-171-2/+2
* Move splitBlock into DomTreeBase from DomTree.Owen Anderson2007-10-171-5/+19
* Fix some formatting.Owen Anderson2007-10-161-15/+21
* Template DominatorTreeBase by node type. This is the next major step towardsOwen Anderson2007-10-161-58/+245
* Begin the process of allowing DomTree on MBB's. Step One: template DomTreeNo...Owen Anderson2007-10-081-19/+50