blob: ba2387823f5ebaf31aac086c03336a2d3e08aa8e [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>;
Kevin Enderby0d928a12014-07-31 23:57:38 +000039def MRM_CF : Format<41>; def MRM_D0 : Format<42>; def MRM_D1 : Format<43>;
40def MRM_D4 : Format<44>; def MRM_D5 : Format<45>; def MRM_D6 : Format<46>;
41def MRM_D7 : Format<47>; def MRM_D8 : Format<48>; def MRM_D9 : Format<49>;
42def MRM_DA : Format<50>; def MRM_DB : Format<51>; def MRM_DC : Format<52>;
43def MRM_DD : Format<53>; def MRM_DE : Format<54>; def MRM_DF : Format<55>;
44def MRM_E0 : Format<56>; def MRM_E1 : Format<57>; def MRM_E2 : Format<58>;
45def MRM_E3 : Format<59>; def MRM_E4 : Format<60>; def MRM_E5 : Format<61>;
46def MRM_E8 : Format<62>; def MRM_E9 : Format<63>; def MRM_EA : Format<64>;
47def MRM_EB : Format<65>; def MRM_EC : Format<66>; def MRM_ED : Format<67>;
48def MRM_EE : Format<68>; def MRM_F0 : Format<69>; def MRM_F1 : Format<70>;
49def MRM_F2 : Format<71>; def MRM_F3 : Format<72>; def MRM_F4 : Format<73>;
50def MRM_F5 : Format<74>; def MRM_F6 : Format<75>; def MRM_F7 : Format<76>;
51def MRM_F8 : Format<77>; def MRM_F9 : Format<78>; def MRM_FA : Format<79>;
52def MRM_FB : Format<80>; def MRM_FC : Format<81>; def MRM_FD : Format<82>;
53def MRM_FE : Format<83>; def MRM_FF : Format<84>;
Evan Cheng12c6be82007-07-31 08:04:03 +000054
55// ImmType - This specifies the immediate type used by an instruction. This is
56// part of the ad-hoc solution used to emit machine instruction encodings by our
57// machine code emitter.
David Woodhouse0b6c9492014-01-30 22:20:41 +000058class ImmType<bits<4> val> {
59 bits<4> Value = val;
Evan Cheng12c6be82007-07-31 08:04:03 +000060}
Chris Lattner12455ca2010-02-12 22:27:07 +000061def NoImm : ImmType<0>;
62def Imm8 : ImmType<1>;
63def Imm8PCRel : ImmType<2>;
64def Imm16 : ImmType<3>;
Chris Lattnerac588122010-07-07 22:27:31 +000065def Imm16PCRel : ImmType<4>;
66def Imm32 : ImmType<5>;
67def Imm32PCRel : ImmType<6>;
David Woodhouse0b6c9492014-01-30 22:20:41 +000068def Imm32S : ImmType<7>;
69def Imm64 : ImmType<8>;
Evan Cheng12c6be82007-07-31 08:04:03 +000070
71// FPFormat - This specifies what form this FP instruction has. This is used by
72// the Floating-Point stackifier pass.
73class FPFormat<bits<3> val> {
74 bits<3> Value = val;
75}
76def NotFP : FPFormat<0>;
77def ZeroArgFP : FPFormat<1>;
78def OneArgFP : FPFormat<2>;
79def OneArgFPRW : FPFormat<3>;
80def TwoArgFP : FPFormat<4>;
81def CompareFP : FPFormat<5>;
82def CondMovFP : FPFormat<6>;
83def SpecialFP : FPFormat<7>;
84
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000085// Class specifying the SSE execution domain, used by the SSEDomainFix pass.
Jakob Stoklund Olesendbff4e82010-03-30 22:46:53 +000086// Keep in sync with tables in X86InstrInfo.cpp.
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000087class Domain<bits<2> val> {
88 bits<2> Value = val;
89}
90def GenericDomain : Domain<0>;
Jakob Stoklund Olesendbff4e82010-03-30 22:46:53 +000091def SSEPackedSingle : Domain<1>;
92def SSEPackedDouble : Domain<2>;
93def SSEPackedInt : Domain<3>;
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000094
Elena Demikhovsky003e7d72013-07-28 08:28:38 +000095// Class specifying the vector form of the decompressed
96// displacement of 8-bit.
97class CD8VForm<bits<3> val> {
98 bits<3> Value = val;
99}
100def CD8VF : CD8VForm<0>; // v := VL
101def CD8VH : CD8VForm<1>; // v := VL/2
102def CD8VQ : CD8VForm<2>; // v := VL/4
103def CD8VO : CD8VForm<3>; // v := VL/8
Adam Nemet449b3f02014-10-15 23:42:09 +0000104// The tuple (subvector) forms.
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000105def CD8VT1 : CD8VForm<4>; // v := 1
106def CD8VT2 : CD8VForm<5>; // v := 2
107def CD8VT4 : CD8VForm<6>; // v := 4
108def CD8VT8 : CD8VForm<7>; // v := 8
109
Craig Topper10243c82014-01-31 08:47:06 +0000110// Class specifying the prefix used an opcode extension.
Craig Topper5ccb6172014-02-18 00:21:49 +0000111class Prefix<bits<3> val> {
112 bits<3> Value = val;
Craig Topper10243c82014-01-31 08:47:06 +0000113}
114def NoPrfx : Prefix<0>;
Craig Topper5ccb6172014-02-18 00:21:49 +0000115def PS : Prefix<1>;
116def PD : Prefix<2>;
117def XS : Prefix<3>;
118def XD : Prefix<4>;
Craig Topper10243c82014-01-31 08:47:06 +0000119
120// Class specifying the opcode map.
Craig Topper56f0ed812014-02-19 08:25:02 +0000121class Map<bits<3> val> {
122 bits<3> Value = val;
Craig Topper10243c82014-01-31 08:47:06 +0000123}
124def OB : Map<0>;
125def TB : Map<1>;
126def T8 : Map<2>;
127def TA : Map<3>;
128def XOP8 : Map<4>;
129def XOP9 : Map<5>;
130def XOPA : Map<6>;
Craig Topper10243c82014-01-31 08:47:06 +0000131
Craig Topperd402df32014-02-02 07:08:01 +0000132// Class specifying the encoding
133class Encoding<bits<2> val> {
134 bits<2> Value = val;
135}
136def EncNormal : Encoding<0>;
137def EncVEX : Encoding<1>;
138def EncXOP : Encoding<2>;
139def EncEVEX : Encoding<3>;
140
Craig Topperfa6298a2014-02-02 09:25:09 +0000141// Operand size for encodings that change based on mode.
142class OperandSize<bits<2> val> {
143 bits<2> Value = val;
144}
145def OpSizeFixed : OperandSize<0>; // Never needs a 0x66 prefix.
146def OpSize16 : OperandSize<1>; // Needs 0x66 prefix in 32-bit mode.
147def OpSize32 : OperandSize<2>; // Needs 0x66 prefix in 16-bit mode.
148
Craig Topperb86338f2014-12-24 06:05:22 +0000149// Address size for encodings that change based on mode.
150class AddressSize<bits<2> val> {
151 bits<2> Value = val;
152}
153def AdSizeX : AddressSize<0>; // Address size determined using addr operand.
154def AdSize16 : AddressSize<1>; // Encodes a 16-bit address.
155def AdSize32 : AddressSize<2>; // Encodes a 32-bit address.
156def AdSize64 : AddressSize<3>; // Encodes a 64-bit address.
157
Evan Cheng12c6be82007-07-31 08:04:03 +0000158// Prefix byte classes which are used to indicate to the ad-hoc machine code
159// emitter that various prefix bytes are required.
Craig Topperfa6298a2014-02-02 09:25:09 +0000160class OpSize16 { OperandSize OpSize = OpSize16; }
161class OpSize32 { OperandSize OpSize = OpSize32; }
Craig Topperb86338f2014-12-24 06:05:22 +0000162class AdSize16 { AddressSize AdSize = AdSize16; }
163class AdSize32 { AddressSize AdSize = AdSize32; }
164class AdSize64 { AddressSize AdSize = AdSize64; }
Evan Cheng12c6be82007-07-31 08:04:03 +0000165class REX_W { bit hasREX_WPrefix = 1; }
Andrew Lenharth0070dd12008-03-01 13:37:02 +0000166class LOCK { bit hasLockPrefix = 1; }
Craig Topperec688662014-01-31 07:00:55 +0000167class REP { bit hasREPPrefix = 1; }
Craig Topperda7160d2014-02-01 08:17:56 +0000168class TB { Map OpMap = TB; }
Craig Topper10243c82014-01-31 08:47:06 +0000169class T8 { Map OpMap = T8; }
170class TA { Map OpMap = TA; }
Craig Topper5ccb6172014-02-18 00:21:49 +0000171class XOP8 { Map OpMap = XOP8; Prefix OpPrefix = PS; }
172class XOP9 { Map OpMap = XOP9; Prefix OpPrefix = PS; }
173class XOPA { Map OpMap = XOPA; Prefix OpPrefix = PS; }
Craig Toppere2347df2014-02-20 07:59:43 +0000174class OBXS { Prefix OpPrefix = XS; }
Craig Topper5ccb6172014-02-18 00:21:49 +0000175class PS : TB { Prefix OpPrefix = PS; }
Craig Topperda7160d2014-02-01 08:17:56 +0000176class PD : TB { Prefix OpPrefix = PD; }
177class XD : TB { Prefix OpPrefix = XD; }
178class XS : TB { Prefix OpPrefix = XS; }
Craig Topper5ccb6172014-02-18 00:21:49 +0000179class T8PS : T8 { Prefix OpPrefix = PS; }
Craig Topperda7160d2014-02-01 08:17:56 +0000180class T8PD : T8 { Prefix OpPrefix = PD; }
181class T8XD : T8 { Prefix OpPrefix = XD; }
182class T8XS : T8 { Prefix OpPrefix = XS; }
Craig Topper5ccb6172014-02-18 00:21:49 +0000183class TAPS : TA { Prefix OpPrefix = PS; }
Craig Topperda7160d2014-02-01 08:17:56 +0000184class TAPD : TA { Prefix OpPrefix = PD; }
185class TAXD : TA { Prefix OpPrefix = XD; }
Craig Topperd402df32014-02-02 07:08:01 +0000186class VEX { Encoding OpEnc = EncVEX; }
Bruno Cardoso Lopes05166742010-07-01 01:20:06 +0000187class VEX_W { bit hasVEX_WPrefix = 1; }
Craig Topperd402df32014-02-02 07:08:01 +0000188class VEX_4V : VEX { bit hasVEX_4V = 1; }
189class VEX_4VOp3 : VEX { bit hasVEX_4VOp3 = 1; }
Bruno Cardoso Lopese2bd0582010-07-06 22:36:24 +0000190class VEX_I8IMM { bit hasVEX_i8ImmReg = 1; }
Bruno Cardoso Lopesfd8bfcd2010-07-13 21:07:28 +0000191class VEX_L { bit hasVEX_L = 1; }
Craig Topperf18c8962011-10-04 06:30:42 +0000192class VEX_LIG { bit ignoresVEX_L = 1; }
Craig Topperd402df32014-02-02 07:08:01 +0000193class EVEX : VEX { Encoding OpEnc = EncEVEX; }
194class EVEX_4V : VEX_4V { Encoding OpEnc = EncEVEX; }
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000195class EVEX_K { bit hasEVEX_K = 1; }
196class EVEX_KZ : EVEX_K { bit hasEVEX_Z = 1; }
197class EVEX_B { bit hasEVEX_B = 1; }
Elena Demikhovskyb19c9dc2014-01-13 12:55:03 +0000198class EVEX_RC { bit hasEVEX_RC = 1; }
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000199class EVEX_V512 { bit hasEVEX_L2 = 1; bit hasVEX_L = 0; }
Robert Khasanovbfa01312014-07-21 14:54:21 +0000200class EVEX_V256 { bit hasEVEX_L2 = 0; bit hasVEX_L = 1; }
201class EVEX_V128 { bit hasEVEX_L2 = 0; bit hasVEX_L = 0; }
Adam Nemet4dc92b92014-07-17 17:04:34 +0000202
203// Specify AVX512 8-bit compressed displacement encoding based on the vector
204// element size in bits (8, 16, 32, 64) and the CDisp8 form.
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000205class EVEX_CD8<int esize, CD8VForm form> {
Adam Nemet4dc92b92014-07-17 17:04:34 +0000206 int CD8_EltSize = !srl(esize, 3);
Adam Nemet4c339ab2014-07-17 17:04:52 +0000207 bits<3> CD8_Form = form.Value;
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000208}
Adam Nemet4dc92b92014-07-17 17:04:34 +0000209
Chris Lattner45270db2010-10-03 18:08:05 +0000210class Has3DNow0F0FOpcode { bit has3DNow0F0FOpcode = 1; }
Craig Toppercd93de92011-12-30 04:48:54 +0000211class MemOp4 { bit hasMemOp4Prefix = 1; }
Craig Topperd402df32014-02-02 07:08:01 +0000212class XOP { Encoding OpEnc = EncXOP; }
213class XOP_4V : XOP { bit hasVEX_4V = 1; }
214class XOP_4VOp3 : XOP { bit hasVEX_4VOp3 = 1; }
215
Evan Cheng12c6be82007-07-31 08:04:03 +0000216class X86Inst<bits<8> opcod, Format f, ImmType i, dag outs, dag ins,
Andrew Trick8523b162012-02-01 23:20:51 +0000217 string AsmStr,
218 InstrItinClass itin,
219 Domain d = GenericDomain>
Evan Cheng12c6be82007-07-31 08:04:03 +0000220 : Instruction {
221 let Namespace = "X86";
222
223 bits<8> Opcode = opcod;
224 Format Form = f;
Craig Topper56f0ed812014-02-19 08:25:02 +0000225 bits<7> FormBits = Form.Value;
Evan Cheng12c6be82007-07-31 08:04:03 +0000226 ImmType ImmT = i;
Evan Cheng12c6be82007-07-31 08:04:03 +0000227
228 dag OutOperandList = outs;
229 dag InOperandList = ins;
230 string AsmString = AsmStr;
231
Chris Lattner7ff33462010-10-31 19:22:57 +0000232 // If this is a pseudo instruction, mark it isCodeGenOnly.
233 let isCodeGenOnly = !eq(!cast<string>(f), "Pseudo");
234
Andrew Trick8523b162012-02-01 23:20:51 +0000235 let Itinerary = itin;
236
Evan Cheng12c6be82007-07-31 08:04:03 +0000237 //
238 // Attributes specific to X86 instructions...
239 //
Craig Topper3484fc22014-01-05 04:17:28 +0000240 bit ForceDisassemble = 0; // Force instruction to disassemble even though it's
241 // isCodeGenonly. Needed to hide an ambiguous
242 // AsmString from the parser, but still disassemble.
243
Craig Topperfa6298a2014-02-02 09:25:09 +0000244 OperandSize OpSize = OpSizeFixed; // Does this instruction's encoding change
Craig Topperb86338f2014-12-24 06:05:22 +0000245 // based on operand size of the mode?
Craig Toppere413b622014-02-26 06:01:21 +0000246 bits<2> OpSizeBits = OpSize.Value;
Craig Topperb86338f2014-12-24 06:05:22 +0000247 AddressSize AdSize = AdSizeX; // Does this instruction's encoding change
248 // based on address size of the mode?
249 bits<2> AdSizeBits = AdSize.Value;
Evan Cheng12c6be82007-07-31 08:04:03 +0000250
Craig Topper10243c82014-01-31 08:47:06 +0000251 Prefix OpPrefix = NoPrfx; // Which prefix byte does this inst have?
Craig Toppere413b622014-02-26 06:01:21 +0000252 bits<3> OpPrefixBits = OpPrefix.Value;
Craig Topper10243c82014-01-31 08:47:06 +0000253 Map OpMap = OB; // Which opcode map does this inst have?
Craig Toppere413b622014-02-26 06:01:21 +0000254 bits<3> OpMapBits = OpMap.Value;
Eric Christopher3a8ae232010-11-30 09:11:54 +0000255 bit hasREX_WPrefix = 0; // Does this inst require the REX.W prefix?
Jakob Stoklund Olesenf8d7eda2010-03-25 18:52:01 +0000256 FPFormat FPForm = NotFP; // What flavor of FP instruction is this?
Dan Gohmana21bdda2008-08-20 13:46:21 +0000257 bit hasLockPrefix = 0; // Does this inst have a 0xF0 prefix?
Jakob Stoklund Olesenf8d7eda2010-03-25 18:52:01 +0000258 Domain ExeDomain = d;
Craig Topperec688662014-01-31 07:00:55 +0000259 bit hasREPPrefix = 0; // Does this inst have a REP prefix?
Craig Topperd402df32014-02-02 07:08:01 +0000260 Encoding OpEnc = EncNormal; // Encoding used by this instruction
Craig Toppere413b622014-02-26 06:01:21 +0000261 bits<2> OpEncBits = OpEnc.Value;
Bruno Cardoso Lopes05166742010-07-01 01:20:06 +0000262 bit hasVEX_WPrefix = 0; // Does this inst set the VEX_W field?
Craig Topperd402df32014-02-02 07:08:01 +0000263 bit hasVEX_4V = 0; // Does this inst require the VEX.VVVV field?
264 bit hasVEX_4VOp3 = 0; // Does this inst require the VEX.VVVV field to
265 // encode the third operand?
Eric Christopher3a8ae232010-11-30 09:11:54 +0000266 bit hasVEX_i8ImmReg = 0; // Does this inst require the last source register
Bruno Cardoso Lopese2bd0582010-07-06 22:36:24 +0000267 // to be encoded in a immediate field?
Eric Christopher3a8ae232010-11-30 09:11:54 +0000268 bit hasVEX_L = 0; // Does this inst use large (256-bit) registers?
Craig Topperf18c8962011-10-04 06:30:42 +0000269 bit ignoresVEX_L = 0; // Does this instruction ignore the L-bit
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000270 bit hasEVEX_K = 0; // Does this inst require masking?
271 bit hasEVEX_Z = 0; // Does this inst set the EVEX_Z field?
272 bit hasEVEX_L2 = 0; // Does this inst set the EVEX_L2 field?
273 bit hasEVEX_B = 0; // Does this inst set the EVEX_B field?
Adam Nemet4c339ab2014-07-17 17:04:52 +0000274 bits<3> CD8_Form = 0; // Compressed disp8 form - vector-width.
Adam Nemet4dc92b92014-07-17 17:04:34 +0000275 // Declare it int rather than bits<4> so that all bits are defined when
276 // assigning to bits<7>.
277 int CD8_EltSize = 0; // Compressed disp8 form - element-size in bytes.
Chris Lattner45270db2010-10-03 18:08:05 +0000278 bit has3DNow0F0FOpcode =0;// Wacky 3dNow! encoding?
Craig Toppercd93de92011-12-30 04:48:54 +0000279 bit hasMemOp4Prefix = 0; // Same bit as VEX_W, but used for swapping operands
Elena Demikhovskyb19c9dc2014-01-13 12:55:03 +0000280 bit hasEVEX_RC = 0; // Explicitly specified rounding control in FP instruction.
Jakob Stoklund Olesenb93331f2010-04-05 03:10:20 +0000281
Adam Nemet4dc92b92014-07-17 17:04:34 +0000282 bits<2> EVEX_LL;
283 let EVEX_LL{0} = hasVEX_L;
284 let EVEX_LL{1} = hasEVEX_L2;
285 // Vector size in bytes.
286 bits<7> VectSize = !shl(16, EVEX_LL);
287
288 // The scaling factor for AVX512's compressed displacement is either
289 // - the size of a power-of-two number of elements or
290 // - the size of a single element for broadcasts or
291 // - the total vector size divided by a power-of-two number.
292 // Possible values are: 0 (non-AVX512 inst), 1, 2, 4, 8, 16, 32 and 64.
293 bits<7> CD8_Scale = !if (!eq (OpEnc.Value, EncEVEX.Value),
Adam Nemet4c339ab2014-07-17 17:04:52 +0000294 !if (CD8_Form{2},
295 !shl(CD8_EltSize, CD8_Form{1-0}),
Adam Nemet4dc92b92014-07-17 17:04:34 +0000296 !if (hasEVEX_B,
297 CD8_EltSize,
Adam Nemet4c339ab2014-07-17 17:04:52 +0000298 !srl(VectSize, CD8_Form{1-0}))), 0);
Adam Nemet4dc92b92014-07-17 17:04:34 +0000299
Craig Topperb86338f2014-12-24 06:05:22 +0000300 // TSFlags layout should be kept in sync with X86BaseInfo.h.
Craig Topper56f0ed812014-02-19 08:25:02 +0000301 let TSFlags{6-0} = FormBits;
Craig Toppere413b622014-02-26 06:01:21 +0000302 let TSFlags{8-7} = OpSizeBits;
Craig Topperb86338f2014-12-24 06:05:22 +0000303 let TSFlags{10-9} = AdSizeBits;
304 let TSFlags{13-11} = OpPrefixBits;
305 let TSFlags{16-14} = OpMapBits;
306 let TSFlags{17} = hasREX_WPrefix;
307 let TSFlags{21-18} = ImmT.Value;
308 let TSFlags{24-22} = FPForm.Value;
309 let TSFlags{25} = hasLockPrefix;
310 let TSFlags{26} = hasREPPrefix;
311 let TSFlags{28-27} = ExeDomain.Value;
312 let TSFlags{30-29} = OpEncBits;
313 let TSFlags{38-31} = Opcode;
314 let TSFlags{39} = hasVEX_WPrefix;
315 let TSFlags{40} = hasVEX_4V;
316 let TSFlags{41} = hasVEX_4VOp3;
317 let TSFlags{42} = hasVEX_i8ImmReg;
318 let TSFlags{43} = hasVEX_L;
319 let TSFlags{44} = ignoresVEX_L;
320 let TSFlags{45} = hasEVEX_K;
321 let TSFlags{46} = hasEVEX_Z;
322 let TSFlags{47} = hasEVEX_L2;
323 let TSFlags{48} = hasEVEX_B;
Adam Nemet54adb0f2014-07-17 17:04:50 +0000324 // If we run out of TSFlags bits, it's possible to encode this in 3 bits.
Craig Topperb86338f2014-12-24 06:05:22 +0000325 let TSFlags{55-49} = CD8_Scale;
326 let TSFlags{56} = has3DNow0F0FOpcode;
327 let TSFlags{57} = hasMemOp4Prefix;
328 let TSFlags{58} = hasEVEX_RC;
Evan Cheng12c6be82007-07-31 08:04:03 +0000329}
330
Eric Christopheref62f572010-11-30 08:57:23 +0000331class PseudoI<dag oops, dag iops, list<dag> pattern>
Andrew Trick8523b162012-02-01 23:20:51 +0000332 : X86Inst<0, Pseudo, NoImm, oops, iops, "", NoItinerary> {
Eric Christopheref62f572010-11-30 08:57:23 +0000333 let Pattern = pattern;
334}
335
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000336class I<bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000337 list<dag> pattern, InstrItinClass itin = NoItinerary,
Andrew Trick8523b162012-02-01 23:20:51 +0000338 Domain d = GenericDomain>
339 : X86Inst<o, f, NoImm, outs, ins, asm, itin, d> {
Evan Cheng12c6be82007-07-31 08:04:03 +0000340 let Pattern = pattern;
341 let CodeSize = 3;
342}
Michael Liao5bf95782014-12-04 05:20:33 +0000343class Ii8 <bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000344 list<dag> pattern, InstrItinClass itin = NoItinerary,
Andrew Trick8523b162012-02-01 23:20:51 +0000345 Domain d = GenericDomain>
346 : X86Inst<o, f, Imm8, outs, ins, asm, itin, d> {
Evan Cheng12c6be82007-07-31 08:04:03 +0000347 let Pattern = pattern;
348 let CodeSize = 3;
349}
Michael Liao5bf95782014-12-04 05:20:33 +0000350class Ii8PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000351 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000352 : X86Inst<o, f, Imm8PCRel, outs, ins, asm, itin> {
Chris Lattner12455ca2010-02-12 22:27:07 +0000353 let Pattern = pattern;
354 let CodeSize = 3;
355}
Michael Liao5bf95782014-12-04 05:20:33 +0000356class Ii16<bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000357 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000358 : X86Inst<o, f, Imm16, outs, ins, asm, itin> {
Evan Cheng12c6be82007-07-31 08:04:03 +0000359 let Pattern = pattern;
360 let CodeSize = 3;
361}
Michael Liao5bf95782014-12-04 05:20:33 +0000362class Ii32<bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000363 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000364 : X86Inst<o, f, Imm32, outs, ins, asm, itin> {
Evan Cheng12c6be82007-07-31 08:04:03 +0000365 let Pattern = pattern;
366 let CodeSize = 3;
367}
David Woodhouse0b6c9492014-01-30 22:20:41 +0000368class Ii32S<bits<8> o, Format f, dag outs, dag ins, string asm,
369 list<dag> pattern, InstrItinClass itin = NoItinerary>
370 : X86Inst<o, f, Imm32S, outs, ins, asm, itin> {
371 let Pattern = pattern;
372 let CodeSize = 3;
373}
Evan Cheng12c6be82007-07-31 08:04:03 +0000374
Michael Liao5bf95782014-12-04 05:20:33 +0000375class Ii16PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000376 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000377 : X86Inst<o, f, Imm16PCRel, outs, ins, asm, itin> {
Chris Lattnerac588122010-07-07 22:27:31 +0000378 let Pattern = pattern;
379 let CodeSize = 3;
380}
381
Michael Liao5bf95782014-12-04 05:20:33 +0000382class Ii32PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000383 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000384 : X86Inst<o, f, Imm32PCRel, outs, ins, asm, itin> {
Chris Lattner12455ca2010-02-12 22:27:07 +0000385 let Pattern = pattern;
386 let CodeSize = 3;
387}
388
Evan Cheng12c6be82007-07-31 08:04:03 +0000389// FPStack Instruction Templates:
390// FPI - Floating Point Instruction template.
Preston Gurdfa3f6cb2012-05-02 16:03:35 +0000391class FPI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000392 InstrItinClass itin = NoItinerary>
Preston Gurdfa3f6cb2012-05-02 16:03:35 +0000393 : I<o, F, outs, ins, asm, [], itin> {}
Evan Cheng12c6be82007-07-31 08:04:03 +0000394
Bob Wilsona967c422010-08-26 18:08:11 +0000395// FpI_ - Floating Point Pseudo Instruction template. Not Predicated.
Andrew Trick8523b162012-02-01 23:20:51 +0000396class FpI_<dag outs, dag ins, FPFormat fp, list<dag> pattern,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000397 InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000398 : X86Inst<0, Pseudo, NoImm, outs, ins, "", itin> {
Jakob Stoklund Olesenf8d7eda2010-03-25 18:52:01 +0000399 let FPForm = fp;
Evan Cheng12c6be82007-07-31 08:04:03 +0000400 let Pattern = pattern;
401}
402
Sean Callanan050e0cd2009-09-15 00:35:17 +0000403// Templates for instructions that use a 16- or 32-bit segmented address as
404// their only operand: lcall (FAR CALL) and ljmp (FAR JMP)
405//
406// Iseg16 - 16-bit segment selector, 16-bit offset
407// Iseg32 - 16-bit segment selector, 32-bit offset
408
Michael Liao5bf95782014-12-04 05:20:33 +0000409class Iseg16 <bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000410 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000411 : X86Inst<o, f, Imm16, outs, ins, asm, itin> {
Sean Callanan050e0cd2009-09-15 00:35:17 +0000412 let Pattern = pattern;
413 let CodeSize = 3;
414}
415
Michael Liao5bf95782014-12-04 05:20:33 +0000416class Iseg32 <bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000417 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000418 : X86Inst<o, f, Imm32, outs, ins, asm, itin> {
Sean Callanan050e0cd2009-09-15 00:35:17 +0000419 let Pattern = pattern;
420 let CodeSize = 3;
421}
422
Bruno Cardoso Lopes6b98f712010-06-17 23:05:30 +0000423// SI - SSE 1 & 2 scalar instructions
Andrew Trick8523b162012-02-01 23:20:51 +0000424class SI<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 : I<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],
430 !if(!eq(OpPrefix.Value, XD.Value), [UseSSE2],
431 !if(!eq(OpPrefix.Value, PD.Value), [UseSSE2],
Craig Topper10243c82014-01-31 08:47:06 +0000432 [UseSSE1])))));
Bruno Cardoso Lopes6b98f712010-06-17 23:05:30 +0000433
434 // AVX instructions have a 'v' prefix in the mnemonic
Craig Topperd402df32014-02-02 07:08:01 +0000435 let AsmString = !if(!eq(OpEnc.Value, EncEVEX.Value), !strconcat("v", asm),
436 !if(!eq(OpEnc.Value, EncVEX.Value), !strconcat("v", asm),
437 asm));
Bruno Cardoso Lopes6b98f712010-06-17 23:05:30 +0000438}
439
Bruno Cardoso Lopes191a1cd2010-06-24 00:32:06 +0000440// SIi8 - SSE 1 & 2 scalar instructions
441class SIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000442 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000443 : Ii8<o, F, outs, ins, asm, pattern, itin> {
Craig Topperd402df32014-02-02 07:08:01 +0000444 let Predicates = !if(!eq(OpEnc.Value, EncEVEX.Value), [HasAVX512],
445 !if(!eq(OpEnc.Value, EncVEX.Value), [UseAVX],
446 !if(!eq(OpPrefix.Value, XS.Value), [UseSSE1],
Craig Topper10243c82014-01-31 08:47:06 +0000447 [UseSSE2])));
Bruno Cardoso Lopes191a1cd2010-06-24 00:32:06 +0000448
449 // AVX instructions have a 'v' prefix in the mnemonic
Craig Topperd402df32014-02-02 07:08:01 +0000450 let AsmString = !if(!eq(OpEnc.Value, EncEVEX.Value), !strconcat("v", asm),
451 !if(!eq(OpEnc.Value, EncVEX.Value), !strconcat("v", asm),
452 asm));
Bruno Cardoso Lopes191a1cd2010-06-24 00:32:06 +0000453}
454
Bruno Cardoso Lopes2bfad412010-06-18 23:13:35 +0000455// PI - SSE 1 & 2 packed instructions
456class PI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern,
Andrew Trick8523b162012-02-01 23:20:51 +0000457 InstrItinClass itin, Domain d>
458 : I<o, F, outs, ins, asm, pattern, itin, d> {
Craig Topperd402df32014-02-02 07:08:01 +0000459 let Predicates = !if(!eq(OpEnc.Value, EncEVEX.Value), [HasAVX512],
460 !if(!eq(OpEnc.Value, EncVEX.Value), [HasAVX],
461 !if(!eq(OpPrefix.Value, PD.Value), [UseSSE2],
Craig Topper10243c82014-01-31 08:47:06 +0000462 [UseSSE1])));
Bruno Cardoso Lopes2bfad412010-06-18 23:13:35 +0000463
464 // AVX instructions have a 'v' prefix in the mnemonic
Craig Topperd402df32014-02-02 07:08:01 +0000465 let AsmString = !if(!eq(OpEnc.Value, EncEVEX.Value), !strconcat("v", asm),
466 !if(!eq(OpEnc.Value, EncVEX.Value), !strconcat("v", asm),
467 asm));
Bruno Cardoso Lopes2bfad412010-06-18 23:13:35 +0000468}
469
Michael Liaobbd10792012-08-30 16:54:46 +0000470// MMXPI - SSE 1 & 2 packed instructions with MMX operands
471class MMXPI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern,
472 InstrItinClass itin, Domain d>
473 : I<o, F, outs, ins, asm, pattern, itin, d> {
Craig Topperd402df32014-02-02 07:08:01 +0000474 let Predicates = !if(!eq(OpPrefix.Value, PD.Value), [HasSSE2],
Craig Topper10243c82014-01-31 08:47:06 +0000475 [HasSSE1]);
Michael Liaobbd10792012-08-30 16:54:46 +0000476}
477
Bruno Cardoso Lopes1e13c172010-06-22 23:37:59 +0000478// PIi8 - SSE 1 & 2 packed instructions with immediate
479class PIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Andrew Trick8523b162012-02-01 23:20:51 +0000480 list<dag> pattern, InstrItinClass itin, Domain d>
481 : Ii8<o, F, outs, ins, asm, pattern, itin, d> {
Craig Topperd402df32014-02-02 07:08:01 +0000482 let Predicates = !if(!eq(OpEnc.Value, EncEVEX.Value), [HasAVX512],
483 !if(!eq(OpEnc.Value, EncVEX.Value), [HasAVX],
484 !if(!eq(OpPrefix.Value, PD.Value), [UseSSE2],
Craig Topper10243c82014-01-31 08:47:06 +0000485 [UseSSE1])));
Bruno Cardoso Lopes1e13c172010-06-22 23:37:59 +0000486
487 // AVX instructions have a 'v' prefix in the mnemonic
Craig Topperd402df32014-02-02 07:08:01 +0000488 let AsmString = !if(!eq(OpEnc.Value, EncEVEX.Value), !strconcat("v", asm),
489 !if(!eq(OpEnc.Value, EncVEX.Value), !strconcat("v", asm),
490 asm));
Bruno Cardoso Lopes1e13c172010-06-22 23:37:59 +0000491}
492
Evan Cheng12c6be82007-07-31 08:04:03 +0000493// SSE1 Instruction Templates:
Michael Liao5bf95782014-12-04 05:20:33 +0000494//
Evan Cheng12c6be82007-07-31 08:04:03 +0000495// SSI - SSE1 instructions with XS prefix.
Craig Topper5ccb6172014-02-18 00:21:49 +0000496// PSI - SSE1 instructions with PS prefix.
497// PSIi8 - SSE1 instructions with ImmT == Imm8 and PS prefix.
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000498// VSSI - SSE1 instructions with XS prefix in AVX form.
Craig Topper5ccb6172014-02-18 00:21:49 +0000499// VPSI - SSE1 instructions with PS prefix in AVX form, packed single.
Evan Cheng12c6be82007-07-31 08:04:03 +0000500
Andrew Trick8523b162012-02-01 23:20:51 +0000501class SSI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000502 list<dag> pattern, InstrItinClass itin = NoItinerary>
Michael Liaobbd10792012-08-30 16:54:46 +0000503 : I<o, F, outs, ins, asm, pattern, itin>, XS, Requires<[UseSSE1]>;
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000504class SSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000505 list<dag> pattern, InstrItinClass itin = NoItinerary>
Michael Liaobbd10792012-08-30 16:54:46 +0000506 : Ii8<o, F, outs, ins, asm, pattern, itin>, XS, Requires<[UseSSE1]>;
Andrew Trick8523b162012-02-01 23:20:51 +0000507class PSI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000508 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topper5ccb6172014-02-18 00:21:49 +0000509 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedSingle>, PS,
Michael Liaobbd10792012-08-30 16:54:46 +0000510 Requires<[UseSSE1]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000511class PSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000512 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topper5ccb6172014-02-18 00:21:49 +0000513 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedSingle>, PS,
Michael Liaobbd10792012-08-30 16:54:46 +0000514 Requires<[UseSSE1]>;
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000515class VSSI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000516 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000517 : I<o, F, outs, ins, !strconcat("v", asm), pattern, itin>, XS,
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000518 Requires<[HasAVX]>;
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000519class VPSI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000520 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topper5ccb6172014-02-18 00:21:49 +0000521 : I<o, F, outs, ins, !strconcat("v", asm), pattern, itin, SSEPackedSingle>, PS,
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000522 Requires<[HasAVX]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000523
524// SSE2 Instruction Templates:
Michael Liao5bf95782014-12-04 05:20:33 +0000525//
Bill Wendling76105a42008-08-27 21:32:04 +0000526// SDI - SSE2 instructions with XD prefix.
527// SDIi8 - SSE2 instructions with ImmT == Imm8 and XD prefix.
Craig Topperf881d382012-07-30 02:14:02 +0000528// S2SI - SSE2 instructions with XS prefix.
Bill Wendling76105a42008-08-27 21:32:04 +0000529// SSDIi8 - SSE2 instructions with ImmT == Imm8 and XS prefix.
Craig Topperae11aed2014-01-14 07:41:20 +0000530// PDI - SSE2 instructions with PD prefix, packed double domain.
531// PDIi8 - SSE2 instructions with ImmT == Imm8 and PD prefix.
Elena Demikhovsky89703c02013-06-09 07:37:10 +0000532// VSDI - SSE2 scalar instructions with XD prefix in AVX form.
Craig Topperae11aed2014-01-14 07:41:20 +0000533// VPDI - SSE2 vector instructions with PD prefix in AVX form,
Elena Demikhovsky89703c02013-06-09 07:37:10 +0000534// packed double domain.
Craig Topperae11aed2014-01-14 07:41:20 +0000535// VS2I - SSE2 scalar instructions with PD prefix in AVX form.
536// S2I - SSE2 scalar instructions with PD prefix.
Michael Liaobbd10792012-08-30 16:54:46 +0000537// MMXSDIi8 - SSE2 instructions with ImmT == Imm8 and XD prefix as well as
538// MMX operands.
539// MMXSSDIi8 - SSE2 instructions with ImmT == Imm8 and XS prefix as well as
540// MMX operands.
Evan Cheng12c6be82007-07-31 08:04:03 +0000541
Andrew Trick8523b162012-02-01 23:20:51 +0000542class SDI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000543 list<dag> pattern, InstrItinClass itin = NoItinerary>
Michael Liaobbd10792012-08-30 16:54:46 +0000544 : I<o, F, outs, ins, asm, pattern, itin>, XD, Requires<[UseSSE2]>;
Evan Cheng01c7c192007-12-20 19:57:09 +0000545class SDIi8<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>
Michael Liaobbd10792012-08-30 16:54:46 +0000547 : Ii8<o, F, outs, ins, asm, pattern, itin>, XD, Requires<[UseSSE2]>;
Craig Topperf881d382012-07-30 02:14:02 +0000548class S2SI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000549 list<dag> pattern, InstrItinClass itin = NoItinerary>
Michael Liaobbd10792012-08-30 16:54:46 +0000550 : I<o, F, outs, ins, asm, pattern, itin>, XS, Requires<[UseSSE2]>;
Craig Topperf881d382012-07-30 02:14:02 +0000551class S2SIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000552 list<dag> pattern, InstrItinClass itin = NoItinerary>
Michael Liaobbd10792012-08-30 16:54:46 +0000553 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[UseSSE2]>;
Andrew Trick8523b162012-02-01 23:20:51 +0000554class PDI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000555 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000556 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedDouble>, PD,
Michael Liaobbd10792012-08-30 16:54:46 +0000557 Requires<[UseSSE2]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000558class PDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000559 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000560 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedDouble>, PD,
Michael Liaobbd10792012-08-30 16:54:46 +0000561 Requires<[UseSSE2]>;
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000562class VSDI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000563 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000564 : I<o, F, outs, ins, !strconcat("v", asm), pattern, itin>, XD,
Elena Demikhovsky3ce8dbb2013-08-18 13:08:57 +0000565 Requires<[UseAVX]>;
Craig Topperf881d382012-07-30 02:14:02 +0000566class VS2SI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000567 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperf881d382012-07-30 02:14:02 +0000568 : I<o, F, outs, ins, !strconcat("v", asm), pattern, itin>, XS,
569 Requires<[HasAVX]>;
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000570class VPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000571 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000572 : I<o, F, outs, ins, !strconcat("v", asm), pattern, itin, SSEPackedDouble>,
573 PD, Requires<[HasAVX]>;
Elena Demikhovsky89703c02013-06-09 07:37:10 +0000574class VS2I<bits<8> o, Format F, dag outs, dag ins, string asm,
575 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000576 : I<o, F, outs, ins, !strconcat("v", asm), pattern, itin>, PD,
577 Requires<[UseAVX]>;
Elena Demikhovsky89703c02013-06-09 07:37:10 +0000578class S2I<bits<8> o, Format F, dag outs, dag ins, string asm,
579 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000580 : I<o, F, outs, ins, asm, pattern, itin>, PD, Requires<[UseSSE2]>;
Michael Liaobbd10792012-08-30 16:54:46 +0000581class MMXSDIi8<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>
Michael Liaobbd10792012-08-30 16:54:46 +0000583 : Ii8<o, F, outs, ins, asm, pattern, itin>, XD, Requires<[HasSSE2]>;
584class MMXS2SIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000585 list<dag> pattern, InstrItinClass itin = NoItinerary>
Michael Liaobbd10792012-08-30 16:54:46 +0000586 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE2]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000587
588// SSE3 Instruction Templates:
Michael Liao5bf95782014-12-04 05:20:33 +0000589//
Craig Topperae11aed2014-01-14 07:41:20 +0000590// S3I - SSE3 instructions with PD prefixes.
Evan Cheng12c6be82007-07-31 08:04:03 +0000591// S3SI - SSE3 instructions with XS prefix.
592// S3DI - SSE3 instructions with XD prefix.
593
Michael Liao5bf95782014-12-04 05:20:33 +0000594class S3SI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000595 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000596 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedSingle>, XS,
Michael Liaobbd10792012-08-30 16:54:46 +0000597 Requires<[UseSSE3]>;
Michael Liao5bf95782014-12-04 05:20:33 +0000598class S3DI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000599 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000600 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedDouble>, XD,
Michael Liaobbd10792012-08-30 16:54:46 +0000601 Requires<[UseSSE3]>;
Andrew Trick8523b162012-02-01 23:20:51 +0000602class S3I<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, SSEPackedDouble>, PD,
Michael Liaobbd10792012-08-30 16:54:46 +0000605 Requires<[UseSSE3]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000606
607
Nate Begeman8ef50212008-02-12 22:51:28 +0000608// SSSE3 Instruction Templates:
Michael Liao5bf95782014-12-04 05:20:33 +0000609//
Nate Begeman8ef50212008-02-12 22:51:28 +0000610// SS38I - SSSE3 instructions with T8 prefix.
611// SS3AI - SSSE3 instructions with TA prefix.
Michael Liaobbd10792012-08-30 16:54:46 +0000612// MMXSS38I - SSSE3 instructions with T8 prefix and MMX operands.
613// MMXSS3AI - SSSE3 instructions with TA prefix and MMX operands.
Nate Begeman8ef50212008-02-12 22:51:28 +0000614//
615// Note: SSSE3 instructions have 64-bit and 128-bit versions. The 64-bit version
Craig Topper744f6312012-01-09 00:11:29 +0000616// uses the MMX registers. The 64-bit versions are grouped with the MMX
617// classes. They need to be enabled even if AVX is enabled.
Nate Begeman8ef50212008-02-12 22:51:28 +0000618
619class SS38I<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000620 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000621 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PD,
Michael Liaobbd10792012-08-30 16:54:46 +0000622 Requires<[UseSSSE3]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000623class SS3AI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000624 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000625 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
Michael Liaobbd10792012-08-30 16:54:46 +0000626 Requires<[UseSSSE3]>;
627class MMXSS38I<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000628 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topper87557402014-02-18 08:24:22 +0000629 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PS,
Michael Liaobbd10792012-08-30 16:54:46 +0000630 Requires<[HasSSSE3]>;
631class MMXSS3AI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000632 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topper87557402014-02-18 08:24:22 +0000633 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPS,
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000634 Requires<[HasSSSE3]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000635
636// SSE4.1 Instruction Templates:
Michael Liao5bf95782014-12-04 05:20:33 +0000637//
Nate Begeman8ef50212008-02-12 22:51:28 +0000638// SS48I - SSE 4.1 instructions with T8 prefix.
Evan Cheng96bdbd62008-03-14 07:39:27 +0000639// SS41AIi8 - SSE 4.1 instructions with TA prefix and ImmT == Imm8.
Nate Begeman8ef50212008-02-12 22:51:28 +0000640//
641class SS48I<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000642 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000643 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PD,
Michael Liaobbd10792012-08-30 16:54:46 +0000644 Requires<[UseSSE41]>;
Evan Cheng96bdbd62008-03-14 07:39:27 +0000645class SS4AIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000646 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000647 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
Michael Liaobbd10792012-08-30 16:54:46 +0000648 Requires<[UseSSE41]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000649
Nate Begeman55b7bec2008-07-17 16:51:19 +0000650// SSE4.2 Instruction Templates:
Michael Liao5bf95782014-12-04 05:20:33 +0000651//
Nate Begeman55b7bec2008-07-17 16:51:19 +0000652// SS428I - SSE 4.2 instructions with T8 prefix.
653class SS428I<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000654 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000655 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PD,
Michael Liaobbd10792012-08-30 16:54:46 +0000656 Requires<[UseSSE42]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000657
Craig Topper96fa5972011-10-16 16:50:08 +0000658// SS42FI - SSE 4.2 instructions with T8XD prefix.
Michael Liaobbd10792012-08-30 16:54:46 +0000659// NOTE: 'HasSSE42' is used as SS42FI is only used for CRC32 insns.
Eric Christopher7dfa9f22009-08-08 21:55:08 +0000660class SS42FI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000661 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000662 : I<o, F, outs, ins, asm, pattern, itin>, T8XD, Requires<[HasSSE42]>;
Craig Topperb9109842012-01-01 19:51:58 +0000663
Eric Christopher9fe912d2009-08-18 22:50:32 +0000664// SS42AI = SSE 4.2 instructions with TA prefix
665class SS42AI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000666 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000667 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
Michael Liaobbd10792012-08-30 16:54:46 +0000668 Requires<[UseSSE42]>;
Eric Christopher9fe912d2009-08-18 22:50:32 +0000669
Bruno Cardoso Lopes14c5fd42010-07-20 00:11:13 +0000670// AVX Instruction Templates:
671// Instructions introduced in AVX (no SSE equivalent forms)
672//
Craig Topperae11aed2014-01-14 07:41:20 +0000673// AVX8I - AVX instructions with T8PD prefix.
674// AVXAIi8 - AVX instructions with TAPD prefix and ImmT = Imm8.
Bruno Cardoso Lopes14c5fd42010-07-20 00:11:13 +0000675class AVX8I<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000676 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000677 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PD,
Bruno Cardoso Lopes14c5fd42010-07-20 00:11:13 +0000678 Requires<[HasAVX]>;
Bruno Cardoso Lopes3b505842010-07-20 19:44:51 +0000679class AVXAIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000680 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000681 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
Bruno Cardoso Lopes3b505842010-07-20 19:44:51 +0000682 Requires<[HasAVX]>;
Bruno Cardoso Lopes14c5fd42010-07-20 00:11:13 +0000683
Craig Topper05d1cb92011-11-06 06:12:20 +0000684// AVX2 Instruction Templates:
685// Instructions introduced in AVX2 (no SSE equivalent forms)
686//
Craig Topperae11aed2014-01-14 07:41:20 +0000687// AVX28I - AVX2 instructions with T8PD prefix.
688// AVX2AIi8 - AVX2 instructions with TAPD prefix and ImmT = Imm8.
Craig Topper05d1cb92011-11-06 06:12:20 +0000689class AVX28I<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000690 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000691 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PD,
Craig Topper05d1cb92011-11-06 06:12:20 +0000692 Requires<[HasAVX2]>;
Craig Topperf01f1b52011-11-06 23:04:08 +0000693class AVX2AIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000694 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000695 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
Craig Topper05d1cb92011-11-06 06:12:20 +0000696 Requires<[HasAVX2]>;
697
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000698
699// AVX-512 Instruction Templates:
700// Instructions introduced in AVX-512 (no SSE equivalent forms)
701//
Craig Topperae11aed2014-01-14 07:41:20 +0000702// AVX5128I - AVX-512 instructions with T8PD prefix.
703// AVX512AIi8 - AVX-512 instructions with TAPD prefix and ImmT = Imm8.
704// AVX512PDI - AVX-512 instructions with PD, double packed.
Craig Topper5ccb6172014-02-18 00:21:49 +0000705// AVX512PSI - AVX-512 instructions with PS, single packed.
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000706// AVX512XS8I - AVX-512 instructions with T8 and XS prefixes.
707// AVX512XSI - AVX-512 instructions with XS prefix, generic domain.
Craig Topperae11aed2014-01-14 07:41:20 +0000708// AVX512BI - AVX-512 instructions with PD, int packed domain.
709// AVX512SI - AVX-512 scalar instructions with PD prefix.
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000710
711class AVX5128I<bits<8> o, Format F, dag outs, dag ins, string asm,
712 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000713 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PD,
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000714 Requires<[HasAVX512]>;
Cameron McInally5fb084e2014-12-11 17:13:05 +0000715class AVX5128IBase : T8PD {
716 Domain ExeDomain = SSEPackedInt;
717}
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000718class AVX512XS8I<bits<8> o, Format F, dag outs, dag ins, string asm,
719 list<dag> pattern, InstrItinClass itin = NoItinerary>
720 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8XS,
721 Requires<[HasAVX512]>;
722class AVX512XSI<bits<8> o, Format F, dag outs, dag ins, string asm,
723 list<dag> pattern, InstrItinClass itin = NoItinerary>
724 : I<o, F, outs, ins, asm, pattern, itin>, XS,
725 Requires<[HasAVX512]>;
726class AVX512XDI<bits<8> o, Format F, dag outs, dag ins, string asm,
727 list<dag> pattern, InstrItinClass itin = NoItinerary>
728 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, XD,
729 Requires<[HasAVX512]>;
730class AVX512BI<bits<8> o, Format F, dag outs, dag ins, string asm,
731 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000732 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, PD,
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000733 Requires<[HasAVX512]>;
Robert Khasanov44241442014-10-08 14:37:45 +0000734class AVX512BIBase : PD {
735 Domain ExeDomain = SSEPackedInt;
736}
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000737class AVX512BIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
738 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000739 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, PD,
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000740 Requires<[HasAVX512]>;
Cameron McInally04400442014-11-14 15:43:00 +0000741class AVX512BIi8Base : PD {
742 Domain ExeDomain = SSEPackedInt;
743 ImmType ImmT = Imm8;
744}
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000745class AVX512AIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
746 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000747 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000748 Requires<[HasAVX512]>;
Adam Nemet2e91ee52014-08-14 17:13:19 +0000749class AVX512AIi8Base : TAPD {
Adam Nemet2e2537f2014-08-07 17:53:55 +0000750 Domain ExeDomain = SSEPackedInt;
751 ImmType ImmT = Imm8;
752}
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000753class AVX512Ii8<bits<8> o, Format F, dag outs, dag ins, string asm,
754 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperda7160d2014-02-01 08:17:56 +0000755 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>,
Craig Topperae11aed2014-01-14 07:41:20 +0000756 Requires<[HasAVX512]>;
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000757class AVX512PDI<bits<8> o, Format F, dag outs, dag ins, string asm,
758 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000759 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedDouble>, PD,
760 Requires<[HasAVX512]>;
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000761class AVX512PSI<bits<8> o, Format F, dag outs, dag ins, string asm,
762 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topper5ccb6172014-02-18 00:21:49 +0000763 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedSingle>, PS,
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000764 Requires<[HasAVX512]>;
765class AVX512PIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
766 list<dag> pattern, Domain d, InstrItinClass itin = NoItinerary>
Craig Topperda7160d2014-02-01 08:17:56 +0000767 : Ii8<o, F, outs, ins, asm, pattern, itin, d>, Requires<[HasAVX512]>;
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000768class AVX512PI<bits<8> o, Format F, dag outs, dag ins, string asm,
769 list<dag> pattern, Domain d, InstrItinClass itin = NoItinerary>
Craig Topperda7160d2014-02-01 08:17:56 +0000770 : I<o, F, outs, ins, asm, pattern, itin, d>, Requires<[HasAVX512]>;
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000771class AVX512FMA3<bits<8> o, Format F, dag outs, dag ins, string asm,
772 list<dag>pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000773 : I<o, F, outs, ins, asm, pattern, itin>, T8PD,
774 EVEX_4V, Requires<[HasAVX512]>;
Adam Nemet2e91ee52014-08-14 17:13:19 +0000775class AVX512FMA3Base : T8PD, EVEX_4V;
Elena Demikhovsky003e7d72013-07-28 08:28:38 +0000776
Adam Nemet2e2537f2014-08-07 17:53:55 +0000777class AVX512<bits<8> o, Format F, dag outs, dag ins, string asm,
778 list<dag>pattern, InstrItinClass itin = NoItinerary>
779 : I<o, F, outs, ins, asm, pattern, itin>, Requires<[HasAVX512]>;
780
Eric Christopher2ef63182010-04-02 21:54:27 +0000781// AES Instruction Templates:
782//
783// AES8I
Eric Christopher1290fa02010-04-05 21:14:32 +0000784// These use the same encoding as the SSE4.2 T8 and TA encodings.
Eric Christopher2ef63182010-04-02 21:54:27 +0000785class AES8I<bits<8> o, Format F, dag outs, dag ins, string asm,
Preston Gurd3fe264d2013-09-13 19:23:28 +0000786 list<dag>pattern, InstrItinClass itin = IIC_AES>
Craig Topperae11aed2014-01-14 07:41:20 +0000787 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, T8PD,
Craig Topperc0cef322012-05-01 05:35:02 +0000788 Requires<[HasAES]>;
Eric Christopher2ef63182010-04-02 21:54:27 +0000789
790class AESAI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000791 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000792 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
Craig Topperc0cef322012-05-01 05:35:02 +0000793 Requires<[HasAES]>;
Eric Christopher2ef63182010-04-02 21:54:27 +0000794
Benjamin Kramera0396e42012-05-31 14:34:17 +0000795// PCLMUL Instruction Templates
796class PCLMULIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000797 list<dag>pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000798 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
799 Requires<[HasPCLMUL]>;
Eli Friedman415412e2011-07-05 18:21:20 +0000800
Benjamin Kramera0396e42012-05-31 14:34:17 +0000801class AVXPCLMULIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000802 list<dag>pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000803 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
804 VEX_4V, Requires<[HasAVX, HasPCLMUL]>;
Bruno Cardoso Lopesea0e05a2010-07-23 18:41:12 +0000805
Bruno Cardoso Lopesacd92302010-07-23 00:54:35 +0000806// FMA3 Instruction Templates
807class FMA3<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000808 list<dag>pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000809 : I<o, F, outs, ins, asm, pattern, itin>, T8PD,
810 VEX_4V, FMASC, Requires<[HasFMA]>;
Bruno Cardoso Lopesacd92302010-07-23 00:54:35 +0000811
Bruno Cardoso Lopes0f9a1f52011-11-25 19:33:42 +0000812// FMA4 Instruction Templates
813class FMA4<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000814 list<dag>pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000815 : Ii8<o, F, outs, ins, asm, pattern, itin>, TAPD,
816 VEX_4V, VEX_I8IMM, FMASC, Requires<[HasFMA4]>;
Bruno Cardoso Lopes0f9a1f52011-11-25 19:33:42 +0000817
Jan Sjödin7c0face2011-12-12 19:37:49 +0000818// XOP 2, 3 and 4 Operand Instruction Template
819class IXOP<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 : I<o, F, outs, ins, asm, pattern, itin, SSEPackedDouble>,
Craig Topperd402df32014-02-02 07:08:01 +0000822 XOP9, Requires<[HasXOP]>;
Jan Sjödin7c0face2011-12-12 19:37:49 +0000823
824// XOP 2, 3 and 4 Operand Instruction Templates with imm byte
825class IXOPi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000826 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000827 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedDouble>,
Craig Topperd402df32014-02-02 07:08:01 +0000828 XOP8, Requires<[HasXOP]>;
Jan Sjödin7c0face2011-12-12 19:37:49 +0000829
830// XOP 5 operand instruction (VEX encoding!)
831class IXOP5<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000832 list<dag>pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000833 : Ii8<o, F, outs, ins, asm, pattern, itin, SSEPackedInt>, TAPD,
834 VEX_4V, VEX_I8IMM, Requires<[HasXOP]>;
Jan Sjödin7c0face2011-12-12 19:37:49 +0000835
Evan Cheng12c6be82007-07-31 08:04:03 +0000836// X86-64 Instruction templates...
837//
838
Andrew Trick8523b162012-02-01 23:20:51 +0000839class RI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000840 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000841 : I<o, F, outs, ins, asm, pattern, itin>, REX_W;
Evan Cheng12c6be82007-07-31 08:04:03 +0000842class RIi8 <bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000843 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000844 : Ii8<o, F, outs, ins, asm, pattern, itin>, REX_W;
David Woodhouse4e033b02014-01-13 14:05:59 +0000845class RIi16 <bits<8> o, Format F, dag outs, dag ins, string asm,
846 list<dag> pattern, InstrItinClass itin = NoItinerary>
847 : Ii16<o, F, outs, ins, asm, pattern, itin>, REX_W;
Evan Cheng12c6be82007-07-31 08:04:03 +0000848class RIi32 <bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000849 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000850 : Ii32<o, F, outs, ins, asm, pattern, itin>, REX_W;
David Woodhouse0b6c9492014-01-30 22:20:41 +0000851class RIi32S <bits<8> o, Format F, dag outs, dag ins, string asm,
852 list<dag> pattern, InstrItinClass itin = NoItinerary>
853 : Ii32S<o, F, outs, ins, asm, pattern, itin>, REX_W;
Evan Cheng12c6be82007-07-31 08:04:03 +0000854
855class RIi64<bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000856 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000857 : X86Inst<o, f, Imm64, outs, ins, asm, itin>, REX_W {
Evan Cheng12c6be82007-07-31 08:04:03 +0000858 let Pattern = pattern;
859 let CodeSize = 3;
860}
861
Kevin Enderby285da022013-07-22 21:25:31 +0000862class RIi64_NOREX<bits<8> o, Format f, dag outs, dag ins, string asm,
863 list<dag> pattern, InstrItinClass itin = NoItinerary>
864 : X86Inst<o, f, Imm64, outs, ins, asm, itin> {
865 let Pattern = pattern;
866 let CodeSize = 3;
867}
868
Elena Demikhovsky89703c02013-06-09 07:37:10 +0000869class RS2I<bits<8> o, Format F, dag outs, dag ins, string asm,
870 list<dag> pattern, InstrItinClass itin = NoItinerary>
871 : S2I<o, F, outs, ins, asm, pattern, itin>, REX_W;
872class VRS2I<bits<8> o, Format F, dag outs, dag ins, string asm,
873 list<dag> pattern, InstrItinClass itin = NoItinerary>
874 : VS2I<o, F, outs, ins, asm, pattern, itin>, VEX_W;
Evan Cheng12c6be82007-07-31 08:04:03 +0000875
876// MMX Instruction templates
877//
878
879// MMXI - MMX instructions with TB prefix.
Craig Topperbc749db2013-10-09 02:18:34 +0000880// MMXI32 - MMX instructions with TB prefix valid only in 32 bit mode.
Anton Korobeynikov31099512008-08-23 15:53:19 +0000881// MMXI64 - MMX instructions with TB prefix valid only in 64 bit mode.
Craig Topperae11aed2014-01-14 07:41:20 +0000882// MMX2I - MMX / SSE2 instructions with PD prefix.
Craig Topper5ccb6172014-02-18 00:21:49 +0000883// MMXIi8 - MMX instructions with ImmT == Imm8 and PS prefix.
884// MMXIi8 - MMX instructions with ImmT == Imm8 and PS prefix.
Evan Cheng12c6be82007-07-31 08:04:03 +0000885// MMXID - MMX instructions with XD prefix.
886// MMXIS - MMX instructions with XS prefix.
Michael Liao5bf95782014-12-04 05:20:33 +0000887class MMXI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000888 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topper5ccb6172014-02-18 00:21:49 +0000889 : I<o, F, outs, ins, asm, pattern, itin>, PS, Requires<[HasMMX]>;
Michael Liao5bf95782014-12-04 05:20:33 +0000890class MMXI32<bits<8> o, Format F, dag outs, dag ins, string asm,
Craig Topperbc749db2013-10-09 02:18:34 +0000891 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topper5ccb6172014-02-18 00:21:49 +0000892 : I<o, F, outs, ins, asm, pattern, itin>, PS, Requires<[HasMMX,Not64BitMode]>;
Michael Liao5bf95782014-12-04 05:20:33 +0000893class MMXI64<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000894 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topper5ccb6172014-02-18 00:21:49 +0000895 : I<o, F, outs, ins, asm, pattern, itin>, PS, Requires<[HasMMX,In64BitMode]>;
Michael Liao5bf95782014-12-04 05:20:33 +0000896class MMXRI<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000897 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topper5ccb6172014-02-18 00:21:49 +0000898 : I<o, F, outs, ins, asm, pattern, itin>, PS, REX_W, Requires<[HasMMX]>;
Michael Liao5bf95782014-12-04 05:20:33 +0000899class MMX2I<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000900 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topperae11aed2014-01-14 07:41:20 +0000901 : I<o, F, outs, ins, asm, pattern, itin>, PD, Requires<[HasMMX]>;
Michael Liao5bf95782014-12-04 05:20:33 +0000902class MMXIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000903 list<dag> pattern, InstrItinClass itin = NoItinerary>
Craig Topper5ccb6172014-02-18 00:21:49 +0000904 : Ii8<o, F, outs, ins, asm, pattern, itin>, PS, Requires<[HasMMX]>;
Michael Liao5bf95782014-12-04 05:20:33 +0000905class MMXID<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000906 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000907 : Ii8<o, F, outs, ins, asm, pattern, itin>, XD, Requires<[HasMMX]>;
Michael Liao5bf95782014-12-04 05:20:33 +0000908class MMXIS<bits<8> o, Format F, dag outs, dag ins, string asm,
Jakob Stoklund Olesen4d39e812013-03-25 23:12:41 +0000909 list<dag> pattern, InstrItinClass itin = NoItinerary>
Andrew Trick8523b162012-02-01 23:20:51 +0000910 : Ii8<o, F, outs, ins, asm, pattern, itin>, XS, Requires<[HasMMX]>;