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

2005-10-28 Thread Jim Laskey
Changes in directory llvm/utils/TableGen: SubtargetEmitter.cpp updated: 1.8 -> 1.9 --- Log message: Add some commentary. --- Diffs of the changes: (+121 -21) SubtargetEmitter.cpp | 142 +++ 1 files changed, 121 insertions(+), 21 deletions(-)

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

2005-10-28 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Scalar: InstructionCombining.cpp updated: 1.398 -> 1.399 --- Log message: Fix a bit of backwards logic that broke exptree and smg2000 --- Diffs of the changes: (+1 -1) InstructionCombining.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-

[llvm-commits] CVS: llvm/utils/NightlyTest.gnuplot NightlyTest.pl NightlyTestTemplate.html

2005-10-28 Thread Chris Lattner
Changes in directory llvm/utils: NightlyTest.gnuplot updated: 1.13 -> 1.14 NightlyTest.pl updated: 1.97 -> 1.98 NightlyTestTemplate.html updated: 1.41 -> 1.42 --- Log message: The nightly tester report doesn't report JIT code size anymore, remove it from the olden graph. --- Diffs of the chan

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

2005-10-28 Thread Duraid Madina
Changes in directory llvm-test: Makefile.programs updated: 1.173 -> 1.174 --- Log message: track the ia64 DAG->DAG instruction selector as llcbeta. --- Diffs of the changes: (+4 -1) Makefile.programs |5 - 1 files changed, 4 insertions(+), 1 deletion(-) Index: llvm-test/Makefil

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

2005-10-28 Thread Chris Lattner
Changes in directory llvm-test: Makefile.programs updated: 1.174 -> 1.175 --- Log message: As usual, Duraid is trying to use subversive techniques to kill x86. --- Diffs of the changes: (+1 -1) Makefile.programs |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm-test/M

[llvm-commits] CVS: llvm/lib/Target/IA64/IA64ISelDAGToDAG.cpp

2005-10-28 Thread Chris Lattner
Changes in directory llvm/lib/Target/IA64: IA64ISelDAGToDAG.cpp updated: 1.1 -> 1.2 --- Log message: These are autogenerated --- Diffs of the changes: (+0 -33) IA64ISelDAGToDAG.cpp | 33 - 1 files changed, 33 deletions(-) Index: llvm/lib/Target/IA64/IA64

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp

2005-10-28 Thread Chris Lattner
Changes in directory llvm/lib/Target/PowerPC: PPCAsmPrinter.cpp updated: 1.100 -> 1.101 --- Log message: Do not globalize internal symbols --- Diffs of the changes: (+2 -1) PPCAsmPrinter.cpp |3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) Index: llvm/lib/Target/PowerPC/PPCAsm

[llvm-commits] CVS: llvm/test/Regression/CodeGen/Generic/isunord.ll

2005-10-28 Thread Chris Lattner
Changes in directory llvm/test/Regression/CodeGen/Generic: isunord.ll added (r1.1) --- Log message: New testcase. Probably many targets don't support this, so they should probably add themselves as xfails until they do (at least for the release). --- Diffs of the changes: (+8 -0) isunord.

[llvm-commits] CVS: llvm/test/Regression/CodeGen/Generic/isunord.ll

2005-10-28 Thread Chris Lattner
Changes in directory llvm/test/Regression/CodeGen/Generic: isunord.ll updated: 1.1 -> 1.2 --- Log message: add the xfail lines --- Diffs of the changes: (+2 -0) isunord.ll |2 ++ 1 files changed, 2 insertions(+) Index: llvm/test/Regression/CodeGen/Generic/isunord.ll diff -u llvm/test

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp PPCInstrInfo.td

2005-10-28 Thread Chris Lattner
Changes in directory llvm/lib/Target/PowerPC: PPCISelDAGToDAG.cpp updated: 1.122 -> 1.123 PPCInstrInfo.td updated: 1.137 -> 1.138 --- Log message: add support for branch on ordered/unordered. --- Diffs of the changes: (+21 -0) PPCISelDAGToDAG.cpp | 17 + PPCInstrInfo.td

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp

2005-10-28 Thread Chris Lattner
Changes in directory llvm/lib/Target/PowerPC: PPCISelDAGToDAG.cpp updated: 1.123 -> 1.124 --- Log message: add a hack to get code with ordered comparisons working. This hack is tracked as PR642: http://llvm.cs.uiuc.edu/PR642 --- Diffs of the changes: (+12 -12) PPCISelDAGToDAG.cpp | 24

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

2005-10-28 Thread Jim Laskey
Changes in directory llvm/utils/TableGen: Record.h updated: 1.52 -> 1.53 Record.cpp updated: 1.45 -> 1.46 --- Log message: Added method to return a vector of records for a ListInit of Def field. This simplifies using list of records. --- Diffs of the changes: (+25 -0) Record.cpp | 19 ++

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

2005-10-28 Thread Jim Laskey
Changes in directory llvm/utils/TableGen: SubtargetEmitter.h updated: 1.4 -> 1.5 SubtargetEmitter.cpp updated: 1.9 -> 1.10 --- Log message: Removed Mr. Smith from the code. --- Diffs of the changes: (+144 -172) SubtargetEmitter.cpp | 296 +++

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

2005-10-28 Thread Chris Lattner
Changes in directory llvm/utils/TableGen: DAGISelEmitter.cpp updated: 1.68 -> 1.69 --- Log message: Use the new interface Jim added --- Diffs of the changes: (+7 -15) DAGISelEmitter.cpp | 22 +++--- 1 files changed, 7 insertions(+), 15 deletions(-) Index: llvm/utils/Tab

[llvm-commits] CVS: llvm/utils/TableGen/CodeGenTarget.cpp DAGISelEmitter.cpp Record.cpp Record.h SubtargetEmitter.cpp

2005-10-28 Thread Chris Lattner
Changes in directory llvm/utils/TableGen: CodeGenTarget.cpp updated: 1.40 -> 1.41 DAGISelEmitter.cpp updated: 1.69 -> 1.70 Record.cpp updated: 1.46 -> 1.47 Record.h updated: 1.53 -> 1.54 SubtargetEmitter.cpp updated: 1.10 -> 1.11 --- Log message: Rename Record::getValueAsListDef to getValueAsLi

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp

2005-10-28 Thread Chris Lattner
Changes in directory llvm/lib/Target/PowerPC: PPCISelDAGToDAG.cpp updated: 1.124 -> 1.125 --- Log message: Don't emit "32" for unordered comparison --- Diffs of the changes: (+4 -2) PPCISelDAGToDAG.cpp |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) Index: llvm/lib/Target

[llvm-commits] CVS: llvm/utils/TableGen/InstrInfoEmitter.cpp InstrInfoEmitter.h RegisterInfoEmitter.cpp

2005-10-28 Thread Chris Lattner
Changes in directory llvm/utils/TableGen: InstrInfoEmitter.cpp updated: 1.28 -> 1.29 InstrInfoEmitter.h updated: 1.10 -> 1.11 RegisterInfoEmitter.cpp updated: 1.36 -> 1.37 --- Log message: Switch more code over to using getValueAsListOfDefs. Look at all the -'s. :) --- Diffs of the changes:

[llvm-commits] CVS: llvm/lib/Target/PowerPC/README.txt

2005-10-28 Thread Nate Begeman
Changes in directory llvm/lib/Target/PowerPC: README.txt updated: 1.35 -> 1.36 --- Log message: New case to handle someday --- Diffs of the changes: (+17 -0) README.txt | 17 + 1 files changed, 17 insertions(+) Index: llvm/lib/Target/PowerPC/README.txt diff -u llvm/lib/

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

2005-10-28 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Scalar: InstructionCombining.cpp updated: 1.399 -> 1.400 --- Log message: Remove a special case, allowing the general case to handle it. No functionality change. --- Diffs of the changes: (+37 -49) InstructionCombining.cpp | 86 ++

[llvm-commits] CVS: llvm/test/Regression/CodeGen/IA64/2005-10-29-shladd.ll

2005-10-28 Thread Duraid Madina
Changes in directory llvm/test/Regression/CodeGen/IA64: 2005-10-29-shladd.ll added (r1.1) --- Log message: test for the formation of shladd --- Diffs of the changes: (+11 -0) 2005-10-29-shladd.ll | 11 +++ 1 files changed, 11 insertions(+) Index: llvm/test/Regression/CodeGen

[llvm-commits] CVS: llvm/lib/Target/IA64/IA64InstrInfo.td

2005-10-28 Thread Duraid Madina
Changes in directory llvm/lib/Target/IA64: IA64InstrInfo.td updated: 1.16 -> 1.17 --- Log message: add shladd --- Diffs of the changes: (+42 -42) IA64InstrInfo.td | 84 +++ 1 files changed, 42 insertions(+), 42 deletions(-) Index: ll

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

2005-10-28 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Scalar: InstructionCombining.cpp updated: 1.400 -> 1.401 --- Log message: Pull some code out into a function, give it the ability to see through +. This allows us to turn code like malloc(4*x+4) -> malloc int, (x+1) --- Diffs of the changes: (+59 -24)

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

2005-10-28 Thread Chris Lattner
Changes in directory llvm/lib/Transforms: ExprTypeConvert.cpp updated: 1.107 -> 1.108 --- Log message: Now that instcombine does this xform, remove it from the -raise pass --- Diffs of the changes: (+0 -120) ExprTypeConvert.cpp | 120 1

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

2005-10-28 Thread Chris Lattner
Changes in directory llvm/lib/Transforms: TransformInternals.cpp updated: 1.49 -> 1.50 --- Log message: Remove dead #include --- Diffs of the changes: (+0 -1) TransformInternals.cpp |1 - 1 files changed, 1 deletion(-) Index: llvm/lib/Transforms/TransformInternals.cpp diff -u llvm/li

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

2005-10-28 Thread Chris Lattner
Changes in directory llvm/include/llvm/Analysis: Expressions.h (r1.12) removed --- Log message: remove a dead header --- Diffs of the changes: (+0 -0) 0 files changed ___ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.

[llvm-commits] CVS: llvm/lib/Analysis/Expressions.cpp

2005-10-28 Thread Chris Lattner
Changes in directory llvm/lib/Analysis: Expressions.cpp (r1.45) removed --- Log message: remove a dead file --- 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/Xcode/LLVM.xcodeproj/project.pbxproj

2005-10-28 Thread Chris Lattner
Changes in directory llvm/Xcode/LLVM.xcodeproj: project.pbxproj updated: 1.11 -> 1.12 --- Log message: Buh bye Expression.(cpp|h) --- Diffs of the changes: (+0 -4) project.pbxproj |4 1 files changed, 4 deletions(-) Index: llvm/Xcode/LLVM.xcodeproj/project.pbxproj diff -u llvm/X

[llvm-commits] CVS: llvm/docs/ReleaseNotes.html

2005-10-28 Thread Chris Lattner
Changes in directory llvm/docs: ReleaseNotes.html updated: 1.336 -> 1.337 --- Log message: Basic updates --- Diffs of the changes: (+3 -16) ReleaseNotes.html | 19 +++ 1 files changed, 3 insertions(+), 16 deletions(-) Index: llvm/docs/ReleaseNotes.html diff -u llvm/docs

[llvm-commits] CVS: llvm/lib/Target/SparcV8/SparcV8TargetMachine.cpp

2005-10-28 Thread Chris Lattner
Changes in directory llvm/lib/Target/SparcV8: SparcV8TargetMachine.cpp updated: 1.29 -> 1.30 --- Log message: remove reference to this pass --- Diffs of the changes: (+0 -4) SparcV8TargetMachine.cpp |4 1 files changed, 4 deletions(-) Index: llvm/lib/Target/SparcV8/SparcV8Target

[llvm-commits] CVS: llvm/include/llvm/Transforms/LinkAllPasses.h Scalar.h

2005-10-28 Thread Chris Lattner
Changes in directory llvm/include/llvm/Transforms: LinkAllPasses.h updated: 1.23 -> 1.24 Scalar.h updated: 1.56 -> 1.57 --- Log message: Remove the LowerConstantExpressionsPass pass --- Diffs of the changes: (+0 -6) LinkAllPasses.h |1 - Scalar.h|5 - 2 files changed, 6

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

2005-10-28 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Scalar: LowerConstantExprs.cpp (r1.4) removed --- Log message: This pass is now obsolete since all targets have moved to the SelectionDAG infrastructure and the simple isels have been removed. --- Diffs of the changes: (+0 -0) 0 files changed ___

[llvm-commits] CVS: llvm/Xcode/LLVM.xcodeproj/project.pbxproj

2005-10-28 Thread Chris Lattner
Changes in directory llvm/Xcode/LLVM.xcodeproj: project.pbxproj updated: 1.12 -> 1.13 --- Log message: Remove the lowerconstantexprs pass --- Diffs of the changes: (+0 -2) project.pbxproj |2 -- 1 files changed, 2 deletions(-) Index: llvm/Xcode/LLVM.xcodeproj/project.pbxproj diff -u

[llvm-commits] CVS: llvm-www/OpenProjects.html

2005-10-28 Thread Chris Lattner
Changes in directory llvm-www: OpenProjects.html updated: 1.9 -> 1.10 --- Log message: remove a closed project --- Diffs of the changes: (+1 -2) OpenProjects.html |3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) Index: llvm-www/OpenProjects.html diff -u llvm-www/OpenProjects.h

[llvm-commits] CVS: llvm-www/testresults/index.html

2005-10-28 Thread Chris Lattner
Changes in directory llvm-www/testresults: index.html updated: 1.35 -> 1.36 --- Log message: nuke two long-dead testers, update URL for Vladimir Merzliakov's tester. --- Diffs of the changes: (+1 -5) index.html |6 +- 1 files changed, 1 insertion(+), 5 deletions(-) Index: llvm-ww