[llvm-commits] CVS: llvm-test/SingleSource/UnitTests/2006-12-07-Compare64BitConstant.c

2006-12-07 Thread Jim Laskey
Changes in directory llvm-test/SingleSource/UnitTests: 2006-12-07-Compare64BitConstant.c added (r1.1) --- Log message: PowerPC was not checking upper 32 bits of 64 bit constant. --- Diffs of the changes: (+13 -0) 2006-12-07-Compare64BitConstant.c | 13 + 1 files changed, 13

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

2006-12-07 Thread Reid Spencer
Changes in directory llvm/lib/CodeGen: VirtRegMap.cpp updated: 1.85 - 1.86 --- Log message: Revision 1.83 causes PR1037: http://llvm.org/PR1037 . Reverted. --- Diffs of the changes: (+1 -2) VirtRegMap.cpp |3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) Index:

[llvm-commits] CVS: llvm/test/Regression/DebugInfo/2006-11-30-Pubnames.cpp

2006-12-07 Thread Reid Spencer
Changes in directory llvm/test/Regression/DebugInfo: 2006-11-30-Pubnames.cpp updated: 1.4 - 1.5 --- Log message: This now passes on Linux/x86 --- Diffs of the changes: (+1 -1) 2006-11-30-Pubnames.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm/test/Regression/CodeGen/Alpha/weak.ll

2006-12-07 Thread Andrew Lenharth
Changes in directory llvm/test/Regression/CodeGen/Alpha: weak.ll added (r1.1) --- Log message: Copy ARM's weak symbol test --- Diffs of the changes: (+18 -0) weak.ll | 18 ++ 1 files changed, 18 insertions(+) Index: llvm/test/Regression/CodeGen/Alpha/weak.ll diff -c

[llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp AlphaInstrInfo.td

2006-12-07 Thread Andrew Lenharth
Changes in directory llvm/lib/Target/Alpha: AlphaAsmPrinter.cpp updated: 1.56 - 1.57 AlphaInstrInfo.td updated: 1.135 - 1.136 --- Log message: Be sure to grab weak functions too, and make implicit defs comments --- Diffs of the changes: (+10 -3) AlphaAsmPrinter.cpp |7 +++

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.34 - 1.35 --- Log message: Add overview of pass manager. --- Diffs of the changes: (+64 -0) PassManager.cpp | 64 1 files changed, 64 insertions(+) Index:

[llvm-commits] CVS: llvm/lib/Target/ARM/ARMAsmPrinter.cpp

2006-12-07 Thread Rafael Espindola
Changes in directory llvm/lib/Target/ARM: ARMAsmPrinter.cpp updated: 1.33 - 1.34 --- Log message: make sure that we don't use a common symbol if a section was specified --- Diffs of the changes: (+1 -0) ARMAsmPrinter.cpp |1 + 1 files changed, 1 insertion(+) Index:

[llvm-commits] CVS: llvm/test/Regression/CodeGen/ARM/section.ll

2006-12-07 Thread Rafael Espindola
Changes in directory llvm/test/Regression/CodeGen/ARM: section.ll added (r1.1) --- Log message: make sure that we don't use a common symbol if a section was specified --- Diffs of the changes: (+4 -0) section.ll |4 1 files changed, 4 insertions(+) Index:

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.36 - 1.37 --- Log message: s/clearAnalysis/initializeAnalysisInfo/g --- Diffs of the changes: (+6 -7) PassManager.cpp | 13 ++--- 1 files changed, 6 insertions(+), 7 deletions(-) Index:

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.35 - 1.36 --- Log message: s/CommonPassManagerImpl/PMDataManager/g --- Diffs of the changes: (+15 -16) PassManager.cpp | 31 +++ 1 files changed, 15 insertions(+), 16 deletions(-) Index:

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.37 - 1.38 --- Log message: RequiredAnalysis support is buggy and not used at the moment so remove the code. Add TODO note. --- Diffs of the changes: (+10 -41) PassManager.cpp | 51

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.38 - 1.39 --- Log message: Add PMTopLevelManager. It is not used yet. --- Diffs of the changes: (+76 -0) PassManager.cpp | 76 1 files changed, 76 insertions(+)

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.39 - 1.40 --- Log message: s/noteDownAvailableAnalysis/recordAvailableAnalysis While recording available analysis, include interfaces implemented. --- Diffs of the changes: (+12 -13) PassManager.cpp | 25

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.40 - 1.41 --- Log message: Cosmetic markers to divide code in separate chunks. --- Diffs of the changes: (+13 -4) PassManager.cpp | 17 + 1 files changed, 13 insertions(+), 4 deletions(-) Index:

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.41 - 1.42 --- Log message: Add a handle to the top level pass manager in PMDataManager. --- Diffs of the changes: (+14 -1) PassManager.cpp | 15 ++- 1 files changed, 14 insertions(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm/lib/ExecutionEngine/Interpreter/Interpreter.h

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/ExecutionEngine/Interpreter: Interpreter.h updated: 1.77 - 1.78 --- Log message: Removing even more iostream includes. --- Diffs of the changes: (+1 -2) Interpreter.h |3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) Index:

[llvm-commits] CVS: llvm/docs/CommandLine.html ProgrammersManual.html WritingAnLLVMPass.html

2006-12-07 Thread Bill Wendling
Changes in directory llvm/docs: CommandLine.html updated: 1.42 - 1.43 ProgrammersManual.html updated: 1.95 - 1.96 WritingAnLLVMPass.html updated: 1.50 - 1.51 --- Log message: Removing even more iostream includes. --- Diffs of the changes: (+21 -21) CommandLine.html |4 ++--

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

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/CodeGen: MachineDebugInfo.cpp updated: 1.62 - 1.63 RegAllocLocal.cpp updated: 1.97 - 1.98 --- Log message: Removing even more iostream includes. --- Diffs of the changes: (+98 -100) MachineDebugInfo.cpp | 196

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

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/Transforms/IPO: FunctionResolution.cpp updated: 1.61 - 1.62 --- Log message: Removing even more iostream includes. --- Diffs of the changes: (+19 -19) FunctionResolution.cpp | 38 +++--- 1 files changed, 19 insertions(+), 19

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

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/ExecutionEngine/JIT: Intercept.cpp updated: 1.28 - 1.29 JIT.cpp updated: 1.81 - 1.82 JITEmitter.cpp updated: 1.120 - 1.121 TargetSelect.cpp updated: 1.12 - 1.13 --- Log message: Removing even more iostream includes. --- Diffs of the changes: (+37 -41)

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.42 - 1.43 --- Log message: Pass Managers themselves do not invalidate any analysis info. --- Diffs of the changes: (+22 -1) PassManager.cpp | 23 ++- 1 files changed, 22 insertions(+), 1 deletion(-)

[llvm-commits] CVS: llvm/lib/VMCore/AsmWriter.cpp Module.cpp Pass.cpp PassManagerT.h

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/VMCore: AsmWriter.cpp updated: 1.227 - 1.228 Module.cpp updated: 1.68 - 1.69 Pass.cpp updated: 1.75 - 1.76 PassManagerT.h updated: 1.70 - 1.71 --- Log message: Removing even more iostream includes. --- Diffs of the changes: (+37 -41) AsmWriter.cpp |5

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.43 - 1.44 --- Log message: If pass reserves all analysis info then each info is not separately included in PreservedSet. So check getPreservesAll() first. --- Diffs of the changes: (+6 -3) PassManager.cpp |9 ++--- 1

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

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/Transforms/Scalar: CorrelatedExprs.cpp updated: 1.39 - 1.40 PredicateSimplifier.cpp updated: 1.37 - 1.38 Reassociate.cpp updated: 1.67 - 1.68 --- Log message: Removing even more iostream includes. --- Diffs of the changes: (+60 -71) CorrelatedExprs.cpp |

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

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/Analysis/DataStructure: DataStructure.cpp updated: 1.254 - 1.255 --- Log message: Removed more iostream includes --- Diffs of the changes: (+4 -5) DataStructure.cpp |9 - 1 files changed, 4 insertions(+), 5 deletions(-) Index:

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

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/CodeGen/SelectionDAG: SelectionDAG.cpp updated: 1.376 - 1.377 --- Log message: Removed more iostream includes --- Diffs of the changes: (+1 -2) SelectionDAG.cpp |3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) Index:

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

2006-12-07 Thread Bill Wendling
Changes in directory llvm/include/llvm/CodeGen: DwarfWriter.h updated: 1.42 - 1.43 --- Log message: Removed more iostream includes --- Diffs of the changes: (+1 -1) DwarfWriter.h |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/include/llvm/CodeGen/DwarfWriter.h

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

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/Analysis: AliasAnalysisCounter.cpp updated: 1.18 - 1.19 AliasAnalysisEvaluator.cpp updated: 1.31 - 1.32 --- Log message: Removed more iostream includes --- Diffs of the changes: (+6 -8) AliasAnalysisCounter.cpp |7 +++ AliasAnalysisEvaluator.cpp |

[llvm-commits] CVS: llvm/lib/Support/Statistic.cpp SystemUtils.cpp Timer.cpp

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/Support: Statistic.cpp updated: 1.20 - 1.21 SystemUtils.cpp updated: 1.47 - 1.48 Timer.cpp updated: 1.47 - 1.48 --- Log message: Removed more iostream includes --- Diffs of the changes: (+11 -12) Statistic.cpp |5 ++--- SystemUtils.cpp |4 ++--

[llvm-commits] CVS: llvm/lib/Bytecode/Reader/ReaderWrappers.cpp

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/Bytecode/Reader: ReaderWrappers.cpp updated: 1.58 - 1.59 --- Log message: Removed more iostream includes --- Diffs of the changes: (+3 -5) ReaderWrappers.cpp |8 +++- 1 files changed, 3 insertions(+), 5 deletions(-) Index:

[llvm-commits] CVS: llvm/lib/Debugger/ProgramInfo.cpp SourceLanguage-Unknown.cpp

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/Debugger: ProgramInfo.cpp updated: 1.19 - 1.20 SourceLanguage-Unknown.cpp updated: 1.3 - 1.4 --- Log message: Removed more iostream includes --- Diffs of the changes: (+5 -7) ProgramInfo.cpp|6 ++ SourceLanguage-Unknown.cpp |6 +++---

[llvm-commits] CVS: llvm/lib/CodeGen/LLVMTargetMachine.cpp LiveVariables.cpp MachOWriter.cpp MachineBasicBlock.cpp MachineFunction.cpp RegAllocSimple.cpp TwoAddressInstructionPass.cpp

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/CodeGen: LLVMTargetMachine.cpp updated: 1.6 - 1.7 LiveVariables.cpp updated: 1.63 - 1.64 MachOWriter.cpp updated: 1.7 - 1.8 MachineBasicBlock.cpp updated: 1.35 - 1.36 MachineFunction.cpp updated: 1.104 - 1.105 RegAllocSimple.cpp updated: 1.78 - 1.79

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.44 - 1.45 --- Log message: Add ImmutablePass into the list of info managed by top level pass manager. --- Diffs of the changes: (+13 -0) PassManager.cpp | 13 + 1 files changed, 13 insertions(+) Index:

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.45 - 1.46 --- Log message: While initializing AvailableAnalysis info, make ImmutablePasses available immediately. --- Diffs of the changes: (+6 -0) PassManager.cpp |6 ++ 1 files changed, 6 insertions(+) Index:

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.46 - 1.47 --- Log message: Reimplement schedulePass interface. Move it into PMTopLevelManager. --- Diffs of the changes: (+28 -51) PassManager.cpp | 79 +++- 1 files

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

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/CodeGen/SelectionDAG: DAGCombiner.cpp updated: 1.256 - 1.257 LegalizeDAG.cpp updated: 1.421 - 1.422 ScheduleDAG.cpp updated: 1.111 - 1.112 ScheduleDAGList.cpp updated: 1.69 - 1.70 ScheduleDAGRRList.cpp updated: 1.22 - 1.23 ScheduleDAGSimple.cpp updated: 1.19 - 1.20

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.48 - 1.49 --- Log message: Top level manages schedule the pass immediately at the time of insertion. --- Diffs of the changes: (+8 -10) PassManager.cpp | 18 -- 1 files changed, 8 insertions(+), 10

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.47 - 1.48 --- Log message: Now FunctionPassManagerImpl_New and PassManagerImpl_New derives from PMTopLevelManager. --- Diffs of the changes: (+13 -3) PassManager.cpp | 16 +--- 1 files changed, 13

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.49 - 1.50 --- Log message: Fix thinko. --- Diffs of the changes: (+2 -2) PassManager.cpp |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/lib/VMCore/PassManager.cpp diff -u

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.50 - 1.51 --- Log message: Add TODOs --- Diffs of the changes: (+15 -3) PassManager.cpp | 18 +++--- 1 files changed, 15 insertions(+), 3 deletions(-) Index: llvm/lib/VMCore/PassManager.cpp diff -u

[llvm-commits] CVS: llvm/test/Regression/CodeGen/PowerPC/2006-12-07-LargeAlloca.ll

2006-12-07 Thread Chris Lattner
Changes in directory llvm/test/Regression/CodeGen/PowerPC: 2006-12-07-LargeAlloca.ll added (r1.1) --- Log message: new testcase --- Diffs of the changes: (+26 -0) 2006-12-07-LargeAlloca.ll | 26 ++ 1 files changed, 26 insertions(+) Index:

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.51 - 1.52 --- Log message: Make current pass info available _after_ removing info that is not preserved. --- Diffs of the changes: (+7 -8) PassManager.cpp | 15 +++ 1 files changed, 7 insertions(+), 8

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

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/Target: SubtargetFeature.cpp updated: 1.10 - 1.11 --- Log message: What should be the last unnecessary iostreams in the library. --- Diffs of the changes: (+26 -26) SubtargetFeature.cpp | 52 +-- 1 files

[llvm-commits] CVS: llvm/lib/Target/Sparc/FPMover.cpp SparcAsmPrinter.cpp SparcISelDAGToDAG.cpp SparcRegisterInfo.cpp SparcTargetMachine.cpp

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/Target/Sparc: FPMover.cpp updated: 1.16 - 1.17 SparcAsmPrinter.cpp updated: 1.73 - 1.74 SparcISelDAGToDAG.cpp updated: 1.115 - 1.116 SparcRegisterInfo.cpp updated: 1.48 - 1.49 SparcTargetMachine.cpp updated: 1.51 - 1.52 --- Log message: What should be the last

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

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/Transforms/IPO: FunctionResolution.cpp updated: 1.62 - 1.63 --- Log message: What should be the last unnecessary iostreams in the library. --- Diffs of the changes: (+5 -6) FunctionResolution.cpp | 11 +-- 1 files changed, 5 insertions(+), 6

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

2006-12-07 Thread Chris Lattner
Changes in directory llvm/lib/Target/PowerPC: PPCRegisterInfo.cpp updated: 1.92 - 1.93 --- Log message: fix CodeGen/PowerPC/2006-12-07-LargeAlloca.ll on ppc64 --- Diffs of the changes: (+1 -0) PPCRegisterInfo.cpp |1 + 1 files changed, 1 insertion(+) Index:

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

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/Target/X86: X86FloatingPoint.cpp updated: 1.64 - 1.65 X86ISelDAGToDAG.cpp updated: 1.137 - 1.138 X86RegisterInfo.cpp updated: 1.183 - 1.184 X86Subtarget.cpp updated: 1.42 - 1.43 --- Log message: What should be the last unnecessary iostreams in the library. ---

[llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp AlphaCodeEmitter.cpp AlphaISelDAGToDAG.cpp AlphaISelLowering.cpp AlphaInstrInfo.cpp AlphaJITInfo.cpp AlphaRegisterInfo.cpp

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/Target/Alpha: AlphaAsmPrinter.cpp updated: 1.57 - 1.58 AlphaCodeEmitter.cpp updated: 1.19 - 1.20 AlphaISelDAGToDAG.cpp updated: 1.62 - 1.63 AlphaISelLowering.cpp updated: 1.74 - 1.75 AlphaInstrInfo.cpp updated: 1.15 - 1.16 AlphaJITInfo.cpp updated: 1.11 - 1.12

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.52 - 1.53 --- Log message: PMDataManager does not maintain LastUser info. --- Diffs of the changes: (+1 -25) PassManager.cpp | 26 +- 1 files changed, 1 insertion(+), 25 deletions(-) Index:

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp PPCCodeEmitter.cpp PPCHazardRecognizers.cpp PPCISelDAGToDAG.cpp PPCInstrInfo.cpp PPCJITInfo.cpp PPCRegisterInfo.cpp PPCSubtarget.cpp

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/Target/PowerPC: PPCAsmPrinter.cpp updated: 1.217 - 1.218 PPCCodeEmitter.cpp updated: 1.70 - 1.71 PPCHazardRecognizers.cpp updated: 1.17 - 1.18 PPCISelDAGToDAG.cpp updated: 1.226 - 1.227 PPCInstrInfo.cpp updated: 1.35 - 1.36 PPCJITInfo.cpp updated: 1.30 - 1.31

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

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/Target/IA64: IA64AsmPrinter.cpp updated: 1.39 - 1.40 IA64Bundling.cpp updated: 1.5 - 1.6 IA64ISelDAGToDAG.cpp updated: 1.62 - 1.63 IA64RegisterInfo.cpp updated: 1.24 - 1.25 --- Log message: What should be the last unnecessary iostreams in the library. --- Diffs

[llvm-commits] CVS: llvm/lib/Target/CBackend/Writer.cpp

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/Target/CBackend: Writer.cpp updated: 1.292 - 1.293 --- Log message: What should be the last unnecessary iostreams in the library. --- Diffs of the changes: (+9 -11) Writer.cpp | 20 +--- 1 files changed, 9 insertions(+), 11 deletions(-)

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

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/Target/ARM: ARMAsmPrinter.cpp updated: 1.34 - 1.35 ARMISelDAGToDAG.cpp updated: 1.87 - 1.88 ARMRegisterInfo.cpp updated: 1.27 - 1.28 --- Log message: What should be the last unnecessary iostreams in the library. --- Diffs of the changes: (+0 -3)

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.53 - 1.54 --- Log message: When new pass manager is created, initialize available analysis info of existing manager at the same level. Otherwise, such info may be considered as available, which not true. --- Diffs of the

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

2006-12-07 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen/SelectionDAG: DAGCombiner.cpp updated: 1.257 - 1.258 --- Log message: Fix CodeGen/PowerPC/2006-12-07-SelectCrash.ll on PPC64 --- Diffs of the changes: (+4 -1) DAGCombiner.cpp |5 - 1 files changed, 4 insertions(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm/test/Regression/CodeGen/ARM/align.ll constants.ll

2006-12-07 Thread Rafael Espindola
Changes in directory llvm/test/Regression/CodeGen/ARM: align.ll added (r1.1) constants.ll updated: 1.3 - 1.4 --- Log message: fix alignment --- Diffs of the changes: (+13 -1) align.ll | 12 constants.ll |2 +- 2 files changed, 13 insertions(+), 1 deletion(-)

[llvm-commits] CVS: llvm/lib/Target/ARM/ARMAsmPrinter.cpp

2006-12-07 Thread Rafael Espindola
Changes in directory llvm/lib/Target/ARM: ARMAsmPrinter.cpp updated: 1.35 - 1.36 --- Log message: fix alignment --- Diffs of the changes: (+3 -3) ARMAsmPrinter.cpp |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) Index: llvm/lib/Target/ARM/ARMAsmPrinter.cpp diff -u

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.54 - 1.55 --- Log message: New method, PMDataManager::collectRequiredAnalysisPasses() --- Diffs of the changes: (+27 -7) PassManager.cpp | 34 +++--- 1 files changed, 27 insertions(+), 7

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.55 - 1.56 --- Log message: Maintain level(or depth) of pass manager in pass manager food chain. --- Diffs of the changes: (+21 -10) PassManager.cpp | 31 +-- 1 files changed, 21 insertions(+),

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

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/VMCore: Verifier.cpp updated: 1.170 - 1.171 --- Log message: Don't use sstream in Streams.h but iosfwd instead. --- Diffs of the changes: (+1 -0) Verifier.cpp |1 + 1 files changed, 1 insertion(+) Index: llvm/lib/VMCore/Verifier.cpp diff -u

[llvm-commits] CVS: llvm/lib/Support/Allocator.cpp CommandLine.cpp PluginLoader.cpp Statistic.cpp SystemUtils.cpp

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/Support: Allocator.cpp updated: 1.4 - 1.5 CommandLine.cpp updated: 1.80 - 1.81 PluginLoader.cpp updated: 1.20 - 1.21 Statistic.cpp updated: 1.21 - 1.22 SystemUtils.cpp updated: 1.48 - 1.49 --- Log message: Don't use sstream in Streams.h but iosfwd instead. ---

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

2006-12-07 Thread Chris Lattner
Changes in directory llvm/lib/Target/PowerPC: PPCJITInfo.cpp updated: 1.31 - 1.32 --- Log message: fix incorrect encoding of rldicr, used by ppc64 function stubs, etc. --- Diffs of the changes: (+1 -1) PPCJITInfo.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm/include/llvm/Support/Streams.h

2006-12-07 Thread Bill Wendling
Changes in directory llvm/include/llvm/Support: Streams.h updated: 1.5 - 1.6 --- Log message: Don't use sstream in Streams.h but iosfwd instead. --- Diffs of the changes: (+1 -1) Streams.h |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm/lib/Target/CBackend/Writer.cpp

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/Target/CBackend: Writer.cpp updated: 1.293 - 1.294 --- Log message: Don't use sstream in Streams.h but iosfwd instead. --- Diffs of the changes: (+1 -1) Writer.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm/lib/Linker/LinkModules.cpp

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/Linker: LinkModules.cpp updated: 1.121 - 1.122 --- Log message: Don't use sstream in Streams.h but iosfwd instead. --- Diffs of the changes: (+1 -0) LinkModules.cpp |1 + 1 files changed, 1 insertion(+) Index: llvm/lib/Linker/LinkModules.cpp diff -u

[llvm-commits] CVS: llvm/lib/Debugger/SourceLanguage-Unknown.cpp

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/Debugger: SourceLanguage-Unknown.cpp updated: 1.4 - 1.5 --- Log message: Don't use sstream in Streams.h but iosfwd instead. --- Diffs of the changes: (+1 -0) SourceLanguage-Unknown.cpp |1 + 1 files changed, 1 insertion(+) Index:

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.56 - 1.57 --- Log message: set Last User. --- Diffs of the changes: (+49 -5) PassManager.cpp | 54 +- 1 files changed, 49 insertions(+), 5 deletions(-) Index:

[llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp AlphaLLRP.cpp AlphaTargetAsmInfo.cpp

2006-12-07 Thread Andrew Lenharth
Changes in directory llvm/lib/Target/Alpha: AlphaAsmPrinter.cpp updated: 1.58 - 1.59 AlphaLLRP.cpp updated: 1.5 - 1.6 AlphaTargetAsmInfo.cpp updated: 1.4 - 1.5 --- Log message: Simplify a bit --- Diffs of the changes: (+15 -30) AlphaAsmPrinter.cpp| 41

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

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/Target: SubtargetFeature.cpp updated: 1.11 - 1.12 --- Log message: Don't use sstream in Streams.h but iosfwd instead. --- Diffs of the changes: (+1 -0) SubtargetFeature.cpp |1 + 1 files changed, 1 insertion(+) Index:

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.57 - 1.58 --- Log message: Reimplement removeDeadPasses(). --- Diffs of the changes: (+15 -1) PassManager.cpp | 16 +++- 1 files changed, 15 insertions(+), 1 deletion(-) Index: llvm/lib/VMCore/PassManager.cpp

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.58 - 1.59 --- Log message: doInitialization and doFinalization for BasicBlockPassManager_New --- Diffs of the changes: (+60 -3) PassManager.cpp | 63 +--- 1 files

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

2006-12-07 Thread Devang Patel
Changes in directory llvm/lib/VMCore: PassManager.cpp updated: 1.59 - 1.60 --- Log message: BasicBlockPassManager_New::runOnFunction() Do initialization and finalization. --- Diffs of the changes: (+2 -2) PassManager.cpp |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)

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

2006-12-07 Thread Chris Lattner
Changes in directory llvm/lib/Target: README.txt updated: 1.50 - 1.51 --- Log message: add a note --- Diffs of the changes: (+10 -0) README.txt | 10 ++ 1 files changed, 10 insertions(+) Index: llvm/lib/Target/README.txt diff -u llvm/lib/Target/README.txt:1.50

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp PPCJITInfo.cpp PPCTargetMachine.cpp

2006-12-07 Thread Chris Lattner
Changes in directory llvm/lib/Target/PowerPC: PPCCodeEmitter.cpp updated: 1.71 - 1.72 PPCJITInfo.cpp updated: 1.32 - 1.33 PPCTargetMachine.cpp updated: 1.108 - 1.109 --- Log message: this is an initial patch to switch the ppc64 jit over to working in PIC mode, which allows the code to be above

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

2006-12-07 Thread Chris Lattner
Changes in directory llvm/autoconf: configure.ac updated: 1.253 - 1.254 --- Log message: this warning is obsolete with llvmgcc3 being gone --- Diffs of the changes: (+0 -8) configure.ac |8 1 files changed, 8 deletions(-) Index: llvm/autoconf/configure.ac diff -u

[llvm-commits] CVS: llvm/configure

2006-12-07 Thread Reid Spencer
Changes in directory llvm: configure updated: 1.258 - 1.259 --- Log message: Regenerate. --- Diffs of the changes: (+0 -12) configure | 12 1 files changed, 12 deletions(-) Index: llvm/configure diff -u llvm/configure:1.258 llvm/configure:1.259 --- llvm/configure:1.258

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

2006-12-07 Thread Chris Lattner
On Thu, 7 Dec 2006, Reid Spencer wrote: How about cleaning up the rest of it? There are checks to determine sanity all for the purpose of producing the message you deleted. I think that makes a lot of sense, but I don't really feel confident removing the rest (inexperience with configure).

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

2006-12-07 Thread Reid Spencer
How about cleaning up the rest of it? There are checks to determine sanity all for the purpose of producing the message you deleted. REid. On Thu, 2006-12-07 at 23:04 -0600, Chris Lattner wrote: Changes in directory llvm/autoconf: configure.ac updated: 1.253 - 1.254 --- Log message:

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

2006-12-07 Thread Chris Lattner
Changes in directory llvm/lib/Target/X86: X86FloatingPoint.cpp updated: 1.65 - 1.66 --- Log message: Fix a bug introduced by the streams patch. DEBUG code was made unconditional. --- Diffs of the changes: (+1 -1) X86FloatingPoint.cpp |2 +- 1 files changed, 1 insertion(+), 1

[llvm-commits] CVS: llvm/include/llvm/Target/TargetInstrInfo.h

2006-12-07 Thread Evan Cheng
Changes in directory llvm/include/llvm/Target: TargetInstrInfo.h updated: 1.107 - 1.108 --- Log message: Use MI's TargetInstrDescriptor. --- Diffs of the changes: (+2 -1) TargetInstrInfo.h |3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) Index:

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

2006-12-07 Thread Evan Cheng
Changes in directory llvm/lib/Target: TargetInstrInfo.cpp updated: 1.24 - 1.25 --- Log message: Use MI's TargetInstrDescriptor. --- Diffs of the changes: (+4 -5) TargetInstrInfo.cpp |9 - 1 files changed, 4 insertions(+), 5 deletions(-) Index: