blob: a4403591084ee5c323d399c501416f08233ac619 [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>;
Evan Cheng12c6be82007-07-31 08:04:03 +000044
45// ImmType - This specifies the immediate type used by an instruction. This is
46// part of the ad-hoc solution used to emit machine instruction encodings by our
47// machine code emitter.
48class ImmType<bits<3> val> {
49 bits<3> Value = val;
50}
Chris Lattner12455ca2010-02-12 22:27:07 +000051def NoImm : ImmType<0>;
52def Imm8 : ImmType<1>;
53def Imm8PCRel : ImmType<2>;
54def Imm16 : ImmType<3>;
Chris Lattnerac588122010-07-07 22:27:31 +000055def Imm16PCRel : ImmType<4>;
56def Imm32 : ImmType<5>;
57def Imm32PCRel : ImmType<6>;
58def Imm64 : ImmType<7>;
Evan Cheng12c6be82007-07-31 08:04:03 +000059
60// FPFormat - This specifies what form this FP instruction has. This is used by
61// the Floating-Point stackifier pass.
62class FPFormat<bits<3> val> {
63 bits<3> Value = val;
64}
65def NotFP : FPFormat<0>;
66def ZeroArgFP : FPFormat<1>;
67def OneArgFP : FPFormat<2>;
68def OneArgFPRW : FPFormat<3>;
69def TwoArgFP : FPFormat<4>;
70def CompareFP : FPFormat<5>;
71def CondMovFP : FPFormat<6>;
72def SpecialFP : FPFormat<7>;
73
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000074// Class specifying the SSE execution domain, used by the SSEDomainFix pass.
Jakob Stoklund Olesendbff4e82010-03-30 22:46:53 +000075// Keep in sync with tables in X86InstrInfo.cpp.
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000076class Domain<bits<2> val> {
77 bits<2> Value = val;
78}
79def GenericDomain : Domain<0>;
Jakob Stoklund Olesendbff4e82010-03-30 22:46:53 +000080def SSEPackedSingle : Domain<1>;
81def SSEPackedDouble : Domain<2>;
82def SSEPackedInt : Domain<3>;
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000083
Evan Cheng12c6be82007-07-31 08:04:03 +000084// Prefix byte classes which are used to indicate to the ad-hoc machine code
85// emitter that various prefix bytes are required.
86class OpSize { bit hasOpSizePrefix = 1; }
87class AdSize { bit hasAdSizePrefix = 1; }
88class REX_W { bit hasREX_WPrefix = 1; }
Andrew Lenharth0070dd12008-03-01 13:37:02 +000089class LOCK { bit hasLockPrefix = 1; }
Anton Korobeynikov25897772008-10-11 19:09:15 +000090class SegFS { bits<2> SegOvrBits = 1; }
91class SegGS { bits<2> SegOvrBits = 2; }
Evan Cheng12c6be82007-07-31 08:04:03 +000092class TB { bits<4> Prefix = 1; }
93class REP { bits<4> Prefix = 2; }
94class D8 { bits<4> Prefix = 3; }
95class D9 { bits<4> Prefix = 4; }
96class DA { bits<4> Prefix = 5; }
97class DB { bits<4> Prefix = 6; }
98class DC { bits<4> Prefix = 7; }
99class DD { bits<4> Prefix = 8; }
100class DE { bits<4> Prefix = 9; }
101class DF { bits<4> Prefix = 10; }
102class XD { bits<4> Prefix = 11; }
103class XS { bits<4> Prefix = 12; }
104class T8 { bits<4> Prefix = 13; }
105class TA { bits<4> Prefix = 14; }
Eric Christopher7dfa9f22009-08-08 21:55:08 +0000106class TF { bits<4> Prefix = 15; }
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000107class VEX { bit hasVEXPrefix = 1; }
Bruno Cardoso Lopes05166742010-07-01 01:20:06 +0000108class VEX_W { bit hasVEX_WPrefix = 1; }
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000109class VEX_4V : VEX { bit hasVEX_4VPrefix = 1; }
Bruno Cardoso Lopese2bd0582010-07-06 22:36:24 +0000110class VEX_I8IMM { bit hasVEX_i8ImmReg = 1; }
Bruno Cardoso Lopesfd8bfcd2010-07-13 21:07:28 +0000111class VEX_L { bit hasVEX_L = 1; }
Chris Lattner45270db2010-10-03 18:08:05 +0000112class Has3DNow0F0FOpcode { bit has3DNow0F0FOpcode = 1; }
Evan Cheng12c6be82007-07-31 08:04:03 +0000113
114class X86Inst<bits<8> opcod, Format f, ImmType i, dag outs, dag ins,
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000115 string AsmStr, Domain d = GenericDomain>
Evan Cheng12c6be82007-07-31 08:04:03 +0000116 : Instruction {
117 let Namespace = "X86";
118
119 bits<8> Opcode = opcod;
120 Format Form = f;
121 bits<6> FormBits = Form.Value;
122 ImmType ImmT = i;
Evan Cheng12c6be82007-07-31 08:04:03 +0000123
124 dag OutOperandList = outs;
125 dag InOperandList = ins;
126 string AsmString = AsmStr;
127
Chris Lattner7ff33462010-10-31 19:22:57 +0000128 // If this is a pseudo instruction, mark it isCodeGenOnly.
129 let isCodeGenOnly = !eq(!cast<string>(f), "Pseudo");
130
Evan Cheng12c6be82007-07-31 08:04:03 +0000131 //
132 // Attributes specific to X86 instructions...
133 //
134 bit hasOpSizePrefix = 0; // Does this inst have a 0x66 prefix?
135 bit hasAdSizePrefix = 0; // Does this inst have a 0x67 prefix?
136
137 bits<4> Prefix = 0; // Which prefix byte does this inst have?
138 bit hasREX_WPrefix = 0; // Does this inst requires the REX.W prefix?
Jakob Stoklund Olesenf8d7eda2010-03-25 18:52:01 +0000139 FPFormat FPForm = NotFP; // What flavor of FP instruction is this?
Dan Gohmana21bdda2008-08-20 13:46:21 +0000140 bit hasLockPrefix = 0; // Does this inst have a 0xF0 prefix?
Anton Korobeynikov25897772008-10-11 19:09:15 +0000141 bits<2> SegOvrBits = 0; // Segment override prefix.
Jakob Stoklund Olesenf8d7eda2010-03-25 18:52:01 +0000142 Domain ExeDomain = d;
Bruno Cardoso Lopes05166742010-07-01 01:20:06 +0000143 bit hasVEXPrefix = 0; // Does this inst requires a VEX prefix?
144 bit hasVEX_WPrefix = 0; // Does this inst set the VEX_W field?
145 bit hasVEX_4VPrefix = 0; // Does this inst requires the VEX.VVVV field?
Bruno Cardoso Lopese2bd0582010-07-06 22:36:24 +0000146 bit hasVEX_i8ImmReg = 0; // Does this inst requires the last source register
147 // to be encoded in a immediate field?
Bruno Cardoso Lopesfd8bfcd2010-07-13 21:07:28 +0000148 bit hasVEX_L = 0; // Does this inst uses large (256-bit) registers?
Chris Lattner45270db2010-10-03 18:08:05 +0000149 bit has3DNow0F0FOpcode =0;// Wacky 3dNow! encoding?
Jakob Stoklund Olesenb93331f2010-04-05 03:10:20 +0000150
151 // TSFlags layout should be kept in sync with X86InstrInfo.h.
152 let TSFlags{5-0} = FormBits;
153 let TSFlags{6} = hasOpSizePrefix;
154 let TSFlags{7} = hasAdSizePrefix;
155 let TSFlags{11-8} = Prefix;
156 let TSFlags{12} = hasREX_WPrefix;
157 let TSFlags{15-13} = ImmT.Value;
158 let TSFlags{18-16} = FPForm.Value;
159 let TSFlags{19} = hasLockPrefix;
160 let TSFlags{21-20} = SegOvrBits;
161 let TSFlags{23-22} = ExeDomain.Value;
162 let TSFlags{31-24} = Opcode;
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000163 let TSFlags{32} = hasVEXPrefix;
Bruno Cardoso Lopes05166742010-07-01 01:20:06 +0000164 let TSFlags{33} = hasVEX_WPrefix;
165 let TSFlags{34} = hasVEX_4VPrefix;
Bruno Cardoso Lopese2bd0582010-07-06 22:36:24 +0000166 let TSFlags{35} = hasVEX_i8ImmReg;
Bruno Cardoso Lopesfd8bfcd2010-07-13 21:07:28 +0000167 let TSFlags{36} = hasVEX_L;
Chris Lattner45270db2010-10-03 18:08:05 +0000168 let TSFlags{37} = has3DNow0F0FOpcode;
Evan Cheng12c6be82007-07-31 08:04:03 +0000169}
170
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000171class I<bits<8> o, Format f, dag outs, dag ins, string asm,
172 list<dag> pattern, Domain d = GenericDomain>
173 : X86Inst<o, f, NoImm, outs, ins, asm, d> {
Evan Cheng12c6be82007-07-31 08:04:03 +0000174 let Pattern = pattern;
175 let CodeSize = 3;
176}
Sean Callanan04d8cb72009-12-18 00:01:26 +0000177class Ii8 <bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000178 list<dag> pattern, Domain d = GenericDomain>
179 : X86Inst<o, f, Imm8, outs, ins, asm, d> {
Evan Cheng12c6be82007-07-31 08:04:03 +0000180 let Pattern = pattern;
181 let CodeSize = 3;
182}
Chris Lattner12455ca2010-02-12 22:27:07 +0000183class Ii8PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
184 list<dag> pattern>
185 : X86Inst<o, f, Imm8PCRel, outs, ins, asm> {
186 let Pattern = pattern;
187 let CodeSize = 3;
188}
Sean Callanan04d8cb72009-12-18 00:01:26 +0000189class Ii16<bits<8> o, Format f, dag outs, dag ins, string asm,
190 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000191 : X86Inst<o, f, Imm16, outs, ins, asm> {
192 let Pattern = pattern;
193 let CodeSize = 3;
194}
Sean Callanan04d8cb72009-12-18 00:01:26 +0000195class Ii32<bits<8> o, Format f, dag outs, dag ins, string asm,
196 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000197 : X86Inst<o, f, Imm32, outs, ins, asm> {
198 let Pattern = pattern;
199 let CodeSize = 3;
200}
201
Chris Lattnerac588122010-07-07 22:27:31 +0000202class Ii16PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
203 list<dag> pattern>
204 : X86Inst<o, f, Imm16PCRel, outs, ins, asm> {
205 let Pattern = pattern;
206 let CodeSize = 3;
207}
208
Chris Lattner12455ca2010-02-12 22:27:07 +0000209class Ii32PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
210 list<dag> pattern>
211 : X86Inst<o, f, Imm32PCRel, outs, ins, asm> {
212 let Pattern = pattern;
213 let CodeSize = 3;
214}
215
Evan Cheng12c6be82007-07-31 08:04:03 +0000216// FPStack Instruction Templates:
217// FPI - Floating Point Instruction template.
218class FPI<bits<8> o, Format F, dag outs, dag ins, string asm>
219 : I<o, F, outs, ins, asm, []> {}
220
Bob Wilsona967c422010-08-26 18:08:11 +0000221// FpI_ - Floating Point Pseudo Instruction template. Not Predicated.
Evan Cheng12c6be82007-07-31 08:04:03 +0000222class FpI_<dag outs, dag ins, FPFormat fp, list<dag> pattern>
223 : X86Inst<0, Pseudo, NoImm, outs, ins, ""> {
Jakob Stoklund Olesenf8d7eda2010-03-25 18:52:01 +0000224 let FPForm = fp;
Evan Cheng12c6be82007-07-31 08:04:03 +0000225 let Pattern = pattern;
226}
227
Sean Callanan050e0cd2009-09-15 00:35:17 +0000228// Templates for instructions that use a 16- or 32-bit segmented address as
229// their only operand: lcall (FAR CALL) and ljmp (FAR JMP)
230//
231// Iseg16 - 16-bit segment selector, 16-bit offset
232// Iseg32 - 16-bit segment selector, 32-bit offset
233
234class Iseg16 <bits<8> o, Format f, dag outs, dag ins, string asm,
Chris Lattnerbeb506e2010-08-19 01:00:34 +0000235 list<dag> pattern> : X86Inst<o, f, Imm16, outs, ins, asm> {
Sean Callanan050e0cd2009-09-15 00:35:17 +0000236 let Pattern = pattern;
237 let CodeSize = 3;
238}
239
240class Iseg32 <bits<8> o, Format f, dag outs, dag ins, string asm,
Chris Lattnerbeb506e2010-08-19 01:00:34 +0000241 list<dag> pattern> : X86Inst<o, f, Imm32, outs, ins, asm> {
Sean Callanan050e0cd2009-09-15 00:35:17 +0000242 let Pattern = pattern;
243 let CodeSize = 3;
244}
245
Bruno Cardoso Lopes6b98f712010-06-17 23:05:30 +0000246// SI - SSE 1 & 2 scalar instructions
247class SI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
248 : I<o, F, outs, ins, asm, pattern> {
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000249 let Predicates = !if(hasVEXPrefix /* VEX */, [HasAVX],
Bruno Cardoso Lopes66d2d572010-06-18 23:53:27 +0000250 !if(!eq(Prefix, 12 /* XS */), [HasSSE1], [HasSSE2]));
Bruno Cardoso Lopes6b98f712010-06-17 23:05:30 +0000251
252 // AVX instructions have a 'v' prefix in the mnemonic
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000253 let AsmString = !if(hasVEXPrefix, !strconcat("v", asm), asm);
Bruno Cardoso Lopes6b98f712010-06-17 23:05:30 +0000254}
255
Bruno Cardoso Lopes191a1cd2010-06-24 00:32:06 +0000256// SIi8 - SSE 1 & 2 scalar instructions
257class SIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
258 list<dag> pattern>
259 : Ii8<o, F, outs, ins, asm, pattern> {
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000260 let Predicates = !if(hasVEXPrefix /* VEX */, [HasAVX],
Bruno Cardoso Lopes191a1cd2010-06-24 00:32:06 +0000261 !if(!eq(Prefix, 12 /* XS */), [HasSSE1], [HasSSE2]));
262
263 // AVX instructions have a 'v' prefix in the mnemonic
264 let AsmString = !if(hasVEXPrefix, !strconcat("v", asm), asm);
265}
266
Bruno Cardoso Lopes2bfad412010-06-18 23:13:35 +0000267// PI - SSE 1 & 2 packed instructions
268class PI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern,
269 Domain d>
270 : I<o, F, outs, ins, asm, pattern, d> {
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000271 let Predicates = !if(hasVEXPrefix /* VEX */, [HasAVX],
Bruno Cardoso Lopes2bfad412010-06-18 23:13:35 +0000272 !if(hasOpSizePrefix /* OpSize */, [HasSSE2], [HasSSE1]));
273
274 // AVX instructions have a 'v' prefix in the mnemonic
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000275 let AsmString = !if(hasVEXPrefix, !strconcat("v", asm), asm);
Bruno Cardoso Lopes2bfad412010-06-18 23:13:35 +0000276}
277
Bruno Cardoso Lopes1e13c172010-06-22 23:37:59 +0000278// PIi8 - SSE 1 & 2 packed instructions with immediate
279class PIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
280 list<dag> pattern, Domain d>
281 : Ii8<o, F, outs, ins, asm, pattern, d> {
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000282 let Predicates = !if(hasVEX_4VPrefix /* VEX */, [HasAVX],
Bruno Cardoso Lopes1e13c172010-06-22 23:37:59 +0000283 !if(hasOpSizePrefix /* OpSize */, [HasSSE2], [HasSSE1]));
284
285 // AVX instructions have a 'v' prefix in the mnemonic
286 let AsmString = !if(hasVEX_4VPrefix, !strconcat("v", asm), asm);
287}
288
Evan Cheng12c6be82007-07-31 08:04:03 +0000289// SSE1 Instruction Templates:
290//
291// SSI - SSE1 instructions with XS prefix.
292// PSI - SSE1 instructions with TB prefix.
293// PSIi8 - SSE1 instructions with ImmT == Imm8 and TB prefix.
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000294// VSSI - SSE1 instructions with XS prefix in AVX form.
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000295// VPSI - SSE1 instructions with TB prefix in AVX form.
Evan Cheng12c6be82007-07-31 08:04:03 +0000296
297class SSI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
298 : I<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE1]>;
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000299class SSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Sean Callanan04d8cb72009-12-18 00:01:26 +0000300 list<dag> pattern>
Chris Lattnerdab6bd92007-12-16 20:12:41 +0000301 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE1]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000302class PSI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000303 : I<o, F, outs, ins, asm, pattern, SSEPackedSingle>, TB,
304 Requires<[HasSSE1]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000305class PSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
306 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000307 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedSingle>, TB,
308 Requires<[HasSSE1]>;
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000309class VSSI<bits<8> o, Format F, dag outs, dag ins, string asm,
310 list<dag> pattern>
Bruno Cardoso Lopes83651092010-06-25 23:33:42 +0000311 : I<o, F, outs, ins, !strconcat("v", asm), pattern>, XS,
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000312 Requires<[HasAVX]>;
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000313class VPSI<bits<8> o, Format F, dag outs, dag ins, string asm,
314 list<dag> pattern>
315 : I<o, F, outs, ins, !strconcat("v", asm), pattern, SSEPackedSingle>,
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000316 Requires<[HasAVX]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000317
318// SSE2 Instruction Templates:
319//
Bill Wendling76105a42008-08-27 21:32:04 +0000320// SDI - SSE2 instructions with XD prefix.
321// SDIi8 - SSE2 instructions with ImmT == Imm8 and XD prefix.
322// SSDIi8 - SSE2 instructions with ImmT == Imm8 and XS prefix.
323// PDI - SSE2 instructions with TB and OpSize prefixes.
324// PDIi8 - SSE2 instructions with ImmT == Imm8 and TB and OpSize prefixes.
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000325// VSDI - SSE2 instructions with XD prefix in AVX form.
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000326// VPDI - SSE2 instructions with TB and OpSize prefixes in AVX form.
Evan Cheng12c6be82007-07-31 08:04:03 +0000327
328class SDI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
329 : I<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE2]>;
Evan Cheng01c7c192007-12-20 19:57:09 +0000330class SDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
331 list<dag> pattern>
332 : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE2]>;
Bill Wendling76105a42008-08-27 21:32:04 +0000333class SSDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
334 list<dag> pattern>
335 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE2]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000336class PDI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000337 : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
338 Requires<[HasSSE2]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000339class PDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
340 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000341 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
342 Requires<[HasSSE2]>;
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000343class VSDI<bits<8> o, Format F, dag outs, dag ins, string asm,
344 list<dag> pattern>
Bruno Cardoso Lopes83651092010-06-25 23:33:42 +0000345 : I<o, F, outs, ins, !strconcat("v", asm), pattern>, XD,
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000346 Requires<[HasAVX]>;
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000347class VPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
348 list<dag> pattern>
349 : I<o, F, outs, ins, !strconcat("v", asm), pattern, SSEPackedDouble>,
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000350 OpSize, Requires<[HasAVX]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000351
352// SSE3 Instruction Templates:
353//
354// S3I - SSE3 instructions with TB and OpSize prefixes.
355// S3SI - SSE3 instructions with XS prefix.
356// S3DI - SSE3 instructions with XD prefix.
357
Sean Callanan04d8cb72009-12-18 00:01:26 +0000358class S3SI<bits<8> o, Format F, dag outs, dag ins, string asm,
359 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000360 : I<o, F, outs, ins, asm, pattern, SSEPackedSingle>, XS,
361 Requires<[HasSSE3]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000362class S3DI<bits<8> o, Format F, dag outs, dag ins, string asm,
363 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000364 : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, XD,
365 Requires<[HasSSE3]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000366class S3I<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000367 : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
368 Requires<[HasSSE3]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000369
370
Nate Begeman8ef50212008-02-12 22:51:28 +0000371// SSSE3 Instruction Templates:
372//
373// SS38I - SSSE3 instructions with T8 prefix.
374// SS3AI - SSSE3 instructions with TA prefix.
375//
376// Note: SSSE3 instructions have 64-bit and 128-bit versions. The 64-bit version
377// uses the MMX registers. We put those instructions here because they better
378// fit into the SSSE3 instruction category rather than the MMX category.
379
380class SS38I<bits<8> o, Format F, dag outs, dag ins, string asm,
381 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000382 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
383 Requires<[HasSSSE3]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000384class SS3AI<bits<8> o, Format F, dag outs, dag ins, string asm,
385 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000386 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
387 Requires<[HasSSSE3]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000388
389// SSE4.1 Instruction Templates:
390//
391// SS48I - SSE 4.1 instructions with T8 prefix.
Evan Cheng96bdbd62008-03-14 07:39:27 +0000392// SS41AIi8 - SSE 4.1 instructions with TA prefix and ImmT == Imm8.
Nate Begeman8ef50212008-02-12 22:51:28 +0000393//
394class SS48I<bits<8> o, Format F, dag outs, dag ins, string asm,
395 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000396 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
397 Requires<[HasSSE41]>;
Evan Cheng96bdbd62008-03-14 07:39:27 +0000398class SS4AIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Nate Begeman8ef50212008-02-12 22:51:28 +0000399 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000400 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
401 Requires<[HasSSE41]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000402
Nate Begeman55b7bec2008-07-17 16:51:19 +0000403// SSE4.2 Instruction Templates:
404//
405// SS428I - SSE 4.2 instructions with T8 prefix.
406class SS428I<bits<8> o, Format F, dag outs, dag ins, string asm,
407 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000408 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
409 Requires<[HasSSE42]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000410
Eric Christopher7dfa9f22009-08-08 21:55:08 +0000411// SS42FI - SSE 4.2 instructions with TF prefix.
412class SS42FI<bits<8> o, Format F, dag outs, dag ins, string asm,
413 list<dag> pattern>
414 : I<o, F, outs, ins, asm, pattern>, TF, Requires<[HasSSE42]>;
415
Eric Christopher9fe912d2009-08-18 22:50:32 +0000416// SS42AI = SSE 4.2 instructions with TA prefix
417class SS42AI<bits<8> o, Format F, dag outs, dag ins, string asm,
Sean Callanan04d8cb72009-12-18 00:01:26 +0000418 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000419 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
420 Requires<[HasSSE42]>;
Eric Christopher9fe912d2009-08-18 22:50:32 +0000421
Bruno Cardoso Lopes14c5fd42010-07-20 00:11:13 +0000422// AVX Instruction Templates:
423// Instructions introduced in AVX (no SSE equivalent forms)
424//
425// AVX8I - AVX instructions with T8 and OpSize prefix.
Bruno Cardoso Lopes3b505842010-07-20 19:44:51 +0000426// AVXAIi8 - AVX instructions with TA, OpSize prefix and ImmT = Imm8.
Bruno Cardoso Lopes14c5fd42010-07-20 00:11:13 +0000427class AVX8I<bits<8> o, Format F, dag outs, dag ins, string asm,
428 list<dag> pattern>
429 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8, OpSize,
430 Requires<[HasAVX]>;
Bruno Cardoso Lopes3b505842010-07-20 19:44:51 +0000431class AVXAIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
432 list<dag> pattern>
433 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA, OpSize,
434 Requires<[HasAVX]>;
Bruno Cardoso Lopes14c5fd42010-07-20 00:11:13 +0000435
Eric Christopher2ef63182010-04-02 21:54:27 +0000436// AES Instruction Templates:
437//
438// AES8I
Eric Christopher1290fa02010-04-05 21:14:32 +0000439// These use the same encoding as the SSE4.2 T8 and TA encodings.
Eric Christopher2ef63182010-04-02 21:54:27 +0000440class AES8I<bits<8> o, Format F, dag outs, dag ins, string asm,
441 list<dag>pattern>
442 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
443 Requires<[HasAES]>;
444
445class AESAI<bits<8> o, Format F, dag outs, dag ins, string asm,
446 list<dag> pattern>
447 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
448 Requires<[HasAES]>;
449
Bruno Cardoso Lopesea0e05a2010-07-23 18:41:12 +0000450// CLMUL Instruction Templates
451class CLMULIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
452 list<dag>pattern>
453 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
454 OpSize, VEX_4V, Requires<[HasAVX, HasCLMUL]>;
455
Bruno Cardoso Lopesacd92302010-07-23 00:54:35 +0000456// FMA3 Instruction Templates
457class FMA3<bits<8> o, Format F, dag outs, dag ins, string asm,
458 list<dag>pattern>
459 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
460 OpSize, VEX_4V, Requires<[HasFMA3]>;
461
Evan Cheng12c6be82007-07-31 08:04:03 +0000462// X86-64 Instruction templates...
463//
464
465class RI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
466 : I<o, F, outs, ins, asm, pattern>, REX_W;
467class RIi8 <bits<8> o, Format F, dag outs, dag ins, string asm,
468 list<dag> pattern>
469 : Ii8<o, F, outs, ins, asm, pattern>, REX_W;
470class RIi32 <bits<8> o, Format F, dag outs, dag ins, string asm,
471 list<dag> pattern>
472 : Ii32<o, F, outs, ins, asm, pattern>, REX_W;
473
474class RIi64<bits<8> o, Format f, dag outs, dag ins, string asm,
475 list<dag> pattern>
476 : X86Inst<o, f, Imm64, outs, ins, asm>, REX_W {
477 let Pattern = pattern;
478 let CodeSize = 3;
479}
480
481class RSSI<bits<8> o, Format F, dag outs, dag ins, string asm,
482 list<dag> pattern>
483 : SSI<o, F, outs, ins, asm, pattern>, REX_W;
484class RSDI<bits<8> o, Format F, dag outs, dag ins, string asm,
485 list<dag> pattern>
486 : SDI<o, F, outs, ins, asm, pattern>, REX_W;
487class RPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
488 list<dag> pattern>
489 : PDI<o, F, outs, ins, asm, pattern>, REX_W;
490
491// MMX Instruction templates
492//
493
494// MMXI - MMX instructions with TB prefix.
Anton Korobeynikov31099512008-08-23 15:53:19 +0000495// MMXI64 - MMX instructions with TB prefix valid only in 64 bit mode.
Evan Cheng12c6be82007-07-31 08:04:03 +0000496// MMX2I - MMX / SSE2 instructions with TB and OpSize prefixes.
497// MMXIi8 - MMX instructions with ImmT == Imm8 and TB prefix.
498// MMXIi8 - MMX instructions with ImmT == Imm8 and TB prefix.
499// MMXID - MMX instructions with XD prefix.
500// MMXIS - MMX instructions with XS prefix.
Sean Callanan04d8cb72009-12-18 00:01:26 +0000501class MMXI<bits<8> o, Format F, dag outs, dag ins, string asm,
502 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000503 : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000504class MMXI64<bits<8> o, Format F, dag outs, dag ins, string asm,
505 list<dag> pattern>
Anton Korobeynikov31099512008-08-23 15:53:19 +0000506 : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX,In64BitMode]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000507class MMXRI<bits<8> o, Format F, dag outs, dag ins, string asm,
508 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000509 : I<o, F, outs, ins, asm, pattern>, TB, REX_W, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000510class MMX2I<bits<8> o, Format F, dag outs, dag ins, string asm,
511 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000512 : I<o, F, outs, ins, asm, pattern>, TB, OpSize, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000513class MMXIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
514 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000515 : Ii8<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000516class MMXID<bits<8> o, Format F, dag outs, dag ins, string asm,
517 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000518 : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000519class MMXIS<bits<8> o, Format F, dag outs, dag ins, string asm,
520 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000521 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasMMX]>;