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

2006-09-13 Thread Chris Lattner
Changes in directory llvm/include/llvm/CodeGen: LiveIntervalAnalysis.h updated: 1.62 -> 1.63 --- Log message: revert accidentally committed file --- Diffs of the changes: (+3 -23) LiveIntervalAnalysis.h | 26 +++--- 1 files changed, 3 insertions(+), 23 deletions(-)

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

2006-09-13 Thread Chris Lattner
Changes in directory llvm/include/llvm/CodeGen: LiveIntervalAnalysis.h updated: 1.61 -> 1.62 MachineFunction.h updated: 1.60 -> 1.61 --- Log message: Remove dead methods, add getNumBlockIDs() method --- Diffs of the changes: (+25 -10) LiveIntervalAnalysis.h | 26 +++--

[llvm-commits] CVS: llvm/lib/System/Unix/Process.inc

2006-09-13 Thread Chris Lattner
Changes in directory llvm/lib/System/Unix: Process.inc updated: 1.17 -> 1.18 --- Log message: Use new config.h macro --- Diffs of the changes: (+2 -2) Process.inc |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/lib/System/Unix/Process.inc diff -u llvm/lib/System

[llvm-commits] CVS: llvm-test/Makefile.programs

2006-09-13 Thread Chris Lattner
Changes in directory llvm-test: Makefile.programs updated: 1.224 -> 1.225 --- Log message: Speed up the nightly tester by asking the JIT to not spew core files. We won't be able to really understand them anyway, as the code will be all machine generated with debug symbols. --- Diffs of the c

[llvm-commits] CVS: llvm/include/llvm/Config/config.h.in

2006-09-13 Thread Reid Spencer
Changes in directory llvm/include/llvm/Config: config.h.in updated: 1.68 -> 1.69 --- Log message: Add a HAVE_MACH_MACH_H #define to detect the presence of the mach/mach.h header file on Darwin. --- Diffs of the changes: (+3 -0) config.h.in |3 +++ 1 files changed, 3 insertions(+) In

[llvm-commits] CVS: llvm/autoconf/configure.ac

2006-09-13 Thread Reid Spencer
Changes in directory llvm/autoconf: configure.ac updated: 1.245 -> 1.246 --- Log message: Add a HAVE_MACH_MACH_H #define to detect the presence of the mach/mach.h header file on Darwin. --- Diffs of the changes: (+1 -1) configure.ac |2 +- 1 files changed, 1 insertion(+), 1 deletion(-

[llvm-commits] CVS: llvm/configure

2006-09-13 Thread Reid Spencer
Changes in directory llvm: configure updated: 1.249 -> 1.250 --- Log message: Add a HAVE_MACH_MACH_H #define to detect the presence of the mach/mach.h header file on Darwin. --- Diffs of the changes: (+2 -1) configure |3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) Index: ll

[llvm-commits] CVS: llvm/tools/lli/lli.cpp

2006-09-13 Thread Chris Lattner
Changes in directory llvm/tools/lli: lli.cpp updated: 1.59 -> 1.60 --- Log message: add a new (hidden) -disable-core-files option --- Diffs of the changes: (+9 -0) lli.cpp |9 + 1 files changed, 9 insertions(+) Index: llvm/tools/lli/lli.cpp diff -u llvm/tools/lli/lli.cpp:1.59

[llvm-commits] CVS: llvm/lib/System/Unix/Process.inc

2006-09-13 Thread Chris Lattner
Changes in directory llvm/lib/System/Unix: Process.inc updated: 1.16 -> 1.17 --- Log message: On Mac OS/X, make Process::PreventCoreFiles disable crash reporter for the process in addition to disabling core file emission. This speeds up bugpoint on default-configured macs by several orders of

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

2006-09-13 Thread Evan Cheng
Changes in directory llvm/lib/CodeGen: MachineFunction.cpp updated: 1.98 -> 1.99 --- Log message: A MachineConstantPool may have mixed Constant* and MachineConstantPoolValue* values. --- Diffs of the changes: (+8 -2) MachineFunction.cpp | 10 -- 1 files changed, 8 insertions(+),

[llvm-commits] CVS: llvm/tools/lto/lto.cpp

2006-09-13 Thread Devang Patel
Changes in directory llvm/tools/lto: lto.cpp updated: 1.15 -> 1.16 --- Log message: Add comment. --- Diffs of the changes: (+3 -0) lto.cpp |3 +++ 1 files changed, 3 insertions(+) Index: llvm/tools/lto/lto.cpp diff -u llvm/tools/lto/lto.cpp:1.15 llvm/tools/lto/lto.cpp:1.16 --- llvm/t

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

2006-09-13 Thread Evan Cheng
Changes in directory llvm/include/llvm/CodeGen: MachineConstantPool.h updated: 1.18 -> 1.19 --- Log message: Mirrors ConstantPoolSDNode. --- Diffs of the changes: (+2 -0) MachineConstantPool.h |2 ++ 1 files changed, 2 insertions(+) Index: llvm/include/llvm/CodeGen/MachineConstantPool

[llvm-commits] CVS: llvm/docs/CommandGuide/bugpoint.pod

2006-09-13 Thread Nick Lewycky
Changes in directory llvm/docs/CommandGuide: bugpoint.pod updated: 1.9 -> 1.10 --- Log message: Document new --enable-valgrind option. --- Diffs of the changes: (+6 -0) bugpoint.pod |6 ++ 1 files changed, 6 insertions(+) Index: llvm/docs/CommandGuide/bugpoint.pod diff -u llvm/do

[llvm-commits] CVS: llvm/tools/bugpoint/OptimizerDriver.cpp

2006-09-13 Thread Nick Lewycky
Changes in directory llvm/tools/bugpoint: OptimizerDriver.cpp updated: 1.45 -> 1.46 --- Log message: Fix --enable-valgrind. Add room for the new arguments, and don't keep a pointer to a temporary. --- Diffs of the changes: (+4 -3) OptimizerDriver.cpp |7 --- 1 files changed, 4 inse

[llvm-commits] CVS: llvm/tools/bugpoint/OptimizerDriver.cpp

2006-09-13 Thread Nick Lewycky
Changes in directory llvm/tools/bugpoint: OptimizerDriver.cpp updated: 1.44 -> 1.45 --- Log message: Add --enable-valgrind option to run optimizations through valgrind to pick up on memory errors. --- Diffs of the changes: (+16 -3) OptimizerDriver.cpp | 19 --- 1 files ch

[llvm-commits] CVS: llvm/tools/lto/lto.cpp

2006-09-13 Thread Devang Patel
Changes in directory llvm/tools/lto: lto.cpp updated: 1.14 -> 1.15 --- Log message: GlobalValue with InternalLinkage may have operands with ExternalLinkage type. Do not ignore these operands while finding external references. --- Diffs of the changes: (+1 -1) lto.cpp |2 +- 1 files cha

[llvm-commits] CVS: llvm/lib/VMCore/Dominators.cpp

2006-09-13 Thread Devang Patel
Changes in directory llvm/lib/VMCore: Dominators.cpp updated: 1.73 -> 1.74 --- Log message: Avoid recursion in assignDFSNumber(). Move def from ET-Forest.h to Dominators.h --- Diffs of the changes: (+33 -0) Dominators.cpp | 33 + 1 files changed, 33 inser

[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/lib/Target/X86/README.txt

2006-09-13 Thread Chris Lattner
Changes in directory llvm/lib/Target/X86: README.txt updated: 1.132 -> 1.133 --- Log message: add note about switch lowering --- Diffs of the changes: (+29 -0) README.txt | 29 + 1 files changed, 29 insertions(+) Index: llvm/lib/Target/X86/README.txt diff -u

[llvm-commits] CVS: llvm/lib/Transforms/Utils/CloneFunction.cpp

2006-09-13 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Utils: CloneFunction.cpp updated: 1.30 -> 1.31 --- Log message: Second half of the fix for Transforms/Inline/inline_cleanup.ll This folds unconditional branches that are often produced by code specialization. --- Diffs of the changes: (+28 -2) Clo

[llvm-commits] CVS: llvm-test/External/SPEC/CINT2006/403.gcc/Makefile

2006-09-13 Thread Bill Wendling
Changes in directory llvm-test/External/SPEC/CINT2006/403.gcc: Makefile updated: 1.4 -> 1.5 --- Log message: --- Diffs of the changes: (+2 -0) Makefile |2 ++ 1 files changed, 2 insertions(+) Index: llvm-test/External/SPEC/CINT2006/403.gcc/Makefile diff -u llvm-test/External/SPEC/CIN

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

2006-09-13 Thread Nick Lewycky
Changes in directory llvm/lib/Transforms/Scalar: PredicateSimplifier.cpp updated: 1.9 -> 1.10 --- Log message: Add some more consistency checks. --- Diffs of the changes: (+20 -1) PredicateSimplifier.cpp | 21 - 1 files changed, 20 insertions(+), 1 deletion(-) Index

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

2006-09-13 Thread Nick Lewycky
Changes in directory llvm/lib/Transforms/Scalar: PredicateSimplifier.cpp updated: 1.8 -> 1.9 --- Log message: Fix unionSets so that it can merge correctly. --- Diffs of the changes: (+34 -22) PredicateSimplifier.cpp | 56 +--- 1 files changed,

[llvm-commits] CVS: llvm/lib/Transforms/Utils/InlineFunction.cpp

2006-09-13 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Utils: InlineFunction.cpp updated: 1.46 -> 1.47 --- Log message: Implement the first half of Transforms/Inline/inline_cleanup.ll --- Diffs of the changes: (+9 -1) InlineFunction.cpp | 10 +- 1 files changed, 9 insertions(+), 1 deletion(-)

[llvm-commits] CVS: llvm/test/Regression/Transforms/Inline/inline_cleanup.ll

2006-09-13 Thread Chris Lattner
Changes in directory llvm/test/Regression/Transforms/Inline: inline_cleanup.ll added (r1.1) --- Log message: new testcase --- Diffs of the changes: (+65 -0) inline_cleanup.ll | 65 ++ 1 files changed, 65 insertions(+) Index: llvm/test

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

2006-09-13 Thread Jim Laskey
Changes in directory nightlytest-serverside: NightlyTestAccept.php added (r1.1) ProgramResults.php updated: 1.57 -> 1.58 --- Log message: Transitioning to NightlyTestAccept.php --- Diffs of the changes: (+813 -1) NightlyTestAccept.php | 813 +

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

2006-09-13 Thread Evan Cheng
Changes in directory llvm/lib/Target/X86: X86CodeEmitter.cpp updated: 1.119 -> 1.120 --- Log message: Skip over first operand when determining REX prefix for two-address code. --- Diffs of the changes: (+14 -7) X86CodeEmitter.cpp | 21 ++--- 1 files changed, 14 insertions(

[llvm-commits] CVS: llvm-test/MultiSource/Applications/treecc/main.c

2006-09-13 Thread Evan Cheng
Changes in directory llvm-test/MultiSource/Applications/treecc: main.c updated: 1.2 -> 1.3 --- Log message: Remove workaround. --- Diffs of the changes: (+0 -4) main.c |4 1 files changed, 4 deletions(-) Index: llvm-test/MultiSource/Applications/treecc/main.c diff -u llvm-test/Mu

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

2006-09-13 Thread Nick Lewycky
Changes in directory llvm/lib/Transforms/Scalar: PredicateSimplifier.cpp updated: 1.7 -> 1.8 --- Log message: Erase dead instructions. --- Diffs of the changes: (+3 -2) PredicateSimplifier.cpp |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) Index: llvm/lib/Transforms/Scala

[llvm-commits] CVS: llvm-test/External/SPEC/CFP2006/447.dealII/Makefile

2006-09-13 Thread Bill Wendling
Changes in directory llvm-test/External/SPEC/CFP2006/447.dealII: Makefile updated: 1.2 -> 1.3 --- Log message: Errant ';' removed --- Diffs of the changes: (+1 -1) Makefile |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm-test/External/SPEC/CFP2006/447.dealII/Makefil

[llvm-commits] CVS: llvm/test/Regression/CodeGen/X86/jump_sign.ll

2006-09-13 Thread Chris Lattner
Changes in directory llvm/test/Regression/CodeGen/X86: jump_sign.ll updated: 1.1 -> 1.2 --- Log message: The sense of this branch was backwards --- Diffs of the changes: (+1 -1) jump_sign.ll |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/test/Regression/CodeGen/X86

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

2006-09-13 Thread Jim Laskey
Changes in directory nightlytest-serverside: individualgraph.php updated: 1.3 -> 1.4 --- Log message: fix typo --- Diffs of the changes: (+1 -1) individualgraph.php |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: nightlytest-serverside/individualgraph.php diff -u nightlyt

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

2006-09-13 Thread Chris Lattner
Changes in directory llvm/lib/Target/X86: X86ISelLowering.cpp updated: 1.257 -> 1.258 --- Log message: Turn X < 0 -> TEST X,X js --- Diffs of the changes: (+11 -8) X86ISelLowering.cpp | 19 +++ 1 files changed, 11 insertions(+), 8 deletions(-) Index: llvm/lib/Target/X86

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

2006-09-13 Thread Chris Lattner
Changes in directory llvm/lib/Target/X86: X86ISelLowering.cpp updated: 1.256 -> 1.257 --- Log message: The sense of this branch was inverted :( --- Diffs of the changes: (+1 -1) X86ISelLowering.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/Target/X86/X86IS

[llvm-commits] CVS: llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp

2006-09-13 Thread Chris Lattner
Changes in directory llvm/lib/ExecutionEngine/JIT: JITEmitter.cpp updated: 1.113 -> 1.114 --- Log message: Fix a ton of jit failures --- Diffs of the changes: (+1 -1) JITEmitter.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/ExecutionEngine/JIT/JITEmitter.c

[llvm-commits] CVS: llvm/lib/Target/ARM/ARM.h ARMAsmPrinter.cpp ARMISelDAGToDAG.cpp ARMInstrInfo.cpp ARMInstrInfo.td ARMRegisterInfo.cpp

2006-09-13 Thread Rafael Espindola
Changes in directory llvm/lib/Target/ARM: ARM.h updated: 1.4 -> 1.5 ARMAsmPrinter.cpp updated: 1.19 -> 1.20 ARMISelDAGToDAG.cpp updated: 1.44 -> 1.45 ARMInstrInfo.cpp updated: 1.6 -> 1.7 ARMInstrInfo.td updated: 1.27 -> 1.28 ARMRegisterInfo.cpp updated: 1.18 -> 1.19 --- Log message: add shifts