[llvm-commits] CVS: llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp

2006-08-02 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Scalar: LoopStrengthReduce.cpp updated: 1.86 -> 1.87 --- Log message: Changes: 1. Update an obsolete comment. 2. Make the sorting by base an explicit (though still N^2) step, so that the code is more clear on what it is doing. 3. Partition u

[llvm-commits] CVS: llvm/utils/TableGen/DAGISelEmitter.cpp

2006-08-02 Thread Chris Lattner
Changes in directory llvm/utils/TableGen: DAGISelEmitter.cpp updated: 1.235 -> 1.236 --- Log message: Remove some extraneous newlines. --- Diffs of the changes: (+2 -2) DAGISelEmitter.cpp |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/utils/TableGen/DAGISelEmit

[llvm-commits] CVS: llvm/utils/TableGen/DAGISelEmitter.cpp

2006-08-02 Thread Chris Lattner
Changes in directory llvm/utils/TableGen: DAGISelEmitter.cpp updated: 1.234 -> 1.235 --- Log message: Really add support for compilers without noinline --- Diffs of the changes: (+2 -0) DAGISelEmitter.cpp |2 ++ 1 files changed, 2 insertions(+) Index: llvm/utils/TableGen/DAGISelEmitt

[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp

2006-08-02 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen/SelectionDAG: SelectionDAGISel.cpp updated: 1.266 -> 1.267 --- Log message: Work around a GCC 3.3.5 bug noticed by a user. --- Diffs of the changes: (+1 -1) SelectionDAGISel.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/li

[llvm-commits] CVS: llvm/lib/CodeGen/Passes.cpp

2006-08-02 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen: Passes.cpp updated: 1.21 -> 1.22 --- Log message: Work around a bug in gcc 3.3.5, reported by a user --- Diffs of the changes: (+1 -1) Passes.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/CodeGen/Passes.cpp diff -u ll

[llvm-commits] CVS: llvm/utils/NewNightlyTest.pl

2006-08-02 Thread Patrick Jenkins
Changes in directory llvm/utils: NewNightlyTest.pl updated: 1.37 -> 1.38 --- Log message: We now only search the following directories for .o and .a files: utils/ libs/ tools/ Release/ & Debug/ as per Chris. --- Diffs of the changes: (+22 -3) NewNightlyTest.pl | 25 +++

[llvm-commits] CVS: nightlytest-serverside/test.php

2006-08-02 Thread Patrick Jenkins
Changes in directory nightlytest-serverside: test.php updated: 1.11 -> 1.12 --- Log message: We now include file size information in the summarized test page. --- Diffs of the changes: (+82 -0) test.php | 82 +++ 1 files change

[llvm-commits] CVS: nightlytest-serverside/fulltest.php

2006-08-02 Thread Patrick Jenkins
Changes in directory nightlytest-serverside: fulltest.php updated: 1.8 -> 1.9 --- Log message: We now print out file size differences in bytes and in % --- Diffs of the changes: (+19 -7) fulltest.php | 26 +++--- 1 files changed, 19 insertions(+), 7 deletions(-) I

[llvm-commits] CVS: nightlytest-serverside/NightlyTester.php

2006-08-02 Thread Patrick Jenkins
Changes in directory nightlytest-serverside: NightlyTester.php updated: 1.13 -> 1.14 --- Log message: When we build the arrays of file sizes, we now include differences in bytes and % differences --- Diffs of the changes: (+6 -4) NightlyTester.php | 10 ++ 1 files changed, 6 in

[llvm-commits] CVS: nightlytest-serverside/fulltest.php

2006-08-02 Thread Patrick Jenkins
Changes in directory nightlytest-serverside: fulltest.php updated: 1.7 -> 1.8 --- Log message: Pruned down how many file sizes are shown so that only files that have changed have their file sizes changed. --- Diffs of the changes: (+27 -12) fulltest.php | 39 +++

[llvm-commits] CVS: nightlytest-serverside/ProgramResults.php

2006-08-02 Thread Patrick Jenkins
Changes in directory nightlytest-serverside: ProgramResults.php updated: 1.4 -> 1.5 --- Log message: IFixed some indentation issues --- Diffs of the changes: (+5 -4) ProgramResults.php |9 + 1 files changed, 5 insertions(+), 4 deletions(-) Index: nightlytest-serverside/Prog

[llvm-commits] CVS: nightlytest-serverside/fulltest.php

2006-08-02 Thread Patrick Jenkins
Changes in directory nightlytest-serverside: fulltest.php updated: 1.6 -> 1.7 --- Log message: We now print out file size information over time. --- Diffs of the changes: (+43 -0) fulltest.php | 43 +++ 1 files changed, 43 insertions(+) Index: n

[llvm-commits] CVS: nightlytest-serverside/NightlyTester.php

2006-08-02 Thread Patrick Jenkins
Changes in directory nightlytest-serverside: NightlyTester.php updated: 1.12 -> 1.13 --- Log message: Added several functions to return arrays with file size information. --- Diffs of the changes: (+168 -92) NightlyTester.php | 260 ++

[llvm-commits] CVS: llvm/lib/Target/X86/X86ISelDAGToDAG.cpp

2006-08-02 Thread Evan Cheng
Changes in directory llvm/lib/Target/X86: X86ISelDAGToDAG.cpp updated: 1.87 -> 1.88 --- Log message: Reflect change to AssignTopologicalOrder(). --- Diffs of the changes: (+8 -5) X86ISelDAGToDAG.cpp | 13 - 1 files changed, 8 insertions(+), 5 deletions(-) Index: llvm/lib/Ta

[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp

2006-08-02 Thread Evan Cheng
Changes in directory llvm/lib/CodeGen/SelectionDAG: SelectionDAG.cpp updated: 1.315 -> 1.316 --- Log message: - Change AssignTopologicalOrder to return vector of SDNode* by reference. - Tweak implementation to avoid using std::map. --- Diffs of the changes: (+22 -16) SelectionDAG.cpp | 3

[llvm-commits] CVS: llvm/include/llvm/CodeGen/SelectionDAG.h

2006-08-02 Thread Evan Cheng
Changes in directory llvm/include/llvm/CodeGen: SelectionDAG.h updated: 1.106 -> 1.107 --- Log message: AssignTopologicalOrder now returns the vector of SDNode* by reference to avoid the expensive operation of copying a vector. It also returns a maximum id by value. --- Diffs of the changes:

[llvm-commits] CVS: llvm/lib/Support/CommandLine.cpp

2006-08-02 Thread Jim Laskey
Changes in directory llvm/lib/Support: CommandLine.cpp updated: 1.70 -> 1.71 --- Log message: If the Program name was NULL then all further output sent to std::cerr was suppressed. --- Diffs of the changes: (+3 -1) CommandLine.cpp |4 +++- 1 files changed, 3 insertions(+), 1 deletion(-

[llvm-commits] CVS: llvm/utils/NewNightlyTest.pl

2006-08-02 Thread Patrick Jenkins
Changes in directory llvm/utils: NewNightlyTest.pl updated: 1.36 -> 1.37 --- Log message: Removed some dead code and hopefully fixed the issue where the total list of tests was not being sent --- Diffs of the changes: (+53 -132) NewNightlyTest.pl | 185 +++

[llvm-commits] CVS: nightlytest-serverside/NightlyTestAccept.cgi

2006-08-02 Thread Patrick Jenkins
Changes in directory nightlytest-serverside: NightlyTestAccept.cgi updated: 1.39 -> 1.40 --- Log message: Added a check to see if the dejagnu output includes unexpected failures, expected failures, and expected passes. Evidently if there was no unexpected failures it would not print out 0, it

[llvm-commits] CVS: nightlytest-serverside/test.php

2006-08-02 Thread Patrick Jenkins
Changes in directory nightlytest-serverside: test.php updated: 1.10 -> 1.11 --- Log message: We now spell significantly correctly. --- Diffs of the changes: (+1 -1) test.php |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: nightlytest-serverside/test.php diff -u nightlyt

[llvm-commits] CVS: nightlytest-serverside/ProgramResults.php

2006-08-02 Thread Patrick Jenkins
Changes in directory nightlytest-serverside: ProgramResults.php updated: 1.3 -> 1.4 --- Log message: Fixed an issue where data table would not be displayed when graphing results --- Diffs of the changes: (+308 -318) ProgramResults.php | 626 ++--

[llvm-commits] CVS: nightlytest-serverside/sidebar.php

2006-08-02 Thread Patrick Jenkins
Changes in directory nightlytest-serverside: sidebar.php updated: 1.7 -> 1.8 --- Log message: Moving link to this page down to the bottom of the sidebar --- Diffs of the changes: (+2 -3) sidebar.php |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) Index: nightlytest-servers

[llvm-commits] CVS: llvm/include/llvm/CodeGen/RegAllocRegistry.h SchedulerRegistry.h

2006-08-02 Thread Jim Laskey
Changes in directory llvm/include/llvm/CodeGen: RegAllocRegistry.h added (r1.1) SchedulerRegistry.h added (r1.1) --- Log message: Breaking out specialized classes. --- Diffs of the changes: (+135 -0) RegAllocRegistry.h | 64 ++ SchedulerRegist

[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp ScheduleDAGRRList.cpp ScheduleDAGSimple.cpp SelectionDAGISel.cpp

2006-08-02 Thread Jim Laskey
Changes in directory llvm/lib/CodeGen/SelectionDAG: ScheduleDAGList.cpp updated: 1.64 -> 1.65 ScheduleDAGRRList.cpp updated: 1.11 -> 1.12 ScheduleDAGSimple.cpp updated: 1.15 -> 1.16 SelectionDAGISel.cpp updated: 1.265 -> 1.266 --- Log message: Final polish on machine pass registries. --- Diff

[llvm-commits] CVS: llvm/lib/CodeGen/MachinePassRegistry.cpp Passes.cpp RegAllocLinearScan.cpp RegAllocLocal.cpp RegAllocSimple.cpp

2006-08-02 Thread Jim Laskey
Changes in directory llvm/lib/CodeGen: MachinePassRegistry.cpp updated: 1.2 -> 1.3 Passes.cpp updated: 1.20 -> 1.21 RegAllocLinearScan.cpp updated: 1.126 -> 1.127 RegAllocLocal.cpp updated: 1.84 -> 1.85 RegAllocSimple.cpp updated: 1.71 -> 1.72 --- Log message: Final polish on machine pass regis

[llvm-commits] CVS: llvm/include/llvm/CodeGen/MachinePassRegistry.h

2006-08-02 Thread Jim Laskey
Changes in directory llvm/include/llvm/CodeGen: MachinePassRegistry.h updated: 1.2 -> 1.3 --- Log message: Final polish on machine pass registries. --- Diffs of the changes: (+29 -192) MachinePassRegistry.h | 221 ++ 1 files changed, 29 inse

[llvm-commits] CVS: llvm/lib/Target/X86/X86ISelDAGToDAG.cpp

2006-08-02 Thread Evan Cheng
Changes in directory llvm/lib/Target/X86: X86ISelDAGToDAG.cpp updated: 1.86 -> 1.87 --- Log message: Use of vector causes some horrendous compile time regression (2x)! Looks like libstdc++ implementation does not scale very well. Switch back to using directly managed arrays. --- Diffs of the