blob: dc92cb53cea8764a51a4ef2278f5a93aac93f7b8 [file] [log] [blame]
Evan Cheng12c6be82007-07-31 08:04:03 +00001//===- X86InstrFormats.td - X86 Instruction Formats --------*- tablegen -*-===//
2//
3// 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.
Evan Cheng12c6be82007-07-31 08:04:03 +00007//
8//===----------------------------------------------------------------------===//
9
10//===----------------------------------------------------------------------===//
11// X86 Instruction Format Definitions.
12//
13
14// Format specifies the encoding used by the instruction. This is part of the
15// ad-hoc solution used to emit machine instruction encodings by our machine
16// code emitter.
17class Format<bits<6> val> {
18 bits<6> Value = val;
19}
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>;
24def MRMSrcMem : Format<6>;
25def MRM0r : Format<16>; def MRM1r : Format<17>; def MRM2r : Format<18>;
26def MRM3r : Format<19>; def MRM4r : Format<20>; def MRM5r : Format<21>;
27def MRM6r : Format<22>; def MRM7r : Format<23>;
28def MRM0m : Format<24>; def MRM1m : Format<25>; def MRM2m : Format<26>;
29def MRM3m : Format<27>; def MRM4m : Format<28>; def MRM5m : Format<29>;
30def MRM6m : Format<30>; def MRM7m : Format<31>;
31def MRMInitReg : Format<32>;
Chris Lattnerf7477e52010-02-12 02:06:33 +000032def MRM_C1 : Format<33>;
Chris Lattner140caa72010-02-13 00:41:14 +000033def MRM_C2 : Format<34>;
34def MRM_C3 : Format<35>;
35def MRM_C4 : Format<36>;
36def MRM_C8 : Format<37>;
37def MRM_C9 : Format<38>;
38def MRM_E8 : Format<39>;
39def MRM_F0 : Format<40>;
40def MRM_F8 : Format<41>;
Sean Callanan4d804d72010-02-13 02:06:11 +000041def MRM_F9 : Format<42>;
Chris Lattnercea0a8d2010-09-17 18:02:29 +000042def RawFrmImm8 : Format<43>;
43def RawFrmImm16 : Format<44>;
Rafael Espindolae3906212011-02-22 00:35:18 +000044def MRM_D0 : Format<45>;
45def MRM_D1 : Format<46>;
Evan Cheng12c6be82007-07-31 08:04:03 +000046
47// ImmType - This specifies the immediate type used by an instruction. This is
48// part of the ad-hoc solution used to emit machine instruction encodings by our
49// machine code emitter.
50class ImmType<bits<3> val> {
51 bits<3> Value = val;
52}
Chris Lattner12455ca2010-02-12 22:27:07 +000053def NoImm : ImmType<0>;
54def Imm8 : ImmType<1>;
55def Imm8PCRel : ImmType<2>;
56def Imm16 : ImmType<3>;
Chris Lattnerac588122010-07-07 22:27:31 +000057def Imm16PCRel : ImmType<4>;
58def Imm32 : ImmType<5>;
59def Imm32PCRel : ImmType<6>;
60def Imm64 : ImmType<7>;
Evan Cheng12c6be82007-07-31 08:04:03 +000061
62// FPFormat - This specifies what form this FP instruction has. This is used by
63// the Floating-Point stackifier pass.
64class FPFormat<bits<3> val> {
65 bits<3> Value = val;
66}
67def NotFP : FPFormat<0>;
68def ZeroArgFP : FPFormat<1>;
69def OneArgFP : FPFormat<2>;
70def OneArgFPRW : FPFormat<3>;
71def TwoArgFP : FPFormat<4>;
72def CompareFP : FPFormat<5>;
73def CondMovFP : FPFormat<6>;
74def SpecialFP : FPFormat<7>;
75
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000076// Class specifying the SSE execution domain, used by the SSEDomainFix pass.
Jakob Stoklund Olesendbff4e82010-03-30 22:46:53 +000077// Keep in sync with tables in X86InstrInfo.cpp.
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000078class Domain<bits<2> val> {
79 bits<2> Value = val;
80}
81def GenericDomain : Domain<0>;
Jakob Stoklund Olesendbff4e82010-03-30 22:46:53 +000082def SSEPackedSingle : Domain<1>;
83def SSEPackedDouble : Domain<2>;
84def SSEPackedInt : Domain<3>;
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000085
Evan Cheng12c6be82007-07-31 08:04:03 +000086// Prefix byte classes which are used to indicate to the ad-hoc machine code
87// emitter that various prefix bytes are required.
88class OpSize { bit hasOpSizePrefix = 1; }
89class AdSize { bit hasAdSizePrefix = 1; }
90class REX_W { bit hasREX_WPrefix = 1; }
Andrew Lenharth0070dd12008-03-01 13:37:02 +000091class LOCK { bit hasLockPrefix = 1; }
Anton Korobeynikov25897772008-10-11 19:09:15 +000092class SegFS { bits<2> SegOvrBits = 1; }
93class SegGS { bits<2> SegOvrBits = 2; }
Joerg Sonnenbergercc53d992011-04-04 15:58:30 +000094class TB { bits<5> Prefix = 1; }
95class REP { bits<5> Prefix = 2; }
96class D8 { bits<5> Prefix = 3; }
97class D9 { bits<5> Prefix = 4; }
98class DA { bits<5> Prefix = 5; }
99class DB { bits<5> Prefix = 6; }
100class DC { bits<5> Prefix = 7; }
101class DD { bits<5> Prefix = 8; }
102class DE { bits<5> Prefix = 9; }
103class DF { bits<5> Prefix = 10; }
104class XD { bits<5> Prefix = 11; }
105class XS { bits<5> Prefix = 12; }
106class T8 { bits<5> Prefix = 13; }
107class TA { bits<5> Prefix = 14; }
Joerg Sonnenbergerfc4789d2011-04-04 16:58:13 +0000108class A6 { bits<5> Prefix = 15; }
109class A7 { bits<5> Prefix = 16; }
Craig Topper96fa5972011-10-16 16:50:08 +0000110class T8XD { bits<5> Prefix = 17; }
111class T8XS { bits<5> Prefix = 18; }
Craig Topper980d5982011-10-23 07:34:00 +0000112class TAXD { bits<5> Prefix = 19; }
Jan Sjödin6dd24882011-12-12 19:12:26 +0000113class XOP8 { bits<5> Prefix = 20; }
114class XOP9 { bits<5> Prefix = 21; }
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000115class VEX { bit hasVEXPrefix = 1; }
Bruno Cardoso Lopes05166742010-07-01 01:20:06 +0000116class VEX_W { bit hasVEX_WPrefix = 1; }
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000117class VEX_4V : VEX { bit hasVEX_4VPrefix = 1; }
Craig Topperaea148c2011-10-16 07:55:05 +0000118class VEX_4VOp3 : VEX { bit hasVEX_4VOp3Prefix = 1; }
Bruno Cardoso Lopese2bd0582010-07-06 22:36:24 +0000119class VEX_I8IMM { bit hasVEX_i8ImmReg = 1; }
Bruno Cardoso Lopesfd8bfcd2010-07-13 21:07:28 +0000120class VEX_L { bit hasVEX_L = 1; }
Craig Topperf18c8962011-10-04 06:30:42 +0000121class VEX_LIG { bit ignoresVEX_L = 1; }
Chris Lattner45270db2010-10-03 18:08:05 +0000122class Has3DNow0F0FOpcode { bit has3DNow0F0FOpcode = 1; }
Craig Toppercd93de92011-12-30 04:48:54 +0000123class MemOp4 { bit hasMemOp4Prefix = 1; }
Jan Sjödin6dd24882011-12-12 19:12:26 +0000124class XOP { bit hasXOP_Prefix = 1; }
Evan Cheng12c6be82007-07-31 08:04:03 +0000125class X86Inst<bits<8> opcod, Format f, ImmType i, dag outs, dag ins,
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000126 string AsmStr, Domain d = GenericDomain>
Evan Cheng12c6be82007-07-31 08:04:03 +0000127 : Instruction {
128 let Namespace = "X86";
129
130 bits<8> Opcode = opcod;
131 Format Form = f;
132 bits<6> FormBits = Form.Value;
133 ImmType ImmT = i;
Evan Cheng12c6be82007-07-31 08:04:03 +0000134
135 dag OutOperandList = outs;
136 dag InOperandList = ins;
137 string AsmString = AsmStr;
138
Chris Lattner7ff33462010-10-31 19:22:57 +0000139 // If this is a pseudo instruction, mark it isCodeGenOnly.
140 let isCodeGenOnly = !eq(!cast<string>(f), "Pseudo");
141
Evan Cheng12c6be82007-07-31 08:04:03 +0000142 //
143 // Attributes specific to X86 instructions...
144 //
145 bit hasOpSizePrefix = 0; // Does this inst have a 0x66 prefix?
146 bit hasAdSizePrefix = 0; // Does this inst have a 0x67 prefix?
147
Joerg Sonnenbergercc53d992011-04-04 15:58:30 +0000148 bits<5> Prefix = 0; // Which prefix byte does this inst have?
Eric Christopher3a8ae232010-11-30 09:11:54 +0000149 bit hasREX_WPrefix = 0; // Does this inst require the REX.W prefix?
Jakob Stoklund Olesenf8d7eda2010-03-25 18:52:01 +0000150 FPFormat FPForm = NotFP; // What flavor of FP instruction is this?
Dan Gohmana21bdda2008-08-20 13:46:21 +0000151 bit hasLockPrefix = 0; // Does this inst have a 0xF0 prefix?
Anton Korobeynikov25897772008-10-11 19:09:15 +0000152 bits<2> SegOvrBits = 0; // Segment override prefix.
Jakob Stoklund Olesenf8d7eda2010-03-25 18:52:01 +0000153 Domain ExeDomain = d;
Eric Christopher3a8ae232010-11-30 09:11:54 +0000154 bit hasVEXPrefix = 0; // Does this inst require a VEX prefix?
Bruno Cardoso Lopes05166742010-07-01 01:20:06 +0000155 bit hasVEX_WPrefix = 0; // Does this inst set the VEX_W field?
Eric Christopher3a8ae232010-11-30 09:11:54 +0000156 bit hasVEX_4VPrefix = 0; // Does this inst require the VEX.VVVV field?
Craig Topperaea148c2011-10-16 07:55:05 +0000157 bit hasVEX_4VOp3Prefix = 0; // Does this inst require the VEX.VVVV field to
158 // encode the third operand?
Eric Christopher3a8ae232010-11-30 09:11:54 +0000159 bit hasVEX_i8ImmReg = 0; // Does this inst require the last source register
Bruno Cardoso Lopese2bd0582010-07-06 22:36:24 +0000160 // to be encoded in a immediate field?
Eric Christopher3a8ae232010-11-30 09:11:54 +0000161 bit hasVEX_L = 0; // Does this inst use large (256-bit) registers?
Craig Topperf18c8962011-10-04 06:30:42 +0000162 bit ignoresVEX_L = 0; // Does this instruction ignore the L-bit
Chris Lattner45270db2010-10-03 18:08:05 +0000163 bit has3DNow0F0FOpcode =0;// Wacky 3dNow! encoding?
Craig Toppercd93de92011-12-30 04:48:54 +0000164 bit hasMemOp4Prefix = 0; // Same bit as VEX_W, but used for swapping operands
Jan Sjödin6dd24882011-12-12 19:12:26 +0000165 bit hasXOP_Prefix = 0; // Does this inst require an XOP prefix?
Jakob Stoklund Olesenb93331f2010-04-05 03:10:20 +0000166
167 // TSFlags layout should be kept in sync with X86InstrInfo.h.
168 let TSFlags{5-0} = FormBits;
169 let TSFlags{6} = hasOpSizePrefix;
170 let TSFlags{7} = hasAdSizePrefix;
Joerg Sonnenbergercc53d992011-04-04 15:58:30 +0000171 let TSFlags{12-8} = Prefix;
172 let TSFlags{13} = hasREX_WPrefix;
173 let TSFlags{16-14} = ImmT.Value;
174 let TSFlags{19-17} = FPForm.Value;
175 let TSFlags{20} = hasLockPrefix;
176 let TSFlags{22-21} = SegOvrBits;
177 let TSFlags{24-23} = ExeDomain.Value;
178 let TSFlags{32-25} = Opcode;
179 let TSFlags{33} = hasVEXPrefix;
180 let TSFlags{34} = hasVEX_WPrefix;
181 let TSFlags{35} = hasVEX_4VPrefix;
Craig Topperaea148c2011-10-16 07:55:05 +0000182 let TSFlags{36} = hasVEX_4VOp3Prefix;
183 let TSFlags{37} = hasVEX_i8ImmReg;
184 let TSFlags{38} = hasVEX_L;
185 let TSFlags{39} = ignoresVEX_L;
186 let TSFlags{40} = has3DNow0F0FOpcode;
Craig Toppercd93de92011-12-30 04:48:54 +0000187 let TSFlags{41} = hasMemOp4Prefix;
Jan Sjödin6dd24882011-12-12 19:12:26 +0000188 let TSFlags{42} = hasXOP_Prefix;
Evan Cheng12c6be82007-07-31 08:04:03 +0000189}
190
Eric Christopheref62f572010-11-30 08:57:23 +0000191class PseudoI<dag oops, dag iops, list<dag> pattern>
Eric Christophered132392010-11-30 09:11:07 +0000192 : X86Inst<0, Pseudo, NoImm, oops, iops, ""> {
Eric Christopheref62f572010-11-30 08:57:23 +0000193 let Pattern = pattern;
194}
195
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000196class I<bits<8> o, Format f, dag outs, dag ins, string asm,
197 list<dag> pattern, Domain d = GenericDomain>
198 : X86Inst<o, f, NoImm, outs, ins, asm, d> {
Evan Cheng12c6be82007-07-31 08:04:03 +0000199 let Pattern = pattern;
200 let CodeSize = 3;
201}
Sean Callanan04d8cb72009-12-18 00:01:26 +0000202class Ii8 <bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000203 list<dag> pattern, Domain d = GenericDomain>
204 : X86Inst<o, f, Imm8, outs, ins, asm, d> {
Evan Cheng12c6be82007-07-31 08:04:03 +0000205 let Pattern = pattern;
206 let CodeSize = 3;
207}
Chris Lattner12455ca2010-02-12 22:27:07 +0000208class Ii8PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
209 list<dag> pattern>
210 : X86Inst<o, f, Imm8PCRel, outs, ins, asm> {
211 let Pattern = pattern;
212 let CodeSize = 3;
213}
Sean Callanan04d8cb72009-12-18 00:01:26 +0000214class Ii16<bits<8> o, Format f, dag outs, dag ins, string asm,
215 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000216 : X86Inst<o, f, Imm16, outs, ins, asm> {
217 let Pattern = pattern;
218 let CodeSize = 3;
219}
Sean Callanan04d8cb72009-12-18 00:01:26 +0000220class Ii32<bits<8> o, Format f, dag outs, dag ins, string asm,
221 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000222 : X86Inst<o, f, Imm32, outs, ins, asm> {
223 let Pattern = pattern;
224 let CodeSize = 3;
225}
226
Chris Lattnerac588122010-07-07 22:27:31 +0000227class Ii16PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
228 list<dag> pattern>
229 : X86Inst<o, f, Imm16PCRel, outs, ins, asm> {
230 let Pattern = pattern;
231 let CodeSize = 3;
232}
233
Chris Lattner12455ca2010-02-12 22:27:07 +0000234class Ii32PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
235 list<dag> pattern>
236 : X86Inst<o, f, Imm32PCRel, outs, ins, asm> {
237 let Pattern = pattern;
238 let CodeSize = 3;
239}
240
Evan Cheng12c6be82007-07-31 08:04:03 +0000241// FPStack Instruction Templates:
242// FPI - Floating Point Instruction template.
243class FPI<bits<8> o, Format F, dag outs, dag ins, string asm>
244 : I<o, F, outs, ins, asm, []> {}
245
Bob Wilsona967c422010-08-26 18:08:11 +0000246// FpI_ - Floating Point Pseudo Instruction template. Not Predicated.
Evan Cheng12c6be82007-07-31 08:04:03 +0000247class FpI_<dag outs, dag ins, FPFormat fp, list<dag> pattern>
248 : X86Inst<0, Pseudo, NoImm, outs, ins, ""> {
Jakob Stoklund Olesenf8d7eda2010-03-25 18:52:01 +0000249 let FPForm = fp;
Evan Cheng12c6be82007-07-31 08:04:03 +0000250 let Pattern = pattern;
251}
252
Sean Callanan050e0cd2009-09-15 00:35:17 +0000253// Templates for instructions that use a 16- or 32-bit segmented address as
254// their only operand: lcall (FAR CALL) and ljmp (FAR JMP)
255//
256// Iseg16 - 16-bit segment selector, 16-bit offset
257// Iseg32 - 16-bit segment selector, 32-bit offset
258
259class Iseg16 <bits<8> o, Format f, dag outs, dag ins, string asm,
Chris Lattnerbeb506e2010-08-19 01:00:34 +0000260 list<dag> pattern> : X86Inst<o, f, Imm16, outs, ins, asm> {
Sean Callanan050e0cd2009-09-15 00:35:17 +0000261 let Pattern = pattern;
262 let CodeSize = 3;
263}
264
265class Iseg32 <bits<8> o, Format f, dag outs, dag ins, string asm,
Chris Lattnerbeb506e2010-08-19 01:00:34 +0000266 list<dag> pattern> : X86Inst<o, f, Imm32, outs, ins, asm> {
Sean Callanan050e0cd2009-09-15 00:35:17 +0000267 let Pattern = pattern;
268 let CodeSize = 3;
269}
270
Bruno Cardoso Lopes6b98f712010-06-17 23:05:30 +0000271// SI - SSE 1 & 2 scalar instructions
272class SI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
273 : I<o, F, outs, ins, asm, pattern> {
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000274 let Predicates = !if(hasVEXPrefix /* VEX */, [HasAVX],
Bruno Cardoso Lopes66d2d572010-06-18 23:53:27 +0000275 !if(!eq(Prefix, 12 /* XS */), [HasSSE1], [HasSSE2]));
Bruno Cardoso Lopes6b98f712010-06-17 23:05:30 +0000276
277 // AVX instructions have a 'v' prefix in the mnemonic
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000278 let AsmString = !if(hasVEXPrefix, !strconcat("v", asm), asm);
Bruno Cardoso Lopes6b98f712010-06-17 23:05:30 +0000279}
280
Bruno Cardoso Lopes191a1cd2010-06-24 00:32:06 +0000281// SIi8 - SSE 1 & 2 scalar instructions
282class SIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
283 list<dag> pattern>
284 : Ii8<o, F, outs, ins, asm, pattern> {
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000285 let Predicates = !if(hasVEXPrefix /* VEX */, [HasAVX],
Bruno Cardoso Lopes191a1cd2010-06-24 00:32:06 +0000286 !if(!eq(Prefix, 12 /* XS */), [HasSSE1], [HasSSE2]));
287
288 // AVX instructions have a 'v' prefix in the mnemonic
289 let AsmString = !if(hasVEXPrefix, !strconcat("v", asm), asm);
290}
291
Bruno Cardoso Lopes2bfad412010-06-18 23:13:35 +0000292// PI - SSE 1 & 2 packed instructions
293class PI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern,
294 Domain d>
295 : I<o, F, outs, ins, asm, pattern, d> {
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000296 let Predicates = !if(hasVEXPrefix /* VEX */, [HasAVX],
Bruno Cardoso Lopes2bfad412010-06-18 23:13:35 +0000297 !if(hasOpSizePrefix /* OpSize */, [HasSSE2], [HasSSE1]));
298
299 // AVX instructions have a 'v' prefix in the mnemonic
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000300 let AsmString = !if(hasVEXPrefix, !strconcat("v", asm), asm);
Bruno Cardoso Lopes2bfad412010-06-18 23:13:35 +0000301}
302
Bruno Cardoso Lopes1e13c172010-06-22 23:37:59 +0000303// PIi8 - SSE 1 & 2 packed instructions with immediate
304class PIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
305 list<dag> pattern, Domain d>
306 : Ii8<o, F, outs, ins, asm, pattern, d> {
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000307 let Predicates = !if(hasVEX_4VPrefix /* VEX */, [HasAVX],
Bruno Cardoso Lopes1e13c172010-06-22 23:37:59 +0000308 !if(hasOpSizePrefix /* OpSize */, [HasSSE2], [HasSSE1]));
309
310 // AVX instructions have a 'v' prefix in the mnemonic
311 let AsmString = !if(hasVEX_4VPrefix, !strconcat("v", asm), asm);
312}
313
Evan Cheng12c6be82007-07-31 08:04:03 +0000314// SSE1 Instruction Templates:
315//
316// SSI - SSE1 instructions with XS prefix.
317// PSI - SSE1 instructions with TB prefix.
318// PSIi8 - SSE1 instructions with ImmT == Imm8 and TB prefix.
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000319// VSSI - SSE1 instructions with XS prefix in AVX form.
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000320// VPSI - SSE1 instructions with TB prefix in AVX form.
Evan Cheng12c6be82007-07-31 08:04:03 +0000321
322class SSI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
323 : I<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE1]>;
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000324class SSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Sean Callanan04d8cb72009-12-18 00:01:26 +0000325 list<dag> pattern>
Chris Lattnerdab6bd92007-12-16 20:12:41 +0000326 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE1]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000327class PSI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000328 : I<o, F, outs, ins, asm, pattern, SSEPackedSingle>, TB,
329 Requires<[HasSSE1]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000330class PSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
331 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000332 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedSingle>, TB,
333 Requires<[HasSSE1]>;
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000334class VSSI<bits<8> o, Format F, dag outs, dag ins, string asm,
335 list<dag> pattern>
Bruno Cardoso Lopes83651092010-06-25 23:33:42 +0000336 : I<o, F, outs, ins, !strconcat("v", asm), pattern>, XS,
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000337 Requires<[HasAVX]>;
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000338class VPSI<bits<8> o, Format F, dag outs, dag ins, string asm,
339 list<dag> pattern>
Sean Callananb60b0bc2011-03-15 01:28:15 +0000340 : I<o, F, outs, ins, !strconcat("v", asm), pattern, SSEPackedSingle>, TB,
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000341 Requires<[HasAVX]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000342
343// SSE2 Instruction Templates:
344//
Bill Wendling76105a42008-08-27 21:32:04 +0000345// SDI - SSE2 instructions with XD prefix.
346// SDIi8 - SSE2 instructions with ImmT == Imm8 and XD prefix.
347// SSDIi8 - SSE2 instructions with ImmT == Imm8 and XS prefix.
348// PDI - SSE2 instructions with TB and OpSize prefixes.
349// PDIi8 - SSE2 instructions with ImmT == Imm8 and TB and OpSize prefixes.
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000350// VSDI - SSE2 instructions with XD prefix in AVX form.
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000351// VPDI - SSE2 instructions with TB and OpSize prefixes in AVX form.
Evan Cheng12c6be82007-07-31 08:04:03 +0000352
353class SDI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
354 : I<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE2]>;
Evan Cheng01c7c192007-12-20 19:57:09 +0000355class SDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
356 list<dag> pattern>
357 : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE2]>;
Bill Wendling76105a42008-08-27 21:32:04 +0000358class SSDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
359 list<dag> pattern>
360 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE2]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000361class PDI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000362 : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
363 Requires<[HasSSE2]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000364class PDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
365 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000366 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
367 Requires<[HasSSE2]>;
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000368class VSDI<bits<8> o, Format F, dag outs, dag ins, string asm,
369 list<dag> pattern>
Bruno Cardoso Lopes83651092010-06-25 23:33:42 +0000370 : I<o, F, outs, ins, !strconcat("v", asm), pattern>, XD,
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000371 Requires<[HasAVX]>;
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000372class VPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
373 list<dag> pattern>
Sean Callananb60b0bc2011-03-15 01:28:15 +0000374 : I<o, F, outs, ins, !strconcat("v", asm), pattern, SSEPackedDouble>, TB,
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000375 OpSize, Requires<[HasAVX]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000376
377// SSE3 Instruction Templates:
378//
379// S3I - SSE3 instructions with TB and OpSize prefixes.
380// S3SI - SSE3 instructions with XS prefix.
381// S3DI - SSE3 instructions with XD prefix.
382
Sean Callanan04d8cb72009-12-18 00:01:26 +0000383class S3SI<bits<8> o, Format F, dag outs, dag ins, string asm,
384 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000385 : I<o, F, outs, ins, asm, pattern, SSEPackedSingle>, XS,
386 Requires<[HasSSE3]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000387class S3DI<bits<8> o, Format F, dag outs, dag ins, string asm,
388 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000389 : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, XD,
390 Requires<[HasSSE3]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000391class S3I<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000392 : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
393 Requires<[HasSSE3]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000394
395
Nate Begeman8ef50212008-02-12 22:51:28 +0000396// SSSE3 Instruction Templates:
397//
398// SS38I - SSSE3 instructions with T8 prefix.
399// SS3AI - SSSE3 instructions with TA prefix.
400//
401// Note: SSSE3 instructions have 64-bit and 128-bit versions. The 64-bit version
402// uses the MMX registers. We put those instructions here because they better
403// fit into the SSSE3 instruction category rather than the MMX category.
404
405class SS38I<bits<8> o, Format F, dag outs, dag ins, string asm,
406 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000407 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
408 Requires<[HasSSSE3]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000409class SS3AI<bits<8> o, Format F, dag outs, dag ins, string asm,
410 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000411 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
412 Requires<[HasSSSE3]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000413
414// SSE4.1 Instruction Templates:
415//
416// SS48I - SSE 4.1 instructions with T8 prefix.
Evan Cheng96bdbd62008-03-14 07:39:27 +0000417// SS41AIi8 - SSE 4.1 instructions with TA prefix and ImmT == Imm8.
Nate Begeman8ef50212008-02-12 22:51:28 +0000418//
419class SS48I<bits<8> o, Format F, dag outs, dag ins, string asm,
420 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000421 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
422 Requires<[HasSSE41]>;
Evan Cheng96bdbd62008-03-14 07:39:27 +0000423class SS4AIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Nate Begeman8ef50212008-02-12 22:51:28 +0000424 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000425 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
426 Requires<[HasSSE41]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000427
Nate Begeman55b7bec2008-07-17 16:51:19 +0000428// SSE4.2 Instruction Templates:
429//
430// SS428I - SSE 4.2 instructions with T8 prefix.
431class SS428I<bits<8> o, Format F, dag outs, dag ins, string asm,
432 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000433 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
434 Requires<[HasSSE42]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000435
Craig Topper96fa5972011-10-16 16:50:08 +0000436// SS42FI - SSE 4.2 instructions with T8XD prefix.
Eric Christopher7dfa9f22009-08-08 21:55:08 +0000437class SS42FI<bits<8> o, Format F, dag outs, dag ins, string asm,
438 list<dag> pattern>
Craig Topperb9109842012-01-01 19:51:58 +0000439 : I<o, F, outs, ins, asm, pattern>, T8XD, Requires<[HasSSE42orAVX]>;
440
Eric Christopher9fe912d2009-08-18 22:50:32 +0000441// SS42AI = SSE 4.2 instructions with TA prefix
442class SS42AI<bits<8> o, Format F, dag outs, dag ins, string asm,
Sean Callanan04d8cb72009-12-18 00:01:26 +0000443 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000444 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
445 Requires<[HasSSE42]>;
Eric Christopher9fe912d2009-08-18 22:50:32 +0000446
Bruno Cardoso Lopes14c5fd42010-07-20 00:11:13 +0000447// AVX Instruction Templates:
448// Instructions introduced in AVX (no SSE equivalent forms)
449//
450// AVX8I - AVX instructions with T8 and OpSize prefix.
Bruno Cardoso Lopes3b505842010-07-20 19:44:51 +0000451// AVXAIi8 - AVX instructions with TA, OpSize prefix and ImmT = Imm8.
Bruno Cardoso Lopes14c5fd42010-07-20 00:11:13 +0000452class AVX8I<bits<8> o, Format F, dag outs, dag ins, string asm,
453 list<dag> pattern>
454 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8, OpSize,
455 Requires<[HasAVX]>;
Bruno Cardoso Lopes3b505842010-07-20 19:44:51 +0000456class AVXAIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
457 list<dag> pattern>
458 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA, OpSize,
459 Requires<[HasAVX]>;
Bruno Cardoso Lopes14c5fd42010-07-20 00:11:13 +0000460
Craig Topper05d1cb92011-11-06 06:12:20 +0000461// AVX2 Instruction Templates:
462// Instructions introduced in AVX2 (no SSE equivalent forms)
463//
464// AVX28I - AVX2 instructions with T8 and OpSize prefix.
465// AVX2AIi8 - AVX2 instructions with TA, OpSize prefix and ImmT = Imm8.
466class AVX28I<bits<8> o, Format F, dag outs, dag ins, string asm,
467 list<dag> pattern>
468 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8, OpSize,
469 Requires<[HasAVX2]>;
Craig Topperf01f1b52011-11-06 23:04:08 +0000470class AVX2AIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Craig Topper05d1cb92011-11-06 06:12:20 +0000471 list<dag> pattern>
472 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA, OpSize,
473 Requires<[HasAVX2]>;
474
Eric Christopher2ef63182010-04-02 21:54:27 +0000475// AES Instruction Templates:
476//
477// AES8I
Eric Christopher1290fa02010-04-05 21:14:32 +0000478// These use the same encoding as the SSE4.2 T8 and TA encodings.
Eric Christopher2ef63182010-04-02 21:54:27 +0000479class AES8I<bits<8> o, Format F, dag outs, dag ins, string asm,
480 list<dag>pattern>
481 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
Craig Topper15591232011-12-29 18:00:08 +0000482 Requires<[HasSSE2, HasAES]>;
Eric Christopher2ef63182010-04-02 21:54:27 +0000483
484class AESAI<bits<8> o, Format F, dag outs, dag ins, string asm,
485 list<dag> pattern>
486 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
Craig Topper15591232011-12-29 18:00:08 +0000487 Requires<[HasSSE2, HasAES]>;
Eric Christopher2ef63182010-04-02 21:54:27 +0000488
Bruno Cardoso Lopesea0e05a2010-07-23 18:41:12 +0000489// CLMUL Instruction Templates
490class CLMULIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
491 list<dag>pattern>
492 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
Craig Topper97f05c52011-12-29 18:08:36 +0000493 OpSize, Requires<[HasSSE2, HasCLMUL]>;
Eli Friedman415412e2011-07-05 18:21:20 +0000494
495class AVXCLMULIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
496 list<dag>pattern>
497 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
Bruno Cardoso Lopesea0e05a2010-07-23 18:41:12 +0000498 OpSize, VEX_4V, Requires<[HasAVX, HasCLMUL]>;
499
Bruno Cardoso Lopesacd92302010-07-23 00:54:35 +0000500// FMA3 Instruction Templates
501class FMA3<bits<8> o, Format F, dag outs, dag ins, string asm,
502 list<dag>pattern>
Craig Topperd7736072011-12-29 20:43:40 +0000503 : I<o, F, outs, ins, asm, pattern>, T8,
Bruno Cardoso Lopesacd92302010-07-23 00:54:35 +0000504 OpSize, VEX_4V, Requires<[HasFMA3]>;
505
Bruno Cardoso Lopes0f9a1f52011-11-25 19:33:42 +0000506// FMA4 Instruction Templates
507class FMA4<bits<8> o, Format F, dag outs, dag ins, string asm,
508 list<dag>pattern>
Eli Friedman64944092011-12-15 23:46:18 +0000509 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
Bruno Cardoso Lopes0f9a1f52011-11-25 19:33:42 +0000510 OpSize, VEX_4V, VEX_I8IMM, Requires<[HasFMA4]>;
511
Jan Sjödin7c0face2011-12-12 19:37:49 +0000512// XOP 2, 3 and 4 Operand Instruction Template
513class IXOP<bits<8> o, Format F, dag outs, dag ins, string asm,
514 list<dag> pattern>
515 : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>,
516 XOP, XOP9, Requires<[HasXOP]>;
517
518// XOP 2, 3 and 4 Operand Instruction Templates with imm byte
519class IXOPi8<bits<8> o, Format F, dag outs, dag ins, string asm,
520 list<dag> pattern>
521 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedDouble>,
522 XOP, XOP8, Requires<[HasXOP]>;
523
524// XOP 5 operand instruction (VEX encoding!)
525class IXOP5<bits<8> o, Format F, dag outs, dag ins, string asm,
526 list<dag>pattern>
527 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
528 OpSize, VEX_4V, VEX_I8IMM, Requires<[HasXOP]>;
529
Evan Cheng12c6be82007-07-31 08:04:03 +0000530// X86-64 Instruction templates...
531//
532
533class RI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
534 : I<o, F, outs, ins, asm, pattern>, REX_W;
535class RIi8 <bits<8> o, Format F, dag outs, dag ins, string asm,
536 list<dag> pattern>
537 : Ii8<o, F, outs, ins, asm, pattern>, REX_W;
538class RIi32 <bits<8> o, Format F, dag outs, dag ins, string asm,
539 list<dag> pattern>
540 : Ii32<o, F, outs, ins, asm, pattern>, REX_W;
541
542class RIi64<bits<8> o, Format f, dag outs, dag ins, string asm,
543 list<dag> pattern>
544 : X86Inst<o, f, Imm64, outs, ins, asm>, REX_W {
545 let Pattern = pattern;
546 let CodeSize = 3;
547}
548
549class RSSI<bits<8> o, Format F, dag outs, dag ins, string asm,
550 list<dag> pattern>
551 : SSI<o, F, outs, ins, asm, pattern>, REX_W;
552class RSDI<bits<8> o, Format F, dag outs, dag ins, string asm,
553 list<dag> pattern>
554 : SDI<o, F, outs, ins, asm, pattern>, REX_W;
555class RPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
556 list<dag> pattern>
557 : PDI<o, F, outs, ins, asm, pattern>, REX_W;
Bruno Cardoso Lopes123dff02011-07-25 23:05:25 +0000558class VRPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
559 list<dag> pattern>
560 : VPDI<o, F, outs, ins, asm, pattern>, VEX_W;
Evan Cheng12c6be82007-07-31 08:04:03 +0000561
562// MMX Instruction templates
563//
564
565// MMXI - MMX instructions with TB prefix.
Anton Korobeynikov31099512008-08-23 15:53:19 +0000566// MMXI64 - MMX instructions with TB prefix valid only in 64 bit mode.
Evan Cheng12c6be82007-07-31 08:04:03 +0000567// MMX2I - MMX / SSE2 instructions with TB and OpSize prefixes.
568// MMXIi8 - MMX instructions with ImmT == Imm8 and TB prefix.
569// MMXIi8 - MMX instructions with ImmT == Imm8 and TB prefix.
570// MMXID - MMX instructions with XD prefix.
571// MMXIS - MMX instructions with XS prefix.
Sean Callanan04d8cb72009-12-18 00:01:26 +0000572class MMXI<bits<8> o, Format F, dag outs, dag ins, string asm,
573 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000574 : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000575class MMXI64<bits<8> o, Format F, dag outs, dag ins, string asm,
576 list<dag> pattern>
Anton Korobeynikov31099512008-08-23 15:53:19 +0000577 : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX,In64BitMode]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000578class MMXRI<bits<8> o, Format F, dag outs, dag ins, string asm,
579 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000580 : I<o, F, outs, ins, asm, pattern>, TB, REX_W, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000581class MMX2I<bits<8> o, Format F, dag outs, dag ins, string asm,
582 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000583 : I<o, F, outs, ins, asm, pattern>, TB, OpSize, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000584class MMXIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
585 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000586 : Ii8<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000587class MMXID<bits<8> o, Format F, dag outs, dag ins, string asm,
588 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000589 : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000590class MMXIS<bits<8> o, Format F, dag outs, dag ins, string asm,
591 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000592 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasMMX]>;