Don't disable MMX support when AVX is enabled. Fix predicates for MMX instructions...
[oota-llvm.git] / lib / Target / X86 / X86InstrFormats.td
1 //===- X86InstrFormats.td - X86 Instruction Formats --------*- 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 //===----------------------------------------------------------------------===//
11 // X86 Instruction Format Definitions.
12 //
13
14 // Format specifies the encoding used by the instruction.  This is part of the
15 // ad-hoc solution used to emit machine instruction encodings by our machine
16 // code emitter.
17 class Format<bits<6> val> {
18   bits<6> Value = val;
19 }
20
21 def Pseudo     : Format<0>; def RawFrm     : Format<1>;
22 def AddRegFrm  : Format<2>; def MRMDestReg : Format<3>;
23 def MRMDestMem : Format<4>; def MRMSrcReg  : Format<5>;
24 def MRMSrcMem  : Format<6>;
25 def MRM0r  : Format<16>; def MRM1r  : Format<17>; def MRM2r  : Format<18>;
26 def MRM3r  : Format<19>; def MRM4r  : Format<20>; def MRM5r  : Format<21>;
27 def MRM6r  : Format<22>; def MRM7r  : Format<23>;
28 def MRM0m  : Format<24>; def MRM1m  : Format<25>; def MRM2m  : Format<26>;
29 def MRM3m  : Format<27>; def MRM4m  : Format<28>; def MRM5m  : Format<29>;
30 def MRM6m  : Format<30>; def MRM7m  : Format<31>;
31 def MRMInitReg : Format<32>;
32 def MRM_C1 : Format<33>;
33 def MRM_C2 : Format<34>;
34 def MRM_C3 : Format<35>;
35 def MRM_C4 : Format<36>;
36 def MRM_C8 : Format<37>;
37 def MRM_C9 : Format<38>;
38 def MRM_E8 : Format<39>;
39 def MRM_F0 : Format<40>;
40 def MRM_F8 : Format<41>;
41 def MRM_F9 : Format<42>;
42 def RawFrmImm8 : Format<43>;
43 def RawFrmImm16 : Format<44>;
44 def MRM_D0 : Format<45>;
45 def MRM_D1 : Format<46>;
46
47 // ImmType - This specifies the immediate type used by an instruction. This is
48 // part of the ad-hoc solution used to emit machine instruction encodings by our
49 // machine code emitter.
50 class ImmType<bits<3> val> {
51   bits<3> Value = val;
52 }
53 def NoImm      : ImmType<0>;
54 def Imm8       : ImmType<1>;
55 def Imm8PCRel  : ImmType<2>;
56 def Imm16      : ImmType<3>;
57 def Imm16PCRel : ImmType<4>;
58 def Imm32      : ImmType<5>;
59 def Imm32PCRel : ImmType<6>;
60 def Imm64      : ImmType<7>;
61
62 // FPFormat - This specifies what form this FP instruction has.  This is used by
63 // the Floating-Point stackifier pass.
64 class FPFormat<bits<3> val> {
65   bits<3> Value = val;
66 }
67 def NotFP      : FPFormat<0>;
68 def ZeroArgFP  : FPFormat<1>;
69 def OneArgFP   : FPFormat<2>;
70 def OneArgFPRW : FPFormat<3>;
71 def TwoArgFP   : FPFormat<4>;
72 def CompareFP  : FPFormat<5>;
73 def CondMovFP  : FPFormat<6>;
74 def SpecialFP  : FPFormat<7>;
75
76 // Class specifying the SSE execution domain, used by the SSEDomainFix pass.
77 // Keep in sync with tables in X86InstrInfo.cpp.
78 class Domain<bits<2> val> {
79   bits<2> Value = val;
80 }
81 def GenericDomain   : Domain<0>;
82 def SSEPackedSingle : Domain<1>;
83 def SSEPackedDouble : Domain<2>;
84 def SSEPackedInt    : Domain<3>;
85
86 // Prefix byte classes which are used to indicate to the ad-hoc machine code
87 // emitter that various prefix bytes are required.
88 class OpSize { bit hasOpSizePrefix = 1; }
89 class AdSize { bit hasAdSizePrefix = 1; }
90 class REX_W  { bit hasREX_WPrefix = 1; }
91 class LOCK   { bit hasLockPrefix = 1; }
92 class SegFS  { bits<2> SegOvrBits = 1; }
93 class SegGS  { bits<2> SegOvrBits = 2; }
94 class TB     { bits<5> Prefix = 1; }
95 class REP    { bits<5> Prefix = 2; }
96 class D8     { bits<5> Prefix = 3; }
97 class D9     { bits<5> Prefix = 4; }
98 class DA     { bits<5> Prefix = 5; }
99 class DB     { bits<5> Prefix = 6; }
100 class DC     { bits<5> Prefix = 7; }
101 class DD     { bits<5> Prefix = 8; }
102 class DE     { bits<5> Prefix = 9; }
103 class DF     { bits<5> Prefix = 10; }
104 class XD     { bits<5> Prefix = 11; }
105 class XS     { bits<5> Prefix = 12; }
106 class T8     { bits<5> Prefix = 13; }
107 class TA     { bits<5> Prefix = 14; }
108 class A6     { bits<5> Prefix = 15; }
109 class A7     { bits<5> Prefix = 16; }
110 class T8XD   { bits<5> Prefix = 17; }
111 class T8XS   { bits<5> Prefix = 18; }
112 class TAXD   { bits<5> Prefix = 19; }
113 class XOP8   { bits<5> Prefix = 20; }
114 class XOP9   { bits<5> Prefix = 21; }
115 class VEX    { bit hasVEXPrefix = 1; }
116 class VEX_W  { bit hasVEX_WPrefix = 1; }
117 class VEX_4V : VEX { bit hasVEX_4VPrefix = 1; }
118 class VEX_4VOp3 : VEX { bit hasVEX_4VOp3Prefix = 1; }
119 class VEX_I8IMM { bit hasVEX_i8ImmReg = 1; }
120 class VEX_L  { bit hasVEX_L = 1; }
121 class VEX_LIG { bit ignoresVEX_L = 1; }
122 class Has3DNow0F0FOpcode  { bit has3DNow0F0FOpcode = 1; }
123 class MemOp4 { bit hasMemOp4Prefix = 1; }
124 class XOP { bit hasXOP_Prefix = 1; }
125 class X86Inst<bits<8> opcod, Format f, ImmType i, dag outs, dag ins,
126               string AsmStr, Domain d = GenericDomain>
127   : Instruction {
128   let Namespace = "X86";
129
130   bits<8> Opcode = opcod;
131   Format Form = f;
132   bits<6> FormBits = Form.Value;
133   ImmType ImmT = i;
134
135   dag OutOperandList = outs;
136   dag InOperandList = ins;
137   string AsmString = AsmStr;
138
139   // If this is a pseudo instruction, mark it isCodeGenOnly.
140   let isCodeGenOnly = !eq(!cast<string>(f), "Pseudo");
141
142   //
143   // Attributes specific to X86 instructions...
144   //
145   bit hasOpSizePrefix = 0;  // Does this inst have a 0x66 prefix?
146   bit hasAdSizePrefix = 0;  // Does this inst have a 0x67 prefix?
147
148   bits<5> Prefix = 0;       // Which prefix byte does this inst have?
149   bit hasREX_WPrefix  = 0;  // Does this inst require the REX.W prefix?
150   FPFormat FPForm = NotFP;  // What flavor of FP instruction is this?
151   bit hasLockPrefix = 0;    // Does this inst have a 0xF0 prefix?
152   bits<2> SegOvrBits = 0;   // Segment override prefix.
153   Domain ExeDomain = d;
154   bit hasVEXPrefix = 0;     // Does this inst require a VEX prefix?
155   bit hasVEX_WPrefix = 0;   // Does this inst set the VEX_W field?
156   bit hasVEX_4VPrefix = 0;  // Does this inst require the VEX.VVVV field?
157   bit hasVEX_4VOp3Prefix = 0;  // Does this inst require the VEX.VVVV field to
158                                // encode the third operand?
159   bit hasVEX_i8ImmReg = 0;  // Does this inst require the last source register
160                             // to be encoded in a immediate field?
161   bit hasVEX_L = 0;         // Does this inst use large (256-bit) registers?
162   bit ignoresVEX_L = 0;     // Does this instruction ignore the L-bit
163   bit has3DNow0F0FOpcode =0;// Wacky 3dNow! encoding?
164   bit hasMemOp4Prefix = 0;  // Same bit as VEX_W, but used for swapping operands
165   bit hasXOP_Prefix = 0;    // Does this inst require an XOP prefix?
166
167   // TSFlags layout should be kept in sync with X86InstrInfo.h.
168   let TSFlags{5-0}   = FormBits;
169   let TSFlags{6}     = hasOpSizePrefix;
170   let TSFlags{7}     = hasAdSizePrefix;
171   let TSFlags{12-8}  = Prefix;
172   let TSFlags{13}    = hasREX_WPrefix;
173   let TSFlags{16-14} = ImmT.Value;
174   let TSFlags{19-17} = FPForm.Value;
175   let TSFlags{20}    = hasLockPrefix;
176   let TSFlags{22-21} = SegOvrBits;
177   let TSFlags{24-23} = ExeDomain.Value;
178   let TSFlags{32-25} = Opcode;
179   let TSFlags{33}    = hasVEXPrefix;
180   let TSFlags{34}    = hasVEX_WPrefix;
181   let TSFlags{35}    = hasVEX_4VPrefix;
182   let TSFlags{36}    = hasVEX_4VOp3Prefix;
183   let TSFlags{37}    = hasVEX_i8ImmReg;
184   let TSFlags{38}    = hasVEX_L;
185   let TSFlags{39}    = ignoresVEX_L;
186   let TSFlags{40}    = has3DNow0F0FOpcode;
187   let TSFlags{41}    = hasMemOp4Prefix;
188   let TSFlags{42}    = hasXOP_Prefix;
189 }
190
191 class PseudoI<dag oops, dag iops, list<dag> pattern>
192   : X86Inst<0, Pseudo, NoImm, oops, iops, ""> {
193   let Pattern = pattern;
194 }
195
196 class I<bits<8> o, Format f, dag outs, dag ins, string asm,
197         list<dag> pattern, Domain d = GenericDomain>
198   : X86Inst<o, f, NoImm, outs, ins, asm, d> {
199   let Pattern = pattern;
200   let CodeSize = 3;
201 }
202 class Ii8 <bits<8> o, Format f, dag outs, dag ins, string asm, 
203            list<dag> pattern, Domain d = GenericDomain>
204   : X86Inst<o, f, Imm8, outs, ins, asm, d> {
205   let Pattern = pattern;
206   let CodeSize = 3;
207 }
208 class Ii8PCRel<bits<8> o, Format f, dag outs, dag ins, string asm, 
209                list<dag> pattern>
210   : X86Inst<o, f, Imm8PCRel, outs, ins, asm> {
211   let Pattern = pattern;
212   let CodeSize = 3;
213 }
214 class Ii16<bits<8> o, Format f, dag outs, dag ins, string asm, 
215            list<dag> pattern>
216   : X86Inst<o, f, Imm16, outs, ins, asm> {
217   let Pattern = pattern;
218   let CodeSize = 3;
219 }
220 class Ii32<bits<8> o, Format f, dag outs, dag ins, string asm, 
221            list<dag> pattern>
222   : X86Inst<o, f, Imm32, outs, ins, asm> {
223   let Pattern = pattern;
224   let CodeSize = 3;
225 }
226
227 class Ii16PCRel<bits<8> o, Format f, dag outs, dag ins, string asm, 
228            list<dag> pattern>
229   : X86Inst<o, f, Imm16PCRel, outs, ins, asm> {
230   let Pattern = pattern;
231   let CodeSize = 3;
232 }
233
234 class Ii32PCRel<bits<8> o, Format f, dag outs, dag ins, string asm, 
235            list<dag> pattern>
236   : X86Inst<o, f, Imm32PCRel, outs, ins, asm> {
237   let Pattern = pattern;
238   let CodeSize = 3;
239 }
240
241 // FPStack Instruction Templates:
242 // FPI - Floating Point Instruction template.
243 class FPI<bits<8> o, Format F, dag outs, dag ins, string asm>
244   : I<o, F, outs, ins, asm, []> {}
245
246 // FpI_ - Floating Point Pseudo Instruction template. Not Predicated.
247 class FpI_<dag outs, dag ins, FPFormat fp, list<dag> pattern>
248   : X86Inst<0, Pseudo, NoImm, outs, ins, ""> {
249   let FPForm = fp;
250   let Pattern = pattern;
251 }
252
253 // Templates for instructions that use a 16- or 32-bit segmented address as
254 //  their only operand: lcall (FAR CALL) and ljmp (FAR JMP)
255 //
256 //   Iseg16 - 16-bit segment selector, 16-bit offset
257 //   Iseg32 - 16-bit segment selector, 32-bit offset
258
259 class Iseg16 <bits<8> o, Format f, dag outs, dag ins, string asm, 
260               list<dag> pattern> : X86Inst<o, f, Imm16, outs, ins, asm> {
261   let Pattern = pattern;
262   let CodeSize = 3;
263 }
264
265 class Iseg32 <bits<8> o, Format f, dag outs, dag ins, string asm, 
266               list<dag> pattern> : X86Inst<o, f, Imm32, outs, ins, asm> {
267   let Pattern = pattern;
268   let CodeSize = 3;
269 }
270
271 // SI - SSE 1 & 2 scalar instructions
272 class SI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
273       : I<o, F, outs, ins, asm, pattern> {
274   let Predicates = !if(hasVEXPrefix /* VEX */, [HasAVX],
275             !if(!eq(Prefix, 12 /* XS */), [HasSSE1], [HasSSE2]));
276
277   // AVX instructions have a 'v' prefix in the mnemonic
278   let AsmString = !if(hasVEXPrefix, !strconcat("v", asm), asm);
279 }
280
281 // SIi8 - SSE 1 & 2 scalar instructions
282 class SIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
283            list<dag> pattern>
284       : Ii8<o, F, outs, ins, asm, pattern> {
285   let Predicates = !if(hasVEXPrefix /* VEX */, [HasAVX],
286             !if(!eq(Prefix, 12 /* XS */), [HasSSE1], [HasSSE2]));
287
288   // AVX instructions have a 'v' prefix in the mnemonic
289   let AsmString = !if(hasVEXPrefix, !strconcat("v", asm), asm);
290 }
291
292 // PI - SSE 1 & 2 packed instructions
293 class PI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern,
294          Domain d>
295       : I<o, F, outs, ins, asm, pattern, d> {
296   let Predicates = !if(hasVEXPrefix /* VEX */, [HasAVX],
297         !if(hasOpSizePrefix /* OpSize */, [HasSSE2], [HasSSE1]));
298
299   // AVX instructions have a 'v' prefix in the mnemonic
300   let AsmString = !if(hasVEXPrefix, !strconcat("v", asm), asm);
301 }
302
303 // PIi8 - SSE 1 & 2 packed instructions with immediate
304 class PIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
305            list<dag> pattern, Domain d>
306       : Ii8<o, F, outs, ins, asm, pattern, d> {
307   let Predicates = !if(hasVEX_4VPrefix /* VEX */, [HasAVX],
308         !if(hasOpSizePrefix /* OpSize */, [HasSSE2], [HasSSE1]));
309
310   // AVX instructions have a 'v' prefix in the mnemonic
311   let AsmString = !if(hasVEX_4VPrefix, !strconcat("v", asm), asm);
312 }
313
314 // SSE1 Instruction Templates:
315 // 
316 //   SSI   - SSE1 instructions with XS prefix.
317 //   PSI   - SSE1 instructions with TB prefix.
318 //   PSIi8 - SSE1 instructions with ImmT == Imm8 and TB prefix.
319 //   VSSI  - SSE1 instructions with XS prefix in AVX form.
320 //   VPSI  - SSE1 instructions with TB prefix in AVX form.
321
322 class SSI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
323       : I<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE1]>;
324 class SSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
325             list<dag> pattern>
326       : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE1]>;
327 class PSI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
328       : I<o, F, outs, ins, asm, pattern, SSEPackedSingle>, TB,
329         Requires<[HasSSE1]>;
330 class PSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
331             list<dag> pattern>
332       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedSingle>, TB,
333         Requires<[HasSSE1]>;
334 class VSSI<bits<8> o, Format F, dag outs, dag ins, string asm,
335            list<dag> pattern>
336       : I<o, F, outs, ins, !strconcat("v", asm), pattern>, XS,
337         Requires<[HasAVX]>;
338 class VPSI<bits<8> o, Format F, dag outs, dag ins, string asm,
339            list<dag> pattern>
340       : I<o, F, outs, ins, !strconcat("v", asm), pattern, SSEPackedSingle>, TB,
341         Requires<[HasAVX]>;
342
343 // SSE2 Instruction Templates:
344 // 
345 //   SDI    - SSE2 instructions with XD prefix.
346 //   SDIi8  - SSE2 instructions with ImmT == Imm8 and XD prefix.
347 //   SSDIi8 - SSE2 instructions with ImmT == Imm8 and XS prefix.
348 //   PDI    - SSE2 instructions with TB and OpSize prefixes.
349 //   PDIi8  - SSE2 instructions with ImmT == Imm8 and TB and OpSize prefixes.
350 //   VSDI   - SSE2 instructions with XD prefix in AVX form.
351 //   VPDI   - SSE2 instructions with TB and OpSize prefixes in AVX form.
352
353 class SDI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
354       : I<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE2]>;
355 class SDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
356             list<dag> pattern>
357       : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE2]>;
358 class SSDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
359              list<dag> pattern>
360       : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE2]>;
361 class PDI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
362       : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
363         Requires<[HasSSE2]>;
364 class PDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
365             list<dag> pattern>
366       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
367         Requires<[HasSSE2]>;
368 class VSDI<bits<8> o, Format F, dag outs, dag ins, string asm,
369            list<dag> pattern>
370       : I<o, F, outs, ins, !strconcat("v", asm), pattern>, XD,
371         Requires<[HasAVX]>;
372 class VPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
373            list<dag> pattern>
374       : I<o, F, outs, ins, !strconcat("v", asm), pattern, SSEPackedDouble>, TB,
375         OpSize, Requires<[HasAVX]>;
376
377 // SSE3 Instruction Templates:
378 // 
379 //   S3I   - SSE3 instructions with TB and OpSize prefixes.
380 //   S3SI  - SSE3 instructions with XS prefix.
381 //   S3DI  - SSE3 instructions with XD prefix.
382
383 class S3SI<bits<8> o, Format F, dag outs, dag ins, string asm, 
384            list<dag> pattern>
385       : I<o, F, outs, ins, asm, pattern, SSEPackedSingle>, XS,
386         Requires<[HasSSE3]>;
387 class S3DI<bits<8> o, Format F, dag outs, dag ins, string asm, 
388            list<dag> pattern>
389       : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, XD,
390         Requires<[HasSSE3]>;
391 class S3I<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
392       : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
393         Requires<[HasSSE3]>;
394
395
396 // SSSE3 Instruction Templates:
397 // 
398 //   SS38I - SSSE3 instructions with T8 prefix.
399 //   SS3AI - SSSE3 instructions with TA prefix.
400 //
401 // Note: SSSE3 instructions have 64-bit and 128-bit versions. The 64-bit version
402 // uses the MMX registers. The 64-bit versions are grouped with the MMX
403 // classes. They need to be enabled even if AVX is enabled.
404
405 class SS38I<bits<8> o, Format F, dag outs, dag ins, string asm,
406             list<dag> pattern>
407       : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
408         Requires<[HasSSSE3]>;
409 class SS3AI<bits<8> o, Format F, dag outs, dag ins, string asm,
410             list<dag> pattern>
411       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
412         Requires<[HasSSSE3]>;
413
414 // SSE4.1 Instruction Templates:
415 // 
416 //   SS48I - SSE 4.1 instructions with T8 prefix.
417 //   SS41AIi8 - SSE 4.1 instructions with TA prefix and ImmT == Imm8.
418 //
419 class SS48I<bits<8> o, Format F, dag outs, dag ins, string asm,
420             list<dag> pattern>
421       : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
422         Requires<[HasSSE41]>;
423 class SS4AIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
424             list<dag> pattern>
425       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
426         Requires<[HasSSE41]>;
427
428 // SSE4.2 Instruction Templates:
429 // 
430 //   SS428I - SSE 4.2 instructions with T8 prefix.
431 class SS428I<bits<8> o, Format F, dag outs, dag ins, string asm,
432              list<dag> pattern>
433       : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
434         Requires<[HasSSE42]>;
435
436 //   SS42FI - SSE 4.2 instructions with T8XD prefix.
437 class SS42FI<bits<8> o, Format F, dag outs, dag ins, string asm,
438               list<dag> pattern>
439       : I<o, F, outs, ins, asm, pattern>, T8XD, Requires<[HasSSE42orAVX]>;
440
441 //   SS42AI = SSE 4.2 instructions with TA prefix
442 class SS42AI<bits<8> o, Format F, dag outs, dag ins, string asm,
443              list<dag> pattern>
444       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
445         Requires<[HasSSE42]>;
446
447 // AVX Instruction Templates:
448 //   Instructions introduced in AVX (no SSE equivalent forms)
449 //
450 //   AVX8I - AVX instructions with T8 and OpSize prefix.
451 //   AVXAIi8 - AVX instructions with TA, OpSize prefix and ImmT = Imm8.
452 class AVX8I<bits<8> o, Format F, dag outs, dag ins, string asm,
453             list<dag> pattern>
454       : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8, OpSize,
455         Requires<[HasAVX]>;
456 class AVXAIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
457               list<dag> pattern>
458       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA, OpSize,
459         Requires<[HasAVX]>;
460
461 // AVX2 Instruction Templates:
462 //   Instructions introduced in AVX2 (no SSE equivalent forms)
463 //
464 //   AVX28I - AVX2 instructions with T8 and OpSize prefix.
465 //   AVX2AIi8 - AVX2 instructions with TA, OpSize prefix and ImmT = Imm8.
466 class AVX28I<bits<8> o, Format F, dag outs, dag ins, string asm,
467             list<dag> pattern>
468       : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8, OpSize,
469         Requires<[HasAVX2]>;
470 class AVX2AIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
471               list<dag> pattern>
472       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA, OpSize,
473         Requires<[HasAVX2]>;
474
475 // AES Instruction Templates:
476 //
477 // AES8I
478 // These use the same encoding as the SSE4.2 T8 and TA encodings.
479 class AES8I<bits<8> o, Format F, dag outs, dag ins, string asm,
480             list<dag>pattern>
481       : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
482         Requires<[HasSSE2, HasAES]>;
483
484 class AESAI<bits<8> o, Format F, dag outs, dag ins, string asm,
485             list<dag> pattern>
486       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
487         Requires<[HasSSE2, HasAES]>;
488
489 // CLMUL Instruction Templates
490 class CLMULIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
491                list<dag>pattern>
492       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
493         OpSize, Requires<[HasSSE2, HasCLMUL]>;
494
495 class AVXCLMULIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
496                   list<dag>pattern>
497       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
498         OpSize, VEX_4V, Requires<[HasAVX, HasCLMUL]>;
499
500 // FMA3 Instruction Templates
501 class FMA3<bits<8> o, Format F, dag outs, dag ins, string asm,
502            list<dag>pattern>
503       : I<o, F, outs, ins, asm, pattern>, T8,
504         OpSize, VEX_4V, Requires<[HasFMA3]>;
505
506 // FMA4 Instruction Templates
507 class FMA4<bits<8> o, Format F, dag outs, dag ins, string asm,
508            list<dag>pattern>
509       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
510         OpSize, VEX_4V, VEX_I8IMM, Requires<[HasFMA4]>;
511
512 // XOP 2, 3 and 4 Operand Instruction Template
513 class IXOP<bits<8> o, Format F, dag outs, dag ins, string asm,
514            list<dag> pattern>
515       : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>,
516          XOP, XOP9, Requires<[HasXOP]>;
517
518 // XOP 2, 3 and 4 Operand Instruction Templates with imm byte
519 class IXOPi8<bits<8> o, Format F, dag outs, dag ins, string asm,
520            list<dag> pattern>
521       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedDouble>,
522          XOP, XOP8, Requires<[HasXOP]>;
523
524 //  XOP 5 operand instruction (VEX encoding!)
525 class IXOP5<bits<8> o, Format F, dag outs, dag ins, string asm,
526            list<dag>pattern>
527       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
528         OpSize, VEX_4V, VEX_I8IMM, Requires<[HasXOP]>;
529
530 // X86-64 Instruction templates...
531 //
532
533 class RI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
534       : I<o, F, outs, ins, asm, pattern>, REX_W;
535 class RIi8 <bits<8> o, Format F, dag outs, dag ins, string asm,
536             list<dag> pattern>
537       : Ii8<o, F, outs, ins, asm, pattern>, REX_W;
538 class RIi32 <bits<8> o, Format F, dag outs, dag ins, string asm,
539              list<dag> pattern>
540       : Ii32<o, F, outs, ins, asm, pattern>, REX_W;
541
542 class RIi64<bits<8> o, Format f, dag outs, dag ins, string asm,
543             list<dag> pattern>
544   : X86Inst<o, f, Imm64, outs, ins, asm>, REX_W {
545   let Pattern = pattern;
546   let CodeSize = 3;
547 }
548
549 class RSSI<bits<8> o, Format F, dag outs, dag ins, string asm,
550            list<dag> pattern>
551       : SSI<o, F, outs, ins, asm, pattern>, REX_W;
552 class RSDI<bits<8> o, Format F, dag outs, dag ins, string asm,
553            list<dag> pattern>
554       : SDI<o, F, outs, ins, asm, pattern>, REX_W;
555 class RPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
556            list<dag> pattern>
557       : PDI<o, F, outs, ins, asm, pattern>, REX_W;
558 class VRPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
559            list<dag> pattern>
560       : VPDI<o, F, outs, ins, asm, pattern>, VEX_W;
561
562 // MMX Instruction templates
563 //
564
565 // MMXI   - MMX instructions with TB prefix.
566 // MMXI64 - MMX instructions with TB prefix valid only in 64 bit mode.
567 // MMX2I  - MMX / SSE2 instructions with TB and OpSize prefixes.
568 // MMXIi8 - MMX instructions with ImmT == Imm8 and TB prefix.
569 // MMXIi8 - MMX instructions with ImmT == Imm8 and TB prefix.
570 // MMXID  - MMX instructions with XD prefix.
571 // MMXIS  - MMX instructions with XS prefix.
572 // MMXPI  - SSE 1 & 2 packed instructions for MMX with no AVX equivalents
573 // MMXSDIi8  - SSE2 instructions with ImmT == Imm8 and XD prefix. No AVX equiv.
574 // MMXSSDIi8 - SSE2 instructions with ImmT == Imm8 and XS prefix. No AVX equiv.
575 // MMXSS38I - SSSE3 instructions with T8 prefix for MMX registers. No AVX equiv.
576 // MMXSS3AI - SSSE3 instructions with TA prefix for MMX registers. No AVX equiv.
577 class MMXI<bits<8> o, Format F, dag outs, dag ins, string asm, 
578            list<dag> pattern>
579       : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX]>;
580 class MMXI64<bits<8> o, Format F, dag outs, dag ins, string asm, 
581              list<dag> pattern>
582       : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX,In64BitMode]>;
583 class MMXRI<bits<8> o, Format F, dag outs, dag ins, string asm, 
584             list<dag> pattern>
585       : I<o, F, outs, ins, asm, pattern>, TB, REX_W, Requires<[HasMMX]>;
586 class MMX2I<bits<8> o, Format F, dag outs, dag ins, string asm, 
587             list<dag> pattern>
588       : I<o, F, outs, ins, asm, pattern>, TB, OpSize, Requires<[HasMMX]>;
589 class MMXIi8<bits<8> o, Format F, dag outs, dag ins, string asm, 
590              list<dag> pattern>
591       : Ii8<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX]>;
592 class MMXID<bits<8> o, Format F, dag outs, dag ins, string asm, 
593             list<dag> pattern>
594       : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasMMX]>;
595 class MMXIS<bits<8> o, Format F, dag outs, dag ins, string asm, 
596             list<dag> pattern>
597       : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasMMX]>;
598
599 class MMXPI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern,
600             Domain d>
601       : I<o, F, outs, ins, asm, pattern, d> {
602   let Predicates = !if(hasOpSizePrefix /* OpSize */, [HasXMMInt], [HasXMM]);
603 }
604 class MMXSDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
605                list<dag> pattern>
606       : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasXMMInt]>;
607 class MMXSSDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
608                list<dag> pattern>
609       : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasXMMInt]>;
610 class MMXSS38I<bits<8> o, Format F, dag outs, dag ins, string asm,
611                list<dag> pattern>
612       : I<o, F, outs, ins, asm, pattern>, T8, Requires<[HasSSSE3orAVX]>;
613 class MMXSS3AI<bits<8> o, Format F, dag outs, dag ins, string asm,
614                list<dag> pattern>
615       : Ii8<o, F, outs, ins, asm, pattern>, TA, Requires<[HasSSSE3orAVX]>;