5cecf50f56037d795b0a63188c44be945fc91a96
[oota-llvm.git] / lib / Target / PowerPC / PPCRegisterInfo.td
1 //===- PowerPCRegisterInfo.td - The PowerPC Register File --*- tablegen -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 //
11 //===----------------------------------------------------------------------===//
12
13 class PPCReg<string n> : Register<n> {
14   let Namespace = "PPC";
15 }
16
17 // We identify all our registers with a 5-bit ID, for consistency's sake.
18
19 // GPR - One of the 32 32-bit general-purpose registers
20 class GPR<bits<5> num, string n> : PPCReg<n> {
21   field bits<5> Num = num;
22 }
23
24 // SPR - One of the 32-bit special-purpose registers
25 class SPR<bits<5> num, string n> : PPCReg<n> {
26   field bits<5> Num = num;
27 }
28
29 // FPR - One of the 32 64-bit floating-point registers
30 class FPR<bits<5> num, string n> : PPCReg<n> {
31   field bits<5> Num = num;
32 }
33
34 // CR - One of the 8 4-bit condition registers
35 class CR<bits<5> num, string n> : PPCReg<n> {
36   field bits<5> Num = num;
37 }
38
39 // General-purpose registers
40 def R0  : GPR< 0,  "r0">;  def R1  : GPR< 1,  "r1">;
41 def R2  : GPR< 2,  "r2">;  def R3  : GPR< 3,  "r3">;
42 def R4  : GPR< 4,  "r4">;  def R5  : GPR< 5,  "r5">;
43 def R6  : GPR< 6,  "r6">;  def R7  : GPR< 7,  "r7">;
44 def R8  : GPR< 8,  "r8">;  def R9  : GPR< 9,  "r9">;
45 def R10 : GPR<10, "r10">;  def R11 : GPR<11, "r11">;
46 def R12 : GPR<12, "r12">;  def R13 : GPR<13, "r13">;
47 def R14 : GPR<14, "r14">;  def R15 : GPR<15, "r15">;
48 def R16 : GPR<16, "r16">;  def R17 : GPR<17, "r17">;
49 def R18 : GPR<18, "r18">;  def R19 : GPR<19, "r19">;
50 def R20 : GPR<20, "r20">;  def R21 : GPR<21, "r21">;
51 def R22 : GPR<22, "r22">;  def R23 : GPR<23, "r23">;
52 def R24 : GPR<24, "r24">;  def R25 : GPR<25, "r25">;
53 def R26 : GPR<26, "r26">;  def R27 : GPR<27, "r27">;
54 def R28 : GPR<28, "r28">;  def R29 : GPR<29, "r29">;
55 def R30 : GPR<30, "r30">;  def R31 : GPR<31, "r31">;
56
57 // Floating-point registers
58 def F0  : FPR< 0,  "f0">;  def F1  : FPR< 1,  "f1">;
59 def F2  : FPR< 2,  "f2">;  def F3  : FPR< 3,  "f3">;
60 def F4  : FPR< 4,  "f4">;  def F5  : FPR< 5,  "f5">;
61 def F6  : FPR< 6,  "f6">;  def F7  : FPR< 7,  "f7">;
62 def F8  : FPR< 8,  "f8">;  def F9  : FPR< 9,  "f9">;
63 def F10 : FPR<10, "f10">;  def F11 : FPR<11, "f11">;
64 def F12 : FPR<12, "f12">;  def F13 : FPR<13, "f13">;
65 def F14 : FPR<14, "f14">;  def F15 : FPR<15, "f15">;
66 def F16 : FPR<16, "f16">;  def F17 : FPR<17, "f17">;
67 def F18 : FPR<18, "f18">;  def F19 : FPR<19, "f19">;
68 def F20 : FPR<20, "f20">;  def F21 : FPR<21, "f21">;
69 def F22 : FPR<22, "f22">;  def F23 : FPR<23, "f23">;
70 def F24 : FPR<24, "f24">;  def F25 : FPR<25, "f25">;
71 def F26 : FPR<26, "f26">;  def F27 : FPR<27, "f27">;
72 def F28 : FPR<28, "f28">;  def F29 : FPR<29, "f29">;
73 def F30 : FPR<30, "f30">;  def F31 : FPR<31, "f31">;
74
75
76 // Condition registers
77 def CR0 : CR<0, "cr0">; def CR1 : CR<1, "cr1">;
78 def CR2 : CR<2, "cr2">; def CR3 : CR<3, "cr3">;
79 def CR4 : CR<4, "cr4">; def CR5 : CR<5, "cr5">;
80 def CR6 : CR<6, "cr6">; def CR7 : CR<7, "cr7">;
81
82 // Link register
83 def LR : SPR<2,   "lr">;
84 // Count register
85 def CTR : SPR<3, "ctr">;
86
87 /// Register classes
88 // Allocate volatiles first
89 // then nonvolatiles in reverse order since stmw/lmw save from rN to r31
90 def GPRC : RegisterClass<"PPC", i32, 32,
91      [R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12,
92       R30, R29, R28, R27, R26, R25, R24, R23, R22, R21, R20, R19, R18, R17,
93       R16, R15, R14, R13, R31, R0, R1, LR]>
94 {
95   let MethodProtos = [{
96     iterator allocation_order_begin(MachineFunction &MF) const;
97     iterator allocation_order_end(MachineFunction &MF) const;
98   }];
99   let MethodBodies = [{
100     GPRCClass::iterator
101     GPRCClass::allocation_order_begin(MachineFunction &MF) const {
102       return begin() + ((TargetAIX == PPCTarget) ? 1 : 0);
103     }
104     GPRCClass::iterator
105     GPRCClass::allocation_order_end(MachineFunction &MF) const {
106       if (hasFP(MF))
107         return end()-4;
108       else
109         return end()-3;
110     }
111   }];
112 }
113 def G8RC : RegisterClass<"PPC", i64, 64,
114      [R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12,
115       R30, R29, R28, R27, R26, R25, R24, R23, R22, R21, R20, R19, R18, R17,
116       R16, R15, R14, R13, R31, R0, R1, LR]>
117 {
118   let MethodProtos = [{
119     iterator allocation_order_begin(MachineFunction &MF) const;
120     iterator allocation_order_end(MachineFunction &MF) const;
121   }];
122   let MethodBodies = [{
123     G8RCClass::iterator
124     G8RCClass::allocation_order_begin(MachineFunction &MF) const {
125       return begin() + ((TargetAIX == PPCTarget) ? 1 : 0);
126     }
127     G8RCClass::iterator
128     G8RCClass::allocation_order_end(MachineFunction &MF) const {
129       if (hasFP(MF))
130         return end()-4;
131       else
132         return end()-3;
133     }
134   }];
135 }
136
137
138
139 def F8RC : RegisterClass<"PPC", f64, 64, [F0, F1, F2, F3, F4, F5, F6, F7,
140   F8, F9, F10, F11, F12, F13, F14, F15, F16, F17, F18, F19, F20, F21,
141   F22, F23, F24, F25, F26, F27, F28, F29, F30, F31]>;
142 def F4RC : RegisterClass<"PPC", f32, 32, [F0, F1, F2, F3, F4, F5, F6, F7,
143   F8, F9, F10, F11, F12, F13, F14, F15, F16, F17, F18, F19, F20, F21,
144   F22, F23, F24, F25, F26, F27, F28, F29, F30, F31]>;
145
146
147 def CRRC : RegisterClass<"PPC", i32, 32, [CR0, CR1, CR5, CR6, CR7, CR2, CR3, CR4]>;