blob: ab6d2885fb3a2dfb322dbaa4476981c46b5fadbf [file] [log] [blame]
Jia Liub22310f2012-02-18 12:03:15 +00001//===-- X86InstrFormats.td - X86 Instruction Formats -------*- tablegen -*-===//
2//
Evan Cheng12c6be82007-07-31 08:04:03 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Jia Liub22310f2012-02-18 12:03:15 +00007//
Evan Cheng12c6be82007-07-31 08:04:03 +00008//===----------------------------------------------------------------------===//
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.
Craig Topper56f0ed812014-02-19 08:25:02 +000017class Format<bits<7> val> {
18 bits<7> Value = val;
Evan Cheng12c6be82007-07-31 08:04:03 +000019}
20
21def Pseudo : Format<0>; def RawFrm : Format<1>;
22def AddRegFrm : Format<2>; def MRMDestReg : Format<3>;
23def MRMDestMem : Format<4>; def MRMSrcReg : Format<5>;
Craig Topper35da3d12014-01-16 07:36:58 +000024def MRMSrcMem : Format<6>; def RawFrmMemOffs : Format<7>;
David Woodhouseb33c2ef2014-01-22 15:08:21 +000025def RawFrmSrc : Format<8>; def RawFrmDst : Format<9>;
David Woodhouse9bbf7ca2014-01-22 15:08:36 +000026def RawFrmDstSrc: Format<10>;
Craig Topper2fb696b2014-02-19 06:59:13 +000027def RawFrmImm8 : Format<11>;
28def RawFrmImm16 : Format<12>;
Craig Toppera0869dc2014-02-10 06:55:41 +000029def MRMXr : Format<14>; def MRMXm : Format<15>;
Evan Cheng12c6be82007-07-31 08:04:03 +000030def MRM0r : Format<16>; def MRM1r : Format<17>; def MRM2r : Format<18>;
31def MRM3r : Format<19>; def MRM4r : Format<20>; def MRM5r : Format<21>;
32def MRM6r : Format<22>; def MRM7r : Format<23>;
33def MRM0m : Format<24>; def MRM1m : Format<25>; def MRM2m : Format<26>;
34def MRM3m : Format<27>; def MRM4m : Format<28>; def MRM5m : Format<29>;
35def MRM6m : Format<30>; def MRM7m : Format<31>;
Craig Topper56f0ed812014-02-19 08:25:02 +000036def MRM_C0 : Format<32>; def MRM_C1 : Format<33>; def MRM_C2 : Format<34>;
37def MRM_C3 : Format<35>; def MRM_C4 : Format<36>; def MRM_C8 : Format<37>;
38def MRM_C9 : Format<38>; def MRM_CA : Format<39>; def MRM_CB : Format<40>;
39def MRM_D0 : Format<41>; def MRM_D1 : Format<42>; def MRM_D4 : Format<43>;
40def MRM_D5 : Format<44>; def MRM_D6 : Format<45>; def MRM_D8 : Format<46>;
41def MRM_D9 : Format<47>; def MRM_DA : Format<48>; def MRM_DB : Format<49>;
42def MRM_DC : Format<50>; def MRM_DD : Format<51>; def MRM_DE : Format<52>;
43def MRM_DF : Format<53>; def MRM_E0 : Format<54>; def MRM_E1 : Format<55>;
44def MRM_E2 : Format<56>; def MRM_E3 : Format<57>; def MRM_E4 : Format<58>;
45def MRM_E5 : Format<59>; def MRM_E8 : Format<60>; def MRM_E9 : Format<61>;
46def MRM_EA : Format<62>; def MRM_EB : Format<63>; def MRM_EC : Format<64>;
47def MRM_ED : Format<65>; def MRM_EE : Format<66>; def MRM_F0 : Format<67>;
48def MRM_F1 : Format<68>; def MRM_F2 : Format<69>; def MRM_F3 : Format<70>;
49def MRM_F4 : Format<71>; def MRM_F5 : Format<72>; def MRM_F6 : Format<73>;
50def MRM_F7 : Format<74>; def MRM_F8 : Format<75>; def MRM_F9 : Format<76>;
51def MRM_FA : Format<77>; def MRM_FB : Format<78>; def MRM_FC : Format<79>;
52def MRM_FD : Format<80>; def MRM_FE : Format<81>; def MRM_FF : Format<82>;
Evan Cheng12c6be82007-07-31 08:04:03 +000053
54// ImmType - This specifies the immediate type used by an instruction. This is
55// part of the ad-hoc solution used to emit machine instruction encodings by our
56// machine code emitter.
David Woodhouse0b6c9492014-01-30 22:20:41 +000057class ImmType<bits<4> val> {
58 bits<4> Value = val;
Evan Cheng12c6be82007-07-31 08:04:03 +000059}
Chris Lattner12455ca2010-02-12 22:27:07 +000060def NoImm : ImmType<0>;
61def Imm8 : ImmType<1>;
62def Imm8PCRel : ImmType<2>;
63def Imm16 : ImmType<3>;
Chris Lattnerac588122010-07-07 22:27:31 +000064def Imm16PCRel : ImmType<4>;
65def Imm32 : ImmType<5>;
66def Imm32PCRel : ImmType<6>;
David Woodhouse0b6c9492014-01-30 22:20:41 +000067def Imm32S : ImmType<7>;
68def Imm64 : ImmType<8>;
Evan Cheng12c6be82007-07-31 08:04:03 +000069
70// FPFormat - This specifies what form this FP instruction has. This is used by
71// the Floating-Point stackifier pass.
72class FPFormat<bits<3> val> {
73 bits<3> Value = val;
74}
75def NotFP : FPFormat<0>;
76def ZeroArgFP : FPFormat<1>;
77def OneArgFP : FPFormat<2>;
78def OneArgFPRW : FPFormat<3>;
79def TwoArgFP : FPFormat<4>;
80def CompareFP : FPFormat<5>;
81def CondMovFP : FPFormat<6>;
82def SpecialFP : FPFormat<7>;
83
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000084// Class specifying the SSE execution domain, used by the SSEDomainFix pass.
Jakob Stoklund Olesendbff4e82010-03-30 22:46:53 +000085// Keep in sync with tables in X86InstrInfo.cpp.
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000086class Domain<bits<2> val> {
87 bits<2> Value = val;
88}
89def GenericDomain : Domain<0>;
Jakob Stoklund Olesendbff4e82010-03-30 22:46:53 +000090def SSEPackedSingle : Domain<1>;
91def SSEPackedDouble : Domain<2>;
92def SSEPackedInt : Domain<3>;
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000093
Elena Demikhovsky003e7d72013-07-28 08:28:38 +000094// Class specifying the vector form of the decompressed
95// displacement of 8-bit.
96class CD8VForm<bits<3> val> {
97 bits<3> Value = val;
98}
99def CD8VF : CD8VForm<0>; // v := VL
100def CD8VH : CD8VForm<1>; // v := VL/2
101def CD8VQ : CD8VForm<2>; // v := VL/4
102def CD8VO : CD8VForm<3>; // v := VL/8
103def CD8VT1 : CD8VForm<4>; // v := 1
104def CD8VT2 : CD8VForm<5>; // v := 2
105def CD8VT4 : CD8VForm<6>; // v := 4
106def CD8VT8 : CD8VForm<7>; // v := 8
107
Craig Topper10243c82014-01-31 08:47:06 +0000108// Class specifying the prefix used an opcode extension.
Craig Topper5ccb6172014-02-18 00:21:49 +0000109class Prefix<bits<3> val> {
110 bits<3> Value = val;
Craig Topper10243c82014-01-31 08:47:06 +0000111}
112def NoPrfx : Prefix<0>;
Craig Topper5ccb6172014-02-18 00:21:49 +0000113def PS : Prefix<1>;
114def PD : Prefix<2>;
115def XS : Prefix<3>;
116def XD : Prefix<4>;
Craig Topper10243c82014-01-31 08:47:06 +0000117
118// Class specifying the opcode map.
Craig Topper56f0ed812014-02-19 08:25:02 +0000119class Map<bits<3> val> {
120 bits<3> Value = val;
Craig Topper10243c82014-01-31 08:47:06 +0000121}
122def OB : Map<0>;
123def TB : Map<1>;
124def T8 : Map<2>;
125def TA : Map<3>;
126def XOP8 : Map<4>;
127def XOP9 : Map<5>;
128def XOPA : Map<6>;
Craig Topper10243c82014-01-31 08:47:06 +0000129
Craig Topperd402df32014-02-02 07:08:01 +0000130// Class specifying the encoding
131class Encoding<bits<2> val> {
132 bits<2> Value = val;
133}
134def EncNormal : Encoding<0>;
135def EncVEX : Encoding<1>;
136def EncXOP : Encoding<2>;
137def EncEVEX : Encoding<3>;
138
Craig Topperfa6298a2014-02-02 09:25:09 +0000139// Operand size for encodings that change based on mode.
140class OperandSize<bits<2> val> {
141 bits<2> Value = val;
142}
143def OpSizeFixed : OperandSize<0>; // Never needs a 0x66 prefix.
144def OpSize16 : OperandSize<1>; // Needs 0x66 prefix in 32-bit mode.
145def OpSize32 : OperandSize<2>; // Needs 0x66 prefix in 16-bit mode.
146
Evan Cheng12c6be82007-07-31 08:04:03 +0000147// Prefix byte classes which are used to indicate to the ad-hoc machine code
148// emitter that various prefix bytes are required.
Craig Topperfa6298a2014-02-02 09:25:09 +0000149class OpSize16 { OperandSize OpSize = OpSize16; }
150class OpSize32 { OperandSize OpSize = OpSize32; }
Evan Cheng12c6be82007-07-31 08:04:03 +0000151class AdSize { bit hasAdSizePrefix = 1; }
152class REX_W { bit hasREX_WPrefix = 1; }
Andrew Lenharth0070dd12008-03-01 13:37:02 +0000153class LOCK { bit hasLockPrefix = 1; }
Craig Topperec688662014-01-31 07:00:55 +0000154class REP { bit hasREPPrefix = 1; }
Craig Topperda7160d2014-02-01 08:17:56 +0000155class TB { Map OpMap = TB; }
Craig Topper10243c82014-01-31 08:47:06 +0000156class T8 { Map OpMap = T8; }
157class TA { Map OpMap = TA; }
Craig Topper5ccb6172014-02-18 00:21:49 +0000158class XOP8 { Map OpMap = XOP8; Prefix OpPrefix = PS; }
159class XOP9 { Map OpMap = XOP9; Prefix OpPrefix = PS; }
160class XOPA { Map OpMap = XOPA; Prefix OpPrefix = PS; }
Craig Toppere2347df2014-02-20 07:59:43 +0000161class OBXS { Prefix OpPrefix = XS; }
Craig Topper5ccb6172014-02-18 00:21:49 +0000162class PS : TB { Prefix OpPrefix = PS; }
Craig Topperda7160d2014-02-01 08:17:56 +0000163class PD : TB { Prefix OpPrefix = PD; }
164class XD : TB { Prefix OpPrefix = XD; }
165class XS : TB { Prefix OpPrefix = XS; }
Craig Topper5ccb6172014-02-18 00:21:49 +0000166class T8PS : T8 { Prefix OpPrefix = PS; }
Craig Topperda7160d2014-02-01 08:17:56 +0000167class T8PD : T8 { Prefix OpPrefix = PD; }
168class T8XD : T8 { Prefix OpPrefix = XD; }
169class T8XS : T8 { Prefix OpPrefix = XS; }
Craig Topper5ccb6172014-02-18 00:21:49 +0000170class TAPS : TA { Prefix OpPrefix = PS; }
Craig Topperda7160d2014-02-01 08:17:56 +0000171class TAPD : TA { Prefix OpPrefix = PD; }
172class TAXD : TA { Prefix OpPrefix = XD; }
Craig Topperd402df32014-02-02 07:08:01 +0000173class VEX { Encoding OpEnc = EncVEX; }
Bruno Cardoso Lopes05166742010-07-01 01:20:06 +0000174class VEX_W { bit hasVEX_WPrefix = 1; }
Craig Topperd402df32014-02-02 07:08:01 +0000175class VEX_4V : VEX { bit hasVEX_4V = 1; }
176class VEX_4VOp3 : VEX { bit hasVEX_4VOp3 = 1; }
Bruno Cardoso Lopese2bd0582010-07-06 22:36:24 +0000177class VEX_I8IMM { bit hasVEX_i8ImmReg = 1; }
Bruno Cardoso Lopesfd8bfcd2010-07-13 21:07:28 +0000178class VEX_L { bit hasVEX_L = 1; }
Craig Topperf18c8962011-10-04 06:30:42 +0000179class VEX_LIG { bit ignoresVEX_L = 1; }
Craig Topperd402df32014-02-02 07:08:01 +0000180class EVEX : VEX { Encoding OpEnc = EncEVEX; }
181class EVEX_4V : VEX_4V { Encoding OpEnc = EncEVEX; }
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000182class EVEX_K { bit hasEVEX_K = 1; }
183class EVEX_KZ : EVEX_K { bit hasEVEX_Z = 1; }
184class EVEX_B { bit hasEVEX_B = 1; }
Elena Demikhovskyb19c9dc2014-01-13 12:55:03 +0000185class EVEX_RC { bit hasEVEX_RC = 1; }
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000186class EVEX_V512 { bit hasEVEX_L2 = 1; bit hasVEX_L = 0; }
Adam Nemet4dc92b92014-07-17 17:04:34 +0000187
188// Specify AVX512 8-bit compressed displacement encoding based on the vector
189// element size in bits (8, 16, 32, 64) and the CDisp8 form.
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000190class EVEX_CD8<int esize, CD8VForm form> {
Adam Nemet4dc92b92014-07-17 17:04:34 +0000191 int CD8_EltSize = !srl(esize, 3);
Adam Nemet4c339ab2014-07-17 17:04:52 +0000192 bits<3> CD8_Form = form.Value;
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000193}
Adam Nemet4dc92b92014-07-17 17:04:34 +0000194
Chris Lattner45270db2010-10-03 18:08:05 +0000195class Has3DNow0F0FOpcode { bit has3DNow0F0FOpcode = 1; }
Craig Toppercd93de92011-12-30 04:48:54 +0000196class MemOp4 { bit hasMemOp4Prefix = 1; }
Craig Topperd402df32014-02-02 07:08:01 +0000197class XOP { Encoding OpEnc = EncXOP; }
198class XOP_4V : XOP { bit hasVEX_4V = 1; }
199class XOP_4VOp3 : XOP { bit hasVEX_4VOp3 = 1; }
200
Evan Cheng12c6be82007-07-31 08:04:03 +0000201class X86Inst<bits<8> opcod, Format f, ImmType i, dag outs, dag ins,
Andrew Trick8523b162012-02-01 23:20:51 +0000202 string AsmStr,
203 InstrItinClass itin,
204 Domain d = GenericDomain>
Evan Cheng12c6be82007-07-31 08:04:03 +0000205 : Instruction {
206 let Namespace = "X86";
207
208 bits<8> Opcode = opcod;
209 Format Form = f;
Craig Topper56f0ed812014-02-19 08:25:02 +0000210 bits<7> FormBits = Form.Value;
Evan Cheng12c6be82007-07-31 08:04:03 +0000211 ImmType ImmT = i;
Evan Cheng12c6be82007-07-31 08:04:03 +0000212
213 dag OutOperandList = outs;
214 dag InOperandList = ins;
215 string AsmString = AsmStr;
216
Chris Lattner7ff33462010-10-31 19:22:57 +0000217 // If this is a pseudo instruction, mark it isCodeGenOnly.
218 let isCodeGenOnly = !eq(!cast<string>(f), "Pseudo");
219
Andrew Trick8523b162012-02-01 23:20:51 +0000220 let Itinerary = itin;
221
Evan Cheng12c6be82007-07-31 08:04:03 +0000222 //
223 // Attributes specific to X86 instructions...
224 //
Craig Topper3484fc22014-01-05 04:17:28 +0000225 bit ForceDisassemble = 0; // Force instruction to disassemble even though it's
226 // isCodeGenonly. Needed to hide an ambiguous
227 // AsmString from the parser, but still disassemble.
228
Craig Topperfa6298a2014-02-02 09:25:09 +0000229 OperandSize OpSize = OpSizeFixed; // Does this instruction's encoding change
230 // based on operand size of the mode
Craig Toppere413b622014-02-26 06:01:21 +0000231 bits<2> OpSizeBits = OpSize.Value;
Evan Cheng12c6be82007-07-31 08:04:03 +0000232 bit hasAdSizePrefix = 0; // Does this inst have a 0x67 prefix?
233
Craig Topper10243c82014-01-31 08:47:06 +0000234 Prefix OpPrefix = NoPrfx; // Which prefix byte does this inst have?
Craig Toppere413b622014-02-26 06:01:21 +0000235 bits<3> OpPrefixBits = OpPrefix.Value;
Craig Topper10243c82014-01-31 08:47:06 +0000236 Map OpMap = OB; // Which opcode map does this inst have?
Craig Toppere413b622014-02-26 06:01:21 +0000237 bits<3> OpMapBits = OpMap.Value;
Eric Christopher3a8ae232010-11-30 09:11:54 +0000238 bit hasREX_WPrefix = 0; // Does this inst require the REX.W prefix?
Jakob Stoklund Olesenf8d7eda2010-03-25 18:52:01 +0000239 FPFormat FPForm = NotFP; // What flavor of FP instruction is this?
Dan Gohmana21bdda2008-08-20 13:46:21 +0000240 bit hasLockPrefix = 0; // Does this inst have a 0xF0 prefix?
Jakob Stoklund Olesenf8d7eda2010-03-25 18:52:01 +0000241 Domain ExeDomain = d;
Craig Topperec688662014-01-31 07:00:55 +0000242 bit hasREPPrefix = 0; // Does this inst have a REP prefix?
Craig Topperd402df32014-02-02 07:08:01 +0000243 Encoding OpEnc = EncNormal; // Encoding used by this instruction
Craig Toppere413b622014-02-26 06:01:21 +0000244 bits<2> OpEncBits = OpEnc.Value;
Bruno Cardoso Lopes05166742010-07-01 01:20:06 +0000245 bit hasVEX_WPrefix = 0; // Does this inst set the VEX_W field?
Craig Topperd402df32014-02-02 07:08:01 +0000246 bit hasVEX_4V = 0; // Does this inst require the VEX.VVVV field?
247 bit hasVEX_4VOp3 = 0; // Does this inst require the VEX.VVVV field to
248 // encode the third operand?
Eric Christopher3a8ae232010-11-30 09:11:54 +0000249 bit hasVEX_i8ImmReg = 0; // Does this inst require the last source register
Bruno Cardoso Lopese2bd0582010-07-06 22:36:24 +0000250 // to be encoded in a immediate field?
Eric Christopher3a8ae232010-11-30 09:11:54 +0000251 bit hasVEX_L = 0; // Does this inst use large (256-bit) registers?
Craig Topperf18c8962011-10-04 06:30:42 +0000252 bit ignoresVEX_L = 0; // Does this instruction ignore the L-bit
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000253 bit hasEVEX_K = 0; // Does this inst require masking?
254 bit hasEVEX_Z = 0; // Does this inst set the EVEX_Z field?
255 bit hasEVEX_L2 = 0; // Does this inst set the EVEX_L2 field?
256 bit hasEVEX_B = 0; // Does this inst set the EVEX_B field?
Adam Nemet4c339ab2014-07-17 17:04:52 +0000257 bits<3> CD8_Form = 0; // Compressed disp8 form - vector-width.
Adam Nemet4dc92b92014-07-17 17:04:34 +0000258 // Declare it int rather than bits<4> so that all bits are defined when
259 // assigning to bits<7>.
260 int CD8_EltSize = 0; // Compressed disp8 form - element-size in bytes.
Chris Lattner45270db2010-10-03 18:08:05 +0000261 bit has3DNow0F0FOpcode =0;// Wacky 3dNow! encoding?
Craig Toppercd93de92011-12-30 04:48:54 +0000262 bit hasMemOp4Prefix = 0; // Same bit as VEX_W, but used for swapping operands
Elena Demikhovskyb19c9dc2014-01-13 12:55:03 +0000263 bit hasEVEX_RC = 0; // Explicitly specified rounding control in FP instruction.
Jakob Stoklund Olesenb93331f2010-04-05 03:10:20 +0000264
Adam Nemet4dc92b92014-07-17 17:04:34 +0000265 bits<2> EVEX_LL;
266 let EVEX_LL{0} = hasVEX_L;
267 let EVEX_LL{1} = hasEVEX_L2;
268 // Vector size in bytes.
269 bits<7> VectSize = !shl(16, EVEX_LL);
270
271 // The scaling factor for AVX512's compressed displacement is either
272 // - the size of a power-of-two number of elements or
273 // - the size of a single element for broadcasts or
274 // - the total vector size divided by a power-of-two number.
275 // Possible values are: 0 (non-AVX512 inst), 1, 2, 4, 8, 16, 32 and 64.
276 bits<7> CD8_Scale = !if (!eq (OpEnc.Value, EncEVEX.Value),
Adam Nemet4c339ab2014-07-17 17:04:52 +0000277 !if (CD8_Form{2},
278 !shl(CD8_EltSize, CD8_Form{1-0}),
Adam Nemet4dc92b92014-07-17 17:04:34 +0000279 !if (hasEVEX_B,
280 CD8_EltSize,
Adam Nemet4c339ab2014-07-17 17:04:52 +0000281 !srl(VectSize, CD8_Form{1-0}))), 0);
Adam Nemet4dc92b92014-07-17 17:04:34 +0000282
Jakob Stoklund Olesenb93331f2010-04-05 03:10:20 +0000283 // TSFlags layout should be kept in sync with X86InstrInfo.h.
Craig Topper56f0ed812014-02-19 08:25:02 +0000284 let TSFlags{6-0} = FormBits;
Craig Toppere413b622014-02-26 06:01:21 +0000285 let TSFlags{8-7} = OpSizeBits;
Craig Topper56f0ed812014-02-19 08:25:02 +0000286 let TSFlags{9} = hasAdSizePrefix;
Craig Toppere413b622014-02-26 06:01:21 +0000287 let TSFlags{12-10} = OpPrefixBits;
288 let TSFlags{15-13} = OpMapBits;
Craig Topper8f540272014-02-19 07:29:07 +0000289 let TSFlags{16} = hasREX_WPrefix;
290 let TSFlags{20-17} = ImmT.Value;
291 let TSFlags{23-21} = FPForm.Value;
292 let TSFlags{24} = hasLockPrefix;
293 let TSFlags{25} = hasREPPrefix;
294 let TSFlags{27-26} = ExeDomain.Value;
Craig Toppere413b622014-02-26 06:01:21 +0000295 let TSFlags{29-28} = OpEncBits;
Craig Topper8f540272014-02-19 07:29:07 +0000296 let TSFlags{37-30} = Opcode;
297 let TSFlags{38} = hasVEX_WPrefix;
298 let TSFlags{39} = hasVEX_4V;
299 let TSFlags{40} = hasVEX_4VOp3;
300 let TSFlags{41} = hasVEX_i8ImmReg;
301 let TSFlags{42} = hasVEX_L;
302 let TSFlags{43} = ignoresVEX_L;
303 let TSFlags{44} = hasEVEX_K;
304 let TSFlags{45} = hasEVEX_Z;
305 let TSFlags{46} = hasEVEX_L2;
306 let TSFlags{47} = hasEVEX_B;
Adam Nemet54adb0f2014-07-17 17:04:50 +0000307 // If we run out of TSFlags bits, it's possible to encode this in 3 bits.
308 let TSFlags{54-48} = CD8_Scale;
309 let TSFlags{55} = has3DNow0F0FOpcode;
310 let TSFlags{56} = hasMemOp4Prefix;
311 let TSFlags{57} = hasEVEX_RC;
Evan Cheng12c6be82007-07-31 08:04:03 +0000312}
313
Eric Christopheref62f572010-11-30 08:57:23 +0000314class PseudoI<dag oops, dag iops, list<dag> pattern>
Andrew Trick8523b162012-02-01 23:20:51 +0000315 : X86Inst<0, Pseudo, NoImm, oops, iops, "", NoItinerary> {
Eric Christopheref62f572010-11-30 08:57:23 +0000316 let Pattern = pattern;
317}
318
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000319class I<bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000320 list<dag> pattern, InstrItinClass itin = NoItinerary,
Andrew Trick8523b162012-02-01 23:20:51 +0000321 Domain d = GenericDomain>
322 : X86Inst<o, f, NoImm, outs, ins, asm, itin, d> {
Evan Cheng12c6be82007-07-31 08:04:03 +0000323 let Pattern = pattern;
324 let CodeSize = 3;
325}
Sean Callanan04d8cb72009-12-18 00:01:26 +0000326class Ii8 <bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000327 list<dag> pattern, InstrItinClass itin = NoItinerary,
Andrew Trick8523b162012-02-01 23:20:51 +0000328 Domain d = GenericDomain>
329 : X86Inst<o, f, Imm8, outs, ins, asm, itin, d> {
Evan Cheng12c6be82007-07-31 08:04:03 +0000330 let Pattern = pattern;
331 let CodeSize = 3;
332}
Chris Lattner12455ca2010-02-12 22:27:07 +0000333class Ii8PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000334 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000335 : X86Inst<o, f, Imm8PCRel, outs, ins, asm, itin> {
Chris Lattner12455ca2010-02-12 22:27:07 +0000336 let Pattern = pattern;
337 let CodeSize = 3;
338}
Sean Callanan04d8cb72009-12-18 00:01:26 +0000339class Ii16<bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000340 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000341 : X86Inst<o, f, Imm16, outs, ins, asm, itin> {
Evan Cheng12c6be82007-07-31 08:04:03 +0000342 let Pattern = pattern;
343 let CodeSize = 3;
344}
Sean Callanan04d8cb72009-12-18 00:01:26 +0000345class Ii32<bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000346 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000347 : X86Inst<o, f, Imm32, outs, ins, asm, itin> {
Evan Cheng12c6be82007-07-31 08:04:03 +0000348 let Pattern = pattern;
349 let CodeSize = 3;
350}
David Woodhouse0b6c9492014-01-30 22:20:41 +0000351class Ii32S<bits<8> o, Format f, dag outs, dag ins, string asm,
352 list<dag> pattern, InstrItinClass itin = NoItinerary>
353 : X86Inst<o, f, Imm32S, outs, ins, asm, itin> {
354 let Pattern = pattern;
355 let CodeSize = 3;
356}
Evan Cheng12c6be82007-07-31 08:04:03 +0000357
Chris Lattnerac588122010-07-07 22:27:31 +0000358class Ii16PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000359 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000360 : X86Inst<o, f, Imm16PCRel, outs, ins, asm, itin> {
Chris Lattnerac588122010-07-07 22:27:31 +0000361 let Pattern = pattern;
362 let CodeSize = 3;
363}
364
Chris Lattner12455ca2010-02-12 22:27:07 +0000365class Ii32PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000366 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000367 : X86Inst<o, f, Imm32PCRel, outs, ins, asm, itin> {
Chris Lattner12455ca2010-02-12 22:27:07 +0000368 let Pattern = pattern;
369 let CodeSize = 3;
370}
371
Evan Cheng12c6be82007-07-31 08:04:03 +0000372// FPStack Instruction Templates:
373// FPI - Floating Point Instruction template.
Preston Gurdfa3f6cb2012-05-02 16:03:35 +0000374class FPI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000375 InstrItinClass itin = NoItinerary>
Preston Gurdfa3f6cb2012-05-02 16:03:35 +0000376 : I<o, F, outs, ins, asm, [], itin> {}
Evan Cheng12c6be82007-07-31 08:04:03 +0000377
Bob Wilsona967c422010-08-26 18:08:11 +0000378// FpI_ - Floating Point Pseudo Instruction template. Not Predicated.
Andrew Trick8523b162012-02-01 23:20:51 +0000379class FpI_<dag outs, dag ins, FPFormat fp, list<dag> pattern,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000380 InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000381 : X86Inst<0, Pseudo, NoImm, outs, ins, "", itin> {
Jakob Stoklund Olesenf8d7eda2010-03-25 18:52:01 +0000382 let FPForm = fp;
Evan Cheng12c6be82007-07-31 08:04:03 +0000383 let Pattern = pattern;
384}
385
Sean Callanan050e0cd2009-09-15 00:35:17 +0000386// Templates for instructions that use a 16- or 32-bit segmented address as
387// their only operand: lcall (FAR CALL) and ljmp (FAR JMP)
388//
389// Iseg16 - 16-bit segment selector, 16-bit offset
390// Iseg32 - 16-bit segment selector, 32-bit offset
391
392class Iseg16 <bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000393 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000394 : X86Inst<o, f, Imm16, outs, ins, asm, itin> {
Sean Callanan050e0cd2009-09-15 00:35:17 +0000395 let Pattern = pattern;
396 let CodeSize = 3;
397}
398
399class Iseg32 <bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000400 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000401 : X86Inst<o, f, Imm32, outs, ins, asm, itin> {
Sean Callanan050e0cd2009-09-15 00:35:17 +0000402 let Pattern = pattern;
403 let CodeSize = 3;
404}
405
Bruno Cardoso Lopes6b98f712010-06-17 23:05:30 +0000406// SI - SSE 1 & 2 scalar instructions
Andrew Trick8523b162012-02-01 23:20:51 +0000407class SI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000408 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000409 : I<o, F, outs, ins, asm, pattern, itin> {
Craig Topperd402df32014-02-02 07:08:01 +0000410 let Predicates = !if(!eq(OpEnc.Value, EncEVEX.Value), [HasAVX512],
411 !if(!eq(OpEnc.Value, EncVEX.Value), [UseAVX],
412 !if(!eq(OpPrefix.Value, XS.Value), [UseSSE1],
413 !if(!eq(OpPrefix.Value, XD.Value), [UseSSE2],
414 !if(!eq(OpPrefix.Value, PD.Value), [UseSSE2],
Craig Topper10243c82014-01-31 08:47:06 +0000415 [UseSSE1])))));
Bruno Cardoso Lopes6b98f712010-06-17 23:05:30 +0000416
417 // AVX instructions have a 'v' prefix in the mnemonic
Craig Topperd402df32014-02-02 07:08:01 +0000418 let AsmString = !if(!eq(OpEnc.Value, EncEVEX.Value), !strconcat("v", asm),
419 !if(!eq(OpEnc.Value, EncVEX.Value), !strconcat("v", asm),
420 asm));
Bruno Cardoso Lopes6b98f712010-06-17 23:05:30 +0000421}
422
Bruno Cardoso Lopes191a1cd2010-06-24 00:32:06 +0000423// SIi8 - SSE 1 & 2 scalar instructions
424class SIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000425 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000426 : Ii8<o, F, outs, ins, asm, pattern, itin> {
Craig Topperd402df32014-02-02 07:08:01 +0000427 let Predicates = !if(!eq(OpEnc.Value, EncEVEX.Value), [HasAVX512],
428 !if(!eq(OpEnc.Value, EncVEX.Value), [UseAVX],
429 !if(!eq(OpPrefix.Value, XS.Value), [UseSSE1],
Craig Topper10243c82014-01-31 08:47:06 +0000430 [UseSSE2])));
Bruno Cardoso Lopes191a1cd2010-06-24 00:32:06 +0000431
432 // AVX instructions have a 'v' prefix in the mnemonic
Craig Topperd402df32014-02-02 07:08:01 +0000433 let AsmString = !if(!eq(OpEnc.Value, EncEVEX.Value), !strconcat("v", asm),
434 !if(!eq(OpEnc.Value, EncVEX.Value), !strconcat("v", asm),
435 asm));
Bruno Cardoso Lopes191a1cd2010-06-24 00:32:06 +0000436}
437
Bruno Cardoso Lopes2bfad412010-06-18 23:13:35 +0000438// PI - SSE 1 & 2 packed instructions
439class PI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern,
Andrew Trick8523b162012-02-01 23:20:51 +0000440 InstrItinClass itin, Domain d>
441 : I<o, F, outs, ins, asm, pattern, itin, d> {
Craig Topperd402df32014-02-02 07:08:01 +0000442 let Predicates = !if(!eq(OpEnc.Value, EncEVEX.Value), [HasAVX512],
443 !if(!eq(OpEnc.Value, EncVEX.Value), [HasAVX],
444 !if(!eq(OpPrefix.Value, PD.Value), [UseSSE2],
Craig Topper10243c82014-01-31 08:47:06 +0000445 [UseSSE1])));
Bruno Cardoso Lopes2bfad412010-06-18 23:13:35 +0000446
447 // AVX instructions have a 'v' prefix in the mnemonic
Craig Topperd402df32014-02-02 07:08:01 +0000448 let AsmString = !if(!eq(OpEnc.Value, EncEVEX.Value), !strconcat("v", asm),
449 !if(!eq(OpEnc.Value, EncVEX.Value), !strconcat("v", asm),
450 asm));
Bruno Cardoso Lopes2bfad412010-06-18 23:13:35 +0000451}
452
Michael Liaobbd10792012-08-30 16:54:46 +0000453// MMXPI - SSE 1 & 2 packed instructions with MMX operands
454class MMXPI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern,
455 InstrItinClass itin, Domain d>
456 : I<o, F, outs, ins, asm, pattern, itin, d> {
Craig Topperd402df32014-02-02 07:08:01 +0000457 let Predicates = !if(!eq(OpPrefix.Value, PD.Value), [HasSSE2],
Craig Topper10243c82014-01-31 08:47:06 +0000458 [HasSSE1]);
Michael Liaobbd10792012-08-30 16:54:46 +0000459}
460
Bruno Cardoso Lopes1e13c172010-06-22 23:37:59 +0000461// PIi8 - SSE 1 & 2 packed instructions with immediate
462class PIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Andrew Trick8523b162012-02-01 23:20:51 +0000463 list<dag> pattern, InstrItinClass itin, Domain d>
464 : Ii8<o, F, outs, ins, asm, pattern, itin, d> {
Craig Topperd402df32014-02-02 07:08:01 +0000465 let Predicates = !if(!eq(OpEnc.Value, EncEVEX.Value), [HasAVX512],
466 !if(!eq(OpEnc.Value, EncVEX.Value), [HasAVX],
467 !if(!eq(OpPrefix.Value, PD.Value), [UseSSE2],
Craig Topper10243c82014-01-31 08:47:06 +0000468 [UseSSE1])));
Bruno Cardoso Lopes1e13c172010-06-22 23:37:59 +0000469
470 // AVX instructions have a 'v' prefix in the mnemonic
Craig Topperd402df32014-02-02 07:08:01 +0000471 let AsmString = !if(!eq(OpEnc.Value, EncEVEX.Value), !strconcat("v", asm),
472 !if(!eq(OpEnc.Value, EncVEX.Value), !strconcat("v", asm),
473 asm));
Bruno Cardoso Lopes1e13c172010-06-22 23:37:59 +0000474}
475
Evan Cheng12c6be82007-07-31 08:04:03 +0000476// SSE1 Instruction Templates:
477//
478// SSI - SSE1 instructions with XS prefix.
Craig Topper5ccb6172014-02-18 00:21:49 +0000479// PSI - SSE1 instructions with PS prefix.
480// PSIi8 - SSE1 instructions with ImmT == Imm8 and PS prefix.
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000481// VSSI - SSE1 instructions with XS prefix in AVX form.
Craig Topper5ccb6172014-02-18 00:21:49 +0000482// VPSI - SSE1 instructions with PS prefix in AVX form, packed single.
Evan Cheng12c6be82007-07-31 08:04:03 +0000483
Andrew Trick8523b162012-02-01 23:20:51 +0000484class SSI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000485 list<dag> pattern, InstrItinClass itin = NoItinerary>
Michael Liaobbd10792012-08-30 16:54:46 +0000486 : I<o, F, outs, ins, asm, pattern, itin>, XS, Requires<[UseSSE1]>;
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000487class SSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000488 list<dag> pattern, InstrItinClass itin = NoItinerary>
Michael Liaobbd10792012-08-30 16:54:46 +0000489 : Ii8<o, F, outs, ins, asm, pattern, itin>, XS, Requires<[UseSSE1]>;
Andrew Trick8523b162012-02-01 23:20:51 +0000490class PSI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000491 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topper5ccb6172014-02-18 00:21:49 +0000492 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedSingle>, PS,
Michael Liaobbd10792012-08-30 16:54:46 +0000493 Requires<[UseSSE1]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000494class PSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000495 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topper5ccb6172014-02-18 00:21:49 +0000496 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedSingle>, PS,
Michael Liaobbd10792012-08-30 16:54:46 +0000497 Requires<[UseSSE1]>;
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000498class VSSI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000499 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000500 : I<o, F, outs, ins, !strconcat("v", asm), pattern, itin>, XS,
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000501 Requires<[HasAVX]>;
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000502class VPSI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000503 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topper5ccb6172014-02-18 00:21:49 +0000504 : I<o, F, outs, ins, !strconcat("v", asm), pattern, itin, SSEPackedSingle>, PS,
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000505 Requires<[HasAVX]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000506
507// SSE2 Instruction Templates:
508//
Bill Wendling76105a42008-08-27 21:32:04 +0000509// SDI - SSE2 instructions with XD prefix.
510// SDIi8 - SSE2 instructions with ImmT == Imm8 and XD prefix.
Craig Topperf881d382012-07-30 02:14:02 +0000511// S2SI - SSE2 instructions with XS prefix.
Bill Wendling76105a42008-08-27 21:32:04 +0000512// SSDIi8 - SSE2 instructions with ImmT == Imm8 and XS prefix.
Craig Topperae11aed2014-01-14 07:41:20 +0000513// PDI - SSE2 instructions with PD prefix, packed double domain.
514// PDIi8 - SSE2 instructions with ImmT == Imm8 and PD prefix.
Elena Demikhovsky89703c02013-06-09 07:37:10 +0000515// VSDI - SSE2 scalar instructions with XD prefix in AVX form.
Craig Topperae11aed2014-01-14 07:41:20 +0000516// VPDI - SSE2 vector instructions with PD prefix in AVX form,
Elena Demikhovsky89703c02013-06-09 07:37:10 +0000517// packed double domain.
Craig Topperae11aed2014-01-14 07:41:20 +0000518// VS2I - SSE2 scalar instructions with PD prefix in AVX form.
519// S2I - SSE2 scalar instructions with PD prefix.
Michael Liaobbd10792012-08-30 16:54:46 +0000520// MMXSDIi8 - SSE2 instructions with ImmT == Imm8 and XD prefix as well as
521// MMX operands.
522// MMXSSDIi8 - SSE2 instructions with ImmT == Imm8 and XS prefix as well as
523// MMX operands.
Evan Cheng12c6be82007-07-31 08:04:03 +0000524
Andrew Trick8523b162012-02-01 23:20:51 +0000525class SDI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000526 list<dag> pattern, InstrItinClass itin = NoItinerary>
Michael Liaobbd10792012-08-30 16:54:46 +0000527 : I<o, F, outs, ins, asm, pattern, itin>, XD, Requires<[UseSSE2]>;
Evan Cheng01c7c192007-12-20 19:57:09 +0000528class SDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000529 list<dag> pattern, InstrItinClass itin = NoItinerary>
Michael Liaobbd10792012-08-30 16:54:46 +0000530 : Ii8<o, F, outs, ins, asm, pattern, itin>, XD, Requires<[UseSSE2]>;
Craig Topperf881d382012-07-30 02:14:02 +0000531class S2SI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000532 list<dag> pattern, InstrItinClass itin = NoItinerary>
Michael Liaobbd10792012-08-30 16:54:46 +0000533 : I<o, F, outs, ins, asm, pattern, itin>, XS, Requires<[UseSSE2]>;
Craig Topperf881d382012-07-30 02:14:02 +0000534class S2SIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000535 list<dag> pattern, InstrItinClass itin = NoItinerary>
Michael Liaobbd10792012-08-30 16:54:46 +0000536 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[UseSSE2]>;
Andrew Trick8523b162012-02-01 23:20:51 +0000537class PDI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000538 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000539 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedDouble>, PD,
Michael Liaobbd10792012-08-30 16:54:46 +0000540 Requires<[UseSSE2]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000541class PDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000542 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000543 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedDouble>, PD,
Michael Liaobbd10792012-08-30 16:54:46 +0000544 Requires<[UseSSE2]>;
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000545class VSDI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000546 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000547 : I<o, F, outs, ins, !strconcat("v", asm), pattern, itin>, XD,
Elena Demikhovsky3ce8dbb2013-08-18 13:08:57 +0000548 Requires<[UseAVX]>;
Craig Topperf881d382012-07-30 02:14:02 +0000549class VS2SI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000550 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperf881d382012-07-30 02:14:02 +0000551 : I<o, F, outs, ins, !strconcat("v", asm), pattern, itin>, XS,
552 Requires<[HasAVX]>;
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000553class VPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000554 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000555 : I<o, F, outs, ins, !strconcat("v", asm), pattern, itin, SSEPackedDouble>,
556 PD, Requires<[HasAVX]>;
Elena Demikhovsky89703c02013-06-09 07:37:10 +0000557class VS2I<bits<8> o, Format F, dag outs, dag ins, string asm,
558 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000559 : I<o, F, outs, ins, !strconcat("v", asm), pattern, itin>, PD,
560 Requires<[UseAVX]>;
Elena Demikhovsky89703c02013-06-09 07:37:10 +0000561class S2I<bits<8> o, Format F, dag outs, dag ins, string asm,
562 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000563 : I<o, F, outs, ins, asm, pattern, itin>, PD, Requires<[UseSSE2]>;
Michael Liaobbd10792012-08-30 16:54:46 +0000564class MMXSDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000565 list<dag> pattern, InstrItinClass itin = NoItinerary>
Michael Liaobbd10792012-08-30 16:54:46 +0000566 : Ii8<o, F, outs, ins, asm, pattern, itin>, XD, Requires<[HasSSE2]>;
567class MMXS2SIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000568 list<dag> pattern, InstrItinClass itin = NoItinerary>
Michael Liaobbd10792012-08-30 16:54:46 +0000569 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE2]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000570
571// SSE3 Instruction Templates:
572//
Craig Topperae11aed2014-01-14 07:41:20 +0000573// S3I - SSE3 instructions with PD prefixes.
Evan Cheng12c6be82007-07-31 08:04:03 +0000574// S3SI - SSE3 instructions with XS prefix.
575// S3DI - SSE3 instructions with XD prefix.
576
Sean Callanan04d8cb72009-12-18 00:01:26 +0000577class S3SI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000578 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000579 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedSingle>, XS,
Michael Liaobbd10792012-08-30 16:54:46 +0000580 Requires<[UseSSE3]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000581class S3DI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000582 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000583 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedDouble>, XD,
Michael Liaobbd10792012-08-30 16:54:46 +0000584 Requires<[UseSSE3]>;
Andrew Trick8523b162012-02-01 23:20:51 +0000585class S3I<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000586 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000587 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedDouble>, PD,
Michael Liaobbd10792012-08-30 16:54:46 +0000588 Requires<[UseSSE3]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000589
590
Nate Begeman8ef50212008-02-12 22:51:28 +0000591// SSSE3 Instruction Templates:
592//
593// SS38I - SSSE3 instructions with T8 prefix.
594// SS3AI - SSSE3 instructions with TA prefix.
Michael Liaobbd10792012-08-30 16:54:46 +0000595// MMXSS38I - SSSE3 instructions with T8 prefix and MMX operands.
596// MMXSS3AI - SSSE3 instructions with TA prefix and MMX operands.
Nate Begeman8ef50212008-02-12 22:51:28 +0000597//
598// Note: SSSE3 instructions have 64-bit and 128-bit versions. The 64-bit version
Craig Topper744f6312012-01-09 00:11:29 +0000599// uses the MMX registers. The 64-bit versions are grouped with the MMX
600// classes. They need to be enabled even if AVX is enabled.
Nate Begeman8ef50212008-02-12 22:51:28 +0000601
602class SS38I<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000603 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000604 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PD,
Michael Liaobbd10792012-08-30 16:54:46 +0000605 Requires<[UseSSSE3]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000606class SS3AI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000607 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000608 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
Michael Liaobbd10792012-08-30 16:54:46 +0000609 Requires<[UseSSSE3]>;
610class MMXSS38I<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000611 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topper87557402014-02-18 08:24:22 +0000612 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PS,
Michael Liaobbd10792012-08-30 16:54:46 +0000613 Requires<[HasSSSE3]>;
614class MMXSS3AI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000615 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topper87557402014-02-18 08:24:22 +0000616 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPS,
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000617 Requires<[HasSSSE3]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000618
619// SSE4.1 Instruction Templates:
620//
621// SS48I - SSE 4.1 instructions with T8 prefix.
Evan Cheng96bdbd62008-03-14 07:39:27 +0000622// SS41AIi8 - SSE 4.1 instructions with TA prefix and ImmT == Imm8.
Nate Begeman8ef50212008-02-12 22:51:28 +0000623//
624class SS48I<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000625 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000626 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PD,
Michael Liaobbd10792012-08-30 16:54:46 +0000627 Requires<[UseSSE41]>;
Evan Cheng96bdbd62008-03-14 07:39:27 +0000628class SS4AIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000629 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000630 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
Michael Liaobbd10792012-08-30 16:54:46 +0000631 Requires<[UseSSE41]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000632
Nate Begeman55b7bec2008-07-17 16:51:19 +0000633// SSE4.2 Instruction Templates:
634//
635// SS428I - SSE 4.2 instructions with T8 prefix.
636class SS428I<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000637 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000638 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PD,
Michael Liaobbd10792012-08-30 16:54:46 +0000639 Requires<[UseSSE42]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000640
Craig Topper96fa5972011-10-16 16:50:08 +0000641// SS42FI - SSE 4.2 instructions with T8XD prefix.
Michael Liaobbd10792012-08-30 16:54:46 +0000642// NOTE: 'HasSSE42' is used as SS42FI is only used for CRC32 insns.
Eric Christopher7dfa9f22009-08-08 21:55:08 +0000643class SS42FI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000644 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000645 : I<o, F, outs, ins, asm, pattern, itin>, T8XD, Requires<[HasSSE42]>;
Craig Topperb9109842012-01-01 19:51:58 +0000646
Eric Christopher9fe912d2009-08-18 22:50:32 +0000647// SS42AI = SSE 4.2 instructions with TA prefix
648class SS42AI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000649 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000650 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
Michael Liaobbd10792012-08-30 16:54:46 +0000651 Requires<[UseSSE42]>;
Eric Christopher9fe912d2009-08-18 22:50:32 +0000652
Bruno Cardoso Lopes14c5fd42010-07-20 00:11:13 +0000653// AVX Instruction Templates:
654// Instructions introduced in AVX (no SSE equivalent forms)
655//
Craig Topperae11aed2014-01-14 07:41:20 +0000656// AVX8I - AVX instructions with T8PD prefix.
657// AVXAIi8 - AVX instructions with TAPD prefix and ImmT = Imm8.
Bruno Cardoso Lopes14c5fd42010-07-20 00:11:13 +0000658class AVX8I<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000659 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000660 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PD,
Bruno Cardoso Lopes14c5fd42010-07-20 00:11:13 +0000661 Requires<[HasAVX]>;
Bruno Cardoso Lopes3b505842010-07-20 19:44:51 +0000662class AVXAIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000663 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000664 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
Bruno Cardoso Lopes3b505842010-07-20 19:44:51 +0000665 Requires<[HasAVX]>;
Bruno Cardoso Lopes14c5fd42010-07-20 00:11:13 +0000666
Craig Topper05d1cb92011-11-06 06:12:20 +0000667// AVX2 Instruction Templates:
668// Instructions introduced in AVX2 (no SSE equivalent forms)
669//
Craig Topperae11aed2014-01-14 07:41:20 +0000670// AVX28I - AVX2 instructions with T8PD prefix.
671// AVX2AIi8 - AVX2 instructions with TAPD prefix and ImmT = Imm8.
Craig Topper05d1cb92011-11-06 06:12:20 +0000672class AVX28I<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000673 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000674 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PD,
Craig Topper05d1cb92011-11-06 06:12:20 +0000675 Requires<[HasAVX2]>;
Craig Topperf01f1b52011-11-06 23:04:08 +0000676class AVX2AIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000677 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000678 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
Craig Topper05d1cb92011-11-06 06:12:20 +0000679 Requires<[HasAVX2]>;
680
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000681
682// AVX-512 Instruction Templates:
683// Instructions introduced in AVX-512 (no SSE equivalent forms)
684//
Craig Topperae11aed2014-01-14 07:41:20 +0000685// AVX5128I - AVX-512 instructions with T8PD prefix.
686// AVX512AIi8 - AVX-512 instructions with TAPD prefix and ImmT = Imm8.
687// AVX512PDI - AVX-512 instructions with PD, double packed.
Craig Topper5ccb6172014-02-18 00:21:49 +0000688// AVX512PSI - AVX-512 instructions with PS, single packed.
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000689// AVX512XS8I - AVX-512 instructions with T8 and XS prefixes.
690// AVX512XSI - AVX-512 instructions with XS prefix, generic domain.
Craig Topperae11aed2014-01-14 07:41:20 +0000691// AVX512BI - AVX-512 instructions with PD, int packed domain.
692// AVX512SI - AVX-512 scalar instructions with PD prefix.
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000693
694class AVX5128I<bits<8> o, Format F, dag outs, dag ins, string asm,
695 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000696 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PD,
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000697 Requires<[HasAVX512]>;
698class AVX512XS8I<bits<8> o, Format F, dag outs, dag ins, string asm,
699 list<dag> pattern, InstrItinClass itin = NoItinerary>
700 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8XS,
701 Requires<[HasAVX512]>;
702class AVX512XSI<bits<8> o, Format F, dag outs, dag ins, string asm,
703 list<dag> pattern, InstrItinClass itin = NoItinerary>
704 : I<o, F, outs, ins, asm, pattern, itin>, XS,
705 Requires<[HasAVX512]>;
706class AVX512XDI<bits<8> o, Format F, dag outs, dag ins, string asm,
707 list<dag> pattern, InstrItinClass itin = NoItinerary>
708 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, XD,
709 Requires<[HasAVX512]>;
710class AVX512BI<bits<8> o, Format F, dag outs, dag ins, string asm,
711 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000712 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, PD,
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000713 Requires<[HasAVX512]>;
714class AVX512BIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
715 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000716 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, PD,
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000717 Requires<[HasAVX512]>;
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000718class AVX512AIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
719 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000720 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000721 Requires<[HasAVX512]>;
722class AVX512Ii8<bits<8> o, Format F, dag outs, dag ins, string asm,
723 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperda7160d2014-02-01 08:17:56 +0000724 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>,
Craig Topperae11aed2014-01-14 07:41:20 +0000725 Requires<[HasAVX512]>;
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000726class AVX512PDI<bits<8> o, Format F, dag outs, dag ins, string asm,
727 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000728 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedDouble>, PD,
729 Requires<[HasAVX512]>;
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000730class AVX512PSI<bits<8> o, Format F, dag outs, dag ins, string asm,
731 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topper5ccb6172014-02-18 00:21:49 +0000732 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedSingle>, PS,
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000733 Requires<[HasAVX512]>;
734class AVX512PIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
735 list<dag> pattern, Domain d, InstrItinClass itin = NoItinerary>
Craig Topperda7160d2014-02-01 08:17:56 +0000736 : Ii8<o, F, outs, ins, asm, pattern, itin, d>, Requires<[HasAVX512]>;
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000737class AVX512PI<bits<8> o, Format F, dag outs, dag ins, string asm,
738 list<dag> pattern, Domain d, InstrItinClass itin = NoItinerary>
Craig Topperda7160d2014-02-01 08:17:56 +0000739 : I<o, F, outs, ins, asm, pattern, itin, d>, Requires<[HasAVX512]>;
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000740class AVX512FMA3<bits<8> o, Format F, dag outs, dag ins, string asm,
741 list<dag>pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000742 : I<o, F, outs, ins, asm, pattern, itin>, T8PD,
743 EVEX_4V, Requires<[HasAVX512]>;
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000744
Eric Christopher2ef63182010-04-02 21:54:27 +0000745// AES Instruction Templates:
746//
747// AES8I
Eric Christopher1290fa02010-04-05 21:14:32 +0000748// These use the same encoding as the SSE4.2 T8 and TA encodings.
Eric Christopher2ef63182010-04-02 21:54:27 +0000749class AES8I<bits<8> o, Format F, dag outs, dag ins, string asm,
Preston Gurd3fe264d2013-09-13 19:23:28 +0000750 list<dag>pattern, InstrItinClass itin = IIC_AES>
Craig Topperae11aed2014-01-14 07:41:20 +0000751 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PD,
Craig Topperc0cef322012-05-01 05:35:02 +0000752 Requires<[HasAES]>;
Eric Christopher2ef63182010-04-02 21:54:27 +0000753
754class AESAI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000755 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000756 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
Craig Topperc0cef322012-05-01 05:35:02 +0000757 Requires<[HasAES]>;
Eric Christopher2ef63182010-04-02 21:54:27 +0000758
Benjamin Kramera0396e42012-05-31 14:34:17 +0000759// PCLMUL Instruction Templates
760class PCLMULIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000761 list<dag>pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000762 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
763 Requires<[HasPCLMUL]>;
Eli Friedman415412e2011-07-05 18:21:20 +0000764
Benjamin Kramera0396e42012-05-31 14:34:17 +0000765class AVXPCLMULIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000766 list<dag>pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000767 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
768 VEX_4V, Requires<[HasAVX, HasPCLMUL]>;
Bruno Cardoso Lopesea0e05a2010-07-23 18:41:12 +0000769
Bruno Cardoso Lopesacd92302010-07-23 00:54:35 +0000770// FMA3 Instruction Templates
771class FMA3<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000772 list<dag>pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000773 : I<o, F, outs, ins, asm, pattern, itin>, T8PD,
774 VEX_4V, FMASC, Requires<[HasFMA]>;
Bruno Cardoso Lopesacd92302010-07-23 00:54:35 +0000775
Bruno Cardoso Lopes0f9a1f52011-11-25 19:33:42 +0000776// FMA4 Instruction Templates
777class FMA4<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000778 list<dag>pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000779 : Ii8<o, F, outs, ins, asm, pattern, itin>, TAPD,
780 VEX_4V, VEX_I8IMM, FMASC, Requires<[HasFMA4]>;
Bruno Cardoso Lopes0f9a1f52011-11-25 19:33:42 +0000781
Jan Sjödin7c0face2011-12-12 19:37:49 +0000782// XOP 2, 3 and 4 Operand Instruction Template
783class IXOP<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000784 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000785 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedDouble>,
Craig Topperd402df32014-02-02 07:08:01 +0000786 XOP9, Requires<[HasXOP]>;
Jan Sjödin7c0face2011-12-12 19:37:49 +0000787
788// XOP 2, 3 and 4 Operand Instruction Templates with imm byte
789class IXOPi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000790 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000791 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedDouble>,
Craig Topperd402df32014-02-02 07:08:01 +0000792 XOP8, Requires<[HasXOP]>;
Jan Sjödin7c0face2011-12-12 19:37:49 +0000793
794// XOP 5 operand instruction (VEX encoding!)
795class IXOP5<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000796 list<dag>pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000797 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
798 VEX_4V, VEX_I8IMM, Requires<[HasXOP]>;
Jan Sjödin7c0face2011-12-12 19:37:49 +0000799
Evan Cheng12c6be82007-07-31 08:04:03 +0000800// X86-64 Instruction templates...
801//
802
Andrew Trick8523b162012-02-01 23:20:51 +0000803class RI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000804 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000805 : I<o, F, outs, ins, asm, pattern, itin>, REX_W;
Evan Cheng12c6be82007-07-31 08:04:03 +0000806class RIi8 <bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000807 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000808 : Ii8<o, F, outs, ins, asm, pattern, itin>, REX_W;
David Woodhouse4e033b02014-01-13 14:05:59 +0000809class RIi16 <bits<8> o, Format F, dag outs, dag ins, string asm,
810 list<dag> pattern, InstrItinClass itin = NoItinerary>
811 : Ii16<o, F, outs, ins, asm, pattern, itin>, REX_W;
Evan Cheng12c6be82007-07-31 08:04:03 +0000812class RIi32 <bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000813 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000814 : Ii32<o, F, outs, ins, asm, pattern, itin>, REX_W;
David Woodhouse0b6c9492014-01-30 22:20:41 +0000815class RIi32S <bits<8> o, Format F, dag outs, dag ins, string asm,
816 list<dag> pattern, InstrItinClass itin = NoItinerary>
817 : Ii32S<o, F, outs, ins, asm, pattern, itin>, REX_W;
Evan Cheng12c6be82007-07-31 08:04:03 +0000818
819class RIi64<bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000820 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000821 : X86Inst<o, f, Imm64, outs, ins, asm, itin>, REX_W {
Evan Cheng12c6be82007-07-31 08:04:03 +0000822 let Pattern = pattern;
823 let CodeSize = 3;
824}
825
Kevin Enderby285da022013-07-22 21:25:31 +0000826class RIi64_NOREX<bits<8> o, Format f, dag outs, dag ins, string asm,
827 list<dag> pattern, InstrItinClass itin = NoItinerary>
828 : X86Inst<o, f, Imm64, outs, ins, asm, itin> {
829 let Pattern = pattern;
830 let CodeSize = 3;
831}
832
Elena Demikhovsky89703c02013-06-09 07:37:10 +0000833class RS2I<bits<8> o, Format F, dag outs, dag ins, string asm,
834 list<dag> pattern, InstrItinClass itin = NoItinerary>
835 : S2I<o, F, outs, ins, asm, pattern, itin>, REX_W;
836class VRS2I<bits<8> o, Format F, dag outs, dag ins, string asm,
837 list<dag> pattern, InstrItinClass itin = NoItinerary>
838 : VS2I<o, F, outs, ins, asm, pattern, itin>, VEX_W;
Evan Cheng12c6be82007-07-31 08:04:03 +0000839
840// MMX Instruction templates
841//
842
843// MMXI - MMX instructions with TB prefix.
Craig Topperbc749db2013-10-09 02:18:34 +0000844// MMXI32 - MMX instructions with TB prefix valid only in 32 bit mode.
Anton Korobeynikov31099512008-08-23 15:53:19 +0000845// MMXI64 - MMX instructions with TB prefix valid only in 64 bit mode.
Craig Topperae11aed2014-01-14 07:41:20 +0000846// MMX2I - MMX / SSE2 instructions with PD prefix.
Craig Topper5ccb6172014-02-18 00:21:49 +0000847// MMXIi8 - MMX instructions with ImmT == Imm8 and PS prefix.
848// MMXIi8 - MMX instructions with ImmT == Imm8 and PS prefix.
Evan Cheng12c6be82007-07-31 08:04:03 +0000849// MMXID - MMX instructions with XD prefix.
850// MMXIS - MMX instructions with XS prefix.
Sean Callanan04d8cb72009-12-18 00:01:26 +0000851class MMXI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000852 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topper5ccb6172014-02-18 00:21:49 +0000853 : I<o, F, outs, ins, asm, pattern, itin>, PS, Requires<[HasMMX]>;
Craig Topperbc749db2013-10-09 02:18:34 +0000854class MMXI32<bits<8> o, Format F, dag outs, dag ins, string asm,
855 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topper5ccb6172014-02-18 00:21:49 +0000856 : I<o, F, outs, ins, asm, pattern, itin>, PS, Requires<[HasMMX,Not64BitMode]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000857class MMXI64<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000858 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topper5ccb6172014-02-18 00:21:49 +0000859 : I<o, F, outs, ins, asm, pattern, itin>, PS, Requires<[HasMMX,In64BitMode]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000860class MMXRI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000861 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topper5ccb6172014-02-18 00:21:49 +0000862 : I<o, F, outs, ins, asm, pattern, itin>, PS, REX_W, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000863class MMX2I<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000864 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000865 : I<o, F, outs, ins, asm, pattern, itin>, PD, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000866class MMXIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000867 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topper5ccb6172014-02-18 00:21:49 +0000868 : Ii8<o, F, outs, ins, asm, pattern, itin>, PS, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000869class MMXID<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000870 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000871 : Ii8<o, F, outs, ins, asm, pattern, itin>, XD, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000872class MMXIS<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000873 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000874 : Ii8<o, F, outs, ins, asm, pattern, itin>, XS, Requires<[HasMMX]>;