[llvm-commits] CVS: llvm/lib/VMCore/PassManagerT.h

2007-01-05 Thread LLVM
Changes in directory llvm/lib/VMCore: PassManagerT.h (r1.75) removed --- Log message: Remove PassManagerT.h --- Diffs of the changes: (+0 -0) 0 files changed ___ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailm

[llvm-commits] CVS: llvm/lib/VMCore/PassManagerT.h

2006-10-30 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManagerT.h updated: 1.69 -> 1.70 --- Log message: Update comment. Valid option is -debug-pass=Structures. --- Diffs of the changes: (+1 -1) PassManagerT.h |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/VMCore/PassManage

[llvm-commits] CVS: llvm/lib/VMCore/PassManagerT.h

2006-09-02 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: PassManagerT.h updated: 1.68 -> 1.69 --- Log message: Count the time for a pass to ReleaseMemory against that pass. Not doing this was under accounting for the time that livevariables cost --- Diffs of the changes: (+2 -0) PassManagerT.h |2 ++ 1

[llvm-commits] CVS: llvm/lib/VMCore/PassManagerT.h

2006-08-27 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: PassManagerT.h updated: 1.67 -> 1.68 --- Log message: Silence -Woverloaded-virtual warnings. --- Diffs of the changes: (+11 -1) PassManagerT.h | 12 +++- 1 files changed, 11 insertions(+), 1 deletion(-) Index: llvm/lib/VMCore/PassManagerT.h

[llvm-commits] CVS: llvm/lib/VMCore/PassManagerT.h

2006-01-12 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: PassManagerT.h updated: 1.66 -> 1.67 --- Log message: Patch #10 from Saem: "Extracts a few more methods, reduces some redundancy in the code at the same time." --- Diffs of the changes: (+32 -52) PassManagerT.h | 84 +-

[llvm-commits] CVS: llvm/lib/VMCore/PassManagerT.h

2006-01-11 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: PassManagerT.h updated: 1.65 -> 1.66 --- Log message: Patch #9 from Saem: "Cut up the runPasses method into smaller pieces. The small private helpers should be easier to deal with when code shuffling arising from creating the new specialised batchers, no

[llvm-commits] CVS: llvm/lib/VMCore/PassManagerT.h

2006-01-08 Thread Reid Spencer
Changes in directory llvm/lib/VMCore: PassManagerT.h updated: 1.64 -> 1.65 --- Log message: Saem Ghani's PassManager Patch #8: This fixes a "gccass" regression. The -debug-pass=Structure option now prints all the appropriate output --- Diffs of the changes: (+16 -2) PassManagerT.h | 18

[llvm-commits] CVS: llvm/lib/VMCore/PassManagerT.h

2006-01-07 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: PassManagerT.h updated: 1.63 -> 1.64 --- Log message: Patch #7 from Saem: "added the asserts and casts, fixed the comments and started the break down of the larger methods. A few more patches and the breakdown should be complete." --- Diffs of the chan

[llvm-commits] CVS: llvm/lib/VMCore/PassManagerT.h

2006-01-03 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: PassManagerT.h updated: 1.61 -> 1.62 --- Log message: Saem's patch #5 of the passmanager refactoring --- Diffs of the changes: (+93 -47) PassManagerT.h | 140 + 1 files changed, 93 insertions(+),

[llvm-commits] CVS: llvm/lib/VMCore/PassManagerT.h

2006-01-03 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: PassManagerT.h updated: 1.60 -> 1.61 --- Log message: patch #4 in Saem's passmanager refactoring. --- Diffs of the changes: (+50 -15) PassManagerT.h | 65 +++-- 1 files changed, 50 insertions(+), 15

[llvm-commits] CVS: llvm/lib/VMCore/PassManagerT.h

2006-01-03 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: PassManagerT.h updated: 1.59 -> 1.60 --- Log message: silence some warnings --- Diffs of the changes: (+6 -0) PassManagerT.h |6 ++ 1 files changed, 6 insertions(+) Index: llvm/lib/VMCore/PassManagerT.h diff -u llvm/lib/VMCore/PassManagerT.h:

[llvm-commits] CVS: llvm/lib/VMCore/PassManagerT.h

2006-01-02 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: PassManagerT.h updated: 1.58 -> 1.59 --- Log message: Finally commit Saem's 'patch #3' to refactor the pass manager --- Diffs of the changes: (+80 -55) PassManagerT.h | 135 + 1 files changed, 80

[llvm-commits] CVS: llvm/lib/VMCore/PassManagerT.h

2005-12-30 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: PassManagerT.h updated: 1.57 -> 1.58 --- Log message: Patch #1 of Saem Ghani's Pass Manager refactoring. From the man: "All this should do is create what will eventually be the specialised passmanagers. Currently, the templates are inheriting them, once