blob: 79187e9a76d7095cfc9dd88d1c7a23d722208329 [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 Lattnerf5477402010-08-19 01:18:43 +000042def RawFrmImm16 : Format<43>;
Evan Cheng12c6be82007-07-31 08:04:03 +000043
44// ImmType - This specifies the immediate type used by an instruction. This is
45// part of the ad-hoc solution used to emit machine instruction encodings by our
46// machine code emitter.
47class ImmType<bits<3> val> {
48 bits<3> Value = val;
49}
Chris Lattner12455ca2010-02-12 22:27:07 +000050def NoImm : ImmType<0>;
51def Imm8 : ImmType<1>;
52def Imm8PCRel : ImmType<2>;
53def Imm16 : ImmType<3>;
Chris Lattnerac588122010-07-07 22:27:31 +000054def Imm16PCRel : ImmType<4>;
55def Imm32 : ImmType<5>;
56def Imm32PCRel : ImmType<6>;
57def Imm64 : ImmType<7>;
Evan Cheng12c6be82007-07-31 08:04:03 +000058
59// FPFormat - This specifies what form this FP instruction has. This is used by
60// the Floating-Point stackifier pass.
61class FPFormat<bits<3> val> {
62 bits<3> Value = val;
63}
64def NotFP : FPFormat<0>;
65def ZeroArgFP : FPFormat<1>;
66def OneArgFP : FPFormat<2>;
67def OneArgFPRW : FPFormat<3>;
68def TwoArgFP : FPFormat<4>;
69def CompareFP : FPFormat<5>;
70def CondMovFP : FPFormat<6>;
71def SpecialFP : FPFormat<7>;
72
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000073// Class specifying the SSE execution domain, used by the SSEDomainFix pass.
Jakob Stoklund Olesendbff4e82010-03-30 22:46:53 +000074// Keep in sync with tables in X86InstrInfo.cpp.
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000075class Domain<bits<2> val> {
76 bits<2> Value = val;
77}
78def GenericDomain : Domain<0>;
Jakob Stoklund Olesendbff4e82010-03-30 22:46:53 +000079def SSEPackedSingle : Domain<1>;
80def SSEPackedDouble : Domain<2>;
81def SSEPackedInt : Domain<3>;
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000082
Evan Cheng12c6be82007-07-31 08:04:03 +000083// Prefix byte classes which are used to indicate to the ad-hoc machine code
84// emitter that various prefix bytes are required.
85class OpSize { bit hasOpSizePrefix = 1; }
86class AdSize { bit hasAdSizePrefix = 1; }
87class REX_W { bit hasREX_WPrefix = 1; }
Andrew Lenharth0070dd12008-03-01 13:37:02 +000088class LOCK { bit hasLockPrefix = 1; }
Anton Korobeynikov25897772008-10-11 19:09:15 +000089class SegFS { bits<2> SegOvrBits = 1; }
90class SegGS { bits<2> SegOvrBits = 2; }
Evan Cheng12c6be82007-07-31 08:04:03 +000091class TB { bits<4> Prefix = 1; }
92class REP { bits<4> Prefix = 2; }
93class D8 { bits<4> Prefix = 3; }
94class D9 { bits<4> Prefix = 4; }
95class DA { bits<4> Prefix = 5; }
96class DB { bits<4> Prefix = 6; }
97class DC { bits<4> Prefix = 7; }
98class DD { bits<4> Prefix = 8; }
99class DE { bits<4> Prefix = 9; }
100class DF { bits<4> Prefix = 10; }
101class XD { bits<4> Prefix = 11; }
102class XS { bits<4> Prefix = 12; }
103class T8 { bits<4> Prefix = 13; }
104class TA { bits<4> Prefix = 14; }
Eric Christopher7dfa9f22009-08-08 21:55:08 +0000105class TF { bits<4> Prefix = 15; }
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000106class VEX { bit hasVEXPrefix = 1; }
Bruno Cardoso Lopes05166742010-07-01 01:20:06 +0000107class VEX_W { bit hasVEX_WPrefix = 1; }
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000108class VEX_4V : VEX { bit hasVEX_4VPrefix = 1; }
Bruno Cardoso Lopese2bd0582010-07-06 22:36:24 +0000109class VEX_I8IMM { bit hasVEX_i8ImmReg = 1; }
Bruno Cardoso Lopesfd8bfcd2010-07-13 21:07:28 +0000110class VEX_L { bit hasVEX_L = 1; }
Evan Cheng12c6be82007-07-31 08:04:03 +0000111
112class X86Inst<bits<8> opcod, Format f, ImmType i, dag outs, dag ins,
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000113 string AsmStr, Domain d = GenericDomain>
Evan Cheng12c6be82007-07-31 08:04:03 +0000114 : Instruction {
115 let Namespace = "X86";
116
117 bits<8> Opcode = opcod;
118 Format Form = f;
119 bits<6> FormBits = Form.Value;
120 ImmType ImmT = i;
Evan Cheng12c6be82007-07-31 08:04:03 +0000121
122 dag OutOperandList = outs;
123 dag InOperandList = ins;
124 string AsmString = AsmStr;
125
126 //
127 // Attributes specific to X86 instructions...
128 //
129 bit hasOpSizePrefix = 0; // Does this inst have a 0x66 prefix?
130 bit hasAdSizePrefix = 0; // Does this inst have a 0x67 prefix?
131
132 bits<4> Prefix = 0; // Which prefix byte does this inst have?
133 bit hasREX_WPrefix = 0; // Does this inst requires the REX.W prefix?
Jakob Stoklund Olesenf8d7eda2010-03-25 18:52:01 +0000134 FPFormat FPForm = NotFP; // What flavor of FP instruction is this?
Dan Gohmana21bdda2008-08-20 13:46:21 +0000135 bit hasLockPrefix = 0; // Does this inst have a 0xF0 prefix?
Anton Korobeynikov25897772008-10-11 19:09:15 +0000136 bits<2> SegOvrBits = 0; // Segment override prefix.
Jakob Stoklund Olesenf8d7eda2010-03-25 18:52:01 +0000137 Domain ExeDomain = d;
Bruno Cardoso Lopes05166742010-07-01 01:20:06 +0000138 bit hasVEXPrefix = 0; // Does this inst requires a VEX prefix?
139 bit hasVEX_WPrefix = 0; // Does this inst set the VEX_W field?
140 bit hasVEX_4VPrefix = 0; // Does this inst requires the VEX.VVVV field?
Bruno Cardoso Lopese2bd0582010-07-06 22:36:24 +0000141 bit hasVEX_i8ImmReg = 0; // Does this inst requires the last source register
142 // to be encoded in a immediate field?
Bruno Cardoso Lopesfd8bfcd2010-07-13 21:07:28 +0000143 bit hasVEX_L = 0; // Does this inst uses large (256-bit) registers?
Jakob Stoklund Olesenb93331f2010-04-05 03:10:20 +0000144
145 // TSFlags layout should be kept in sync with X86InstrInfo.h.
146 let TSFlags{5-0} = FormBits;
147 let TSFlags{6} = hasOpSizePrefix;
148 let TSFlags{7} = hasAdSizePrefix;
149 let TSFlags{11-8} = Prefix;
150 let TSFlags{12} = hasREX_WPrefix;
151 let TSFlags{15-13} = ImmT.Value;
152 let TSFlags{18-16} = FPForm.Value;
153 let TSFlags{19} = hasLockPrefix;
154 let TSFlags{21-20} = SegOvrBits;
155 let TSFlags{23-22} = ExeDomain.Value;
156 let TSFlags{31-24} = Opcode;
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000157 let TSFlags{32} = hasVEXPrefix;
Bruno Cardoso Lopes05166742010-07-01 01:20:06 +0000158 let TSFlags{33} = hasVEX_WPrefix;
159 let TSFlags{34} = hasVEX_4VPrefix;
Bruno Cardoso Lopese2bd0582010-07-06 22:36:24 +0000160 let TSFlags{35} = hasVEX_i8ImmReg;
Bruno Cardoso Lopesfd8bfcd2010-07-13 21:07:28 +0000161 let TSFlags{36} = hasVEX_L;
Evan Cheng12c6be82007-07-31 08:04:03 +0000162}
163
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000164class I<bits<8> o, Format f, dag outs, dag ins, string asm,
165 list<dag> pattern, Domain d = GenericDomain>
166 : X86Inst<o, f, NoImm, outs, ins, asm, d> {
Evan Cheng12c6be82007-07-31 08:04:03 +0000167 let Pattern = pattern;
168 let CodeSize = 3;
169}
Sean Callanan04d8cb72009-12-18 00:01:26 +0000170class Ii8 <bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000171 list<dag> pattern, Domain d = GenericDomain>
172 : X86Inst<o, f, Imm8, outs, ins, asm, d> {
Evan Cheng12c6be82007-07-31 08:04:03 +0000173 let Pattern = pattern;
174 let CodeSize = 3;
175}
Chris Lattner12455ca2010-02-12 22:27:07 +0000176class Ii8PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
177 list<dag> pattern>
178 : X86Inst<o, f, Imm8PCRel, outs, ins, asm> {
179 let Pattern = pattern;
180 let CodeSize = 3;
181}
Sean Callanan04d8cb72009-12-18 00:01:26 +0000182class Ii16<bits<8> o, Format f, dag outs, dag ins, string asm,
183 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000184 : X86Inst<o, f, Imm16, outs, ins, asm> {
185 let Pattern = pattern;
186 let CodeSize = 3;
187}
Sean Callanan04d8cb72009-12-18 00:01:26 +0000188class Ii32<bits<8> o, Format f, dag outs, dag ins, string asm,
189 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000190 : X86Inst<o, f, Imm32, outs, ins, asm> {
191 let Pattern = pattern;
192 let CodeSize = 3;
193}
194
Chris Lattnerac588122010-07-07 22:27:31 +0000195class Ii16PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
196 list<dag> pattern>
197 : X86Inst<o, f, Imm16PCRel, outs, ins, asm> {
198 let Pattern = pattern;
199 let CodeSize = 3;
200}
201
Chris Lattner12455ca2010-02-12 22:27:07 +0000202class Ii32PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
203 list<dag> pattern>
204 : X86Inst<o, f, Imm32PCRel, outs, ins, asm> {
205 let Pattern = pattern;
206 let CodeSize = 3;
207}
208
Evan Cheng12c6be82007-07-31 08:04:03 +0000209// FPStack Instruction Templates:
210// FPI - Floating Point Instruction template.
211class FPI<bits<8> o, Format F, dag outs, dag ins, string asm>
212 : I<o, F, outs, ins, asm, []> {}
213
Bob Wilsona967c422010-08-26 18:08:11 +0000214// FpI_ - Floating Point Pseudo Instruction template. Not Predicated.
Evan Cheng12c6be82007-07-31 08:04:03 +0000215class FpI_<dag outs, dag ins, FPFormat fp, list<dag> pattern>
216 : X86Inst<0, Pseudo, NoImm, outs, ins, ""> {
Jakob Stoklund Olesenf8d7eda2010-03-25 18:52:01 +0000217 let FPForm = fp;
Evan Cheng12c6be82007-07-31 08:04:03 +0000218 let Pattern = pattern;
219}
220
Sean Callanan050e0cd2009-09-15 00:35:17 +0000221// Templates for instructions that use a 16- or 32-bit segmented address as
222// their only operand: lcall (FAR CALL) and ljmp (FAR JMP)
223//
224// Iseg16 - 16-bit segment selector, 16-bit offset
225// Iseg32 - 16-bit segment selector, 32-bit offset
226
227class Iseg16 <bits<8> o, Format f, dag outs, dag ins, string asm,
Chris Lattnerbeb506e2010-08-19 01:00:34 +0000228 list<dag> pattern> : X86Inst<o, f, Imm16, outs, ins, asm> {
Sean Callanan050e0cd2009-09-15 00:35:17 +0000229 let Pattern = pattern;
230 let CodeSize = 3;
231}
232
233class Iseg32 <bits<8> o, Format f, dag outs, dag ins, string asm,
Chris Lattnerbeb506e2010-08-19 01:00:34 +0000234 list<dag> pattern> : X86Inst<o, f, Imm32, outs, ins, asm> {
Sean Callanan050e0cd2009-09-15 00:35:17 +0000235 let Pattern = pattern;
236 let CodeSize = 3;
237}
238
Bruno Cardoso Lopes6b98f712010-06-17 23:05:30 +0000239// SI - SSE 1 & 2 scalar instructions
240class SI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
241 : I<o, F, outs, ins, asm, pattern> {
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000242 let Predicates = !if(hasVEXPrefix /* VEX */, [HasAVX],
Bruno Cardoso Lopes66d2d572010-06-18 23:53:27 +0000243 !if(!eq(Prefix, 12 /* XS */), [HasSSE1], [HasSSE2]));
Bruno Cardoso Lopes6b98f712010-06-17 23:05:30 +0000244
245 // AVX instructions have a 'v' prefix in the mnemonic
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000246 let AsmString = !if(hasVEXPrefix, !strconcat("v", asm), asm);
Bruno Cardoso Lopes6b98f712010-06-17 23:05:30 +0000247}
248
Bruno Cardoso Lopes191a1cd2010-06-24 00:32:06 +0000249// SIi8 - SSE 1 & 2 scalar instructions
250class SIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
251 list<dag> pattern>
252 : Ii8<o, F, outs, ins, asm, pattern> {
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000253 let Predicates = !if(hasVEXPrefix /* VEX */, [HasAVX],
Bruno Cardoso Lopes191a1cd2010-06-24 00:32:06 +0000254 !if(!eq(Prefix, 12 /* XS */), [HasSSE1], [HasSSE2]));
255
256 // AVX instructions have a 'v' prefix in the mnemonic
257 let AsmString = !if(hasVEXPrefix, !strconcat("v", asm), asm);
258}
259
Bruno Cardoso Lopes2bfad412010-06-18 23:13:35 +0000260// PI - SSE 1 & 2 packed instructions
261class PI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern,
262 Domain d>
263 : I<o, F, outs, ins, asm, pattern, d> {
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000264 let Predicates = !if(hasVEXPrefix /* VEX */, [HasAVX],
Bruno Cardoso Lopes2bfad412010-06-18 23:13:35 +0000265 !if(hasOpSizePrefix /* OpSize */, [HasSSE2], [HasSSE1]));
266
267 // AVX instructions have a 'v' prefix in the mnemonic
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000268 let AsmString = !if(hasVEXPrefix, !strconcat("v", asm), asm);
Bruno Cardoso Lopes2bfad412010-06-18 23:13:35 +0000269}
270
Bruno Cardoso Lopes1e13c172010-06-22 23:37:59 +0000271// PIi8 - SSE 1 & 2 packed instructions with immediate
272class PIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
273 list<dag> pattern, Domain d>
274 : Ii8<o, F, outs, ins, asm, pattern, d> {
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000275 let Predicates = !if(hasVEX_4VPrefix /* VEX */, [HasAVX],
Bruno Cardoso Lopes1e13c172010-06-22 23:37:59 +0000276 !if(hasOpSizePrefix /* OpSize */, [HasSSE2], [HasSSE1]));
277
278 // AVX instructions have a 'v' prefix in the mnemonic
279 let AsmString = !if(hasVEX_4VPrefix, !strconcat("v", asm), asm);
280}
281
Evan Cheng12c6be82007-07-31 08:04:03 +0000282// SSE1 Instruction Templates:
283//
284// SSI - SSE1 instructions with XS prefix.
285// PSI - SSE1 instructions with TB prefix.
286// PSIi8 - SSE1 instructions with ImmT == Imm8 and TB prefix.
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000287// VSSI - SSE1 instructions with XS prefix in AVX form.
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000288// VPSI - SSE1 instructions with TB prefix in AVX form.
Evan Cheng12c6be82007-07-31 08:04:03 +0000289
290class SSI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
291 : I<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE1]>;
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000292class SSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Sean Callanan04d8cb72009-12-18 00:01:26 +0000293 list<dag> pattern>
Chris Lattnerdab6bd92007-12-16 20:12:41 +0000294 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE1]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000295class PSI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000296 : I<o, F, outs, ins, asm, pattern, SSEPackedSingle>, TB,
297 Requires<[HasSSE1]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000298class PSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
299 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000300 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedSingle>, TB,
301 Requires<[HasSSE1]>;
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000302class VSSI<bits<8> o, Format F, dag outs, dag ins, string asm,
303 list<dag> pattern>
Bruno Cardoso Lopes83651092010-06-25 23:33:42 +0000304 : I<o, F, outs, ins, !strconcat("v", asm), pattern>, XS,
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000305 Requires<[HasAVX]>;
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000306class VPSI<bits<8> o, Format F, dag outs, dag ins, string asm,
307 list<dag> pattern>
308 : I<o, F, outs, ins, !strconcat("v", asm), pattern, SSEPackedSingle>,
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000309 Requires<[HasAVX]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000310
311// SSE2 Instruction Templates:
312//
Bill Wendling76105a42008-08-27 21:32:04 +0000313// SDI - SSE2 instructions with XD prefix.
314// SDIi8 - SSE2 instructions with ImmT == Imm8 and XD prefix.
315// SSDIi8 - SSE2 instructions with ImmT == Imm8 and XS prefix.
316// PDI - SSE2 instructions with TB and OpSize prefixes.
317// PDIi8 - SSE2 instructions with ImmT == Imm8 and TB and OpSize prefixes.
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000318// VSDI - SSE2 instructions with XD prefix in AVX form.
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000319// VPDI - SSE2 instructions with TB and OpSize prefixes in AVX form.
Evan Cheng12c6be82007-07-31 08:04:03 +0000320
321class SDI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
322 : I<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE2]>;
Evan Cheng01c7c192007-12-20 19:57:09 +0000323class SDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
324 list<dag> pattern>
325 : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE2]>;
Bill Wendling76105a42008-08-27 21:32:04 +0000326class SSDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
327 list<dag> pattern>
328 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE2]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000329class PDI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000330 : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
331 Requires<[HasSSE2]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000332class PDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
333 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000334 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
335 Requires<[HasSSE2]>;
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000336class VSDI<bits<8> o, Format F, dag outs, dag ins, string asm,
337 list<dag> pattern>
Bruno Cardoso Lopes83651092010-06-25 23:33:42 +0000338 : I<o, F, outs, ins, !strconcat("v", asm), pattern>, XD,
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000339 Requires<[HasAVX]>;
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000340class VPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
341 list<dag> pattern>
342 : I<o, F, outs, ins, !strconcat("v", asm), pattern, SSEPackedDouble>,
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000343 OpSize, Requires<[HasAVX]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000344
345// SSE3 Instruction Templates:
346//
347// S3I - SSE3 instructions with TB and OpSize prefixes.
348// S3SI - SSE3 instructions with XS prefix.
349// S3DI - SSE3 instructions with XD prefix.
350
Sean Callanan04d8cb72009-12-18 00:01:26 +0000351class S3SI<bits<8> o, Format F, dag outs, dag ins, string asm,
352 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000353 : I<o, F, outs, ins, asm, pattern, SSEPackedSingle>, XS,
354 Requires<[HasSSE3]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000355class S3DI<bits<8> o, Format F, dag outs, dag ins, string asm,
356 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000357 : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, XD,
358 Requires<[HasSSE3]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000359class S3I<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000360 : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
361 Requires<[HasSSE3]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000362
363
Nate Begeman8ef50212008-02-12 22:51:28 +0000364// SSSE3 Instruction Templates:
365//
366// SS38I - SSSE3 instructions with T8 prefix.
367// SS3AI - SSSE3 instructions with TA prefix.
368//
369// Note: SSSE3 instructions have 64-bit and 128-bit versions. The 64-bit version
370// uses the MMX registers. We put those instructions here because they better
371// fit into the SSSE3 instruction category rather than the MMX category.
372
373class SS38I<bits<8> o, Format F, dag outs, dag ins, string asm,
374 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000375 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
376 Requires<[HasSSSE3]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000377class SS3AI<bits<8> o, Format F, dag outs, dag ins, string asm,
378 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000379 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
380 Requires<[HasSSSE3]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000381
382// SSE4.1 Instruction Templates:
383//
384// SS48I - SSE 4.1 instructions with T8 prefix.
Evan Cheng96bdbd62008-03-14 07:39:27 +0000385// SS41AIi8 - SSE 4.1 instructions with TA prefix and ImmT == Imm8.
Nate Begeman8ef50212008-02-12 22:51:28 +0000386//
387class SS48I<bits<8> o, Format F, dag outs, dag ins, string asm,
388 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000389 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
390 Requires<[HasSSE41]>;
Evan Cheng96bdbd62008-03-14 07:39:27 +0000391class SS4AIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Nate Begeman8ef50212008-02-12 22:51:28 +0000392 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000393 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
394 Requires<[HasSSE41]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000395
Nate Begeman55b7bec2008-07-17 16:51:19 +0000396// SSE4.2 Instruction Templates:
397//
398// SS428I - SSE 4.2 instructions with T8 prefix.
399class SS428I<bits<8> o, Format F, dag outs, dag ins, string asm,
400 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000401 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
402 Requires<[HasSSE42]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000403
Eric Christopher7dfa9f22009-08-08 21:55:08 +0000404// SS42FI - SSE 4.2 instructions with TF prefix.
405class SS42FI<bits<8> o, Format F, dag outs, dag ins, string asm,
406 list<dag> pattern>
407 : I<o, F, outs, ins, asm, pattern>, TF, Requires<[HasSSE42]>;
408
Eric Christopher9fe912d2009-08-18 22:50:32 +0000409// SS42AI = SSE 4.2 instructions with TA prefix
410class SS42AI<bits<8> o, Format F, dag outs, dag ins, string asm,
Sean Callanan04d8cb72009-12-18 00:01:26 +0000411 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000412 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
413 Requires<[HasSSE42]>;
Eric Christopher9fe912d2009-08-18 22:50:32 +0000414
Bruno Cardoso Lopes14c5fd42010-07-20 00:11:13 +0000415// AVX Instruction Templates:
416// Instructions introduced in AVX (no SSE equivalent forms)
417//
418// AVX8I - AVX instructions with T8 and OpSize prefix.
Bruno Cardoso Lopes3b505842010-07-20 19:44:51 +0000419// AVXAIi8 - AVX instructions with TA, OpSize prefix and ImmT = Imm8.
Bruno Cardoso Lopes14c5fd42010-07-20 00:11:13 +0000420class AVX8I<bits<8> o, Format F, dag outs, dag ins, string asm,
421 list<dag> pattern>
422 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8, OpSize,
423 Requires<[HasAVX]>;
Bruno Cardoso Lopes3b505842010-07-20 19:44:51 +0000424class AVXAIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
425 list<dag> pattern>
426 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA, OpSize,
427 Requires<[HasAVX]>;
Bruno Cardoso Lopes14c5fd42010-07-20 00:11:13 +0000428
Eric Christopher2ef63182010-04-02 21:54:27 +0000429// AES Instruction Templates:
430//
431// AES8I
Eric Christopher1290fa02010-04-05 21:14:32 +0000432// These use the same encoding as the SSE4.2 T8 and TA encodings.
Eric Christopher2ef63182010-04-02 21:54:27 +0000433class AES8I<bits<8> o, Format F, dag outs, dag ins, string asm,
434 list<dag>pattern>
435 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
436 Requires<[HasAES]>;
437
438class AESAI<bits<8> o, Format F, dag outs, dag ins, string asm,
439 list<dag> pattern>
440 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
441 Requires<[HasAES]>;
442
Bruno Cardoso Lopesea0e05a2010-07-23 18:41:12 +0000443// CLMUL Instruction Templates
444class CLMULIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
445 list<dag>pattern>
446 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
447 OpSize, VEX_4V, Requires<[HasAVX, HasCLMUL]>;
448
Bruno Cardoso Lopesacd92302010-07-23 00:54:35 +0000449// FMA3 Instruction Templates
450class FMA3<bits<8> o, Format F, dag outs, dag ins, string asm,
451 list<dag>pattern>
452 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
453 OpSize, VEX_4V, Requires<[HasFMA3]>;
454
Evan Cheng12c6be82007-07-31 08:04:03 +0000455// X86-64 Instruction templates...
456//
457
458class RI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
459 : I<o, F, outs, ins, asm, pattern>, REX_W;
460class RIi8 <bits<8> o, Format F, dag outs, dag ins, string asm,
461 list<dag> pattern>
462 : Ii8<o, F, outs, ins, asm, pattern>, REX_W;
463class RIi32 <bits<8> o, Format F, dag outs, dag ins, string asm,
464 list<dag> pattern>
465 : Ii32<o, F, outs, ins, asm, pattern>, REX_W;
466
467class RIi64<bits<8> o, Format f, dag outs, dag ins, string asm,
468 list<dag> pattern>
469 : X86Inst<o, f, Imm64, outs, ins, asm>, REX_W {
470 let Pattern = pattern;
471 let CodeSize = 3;
472}
473
474class RSSI<bits<8> o, Format F, dag outs, dag ins, string asm,
475 list<dag> pattern>
476 : SSI<o, F, outs, ins, asm, pattern>, REX_W;
477class RSDI<bits<8> o, Format F, dag outs, dag ins, string asm,
478 list<dag> pattern>
479 : SDI<o, F, outs, ins, asm, pattern>, REX_W;
480class RPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
481 list<dag> pattern>
482 : PDI<o, F, outs, ins, asm, pattern>, REX_W;
483
484// MMX Instruction templates
485//
486
487// MMXI - MMX instructions with TB prefix.
Anton Korobeynikov31099512008-08-23 15:53:19 +0000488// MMXI64 - MMX instructions with TB prefix valid only in 64 bit mode.
Evan Cheng12c6be82007-07-31 08:04:03 +0000489// MMX2I - MMX / SSE2 instructions with TB and OpSize prefixes.
490// MMXIi8 - MMX instructions with ImmT == Imm8 and TB prefix.
491// MMXIi8 - MMX instructions with ImmT == Imm8 and TB prefix.
492// MMXID - MMX instructions with XD prefix.
493// MMXIS - MMX instructions with XS prefix.
Sean Callanan04d8cb72009-12-18 00:01:26 +0000494class MMXI<bits<8> o, Format F, dag outs, dag ins, string asm,
495 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000496 : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000497class MMXI64<bits<8> o, Format F, dag outs, dag ins, string asm,
498 list<dag> pattern>
Anton Korobeynikov31099512008-08-23 15:53:19 +0000499 : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX,In64BitMode]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000500class MMXRI<bits<8> o, Format F, dag outs, dag ins, string asm,
501 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000502 : I<o, F, outs, ins, asm, pattern>, TB, REX_W, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000503class MMX2I<bits<8> o, Format F, dag outs, dag ins, string asm,
504 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000505 : I<o, F, outs, ins, asm, pattern>, TB, OpSize, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000506class MMXIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
507 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000508 : Ii8<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000509class MMXID<bits<8> o, Format F, dag outs, dag ins, string asm,
510 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000511 : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000512class MMXIS<bits<8> o, Format F, dag outs, dag ins, string asm,
513 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000514 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasMMX]>;