Remove custom allocation order boilerplate that is no longer needed.
[oota-llvm.git] / lib / Target / X86 / X86RegisterInfo.td
1 //===- X86RegisterInfo.td - Describe the X86 Register File --*- tablegen -*-==//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file describes the X86 Register file, defining the registers themselves,
11 // aliases between the registers, and the register classes built out of the
12 // registers.
13 //
14 //===----------------------------------------------------------------------===//
15
16 //===----------------------------------------------------------------------===//
17 //  Register definitions...
18 //
19 let Namespace = "X86" in {
20
21   // Subregister indices.
22   def sub_8bit    : SubRegIndex;
23   def sub_8bit_hi : SubRegIndex;
24   def sub_16bit   : SubRegIndex;
25   def sub_32bit   : SubRegIndex;
26
27   def sub_ss  : SubRegIndex;
28   def sub_sd  : SubRegIndex;
29   def sub_xmm : SubRegIndex;
30
31
32   // In the register alias definitions below, we define which registers alias
33   // which others.  We only specify which registers the small registers alias,
34   // because the register file generator is smart enough to figure out that
35   // AL aliases AX if we tell it that AX aliased AL (for example).
36
37   // Dwarf numbering is different for 32-bit and 64-bit, and there are
38   // variations by target as well. Currently the first entry is for X86-64,
39   // second - for EH on X86-32/Darwin and third is 'generic' one (X86-32/Linux
40   // and debug information on X86-32/Darwin)
41
42   // 8-bit registers
43   // Low registers
44   def AL : Register<"al">;
45   def DL : Register<"dl">;
46   def CL : Register<"cl">;
47   def BL : Register<"bl">;
48
49   // X86-64 only, requires REX.
50   let CostPerUse = 1 in {
51   def SIL : Register<"sil">;
52   def DIL : Register<"dil">;
53   def BPL : Register<"bpl">;
54   def SPL : Register<"spl">;
55   def R8B  : Register<"r8b">;
56   def R9B  : Register<"r9b">;
57   def R10B : Register<"r10b">;
58   def R11B : Register<"r11b">;
59   def R12B : Register<"r12b">;
60   def R13B : Register<"r13b">;
61   def R14B : Register<"r14b">;
62   def R15B : Register<"r15b">;
63   }
64
65   // High registers. On x86-64, these cannot be used in any instruction
66   // with a REX prefix.
67   def AH : Register<"ah">;
68   def DH : Register<"dh">;
69   def CH : Register<"ch">;
70   def BH : Register<"bh">;
71
72   // 16-bit registers
73   let SubRegIndices = [sub_8bit, sub_8bit_hi] in {
74   def AX : RegisterWithSubRegs<"ax", [AL,AH]>;
75   def DX : RegisterWithSubRegs<"dx", [DL,DH]>;
76   def CX : RegisterWithSubRegs<"cx", [CL,CH]>;
77   def BX : RegisterWithSubRegs<"bx", [BL,BH]>;
78   }
79   let SubRegIndices = [sub_8bit] in {
80   def SI : RegisterWithSubRegs<"si", [SIL]>;
81   def DI : RegisterWithSubRegs<"di", [DIL]>;
82   def BP : RegisterWithSubRegs<"bp", [BPL]>;
83   def SP : RegisterWithSubRegs<"sp", [SPL]>;
84   }
85   def IP : Register<"ip">;
86
87   // X86-64 only, requires REX.
88   let SubRegIndices = [sub_8bit], CostPerUse = 1 in {
89   def R8W  : RegisterWithSubRegs<"r8w", [R8B]>;
90   def R9W  : RegisterWithSubRegs<"r9w", [R9B]>;
91   def R10W : RegisterWithSubRegs<"r10w", [R10B]>;
92   def R11W : RegisterWithSubRegs<"r11w", [R11B]>;
93   def R12W : RegisterWithSubRegs<"r12w", [R12B]>;
94   def R13W : RegisterWithSubRegs<"r13w", [R13B]>;
95   def R14W : RegisterWithSubRegs<"r14w", [R14B]>;
96   def R15W : RegisterWithSubRegs<"r15w", [R15B]>;
97   }
98   // 32-bit registers
99   let SubRegIndices = [sub_16bit] in {
100   def EAX : RegisterWithSubRegs<"eax", [AX]>, DwarfRegNum<[-2, 0, 0]>;
101   def EDX : RegisterWithSubRegs<"edx", [DX]>, DwarfRegNum<[-2, 2, 2]>;
102   def ECX : RegisterWithSubRegs<"ecx", [CX]>, DwarfRegNum<[-2, 1, 1]>;
103   def EBX : RegisterWithSubRegs<"ebx", [BX]>, DwarfRegNum<[-2, 3, 3]>;
104   def ESI : RegisterWithSubRegs<"esi", [SI]>, DwarfRegNum<[-2, 6, 6]>;
105   def EDI : RegisterWithSubRegs<"edi", [DI]>, DwarfRegNum<[-2, 7, 7]>;
106   def EBP : RegisterWithSubRegs<"ebp", [BP]>, DwarfRegNum<[-2, 4, 5]>;
107   def ESP : RegisterWithSubRegs<"esp", [SP]>, DwarfRegNum<[-2, 5, 4]>;
108   def EIP : RegisterWithSubRegs<"eip", [IP]>, DwarfRegNum<[-2, 8, 8]>;
109
110   // X86-64 only, requires REX
111   let CostPerUse = 1 in {
112   def R8D  : RegisterWithSubRegs<"r8d", [R8W]>;
113   def R9D  : RegisterWithSubRegs<"r9d", [R9W]>;
114   def R10D : RegisterWithSubRegs<"r10d", [R10W]>;
115   def R11D : RegisterWithSubRegs<"r11d", [R11W]>;
116   def R12D : RegisterWithSubRegs<"r12d", [R12W]>;
117   def R13D : RegisterWithSubRegs<"r13d", [R13W]>;
118   def R14D : RegisterWithSubRegs<"r14d", [R14W]>;
119   def R15D : RegisterWithSubRegs<"r15d", [R15W]>;
120   }}
121
122   // 64-bit registers, X86-64 only
123   let SubRegIndices = [sub_32bit] in {
124   def RAX : RegisterWithSubRegs<"rax", [EAX]>, DwarfRegNum<[0, -2, -2]>;
125   def RDX : RegisterWithSubRegs<"rdx", [EDX]>, DwarfRegNum<[1, -2, -2]>;
126   def RCX : RegisterWithSubRegs<"rcx", [ECX]>, DwarfRegNum<[2, -2, -2]>;
127   def RBX : RegisterWithSubRegs<"rbx", [EBX]>, DwarfRegNum<[3, -2, -2]>;
128   def RSI : RegisterWithSubRegs<"rsi", [ESI]>, DwarfRegNum<[4, -2, -2]>;
129   def RDI : RegisterWithSubRegs<"rdi", [EDI]>, DwarfRegNum<[5, -2, -2]>;
130   def RBP : RegisterWithSubRegs<"rbp", [EBP]>, DwarfRegNum<[6, -2, -2]>;
131   def RSP : RegisterWithSubRegs<"rsp", [ESP]>, DwarfRegNum<[7, -2, -2]>;
132
133   // These also require REX.
134   let CostPerUse = 1 in {
135   def R8  : RegisterWithSubRegs<"r8", [R8D]>, DwarfRegNum<[8, -2, -2]>;
136   def R9  : RegisterWithSubRegs<"r9", [R9D]>, DwarfRegNum<[9, -2, -2]>;
137   def R10 : RegisterWithSubRegs<"r10", [R10D]>, DwarfRegNum<[10, -2, -2]>;
138   def R11 : RegisterWithSubRegs<"r11", [R11D]>, DwarfRegNum<[11, -2, -2]>;
139   def R12 : RegisterWithSubRegs<"r12", [R12D]>, DwarfRegNum<[12, -2, -2]>;
140   def R13 : RegisterWithSubRegs<"r13", [R13D]>, DwarfRegNum<[13, -2, -2]>;
141   def R14 : RegisterWithSubRegs<"r14", [R14D]>, DwarfRegNum<[14, -2, -2]>;
142   def R15 : RegisterWithSubRegs<"r15", [R15D]>, DwarfRegNum<[15, -2, -2]>;
143   def RIP : RegisterWithSubRegs<"rip", [EIP]>,  DwarfRegNum<[16, -2, -2]>;
144   }}
145
146   // MMX Registers. These are actually aliased to ST0 .. ST7
147   def MM0 : Register<"mm0">, DwarfRegNum<[41, 29, 29]>;
148   def MM1 : Register<"mm1">, DwarfRegNum<[42, 30, 30]>;
149   def MM2 : Register<"mm2">, DwarfRegNum<[43, 31, 31]>;
150   def MM3 : Register<"mm3">, DwarfRegNum<[44, 32, 32]>;
151   def MM4 : Register<"mm4">, DwarfRegNum<[45, 33, 33]>;
152   def MM5 : Register<"mm5">, DwarfRegNum<[46, 34, 34]>;
153   def MM6 : Register<"mm6">, DwarfRegNum<[47, 35, 35]>;
154   def MM7 : Register<"mm7">, DwarfRegNum<[48, 36, 36]>;
155
156   // Pseudo Floating Point registers
157   def FP0 : Register<"fp0">;
158   def FP1 : Register<"fp1">;
159   def FP2 : Register<"fp2">;
160   def FP3 : Register<"fp3">;
161   def FP4 : Register<"fp4">;
162   def FP5 : Register<"fp5">;
163   def FP6 : Register<"fp6">;
164
165   // XMM Registers, used by the various SSE instruction set extensions.
166   // The sub_ss and sub_sd subregs are the same registers with another regclass.
167   let CompositeIndices = [(sub_ss), (sub_sd)] in {
168   def XMM0: Register<"xmm0">, DwarfRegNum<[17, 21, 21]>;
169   def XMM1: Register<"xmm1">, DwarfRegNum<[18, 22, 22]>;
170   def XMM2: Register<"xmm2">, DwarfRegNum<[19, 23, 23]>;
171   def XMM3: Register<"xmm3">, DwarfRegNum<[20, 24, 24]>;
172   def XMM4: Register<"xmm4">, DwarfRegNum<[21, 25, 25]>;
173   def XMM5: Register<"xmm5">, DwarfRegNum<[22, 26, 26]>;
174   def XMM6: Register<"xmm6">, DwarfRegNum<[23, 27, 27]>;
175   def XMM7: Register<"xmm7">, DwarfRegNum<[24, 28, 28]>;
176
177   // X86-64 only
178   let CostPerUse = 1 in {
179   def XMM8:  Register<"xmm8">,  DwarfRegNum<[25, -2, -2]>;
180   def XMM9:  Register<"xmm9">,  DwarfRegNum<[26, -2, -2]>;
181   def XMM10: Register<"xmm10">, DwarfRegNum<[27, -2, -2]>;
182   def XMM11: Register<"xmm11">, DwarfRegNum<[28, -2, -2]>;
183   def XMM12: Register<"xmm12">, DwarfRegNum<[29, -2, -2]>;
184   def XMM13: Register<"xmm13">, DwarfRegNum<[30, -2, -2]>;
185   def XMM14: Register<"xmm14">, DwarfRegNum<[31, -2, -2]>;
186   def XMM15: Register<"xmm15">, DwarfRegNum<[32, -2, -2]>;
187   }}
188
189   // YMM Registers, used by AVX instructions
190   let SubRegIndices = [sub_xmm] in {
191   def YMM0: RegisterWithSubRegs<"ymm0", [XMM0]>, DwarfRegAlias<XMM0>;
192   def YMM1: RegisterWithSubRegs<"ymm1", [XMM1]>, DwarfRegAlias<XMM1>;
193   def YMM2: RegisterWithSubRegs<"ymm2", [XMM2]>, DwarfRegAlias<XMM2>;
194   def YMM3: RegisterWithSubRegs<"ymm3", [XMM3]>, DwarfRegAlias<XMM3>;
195   def YMM4: RegisterWithSubRegs<"ymm4", [XMM4]>, DwarfRegAlias<XMM4>;
196   def YMM5: RegisterWithSubRegs<"ymm5", [XMM5]>, DwarfRegAlias<XMM5>;
197   def YMM6: RegisterWithSubRegs<"ymm6", [XMM6]>, DwarfRegAlias<XMM6>;
198   def YMM7: RegisterWithSubRegs<"ymm7", [XMM7]>, DwarfRegAlias<XMM7>;
199   def YMM8:  RegisterWithSubRegs<"ymm8", [XMM8]>, DwarfRegAlias<XMM8>;
200   def YMM9:  RegisterWithSubRegs<"ymm9", [XMM9]>, DwarfRegAlias<XMM9>;
201   def YMM10: RegisterWithSubRegs<"ymm10", [XMM10]>, DwarfRegAlias<XMM10>;
202   def YMM11: RegisterWithSubRegs<"ymm11", [XMM11]>, DwarfRegAlias<XMM11>;
203   def YMM12: RegisterWithSubRegs<"ymm12", [XMM12]>, DwarfRegAlias<XMM12>;
204   def YMM13: RegisterWithSubRegs<"ymm13", [XMM13]>, DwarfRegAlias<XMM13>;
205   def YMM14: RegisterWithSubRegs<"ymm14", [XMM14]>, DwarfRegAlias<XMM14>;
206   def YMM15: RegisterWithSubRegs<"ymm15", [XMM15]>, DwarfRegAlias<XMM15>;
207   }
208
209   // Floating point stack registers
210   def ST0 : Register<"st(0)">, DwarfRegNum<[33, 12, 11]>;
211   def ST1 : Register<"st(1)">, DwarfRegNum<[34, 13, 12]>;
212   def ST2 : Register<"st(2)">, DwarfRegNum<[35, 14, 13]>;
213   def ST3 : Register<"st(3)">, DwarfRegNum<[36, 15, 14]>;
214   def ST4 : Register<"st(4)">, DwarfRegNum<[37, 16, 15]>;
215   def ST5 : Register<"st(5)">, DwarfRegNum<[38, 17, 16]>;
216   def ST6 : Register<"st(6)">, DwarfRegNum<[39, 18, 17]>;
217   def ST7 : Register<"st(7)">, DwarfRegNum<[40, 19, 18]>;
218
219   // Status flags register
220   def EFLAGS : Register<"flags">;
221
222   // Segment registers
223   def CS : Register<"cs">;
224   def DS : Register<"ds">;
225   def SS : Register<"ss">;
226   def ES : Register<"es">;
227   def FS : Register<"fs">;
228   def GS : Register<"gs">;
229
230   // Debug registers
231   def DR0 : Register<"dr0">;
232   def DR1 : Register<"dr1">;
233   def DR2 : Register<"dr2">;
234   def DR3 : Register<"dr3">;
235   def DR4 : Register<"dr4">;
236   def DR5 : Register<"dr5">;
237   def DR6 : Register<"dr6">;
238   def DR7 : Register<"dr7">;
239
240   // Control registers
241   def CR0 : Register<"cr0">;
242   def CR1 : Register<"cr1">;
243   def CR2 : Register<"cr2">;
244   def CR3 : Register<"cr3">;
245   def CR4 : Register<"cr4">;
246   def CR5 : Register<"cr5">;
247   def CR6 : Register<"cr6">;
248   def CR7 : Register<"cr7">;
249   def CR8 : Register<"cr8">;
250   def CR9 : Register<"cr9">;
251   def CR10 : Register<"cr10">;
252   def CR11 : Register<"cr11">;
253   def CR12 : Register<"cr12">;
254   def CR13 : Register<"cr13">;
255   def CR14 : Register<"cr14">;
256   def CR15 : Register<"cr15">;
257
258   // Pseudo index registers
259   def EIZ : Register<"eiz">;
260   def RIZ : Register<"riz">;
261 }
262
263
264 //===----------------------------------------------------------------------===//
265 // Register Class Definitions... now that we have all of the pieces, define the
266 // top-level register classes.  The order specified in the register list is
267 // implicitly defined to be the register allocation order.
268 //
269
270 // List call-clobbered registers before callee-save registers. RBX, RBP, (and
271 // R12, R13, R14, and R15 for X86-64) are callee-save registers.
272 // In 64-mode, there are 12 additional i8 registers, SIL, DIL, BPL, SPL, and
273 // R8B, ... R15B.
274 // Allocate R12 and R13 last, as these require an extra byte when
275 // encoded in x86_64 instructions.
276 // FIXME: Allow AH, CH, DH, BH to be used as general-purpose registers in
277 // 64-bit mode. The main complication is that they cannot be encoded in an
278 // instruction requiring a REX prefix, while SIL, DIL, BPL, R8D, etc.
279 // require a REX prefix. For example, "addb %ah, %dil" and "movzbl %ah, %r8d"
280 // cannot be encoded.
281 def GR8 : RegisterClass<"X86", [i8],  8,
282                         [AL, CL, DL, AH, CH, DH, BL, BH, SIL, DIL, BPL, SPL,
283                          R8B, R9B, R10B, R11B, R14B, R15B, R12B, R13B]> {
284   let MethodProtos = [{
285     iterator allocation_order_begin(const MachineFunction &MF) const;
286     iterator allocation_order_end(const MachineFunction &MF) const;
287   }];
288   let MethodBodies = [{
289     static const unsigned X86_GR8_AO_64[] = {
290       X86::AL,   X86::CL,   X86::DL,   X86::SIL, X86::DIL,
291       X86::R8B,  X86::R9B,  X86::R10B, X86::R11B,
292       X86::BL,   X86::R14B, X86::R15B, X86::R12B, X86::R13B, X86::BPL
293     };
294
295     GR8Class::iterator
296     GR8Class::allocation_order_begin(const MachineFunction &MF) const {
297       const TargetMachine &TM = MF.getTarget();
298       const X86Subtarget &Subtarget = TM.getSubtarget<X86Subtarget>();
299       if (Subtarget.is64Bit())
300         return X86_GR8_AO_64;
301       else
302         return begin();
303     }
304
305     GR8Class::iterator
306     GR8Class::allocation_order_end(const MachineFunction &MF) const {
307       const TargetMachine &TM = MF.getTarget();
308       const TargetFrameLowering *TFI = TM.getFrameLowering();
309       const X86Subtarget &Subtarget = TM.getSubtarget<X86Subtarget>();
310       const X86MachineFunctionInfo *MFI = MF.getInfo<X86MachineFunctionInfo>();
311       // Does the function dedicate RBP / EBP to being a frame ptr?
312       if (!Subtarget.is64Bit())
313         // In 32-mode, none of the 8-bit registers aliases EBP or ESP.
314         return begin() + 8;
315       else if (TFI->hasFP(MF) || MFI->getReserveFP())
316         // If so, don't allocate SPL or BPL.
317         return array_endof(X86_GR8_AO_64) - 1;
318       else
319         // If not, just don't allocate SPL.
320         return array_endof(X86_GR8_AO_64);
321     }
322   }];
323 }
324
325 def GR16 : RegisterClass<"X86", [i16], 16,
326                          [AX, CX, DX, SI, DI, BX, BP, SP,
327                           R8W, R9W, R10W, R11W, R14W, R15W, R12W, R13W]> {
328   let SubRegClasses = [(GR8 sub_8bit, sub_8bit_hi)];
329 }
330
331 def GR32 : RegisterClass<"X86", [i32], 32,
332                          [EAX, ECX, EDX, ESI, EDI, EBX, EBP, ESP,
333                           R8D, R9D, R10D, R11D, R14D, R15D, R12D, R13D]> {
334   let SubRegClasses = [(GR8 sub_8bit, sub_8bit_hi), (GR16 sub_16bit)];
335 }
336
337 // GR64 - 64-bit GPRs. This oddly includes RIP, which isn't accurate, since
338 // RIP isn't really a register and it can't be used anywhere except in an
339 // address, but it doesn't cause trouble.
340 def GR64 : RegisterClass<"X86", [i64], 64,
341                          [RAX, RCX, RDX, RSI, RDI, R8, R9, R10, R11,
342                           RBX, R14, R15, R12, R13, RBP, RSP, RIP]> {
343   let SubRegClasses = [(GR8 sub_8bit, sub_8bit_hi),
344                        (GR16 sub_16bit),
345                        (GR32 sub_32bit)];
346 }
347
348 // Segment registers for use by MOV instructions (and others) that have a
349 //   segment register as one operand.  Always contain a 16-bit segment
350 //   descriptor.
351 def SEGMENT_REG : RegisterClass<"X86", [i16], 16, [CS, DS, SS, ES, FS, GS]>;
352
353 // Debug registers.
354 def DEBUG_REG : RegisterClass<"X86", [i32], 32,
355                               [DR0, DR1, DR2, DR3, DR4, DR5, DR6, DR7]>;
356
357 // Control registers.
358 def CONTROL_REG : RegisterClass<"X86", [i64], 64,
359                                 [CR0, CR1, CR2, CR3, CR4, CR5, CR6, CR7, CR8,
360                                  CR9, CR10, CR11, CR12, CR13, CR14, CR15]>;
361
362 // GR8_ABCD_L, GR8_ABCD_H, GR16_ABCD, GR32_ABCD, GR64_ABCD - Subclasses of
363 // GR8, GR16, GR32, and GR64 which contain just the "a" "b", "c", and "d"
364 // registers. On x86-32, GR16_ABCD and GR32_ABCD are classes for registers
365 // that support 8-bit subreg operations. On x86-64, GR16_ABCD, GR32_ABCD,
366 // and GR64_ABCD are classes for registers that support 8-bit h-register
367 // operations.
368 def GR8_ABCD_L : RegisterClass<"X86", [i8], 8, [AL, CL, DL, BL]>;
369 def GR8_ABCD_H : RegisterClass<"X86", [i8], 8, [AH, CH, DH, BH]>;
370 def GR16_ABCD : RegisterClass<"X86", [i16], 16, [AX, CX, DX, BX]> {
371   let SubRegClasses = [(GR8_ABCD_L sub_8bit), (GR8_ABCD_H sub_8bit_hi)];
372 }
373 def GR32_ABCD : RegisterClass<"X86", [i32], 32, [EAX, ECX, EDX, EBX]> {
374   let SubRegClasses = [(GR8_ABCD_L sub_8bit),
375                        (GR8_ABCD_H sub_8bit_hi),
376                        (GR16_ABCD sub_16bit)];
377 }
378 def GR64_ABCD : RegisterClass<"X86", [i64], 64, [RAX, RCX, RDX, RBX]> {
379   let SubRegClasses = [(GR8_ABCD_L sub_8bit),
380                        (GR8_ABCD_H sub_8bit_hi),
381                        (GR16_ABCD sub_16bit),
382                        (GR32_ABCD sub_32bit)];
383 }
384 def GR32_TC   : RegisterClass<"X86", [i32], 32, [EAX, ECX, EDX]> {
385   let SubRegClasses = [(GR8 sub_8bit, sub_8bit_hi), (GR16 sub_16bit)];
386 }
387 def GR64_TC   : RegisterClass<"X86", [i64], 64, [RAX, RCX, RDX, RSI, RDI,
388                                                  R8, R9, R11, RIP]> {
389   let SubRegClasses = [(GR8 sub_8bit, sub_8bit_hi),
390                        (GR16 sub_16bit),
391                        (GR32_TC sub_32bit)];
392 }
393
394 def GR64_TCW64   : RegisterClass<"X86", [i64], 64, [RAX, RCX, RDX,
395                                                     R8, R9, R11]>;
396
397 // GR8_NOREX - GR8 registers which do not require a REX prefix.
398 def GR8_NOREX : RegisterClass<"X86", [i8], 8,
399                               [AL, CL, DL, AH, CH, DH, BL, BH]> {
400   let MethodProtos = [{
401     iterator allocation_order_begin(const MachineFunction &MF) const;
402     iterator allocation_order_end(const MachineFunction &MF) const;
403   }];
404   let MethodBodies = [{
405     // In 64-bit mode, it's not safe to blindly allocate H registers.
406     static const unsigned X86_GR8_NOREX_AO_64[] = {
407       X86::AL, X86::CL, X86::DL, X86::BL
408     };
409
410     GR8_NOREXClass::iterator
411     GR8_NOREXClass::allocation_order_begin(const MachineFunction &MF) const {
412       const TargetMachine &TM = MF.getTarget();
413       const X86Subtarget &Subtarget = TM.getSubtarget<X86Subtarget>();
414       if (Subtarget.is64Bit())
415         return X86_GR8_NOREX_AO_64;
416       else
417         return begin();
418     }
419
420     GR8_NOREXClass::iterator
421     GR8_NOREXClass::allocation_order_end(const MachineFunction &MF) const {
422       const TargetMachine &TM = MF.getTarget();
423       const X86Subtarget &Subtarget = TM.getSubtarget<X86Subtarget>();
424       if (Subtarget.is64Bit())
425         return array_endof(X86_GR8_NOREX_AO_64);
426       else
427         return end();
428     }
429   }];
430 }
431 // GR16_NOREX - GR16 registers which do not require a REX prefix.
432 def GR16_NOREX : RegisterClass<"X86", [i16], 16,
433                                [AX, CX, DX, SI, DI, BX, BP, SP]> {
434   let SubRegClasses = [(GR8_NOREX sub_8bit, sub_8bit_hi)];
435 }
436 // GR32_NOREX - GR32 registers which do not require a REX prefix.
437 def GR32_NOREX : RegisterClass<"X86", [i32], 32,
438                                [EAX, ECX, EDX, ESI, EDI, EBX, EBP, ESP]> {
439   let SubRegClasses = [(GR8_NOREX sub_8bit, sub_8bit_hi),
440                        (GR16_NOREX sub_16bit)];
441 }
442 // GR64_NOREX - GR64 registers which do not require a REX prefix.
443 def GR64_NOREX : RegisterClass<"X86", [i64], 64,
444                                [RAX, RCX, RDX, RSI, RDI, RBX, RBP, RSP, RIP]> {
445   let SubRegClasses = [(GR8_NOREX sub_8bit, sub_8bit_hi),
446                        (GR16_NOREX sub_16bit),
447                        (GR32_NOREX sub_32bit)];
448 }
449
450 // GR32_NOSP - GR32 registers except ESP.
451 def GR32_NOSP : RegisterClass<"X86", [i32], 32,
452                               [EAX, ECX, EDX, ESI, EDI, EBX, EBP,
453                                R8D, R9D, R10D, R11D, R14D, R15D, R12D, R13D]> {
454   let SubRegClasses = [(GR8 sub_8bit, sub_8bit_hi), (GR16 sub_16bit)];
455 }
456
457 // GR64_NOSP - GR64 registers except RSP (and RIP).
458 def GR64_NOSP : RegisterClass<"X86", [i64], 64,
459                               [RAX, RCX, RDX, RSI, RDI, R8, R9, R10, R11,
460                                RBX, R14, R15, R12, R13, RBP]> {
461   let SubRegClasses = [(GR8 sub_8bit, sub_8bit_hi),
462                        (GR16 sub_16bit),
463                        (GR32_NOSP sub_32bit)];
464 }
465
466 // GR32_NOREX_NOSP - GR32 registers which do not require a REX prefix except
467 // ESP.
468 def GR32_NOREX_NOSP : RegisterClass<"X86", [i32], 32,
469                                [EAX, ECX, EDX, ESI, EDI, EBX, EBP]> {
470   let SubRegClasses = [(GR8_NOREX sub_8bit, sub_8bit_hi),
471                        (GR16_NOREX sub_16bit)];
472 }
473
474 // GR64_NOREX_NOSP - GR64_NOREX registers except RSP.
475 def GR64_NOREX_NOSP : RegisterClass<"X86", [i64], 64,
476                                     [RAX, RCX, RDX, RSI, RDI, RBX, RBP]> {
477   let SubRegClasses = [(GR8_NOREX sub_8bit, sub_8bit_hi),
478                        (GR16_NOREX sub_16bit),
479                        (GR32_NOREX_NOSP sub_32bit)];
480 }
481
482 // A class to support the 'A' assembler constraint: EAX then EDX.
483 def GR32_AD : RegisterClass<"X86", [i32], 32, [EAX, EDX]> {
484   let SubRegClasses = [(GR8_ABCD_L sub_8bit),
485                        (GR8_ABCD_H sub_8bit_hi),
486                        (GR16_ABCD sub_16bit)];
487 }
488
489 // Scalar SSE2 floating point registers.
490 def FR32 : RegisterClass<"X86", [f32], 32,
491                          [XMM0, XMM1, XMM2, XMM3, XMM4, XMM5, XMM6, XMM7,
492                           XMM8, XMM9, XMM10, XMM11,
493                           XMM12, XMM13, XMM14, XMM15]>;
494
495 def FR64 : RegisterClass<"X86", [f64], 64,
496                          [XMM0, XMM1, XMM2, XMM3, XMM4, XMM5, XMM6, XMM7,
497                           XMM8, XMM9, XMM10, XMM11,
498                           XMM12, XMM13, XMM14, XMM15]>;
499
500
501 // FIXME: This sets up the floating point register files as though they are f64
502 // values, though they really are f80 values.  This will cause us to spill
503 // values as 64-bit quantities instead of 80-bit quantities, which is much much
504 // faster on common hardware.  In reality, this should be controlled by a
505 // command line option or something.
506
507 def RFP32 : RegisterClass<"X86",[f32], 32, [FP0, FP1, FP2, FP3, FP4, FP5, FP6]>;
508 def RFP64 : RegisterClass<"X86",[f64], 32, [FP0, FP1, FP2, FP3, FP4, FP5, FP6]>;
509 def RFP80 : RegisterClass<"X86",[f80], 32, [FP0, FP1, FP2, FP3, FP4, FP5, FP6]>;
510
511 // Floating point stack registers (these are not allocatable by the
512 // register allocator - the floating point stackifier is responsible
513 // for transforming FPn allocations to STn registers)
514 def RST : RegisterClass<"X86", [f80, f64, f32], 32,
515                         [ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7]> {
516   let isAllocatable = 0;
517 }
518
519 // Generic vector registers: VR64 and VR128.
520 def VR64: RegisterClass<"X86", [x86mmx], 64,
521                           [MM0, MM1, MM2, MM3, MM4, MM5, MM6, MM7]>;
522 def VR128 : RegisterClass<"X86", [v16i8, v8i16, v4i32, v2i64, v4f32, v2f64],128,
523                           [XMM0, XMM1, XMM2, XMM3, XMM4, XMM5, XMM6, XMM7,
524                            XMM8, XMM9, XMM10, XMM11,
525                            XMM12, XMM13, XMM14, XMM15]> {
526   let SubRegClasses = [(FR32 sub_ss), (FR64 sub_sd)];
527 }
528
529 def VR256 : RegisterClass<"X86", [v32i8, v8i32, v4i64, v8f32, v4f64], 256,
530                           [YMM0, YMM1, YMM2, YMM3, YMM4, YMM5, YMM6, YMM7,
531                            YMM8, YMM9, YMM10, YMM11,
532                            YMM12, YMM13, YMM14, YMM15]> {
533   let SubRegClasses = [(FR32 sub_ss), (FR64 sub_sd), (VR128 sub_xmm)];
534 }
535
536 // Status flags registers.
537 def CCR : RegisterClass<"X86", [i32], 32, [EFLAGS]> {
538   let CopyCost = -1;  // Don't allow copying of status registers.
539   let isAllocatable = 0;
540 }