blob: 42414337934667bf3cefba71c88180b08a386f2c [file] [log] [blame]
Evan Cheng86ab7d32007-07-31 08:04:03 +00001//===- X86InstrFormats.td - X86 Instruction Formats --------*- tablegen -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-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 Cheng86ab7d32007-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 Lattneraf0b8b72010-02-12 02:06:33 +000032def MRM_C1 : Format<33>;
Chris Lattner26e5c7a2010-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 Callanan48ffff62010-02-13 02:06:11 +000041def MRM_F9 : Format<42>;
Evan Cheng86ab7d32007-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 Lattner19649082010-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 Cheng86ab7d32007-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 Olesen0ba75302010-03-25 17:25:00 +000071// Class specifying the SSE execution domain, used by the SSEDomainFix pass.
Jakob Stoklund Olesendeeb9df2010-03-30 22:46:53 +000072// Keep in sync with tables in X86InstrInfo.cpp.
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +000073class Domain<bits<2> val> {
74 bits<2> Value = val;
75}
76def GenericDomain : Domain<0>;
Jakob Stoklund Olesendeeb9df2010-03-30 22:46:53 +000077def SSEPackedSingle : Domain<1>;
78def SSEPackedDouble : Domain<2>;
79def SSEPackedInt : Domain<3>;
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +000080
Evan Cheng86ab7d32007-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 Lenharth7a5a4b22008-03-01 13:37:02 +000086class LOCK { bit hasLockPrefix = 1; }
Anton Korobeynikov975e1472008-10-11 19:09:15 +000087class SegFS { bits<2> SegOvrBits = 1; }
88class SegGS { bits<2> SegOvrBits = 2; }
Evan Cheng86ab7d32007-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 Christopherb5f948c2009-08-08 21:55:08 +0000103class TF { bits<4> Prefix = 15; }
Evan Cheng86ab7d32007-07-31 08:04:03 +0000104
105class X86Inst<bits<8> opcod, Format f, ImmType i, dag outs, dag ins,
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000106 string AsmStr, Domain d = GenericDomain>
Evan Cheng86ab7d32007-07-31 08:04:03 +0000107 : Instruction {
108 let Namespace = "X86";
109
110 bits<8> Opcode = opcod;
111 Format Form = f;
112 bits<6> FormBits = Form.Value;
113 ImmType ImmT = i;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000114
115 dag OutOperandList = outs;
116 dag InOperandList = ins;
117 string AsmString = AsmStr;
118
119 //
120 // Attributes specific to X86 instructions...
121 //
122 bit hasOpSizePrefix = 0; // Does this inst have a 0x66 prefix?
123 bit hasAdSizePrefix = 0; // Does this inst have a 0x67 prefix?
124
125 bits<4> Prefix = 0; // Which prefix byte does this inst have?
126 bit hasREX_WPrefix = 0; // Does this inst requires the REX.W prefix?
Jakob Stoklund Olesen370f7652010-03-25 18:52:01 +0000127 FPFormat FPForm = NotFP; // What flavor of FP instruction is this?
Dan Gohmanaf8b7212008-08-20 13:46:21 +0000128 bit hasLockPrefix = 0; // Does this inst have a 0xF0 prefix?
Anton Korobeynikov975e1472008-10-11 19:09:15 +0000129 bits<2> SegOvrBits = 0; // Segment override prefix.
Jakob Stoklund Olesen370f7652010-03-25 18:52:01 +0000130 Domain ExeDomain = d;
Jakob Stoklund Olesen4f8ea292010-04-05 03:10:20 +0000131
132 // TSFlags layout should be kept in sync with X86InstrInfo.h.
133 let TSFlags{5-0} = FormBits;
134 let TSFlags{6} = hasOpSizePrefix;
135 let TSFlags{7} = hasAdSizePrefix;
136 let TSFlags{11-8} = Prefix;
137 let TSFlags{12} = hasREX_WPrefix;
138 let TSFlags{15-13} = ImmT.Value;
139 let TSFlags{18-16} = FPForm.Value;
140 let TSFlags{19} = hasLockPrefix;
141 let TSFlags{21-20} = SegOvrBits;
142 let TSFlags{23-22} = ExeDomain.Value;
143 let TSFlags{31-24} = Opcode;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000144}
145
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000146class I<bits<8> o, Format f, dag outs, dag ins, string asm,
147 list<dag> pattern, Domain d = GenericDomain>
148 : X86Inst<o, f, NoImm, outs, ins, asm, d> {
Evan Cheng86ab7d32007-07-31 08:04:03 +0000149 let Pattern = pattern;
150 let CodeSize = 3;
151}
Sean Callanan2c48df22009-12-18 00:01:26 +0000152class Ii8 <bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000153 list<dag> pattern, Domain d = GenericDomain>
154 : X86Inst<o, f, Imm8, outs, ins, asm, d> {
Evan Cheng86ab7d32007-07-31 08:04:03 +0000155 let Pattern = pattern;
156 let CodeSize = 3;
157}
Chris Lattner19649082010-02-12 22:27:07 +0000158class Ii8PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
159 list<dag> pattern>
160 : X86Inst<o, f, Imm8PCRel, outs, ins, asm> {
161 let Pattern = pattern;
162 let CodeSize = 3;
163}
Sean Callanan2c48df22009-12-18 00:01:26 +0000164class Ii16<bits<8> o, Format f, dag outs, dag ins, string asm,
165 list<dag> pattern>
Evan Cheng86ab7d32007-07-31 08:04:03 +0000166 : X86Inst<o, f, Imm16, outs, ins, asm> {
167 let Pattern = pattern;
168 let CodeSize = 3;
169}
Sean Callanan2c48df22009-12-18 00:01:26 +0000170class Ii32<bits<8> o, Format f, dag outs, dag ins, string asm,
171 list<dag> pattern>
Evan Cheng86ab7d32007-07-31 08:04:03 +0000172 : X86Inst<o, f, Imm32, outs, ins, asm> {
173 let Pattern = pattern;
174 let CodeSize = 3;
175}
176
Chris Lattner19649082010-02-12 22:27:07 +0000177class Ii32PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
178 list<dag> pattern>
179 : X86Inst<o, f, Imm32PCRel, outs, ins, asm> {
180 let Pattern = pattern;
181 let CodeSize = 3;
182}
183
Evan Cheng86ab7d32007-07-31 08:04:03 +0000184// FPStack Instruction Templates:
185// FPI - Floating Point Instruction template.
186class FPI<bits<8> o, Format F, dag outs, dag ins, string asm>
187 : I<o, F, outs, ins, asm, []> {}
188
189// FpI_ - Floating Point Psuedo Instruction template. Not Predicated.
190class FpI_<dag outs, dag ins, FPFormat fp, list<dag> pattern>
191 : X86Inst<0, Pseudo, NoImm, outs, ins, ""> {
Jakob Stoklund Olesen370f7652010-03-25 18:52:01 +0000192 let FPForm = fp;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000193 let Pattern = pattern;
194}
195
Sean Callananb7e73392009-09-15 00:35:17 +0000196// Templates for instructions that use a 16- or 32-bit segmented address as
197// their only operand: lcall (FAR CALL) and ljmp (FAR JMP)
198//
199// Iseg16 - 16-bit segment selector, 16-bit offset
200// Iseg32 - 16-bit segment selector, 32-bit offset
201
202class Iseg16 <bits<8> o, Format f, dag outs, dag ins, string asm,
203 list<dag> pattern> : X86Inst<o, f, NoImm, outs, ins, asm> {
204 let Pattern = pattern;
205 let CodeSize = 3;
206}
207
208class Iseg32 <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
Evan Cheng86ab7d32007-07-31 08:04:03 +0000214// SSE1 Instruction Templates:
215//
216// SSI - SSE1 instructions with XS prefix.
217// PSI - SSE1 instructions with TB prefix.
218// PSIi8 - SSE1 instructions with ImmT == Imm8 and TB prefix.
219
220class SSI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
221 : I<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE1]>;
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000222class SSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Sean Callanan2c48df22009-12-18 00:01:26 +0000223 list<dag> pattern>
Chris Lattnera9f545f2007-12-16 20:12:41 +0000224 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE1]>;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000225class PSI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000226 : I<o, F, outs, ins, asm, pattern, SSEPackedSingle>, TB,
227 Requires<[HasSSE1]>;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000228class PSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
229 list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000230 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedSingle>, TB,
231 Requires<[HasSSE1]>;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000232
233// SSE2 Instruction Templates:
234//
Bill Wendling64fe3dd2008-08-27 21:32:04 +0000235// SDI - SSE2 instructions with XD prefix.
236// SDIi8 - SSE2 instructions with ImmT == Imm8 and XD prefix.
237// SSDIi8 - SSE2 instructions with ImmT == Imm8 and XS prefix.
238// PDI - SSE2 instructions with TB and OpSize prefixes.
239// PDIi8 - SSE2 instructions with ImmT == Imm8 and TB and OpSize prefixes.
Evan Cheng86ab7d32007-07-31 08:04:03 +0000240
241class SDI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
242 : I<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE2]>;
Evan Cheng653c7ac2007-12-20 19:57:09 +0000243class SDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
244 list<dag> pattern>
245 : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE2]>;
Bill Wendling64fe3dd2008-08-27 21:32:04 +0000246class SSDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
247 list<dag> pattern>
248 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE2]>;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000249class PDI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000250 : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
251 Requires<[HasSSE2]>;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000252class PDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
253 list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000254 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
255 Requires<[HasSSE2]>;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000256
257// SSE3 Instruction Templates:
258//
259// S3I - SSE3 instructions with TB and OpSize prefixes.
260// S3SI - SSE3 instructions with XS prefix.
261// S3DI - SSE3 instructions with XD prefix.
262
Sean Callanan2c48df22009-12-18 00:01:26 +0000263class S3SI<bits<8> o, Format F, dag outs, dag ins, string asm,
264 list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000265 : I<o, F, outs, ins, asm, pattern, SSEPackedSingle>, XS,
266 Requires<[HasSSE3]>;
Sean Callanan2c48df22009-12-18 00:01:26 +0000267class S3DI<bits<8> o, Format F, dag outs, dag ins, string asm,
268 list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000269 : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, XD,
270 Requires<[HasSSE3]>;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000271class S3I<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000272 : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
273 Requires<[HasSSE3]>;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000274
275
Nate Begeman4294c1f2008-02-12 22:51:28 +0000276// SSSE3 Instruction Templates:
277//
278// SS38I - SSSE3 instructions with T8 prefix.
279// SS3AI - SSSE3 instructions with TA prefix.
280//
281// Note: SSSE3 instructions have 64-bit and 128-bit versions. The 64-bit version
282// uses the MMX registers. We put those instructions here because they better
283// fit into the SSSE3 instruction category rather than the MMX category.
284
285class SS38I<bits<8> o, Format F, dag outs, dag ins, string asm,
286 list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000287 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
288 Requires<[HasSSSE3]>;
Nate Begeman4294c1f2008-02-12 22:51:28 +0000289class SS3AI<bits<8> o, Format F, dag outs, dag ins, string asm,
290 list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000291 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
292 Requires<[HasSSSE3]>;
Nate Begeman4294c1f2008-02-12 22:51:28 +0000293
294// SSE4.1 Instruction Templates:
295//
296// SS48I - SSE 4.1 instructions with T8 prefix.
Evan Cheng78d00612008-03-14 07:39:27 +0000297// SS41AIi8 - SSE 4.1 instructions with TA prefix and ImmT == Imm8.
Nate Begeman4294c1f2008-02-12 22:51:28 +0000298//
299class SS48I<bits<8> o, Format F, dag outs, dag ins, string asm,
300 list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000301 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
302 Requires<[HasSSE41]>;
Evan Cheng78d00612008-03-14 07:39:27 +0000303class SS4AIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Nate Begeman4294c1f2008-02-12 22:51:28 +0000304 list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000305 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
306 Requires<[HasSSE41]>;
Nate Begeman4294c1f2008-02-12 22:51:28 +0000307
Nate Begeman03605a02008-07-17 16:51:19 +0000308// SSE4.2 Instruction Templates:
309//
310// SS428I - SSE 4.2 instructions with T8 prefix.
311class SS428I<bits<8> o, Format F, dag outs, dag ins, string asm,
312 list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000313 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
314 Requires<[HasSSE42]>;
Nate Begeman4294c1f2008-02-12 22:51:28 +0000315
Eric Christopherb5f948c2009-08-08 21:55:08 +0000316// SS42FI - SSE 4.2 instructions with TF prefix.
317class SS42FI<bits<8> o, Format F, dag outs, dag ins, string asm,
318 list<dag> pattern>
319 : I<o, F, outs, ins, asm, pattern>, TF, Requires<[HasSSE42]>;
320
Eric Christopher22a39402009-08-18 22:50:32 +0000321// SS42AI = SSE 4.2 instructions with TA prefix
322class SS42AI<bits<8> o, Format F, dag outs, dag ins, string asm,
Sean Callanan2c48df22009-12-18 00:01:26 +0000323 list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000324 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
325 Requires<[HasSSE42]>;
Eric Christopher22a39402009-08-18 22:50:32 +0000326
Eric Christopher7a703fd2010-04-02 21:54:27 +0000327// AES Instruction Templates:
328//
329// AES8I
330// FIXME: Verify these, they appear to use the same encoding as the SSE4.2 T8
331// and TA encodings.
332class AES8I<bits<8> o, Format F, dag outs, dag ins, string asm,
333 list<dag>pattern>
334 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
335 Requires<[HasAES]>;
336
337class AESAI<bits<8> o, Format F, dag outs, dag ins, string asm,
338 list<dag> pattern>
339 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
340 Requires<[HasAES]>;
341
Evan Cheng86ab7d32007-07-31 08:04:03 +0000342// X86-64 Instruction templates...
343//
344
345class RI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
346 : I<o, F, outs, ins, asm, pattern>, REX_W;
347class RIi8 <bits<8> o, Format F, dag outs, dag ins, string asm,
348 list<dag> pattern>
349 : Ii8<o, F, outs, ins, asm, pattern>, REX_W;
350class RIi32 <bits<8> o, Format F, dag outs, dag ins, string asm,
351 list<dag> pattern>
352 : Ii32<o, F, outs, ins, asm, pattern>, REX_W;
353
354class RIi64<bits<8> o, Format f, dag outs, dag ins, string asm,
355 list<dag> pattern>
356 : X86Inst<o, f, Imm64, outs, ins, asm>, REX_W {
357 let Pattern = pattern;
358 let CodeSize = 3;
359}
360
361class RSSI<bits<8> o, Format F, dag outs, dag ins, string asm,
362 list<dag> pattern>
363 : SSI<o, F, outs, ins, asm, pattern>, REX_W;
364class RSDI<bits<8> o, Format F, dag outs, dag ins, string asm,
365 list<dag> pattern>
366 : SDI<o, F, outs, ins, asm, pattern>, REX_W;
367class RPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
368 list<dag> pattern>
369 : PDI<o, F, outs, ins, asm, pattern>, REX_W;
370
371// MMX Instruction templates
372//
373
374// MMXI - MMX instructions with TB prefix.
Anton Korobeynikov0e70d102008-08-23 15:53:19 +0000375// MMXI64 - MMX instructions with TB prefix valid only in 64 bit mode.
Evan Cheng86ab7d32007-07-31 08:04:03 +0000376// MMX2I - MMX / SSE2 instructions with TB and OpSize prefixes.
377// MMXIi8 - MMX instructions with ImmT == Imm8 and TB prefix.
378// MMXIi8 - MMX instructions with ImmT == Imm8 and TB prefix.
379// MMXID - MMX instructions with XD prefix.
380// MMXIS - MMX instructions with XS prefix.
Sean Callanan2c48df22009-12-18 00:01:26 +0000381class MMXI<bits<8> o, Format F, dag outs, dag ins, string asm,
382 list<dag> pattern>
Evan Cheng86ab7d32007-07-31 08:04:03 +0000383 : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX]>;
Sean Callanan2c48df22009-12-18 00:01:26 +0000384class MMXI64<bits<8> o, Format F, dag outs, dag ins, string asm,
385 list<dag> pattern>
Anton Korobeynikov0e70d102008-08-23 15:53:19 +0000386 : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX,In64BitMode]>;
Sean Callanan2c48df22009-12-18 00:01:26 +0000387class MMXRI<bits<8> o, Format F, dag outs, dag ins, string asm,
388 list<dag> pattern>
Evan Cheng86ab7d32007-07-31 08:04:03 +0000389 : I<o, F, outs, ins, asm, pattern>, TB, REX_W, Requires<[HasMMX]>;
Sean Callanan2c48df22009-12-18 00:01:26 +0000390class MMX2I<bits<8> o, Format F, dag outs, dag ins, string asm,
391 list<dag> pattern>
Evan Cheng86ab7d32007-07-31 08:04:03 +0000392 : I<o, F, outs, ins, asm, pattern>, TB, OpSize, Requires<[HasMMX]>;
Sean Callanan2c48df22009-12-18 00:01:26 +0000393class MMXIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
394 list<dag> pattern>
Evan Cheng86ab7d32007-07-31 08:04:03 +0000395 : Ii8<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX]>;
Sean Callanan2c48df22009-12-18 00:01:26 +0000396class MMXID<bits<8> o, Format F, dag outs, dag ins, string asm,
397 list<dag> pattern>
Evan Cheng86ab7d32007-07-31 08:04:03 +0000398 : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasMMX]>;
Sean Callanan2c48df22009-12-18 00:01:26 +0000399class MMXIS<bits<8> o, Format F, dag outs, dag ins, string asm,
400 list<dag> pattern>
Evan Cheng86ab7d32007-07-31 08:04:03 +0000401 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasMMX]>;