blob: 5e8c8258c2c249f1a04b57044e03dd08d82f7b12 [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>;
Evan Cheng12c6be82007-07-31 08:04:03 +000042
43// ImmType - This specifies the immediate type used by an instruction. This is
44// part of the ad-hoc solution used to emit machine instruction encodings by our
45// machine code emitter.
46class ImmType<bits<3> val> {
47 bits<3> Value = val;
48}
Chris Lattner12455ca2010-02-12 22:27:07 +000049def NoImm : ImmType<0>;
50def Imm8 : ImmType<1>;
51def Imm8PCRel : ImmType<2>;
52def Imm16 : ImmType<3>;
53def Imm32 : ImmType<4>;
54def Imm32PCRel : ImmType<5>;
55def Imm64 : ImmType<6>;
Evan Cheng12c6be82007-07-31 08:04:03 +000056
57// FPFormat - This specifies what form this FP instruction has. This is used by
58// the Floating-Point stackifier pass.
59class FPFormat<bits<3> val> {
60 bits<3> Value = val;
61}
62def NotFP : FPFormat<0>;
63def ZeroArgFP : FPFormat<1>;
64def OneArgFP : FPFormat<2>;
65def OneArgFPRW : FPFormat<3>;
66def TwoArgFP : FPFormat<4>;
67def CompareFP : FPFormat<5>;
68def CondMovFP : FPFormat<6>;
69def SpecialFP : FPFormat<7>;
70
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000071// Class specifying the SSE execution domain, used by the SSEDomainFix pass.
Jakob Stoklund Olesendbff4e82010-03-30 22:46:53 +000072// Keep in sync with tables in X86InstrInfo.cpp.
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000073class Domain<bits<2> val> {
74 bits<2> Value = val;
75}
76def GenericDomain : Domain<0>;
Jakob Stoklund Olesendbff4e82010-03-30 22:46:53 +000077def SSEPackedSingle : Domain<1>;
78def SSEPackedDouble : Domain<2>;
79def SSEPackedInt : Domain<3>;
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000080
Evan Cheng12c6be82007-07-31 08:04:03 +000081// Prefix byte classes which are used to indicate to the ad-hoc machine code
82// emitter that various prefix bytes are required.
83class OpSize { bit hasOpSizePrefix = 1; }
84class AdSize { bit hasAdSizePrefix = 1; }
85class REX_W { bit hasREX_WPrefix = 1; }
Andrew Lenharth0070dd12008-03-01 13:37:02 +000086class LOCK { bit hasLockPrefix = 1; }
Anton Korobeynikov25897772008-10-11 19:09:15 +000087class SegFS { bits<2> SegOvrBits = 1; }
88class SegGS { bits<2> SegOvrBits = 2; }
Evan Cheng12c6be82007-07-31 08:04:03 +000089class TB { bits<4> Prefix = 1; }
90class REP { bits<4> Prefix = 2; }
91class D8 { bits<4> Prefix = 3; }
92class D9 { bits<4> Prefix = 4; }
93class DA { bits<4> Prefix = 5; }
94class DB { bits<4> Prefix = 6; }
95class DC { bits<4> Prefix = 7; }
96class DD { bits<4> Prefix = 8; }
97class DE { bits<4> Prefix = 9; }
98class DF { bits<4> Prefix = 10; }
99class XD { bits<4> Prefix = 11; }
100class XS { bits<4> Prefix = 12; }
101class T8 { bits<4> Prefix = 13; }
102class TA { bits<4> Prefix = 14; }
Eric Christopher7dfa9f22009-08-08 21:55:08 +0000103class TF { bits<4> Prefix = 15; }
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000104class VEX { bit hasVEXPrefix = 1; }
105class VEX_4V : VEX { bit hasVEX_4VPrefix = 1; }
Evan Cheng12c6be82007-07-31 08:04:03 +0000106
107class X86Inst<bits<8> opcod, Format f, ImmType i, dag outs, dag ins,
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000108 string AsmStr, Domain d = GenericDomain>
Evan Cheng12c6be82007-07-31 08:04:03 +0000109 : Instruction {
110 let Namespace = "X86";
111
112 bits<8> Opcode = opcod;
113 Format Form = f;
114 bits<6> FormBits = Form.Value;
115 ImmType ImmT = i;
Evan Cheng12c6be82007-07-31 08:04:03 +0000116
117 dag OutOperandList = outs;
118 dag InOperandList = ins;
119 string AsmString = AsmStr;
120
121 //
122 // Attributes specific to X86 instructions...
123 //
124 bit hasOpSizePrefix = 0; // Does this inst have a 0x66 prefix?
125 bit hasAdSizePrefix = 0; // Does this inst have a 0x67 prefix?
126
127 bits<4> Prefix = 0; // Which prefix byte does this inst have?
128 bit hasREX_WPrefix = 0; // Does this inst requires the REX.W prefix?
Jakob Stoklund Olesenf8d7eda2010-03-25 18:52:01 +0000129 FPFormat FPForm = NotFP; // What flavor of FP instruction is this?
Dan Gohmana21bdda2008-08-20 13:46:21 +0000130 bit hasLockPrefix = 0; // Does this inst have a 0xF0 prefix?
Anton Korobeynikov25897772008-10-11 19:09:15 +0000131 bits<2> SegOvrBits = 0; // Segment override prefix.
Jakob Stoklund Olesenf8d7eda2010-03-25 18:52:01 +0000132 Domain ExeDomain = d;
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000133 bit hasVEXPrefix = 0; // Does this inst requires a VEX prefix?
134 bit hasVEX_4VPrefix = 0; // Does this inst requires the VEX.VVVV field?
Jakob Stoklund Olesenb93331f2010-04-05 03:10:20 +0000135
136 // TSFlags layout should be kept in sync with X86InstrInfo.h.
137 let TSFlags{5-0} = FormBits;
138 let TSFlags{6} = hasOpSizePrefix;
139 let TSFlags{7} = hasAdSizePrefix;
140 let TSFlags{11-8} = Prefix;
141 let TSFlags{12} = hasREX_WPrefix;
142 let TSFlags{15-13} = ImmT.Value;
143 let TSFlags{18-16} = FPForm.Value;
144 let TSFlags{19} = hasLockPrefix;
145 let TSFlags{21-20} = SegOvrBits;
146 let TSFlags{23-22} = ExeDomain.Value;
147 let TSFlags{31-24} = Opcode;
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000148 let TSFlags{32} = hasVEXPrefix;
149 let TSFlags{33} = hasVEX_4VPrefix;
Evan Cheng12c6be82007-07-31 08:04:03 +0000150}
151
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000152class I<bits<8> o, Format f, dag outs, dag ins, string asm,
153 list<dag> pattern, Domain d = GenericDomain>
154 : X86Inst<o, f, NoImm, outs, ins, asm, d> {
Evan Cheng12c6be82007-07-31 08:04:03 +0000155 let Pattern = pattern;
156 let CodeSize = 3;
157}
Sean Callanan04d8cb72009-12-18 00:01:26 +0000158class Ii8 <bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000159 list<dag> pattern, Domain d = GenericDomain>
160 : X86Inst<o, f, Imm8, outs, ins, asm, d> {
Evan Cheng12c6be82007-07-31 08:04:03 +0000161 let Pattern = pattern;
162 let CodeSize = 3;
163}
Chris Lattner12455ca2010-02-12 22:27:07 +0000164class Ii8PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
165 list<dag> pattern>
166 : X86Inst<o, f, Imm8PCRel, outs, ins, asm> {
167 let Pattern = pattern;
168 let CodeSize = 3;
169}
Sean Callanan04d8cb72009-12-18 00:01:26 +0000170class Ii16<bits<8> o, Format f, dag outs, dag ins, string asm,
171 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000172 : X86Inst<o, f, Imm16, outs, ins, asm> {
173 let Pattern = pattern;
174 let CodeSize = 3;
175}
Sean Callanan04d8cb72009-12-18 00:01:26 +0000176class Ii32<bits<8> o, Format f, dag outs, dag ins, string asm,
177 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000178 : X86Inst<o, f, Imm32, outs, ins, asm> {
179 let Pattern = pattern;
180 let CodeSize = 3;
181}
182
Chris Lattner12455ca2010-02-12 22:27:07 +0000183class Ii32PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
184 list<dag> pattern>
185 : X86Inst<o, f, Imm32PCRel, outs, ins, asm> {
186 let Pattern = pattern;
187 let CodeSize = 3;
188}
189
Evan Cheng12c6be82007-07-31 08:04:03 +0000190// FPStack Instruction Templates:
191// FPI - Floating Point Instruction template.
192class FPI<bits<8> o, Format F, dag outs, dag ins, string asm>
193 : I<o, F, outs, ins, asm, []> {}
194
195// FpI_ - Floating Point Psuedo Instruction template. Not Predicated.
196class FpI_<dag outs, dag ins, FPFormat fp, list<dag> pattern>
197 : X86Inst<0, Pseudo, NoImm, outs, ins, ""> {
Jakob Stoklund Olesenf8d7eda2010-03-25 18:52:01 +0000198 let FPForm = fp;
Evan Cheng12c6be82007-07-31 08:04:03 +0000199 let Pattern = pattern;
200}
201
Sean Callanan050e0cd2009-09-15 00:35:17 +0000202// Templates for instructions that use a 16- or 32-bit segmented address as
203// their only operand: lcall (FAR CALL) and ljmp (FAR JMP)
204//
205// Iseg16 - 16-bit segment selector, 16-bit offset
206// Iseg32 - 16-bit segment selector, 32-bit offset
207
208class Iseg16 <bits<8> o, Format f, dag outs, dag ins, string asm,
209 list<dag> pattern> : X86Inst<o, f, NoImm, outs, ins, asm> {
210 let Pattern = pattern;
211 let CodeSize = 3;
212}
213
214class Iseg32 <bits<8> o, Format f, dag outs, dag ins, string asm,
215 list<dag> pattern> : X86Inst<o, f, NoImm, outs, ins, asm> {
216 let Pattern = pattern;
217 let CodeSize = 3;
218}
219
Bruno Cardoso Lopes6b98f712010-06-17 23:05:30 +0000220// SI - SSE 1 & 2 scalar instructions
221class SI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
222 : I<o, F, outs, ins, asm, pattern> {
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000223 let Predicates = !if(hasVEXPrefix /* VEX_4V */,
Bruno Cardoso Lopes6b98f712010-06-17 23:05:30 +0000224 !if(!eq(Prefix, 11 /* XD */), [HasAVX, HasSSE2], [HasAVX, HasSSE1]),
Bruno Cardoso Lopes66d2d572010-06-18 23:53:27 +0000225 !if(!eq(Prefix, 12 /* XS */), [HasSSE1], [HasSSE2]));
Bruno Cardoso Lopes6b98f712010-06-17 23:05:30 +0000226
227 // AVX instructions have a 'v' prefix in the mnemonic
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000228 let AsmString = !if(hasVEXPrefix, !strconcat("v", asm), asm);
Bruno Cardoso Lopes6b98f712010-06-17 23:05:30 +0000229}
230
Bruno Cardoso Lopes2bfad412010-06-18 23:13:35 +0000231// PI - SSE 1 & 2 packed instructions
232class PI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern,
233 Domain d>
234 : I<o, F, outs, ins, asm, pattern, d> {
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000235 let Predicates = !if(hasVEXPrefix /* VEX_4V */,
Bruno Cardoso Lopes2bfad412010-06-18 23:13:35 +0000236 !if(hasOpSizePrefix /* OpSize */, [HasAVX, HasSSE2], [HasAVX, HasSSE1]),
237 !if(hasOpSizePrefix /* OpSize */, [HasSSE2], [HasSSE1]));
238
239 // AVX instructions have a 'v' prefix in the mnemonic
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000240 let AsmString = !if(hasVEXPrefix, !strconcat("v", asm), asm);
Bruno Cardoso Lopes2bfad412010-06-18 23:13:35 +0000241}
242
Bruno Cardoso Lopes1e13c172010-06-22 23:37:59 +0000243// PIi8 - SSE 1 & 2 packed instructions with immediate
244class PIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
245 list<dag> pattern, Domain d>
246 : Ii8<o, F, outs, ins, asm, pattern, d> {
247 let Predicates = !if(hasVEX_4VPrefix /* VEX_4V */,
248 !if(hasOpSizePrefix /* OpSize */, [HasAVX, HasSSE2], [HasAVX, HasSSE1]),
249 !if(hasOpSizePrefix /* OpSize */, [HasSSE2], [HasSSE1]));
250
251 // AVX instructions have a 'v' prefix in the mnemonic
252 let AsmString = !if(hasVEX_4VPrefix, !strconcat("v", asm), asm);
253}
254
Evan Cheng12c6be82007-07-31 08:04:03 +0000255// SSE1 Instruction Templates:
256//
257// SSI - SSE1 instructions with XS prefix.
258// PSI - SSE1 instructions with TB prefix.
259// PSIi8 - SSE1 instructions with ImmT == Imm8 and TB prefix.
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000260// VSSI - SSE1 instructions with XS prefix in AVX form.
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000261// VPSI - SSE1 instructions with TB prefix in AVX form.
Evan Cheng12c6be82007-07-31 08:04:03 +0000262
263class SSI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
264 : I<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE1]>;
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000265class SSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Sean Callanan04d8cb72009-12-18 00:01:26 +0000266 list<dag> pattern>
Chris Lattnerdab6bd92007-12-16 20:12:41 +0000267 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE1]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000268class PSI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000269 : I<o, F, outs, ins, asm, pattern, SSEPackedSingle>, TB,
270 Requires<[HasSSE1]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000271class PSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
272 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000273 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedSingle>, TB,
274 Requires<[HasSSE1]>;
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000275class VSSI<bits<8> o, Format F, dag outs, dag ins, string asm,
276 list<dag> pattern>
277 : I<o, F, outs, ins, !strconcat("v", asm), pattern>, XS, VEX_4V,
278 Requires<[HasAVX, HasSSE1]>;
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000279class VPSI<bits<8> o, Format F, dag outs, dag ins, string asm,
280 list<dag> pattern>
281 : I<o, F, outs, ins, !strconcat("v", asm), pattern, SSEPackedSingle>,
282 VEX_4V, Requires<[HasAVX, HasSSE1]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000283
284// SSE2 Instruction Templates:
285//
Bill Wendling76105a42008-08-27 21:32:04 +0000286// SDI - SSE2 instructions with XD prefix.
287// SDIi8 - SSE2 instructions with ImmT == Imm8 and XD prefix.
288// SSDIi8 - SSE2 instructions with ImmT == Imm8 and XS prefix.
289// PDI - SSE2 instructions with TB and OpSize prefixes.
290// PDIi8 - SSE2 instructions with ImmT == Imm8 and TB and OpSize prefixes.
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000291// VSDI - SSE2 instructions with XD prefix in AVX form.
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000292// VPDI - SSE2 instructions with TB and OpSize prefixes in AVX form.
Evan Cheng12c6be82007-07-31 08:04:03 +0000293
294class SDI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
295 : I<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE2]>;
Evan Cheng01c7c192007-12-20 19:57:09 +0000296class SDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
297 list<dag> pattern>
298 : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE2]>;
Bill Wendling76105a42008-08-27 21:32:04 +0000299class SSDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
300 list<dag> pattern>
301 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE2]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000302class PDI<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, SSEPackedDouble>, TB, OpSize,
304 Requires<[HasSSE2]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000305class PDIi8<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, SSEPackedDouble>, TB, OpSize,
308 Requires<[HasSSE2]>;
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000309class VSDI<bits<8> o, Format F, dag outs, dag ins, string asm,
310 list<dag> pattern>
311 : I<o, F, outs, ins, !strconcat("v", asm), pattern>, XD, VEX_4V,
312 Requires<[HasAVX, HasSSE2]>;
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000313class VPDI<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, SSEPackedDouble>,
316 VEX_4V, OpSize, Requires<[HasAVX, HasSSE2]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000317
318// SSE3 Instruction Templates:
319//
320// S3I - SSE3 instructions with TB and OpSize prefixes.
321// S3SI - SSE3 instructions with XS prefix.
322// S3DI - SSE3 instructions with XD prefix.
323
Sean Callanan04d8cb72009-12-18 00:01:26 +0000324class S3SI<bits<8> o, Format F, dag outs, dag ins, string asm,
325 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000326 : I<o, F, outs, ins, asm, pattern, SSEPackedSingle>, XS,
327 Requires<[HasSSE3]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000328class S3DI<bits<8> o, Format F, dag outs, dag ins, string asm,
329 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000330 : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, XD,
331 Requires<[HasSSE3]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000332class S3I<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000333 : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
334 Requires<[HasSSE3]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000335
336
Nate Begeman8ef50212008-02-12 22:51:28 +0000337// SSSE3 Instruction Templates:
338//
339// SS38I - SSSE3 instructions with T8 prefix.
340// SS3AI - SSSE3 instructions with TA prefix.
341//
342// Note: SSSE3 instructions have 64-bit and 128-bit versions. The 64-bit version
343// uses the MMX registers. We put those instructions here because they better
344// fit into the SSSE3 instruction category rather than the MMX category.
345
346class SS38I<bits<8> o, Format F, dag outs, dag ins, string asm,
347 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000348 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
349 Requires<[HasSSSE3]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000350class SS3AI<bits<8> o, Format F, dag outs, dag ins, string asm,
351 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000352 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
353 Requires<[HasSSSE3]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000354
355// SSE4.1 Instruction Templates:
356//
357// SS48I - SSE 4.1 instructions with T8 prefix.
Evan Cheng96bdbd62008-03-14 07:39:27 +0000358// SS41AIi8 - SSE 4.1 instructions with TA prefix and ImmT == Imm8.
Nate Begeman8ef50212008-02-12 22:51:28 +0000359//
360class SS48I<bits<8> o, Format F, dag outs, dag ins, string asm,
361 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000362 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
363 Requires<[HasSSE41]>;
Evan Cheng96bdbd62008-03-14 07:39:27 +0000364class SS4AIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Nate Begeman8ef50212008-02-12 22:51:28 +0000365 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000366 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
367 Requires<[HasSSE41]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000368
Nate Begeman55b7bec2008-07-17 16:51:19 +0000369// SSE4.2 Instruction Templates:
370//
371// SS428I - SSE 4.2 instructions with T8 prefix.
372class SS428I<bits<8> o, Format F, dag outs, dag ins, string asm,
373 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000374 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
375 Requires<[HasSSE42]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000376
Eric Christopher7dfa9f22009-08-08 21:55:08 +0000377// SS42FI - SSE 4.2 instructions with TF prefix.
378class SS42FI<bits<8> o, Format F, dag outs, dag ins, string asm,
379 list<dag> pattern>
380 : I<o, F, outs, ins, asm, pattern>, TF, Requires<[HasSSE42]>;
381
Eric Christopher9fe912d2009-08-18 22:50:32 +0000382// SS42AI = SSE 4.2 instructions with TA prefix
383class SS42AI<bits<8> o, Format F, dag outs, dag ins, string asm,
Sean Callanan04d8cb72009-12-18 00:01:26 +0000384 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000385 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
386 Requires<[HasSSE42]>;
Eric Christopher9fe912d2009-08-18 22:50:32 +0000387
Eric Christopher2ef63182010-04-02 21:54:27 +0000388// AES Instruction Templates:
389//
390// AES8I
Eric Christopher1290fa02010-04-05 21:14:32 +0000391// These use the same encoding as the SSE4.2 T8 and TA encodings.
Eric Christopher2ef63182010-04-02 21:54:27 +0000392class AES8I<bits<8> o, Format F, dag outs, dag ins, string asm,
393 list<dag>pattern>
394 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
395 Requires<[HasAES]>;
396
397class AESAI<bits<8> o, Format F, dag outs, dag ins, string asm,
398 list<dag> pattern>
399 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
400 Requires<[HasAES]>;
401
Evan Cheng12c6be82007-07-31 08:04:03 +0000402// X86-64 Instruction templates...
403//
404
405class RI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
406 : I<o, F, outs, ins, asm, pattern>, REX_W;
407class RIi8 <bits<8> o, Format F, dag outs, dag ins, string asm,
408 list<dag> pattern>
409 : Ii8<o, F, outs, ins, asm, pattern>, REX_W;
410class RIi32 <bits<8> o, Format F, dag outs, dag ins, string asm,
411 list<dag> pattern>
412 : Ii32<o, F, outs, ins, asm, pattern>, REX_W;
413
414class RIi64<bits<8> o, Format f, dag outs, dag ins, string asm,
415 list<dag> pattern>
416 : X86Inst<o, f, Imm64, outs, ins, asm>, REX_W {
417 let Pattern = pattern;
418 let CodeSize = 3;
419}
420
421class RSSI<bits<8> o, Format F, dag outs, dag ins, string asm,
422 list<dag> pattern>
423 : SSI<o, F, outs, ins, asm, pattern>, REX_W;
424class RSDI<bits<8> o, Format F, dag outs, dag ins, string asm,
425 list<dag> pattern>
426 : SDI<o, F, outs, ins, asm, pattern>, REX_W;
427class RPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
428 list<dag> pattern>
429 : PDI<o, F, outs, ins, asm, pattern>, REX_W;
430
431// MMX Instruction templates
432//
433
434// MMXI - MMX instructions with TB prefix.
Anton Korobeynikov31099512008-08-23 15:53:19 +0000435// MMXI64 - MMX instructions with TB prefix valid only in 64 bit mode.
Evan Cheng12c6be82007-07-31 08:04:03 +0000436// MMX2I - MMX / SSE2 instructions with TB and OpSize prefixes.
437// MMXIi8 - MMX instructions with ImmT == Imm8 and TB prefix.
438// MMXIi8 - MMX instructions with ImmT == Imm8 and TB prefix.
439// MMXID - MMX instructions with XD prefix.
440// MMXIS - MMX instructions with XS prefix.
Sean Callanan04d8cb72009-12-18 00:01:26 +0000441class MMXI<bits<8> o, Format F, dag outs, dag ins, string asm,
442 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000443 : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000444class MMXI64<bits<8> o, Format F, dag outs, dag ins, string asm,
445 list<dag> pattern>
Anton Korobeynikov31099512008-08-23 15:53:19 +0000446 : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX,In64BitMode]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000447class MMXRI<bits<8> o, Format F, dag outs, dag ins, string asm,
448 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000449 : I<o, F, outs, ins, asm, pattern>, TB, REX_W, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000450class MMX2I<bits<8> o, Format F, dag outs, dag ins, string asm,
451 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000452 : I<o, F, outs, ins, asm, pattern>, TB, OpSize, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000453class MMXIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
454 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000455 : Ii8<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000456class MMXID<bits<8> o, Format F, dag outs, dag ins, string asm,
457 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000458 : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000459class MMXIS<bits<8> o, Format F, dag outs, dag ins, string asm,
460 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000461 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasMMX]>;