blob: 8b934e0f86fbde3a1b2839cc6a519c8e9245f5c6 [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>;
Evan Cheng12c6be82007-07-31 08:04:03 +000041
42
43// ImmType - This specifies the immediate type used by an instruction. This is
44// part of the ad-hoc solution used to emit machine instruction encodings by our
45// machine code emitter.
46class ImmType<bits<3> val> {
47 bits<3> Value = val;
48}
Chris Lattner12455ca2010-02-12 22:27:07 +000049def NoImm : ImmType<0>;
50def Imm8 : ImmType<1>;
51def Imm8PCRel : ImmType<2>;
52def Imm16 : ImmType<3>;
53def Imm32 : ImmType<4>;
54def Imm32PCRel : ImmType<5>;
55def Imm64 : ImmType<6>;
Evan Cheng12c6be82007-07-31 08:04:03 +000056
57// FPFormat - This specifies what form this FP instruction has. This is used by
58// the Floating-Point stackifier pass.
59class FPFormat<bits<3> val> {
60 bits<3> Value = val;
61}
62def NotFP : FPFormat<0>;
63def ZeroArgFP : FPFormat<1>;
64def OneArgFP : FPFormat<2>;
65def OneArgFPRW : FPFormat<3>;
66def TwoArgFP : FPFormat<4>;
67def CompareFP : FPFormat<5>;
68def CondMovFP : FPFormat<6>;
69def SpecialFP : FPFormat<7>;
70
71// Prefix byte classes which are used to indicate to the ad-hoc machine code
72// emitter that various prefix bytes are required.
73class OpSize { bit hasOpSizePrefix = 1; }
74class AdSize { bit hasAdSizePrefix = 1; }
75class REX_W { bit hasREX_WPrefix = 1; }
Andrew Lenharth0070dd12008-03-01 13:37:02 +000076class LOCK { bit hasLockPrefix = 1; }
Anton Korobeynikov25897772008-10-11 19:09:15 +000077class SegFS { bits<2> SegOvrBits = 1; }
78class SegGS { bits<2> SegOvrBits = 2; }
Evan Cheng12c6be82007-07-31 08:04:03 +000079class TB { bits<4> Prefix = 1; }
80class REP { bits<4> Prefix = 2; }
81class D8 { bits<4> Prefix = 3; }
82class D9 { bits<4> Prefix = 4; }
83class DA { bits<4> Prefix = 5; }
84class DB { bits<4> Prefix = 6; }
85class DC { bits<4> Prefix = 7; }
86class DD { bits<4> Prefix = 8; }
87class DE { bits<4> Prefix = 9; }
88class DF { bits<4> Prefix = 10; }
89class XD { bits<4> Prefix = 11; }
90class XS { bits<4> Prefix = 12; }
91class T8 { bits<4> Prefix = 13; }
92class TA { bits<4> Prefix = 14; }
Eric Christopher7dfa9f22009-08-08 21:55:08 +000093class TF { bits<4> Prefix = 15; }
Evan Cheng12c6be82007-07-31 08:04:03 +000094
95class X86Inst<bits<8> opcod, Format f, ImmType i, dag outs, dag ins,
96 string AsmStr>
97 : Instruction {
98 let Namespace = "X86";
99
100 bits<8> Opcode = opcod;
101 Format Form = f;
102 bits<6> FormBits = Form.Value;
103 ImmType ImmT = i;
104 bits<3> ImmTypeBits = ImmT.Value;
105
106 dag OutOperandList = outs;
107 dag InOperandList = ins;
108 string AsmString = AsmStr;
109
110 //
111 // Attributes specific to X86 instructions...
112 //
113 bit hasOpSizePrefix = 0; // Does this inst have a 0x66 prefix?
114 bit hasAdSizePrefix = 0; // Does this inst have a 0x67 prefix?
115
116 bits<4> Prefix = 0; // Which prefix byte does this inst have?
117 bit hasREX_WPrefix = 0; // Does this inst requires the REX.W prefix?
118 FPFormat FPForm; // What flavor of FP instruction is this?
119 bits<3> FPFormBits = 0;
Dan Gohmana21bdda2008-08-20 13:46:21 +0000120 bit hasLockPrefix = 0; // Does this inst have a 0xF0 prefix?
Anton Korobeynikov25897772008-10-11 19:09:15 +0000121 bits<2> SegOvrBits = 0; // Segment override prefix.
Evan Cheng12c6be82007-07-31 08:04:03 +0000122}
123
124class I<bits<8> o, Format f, dag outs, dag ins, string asm, list<dag> pattern>
125 : X86Inst<o, f, NoImm, outs, ins, asm> {
126 let Pattern = pattern;
127 let CodeSize = 3;
128}
Sean Callanan04d8cb72009-12-18 00:01:26 +0000129class Ii8 <bits<8> o, Format f, dag outs, dag ins, string asm,
130 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000131 : X86Inst<o, f, Imm8 , outs, ins, asm> {
132 let Pattern = pattern;
133 let CodeSize = 3;
134}
Chris Lattner12455ca2010-02-12 22:27:07 +0000135class Ii8PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
136 list<dag> pattern>
137 : X86Inst<o, f, Imm8PCRel, outs, ins, asm> {
138 let Pattern = pattern;
139 let CodeSize = 3;
140}
Sean Callanan04d8cb72009-12-18 00:01:26 +0000141class Ii16<bits<8> o, Format f, dag outs, dag ins, string asm,
142 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000143 : X86Inst<o, f, Imm16, outs, ins, asm> {
144 let Pattern = pattern;
145 let CodeSize = 3;
146}
Sean Callanan04d8cb72009-12-18 00:01:26 +0000147class Ii32<bits<8> o, Format f, dag outs, dag ins, string asm,
148 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000149 : X86Inst<o, f, Imm32, outs, ins, asm> {
150 let Pattern = pattern;
151 let CodeSize = 3;
152}
153
Chris Lattner12455ca2010-02-12 22:27:07 +0000154class Ii32PCRel<bits<8> o, Format f, dag outs, dag ins, string asm,
155 list<dag> pattern>
156 : X86Inst<o, f, Imm32PCRel, outs, ins, asm> {
157 let Pattern = pattern;
158 let CodeSize = 3;
159}
160
Evan Cheng12c6be82007-07-31 08:04:03 +0000161// FPStack Instruction Templates:
162// FPI - Floating Point Instruction template.
163class FPI<bits<8> o, Format F, dag outs, dag ins, string asm>
164 : I<o, F, outs, ins, asm, []> {}
165
166// FpI_ - Floating Point Psuedo Instruction template. Not Predicated.
167class FpI_<dag outs, dag ins, FPFormat fp, list<dag> pattern>
168 : X86Inst<0, Pseudo, NoImm, outs, ins, ""> {
169 let FPForm = fp; let FPFormBits = FPForm.Value;
170 let Pattern = pattern;
171}
172
Sean Callanan050e0cd2009-09-15 00:35:17 +0000173// Templates for instructions that use a 16- or 32-bit segmented address as
174// their only operand: lcall (FAR CALL) and ljmp (FAR JMP)
175//
176// Iseg16 - 16-bit segment selector, 16-bit offset
177// Iseg32 - 16-bit segment selector, 32-bit offset
178
179class Iseg16 <bits<8> o, Format f, dag outs, dag ins, string asm,
180 list<dag> pattern> : X86Inst<o, f, NoImm, outs, ins, asm> {
181 let Pattern = pattern;
182 let CodeSize = 3;
183}
184
185class Iseg32 <bits<8> o, Format f, dag outs, dag ins, string asm,
186 list<dag> pattern> : X86Inst<o, f, NoImm, outs, ins, asm> {
187 let Pattern = pattern;
188 let CodeSize = 3;
189}
190
Evan Cheng12c6be82007-07-31 08:04:03 +0000191// SSE1 Instruction Templates:
192//
193// SSI - SSE1 instructions with XS prefix.
194// PSI - SSE1 instructions with TB prefix.
195// PSIi8 - SSE1 instructions with ImmT == Imm8 and TB prefix.
196
197class SSI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
198 : I<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE1]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000199class SSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
200 list<dag> pattern>
Chris Lattnerdab6bd92007-12-16 20:12:41 +0000201 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE1]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000202class PSI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
203 : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasSSE1]>;
204class PSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
205 list<dag> pattern>
206 : Ii8<o, F, outs, ins, asm, pattern>, TB, Requires<[HasSSE1]>;
207
208// SSE2 Instruction Templates:
209//
Bill Wendling76105a42008-08-27 21:32:04 +0000210// SDI - SSE2 instructions with XD prefix.
211// SDIi8 - SSE2 instructions with ImmT == Imm8 and XD prefix.
212// SSDIi8 - SSE2 instructions with ImmT == Imm8 and XS prefix.
213// PDI - SSE2 instructions with TB and OpSize prefixes.
214// PDIi8 - SSE2 instructions with ImmT == Imm8 and TB and OpSize prefixes.
Evan Cheng12c6be82007-07-31 08:04:03 +0000215
216class SDI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
217 : I<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE2]>;
Evan Cheng01c7c192007-12-20 19:57:09 +0000218class SDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
219 list<dag> pattern>
220 : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE2]>;
Bill Wendling76105a42008-08-27 21:32:04 +0000221class SSDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
222 list<dag> pattern>
223 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE2]>;
Evan Cheng12c6be82007-07-31 08:04:03 +0000224class PDI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
225 : I<o, F, outs, ins, asm, pattern>, TB, OpSize, Requires<[HasSSE2]>;
226class PDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
227 list<dag> pattern>
228 : Ii8<o, F, outs, ins, asm, pattern>, TB, OpSize, Requires<[HasSSE2]>;
229
230// SSE3 Instruction Templates:
231//
232// S3I - SSE3 instructions with TB and OpSize prefixes.
233// S3SI - SSE3 instructions with XS prefix.
234// S3DI - SSE3 instructions with XD prefix.
235
Sean Callanan04d8cb72009-12-18 00:01:26 +0000236class S3SI<bits<8> o, Format F, dag outs, dag ins, string asm,
237 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000238 : I<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE3]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000239class S3DI<bits<8> o, Format F, dag outs, dag ins, string asm,
240 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000241 : I<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE3]>;
242class S3I<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
243 : I<o, F, outs, ins, asm, pattern>, TB, OpSize, Requires<[HasSSE3]>;
244
245
Nate Begeman8ef50212008-02-12 22:51:28 +0000246// SSSE3 Instruction Templates:
247//
248// SS38I - SSSE3 instructions with T8 prefix.
249// SS3AI - SSSE3 instructions with TA prefix.
250//
251// Note: SSSE3 instructions have 64-bit and 128-bit versions. The 64-bit version
252// uses the MMX registers. We put those instructions here because they better
253// fit into the SSSE3 instruction category rather than the MMX category.
254
255class SS38I<bits<8> o, Format F, dag outs, dag ins, string asm,
256 list<dag> pattern>
Nate Begeman5ca7b342009-10-19 17:31:16 +0000257 : Ii8<o, F, outs, ins, asm, pattern>, T8, Requires<[HasSSSE3]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000258class SS3AI<bits<8> o, Format F, dag outs, dag ins, string asm,
259 list<dag> pattern>
Nate Begeman5ca7b342009-10-19 17:31:16 +0000260 : Ii8<o, F, outs, ins, asm, pattern>, TA, Requires<[HasSSSE3]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000261
262// SSE4.1 Instruction Templates:
263//
264// SS48I - SSE 4.1 instructions with T8 prefix.
Evan Cheng96bdbd62008-03-14 07:39:27 +0000265// SS41AIi8 - SSE 4.1 instructions with TA prefix and ImmT == Imm8.
Nate Begeman8ef50212008-02-12 22:51:28 +0000266//
267class SS48I<bits<8> o, Format F, dag outs, dag ins, string asm,
268 list<dag> pattern>
269 : I<o, F, outs, ins, asm, pattern>, T8, Requires<[HasSSE41]>;
Evan Cheng96bdbd62008-03-14 07:39:27 +0000270class SS4AIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Nate Begeman8ef50212008-02-12 22:51:28 +0000271 list<dag> pattern>
Evan Cheng96bdbd62008-03-14 07:39:27 +0000272 : Ii8<o, F, outs, ins, asm, pattern>, TA, Requires<[HasSSE41]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000273
Nate Begeman55b7bec2008-07-17 16:51:19 +0000274// SSE4.2 Instruction Templates:
275//
276// SS428I - SSE 4.2 instructions with T8 prefix.
277class SS428I<bits<8> o, Format F, dag outs, dag ins, string asm,
278 list<dag> pattern>
279 : I<o, F, outs, ins, asm, pattern>, T8, Requires<[HasSSE42]>;
Nate Begeman8ef50212008-02-12 22:51:28 +0000280
Eric Christopher7dfa9f22009-08-08 21:55:08 +0000281// SS42FI - SSE 4.2 instructions with TF prefix.
282class SS42FI<bits<8> o, Format F, dag outs, dag ins, string asm,
283 list<dag> pattern>
284 : I<o, F, outs, ins, asm, pattern>, TF, Requires<[HasSSE42]>;
285
Eric Christopher9fe912d2009-08-18 22:50:32 +0000286// SS42AI = SSE 4.2 instructions with TA prefix
287class SS42AI<bits<8> o, Format F, dag outs, dag ins, string asm,
Sean Callanan04d8cb72009-12-18 00:01:26 +0000288 list<dag> pattern>
Eric Christopher9fe912d2009-08-18 22:50:32 +0000289 : I<o, F, outs, ins, asm, pattern>, TA, Requires<[HasSSE42]>;
290
Evan Cheng12c6be82007-07-31 08:04:03 +0000291// X86-64 Instruction templates...
292//
293
294class RI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
295 : I<o, F, outs, ins, asm, pattern>, REX_W;
296class RIi8 <bits<8> o, Format F, dag outs, dag ins, string asm,
297 list<dag> pattern>
298 : Ii8<o, F, outs, ins, asm, pattern>, REX_W;
299class RIi32 <bits<8> o, Format F, dag outs, dag ins, string asm,
300 list<dag> pattern>
301 : Ii32<o, F, outs, ins, asm, pattern>, REX_W;
302
303class RIi64<bits<8> o, Format f, dag outs, dag ins, string asm,
304 list<dag> pattern>
305 : X86Inst<o, f, Imm64, outs, ins, asm>, REX_W {
306 let Pattern = pattern;
307 let CodeSize = 3;
308}
309
310class RSSI<bits<8> o, Format F, dag outs, dag ins, string asm,
311 list<dag> pattern>
312 : SSI<o, F, outs, ins, asm, pattern>, REX_W;
313class RSDI<bits<8> o, Format F, dag outs, dag ins, string asm,
314 list<dag> pattern>
315 : SDI<o, F, outs, ins, asm, pattern>, REX_W;
316class RPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
317 list<dag> pattern>
318 : PDI<o, F, outs, ins, asm, pattern>, REX_W;
319
320// MMX Instruction templates
321//
322
323// MMXI - MMX instructions with TB prefix.
Anton Korobeynikov31099512008-08-23 15:53:19 +0000324// MMXI64 - MMX instructions with TB prefix valid only in 64 bit mode.
Evan Cheng12c6be82007-07-31 08:04:03 +0000325// MMX2I - MMX / SSE2 instructions with TB and OpSize prefixes.
326// MMXIi8 - MMX instructions with ImmT == Imm8 and TB prefix.
327// MMXIi8 - MMX instructions with ImmT == Imm8 and TB prefix.
328// MMXID - MMX instructions with XD prefix.
329// MMXIS - MMX instructions with XS prefix.
Sean Callanan04d8cb72009-12-18 00:01:26 +0000330class MMXI<bits<8> o, Format F, dag outs, dag ins, string asm,
331 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000332 : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000333class MMXI64<bits<8> o, Format F, dag outs, dag ins, string asm,
334 list<dag> pattern>
Anton Korobeynikov31099512008-08-23 15:53:19 +0000335 : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX,In64BitMode]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000336class MMXRI<bits<8> o, Format F, dag outs, dag ins, string asm,
337 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000338 : I<o, F, outs, ins, asm, pattern>, TB, REX_W, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000339class MMX2I<bits<8> o, Format F, dag outs, dag ins, string asm,
340 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000341 : I<o, F, outs, ins, asm, pattern>, TB, OpSize, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000342class MMXIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
343 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000344 : Ii8<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000345class MMXID<bits<8> o, Format F, dag outs, dag ins, string asm,
346 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000347 : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasMMX]>;
Sean Callanan04d8cb72009-12-18 00:01:26 +0000348class MMXIS<bits<8> o, Format F, dag outs, dag ins, string asm,
349 list<dag> pattern>
Evan Cheng12c6be82007-07-31 08:04:03 +0000350 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasMMX]>;