[llvm-commits] CVS: llvm/include/llvm/Analysis/ET-Forest.h

2007-02-21 Thread Devang Patel
Changes in directory llvm/include/llvm/Analysis: ET-Forest.h updated: 1.8 -> 1.9 --- Log message: Simplify --- Diffs of the changes: (+1 -2) ET-Forest.h |3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) Index: llvm/include/llvm/Analysis/ET-Forest.h diff -u llvm/include/llvm/Ana

[llvm-commits] CVS: llvm/include/llvm/Analysis/ET-Forest.h

2007-02-20 Thread Devang Patel
Changes in directory llvm/include/llvm/Analysis: ET-Forest.h updated: 1.7 -> 1.8 --- Log message: Fix memory leak (PR 775: http://llvm.org/PR775 ). --- Diffs of the changes: (+2 -0) ET-Forest.h |2 ++ 1 files changed, 2 insertions(+) Index: llvm/include/llvm/Analysis/ET-Forest.h diff

[llvm-commits] CVS: llvm/include/llvm/Analysis/ET-Forest.h

2006-09-21 Thread Devang Patel
Changes in directory llvm/include/llvm/Analysis: ET-Forest.h updated: 1.6 -> 1.7 --- Log message: Use iterative algorith to assign DFS number. This reduces call stack depth. --- Diffs of the changes: (+1 -10) ET-Forest.h | 11 +-- 1 files changed, 1 insertion(+), 10 deletions(-)

[llvm-commits] CVS: llvm/include/llvm/Analysis/ET-Forest.h

2006-09-14 Thread Devang Patel
Changes in directory llvm/include/llvm/Analysis: ET-Forest.h updated: 1.5 -> 1.6 --- Log message: Undo previous check-in. Reintroduce recursive assignDFSNumber(). --- Diffs of the changes: (+10 -1) ET-Forest.h | 11 ++- 1 files changed, 10 insertions(+), 1 deletion(-) Index: ll

[llvm-commits] CVS: llvm/include/llvm/Analysis/ET-Forest.h

2006-09-13 Thread Devang Patel
Changes in directory llvm/include/llvm/Analysis: ET-Forest.h updated: 1.4 -> 1.5 --- Log message: Avoid recursion in assignDFSNumber(). Move def from ET-Forest.h to Dominators.h --- Diffs of the changes: (+1 -10) ET-Forest.h | 11 +-- 1 files changed, 1 insertion(+), 10 deletion

[llvm-commits] CVS: llvm/include/llvm/Analysis/ET-Forest.h

2006-01-15 Thread Chris Lattner
Changes in directory llvm/include/llvm/Analysis: ET-Forest.h updated: 1.3 -> 1.4 --- Log message: Initialize DFSnum's to -1, in case a node is not reachable. --- Diffs of the changes: (+3 -2) ET-Forest.h |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) Index: llvm/include/l

[llvm-commits] CVS: llvm/include/llvm/Analysis/ET-Forest.h

2006-01-15 Thread Chris Lattner
Changes in directory llvm/include/llvm/Analysis: ET-Forest.h updated: 1.2 -> 1.3 --- Log message: add an assert, patch by Daniel Berlin --- Diffs of the changes: (+1 -0) ET-Forest.h |1 + 1 files changed, 1 insertion(+) Index: llvm/include/llvm/Analysis/ET-Forest.h diff -u llvm/inclu

[llvm-commits] CVS: llvm/include/llvm/Analysis/ET-Forest.h

2006-01-08 Thread Chris Lattner
Changes in directory llvm/include/llvm/Analysis: ET-Forest.h updated: 1.1 -> 1.2 --- Log message: Fix the build on platforms where doesn't define NULL --- Diffs of the changes: (+1 -0) ET-Forest.h |1 + 1 files changed, 1 insertion(+) Index: llvm/include/llvm/Analysis/ET-Forest.h di

[llvm-commits] CVS: llvm/include/llvm/Analysis/ET-Forest.h Dominators.h PostDominators.h

2006-01-08 Thread Chris Lattner
Changes in directory llvm/include/llvm/Analysis: ET-Forest.h added (r1.1) Dominators.h updated: 1.51 -> 1.52 PostDominators.h updated: 1.9 -> 1.10 --- Log message: Initial implementation of the ET-Forest data structure for dominators and post-dominators. This code was written/adapted by Daniel