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

2007-04-25 Thread Evan Cheng
Changes in directory llvm/lib/CodeGen: MachineFunction.cpp updated: 1.110 - 1.111 --- Log message: Change UsedPhysRegs from array bool to BitVector to save some space. Setting / getting its states now go through MachineFunction. --- Diffs of the changes: (+2 -2) MachineFunction.cpp |4

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

2007-04-24 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen: MachineFunction.cpp updated: 1.109 - 1.110 --- Log message: support 4G stack objects --- Diffs of the changes: (+1 -1) MachineFunction.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/CodeGen/MachineFunction.cpp diff

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

2006-12-21 Thread Evan Cheng
Changes in directory llvm/lib/CodeGen: MachineFunction.cpp updated: 1.106 - 1.107 --- Log message: Debug dump error. --- Diffs of the changes: (+1 -1) MachineFunction.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/CodeGen/MachineFunction.cpp diff -u

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

2006-12-14 Thread Jim Laskey
Changes in directory llvm/lib/CodeGen: MachineFunction.cpp updated: 1.105 - 1.106 AsmPrinter.cpp updated: 1.124 - 1.125 --- Log message: 1. Tidy up jump table info. 2. Allow the jit to handle PIC relocable jump tables. --- Diffs of the changes: (+32 -37) AsmPrinter.cpp | 51

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

2006-10-28 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen: MachineFunction.cpp updated: 1.102 - 1.103 --- Log message: add an assert --- Diffs of the changes: (+1 -0) MachineFunction.cpp |1 + 1 files changed, 1 insertion(+) Index: llvm/lib/CodeGen/MachineFunction.cpp diff -u

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

2006-10-03 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen: MachineFunction.cpp updated: 1.100 - 1.101 --- Log message: Provide a function that ensures MBB numbering is dense and inorder. This can be used by MachineFunctionPasses who need this property. --- Diffs of the changes: (+47 -0) MachineFunction.cpp

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

2006-09-14 Thread Evan Cheng
Changes in directory llvm/lib/CodeGen: MachineFunction.cpp updated: 1.99 - 1.100 --- Log message: Use getOffset() instead. --- Diffs of the changes: (+2 -2) MachineFunction.cpp |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/lib/CodeGen/MachineFunction.cpp diff

[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/lib/CodeGen/MachineFunction.cpp

2006-07-14 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen: MachineFunction.cpp updated: 1.95 - 1.96 --- Log message: Add an out-of-line virtual function to home class. --- Diffs of the changes: (+2 -0) MachineFunction.cpp |2 ++ 1 files changed, 2 insertions(+) Index:

[llvm-commits] CVS: llvm/lib/CodeGen/MachineFunction.cpp PrologEpilogInserter.cpp RegAllocLinearScan.cpp RegAllocSimple.cpp TwoAddressInstructionPass.cpp VirtRegMap.cpp

2006-06-28 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen: MachineFunction.cpp updated: 1.94 - 1.95 PrologEpilogInserter.cpp updated: 1.54 - 1.55 RegAllocLinearScan.cpp updated: 1.123 - 1.124 RegAllocSimple.cpp updated: 1.67 - 1.68 TwoAddressInstructionPass.cpp updated: 1.34 - 1.35 VirtRegMap.cpp updated: 1.66 -

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

2006-06-27 Thread Reid Spencer
Changes in directory llvm/lib/CodeGen: MachineFunction.cpp updated: 1.93 - 1.94 --- Log message: For PR801: http://llvm.org/PR801 : Refactor the Graph writing code to use a common implementation which is now in lib/Support/GraphWriter.cpp. This completes the PR. Patch by Anton Korobeynikov.

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

2006-06-05 Thread Reid Spencer
Changes in directory llvm/lib/CodeGen: MachineFunction.cpp updated: 1.92 - 1.93 --- Log message: For PR798: http://llvm.cs.uiuc.edu/PR798 : Add support for Graphviz. Patch contributed by Anton Korobeynikov. --- Diffs of the changes: (+65 -14) MachineFunction.cpp | 79

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

2006-04-22 Thread Nate Begeman
Changes in directory llvm/lib/CodeGen: MachineFunction.cpp updated: 1.88 - 1.89 --- Log message: Code cleanup associated with jump tables, thanks to Chris for noticing these. --- Diffs of the changes: (+8 -0) MachineFunction.cpp |8 1 files changed, 8 insertions(+) Index:

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

2006-04-03 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen: MachineFunction.cpp updated: 1.86 - 1.87 --- Log message: Remove unused method --- Diffs of the changes: (+0 -8) MachineFunction.cpp |8 1 files changed, 8 deletions(-) Index: llvm/lib/CodeGen/MachineFunction.cpp diff -u

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

2006-01-04 Thread Jim Laskey
Changes in directory llvm/lib/CodeGen: MachineFunction.cpp updated: 1.82 - 1.83 --- Log message: Moving MachineDebugInfo to module level location. --- Diffs of the changes: (+1 -1) MachineFunction.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

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

2005-12-16 Thread Jim Laskey
Changes in directory llvm/lib/CodeGen: MachineFunction.cpp updated: 1.81 - 1.82 --- Log message: Added source file/line correspondence for dwarf (PowerPC only at this point.) --- Diffs of the changes: (+1 -1) MachineFunction.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-)