Revert r110396 to fix buildbots.
[oota-llvm.git] / include / llvm / Analysis / Dominators.h
2010-08-06 Owen AndersonRevert r110396 to fix buildbots.
2010-08-05 Owen AndersonDon't use PassInfo* as a type identifier for passes...
2010-07-16 Tobias GrosserAdd dump() to DominanceFrontier
2010-07-09 Gabor Greiffix clang selfhost issue (shadowing)
2010-07-09 Gabor Greifrefactor type expressions and cache operator*'s result
2010-06-18 Dan GohmanDon't bother calling releaseMemory before destroying...
2010-03-24 Dan GohmanFix coding style.
2010-03-24 Dan GohmanGeneralize findNearestCommonDominator to work on post...
2010-03-01 Dan GohmanWhitespace cleanups.
2010-01-07 Tobias GrosserAdd assert to check dominance dfs numbers.
2010-01-07 Tobias GrosserRemove workaround in PostDominators
2010-01-07 Tobias GrosserFix DFS number calculation for postdominators
2009-11-14 Benjamin KramerRemove dead variable found by clang++.
2009-10-24 Dan GohmanMake DominanceFrontier::addBasicBlock return the iterat...
2009-10-18 Chris Lattneradd nodes_begin/end/iterator for dominfo, patch by...
2009-09-28 Dan GohmanMove the dominator verification code out of special...
2009-09-21 Chris Lattnermove DominatorTree::dominates for instructions out...
2009-09-08 Chris Lattnerfix PR4915, a crash in -debug mode.
2009-09-02 Dan GohmanAdd const qualifiers to dominates' arguments.
2009-08-27 Dan GohmanBe somewhat more consistent about const qualifiers.
2009-08-27 Dan GohmanStrip trailing whitespace from blank lines.
2009-08-23 Chris LattnerChange Pass::print to take a raw ostream instead of...
2009-08-23 Chris Lattnereliminate the std::ostream form of WriteAsOperand and...
2009-07-02 Dan GohmanFix a bunch of other places that used operator[] to...
2009-06-03 Eli FriedmanPR4317: Handle splits where the new block is unreachabl...
2009-05-21 Eli FriedmanFix broken logic in DominatorTreeBase::Split. Part...
2009-05-21 Eli FriedmanFix indentation.
2009-05-20 Duncan SandsWhen comparing DominanceFrontier's, advance iterators
2009-01-05 Dan GohmanTidy up #includes, deleting a bunch of unnecessary...
2008-09-04 Dan GohmanTidy up several unbeseeming casts from pointer to intptr_t.
2008-07-01 Devang PatelFix dom tree compare. Don't forget to compare children!
2008-07-01 Devang PatelFix typos in comments.
2008-07-01 Devang PatelAdd dom info verifier.
2008-06-30 Owen AndersonAdd an isReachableFromEntry method.
2008-06-18 Devang PatelCheck empty dominance frontier.
2008-05-05 Evan ChengFix more -Wshorten-64-to-32 warnings.
2008-05-04 Owen AndersonFix PR1098 by correcting the postdominators analysis.
2008-04-16 Owen AndersonMajor repairs to the post-dominators implementation...
2008-04-07 Owen AndersonMake GVN more memory efficient, particularly on code...
2008-03-25 Dan GohmanAdd explicit keywords.
2008-03-21 Dan GohmanDon't include <map> in Pass.h, which doesn't need it...
2008-03-19 Devang PatelPassInfo keep tracks whether a pass is an analysis...
2008-03-19 Devang PatelDo not use virtual function to identify an analysis...
2008-03-18 Devang PatelIdentify Analysis pass.
2008-02-27 Dan GohmanAdd -analyze support to postdomtree.
2007-12-29 Chris LattnerDon't attribute in file headers anymore. See llvmdev...
2007-11-27 Owen AndersonAdd accessor for getting the underlying templated type...
2007-11-19 Dan GohmanRemove meaningless qualifiers from return types, avoidi...
2007-10-31 Owen AndersonSome fixes to get MachineDomTree working better.
2007-10-29 Owen AndersonAdd a first attempt at dominator information for MBB...
2007-10-25 Owen AndersonMake it possible for DomTreeBase to be constructed...
2007-10-23 Owen AndersonMake DomTreeBase not a FunctionPass.
2007-10-23 Owen AndersonUnbreak the build. Forgot to commit this file.
2007-10-18 Owen AndersonMove Split<...>() into DomTreeBase. This should make...
2007-10-17 Hartmut KaiserUpdated VC++ build system.
2007-10-17 Owen AndersonMove splitBlock into DomTreeBase from DomTree.
2007-10-16 Owen AndersonFix some formatting.
2007-10-16 Owen AndersonTemplate DominatorTreeBase by node type. This is the...
2007-10-08 Owen AndersonBegin the process of allowing DomTree on MBB's. Step...
2007-10-03 Owen AndersonCompletely merge the implementation details of DomTree...
2007-09-30 Owen AndersonTemplate-ize more of the DomTree internal implementatio...
2007-09-28 Owen AndersonHave PostDomTree use the newly templated DFSPass.
2007-09-27 Owen AndersonConvert DFSPass into a templated friend function, in...
2007-09-24 Owen AndersonMerge significant portions of the DomTree and PostDomTr...
2007-09-23 Owen AndersonMove DFSPass back down into DominatorTree. I need...
2007-09-23 Owen AndersonFactor the dominator tree calculation details out into...
2007-08-18 Nick LewyckySimplify.
2007-08-17 Devang PatelWhen one branch of condition is eliminated then head...
2007-08-14 Devang PatelNo need to use iterator to erase basic block.
2007-08-13 Devang PatelAdd methods to erase basic block entry.
2007-08-12 Reid SpencerChange casts from old style to new style. This helps...
2007-08-08 Chris Lattnerreimplement dfs number computation to be significantly...
2007-08-06 Chris LattnerVarious random cleanups, add two accessors to DomTreeNo...
2007-08-05 Chris LattnerSwitch the internal "Info" map from an std::map to...
2007-08-04 Chris Lattnerswitch the DomTreeNodes and IDoms maps in idom/postidom...
2007-07-04 Devang PatelRemove unused method - getIDomBlock().
2007-07-04 Devang PatelFix typo in assertion check.
2007-06-28 Devang PatelRemove unnecessary comments.
2007-06-28 Devang PatelHandle the case when block dominates itself.
2007-06-27 Devang PatelRemove ETForest.
2007-06-21 Devang PatelMove code to update dominator information after basic...
2007-06-12 Devang PatelProtect updateDFSNumbers()
2007-06-12 Devang PatelMake DFS number manipulation methods private.
2007-06-12 Devang PatelBreak DominatorTree from ETNode.
2007-06-12 Devang PatelMaintain DFS number in DomTreeNode itself.
2007-06-11 Devang PatelAdd and use DominatorTreeBase::findNearestCommonDominat...
2007-06-08 Devang PatelFix spelling.
2007-06-08 Devang PatelUpdate LoopSimplify to require and preserve DominatorTr...
2007-06-08 Devang PatelAdd new method - nearestCommonDominator().
2007-06-07 Devang PatelAdd instruction level dominates(A,B) interface.
2007-06-07 Devang PatelDo not use ETForest as well as DomiantorTree. Dominato...
2007-06-07 Devang PatelAdd basic block level properlyDominates(A,B) interface.
2007-06-07 Devang PatelAdd BasicBlock level dominates(A,B) interface.
2007-06-07 Devang PatelMaintain ETNode as part of DomTreeNode.
2007-06-06 Devang PatelBreak friendship.
2007-06-06 Devang PatelSimplify class hierarchy.
2007-06-04 Devang Patels/ETNode::getChildren/ETNode::getETNodeChildren/g
2007-06-04 Devang PatelAdd FIXMEs.
2007-06-04 Devang PatelRemove unused method.
2007-06-04 Devang Patels/DominatorTree::createNewNode/DominatorTree::addNewBlock/g
next