blob: 97578af499bef4ca3449ee053e48618b51379f08 [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>;
Chris Lattnerac588122010-07-07 22:27:31 +000053def Imm16PCRel : ImmType<4>;
54def Imm32 : ImmType<5>;
55def Imm32PCRel : ImmType<6>;
56def Imm64 : ImmType<7>;
Evan Cheng12c6be82007-07-31 08:04:03 +000057
58// FPFormat - This specifies what form this FP instruction has. This is used by
59// the Floating-Point stackifier pass.
60class FPFormat<bits<3> val> {
61 bits<3> Value = val;
62}
63def NotFP : FPFormat<0>;
64def ZeroArgFP : FPFormat<1>;
65def OneArgFP : FPFormat<2>;
66def OneArgFPRW : FPFormat<3>;
67def TwoArgFP : FPFormat<4>;
68def CompareFP : FPFormat<5>;
69def CondMovFP : FPFormat<6>;
70def SpecialFP : FPFormat<7>;
71
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000072// Class specifying the SSE execution domain, used by the SSEDomainFix pass.
Jakob Stoklund Olesendbff4e82010-03-30 22:46:53 +000073// Keep in sync with tables in X86InstrInfo.cpp.
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000074class Domain<bits<2> val> {
75 bits<2> Value = val;
76}
77def GenericDomain : Domain<0>;
Jakob Stoklund Olesendbff4e82010-03-30 22:46:53 +000078def SSEPackedSingle : Domain<1>;
79def SSEPackedDouble : Domain<2>;
80def SSEPackedInt : Domain<3>;
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000081
Evan Cheng12c6be82007-07-31 08:04:03 +000082// Prefix byte classes which are used to indicate to the ad-hoc machine code
83// emitter that various prefix bytes are required.
84class OpSize { bit hasOpSizePrefix = 1; }
85class AdSize { bit hasAdSizePrefix = 1; }
86class REX_W { bit hasREX_WPrefix = 1; }
Andrew Lenharth0070dd12008-03-01 13:37:02 +000087class LOCK { bit hasLockPrefix = 1; }
Anton Korobeynikov25897772008-10-11 19:09:15 +000088class SegFS { bits<2> SegOvrBits = 1; }
89class SegGS { bits<2> SegOvrBits = 2; }
Evan Cheng12c6be82007-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 Christopher7dfa9f22009-08-08 21:55:08 +0000104class TF { bits<4> Prefix = 15; }
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000105class VEX { bit hasVEXPrefix = 1; }
Bruno Cardoso Lopes05166742010-07-01 01:20:06 +0000106class VEX_W { bit hasVEX_WPrefix = 1; }
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000107class VEX_4V : VEX { bit hasVEX_4VPrefix = 1; }
Bruno Cardoso Lopese2bd0582010-07-06 22:36:24 +0000108class VEX_I8IMM { bit hasVEX_i8ImmReg = 1; }
Evan Cheng12c6be82007-07-31 08:04:03 +0000109
110class X86Inst<bits<8> opcod, Format f, ImmType i, dag outs, dag ins,
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000111 string AsmStr, Domain d = GenericDomain>
Evan Cheng12c6be82007-07-31 08:04:03 +0000112 : Instruction {
113 let Namespace = "X86";
114
115 bits<8> Opcode = opcod;
116 Format Form = f;
117 bits<6> FormBits = Form.Value;
118 ImmType ImmT = i;
Evan Cheng12c6be82007-07-31 08:04:03 +0000119
120 dag OutOperandList = outs;
121 dag InOperandList = ins;
122 string AsmString = AsmStr;
123
124 //
125 // Attributes specific to X86 instructions...
126 //
127 bit hasOpSizePrefix = 0; // Does this inst have a 0x66 prefix?
128 bit hasAdSizePrefix = 0; // Does this inst have a 0x67 prefix?
129
130 bits<4> Prefix = 0; // Which prefix byte does this inst have?
131 bit hasREX_WPrefix = 0; // Does this inst requires the REX.W prefix?
Jakob Stoklund Olesenf8d7eda2010-03-25 18:52:01 +0000132 FPFormat FPForm = NotFP; // What flavor of FP instruction is this?
Dan Gohmana21bdda2008-08-20 13:46:21 +0000133 bit hasLockPrefix = 0; // Does this inst have a 0xF0 prefix?
Anton Korobeynikov25897772008-10-11 19:09:15 +0000134 bits<2> SegOvrBits = 0; // Segment override prefix.
Jakob Stoklund Olesenf8d7eda2010-03-25 18:52:01 +0000135 Domain ExeDomain = d;
Bruno Cardoso Lopes05166742010-07-01 01:20:06 +0000136 bit hasVEXPrefix = 0; // Does this inst requires a VEX prefix?
137 bit hasVEX_WPrefix = 0; // Does this inst set the VEX_W field?
138 bit hasVEX_4VPrefix = 0; // Does this inst requires the VEX.VVVV field?
Bruno Cardoso Lopese2bd0582010-07-06 22:36:24 +0000139 bit hasVEX_i8ImmReg = 0; // Does this inst requires the last source register
140 // to be encoded in a immediate field?
Jakob Stoklund Olesenb93331f2010-04-05 03:10:20 +0000141
142 // TSFlags layout should be kept in sync with X86InstrInfo.h.
143 let TSFlags{5-0} = FormBits;
144 let TSFlags{6} = hasOpSizePrefix;
145 let TSFlags{7} = hasAdSizePrefix;
146 let TSFlags{11-8} = Prefix;
147 let TSFlags{12} = hasREX_WPrefix;
148 let TSFlags{15-13} = ImmT.Value;
149 let TSFlags{18-16} = FPForm.Value;
150 let TSFlags{19} = hasLockPrefix;
151 let TSFlags{21-20} = SegOvrBits;
152 let TSFlags{23-22} = ExeDomain.Value;
153 let TSFlags{31-24} = Opcode;
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000154 let TSFlags{32} = hasVEXPrefix;
Bruno Cardoso Lopes05166742010-07-01 01:20:06 +0000155 let TSFlags{33} = hasVEX_WPrefix;
156 let TSFlags{34} = hasVEX_4VPrefix;
Bruno Cardoso Lopese2bd0582010-07-06 22:36:24 +0000157 let TSFlags{35} = hasVEX_i8ImmReg;
Evan Cheng12c6be82007-07-31 08:04:03 +0000158}
159
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000160class I<bits<8> o, Format f, dag outs, dag ins, string asm,
161 list<dag> pattern, Domain d = GenericDomain>
162 : X86Inst<o, f, NoImm, outs, ins, asm, d> {
Evan Cheng12c6be82007-07-31 08:04:03 +0000163 let Pattern = pattern;
164 let CodeSize = 3;
165}
Sean Callanan04d8cb72009-12-18 00:01:26 +0000166class Ii8 <bits<8> o, Format f, dag outs, dag ins, string asm,
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000167 list<dag> pattern, Domain d = GenericDomain>
168 : X86Inst<o, f, Imm8, outs, ins, asm, d> {
Evan Cheng12c6be82007-07-31 08:04:03 +0000169 let Pattern = pattern;
170 let CodeSize = 3;
171}
Chris Lattner12455ca2010-02-12 22:27:07 +0000172class Ii8PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
173 list<dag> pattern>
174 : X86Inst<o, f, Imm8PCRel, outs, ins, asm> {
175 let Pattern = pattern;
176 let CodeSize = 3;
177}
Sean Callanan04d8cb72009-12-18 00:01:26 +0000178class Ii16<bits<8> o, Format f, dag outs, dag ins, string asm,
179 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000180 : X86Inst<o, f, Imm16, outs, ins, asm> {
181 let Pattern = pattern;
182 let CodeSize = 3;
183}
Sean Callanan04d8cb72009-12-18 00:01:26 +0000184class Ii32<bits<8> o, Format f, dag outs, dag ins, string asm,
185 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000186 : X86Inst<o, f, Imm32, outs, ins, asm> {
187 let Pattern = pattern;
188 let CodeSize = 3;
189}
190
Chris Lattnerac588122010-07-07 22:27:31 +0000191class Ii16PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
192 list<dag> pattern>
193 : X86Inst<o, f, Imm16PCRel, outs, ins, asm> {
194 let Pattern = pattern;
195 let CodeSize = 3;
196}
197
Chris Lattner12455ca2010-02-12 22:27:07 +0000198class Ii32PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
199 list<dag> pattern>
200 : X86Inst<o, f, Imm32PCRel, outs, ins, asm> {
201 let Pattern = pattern;
202 let CodeSize = 3;
203}
204
Evan Cheng12c6be82007-07-31 08:04:03 +0000205// FPStack Instruction Templates:
206// FPI - Floating Point Instruction template.
207class FPI<bits<8> o, Format F, dag outs, dag ins, string asm>
208 : I<o, F, outs, ins, asm, []> {}
209
210// FpI_ - Floating Point Psuedo Instruction template. Not Predicated.
211class FpI_<dag outs, dag ins, FPFormat fp, list<dag> pattern>
212 : X86Inst<0, Pseudo, NoImm, outs, ins, ""> {
Jakob Stoklund Olesenf8d7eda2010-03-25 18:52:01 +0000213 let FPForm = fp;
Evan Cheng12c6be82007-07-31 08:04:03 +0000214 let Pattern = pattern;
215}
216
Sean Callanan050e0cd2009-09-15 00:35:17 +0000217// Templates for instructions that use a 16- or 32-bit segmented address as
218// their only operand: lcall (FAR CALL) and ljmp (FAR JMP)
219//
220// Iseg16 - 16-bit segment selector, 16-bit offset
221// Iseg32 - 16-bit segment selector, 32-bit offset
222
223class Iseg16 <bits<8> o, Format f, dag outs, dag ins, string asm,
224 list<dag> pattern> : X86Inst<o, f, NoImm, outs, ins, asm> {
225 let Pattern = pattern;
226 let CodeSize = 3;
227}
228
229class Iseg32 <bits<8> o, Format f, dag outs, dag ins, string asm,
230 list<dag> pattern> : X86Inst<o, f, NoImm, outs, ins, asm> {
231 let Pattern = pattern;
232 let CodeSize = 3;
233}
234
Bruno Cardoso Lopes6b98f712010-06-17 23:05:30 +0000235// SI - SSE 1 & 2 scalar instructions
236class SI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
237 : I<o, F, outs, ins, asm, pattern> {
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000238 let Predicates = !if(hasVEXPrefix /* VEX */, [HasAVX],
Bruno Cardoso Lopes66d2d572010-06-18 23:53:27 +0000239 !if(!eq(Prefix, 12 /* XS */), [HasSSE1], [HasSSE2]));
Bruno Cardoso Lopes6b98f712010-06-17 23:05:30 +0000240
241 // AVX instructions have a 'v' prefix in the mnemonic
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000242 let AsmString = !if(hasVEXPrefix, !strconcat("v", asm), asm);
Bruno Cardoso Lopes6b98f712010-06-17 23:05:30 +0000243}
244
Bruno Cardoso Lopes191a1cd2010-06-24 00:32:06 +0000245// SIi8 - SSE 1 & 2 scalar instructions
246class SIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
247 list<dag> pattern>
248 : Ii8<o, F, outs, ins, asm, pattern> {
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000249 let Predicates = !if(hasVEXPrefix /* VEX */, [HasAVX],
Bruno Cardoso Lopes191a1cd2010-06-24 00:32:06 +0000250 !if(!eq(Prefix, 12 /* XS */), [HasSSE1], [HasSSE2]));
251
252 // AVX instructions have a 'v' prefix in the mnemonic
253 let AsmString = !if(hasVEXPrefix, !strconcat("v", asm), asm);
254}
255
Bruno Cardoso Lopes2bfad412010-06-18 23:13:35 +0000256// PI - SSE 1 & 2 packed instructions
257class PI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern,
258 Domain d>
259 : I<o, F, outs, ins, asm, pattern, d> {
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000260 let Predicates = !if(hasVEXPrefix /* VEX */, [HasAVX],
Bruno Cardoso Lopes2bfad412010-06-18 23:13:35 +0000261 !if(hasOpSizePrefix /* OpSize */, [HasSSE2], [HasSSE1]));
262
263 // AVX instructions have a 'v' prefix in the mnemonic
Bruno Cardoso Lopes1a890f92010-06-22 22:38:56 +0000264 let AsmString = !if(hasVEXPrefix, !strconcat("v", asm), asm);
Bruno Cardoso Lopes2bfad412010-06-18 23:13:35 +0000265}
266
Bruno Cardoso Lopes1e13c172010-06-22 23:37:59 +0000267// PIi8 - SSE 1 & 2 packed instructions with immediate
268class PIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
269 list<dag> pattern, Domain d>
270 : Ii8<o, F, outs, ins, asm, pattern, d> {
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000271 let Predicates = !if(hasVEX_4VPrefix /* VEX */, [HasAVX],
Bruno Cardoso Lopes1e13c172010-06-22 23:37:59 +0000272 !if(hasOpSizePrefix /* OpSize */, [HasSSE2], [HasSSE1]));
273
274 // AVX instructions have a 'v' prefix in the mnemonic
275 let AsmString = !if(hasVEX_4VPrefix, !strconcat("v", asm), asm);
276}
277
Evan Cheng12c6be82007-07-31 08:04:03 +0000278// SSE1 Instruction Templates:
279//
280// SSI - SSE1 instructions with XS prefix.
281// PSI - SSE1 instructions with TB prefix.
282// PSIi8 - SSE1 instructions with ImmT == Imm8 and TB prefix.
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000283// VSSI - SSE1 instructions with XS prefix in AVX form.
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000284// VPSI - SSE1 instructions with TB prefix in AVX form.
Evan Cheng12c6be82007-07-31 08:04:03 +0000285
286class SSI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
287 : I<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE1]>;
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000288class SSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Sean Callanan04d8cb72009-12-18 00:01:26 +0000289 list<dag> pattern>
Chris Lattnerdab6bd92007-12-16 20:12:41 +0000290 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE1]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000291class PSI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000292 : I<o, F, outs, ins, asm, pattern, SSEPackedSingle>, TB,
293 Requires<[HasSSE1]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000294class PSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
295 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000296 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedSingle>, TB,
297 Requires<[HasSSE1]>;
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000298class VSSI<bits<8> o, Format F, dag outs, dag ins, string asm,
299 list<dag> pattern>
Bruno Cardoso Lopes83651092010-06-25 23:33:42 +0000300 : I<o, F, outs, ins, !strconcat("v", asm), pattern>, XS,
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000301 Requires<[HasAVX]>;
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000302class VPSI<bits<8> o, Format F, dag outs, dag ins, string asm,
303 list<dag> pattern>
304 : I<o, F, outs, ins, !strconcat("v", asm), pattern, SSEPackedSingle>,
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000305 Requires<[HasAVX]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000306
307// SSE2 Instruction Templates:
308//
Bill Wendling76105a42008-08-27 21:32:04 +0000309// SDI - SSE2 instructions with XD prefix.
310// SDIi8 - SSE2 instructions with ImmT == Imm8 and XD prefix.
311// SSDIi8 - SSE2 instructions with ImmT == Imm8 and XS prefix.
312// PDI - SSE2 instructions with TB and OpSize prefixes.
313// PDIi8 - SSE2 instructions with ImmT == Imm8 and TB and OpSize prefixes.
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000314// VSDI - SSE2 instructions with XD prefix in AVX form.
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000315// VPDI - SSE2 instructions with TB and OpSize prefixes in AVX form.
Evan Cheng12c6be82007-07-31 08:04:03 +0000316
317class SDI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
318 : I<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE2]>;
Evan Cheng01c7c192007-12-20 19:57:09 +0000319class SDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
320 list<dag> pattern>
321 : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE2]>;
Bill Wendling76105a42008-08-27 21:32:04 +0000322class SSDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
323 list<dag> pattern>
324 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE2]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000325class PDI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000326 : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
327 Requires<[HasSSE2]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000328class PDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
329 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000330 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
331 Requires<[HasSSE2]>;
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000332class VSDI<bits<8> o, Format F, dag outs, dag ins, string asm,
333 list<dag> pattern>
Bruno Cardoso Lopes83651092010-06-25 23:33:42 +0000334 : I<o, F, outs, ins, !strconcat("v", asm), pattern>, XD,
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000335 Requires<[HasAVX]>;
Bruno Cardoso Lopesb06f54b2010-06-12 01:23:26 +0000336class VPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
337 list<dag> pattern>
338 : I<o, F, outs, ins, !strconcat("v", asm), pattern, SSEPackedDouble>,
Bruno Cardoso Lopes77a3c442010-07-13 00:38:47 +0000339 OpSize, Requires<[HasAVX]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000340
341// SSE3 Instruction Templates:
342//
343// S3I - SSE3 instructions with TB and OpSize prefixes.
344// S3SI - SSE3 instructions with XS prefix.
345// S3DI - SSE3 instructions with XD prefix.
346
Sean Callanan04d8cb72009-12-18 00:01:26 +0000347class S3SI<bits<8> o, Format F, dag outs, dag ins, string asm,
348 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000349 : I<o, F, outs, ins, asm, pattern, SSEPackedSingle>, XS,
350 Requires<[HasSSE3]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000351class S3DI<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, SSEPackedDouble>, XD,
354 Requires<[HasSSE3]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000355class S3I<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000356 : I<o, F, outs, ins, asm, pattern, SSEPackedDouble>, TB, OpSize,
357 Requires<[HasSSE3]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000358
359
Nate Begeman8ef50212008-02-12 22:51:28 +0000360// SSSE3 Instruction Templates:
361//
362// SS38I - SSSE3 instructions with T8 prefix.
363// SS3AI - SSSE3 instructions with TA prefix.
364//
365// Note: SSSE3 instructions have 64-bit and 128-bit versions. The 64-bit version
366// uses the MMX registers. We put those instructions here because they better
367// fit into the SSSE3 instruction category rather than the MMX category.
368
369class SS38I<bits<8> o, Format F, dag outs, dag ins, string asm,
370 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000371 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
372 Requires<[HasSSSE3]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000373class SS3AI<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>, TA,
376 Requires<[HasSSSE3]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000377
378// SSE4.1 Instruction Templates:
379//
380// SS48I - SSE 4.1 instructions with T8 prefix.
Evan Cheng96bdbd62008-03-14 07:39:27 +0000381// SS41AIi8 - SSE 4.1 instructions with TA prefix and ImmT == Imm8.
Nate Begeman8ef50212008-02-12 22:51:28 +0000382//
383class SS48I<bits<8> o, Format F, dag outs, dag ins, string asm,
384 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000385 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
386 Requires<[HasSSE41]>;
Evan Cheng96bdbd62008-03-14 07:39:27 +0000387class SS4AIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Nate Begeman8ef50212008-02-12 22:51:28 +0000388 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000389 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
390 Requires<[HasSSE41]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000391
Nate Begeman55b7bec2008-07-17 16:51:19 +0000392// SSE4.2 Instruction Templates:
393//
394// SS428I - SSE 4.2 instructions with T8 prefix.
395class SS428I<bits<8> o, Format F, dag outs, dag ins, string asm,
396 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000397 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
398 Requires<[HasSSE42]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000399
Eric Christopher7dfa9f22009-08-08 21:55:08 +0000400// SS42FI - SSE 4.2 instructions with TF prefix.
401class SS42FI<bits<8> o, Format F, dag outs, dag ins, string asm,
402 list<dag> pattern>
403 : I<o, F, outs, ins, asm, pattern>, TF, Requires<[HasSSE42]>;
404
Eric Christopher9fe912d2009-08-18 22:50:32 +0000405// SS42AI = SSE 4.2 instructions with TA prefix
406class SS42AI<bits<8> o, Format F, dag outs, dag ins, string asm,
Sean Callanan04d8cb72009-12-18 00:01:26 +0000407 list<dag> pattern>
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000408 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
409 Requires<[HasSSE42]>;
Eric Christopher9fe912d2009-08-18 22:50:32 +0000410
Eric Christopher2ef63182010-04-02 21:54:27 +0000411// AES Instruction Templates:
412//
413// AES8I
Eric Christopher1290fa02010-04-05 21:14:32 +0000414// These use the same encoding as the SSE4.2 T8 and TA encodings.
Eric Christopher2ef63182010-04-02 21:54:27 +0000415class AES8I<bits<8> o, Format F, dag outs, dag ins, string asm,
416 list<dag>pattern>
417 : I<o, F, outs, ins, asm, pattern, SSEPackedInt>, T8,
418 Requires<[HasAES]>;
419
420class AESAI<bits<8> o, Format F, dag outs, dag ins, string asm,
421 list<dag> pattern>
422 : Ii8<o, F, outs, ins, asm, pattern, SSEPackedInt>, TA,
423 Requires<[HasAES]>;
424
Evan Cheng12c6be82007-07-31 08:04:03 +0000425// X86-64 Instruction templates...
426//
427
428class RI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
429 : I<o, F, outs, ins, asm, pattern>, REX_W;
430class RIi8 <bits<8> o, Format F, dag outs, dag ins, string asm,
431 list<dag> pattern>
432 : Ii8<o, F, outs, ins, asm, pattern>, REX_W;
433class RIi32 <bits<8> o, Format F, dag outs, dag ins, string asm,
434 list<dag> pattern>
435 : Ii32<o, F, outs, ins, asm, pattern>, REX_W;
436
437class RIi64<bits<8> o, Format f, dag outs, dag ins, string asm,
438 list<dag> pattern>
439 : X86Inst<o, f, Imm64, outs, ins, asm>, REX_W {
440 let Pattern = pattern;
441 let CodeSize = 3;
442}
443
444class RSSI<bits<8> o, Format F, dag outs, dag ins, string asm,
445 list<dag> pattern>
446 : SSI<o, F, outs, ins, asm, pattern>, REX_W;
447class RSDI<bits<8> o, Format F, dag outs, dag ins, string asm,
448 list<dag> pattern>
449 : SDI<o, F, outs, ins, asm, pattern>, REX_W;
450class RPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
451 list<dag> pattern>
452 : PDI<o, F, outs, ins, asm, pattern>, REX_W;
453
454// MMX Instruction templates
455//
456
457// MMXI - MMX instructions with TB prefix.
Anton Korobeynikov31099512008-08-23 15:53:19 +0000458// MMXI64 - MMX instructions with TB prefix valid only in 64 bit mode.
Evan Cheng12c6be82007-07-31 08:04:03 +0000459// MMX2I - MMX / SSE2 instructions with TB and OpSize prefixes.
460// MMXIi8 - MMX instructions with ImmT == Imm8 and TB prefix.
461// MMXIi8 - MMX instructions with ImmT == Imm8 and TB prefix.
462// MMXID - MMX instructions with XD prefix.
463// MMXIS - MMX instructions with XS prefix.
Sean Callanan04d8cb72009-12-18 00:01:26 +0000464class MMXI<bits<8> o, Format F, dag outs, dag ins, string asm,
465 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000466 : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000467class MMXI64<bits<8> o, Format F, dag outs, dag ins, string asm,
468 list<dag> pattern>
Anton Korobeynikov31099512008-08-23 15:53:19 +0000469 : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX,In64BitMode]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000470class MMXRI<bits<8> o, Format F, dag outs, dag ins, string asm,
471 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000472 : I<o, F, outs, ins, asm, pattern>, TB, REX_W, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000473class MMX2I<bits<8> o, Format F, dag outs, dag ins, string asm,
474 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000475 : I<o, F, outs, ins, asm, pattern>, TB, OpSize, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000476class MMXIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
477 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000478 : Ii8<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000479class MMXID<bits<8> o, Format F, dag outs, dag ins, string asm,
480 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000481 : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000482class MMXIS<bits<8> o, Format F, dag outs, dag ins, string asm,
483 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000484 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasMMX]>;