blob: 5c422e7cd457757475ee0a6f7408e798aee8c716 [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; }
Bruno Cardoso Lopesb5e6eed2010-06-08 22:51:23 +000086class VEX_4V { bit hasVEX_4VPrefix = 1; }
Andrew Lenharth7a5a4b22008-03-01 13:37:02 +000087class LOCK { bit hasLockPrefix = 1; }
Anton Korobeynikov975e1472008-10-11 19:09:15 +000088class SegFS { bits<2> SegOvrBits = 1; }
89class SegGS { bits<2> SegOvrBits = 2; }
Evan Cheng86ab7d32007-07-31 08:04:03 +000090class TB { bits<4> Prefix = 1; }
91class REP { bits<4> Prefix = 2; }
92class D8 { bits<4> Prefix = 3; }
93class D9 { bits<4> Prefix = 4; }
94class DA { bits<4> Prefix = 5; }
95class DB { bits<4> Prefix = 6; }
96class DC { bits<4> Prefix = 7; }
97class DD { bits<4> Prefix = 8; }
98class DE { bits<4> Prefix = 9; }
99class DF { bits<4> Prefix = 10; }
100class XD { bits<4> Prefix = 11; }
101class XS { bits<4> Prefix = 12; }
102class T8 { bits<4> Prefix = 13; }
103class TA { bits<4> Prefix = 14; }
Eric Christopherb5f948c2009-08-08 21:55:08 +0000104class TF { bits<4> Prefix = 15; }
Evan Cheng86ab7d32007-07-31 08:04:03 +0000105
106class X86Inst<bits<8> opcod, Format f, ImmType i, dag outs, dag ins,
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000107 string AsmStr, Domain d = GenericDomain>
Evan Cheng86ab7d32007-07-31 08:04:03 +0000108 : Instruction {
109 let Namespace = "X86";
110
111 bits<8> Opcode = opcod;
112 Format Form = f;
113 bits<6> FormBits = Form.Value;
114 ImmType ImmT = i;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000115
116 dag OutOperandList = outs;
117 dag InOperandList = ins;
118 string AsmString = AsmStr;
119
120 //
121 // Attributes specific to X86 instructions...
122 //
123 bit hasOpSizePrefix = 0; // Does this inst have a 0x66 prefix?
124 bit hasAdSizePrefix = 0; // Does this inst have a 0x67 prefix?
125
126 bits<4> Prefix = 0; // Which prefix byte does this inst have?
127 bit hasREX_WPrefix = 0; // Does this inst requires the REX.W prefix?
Bruno Cardoso Lopesb5e6eed2010-06-08 22:51:23 +0000128 bit hasVEX_4VPrefix = 0; // Does this inst requires the VEX.VVVV prefix?
Jakob Stoklund Olesen370f7652010-03-25 18:52:01 +0000129 FPFormat FPForm = NotFP; // What flavor of FP instruction is this?
Dan Gohmanaf8b7212008-08-20 13:46:21 +0000130 bit hasLockPrefix = 0; // Does this inst have a 0xF0 prefix?
Anton Korobeynikov975e1472008-10-11 19:09:15 +0000131 bits<2> SegOvrBits = 0; // Segment override prefix.
Jakob Stoklund Olesen370f7652010-03-25 18:52:01 +0000132 Domain ExeDomain = d;
Jakob Stoklund Olesen4f8ea292010-04-05 03:10:20 +0000133
134 // TSFlags layout should be kept in sync with X86InstrInfo.h.
135 let TSFlags{5-0} = FormBits;
136 let TSFlags{6} = hasOpSizePrefix;
137 let TSFlags{7} = hasAdSizePrefix;
138 let TSFlags{11-8} = Prefix;
139 let TSFlags{12} = hasREX_WPrefix;
140 let TSFlags{15-13} = ImmT.Value;
141 let TSFlags{18-16} = FPForm.Value;
142 let TSFlags{19} = hasLockPrefix;
143 let TSFlags{21-20} = SegOvrBits;
144 let TSFlags{23-22} = ExeDomain.Value;
145 let TSFlags{31-24} = Opcode;
Bruno Cardoso Lopesb5e6eed2010-06-08 22:51:23 +0000146 let TSFlags{32} = hasVEX_4VPrefix;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000147}
148
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000149class I<bits<8> o, Format f, dag outs, dag ins, string asm,
150 list<dag> pattern, Domain d = GenericDomain>
151 : X86Inst<o, f, NoImm, outs, ins, asm, d> {
Evan Cheng86ab7d32007-07-31 08:04:03 +0000152 let Pattern = pattern;
153 let CodeSize = 3;
154}
Sean Callanan2c48df22009-12-18 00:01:26 +0000155class Ii8 <bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000156 list<dag> pattern, Domain d = GenericDomain>
157 : X86Inst<o, f, Imm8, outs, ins, asm, d> {
Evan Cheng86ab7d32007-07-31 08:04:03 +0000158 let Pattern = pattern;
159 let CodeSize = 3;
160}
Chris Lattner19649082010-02-12 22:27:07 +0000161class Ii8PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
162 list<dag> pattern>
163 : X86Inst<o, f, Imm8PCRel, outs, ins, asm> {
164 let Pattern = pattern;
165 let CodeSize = 3;
166}
Sean Callanan2c48df22009-12-18 00:01:26 +0000167class Ii16<bits<8> o, Format f, dag outs, dag ins, string asm,
168 list<dag> pattern>
Evan Cheng86ab7d32007-07-31 08:04:03 +0000169 : X86Inst<o, f, Imm16, outs, ins, asm> {
170 let Pattern = pattern;
171 let CodeSize = 3;
172}
Sean Callanan2c48df22009-12-18 00:01:26 +0000173class Ii32<bits<8> o, Format f, dag outs, dag ins, string asm,
174 list<dag> pattern>
Evan Cheng86ab7d32007-07-31 08:04:03 +0000175 : X86Inst<o, f, Imm32, outs, ins, asm> {
176 let Pattern = pattern;
177 let CodeSize = 3;
178}
179
Chris Lattner19649082010-02-12 22:27:07 +0000180class Ii32PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
181 list<dag> pattern>
182 : X86Inst<o, f, Imm32PCRel, outs, ins, asm> {
183 let Pattern = pattern;
184 let CodeSize = 3;
185}
186
Evan Cheng86ab7d32007-07-31 08:04:03 +0000187// FPStack Instruction Templates:
188// FPI - Floating Point Instruction template.
189class FPI<bits<8> o, Format F, dag outs, dag ins, string asm>
190 : I<o, F, outs, ins, asm, []> {}
191
192// FpI_ - Floating Point Psuedo Instruction template. Not Predicated.
193class FpI_<dag outs, dag ins, FPFormat fp, list<dag> pattern>
194 : X86Inst<0, Pseudo, NoImm, outs, ins, ""> {
Jakob Stoklund Olesen370f7652010-03-25 18:52:01 +0000195 let FPForm = fp;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000196 let Pattern = pattern;
197}
198
Sean Callananb7e73392009-09-15 00:35:17 +0000199// Templates for instructions that use a 16- or 32-bit segmented address as
200// their only operand: lcall (FAR CALL) and ljmp (FAR JMP)
201//
202// Iseg16 - 16-bit segment selector, 16-bit offset
203// Iseg32 - 16-bit segment selector, 32-bit offset
204
205class Iseg16 <bits<8> o, Format f, dag outs, dag ins, string asm,
206 list<dag> pattern> : X86Inst<o, f, NoImm, outs, ins, asm> {
207 let Pattern = pattern;
208 let CodeSize = 3;
209}
210
211class Iseg32 <bits<8> o, Format f, dag outs, dag ins, string asm,
212 list<dag> pattern> : X86Inst<o, f, NoImm, outs, ins, asm> {
213 let Pattern = pattern;
214 let CodeSize = 3;
215}
216
Evan Cheng86ab7d32007-07-31 08:04:03 +0000217// SSE1 Instruction Templates:
218//
219// SSI - SSE1 instructions with XS prefix.
220// PSI - SSE1 instructions with TB prefix.
221// PSIi8 - SSE1 instructions with ImmT == Imm8 and TB prefix.
Bruno Cardoso Lopesb5e6eed2010-06-08 22:51:23 +0000222// VSSI - SSE1 instructions with XS prefix in AVX form.
Bruno Cardoso Lopes8f14e992010-06-12 01:23:26 +0000223// VPSI - SSE1 instructions with TB prefix in AVX form.
Evan Cheng86ab7d32007-07-31 08:04:03 +0000224
225class SSI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
226 : I<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE1]>;
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000227class SSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Sean Callanan2c48df22009-12-18 00:01:26 +0000228 list<dag> pattern>
Chris Lattnera9f545f2007-12-16 20:12:41 +0000229 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE1]>;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000230class PSI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000231 : I<o, F, outs, ins, asm, pattern, SSEPackedSingle>, TB,
232 Requires<[HasSSE1]>;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000233class PSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
234 list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000235 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedSingle>, TB,
236 Requires<[HasSSE1]>;
Bruno Cardoso Lopesb5e6eed2010-06-08 22:51:23 +0000237class VSSI<bits<8> o, Format F, dag outs, dag ins, string asm,
238 list<dag> pattern>
239 : I<o, F, outs, ins, !strconcat("v", asm), pattern>, XS, VEX_4V,
240 Requires<[HasAVX, HasSSE1]>;
Bruno Cardoso Lopes8f14e992010-06-12 01:23:26 +0000241class VPSI<bits<8> o, Format F, dag outs, dag ins, string asm,
242 list<dag> pattern>
243 : I<o, F, outs, ins, !strconcat("v", asm), pattern, SSEPackedSingle>,
244 VEX_4V, Requires<[HasAVX, HasSSE1]>;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000245
246// SSE2 Instruction Templates:
247//
Bill Wendling64fe3dd2008-08-27 21:32:04 +0000248// SDI - SSE2 instructions with XD prefix.
249// SDIi8 - SSE2 instructions with ImmT == Imm8 and XD prefix.
250// SSDIi8 - SSE2 instructions with ImmT == Imm8 and XS prefix.
251// PDI - SSE2 instructions with TB and OpSize prefixes.
252// PDIi8 - SSE2 instructions with ImmT == Imm8 and TB and OpSize prefixes.
Bruno Cardoso Lopesb5e6eed2010-06-08 22:51:23 +0000253// VSDI - SSE2 instructions with XD prefix in AVX form.
Bruno Cardoso Lopes8f14e992010-06-12 01:23:26 +0000254// VPDI - SSE2 instructions with TB and OpSize prefixes in AVX form.
Evan Cheng86ab7d32007-07-31 08:04:03 +0000255
256class SDI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
257 : I<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE2]>;
Evan Cheng653c7ac2007-12-20 19:57:09 +0000258class SDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
259 list<dag> pattern>
260 : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE2]>;
Bill Wendling64fe3dd2008-08-27 21:32:04 +0000261class SSDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
262 list<dag> pattern>
263 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE2]>;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000264class PDI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000265 : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
266 Requires<[HasSSE2]>;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000267class PDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
268 list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000269 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
270 Requires<[HasSSE2]>;
Bruno Cardoso Lopesb5e6eed2010-06-08 22:51:23 +0000271class VSDI<bits<8> o, Format F, dag outs, dag ins, string asm,
272 list<dag> pattern>
273 : I<o, F, outs, ins, !strconcat("v", asm), pattern>, XD, VEX_4V,
274 Requires<[HasAVX, HasSSE2]>;
Bruno Cardoso Lopes8f14e992010-06-12 01:23:26 +0000275class VPDI<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, SSEPackedDouble>,
278 VEX_4V, OpSize, Requires<[HasAVX, HasSSE2]>;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000279
280// SSE3 Instruction Templates:
281//
282// S3I - SSE3 instructions with TB and OpSize prefixes.
283// S3SI - SSE3 instructions with XS prefix.
284// S3DI - SSE3 instructions with XD prefix.
285
Sean Callanan2c48df22009-12-18 00:01:26 +0000286class S3SI<bits<8> o, Format F, dag outs, dag ins, string asm,
287 list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000288 : I<o, F, outs, ins, asm, pattern, SSEPackedSingle>, XS,
289 Requires<[HasSSE3]>;
Sean Callanan2c48df22009-12-18 00:01:26 +0000290class S3DI<bits<8> o, Format F, dag outs, dag ins, string asm,
291 list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000292 : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, XD,
293 Requires<[HasSSE3]>;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000294class S3I<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000295 : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
296 Requires<[HasSSE3]>;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000297
298
Nate Begeman4294c1f2008-02-12 22:51:28 +0000299// SSSE3 Instruction Templates:
300//
301// SS38I - SSSE3 instructions with T8 prefix.
302// SS3AI - SSSE3 instructions with TA prefix.
303//
304// Note: SSSE3 instructions have 64-bit and 128-bit versions. The 64-bit version
305// uses the MMX registers. We put those instructions here because they better
306// fit into the SSSE3 instruction category rather than the MMX category.
307
308class SS38I<bits<8> o, Format F, dag outs, dag ins, string asm,
309 list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000310 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
311 Requires<[HasSSSE3]>;
Nate Begeman4294c1f2008-02-12 22:51:28 +0000312class SS3AI<bits<8> o, Format F, dag outs, dag ins, string asm,
313 list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000314 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
315 Requires<[HasSSSE3]>;
Nate Begeman4294c1f2008-02-12 22:51:28 +0000316
317// SSE4.1 Instruction Templates:
318//
319// SS48I - SSE 4.1 instructions with T8 prefix.
Evan Cheng78d00612008-03-14 07:39:27 +0000320// SS41AIi8 - SSE 4.1 instructions with TA prefix and ImmT == Imm8.
Nate Begeman4294c1f2008-02-12 22:51:28 +0000321//
322class SS48I<bits<8> o, Format F, dag outs, dag ins, string asm,
323 list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000324 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
325 Requires<[HasSSE41]>;
Evan Cheng78d00612008-03-14 07:39:27 +0000326class SS4AIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Nate Begeman4294c1f2008-02-12 22:51:28 +0000327 list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000328 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
329 Requires<[HasSSE41]>;
Nate Begeman4294c1f2008-02-12 22:51:28 +0000330
Nate Begeman03605a02008-07-17 16:51:19 +0000331// SSE4.2 Instruction Templates:
332//
333// SS428I - SSE 4.2 instructions with T8 prefix.
334class SS428I<bits<8> o, Format F, dag outs, dag ins, string asm,
335 list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000336 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
337 Requires<[HasSSE42]>;
Nate Begeman4294c1f2008-02-12 22:51:28 +0000338
Eric Christopherb5f948c2009-08-08 21:55:08 +0000339// SS42FI - SSE 4.2 instructions with TF prefix.
340class SS42FI<bits<8> o, Format F, dag outs, dag ins, string asm,
341 list<dag> pattern>
342 : I<o, F, outs, ins, asm, pattern>, TF, Requires<[HasSSE42]>;
343
Eric Christopher22a39402009-08-18 22:50:32 +0000344// SS42AI = SSE 4.2 instructions with TA prefix
345class SS42AI<bits<8> o, Format F, dag outs, dag ins, string asm,
Sean Callanan2c48df22009-12-18 00:01:26 +0000346 list<dag> pattern>
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +0000347 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
348 Requires<[HasSSE42]>;
Eric Christopher22a39402009-08-18 22:50:32 +0000349
Eric Christopher7a703fd2010-04-02 21:54:27 +0000350// AES Instruction Templates:
351//
352// AES8I
Eric Christopher1d70e142010-04-05 21:14:32 +0000353// These use the same encoding as the SSE4.2 T8 and TA encodings.
Eric Christopher7a703fd2010-04-02 21:54:27 +0000354class AES8I<bits<8> o, Format F, dag outs, dag ins, string asm,
355 list<dag>pattern>
356 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
357 Requires<[HasAES]>;
358
359class AESAI<bits<8> o, Format F, dag outs, dag ins, string asm,
360 list<dag> pattern>
361 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
362 Requires<[HasAES]>;
363
Evan Cheng86ab7d32007-07-31 08:04:03 +0000364// X86-64 Instruction templates...
365//
366
367class RI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
368 : I<o, F, outs, ins, asm, pattern>, REX_W;
369class RIi8 <bits<8> o, Format F, dag outs, dag ins, string asm,
370 list<dag> pattern>
371 : Ii8<o, F, outs, ins, asm, pattern>, REX_W;
372class RIi32 <bits<8> o, Format F, dag outs, dag ins, string asm,
373 list<dag> pattern>
374 : Ii32<o, F, outs, ins, asm, pattern>, REX_W;
375
376class RIi64<bits<8> o, Format f, dag outs, dag ins, string asm,
377 list<dag> pattern>
378 : X86Inst<o, f, Imm64, outs, ins, asm>, REX_W {
379 let Pattern = pattern;
380 let CodeSize = 3;
381}
382
383class RSSI<bits<8> o, Format F, dag outs, dag ins, string asm,
384 list<dag> pattern>
385 : SSI<o, F, outs, ins, asm, pattern>, REX_W;
386class RSDI<bits<8> o, Format F, dag outs, dag ins, string asm,
387 list<dag> pattern>
388 : SDI<o, F, outs, ins, asm, pattern>, REX_W;
389class RPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
390 list<dag> pattern>
391 : PDI<o, F, outs, ins, asm, pattern>, REX_W;
392
393// MMX Instruction templates
394//
395
396// MMXI - MMX instructions with TB prefix.
Anton Korobeynikov0e70d102008-08-23 15:53:19 +0000397// MMXI64 - MMX instructions with TB prefix valid only in 64 bit mode.
Evan Cheng86ab7d32007-07-31 08:04:03 +0000398// MMX2I - MMX / SSE2 instructions with TB and OpSize prefixes.
399// MMXIi8 - MMX instructions with ImmT == Imm8 and TB prefix.
400// MMXIi8 - MMX instructions with ImmT == Imm8 and TB prefix.
401// MMXID - MMX instructions with XD prefix.
402// MMXIS - MMX instructions with XS prefix.
Sean Callanan2c48df22009-12-18 00:01:26 +0000403class MMXI<bits<8> o, Format F, dag outs, dag ins, string asm,
404 list<dag> pattern>
Evan Cheng86ab7d32007-07-31 08:04:03 +0000405 : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX]>;
Sean Callanan2c48df22009-12-18 00:01:26 +0000406class MMXI64<bits<8> o, Format F, dag outs, dag ins, string asm,
407 list<dag> pattern>
Anton Korobeynikov0e70d102008-08-23 15:53:19 +0000408 : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX,In64BitMode]>;
Sean Callanan2c48df22009-12-18 00:01:26 +0000409class MMXRI<bits<8> o, Format F, dag outs, dag ins, string asm,
410 list<dag> pattern>
Evan Cheng86ab7d32007-07-31 08:04:03 +0000411 : I<o, F, outs, ins, asm, pattern>, TB, REX_W, Requires<[HasMMX]>;
Sean Callanan2c48df22009-12-18 00:01:26 +0000412class MMX2I<bits<8> o, Format F, dag outs, dag ins, string asm,
413 list<dag> pattern>
Evan Cheng86ab7d32007-07-31 08:04:03 +0000414 : I<o, F, outs, ins, asm, pattern>, TB, OpSize, Requires<[HasMMX]>;
Sean Callanan2c48df22009-12-18 00:01:26 +0000415class MMXIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
416 list<dag> pattern>
Evan Cheng86ab7d32007-07-31 08:04:03 +0000417 : Ii8<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX]>;
Sean Callanan2c48df22009-12-18 00:01:26 +0000418class MMXID<bits<8> o, Format F, dag outs, dag ins, string asm,
419 list<dag> pattern>
Evan Cheng86ab7d32007-07-31 08:04:03 +0000420 : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasMMX]>;
Sean Callanan2c48df22009-12-18 00:01:26 +0000421class MMXIS<bits<8> o, Format F, dag outs, dag ins, string asm,
422 list<dag> pattern>
Evan Cheng86ab7d32007-07-31 08:04:03 +0000423 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasMMX]>;