[bpf] fix build
[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<7> val> {
18   bits<7> 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>; def RawFrmMemOffs : Format<7>;
25 def RawFrmSrc  : Format<8>; def RawFrmDst     : Format<9>;
26 def RawFrmDstSrc: Format<10>;
27 def RawFrmImm8 : Format<11>;
28 def RawFrmImm16 : Format<12>;
29 def MRMXr  : Format<14>; def MRMXm  : Format<15>;
30 def MRM0r  : Format<16>; def MRM1r  : Format<17>; def MRM2r  : Format<18>;
31 def MRM3r  : Format<19>; def MRM4r  : Format<20>; def MRM5r  : Format<21>;
32 def MRM6r  : Format<22>; def MRM7r  : Format<23>;
33 def MRM0m  : Format<24>; def MRM1m  : Format<25>; def MRM2m  : Format<26>;
34 def MRM3m  : Format<27>; def MRM4m  : Format<28>; def MRM5m  : Format<29>;
35 def MRM6m  : Format<30>; def MRM7m  : Format<31>;
36 def MRM_C0 : Format<32>; def MRM_C1 : Format<33>; def MRM_C2 : Format<34>;
37 def MRM_C3 : Format<35>; def MRM_C4 : Format<36>; def MRM_C5 : Format<37>;
38 def MRM_C6 : Format<38>; def MRM_C7 : Format<39>; def MRM_C8 : Format<40>;
39 def MRM_C9 : Format<41>; def MRM_CA : Format<42>; def MRM_CB : Format<43>;
40 def MRM_CC : Format<44>; def MRM_CD : Format<45>; def MRM_CE : Format<46>;
41 def MRM_CF : Format<47>; def MRM_D0 : Format<48>; def MRM_D1 : Format<49>;
42 def MRM_D2 : Format<50>; def MRM_D3 : Format<51>; def MRM_D4 : Format<52>;
43 def MRM_D5 : Format<53>; def MRM_D6 : Format<54>; def MRM_D7 : Format<55>;
44 def MRM_D8 : Format<56>; def MRM_D9 : Format<57>; def MRM_DA : Format<58>;
45 def MRM_DB : Format<59>; def MRM_DC : Format<60>; def MRM_DD : Format<61>;
46 def MRM_DE : Format<62>; def MRM_DF : Format<63>; def MRM_E0 : Format<64>;
47 def MRM_E1 : Format<65>; def MRM_E2 : Format<66>; def MRM_E3 : Format<67>;
48 def MRM_E4 : Format<68>; def MRM_E5 : Format<69>; def MRM_E6 : Format<70>;
49 def MRM_E7 : Format<71>; def MRM_E8 : Format<72>; def MRM_E9 : Format<73>;
50 def MRM_EA : Format<74>; def MRM_EB : Format<75>; def MRM_EC : Format<76>;
51 def MRM_ED : Format<77>; def MRM_EE : Format<78>; def MRM_EF : Format<79>;
52 def MRM_F0 : Format<80>; def MRM_F1 : Format<81>; def MRM_F2 : Format<82>;
53 def MRM_F3 : Format<83>; def MRM_F4 : Format<84>; def MRM_F5 : Format<85>;
54 def MRM_F6 : Format<86>; def MRM_F7 : Format<87>; def MRM_F8 : Format<88>;
55 def MRM_F9 : Format<89>; def MRM_FA : Format<90>; def MRM_FB : Format<91>;
56 def MRM_FC : Format<92>; def MRM_FD : Format<93>; def MRM_FE : Format<94>;
57 def MRM_FF : Format<95>;
58
59 // ImmType - This specifies the immediate type used by an instruction. This is
60 // part of the ad-hoc solution used to emit machine instruction encodings by our
61 // machine code emitter.
62 class ImmType<bits<4> val> {
63   bits<4> Value = val;
64 }
65 def NoImm      : ImmType<0>;
66 def Imm8       : ImmType<1>;
67 def Imm8PCRel  : ImmType<2>;
68 def Imm16      : ImmType<3>;
69 def Imm16PCRel : ImmType<4>;
70 def Imm32      : ImmType<5>;
71 def Imm32PCRel : ImmType<6>;
72 def Imm32S     : ImmType<7>;
73 def Imm64      : ImmType<8>;
74
75 // FPFormat - This specifies what form this FP instruction has.  This is used by
76 // the Floating-Point stackifier pass.
77 class FPFormat<bits<3> val> {
78   bits<3> Value = val;
79 }
80 def NotFP      : FPFormat<0>;
81 def ZeroArgFP  : FPFormat<1>;
82 def OneArgFP   : FPFormat<2>;
83 def OneArgFPRW : FPFormat<3>;
84 def TwoArgFP   : FPFormat<4>;
85 def CompareFP  : FPFormat<5>;
86 def CondMovFP  : FPFormat<6>;
87 def SpecialFP  : FPFormat<7>;
88
89 // Class specifying the SSE execution domain, used by the SSEDomainFix pass.
90 // Keep in sync with tables in X86InstrInfo.cpp.
91 class Domain<bits<2> val> {
92   bits<2> Value = val;
93 }
94 def GenericDomain   : Domain<0>;
95 def SSEPackedSingle : Domain<1>;
96 def SSEPackedDouble : Domain<2>;
97 def SSEPackedInt    : Domain<3>;
98
99 // Class specifying the vector form of the decompressed
100 // displacement of 8-bit.
101 class CD8VForm<bits<3> val> {
102   bits<3> Value = val;
103 }
104 def CD8VF  : CD8VForm<0>;  // v := VL
105 def CD8VH  : CD8VForm<1>;  // v := VL/2
106 def CD8VQ  : CD8VForm<2>;  // v := VL/4
107 def CD8VO  : CD8VForm<3>;  // v := VL/8
108 // The tuple (subvector) forms.
109 def CD8VT1 : CD8VForm<4>;  // v := 1
110 def CD8VT2 : CD8VForm<5>;  // v := 2
111 def CD8VT4 : CD8VForm<6>;  // v := 4
112 def CD8VT8 : CD8VForm<7>;  // v := 8
113
114 // Class specifying the prefix used an opcode extension.
115 class Prefix<bits<3> val> {
116   bits<3> Value = val;
117 }
118 def NoPrfx : Prefix<0>;
119 def PS     : Prefix<1>;
120 def PD     : Prefix<2>;
121 def XS     : Prefix<3>;
122 def XD     : Prefix<4>;
123
124 // Class specifying the opcode map.
125 class Map<bits<3> val> {
126   bits<3> Value = val;
127 }
128 def OB   : Map<0>;
129 def TB   : Map<1>;
130 def T8   : Map<2>;
131 def TA   : Map<3>;
132 def XOP8 : Map<4>;
133 def XOP9 : Map<5>;
134 def XOPA : Map<6>;
135
136 // Class specifying the encoding
137 class Encoding<bits<2> val> {
138   bits<2> Value = val;
139 }
140 def EncNormal : Encoding<0>;
141 def EncVEX    : Encoding<1>;
142 def EncXOP    : Encoding<2>;
143 def EncEVEX   : Encoding<3>;
144
145 // Operand size for encodings that change based on mode.
146 class OperandSize<bits<2> val> {
147   bits<2> Value = val;
148 }
149 def OpSizeFixed : OperandSize<0>; // Never needs a 0x66 prefix.
150 def OpSize16    : OperandSize<1>; // Needs 0x66 prefix in 32-bit mode.
151 def OpSize32    : OperandSize<2>; // Needs 0x66 prefix in 16-bit mode.
152
153 // Address size for encodings that change based on mode.
154 class AddressSize<bits<2> val> {
155   bits<2> Value = val;
156 }
157 def AdSizeX  : AddressSize<0>; // Address size determined using addr operand.
158 def AdSize16 : AddressSize<1>; // Encodes a 16-bit address.
159 def AdSize32 : AddressSize<2>; // Encodes a 32-bit address.
160 def AdSize64 : AddressSize<3>; // Encodes a 64-bit address.
161
162 // Prefix byte classes which are used to indicate to the ad-hoc machine code
163 // emitter that various prefix bytes are required.
164 class OpSize16 { OperandSize OpSize = OpSize16; }
165 class OpSize32 { OperandSize OpSize = OpSize32; }
166 class AdSize16 { AddressSize AdSize = AdSize16; }
167 class AdSize32 { AddressSize AdSize = AdSize32; }
168 class AdSize64 { AddressSize AdSize = AdSize64; }
169 class REX_W  { bit hasREX_WPrefix = 1; }
170 class LOCK   { bit hasLockPrefix = 1; }
171 class REP    { bit hasREPPrefix = 1; }
172 class TB     { Map OpMap = TB; }
173 class T8     { Map OpMap = T8; }
174 class TA     { Map OpMap = TA; }
175 class XOP8   { Map OpMap = XOP8; Prefix OpPrefix = PS; }
176 class XOP9   { Map OpMap = XOP9; Prefix OpPrefix = PS; }
177 class XOPA   { Map OpMap = XOPA; Prefix OpPrefix = PS; }
178 class OBXS   { Prefix OpPrefix = XS; }
179 class PS   : TB { Prefix OpPrefix = PS; }
180 class PD   : TB { Prefix OpPrefix = PD; }
181 class XD   : TB { Prefix OpPrefix = XD; }
182 class XS   : TB { Prefix OpPrefix = XS; }
183 class T8PS : T8 { Prefix OpPrefix = PS; }
184 class T8PD : T8 { Prefix OpPrefix = PD; }
185 class T8XD : T8 { Prefix OpPrefix = XD; }
186 class T8XS : T8 { Prefix OpPrefix = XS; }
187 class TAPS : TA { Prefix OpPrefix = PS; }
188 class TAPD : TA { Prefix OpPrefix = PD; }
189 class TAXD : TA { Prefix OpPrefix = XD; }
190 class VEX    { Encoding OpEnc = EncVEX; }
191 class VEX_W  { bit hasVEX_WPrefix = 1; }
192 class VEX_4V : VEX { bit hasVEX_4V = 1; }
193 class VEX_4VOp3 : VEX { bit hasVEX_4VOp3 = 1; }
194 class VEX_I8IMM { bit hasVEX_i8ImmReg = 1; }
195 class VEX_L  { bit hasVEX_L = 1; }
196 class VEX_LIG { bit ignoresVEX_L = 1; }
197 class EVEX : VEX { Encoding OpEnc = EncEVEX; }
198 class EVEX_4V : VEX_4V { Encoding OpEnc = EncEVEX; }
199 class EVEX_K { bit hasEVEX_K = 1; }
200 class EVEX_KZ : EVEX_K { bit hasEVEX_Z = 1; }
201 class EVEX_B { bit hasEVEX_B = 1; }
202 class EVEX_RC { bit hasEVEX_RC = 1; }
203 class EVEX_V512 { bit hasEVEX_L2 = 1; bit hasVEX_L = 0; }
204 class EVEX_V256 { bit hasEVEX_L2 = 0; bit hasVEX_L = 1; }
205 class EVEX_V128 { bit hasEVEX_L2 = 0; bit hasVEX_L = 0; }
206
207 // Specify AVX512 8-bit compressed displacement encoding based on the vector
208 // element size in bits (8, 16, 32, 64) and the CDisp8 form.
209 class EVEX_CD8<int esize, CD8VForm form> {
210   int CD8_EltSize = !srl(esize, 3);
211   bits<3> CD8_Form = form.Value;
212 }
213
214 class Has3DNow0F0FOpcode  { bit has3DNow0F0FOpcode = 1; }
215 class MemOp4 { bit hasMemOp4Prefix = 1; }
216 class XOP { Encoding OpEnc = EncXOP; }
217 class XOP_4V : XOP { bit hasVEX_4V = 1; }
218 class XOP_4VOp3 : XOP { bit hasVEX_4VOp3 = 1; }
219
220 class X86Inst<bits<8> opcod, Format f, ImmType i, dag outs, dag ins,
221               string AsmStr,
222               InstrItinClass itin,
223               Domain d = GenericDomain>
224   : Instruction {
225   let Namespace = "X86";
226
227   bits<8> Opcode = opcod;
228   Format Form = f;
229   bits<7> FormBits = Form.Value;
230   ImmType ImmT = i;
231
232   dag OutOperandList = outs;
233   dag InOperandList = ins;
234   string AsmString = AsmStr;
235
236   // If this is a pseudo instruction, mark it isCodeGenOnly.
237   let isCodeGenOnly = !eq(!cast<string>(f), "Pseudo");
238
239   let Itinerary = itin;
240
241   //
242   // Attributes specific to X86 instructions...
243   //
244   bit ForceDisassemble = 0; // Force instruction to disassemble even though it's
245                             // isCodeGenonly. Needed to hide an ambiguous
246                             // AsmString from the parser, but still disassemble.
247
248   OperandSize OpSize = OpSizeFixed; // Does this instruction's encoding change
249                                     // based on operand size of the mode?
250   bits<2> OpSizeBits = OpSize.Value;
251   AddressSize AdSize = AdSizeX; // Does this instruction's encoding change
252                                 // based on address size of the mode?
253   bits<2> AdSizeBits = AdSize.Value;
254
255   Prefix OpPrefix = NoPrfx; // Which prefix byte does this inst have?
256   bits<3> OpPrefixBits = OpPrefix.Value;
257   Map OpMap = OB;           // Which opcode map does this inst have?
258   bits<3> OpMapBits = OpMap.Value;
259   bit hasREX_WPrefix  = 0;  // Does this inst require the REX.W prefix?
260   FPFormat FPForm = NotFP;  // What flavor of FP instruction is this?
261   bit hasLockPrefix = 0;    // Does this inst have a 0xF0 prefix?
262   Domain ExeDomain = d;
263   bit hasREPPrefix = 0;     // Does this inst have a REP prefix?
264   Encoding OpEnc = EncNormal; // Encoding used by this instruction
265   bits<2> OpEncBits = OpEnc.Value;
266   bit hasVEX_WPrefix = 0;   // Does this inst set the VEX_W field?
267   bit hasVEX_4V = 0;        // Does this inst require the VEX.VVVV field?
268   bit hasVEX_4VOp3 = 0;     // Does this inst require the VEX.VVVV field to
269                             // encode the third operand?
270   bit hasVEX_i8ImmReg = 0;  // Does this inst require the last source register
271                             // to be encoded in a immediate field?
272   bit hasVEX_L = 0;         // Does this inst use large (256-bit) registers?
273   bit ignoresVEX_L = 0;     // Does this instruction ignore the L-bit
274   bit hasEVEX_K = 0;        // Does this inst require masking?
275   bit hasEVEX_Z = 0;        // Does this inst set the EVEX_Z field?
276   bit hasEVEX_L2 = 0;       // Does this inst set the EVEX_L2 field?
277   bit hasEVEX_B = 0;        // Does this inst set the EVEX_B field?
278   bits<3> CD8_Form = 0;     // Compressed disp8 form - vector-width.
279   // Declare it int rather than bits<4> so that all bits are defined when
280   // assigning to bits<7>.
281   int CD8_EltSize = 0;      // Compressed disp8 form - element-size in bytes.
282   bit has3DNow0F0FOpcode =0;// Wacky 3dNow! encoding?
283   bit hasMemOp4Prefix = 0;  // Same bit as VEX_W, but used for swapping operands
284   bit hasEVEX_RC = 0;       // Explicitly specified rounding control in FP instruction.
285
286   bits<2> EVEX_LL;
287   let EVEX_LL{0} = hasVEX_L;
288   let EVEX_LL{1} = hasEVEX_L2;
289   // Vector size in bytes.
290   bits<7> VectSize = !shl(16, EVEX_LL);
291
292   // The scaling factor for AVX512's compressed displacement is either
293   //   - the size of a  power-of-two number of elements or
294   //   - the size of a single element for broadcasts or
295   //   - the total vector size divided by a power-of-two number.
296   // Possible values are: 0 (non-AVX512 inst), 1, 2, 4, 8, 16, 32 and 64.
297   bits<7> CD8_Scale = !if (!eq (OpEnc.Value, EncEVEX.Value),
298                            !if (CD8_Form{2},
299                                 !shl(CD8_EltSize, CD8_Form{1-0}),
300                                 !if (hasEVEX_B,
301                                      CD8_EltSize,
302                                      !srl(VectSize, CD8_Form{1-0}))), 0);
303
304   // TSFlags layout should be kept in sync with X86BaseInfo.h.
305   let TSFlags{6-0}   = FormBits;
306   let TSFlags{8-7}   = OpSizeBits;
307   let TSFlags{10-9}  = AdSizeBits;
308   let TSFlags{13-11} = OpPrefixBits;
309   let TSFlags{16-14} = OpMapBits;
310   let TSFlags{17}    = hasREX_WPrefix;
311   let TSFlags{21-18} = ImmT.Value;
312   let TSFlags{24-22} = FPForm.Value;
313   let TSFlags{25}    = hasLockPrefix;
314   let TSFlags{26}    = hasREPPrefix;
315   let TSFlags{28-27} = ExeDomain.Value;
316   let TSFlags{30-29} = OpEncBits;
317   let TSFlags{38-31} = Opcode;
318   let TSFlags{39}    = hasVEX_WPrefix;
319   let TSFlags{40}    = hasVEX_4V;
320   let TSFlags{41}    = hasVEX_4VOp3;
321   let TSFlags{42}    = hasVEX_i8ImmReg;
322   let TSFlags{43}    = hasVEX_L;
323   let TSFlags{44}    = ignoresVEX_L;
324   let TSFlags{45}    = hasEVEX_K;
325   let TSFlags{46}    = hasEVEX_Z;
326   let TSFlags{47}    = hasEVEX_L2;
327   let TSFlags{48}    = hasEVEX_B;
328   // If we run out of TSFlags bits, it's possible to encode this in 3 bits.
329   let TSFlags{55-49} = CD8_Scale;
330   let TSFlags{56}    = has3DNow0F0FOpcode;
331   let TSFlags{57}    = hasMemOp4Prefix;
332   let TSFlags{58}    = hasEVEX_RC;
333 }
334
335 class PseudoI<dag oops, dag iops, list<dag> pattern>
336   : X86Inst<0, Pseudo, NoImm, oops, iops, "", NoItinerary> {
337   let Pattern = pattern;
338 }
339
340 class I<bits<8> o, Format f, dag outs, dag ins, string asm,
341         list<dag> pattern, InstrItinClass itin = NoItinerary,
342         Domain d = GenericDomain>
343   : X86Inst<o, f, NoImm, outs, ins, asm, itin, d> {
344   let Pattern = pattern;
345   let CodeSize = 3;
346 }
347 class Ii8 <bits<8> o, Format f, dag outs, dag ins, string asm,
348            list<dag> pattern, InstrItinClass itin = NoItinerary,
349            Domain d = GenericDomain>
350   : X86Inst<o, f, Imm8, outs, ins, asm, itin, d> {
351   let Pattern = pattern;
352   let CodeSize = 3;
353 }
354 class Ii8PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
355                list<dag> pattern, InstrItinClass itin = NoItinerary>
356   : X86Inst<o, f, Imm8PCRel, outs, ins, asm, itin> {
357   let Pattern = pattern;
358   let CodeSize = 3;
359 }
360 class Ii16<bits<8> o, Format f, dag outs, dag ins, string asm,
361            list<dag> pattern, InstrItinClass itin = NoItinerary>
362   : X86Inst<o, f, Imm16, outs, ins, asm, itin> {
363   let Pattern = pattern;
364   let CodeSize = 3;
365 }
366 class Ii32<bits<8> o, Format f, dag outs, dag ins, string asm,
367            list<dag> pattern, InstrItinClass itin = NoItinerary>
368   : X86Inst<o, f, Imm32, outs, ins, asm, itin> {
369   let Pattern = pattern;
370   let CodeSize = 3;
371 }
372 class Ii32S<bits<8> o, Format f, dag outs, dag ins, string asm,
373             list<dag> pattern, InstrItinClass itin = NoItinerary>
374   : X86Inst<o, f, Imm32S, outs, ins, asm, itin> {
375   let Pattern = pattern;
376   let CodeSize = 3;
377 }
378
379 class Ii16PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
380            list<dag> pattern, InstrItinClass itin = NoItinerary>
381            : X86Inst<o, f, Imm16PCRel, outs, ins, asm, itin> {
382   let Pattern = pattern;
383   let CodeSize = 3;
384 }
385
386 class Ii32PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
387            list<dag> pattern, InstrItinClass itin = NoItinerary>
388   : X86Inst<o, f, Imm32PCRel, outs, ins, asm, itin> {
389   let Pattern = pattern;
390   let CodeSize = 3;
391 }
392
393 // FPStack Instruction Templates:
394 // FPI - Floating Point Instruction template.
395 class FPI<bits<8> o, Format F, dag outs, dag ins, string asm,
396           InstrItinClass itin = NoItinerary>
397   : I<o, F, outs, ins, asm, [], itin> {}
398
399 // FpI_ - Floating Point Pseudo Instruction template. Not Predicated.
400 class FpI_<dag outs, dag ins, FPFormat fp, list<dag> pattern,
401            InstrItinClass itin = NoItinerary>
402   : X86Inst<0, Pseudo, NoImm, outs, ins, "", itin> {
403   let FPForm = fp;
404   let Pattern = pattern;
405 }
406
407 // Templates for instructions that use a 16- or 32-bit segmented address as
408 //  their only operand: lcall (FAR CALL) and ljmp (FAR JMP)
409 //
410 //   Iseg16 - 16-bit segment selector, 16-bit offset
411 //   Iseg32 - 16-bit segment selector, 32-bit offset
412
413 class Iseg16 <bits<8> o, Format f, dag outs, dag ins, string asm,
414               list<dag> pattern, InstrItinClass itin = NoItinerary>
415       : X86Inst<o, f, Imm16, outs, ins, asm, itin> {
416   let Pattern = pattern;
417   let CodeSize = 3;
418 }
419
420 class Iseg32 <bits<8> o, Format f, dag outs, dag ins, string asm,
421               list<dag> pattern, InstrItinClass itin = NoItinerary>
422       : X86Inst<o, f, Imm32, outs, ins, asm, itin> {
423   let Pattern = pattern;
424   let CodeSize = 3;
425 }
426
427 // SI - SSE 1 & 2 scalar instructions
428 class SI<bits<8> o, Format F, dag outs, dag ins, string asm,
429          list<dag> pattern, InstrItinClass itin = NoItinerary,
430          Domain d = GenericDomain>
431       : I<o, F, outs, ins, asm, pattern, itin, d> {
432   let Predicates = !if(!eq(OpEnc.Value, EncEVEX.Value), [HasAVX512],
433                    !if(!eq(OpEnc.Value, EncVEX.Value), [UseAVX],
434                    !if(!eq(OpPrefix.Value, XS.Value), [UseSSE1],
435                    !if(!eq(OpPrefix.Value, XD.Value), [UseSSE2],
436                    !if(!eq(OpPrefix.Value, PD.Value), [UseSSE2],
437                    [UseSSE1])))));
438
439   // AVX instructions have a 'v' prefix in the mnemonic
440   let AsmString = !if(!eq(OpEnc.Value, EncEVEX.Value), !strconcat("v", asm),
441                   !if(!eq(OpEnc.Value, EncVEX.Value), !strconcat("v", asm),
442                   asm));
443 }
444
445 // SIi8 - SSE 1 & 2 scalar instructions
446 class SIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
447            list<dag> pattern, InstrItinClass itin = NoItinerary>
448       : Ii8<o, F, outs, ins, asm, pattern, itin> {
449   let Predicates = !if(!eq(OpEnc.Value, EncEVEX.Value), [HasAVX512],
450                    !if(!eq(OpEnc.Value, EncVEX.Value), [UseAVX],
451                    !if(!eq(OpPrefix.Value, XS.Value), [UseSSE1],
452                    [UseSSE2])));
453
454   // AVX instructions have a 'v' prefix in the mnemonic
455   let AsmString = !if(!eq(OpEnc.Value, EncEVEX.Value), !strconcat("v", asm),
456                   !if(!eq(OpEnc.Value, EncVEX.Value), !strconcat("v", asm),
457                   asm));
458 }
459
460 // PI - SSE 1 & 2 packed instructions
461 class PI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern,
462          InstrItinClass itin, Domain d>
463       : I<o, F, outs, ins, asm, pattern, itin, d> {
464   let Predicates = !if(!eq(OpEnc.Value, EncEVEX.Value), [HasAVX512],
465                    !if(!eq(OpEnc.Value, EncVEX.Value), [HasAVX],
466                    !if(!eq(OpPrefix.Value, PD.Value), [UseSSE2],
467                    [UseSSE1])));
468
469   // AVX instructions have a 'v' prefix in the mnemonic
470   let AsmString = !if(!eq(OpEnc.Value, EncEVEX.Value), !strconcat("v", asm),
471                   !if(!eq(OpEnc.Value, EncVEX.Value), !strconcat("v", asm),
472                   asm));
473 }
474
475 // MMXPI - SSE 1 & 2 packed instructions with MMX operands
476 class MMXPI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern,
477             InstrItinClass itin, Domain d>
478       : I<o, F, outs, ins, asm, pattern, itin, d> {
479   let Predicates = !if(!eq(OpPrefix.Value, PD.Value), [HasSSE2],
480                        [HasSSE1]);
481 }
482
483 // PIi8 - SSE 1 & 2 packed instructions with immediate
484 class PIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
485            list<dag> pattern, InstrItinClass itin, Domain d>
486       : Ii8<o, F, outs, ins, asm, pattern, itin, d> {
487   let Predicates = !if(!eq(OpEnc.Value, EncEVEX.Value), [HasAVX512],
488                    !if(!eq(OpEnc.Value, EncVEX.Value), [HasAVX],
489                    !if(!eq(OpPrefix.Value, PD.Value), [UseSSE2],
490                    [UseSSE1])));
491
492   // AVX instructions have a 'v' prefix in the mnemonic
493   let AsmString = !if(!eq(OpEnc.Value, EncEVEX.Value), !strconcat("v", asm),
494                   !if(!eq(OpEnc.Value, EncVEX.Value), !strconcat("v", asm),
495                   asm));
496 }
497
498 // SSE1 Instruction Templates:
499 //
500 //   SSI   - SSE1 instructions with XS prefix.
501 //   PSI   - SSE1 instructions with PS prefix.
502 //   PSIi8 - SSE1 instructions with ImmT == Imm8 and PS prefix.
503 //   VSSI  - SSE1 instructions with XS prefix in AVX form.
504 //   VPSI  - SSE1 instructions with PS prefix in AVX form, packed single.
505
506 class SSI<bits<8> o, Format F, dag outs, dag ins, string asm,
507           list<dag> pattern, InstrItinClass itin = NoItinerary>
508       : I<o, F, outs, ins, asm, pattern, itin>, XS, Requires<[UseSSE1]>;
509 class SSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
510             list<dag> pattern, InstrItinClass itin = NoItinerary>
511       : Ii8<o, F, outs, ins, asm, pattern, itin>, XS, Requires<[UseSSE1]>;
512 class PSI<bits<8> o, Format F, dag outs, dag ins, string asm,
513           list<dag> pattern, InstrItinClass itin = NoItinerary>
514       : I<o, F, outs, ins, asm, pattern, itin, SSEPackedSingle>, PS,
515         Requires<[UseSSE1]>;
516 class PSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
517             list<dag> pattern, InstrItinClass itin = NoItinerary>
518       : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedSingle>, PS,
519         Requires<[UseSSE1]>;
520 class VSSI<bits<8> o, Format F, dag outs, dag ins, string asm,
521            list<dag> pattern, InstrItinClass itin = NoItinerary>
522       : I<o, F, outs, ins, !strconcat("v", asm), pattern, itin>, XS,
523         Requires<[HasAVX]>;
524 class VPSI<bits<8> o, Format F, dag outs, dag ins, string asm,
525            list<dag> pattern, InstrItinClass itin = NoItinerary>
526       : I<o, F, outs, ins, !strconcat("v", asm), pattern, itin, SSEPackedSingle>, PS,
527         Requires<[HasAVX]>;
528
529 // SSE2 Instruction Templates:
530 //
531 //   SDI    - SSE2 instructions with XD prefix.
532 //   SDIi8  - SSE2 instructions with ImmT == Imm8 and XD prefix.
533 //   S2SI   - SSE2 instructions with XS prefix.
534 //   SSDIi8 - SSE2 instructions with ImmT == Imm8 and XS prefix.
535 //   PDI    - SSE2 instructions with PD prefix, packed double domain.
536 //   PDIi8  - SSE2 instructions with ImmT == Imm8 and PD prefix.
537 //   VSDI   - SSE2 scalar instructions with XD prefix in AVX form.
538 //   VPDI   - SSE2 vector instructions with PD prefix in AVX form,
539 //                 packed double domain.
540 //   VS2I   - SSE2 scalar instructions with PD prefix in AVX form.
541 //   S2I    - SSE2 scalar instructions with PD prefix.
542 //   MMXSDIi8  - SSE2 instructions with ImmT == Imm8 and XD prefix as well as
543 //               MMX operands.
544 //   MMXSSDIi8 - SSE2 instructions with ImmT == Imm8 and XS prefix as well as
545 //               MMX operands.
546
547 class SDI<bits<8> o, Format F, dag outs, dag ins, string asm,
548           list<dag> pattern, InstrItinClass itin = NoItinerary>
549       : I<o, F, outs, ins, asm, pattern, itin>, XD, Requires<[UseSSE2]>;
550 class SDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
551             list<dag> pattern, InstrItinClass itin = NoItinerary>
552       : Ii8<o, F, outs, ins, asm, pattern, itin>, XD, Requires<[UseSSE2]>;
553 class S2SI<bits<8> o, Format F, dag outs, dag ins, string asm,
554            list<dag> pattern, InstrItinClass itin = NoItinerary>
555       : I<o, F, outs, ins, asm, pattern, itin>, XS, Requires<[UseSSE2]>;
556 class S2SIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
557              list<dag> pattern, InstrItinClass itin = NoItinerary>
558       : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[UseSSE2]>;
559 class PDI<bits<8> o, Format F, dag outs, dag ins, string asm,
560           list<dag> pattern, InstrItinClass itin = NoItinerary>
561       : I<o, F, outs, ins, asm, pattern, itin, SSEPackedDouble>, PD,
562         Requires<[UseSSE2]>;
563 class PDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
564             list<dag> pattern, InstrItinClass itin = NoItinerary>
565       : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedDouble>, PD,
566         Requires<[UseSSE2]>;
567 class VSDI<bits<8> o, Format F, dag outs, dag ins, string asm,
568            list<dag> pattern, InstrItinClass itin = NoItinerary>
569       : I<o, F, outs, ins, !strconcat("v", asm), pattern, itin>, XD,
570         Requires<[UseAVX]>;
571 class VS2SI<bits<8> o, Format F, dag outs, dag ins, string asm,
572             list<dag> pattern, InstrItinClass itin = NoItinerary>
573       : I<o, F, outs, ins, !strconcat("v", asm), pattern, itin>, XS,
574         Requires<[HasAVX]>;
575 class VPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
576            list<dag> pattern, InstrItinClass itin = NoItinerary>
577       : I<o, F, outs, ins, !strconcat("v", asm), pattern, itin, SSEPackedDouble>,
578         PD, Requires<[HasAVX]>;
579 class VS2I<bits<8> o, Format F, dag outs, dag ins, string asm,
580            list<dag> pattern, InstrItinClass itin = NoItinerary>
581       : I<o, F, outs, ins, !strconcat("v", asm), pattern, itin>, PD,
582         Requires<[UseAVX]>;
583 class S2I<bits<8> o, Format F, dag outs, dag ins, string asm,
584            list<dag> pattern, InstrItinClass itin = NoItinerary>
585       : I<o, F, outs, ins, asm, pattern, itin>, PD, Requires<[UseSSE2]>;
586 class MMXSDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
587                list<dag> pattern, InstrItinClass itin = NoItinerary>
588       : Ii8<o, F, outs, ins, asm, pattern, itin>, XD, Requires<[HasSSE2]>;
589 class MMXS2SIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
590                 list<dag> pattern, InstrItinClass itin = NoItinerary>
591       : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE2]>;
592
593 // SSE3 Instruction Templates:
594 //
595 //   S3I   - SSE3 instructions with PD prefixes.
596 //   S3SI  - SSE3 instructions with XS prefix.
597 //   S3DI  - SSE3 instructions with XD prefix.
598
599 class S3SI<bits<8> o, Format F, dag outs, dag ins, string asm,
600            list<dag> pattern, InstrItinClass itin = NoItinerary>
601       : I<o, F, outs, ins, asm, pattern, itin, SSEPackedSingle>, XS,
602         Requires<[UseSSE3]>;
603 class S3DI<bits<8> o, Format F, dag outs, dag ins, string asm,
604            list<dag> pattern, InstrItinClass itin = NoItinerary>
605       : I<o, F, outs, ins, asm, pattern, itin, SSEPackedDouble>, XD,
606         Requires<[UseSSE3]>;
607 class S3I<bits<8> o, Format F, dag outs, dag ins, string asm,
608           list<dag> pattern, InstrItinClass itin = NoItinerary>
609       : I<o, F, outs, ins, asm, pattern, itin, SSEPackedDouble>, PD,
610         Requires<[UseSSE3]>;
611
612
613 // SSSE3 Instruction Templates:
614 //
615 //   SS38I - SSSE3 instructions with T8 prefix.
616 //   SS3AI - SSSE3 instructions with TA prefix.
617 //   MMXSS38I - SSSE3 instructions with T8 prefix and MMX operands.
618 //   MMXSS3AI - SSSE3 instructions with TA prefix and MMX operands.
619 //
620 // Note: SSSE3 instructions have 64-bit and 128-bit versions. The 64-bit version
621 // uses the MMX registers. The 64-bit versions are grouped with the MMX
622 // classes. They need to be enabled even if AVX is enabled.
623
624 class SS38I<bits<8> o, Format F, dag outs, dag ins, string asm,
625             list<dag> pattern, InstrItinClass itin = NoItinerary>
626       : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PD,
627         Requires<[UseSSSE3]>;
628 class SS3AI<bits<8> o, Format F, dag outs, dag ins, string asm,
629             list<dag> pattern, InstrItinClass itin = NoItinerary>
630       : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
631         Requires<[UseSSSE3]>;
632 class MMXSS38I<bits<8> o, Format F, dag outs, dag ins, string asm,
633                list<dag> pattern, InstrItinClass itin = NoItinerary>
634       : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PS,
635         Requires<[HasSSSE3]>;
636 class MMXSS3AI<bits<8> o, Format F, dag outs, dag ins, string asm,
637                list<dag> pattern, InstrItinClass itin = NoItinerary>
638       : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPS,
639         Requires<[HasSSSE3]>;
640
641 // SSE4.1 Instruction Templates:
642 //
643 //   SS48I - SSE 4.1 instructions with T8 prefix.
644 //   SS41AIi8 - SSE 4.1 instructions with TA prefix and ImmT == Imm8.
645 //
646 class SS48I<bits<8> o, Format F, dag outs, dag ins, string asm,
647             list<dag> pattern, InstrItinClass itin = NoItinerary>
648       : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PD,
649         Requires<[UseSSE41]>;
650 class SS4AIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
651             list<dag> pattern, InstrItinClass itin = NoItinerary>
652       : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
653         Requires<[UseSSE41]>;
654
655 // SSE4.2 Instruction Templates:
656 //
657 //   SS428I - SSE 4.2 instructions with T8 prefix.
658 class SS428I<bits<8> o, Format F, dag outs, dag ins, string asm,
659              list<dag> pattern, InstrItinClass itin = NoItinerary>
660       : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PD,
661         Requires<[UseSSE42]>;
662
663 //   SS42FI - SSE 4.2 instructions with T8XD prefix.
664 // NOTE: 'HasSSE42' is used as SS42FI is only used for CRC32 insns.
665 class SS42FI<bits<8> o, Format F, dag outs, dag ins, string asm,
666              list<dag> pattern, InstrItinClass itin = NoItinerary>
667       : I<o, F, outs, ins, asm, pattern, itin>, T8XD, Requires<[HasSSE42]>;
668
669 //   SS42AI = SSE 4.2 instructions with TA prefix
670 class SS42AI<bits<8> o, Format F, dag outs, dag ins, string asm,
671              list<dag> pattern, InstrItinClass itin = NoItinerary>
672       : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
673         Requires<[UseSSE42]>;
674
675 // AVX Instruction Templates:
676 //   Instructions introduced in AVX (no SSE equivalent forms)
677 //
678 //   AVX8I - AVX instructions with T8PD prefix.
679 //   AVXAIi8 - AVX instructions with TAPD prefix and ImmT = Imm8.
680 class AVX8I<bits<8> o, Format F, dag outs, dag ins, string asm,
681             list<dag> pattern, InstrItinClass itin = NoItinerary>
682       : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PD,
683         Requires<[HasAVX]>;
684 class AVXAIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
685               list<dag> pattern, InstrItinClass itin = NoItinerary>
686       : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
687         Requires<[HasAVX]>;
688
689 // AVX2 Instruction Templates:
690 //   Instructions introduced in AVX2 (no SSE equivalent forms)
691 //
692 //   AVX28I - AVX2 instructions with T8PD prefix.
693 //   AVX2AIi8 - AVX2 instructions with TAPD prefix and ImmT = Imm8.
694 class AVX28I<bits<8> o, Format F, dag outs, dag ins, string asm,
695             list<dag> pattern, InstrItinClass itin = NoItinerary>
696       : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PD,
697         Requires<[HasAVX2]>;
698 class AVX2AIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
699               list<dag> pattern, InstrItinClass itin = NoItinerary>
700       : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
701         Requires<[HasAVX2]>;
702
703
704 // AVX-512 Instruction Templates:
705 //   Instructions introduced in AVX-512 (no SSE equivalent forms)
706 //
707 //   AVX5128I - AVX-512 instructions with T8PD prefix.
708 //   AVX512AIi8 - AVX-512 instructions with TAPD prefix and ImmT = Imm8.
709 //   AVX512PDI  - AVX-512 instructions with PD, double packed.
710 //   AVX512PSI  - AVX-512 instructions with PS, single packed.
711 //   AVX512XS8I - AVX-512 instructions with T8 and XS prefixes.
712 //   AVX512XSI  - AVX-512 instructions with XS prefix, generic domain.
713 //   AVX512BI   - AVX-512 instructions with PD, int packed domain.
714 //   AVX512SI   - AVX-512 scalar instructions with PD prefix.
715
716 class AVX5128I<bits<8> o, Format F, dag outs, dag ins, string asm,
717             list<dag> pattern, InstrItinClass itin = NoItinerary>
718       : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PD,
719         Requires<[HasAVX512]>;
720 class AVX5128IBase : T8PD {
721   Domain ExeDomain = SSEPackedInt;
722 }
723 class AVX512XS8I<bits<8> o, Format F, dag outs, dag ins, string asm,
724             list<dag> pattern, InstrItinClass itin = NoItinerary>
725       : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8XS,
726         Requires<[HasAVX512]>;
727 class AVX512XSI<bits<8> o, Format F, dag outs, dag ins, string asm,
728             list<dag> pattern, InstrItinClass itin = NoItinerary>
729       : I<o, F, outs, ins, asm, pattern, itin>, XS,
730         Requires<[HasAVX512]>;
731 class AVX512XDI<bits<8> o, Format F, dag outs, dag ins, string asm,
732             list<dag> pattern, InstrItinClass itin = NoItinerary>
733       : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, XD,
734         Requires<[HasAVX512]>;
735 class AVX512BI<bits<8> o, Format F, dag outs, dag ins, string asm,
736             list<dag> pattern, InstrItinClass itin = NoItinerary>
737       : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, PD,
738         Requires<[HasAVX512]>;
739 class AVX512BIBase : PD {
740   Domain ExeDomain = SSEPackedInt;
741 }
742 class AVX512BIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
743               list<dag> pattern, InstrItinClass itin = NoItinerary>
744       : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, PD,
745         Requires<[HasAVX512]>;
746 class AVX512BIi8Base : PD {
747   Domain ExeDomain = SSEPackedInt;
748   ImmType ImmT = Imm8;
749 }
750 class AVX512AIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
751               list<dag> pattern, InstrItinClass itin = NoItinerary>
752       : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
753         Requires<[HasAVX512]>;
754 class AVX512AIi8Base : TAPD {
755   Domain ExeDomain = SSEPackedInt;
756   ImmType ImmT = Imm8;
757 }
758 class AVX512Ii8<bits<8> o, Format F, dag outs, dag ins, string asm,
759               list<dag> pattern, InstrItinClass itin = NoItinerary>
760       : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>,
761         Requires<[HasAVX512]>;
762 class AVX512PDI<bits<8> o, Format F, dag outs, dag ins, string asm,
763            list<dag> pattern, InstrItinClass itin = NoItinerary>
764       : I<o, F, outs, ins, asm, pattern, itin, SSEPackedDouble>, PD,
765         Requires<[HasAVX512]>;
766 class AVX512PSI<bits<8> o, Format F, dag outs, dag ins, string asm,
767            list<dag> pattern, InstrItinClass itin = NoItinerary>
768       : I<o, F, outs, ins, asm, pattern, itin, SSEPackedSingle>, PS,
769         Requires<[HasAVX512]>;
770 class AVX512PIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
771               list<dag> pattern, Domain d, InstrItinClass itin = NoItinerary>
772       : Ii8<o, F, outs, ins, asm, pattern, itin, d>, Requires<[HasAVX512]>;
773 class AVX512PI<bits<8> o, Format F, dag outs, dag ins, string asm,
774               list<dag> pattern, Domain d, InstrItinClass itin = NoItinerary>
775       : I<o, F, outs, ins, asm, pattern, itin, d>, Requires<[HasAVX512]>;
776 class AVX512FMA3<bits<8> o, Format F, dag outs, dag ins, string asm,
777            list<dag>pattern, InstrItinClass itin = NoItinerary>
778       : I<o, F, outs, ins, asm, pattern, itin>, T8PD,
779         EVEX_4V, Requires<[HasAVX512]>;
780 class AVX512FMA3Base : T8PD, EVEX_4V;
781
782 class AVX512<bits<8> o, Format F, dag outs, dag ins, string asm,
783            list<dag>pattern, InstrItinClass itin = NoItinerary>
784       : I<o, F, outs, ins, asm, pattern, itin>, Requires<[HasAVX512]>;
785
786 // AES Instruction Templates:
787 //
788 // AES8I
789 // These use the same encoding as the SSE4.2 T8 and TA encodings.
790 class AES8I<bits<8> o, Format F, dag outs, dag ins, string asm,
791             list<dag>pattern, InstrItinClass itin = IIC_AES>
792       : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PD,
793         Requires<[HasAES]>;
794
795 class AESAI<bits<8> o, Format F, dag outs, dag ins, string asm,
796             list<dag> pattern, InstrItinClass itin = NoItinerary>
797       : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
798         Requires<[HasAES]>;
799
800 // PCLMUL Instruction Templates
801 class PCLMULIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
802                list<dag>pattern, InstrItinClass itin = NoItinerary>
803       : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
804         Requires<[HasPCLMUL]>;
805
806 class AVXPCLMULIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
807                   list<dag>pattern, InstrItinClass itin = NoItinerary>
808       : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
809         VEX_4V, Requires<[HasAVX, HasPCLMUL]>;
810
811 // FMA3 Instruction Templates
812 class FMA3<bits<8> o, Format F, dag outs, dag ins, string asm,
813            list<dag>pattern, InstrItinClass itin = NoItinerary>
814       : I<o, F, outs, ins, asm, pattern, itin>, T8PD,
815         VEX_4V, FMASC, Requires<[HasFMA]>;
816
817 // FMA4 Instruction Templates
818 class FMA4<bits<8> o, Format F, dag outs, dag ins, string asm,
819            list<dag>pattern, InstrItinClass itin = NoItinerary>
820       : Ii8<o, F, outs, ins, asm, pattern, itin>, TAPD,
821         VEX_4V, VEX_I8IMM, FMASC, Requires<[HasFMA4]>;
822
823 // XOP 2, 3 and 4 Operand Instruction Template
824 class IXOP<bits<8> o, Format F, dag outs, dag ins, string asm,
825            list<dag> pattern, InstrItinClass itin = NoItinerary>
826       : I<o, F, outs, ins, asm, pattern, itin, SSEPackedDouble>,
827          XOP9, Requires<[HasXOP]>;
828
829 // XOP 2, 3 and 4 Operand Instruction Templates with imm byte
830 class IXOPi8<bits<8> o, Format F, dag outs, dag ins, string asm,
831            list<dag> pattern, InstrItinClass itin = NoItinerary>
832       : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedDouble>,
833          XOP8, Requires<[HasXOP]>;
834
835 //  XOP 5 operand instruction (VEX encoding!)
836 class IXOP5<bits<8> o, Format F, dag outs, dag ins, string asm,
837            list<dag>pattern, InstrItinClass itin = NoItinerary>
838       : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
839         VEX_4V, VEX_I8IMM, Requires<[HasXOP]>;
840
841 // X86-64 Instruction templates...
842 //
843
844 class RI<bits<8> o, Format F, dag outs, dag ins, string asm,
845          list<dag> pattern, InstrItinClass itin = NoItinerary>
846       : I<o, F, outs, ins, asm, pattern, itin>, REX_W;
847 class RIi8 <bits<8> o, Format F, dag outs, dag ins, string asm,
848             list<dag> pattern, InstrItinClass itin = NoItinerary>
849       : Ii8<o, F, outs, ins, asm, pattern, itin>, REX_W;
850 class RIi16 <bits<8> o, Format F, dag outs, dag ins, string asm,
851             list<dag> pattern, InstrItinClass itin = NoItinerary>
852       : Ii16<o, F, outs, ins, asm, pattern, itin>, REX_W;
853 class RIi32 <bits<8> o, Format F, dag outs, dag ins, string asm,
854              list<dag> pattern, InstrItinClass itin = NoItinerary>
855       : Ii32<o, F, outs, ins, asm, pattern, itin>, REX_W;
856 class RIi32S <bits<8> o, Format F, dag outs, dag ins, string asm,
857               list<dag> pattern, InstrItinClass itin = NoItinerary>
858       : Ii32S<o, F, outs, ins, asm, pattern, itin>, REX_W;
859
860 class RIi64<bits<8> o, Format f, dag outs, dag ins, string asm,
861             list<dag> pattern, InstrItinClass itin = NoItinerary>
862   : X86Inst<o, f, Imm64, outs, ins, asm, itin>, REX_W {
863   let Pattern = pattern;
864   let CodeSize = 3;
865 }
866
867 class RIi64_NOREX<bits<8> o, Format f, dag outs, dag ins, string asm,
868             list<dag> pattern, InstrItinClass itin = NoItinerary>
869   : X86Inst<o, f, Imm64, outs, ins, asm, itin> {
870   let Pattern = pattern;
871   let CodeSize = 3;
872 }
873
874 class RS2I<bits<8> o, Format F, dag outs, dag ins, string asm,
875            list<dag> pattern, InstrItinClass itin = NoItinerary>
876       : S2I<o, F, outs, ins, asm, pattern, itin>, REX_W;
877 class VRS2I<bits<8> o, Format F, dag outs, dag ins, string asm,
878            list<dag> pattern, InstrItinClass itin = NoItinerary>
879       : VS2I<o, F, outs, ins, asm, pattern, itin>, VEX_W;
880
881 // MMX Instruction templates
882 //
883
884 // MMXI   - MMX instructions with TB prefix.
885 // MMXI32 - MMX instructions with TB prefix valid only in 32 bit mode.
886 // MMXI64 - MMX instructions with TB prefix valid only in 64 bit mode.
887 // MMX2I  - MMX / SSE2 instructions with PD prefix.
888 // MMXIi8 - MMX instructions with ImmT == Imm8 and PS prefix.
889 // MMXIi8 - MMX instructions with ImmT == Imm8 and PS prefix.
890 // MMXID  - MMX instructions with XD prefix.
891 // MMXIS  - MMX instructions with XS prefix.
892 class MMXI<bits<8> o, Format F, dag outs, dag ins, string asm,
893            list<dag> pattern, InstrItinClass itin = NoItinerary>
894       : I<o, F, outs, ins, asm, pattern, itin>, PS, Requires<[HasMMX]>;
895 class MMXI32<bits<8> o, Format F, dag outs, dag ins, string asm,
896              list<dag> pattern, InstrItinClass itin = NoItinerary>
897       : I<o, F, outs, ins, asm, pattern, itin>, PS, Requires<[HasMMX,Not64BitMode]>;
898 class MMXI64<bits<8> o, Format F, dag outs, dag ins, string asm,
899              list<dag> pattern, InstrItinClass itin = NoItinerary>
900       : I<o, F, outs, ins, asm, pattern, itin>, PS, Requires<[HasMMX,In64BitMode]>;
901 class MMXRI<bits<8> o, Format F, dag outs, dag ins, string asm,
902             list<dag> pattern, InstrItinClass itin = NoItinerary>
903       : I<o, F, outs, ins, asm, pattern, itin>, PS, REX_W, Requires<[HasMMX]>;
904 class MMX2I<bits<8> o, Format F, dag outs, dag ins, string asm,
905             list<dag> pattern, InstrItinClass itin = NoItinerary>
906       : I<o, F, outs, ins, asm, pattern, itin>, PD, Requires<[HasMMX]>;
907 class MMXIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
908              list<dag> pattern, InstrItinClass itin = NoItinerary>
909       : Ii8<o, F, outs, ins, asm, pattern, itin>, PS, Requires<[HasMMX]>;
910 class MMXID<bits<8> o, Format F, dag outs, dag ins, string asm,
911             list<dag> pattern, InstrItinClass itin = NoItinerary>
912       : Ii8<o, F, outs, ins, asm, pattern, itin>, XD, Requires<[HasMMX]>;
913 class MMXIS<bits<8> o, Format F, dag outs, dag ins, string asm,
914             list<dag> pattern, InstrItinClass itin = NoItinerary>
915       : Ii8<o, F, outs, ins, asm, pattern, itin>, XS, Requires<[HasMMX]>;