2008-05-13 |
Devang Patel | Dominance Frontier is cfg only pass. |
blob | commitdiff | raw |
2008-04-21 |
Chris Lattner | don't print dominators every time it is computed with... |
blob | commitdiff | raw | diff to current |
2008-04-16 |
Owen Anderson | Major repairs to the post-dominators implementation... |
blob | commitdiff | raw | diff to current |
2008-03-20 |
Devang Patel | These passes preserve CFG. |
blob | commitdiff | raw | diff to current |
2008-03-20 |
Devang Patel | Restore isCFGOnly property of various analysis passes. |
blob | commitdiff | raw | diff to current |
2008-03-19 |
Devang Patel | PassInfo keep tracks whether a pass is an analysis... |
blob | commitdiff | raw | diff to current |
2007-12-29 |
Chris Lattner | Remove attribution from file headers, per discussion... |
blob | commitdiff | raw | diff to current |
2007-10-23 |
Owen Anderson | Make DomTree and PostDomTree thin wrappers around DomTr... |
blob | commitdiff | raw | diff to current |
2007-10-17 |
Owen Anderson | Move splitBlock into DomTreeBase from DomTree. |
blob | commitdiff | raw | diff to current |
2007-10-16 |
Owen Anderson | Template DominatorTreeBase by node type. This is the... |
blob | commitdiff | raw | diff to current |
2007-10-08 |
Owen Anderson | Begin the process of allowing DomTree on MBB's. Step... |
blob | commitdiff | raw | diff to current |
2007-10-05 |
Devang Patel | Fix bug in updating dominance frontier after loop |
blob | commitdiff | raw | diff to current |
2007-10-03 |
Owen Anderson | Completely merge the implementation details of DomTree... |
blob | commitdiff | raw | diff to current |
2007-10-03 |
Owen Anderson | Factor some code from the DomTree and PostDomTree calcu... |
blob | commitdiff | raw | diff to current |
2007-09-27 |
Owen Anderson | Convert DFSPass into a templated friend function, in... |
blob | commitdiff | raw | diff to current |
2007-09-23 |
Owen Anderson | Move DFSPass back down into DominatorTree. I need... |
blob | commitdiff | raw | diff to current |
2007-09-23 |
Owen Anderson | Factor the dominator tree calculation details out into... |
blob | commitdiff | raw | diff to current |
2007-08-14 |
Devang Patel | Assert sooner. Fix wordings. |
blob | commitdiff | raw | diff to current |
2007-08-13 |
Devang Patel | Add methods to erase basic block entry. |
blob | commitdiff | raw | diff to current |
2007-08-08 |
Chris Lattner | Speed up updateDFSNumbers with two observations: |
blob | commitdiff | raw | diff to current |
2007-08-08 |
Chris Lattner | reimplement dfs number computation to be significantly... |
blob | commitdiff | raw | diff to current |
2007-08-06 |
Chris Lattner | 1. Random tidiness cleanups |
blob | commitdiff | raw | diff to current |
2007-08-05 |
Chris Lattner | Fix an iterator invalidation bug I induced. |
blob | commitdiff | raw | diff to current |
2007-08-05 |
Chris Lattner | Switch some std::sets to SmallPtrSet. This speeds up |
blob | commitdiff | raw | diff to current |
2007-08-05 |
Chris Lattner | Switch DomTreeNode::assignDFSNumber from using a std... |
blob | commitdiff | raw | diff to current |
2007-08-05 |
Chris Lattner | Switch the internal "Info" map from an std::map to... |
blob | commitdiff | raw | diff to current |
2007-08-04 |
Chris Lattner | switch the DomTreeNodes and IDoms maps in idom/postidom... |
blob | commitdiff | raw | diff to current |
2007-08-02 |
Devang Patel | Update dominator info for the middle blocks created... |
blob | commitdiff | raw | diff to current |
2007-08-01 |
Devang Patel | Undo previous check-in. |
blob | commitdiff | raw | diff to current |
2007-08-01 |
Devang Patel | Update dominator info for the middle blocks created... |
blob | commitdiff | raw | diff to current |
2007-07-27 |
Devang Patel | Fix edge cases in handling basic block split. |
blob | commitdiff | raw | diff to current |
2007-06-27 |
Devang Patel | Remove ETForest. |
blob | commitdiff | raw | diff to current |
2007-06-21 |
Devang Patel | Move code to update dominator information after basic... |
blob | commitdiff | raw | diff to current |
2007-06-12 |
Devang Patel | isReachableFromEntry() is not suitable for post dominator. |
blob | commitdiff | raw | diff to current |
2007-06-12 |
Devang Patel | Remove redundant check. |
blob | commitdiff | raw | diff to current |
2007-06-12 |
Devang Patel | Check A dominates B and vise versa first while searchin... |
blob | commitdiff | raw | diff to current |
2007-06-12 |
Devang Patel | Break DominatorTree from ETNode. |
blob | commitdiff | raw | diff to current |
2007-06-12 |
Devang Patel | Use SmallPtrSet instaed of std::set |
blob | commitdiff | raw | diff to current |
2007-06-12 |
Devang Patel | Check immediate dominators first while searching for... |
blob | commitdiff | raw | diff to current |
2007-06-12 |
Devang Patel | Maintain DFS number in DomTreeNode itself. |
blob | commitdiff | raw | diff to current |
2007-06-11 |
Devang Patel | Add and use DominatorTreeBase::findNearestCommonDominat... |
blob | commitdiff | raw | diff to current |
2007-06-08 |
Devang Patel | Update LoopSimplify to require and preserve DominatorTr... |
blob | commitdiff | raw | diff to current |
2007-06-07 |
Devang Patel | Add instruction level dominates(A,B) interface. |
blob | commitdiff | raw | diff to current |
2007-06-07 |
Devang Patel | Maintain ETNode as part of DomTreeNode. |
blob | commitdiff | raw | diff to current |
2007-06-06 |
Devang Patel | Add new dominator tree node into dominator tree node... |
blob | commitdiff | raw | diff to current |
2007-06-04 |
Devang Patel | Add FIXMEs. |
blob | commitdiff | raw | diff to current |
2007-06-04 |
Devang Patel | s/llvm::DominatorTreeBase::DomTreeNode/llvm::DomTreeNode/g |
blob | commitdiff | raw | diff to current |
2007-06-03 |
Devang Patel | s/DominatorTreeBase::Node/DominatorTreeBase:DomTreeNode/g |
blob | commitdiff | raw | diff to current |
2007-05-23 |
Devang Patel | Add dump() routines for debugging assistance. |
blob | commitdiff | raw | diff to current |
2007-05-03 |
Devang Patel | Use iterative while loop instead of recursive function... |
blob | commitdiff | raw | diff to current |
2007-05-03 |
Devang Patel | Drop 'const' |
blob | commitdiff | raw | diff to current |
2007-05-02 |
Devang Patel | Use 'static const char' instead of 'static const int'. |
blob | commitdiff | raw | diff to current |
2007-05-01 |
Devang Patel | Do not use typeinfo to identify pass in pass manager. |
blob | commitdiff | raw | diff to current |
2007-04-21 |
Devang Patel | Reset vertex. |
blob | commitdiff | raw | diff to current |
2007-04-15 |
Owen Anderson | Tabs -> Spaces |
blob | commitdiff | raw | diff to current |
2007-04-15 |
Owen Anderson | Remove ImmediateDominator analysis. The same informati... |
blob | commitdiff | raw | diff to current |
2007-04-14 |
Owen Anderson | Fix some unsafe code. Also, tabs -> spaces. |
blob | commitdiff | raw | diff to current |
2007-04-14 |
Owen Anderson | Make ETForest depend on DomTree rather than IDom. ... |
blob | commitdiff | raw | diff to current |
2007-04-09 |
Chris Lattner | Convert ImmediateDominators::DFSPass from being recursi... |
blob | commitdiff | raw | diff to current |
2007-04-09 |
Chris Lattner | minor cleanups |
blob | commitdiff | raw | diff to current |
2007-04-09 |
Owen Anderson | Move isReachableFromEntry out of line to avoid an unnec... |
blob | commitdiff | raw | diff to current |
2007-04-08 |
Owen Anderson | Remove DomSet completely. This concludes work on PR1171. |
blob | commitdiff | raw | diff to current |
2007-04-08 |
Nick Lewycky | Don't crash when encountering a BasicBlock that hasn... |
blob | commitdiff | raw | diff to current |
2007-04-07 |
Owen Anderson | Add DomSet back, and revert the changes to LoopSimplify... |
blob | commitdiff | raw | diff to current |
2007-04-07 |
Owen Anderson | Completely purge DomSet. This is the (hopefully) final... |
blob | commitdiff | raw | diff to current |
2007-03-28 |
Devang Patel | It is not possible to determine dominance between two... |
blob | commitdiff | raw | diff to current |
2007-03-27 |
Devang Patel | Use SmallPtrSet. |
blob | commitdiff | raw | diff to current |
2007-03-27 |
Devang Patel | Spell check. |
blob | commitdiff | raw | diff to current |
2007-03-26 |
Devang Patel | It is not possible to determie dominance between two... |
blob | commitdiff | raw | diff to current |
2007-03-26 |
Devang Patel | Use std::vector<DFCalculateWorkObject> instead of |
blob | commitdiff | raw | diff to current |
2007-03-20 |
Devang Patel | DominanceFrontier::calculate(). |
blob | commitdiff | raw | diff to current |
2007-03-20 |
Devang Patel | LoopSimplify::FindPHIToPartitionLoops() |
blob | commitdiff | raw | diff to current |
2006-11-17 |
Bill Wendling | Removed iostream #includes. Replaced std::cerr with... |
blob | commitdiff | raw | diff to current |
2006-09-22 |
Devang Patel | remove extra white spaces. |
blob | commitdiff | raw | diff to current |
2006-09-22 |
Devang Patel | Use iterative algorith to assign DFS number. This reduces |
blob | commitdiff | raw | diff to current |
2006-09-14 |
Devang Patel | Undo previous check-in. |
blob | commitdiff | raw | diff to current |
2006-09-14 |
Devang Patel | Avoid recursion in assignDFSNumber(). Move def from... |
blob | commitdiff | raw | diff to current |
2006-08-27 |
Chris Lattner | Eliminate RegisterAnalysis. RegisterPass now does... |
blob | commitdiff | raw | diff to current |
2006-08-01 |
Chris Lattner | Add dominates/properlyDominates queries to IDom. |
blob | commitdiff | raw | diff to current |
2006-06-07 |
Reid Spencer | For PR780: |
blob | commitdiff | raw | diff to current |
2006-06-01 |
Reid Spencer | Change from using a stub function to a stub variable... |
blob | commitdiff | raw | diff to current |
2006-03-14 |
Chris Lattner | Fix an et-forest memory leak. Patch by Daniel Berlin. |
blob | commitdiff | raw | diff to current |
2006-01-14 |
Chris Lattner | Change ET-Forest to automatically recalculate its DFSnu... |
blob | commitdiff | raw | diff to current |
2006-01-09 |
Chris Lattner | Bugfix for etforest updating. Contributed by Daniel... |
blob | commitdiff | raw | diff to current |
2006-01-08 |
Chris Lattner | Initial implementation of the ET-Forest data structure... |
blob | commitdiff | raw | diff to current |
2005-12-26 |
Duraid Madina | more HP-UX cleanliness |
blob | commitdiff | raw | diff to current |
2005-11-18 |
Chris Lattner | This requires proper dominance |
blob | commitdiff | raw | diff to current |
2005-04-25 |
Chris Lattner | Make dominates(A,B) work with post dominators. Patch... |
blob | commitdiff | raw | diff to current |
2005-04-23 |
Jeff Cohen | Eliminate tabs and trailing spaces |
blob | commitdiff | raw | diff to current |
2005-04-21 |
Misha Brukman | Remove trailing whitespace |
blob | commitdiff | raw | diff to current |
2004-12-07 |
Reid Spencer | For PR387:\ |
blob | commitdiff | raw | diff to current |
2004-10-14 |
Chris Lattner | Make sure any client of Dominators.h links in Dominator... |
blob | commitdiff | raw | diff to current |
2004-09-01 |
Reid Spencer | Changes For Bug 352 |
blob | commitdiff | raw | diff to current |
2004-06-19 |
Chris Lattner | compute dominator tree children in a deterministic... |
blob | commitdiff | raw | diff to current |
2004-06-19 |
Chris Lattner | Print out immediate dominators in program order, not... |
blob | commitdiff | raw | diff to current |
2004-06-05 |
Chris Lattner | Add missing #include |
blob | commitdiff | raw | diff to current |
2003-12-07 |
Chris Lattner | The recalclulate method was a nasty hack that was once... |
blob | commitdiff | raw | diff to current |
2003-12-07 |
Chris Lattner | Completely rewrite domset, idom, and domtree implementa... |
blob | commitdiff | raw | diff to current |
2003-11-21 |
Chris Lattner | Finegrainify namespacification |
blob | commitdiff | raw | diff to current |
2003-11-11 |
Brian Gaeke | Put all LLVM code into the llvm namespace, as per bug... |
blob | commitdiff | raw | diff to current |
next |