blob: eeed5bd27ff3ca106d4dddcca0874c23ffd6e5de [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>;
32
33
34// ImmType - This specifies the immediate type used by an instruction. This is
35// part of the ad-hoc solution used to emit machine instruction encodings by our
36// machine code emitter.
37class ImmType<bits<3> val> {
38 bits<3> Value = val;
39}
40def NoImm : ImmType<0>;
41def Imm8 : ImmType<1>;
42def Imm16 : ImmType<2>;
43def Imm32 : ImmType<3>;
44def Imm64 : ImmType<4>;
45
46// FPFormat - This specifies what form this FP instruction has. This is used by
47// the Floating-Point stackifier pass.
48class FPFormat<bits<3> val> {
49 bits<3> Value = val;
50}
51def NotFP : FPFormat<0>;
52def ZeroArgFP : FPFormat<1>;
53def OneArgFP : FPFormat<2>;
54def OneArgFPRW : FPFormat<3>;
55def TwoArgFP : FPFormat<4>;
56def CompareFP : FPFormat<5>;
57def CondMovFP : FPFormat<6>;
58def SpecialFP : FPFormat<7>;
59
60// Prefix byte classes which are used to indicate to the ad-hoc machine code
61// emitter that various prefix bytes are required.
62class OpSize { bit hasOpSizePrefix = 1; }
63class AdSize { bit hasAdSizePrefix = 1; }
64class REX_W { bit hasREX_WPrefix = 1; }
Andrew Lenharth7a5a4b22008-03-01 13:37:02 +000065class LOCK { bit hasLockPrefix = 1; }
Anton Korobeynikov975e1472008-10-11 19:09:15 +000066class SegFS { bits<2> SegOvrBits = 1; }
67class SegGS { bits<2> SegOvrBits = 2; }
Evan Cheng86ab7d32007-07-31 08:04:03 +000068class TB { bits<4> Prefix = 1; }
69class REP { bits<4> Prefix = 2; }
70class D8 { bits<4> Prefix = 3; }
71class D9 { bits<4> Prefix = 4; }
72class DA { bits<4> Prefix = 5; }
73class DB { bits<4> Prefix = 6; }
74class DC { bits<4> Prefix = 7; }
75class DD { bits<4> Prefix = 8; }
76class DE { bits<4> Prefix = 9; }
77class DF { bits<4> Prefix = 10; }
78class XD { bits<4> Prefix = 11; }
79class XS { bits<4> Prefix = 12; }
80class T8 { bits<4> Prefix = 13; }
81class TA { bits<4> Prefix = 14; }
82
83class X86Inst<bits<8> opcod, Format f, ImmType i, dag outs, dag ins,
84 string AsmStr>
85 : Instruction {
86 let Namespace = "X86";
87
88 bits<8> Opcode = opcod;
89 Format Form = f;
90 bits<6> FormBits = Form.Value;
91 ImmType ImmT = i;
92 bits<3> ImmTypeBits = ImmT.Value;
93
94 dag OutOperandList = outs;
95 dag InOperandList = ins;
96 string AsmString = AsmStr;
97
98 //
99 // Attributes specific to X86 instructions...
100 //
101 bit hasOpSizePrefix = 0; // Does this inst have a 0x66 prefix?
102 bit hasAdSizePrefix = 0; // Does this inst have a 0x67 prefix?
103
104 bits<4> Prefix = 0; // Which prefix byte does this inst have?
105 bit hasREX_WPrefix = 0; // Does this inst requires the REX.W prefix?
106 FPFormat FPForm; // What flavor of FP instruction is this?
107 bits<3> FPFormBits = 0;
Dan Gohmanaf8b7212008-08-20 13:46:21 +0000108 bit hasLockPrefix = 0; // Does this inst have a 0xF0 prefix?
Anton Korobeynikov975e1472008-10-11 19:09:15 +0000109 bits<2> SegOvrBits = 0; // Segment override prefix.
Evan Cheng86ab7d32007-07-31 08:04:03 +0000110}
111
112class I<bits<8> o, Format f, dag outs, dag ins, string asm, list<dag> pattern>
113 : X86Inst<o, f, NoImm, outs, ins, asm> {
114 let Pattern = pattern;
115 let CodeSize = 3;
116}
117class Ii8 <bits<8> o, Format f, dag outs, dag ins, string asm, list<dag> pattern>
118 : X86Inst<o, f, Imm8 , outs, ins, asm> {
119 let Pattern = pattern;
120 let CodeSize = 3;
121}
122class Ii16<bits<8> o, Format f, dag outs, dag ins, string asm, list<dag> pattern>
123 : X86Inst<o, f, Imm16, outs, ins, asm> {
124 let Pattern = pattern;
125 let CodeSize = 3;
126}
127class Ii32<bits<8> o, Format f, dag outs, dag ins, string asm, list<dag> pattern>
128 : X86Inst<o, f, Imm32, outs, ins, asm> {
129 let Pattern = pattern;
130 let CodeSize = 3;
131}
132
133// FPStack Instruction Templates:
134// FPI - Floating Point Instruction template.
135class FPI<bits<8> o, Format F, dag outs, dag ins, string asm>
136 : I<o, F, outs, ins, asm, []> {}
137
138// FpI_ - Floating Point Psuedo Instruction template. Not Predicated.
139class FpI_<dag outs, dag ins, FPFormat fp, list<dag> pattern>
140 : X86Inst<0, Pseudo, NoImm, outs, ins, ""> {
141 let FPForm = fp; let FPFormBits = FPForm.Value;
142 let Pattern = pattern;
143}
144
145// SSE1 Instruction Templates:
146//
147// SSI - SSE1 instructions with XS prefix.
148// PSI - SSE1 instructions with TB prefix.
149// PSIi8 - SSE1 instructions with ImmT == Imm8 and TB prefix.
150
151class SSI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
152 : I<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE1]>;
Chris Lattnera9f545f2007-12-16 20:12:41 +0000153class SSIi8<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
154 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE1]>;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000155class PSI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
156 : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasSSE1]>;
157class PSIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
158 list<dag> pattern>
159 : Ii8<o, F, outs, ins, asm, pattern>, TB, Requires<[HasSSE1]>;
160
161// SSE2 Instruction Templates:
162//
Bill Wendling64fe3dd2008-08-27 21:32:04 +0000163// SDI - SSE2 instructions with XD prefix.
164// SDIi8 - SSE2 instructions with ImmT == Imm8 and XD prefix.
165// SSDIi8 - SSE2 instructions with ImmT == Imm8 and XS prefix.
166// PDI - SSE2 instructions with TB and OpSize prefixes.
167// PDIi8 - SSE2 instructions with ImmT == Imm8 and TB and OpSize prefixes.
Evan Cheng86ab7d32007-07-31 08:04:03 +0000168
169class SDI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
170 : I<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE2]>;
Evan Cheng653c7ac2007-12-20 19:57:09 +0000171class SDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
172 list<dag> pattern>
173 : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE2]>;
Bill Wendling64fe3dd2008-08-27 21:32:04 +0000174class SSDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
175 list<dag> pattern>
176 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE2]>;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000177class PDI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
178 : I<o, F, outs, ins, asm, pattern>, TB, OpSize, Requires<[HasSSE2]>;
179class PDIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
180 list<dag> pattern>
181 : Ii8<o, F, outs, ins, asm, pattern>, TB, OpSize, Requires<[HasSSE2]>;
182
183// SSE3 Instruction Templates:
184//
185// S3I - SSE3 instructions with TB and OpSize prefixes.
186// S3SI - SSE3 instructions with XS prefix.
187// S3DI - SSE3 instructions with XD prefix.
188
189class S3SI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
190 : I<o, F, outs, ins, asm, pattern>, XS, Requires<[HasSSE3]>;
191class S3DI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
192 : I<o, F, outs, ins, asm, pattern>, XD, Requires<[HasSSE3]>;
193class S3I<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
194 : I<o, F, outs, ins, asm, pattern>, TB, OpSize, Requires<[HasSSE3]>;
195
196
Nate Begeman4294c1f2008-02-12 22:51:28 +0000197// SSSE3 Instruction Templates:
198//
199// SS38I - SSSE3 instructions with T8 prefix.
200// SS3AI - SSSE3 instructions with TA prefix.
201//
202// Note: SSSE3 instructions have 64-bit and 128-bit versions. The 64-bit version
203// uses the MMX registers. We put those instructions here because they better
204// fit into the SSSE3 instruction category rather than the MMX category.
205
206class SS38I<bits<8> o, Format F, dag outs, dag ins, string asm,
207 list<dag> pattern>
208 : I<o, F, outs, ins, asm, pattern>, T8, Requires<[HasSSSE3]>;
209class SS3AI<bits<8> o, Format F, dag outs, dag ins, string asm,
210 list<dag> pattern>
211 : I<o, F, outs, ins, asm, pattern>, TA, Requires<[HasSSSE3]>;
212
213// SSE4.1 Instruction Templates:
214//
215// SS48I - SSE 4.1 instructions with T8 prefix.
Evan Cheng78d00612008-03-14 07:39:27 +0000216// SS41AIi8 - SSE 4.1 instructions with TA prefix and ImmT == Imm8.
Nate Begeman4294c1f2008-02-12 22:51:28 +0000217//
218class SS48I<bits<8> o, Format F, dag outs, dag ins, string asm,
219 list<dag> pattern>
220 : I<o, F, outs, ins, asm, pattern>, T8, Requires<[HasSSE41]>;
Evan Cheng78d00612008-03-14 07:39:27 +0000221class SS4AIi8<bits<8> o, Format F, dag outs, dag ins, string asm,
Nate Begeman4294c1f2008-02-12 22:51:28 +0000222 list<dag> pattern>
Evan Cheng78d00612008-03-14 07:39:27 +0000223 : Ii8<o, F, outs, ins, asm, pattern>, TA, Requires<[HasSSE41]>;
Nate Begeman4294c1f2008-02-12 22:51:28 +0000224
Nate Begeman03605a02008-07-17 16:51:19 +0000225// SSE4.2 Instruction Templates:
226//
227// SS428I - SSE 4.2 instructions with T8 prefix.
228class SS428I<bits<8> o, Format F, dag outs, dag ins, string asm,
229 list<dag> pattern>
230 : I<o, F, outs, ins, asm, pattern>, T8, Requires<[HasSSE42]>;
Nate Begeman4294c1f2008-02-12 22:51:28 +0000231
Evan Cheng86ab7d32007-07-31 08:04:03 +0000232// X86-64 Instruction templates...
233//
234
235class RI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
236 : I<o, F, outs, ins, asm, pattern>, REX_W;
237class RIi8 <bits<8> o, Format F, dag outs, dag ins, string asm,
238 list<dag> pattern>
239 : Ii8<o, F, outs, ins, asm, pattern>, REX_W;
240class RIi32 <bits<8> o, Format F, dag outs, dag ins, string asm,
241 list<dag> pattern>
242 : Ii32<o, F, outs, ins, asm, pattern>, REX_W;
243
244class RIi64<bits<8> o, Format f, dag outs, dag ins, string asm,
245 list<dag> pattern>
246 : X86Inst<o, f, Imm64, outs, ins, asm>, REX_W {
247 let Pattern = pattern;
248 let CodeSize = 3;
249}
250
251class RSSI<bits<8> o, Format F, dag outs, dag ins, string asm,
252 list<dag> pattern>
253 : SSI<o, F, outs, ins, asm, pattern>, REX_W;
254class RSDI<bits<8> o, Format F, dag outs, dag ins, string asm,
255 list<dag> pattern>
256 : SDI<o, F, outs, ins, asm, pattern>, REX_W;
257class RPDI<bits<8> o, Format F, dag outs, dag ins, string asm,
258 list<dag> pattern>
259 : PDI<o, F, outs, ins, asm, pattern>, REX_W;
260
261// MMX Instruction templates
262//
263
264// MMXI - MMX instructions with TB prefix.
Anton Korobeynikov0e70d102008-08-23 15:53:19 +0000265// MMXI64 - MMX instructions with TB prefix valid only in 64 bit mode.
Evan Cheng86ab7d32007-07-31 08:04:03 +0000266// MMX2I - MMX / SSE2 instructions with TB and OpSize prefixes.
267// MMXIi8 - MMX instructions with ImmT == Imm8 and TB prefix.
268// MMXIi8 - MMX instructions with ImmT == Imm8 and TB prefix.
269// MMXID - MMX instructions with XD prefix.
270// MMXIS - MMX instructions with XS prefix.
271class MMXI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
272 : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX]>;
Anton Korobeynikov0e70d102008-08-23 15:53:19 +0000273class MMXI64<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
274 : I<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX,In64BitMode]>;
Evan Cheng86ab7d32007-07-31 08:04:03 +0000275class MMXRI<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
276 : I<o, F, outs, ins, asm, pattern>, TB, REX_W, Requires<[HasMMX]>;
277class MMX2I<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
278 : I<o, F, outs, ins, asm, pattern>, TB, OpSize, Requires<[HasMMX]>;
279class MMXIi8<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
280 : Ii8<o, F, outs, ins, asm, pattern>, TB, Requires<[HasMMX]>;
281class MMXID<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
282 : Ii8<o, F, outs, ins, asm, pattern>, XD, Requires<[HasMMX]>;
283class MMXIS<bits<8> o, Format F, dag outs, dag ins, string asm, list<dag> pattern>
284 : Ii8<o, F, outs, ins, asm, pattern>, XS, Requires<[HasMMX]>;
285