[llvm-commits] CVS: llvm/lib/Target/SparcV8/SparcV8RegisterInfo.td

Nate Begeman natebegeman at mac.com
Wed Nov 30 20:51:23 PST 2005



Changes in directory llvm/lib/Target/SparcV8:

SparcV8RegisterInfo.td updated: 1.22 -> 1.23
---
Log message:

Support multiple ValueTypes per RegisterClass, needed for upcoming vector
work.  This change has no effect on generated code.


---
Diffs of the changes:  (+3 -3)

 SparcV8RegisterInfo.td |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/lib/Target/SparcV8/SparcV8RegisterInfo.td
diff -u llvm/lib/Target/SparcV8/SparcV8RegisterInfo.td:1.22 llvm/lib/Target/SparcV8/SparcV8RegisterInfo.td:1.23
--- llvm/lib/Target/SparcV8/SparcV8RegisterInfo.td:1.22	Fri Aug 19 14:13:20 2005
+++ llvm/lib/Target/SparcV8/SparcV8RegisterInfo.td	Wed Nov 30 22:51:06 2005
@@ -84,7 +84,7 @@
 // FIXME: the register order should be defined in terms of the preferred
 // allocation order...
 //
-def IntRegs : RegisterClass<"V8", i32, 32, [L0, L1, L2, L3, L4, L5, L6, L7,
+def IntRegs : RegisterClass<"V8", [i32], 32, [L0, L1, L2, L3, L4, L5, L6, L7,
                                      I0, I1, I2, I3, I4, I5,
                                      G1,
                                      O0, O1, O2, O3, O4, O5, O7,
@@ -109,9 +109,9 @@
   }];
 }
 
-def FPRegs : RegisterClass<"V8", f32, 32, [F0, F1, F2, F3, F4, F5, F6, F7, F8,
+def FPRegs : RegisterClass<"V8", [f32], 32, [F0, F1, F2, F3, F4, F5, F6, F7, F8,
   F9, F10, F11, F12, F13, F14, F15, F16, F17, F18, F19, F20, F21, F22,
   F23, F24, F25, F26, F27, F28, F29, F30, F31]>;
 
-def DFPRegs : RegisterClass<"V8", f64, 64, [D0, D1, D2, D3, D4, D5, D6, D7,
+def DFPRegs : RegisterClass<"V8", [f64], 64, [D0, D1, D2, D3, D4, D5, D6, D7,
   D8, D9, D10, D11, D12, D13, D14, D15]>;






More information about the llvm-commits mailing list