5b7adf311bd73fa8fbec30bca0a0463cb49c4a3a
[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 VEX    { bit hasVEXPrefix = 1; }
113 class VEX_W  { bit hasVEX_WPrefix = 1; }
114 class VEX_4V : VEX { bit hasVEX_4VPrefix = 1; }
115 class VEX_4VOp3 : VEX { bit hasVEX_4VOp3Prefix = 1; }
116 class VEX_I8IMM { bit hasVEX_i8ImmReg = 1; }
117 class VEX_L  { bit hasVEX_L = 1; }
118 class VEX_LIG { bit ignoresVEX_L = 1; }
119 class Has3DNow0F0FOpcode  { bit has3DNow0F0FOpcode = 1; }
120
121 class X86Inst<bits<8> opcod, Format f, ImmType i, dag outs, dag ins,
122               string AsmStr, Domain d = GenericDomain>
123   : Instruction {
124   let Namespace = "X86";
125
126   bits<8> Opcode = opcod;
127   Format Form = f;
128   bits<6> FormBits = Form.Value;
129   ImmType ImmT = i;
130
131   dag OutOperandList = outs;
132   dag InOperandList = ins;
133   string AsmString = AsmStr;
134
135   // If this is a pseudo instruction, mark it isCodeGenOnly.
136   let isCodeGenOnly = !eq(!cast<string>(f), "Pseudo");
137
138   //
139   // Attributes specific to X86 instructions...
140   //
141   bit hasOpSizePrefix = 0;  // Does this inst have a 0x66 prefix?
142   bit hasAdSizePrefix = 0;  // Does this inst have a 0x67 prefix?
143
144   bits<5> Prefix = 0;       // Which prefix byte does this inst have?
145   bit hasREX_WPrefix  = 0;  // Does this inst require the REX.W prefix?
146   FPFormat FPForm = NotFP;  // What flavor of FP instruction is this?
147   bit hasLockPrefix = 0;    // Does this inst have a 0xF0 prefix?
148   bits<2> SegOvrBits = 0;   // Segment override prefix.
149   Domain ExeDomain = d;
150   bit hasVEXPrefix = 0;     // Does this inst require a VEX prefix?
151   bit hasVEX_WPrefix = 0;   // Does this inst set the VEX_W field?
152   bit hasVEX_4VPrefix = 0;  // Does this inst require the VEX.VVVV field?
153   bit hasVEX_4VOp3Prefix = 0;  // Does this inst require the VEX.VVVV field to
154                                // encode the third operand?
155   bit hasVEX_i8ImmReg = 0;  // Does this inst require the last source register
156                             // to be encoded in a immediate field?
157   bit hasVEX_L = 0;         // Does this inst use large (256-bit) registers?
158   bit ignoresVEX_L = 0;     // Does this instruction ignore the L-bit
159   bit has3DNow0F0FOpcode =0;// Wacky 3dNow! encoding?
160
161   // TSFlags layout should be kept in sync with X86InstrInfo.h.
162   let TSFlags{5-0}   = FormBits;
163   let TSFlags{6}     = hasOpSizePrefix;
164   let TSFlags{7}     = hasAdSizePrefix;
165   let TSFlags{12-8}  = Prefix;
166   let TSFlags{13}    = hasREX_WPrefix;
167   let TSFlags{16-14} = ImmT.Value;
168   let TSFlags{19-17} = FPForm.Value;
169   let TSFlags{20}    = hasLockPrefix;
170   let TSFlags{22-21} = SegOvrBits;
171   let TSFlags{24-23} = ExeDomain.Value;
172   let TSFlags{32-25} = Opcode;
173   let TSFlags{33}    = hasVEXPrefix;
174   let TSFlags{34}    = hasVEX_WPrefix;
175   let TSFlags{35}    = hasVEX_4VPrefix;
176   let TSFlags{36}    = hasVEX_4VOp3Prefix;
177   let TSFlags{37}    = hasVEX_i8ImmReg;
178   let TSFlags{38}    = hasVEX_L;
179   let TSFlags{39}    = ignoresVEX_L;
180   let TSFlags{40}    = has3DNow0F0FOpcode;
181 }
182
183 class PseudoI<dag oops, dag iops, list<dag> pattern>
184   : X86Inst<0, Pseudo, NoImm, oops, iops, ""> {
185   let Pattern = pattern;
186 }
187
188 class I<bits<8> o, Format f, dag outs, dag ins, string asm,
189         list<dag> pattern, Domain d = GenericDomain>
190   : X86Inst<o, f, NoImm, outs, ins, asm, d> {
191   let Pattern = pattern;
192   let CodeSize = 3;
193 }
194 class Ii8 <bits<8> o, Format f, dag outs, dag ins, string asm, 
195            list<dag> pattern, Domain d = GenericDomain>
196   : X86Inst<o, f, Imm8, outs, ins, asm, d> {
197   let Pattern = pattern;
198   let CodeSize = 3;
199 }
200 class Ii8PCRel<bits<8> o, Format f, dag outs, dag ins, string asm, 
201                list<dag> pattern>
202   : X86Inst<o, f, Imm8PCRel, outs, ins, asm> {
203   let Pattern = pattern;
204   let CodeSize = 3;
205 }
206 class Ii16<bits<8> o, Format f, dag outs, dag ins, string asm, 
207            list<dag> pattern>
208   : X86Inst<o, f, Imm16, outs, ins, asm> {
209   let Pattern = pattern;
210   let CodeSize = 3;
211 }
212 class Ii32<bits<8> o, Format f, dag outs, dag ins, string asm, 
213            list<dag> pattern>
214   : X86Inst<o, f, Imm32, outs, ins, asm> {
215   let Pattern = pattern;
216   let CodeSize = 3;
217 }
218
219 class Ii16PCRel<bits<8> o, Format f, dag outs, dag ins, string asm, 
220            list<dag> pattern>
221   : X86Inst<o, f, Imm16PCRel, outs, ins, asm> {
222   let Pattern = pattern;
223   let CodeSize = 3;
224 }
225
226 class Ii32PCRel<bits<8> o, Format f, dag outs, dag ins, string asm, 
227            list<dag> pattern>
228   : X86Inst<o, f, Imm32PCRel, outs, ins, asm> {
229   let Pattern = pattern;
230   let CodeSize = 3;
231 }
232
233 // FPStack Instruction Templates:
234 // FPI - Floating Point Instruction template.
235 class FPI<bits<8> o, Format F, dag outs, dag ins, string asm>
236   : I<o, F, outs, ins, asm, []> {}
237
238 // FpI_ - Floating Point Pseudo Instruction template. Not Predicated.
239 class FpI_<dag outs, dag ins, FPFormat fp, list<dag> pattern>
240   : X86Inst<0, Pseudo, NoImm, outs, ins, ""> {
241   let FPForm = fp;
242   let Pattern = pattern;
243 }
244
245 // Templates for instructions that use a 16- or 32-bit segmented address as
246 //  their only operand: lcall (FAR CALL) and ljmp (FAR JMP)
247 //
248 //   Iseg16 - 16-bit segment selector, 16-bit offset
249 //   Iseg32 - 16-bit segment selector, 32-bit offset
250
251 class Iseg16 <bits<8> o, Format f, dag outs, dag ins, string asm, 
252               list<dag> pattern> : X86Inst<o, f, Imm16, outs, ins, asm> {
253   let Pattern = pattern;
254   let CodeSize = 3;
255 }
256
257 class Iseg32 <bits<8> o, Format f, dag outs, dag ins, string asm, 
258               list<dag> pattern> : X86Inst<o, f, Imm32, outs, ins, asm> {
259   let Pattern = pattern;
260   let CodeSize = 3;
261 }
262
263 // SI - SSE 1 & 2 scalar instructions
264 class SI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
265       : I<o, F, outs, ins, asm, pattern> {
266   let Predicates = !if(hasVEXPrefix /* VEX */, [HasAVX],
267             !if(!eq(Prefix, 12 /* XS */), [HasSSE1], [HasSSE2]));
268
269   // AVX instructions have a 'v' prefix in the mnemonic
270   let AsmString = !if(hasVEXPrefix, !strconcat("v", asm), asm);
271 }
272
273 // SIi8 - SSE 1 & 2 scalar instructions
274 class SIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
275            list<dag> pattern>
276       : Ii8<o, F, outs, ins, asm, pattern> {
277   let Predicates = !if(hasVEXPrefix /* VEX */, [HasAVX],
278             !if(!eq(Prefix, 12 /* XS */), [HasSSE1], [HasSSE2]));
279
280   // AVX instructions have a 'v' prefix in the mnemonic
281   let AsmString = !if(hasVEXPrefix, !strconcat("v", asm), asm);
282 }
283
284 // PI - SSE 1 & 2 packed instructions
285 class PI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern,
286          Domain d>
287       : I<o, F, outs, ins, asm, pattern, d> {
288   let Predicates = !if(hasVEXPrefix /* VEX */, [HasAVX],
289         !if(hasOpSizePrefix /* OpSize */, [HasSSE2], [HasSSE1]));
290
291   // AVX instructions have a 'v' prefix in the mnemonic
292   let AsmString = !if(hasVEXPrefix, !strconcat("v", asm), asm);
293 }
294
295 // PIi8 - SSE 1 & 2 packed instructions with immediate
296 class PIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
297            list<dag> pattern, Domain d>
298       : Ii8<o, F, outs, ins, asm, pattern, d> {
299   let Predicates = !if(hasVEX_4VPrefix /* VEX */, [HasAVX],
300         !if(hasOpSizePrefix /* OpSize */, [HasSSE2], [HasSSE1]));
301
302   // AVX instructions have a 'v' prefix in the mnemonic
303   let AsmString = !if(hasVEX_4VPrefix, !strconcat("v", asm), asm);
304 }
305
306 // SSE1 Instruction Templates:
307 // 
308 //   SSI   - SSE1 instructions with XS prefix.
309 //   PSI   - SSE1 instructions with TB prefix.
310 //   PSIi8 - SSE1 instructions with ImmT == Imm8 and TB prefix.
311 //   VSSI  - SSE1 instructions with XS prefix in AVX form.
312 //   VPSI  - SSE1 instructions with TB prefix in AVX form.
313
314 class SSI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
315       : I<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE1]>;
316 class SSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
317             list<dag> pattern>
318       : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE1]>;
319 class PSI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
320       : I<o, F, outs, ins, asm, pattern, SSEPackedSingle>, TB,
321         Requires<[HasSSE1]>;
322 class PSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
323             list<dag> pattern>
324       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedSingle>, TB,
325         Requires<[HasSSE1]>;
326 class VSSI<bits<8> o, Format F, dag outs, dag ins, string asm,
327            list<dag> pattern>
328       : I<o, F, outs, ins, !strconcat("v", asm), pattern>, XS,
329         Requires<[HasAVX]>;
330 class VPSI<bits<8> o, Format F, dag outs, dag ins, string asm,
331            list<dag> pattern>
332       : I<o, F, outs, ins, !strconcat("v", asm), pattern, SSEPackedSingle>, TB,
333         Requires<[HasAVX]>;
334
335 // SSE2 Instruction Templates:
336 // 
337 //   SDI    - SSE2 instructions with XD prefix.
338 //   SDIi8  - SSE2 instructions with ImmT == Imm8 and XD prefix.
339 //   SSDIi8 - SSE2 instructions with ImmT == Imm8 and XS prefix.
340 //   PDI    - SSE2 instructions with TB and OpSize prefixes.
341 //   PDIi8  - SSE2 instructions with ImmT == Imm8 and TB and OpSize prefixes.
342 //   VSDI   - SSE2 instructions with XD prefix in AVX form.
343 //   VPDI   - SSE2 instructions with TB and OpSize prefixes in AVX form.
344
345 class SDI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
346       : I<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE2]>;
347 class SDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
348             list<dag> pattern>
349       : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE2]>;
350 class SSDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
351              list<dag> pattern>
352       : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE2]>;
353 class PDI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
354       : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
355         Requires<[HasSSE2]>;
356 class PDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
357             list<dag> pattern>
358       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
359         Requires<[HasSSE2]>;
360 class VSDI<bits<8> o, Format F, dag outs, dag ins, string asm,
361            list<dag> pattern>
362       : I<o, F, outs, ins, !strconcat("v", asm), pattern>, XD,
363         Requires<[HasAVX]>;
364 class VPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
365            list<dag> pattern>
366       : I<o, F, outs, ins, !strconcat("v", asm), pattern, SSEPackedDouble>, TB,
367         OpSize, Requires<[HasAVX]>;
368
369 // SSE3 Instruction Templates:
370 // 
371 //   S3I   - SSE3 instructions with TB and OpSize prefixes.
372 //   S3SI  - SSE3 instructions with XS prefix.
373 //   S3DI  - SSE3 instructions with XD prefix.
374
375 class S3SI<bits<8> o, Format F, dag outs, dag ins, string asm, 
376            list<dag> pattern>
377       : I<o, F, outs, ins, asm, pattern, SSEPackedSingle>, XS,
378         Requires<[HasSSE3]>;
379 class S3DI<bits<8> o, Format F, dag outs, dag ins, string asm, 
380            list<dag> pattern>
381       : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, XD,
382         Requires<[HasSSE3]>;
383 class S3I<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
384       : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
385         Requires<[HasSSE3]>;
386
387
388 // SSSE3 Instruction Templates:
389 // 
390 //   SS38I - SSSE3 instructions with T8 prefix.
391 //   SS3AI - SSSE3 instructions with TA prefix.
392 //
393 // Note: SSSE3 instructions have 64-bit and 128-bit versions. The 64-bit version
394 // uses the MMX registers. We put those instructions here because they better
395 // fit into the SSSE3 instruction category rather than the MMX category.
396
397 class SS38I<bits<8> o, Format F, dag outs, dag ins, string asm,
398             list<dag> pattern>
399       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
400         Requires<[HasSSSE3]>;
401 class SS3AI<bits<8> o, Format F, dag outs, dag ins, string asm,
402             list<dag> pattern>
403       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
404         Requires<[HasSSSE3]>;
405
406 // SSE4.1 Instruction Templates:
407 // 
408 //   SS48I - SSE 4.1 instructions with T8 prefix.
409 //   SS41AIi8 - SSE 4.1 instructions with TA prefix and ImmT == Imm8.
410 //
411 class SS48I<bits<8> o, Format F, dag outs, dag ins, string asm,
412             list<dag> pattern>
413       : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
414         Requires<[HasSSE41]>;
415 class SS4AIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
416             list<dag> pattern>
417       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
418         Requires<[HasSSE41]>;
419
420 // SSE4.2 Instruction Templates:
421 // 
422 //   SS428I - SSE 4.2 instructions with T8 prefix.
423 class SS428I<bits<8> o, Format F, dag outs, dag ins, string asm,
424              list<dag> pattern>
425       : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
426         Requires<[HasSSE42]>;
427
428 //   SS42FI - SSE 4.2 instructions with T8XD prefix.
429 class SS42FI<bits<8> o, Format F, dag outs, dag ins, string asm,
430               list<dag> pattern>
431       : I<o, F, outs, ins, asm, pattern>, T8XD, Requires<[HasSSE42]>;
432       
433 //   SS42AI = SSE 4.2 instructions with TA prefix
434 class SS42AI<bits<8> o, Format F, dag outs, dag ins, string asm,
435              list<dag> pattern>
436       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
437         Requires<[HasSSE42]>;
438
439 // AVX Instruction Templates:
440 //   Instructions introduced in AVX (no SSE equivalent forms)
441 //
442 //   AVX8I - AVX instructions with T8 and OpSize prefix.
443 //   AVXAIi8 - AVX instructions with TA, OpSize prefix and ImmT = Imm8.
444 class AVX8I<bits<8> o, Format F, dag outs, dag ins, string asm,
445             list<dag> pattern>
446       : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8, OpSize,
447         Requires<[HasAVX]>;
448 class AVXAIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
449               list<dag> pattern>
450       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA, OpSize,
451         Requires<[HasAVX]>;
452
453 // AES Instruction Templates:
454 //
455 // AES8I
456 // These use the same encoding as the SSE4.2 T8 and TA encodings.
457 class AES8I<bits<8> o, Format F, dag outs, dag ins, string asm,
458             list<dag>pattern>
459       : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
460         Requires<[HasAES]>;
461
462 class AESAI<bits<8> o, Format F, dag outs, dag ins, string asm,
463             list<dag> pattern>
464       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
465         Requires<[HasAES]>;
466
467 // CLMUL Instruction Templates
468 class CLMULIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
469                list<dag>pattern>
470       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
471         OpSize, Requires<[HasCLMUL]>;
472
473 class AVXCLMULIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
474                   list<dag>pattern>
475       : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
476         OpSize, VEX_4V, Requires<[HasAVX, HasCLMUL]>;
477
478 // FMA3 Instruction Templates
479 class FMA3<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         OpSize, VEX_4V, Requires<[HasFMA3]>;
483
484 // X86-64 Instruction templates...
485 //
486
487 class RI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
488       : I<o, F, outs, ins, asm, pattern>, REX_W;
489 class RIi8 <bits<8> o, Format F, dag outs, dag ins, string asm,
490             list<dag> pattern>
491       : Ii8<o, F, outs, ins, asm, pattern>, REX_W;
492 class RIi32 <bits<8> o, Format F, dag outs, dag ins, string asm,
493              list<dag> pattern>
494       : Ii32<o, F, outs, ins, asm, pattern>, REX_W;
495
496 class RIi64<bits<8> o, Format f, dag outs, dag ins, string asm,
497             list<dag> pattern>
498   : X86Inst<o, f, Imm64, outs, ins, asm>, REX_W {
499   let Pattern = pattern;
500   let CodeSize = 3;
501 }
502
503 class RSSI<bits<8> o, Format F, dag outs, dag ins, string asm,
504            list<dag> pattern>
505       : SSI<o, F, outs, ins, asm, pattern>, REX_W;
506 class RSDI<bits<8> o, Format F, dag outs, dag ins, string asm,
507            list<dag> pattern>
508       : SDI<o, F, outs, ins, asm, pattern>, REX_W;
509 class RPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
510            list<dag> pattern>
511       : PDI<o, F, outs, ins, asm, pattern>, REX_W;
512 class VRPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
513            list<dag> pattern>
514       : VPDI<o, F, outs, ins, asm, pattern>, VEX_W;
515
516 // MMX Instruction templates
517 //
518
519 // MMXI   - MMX instructions with TB prefix.
520 // MMXI64 - MMX instructions with TB prefix valid only in 64 bit mode.
521 // MMX2I  - MMX / SSE2 instructions with TB and OpSize prefixes.
522 // MMXIi8 - MMX instructions with ImmT == Imm8 and TB prefix.
523 // MMXIi8 - MMX instructions with ImmT == Imm8 and TB prefix.
524 // MMXID  - MMX instructions with XD prefix.
525 // MMXIS  - MMX instructions with XS prefix.
526 class MMXI<bits<8> o, Format F, dag outs, dag ins, string asm, 
527            list<dag> pattern>
528       : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX]>;
529 class MMXI64<bits<8> o, Format F, dag outs, dag ins, string asm, 
530              list<dag> pattern>
531       : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX,In64BitMode]>;
532 class MMXRI<bits<8> o, Format F, dag outs, dag ins, string asm, 
533             list<dag> pattern>
534       : I<o, F, outs, ins, asm, pattern>, TB, REX_W, Requires<[HasMMX]>;
535 class MMX2I<bits<8> o, Format F, dag outs, dag ins, string asm, 
536             list<dag> pattern>
537       : I<o, F, outs, ins, asm, pattern>, TB, OpSize, Requires<[HasMMX]>;
538 class MMXIi8<bits<8> o, Format F, dag outs, dag ins, string asm, 
539              list<dag> pattern>
540       : Ii8<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX]>;
541 class MMXID<bits<8> o, Format F, dag outs, dag ins, string asm, 
542             list<dag> pattern>
543       : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasMMX]>;
544 class MMXIS<bits<8> o, Format F, dag outs, dag ins, string asm, 
545             list<dag> pattern>
546       : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasMMX]>;