• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1//===-- X86.td - Target definition file for the Intel X86 --*- tablegen -*-===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This is a target description file for the Intel i386 architecture, referred
11// to here as the "X86" architecture.
12//
13//===----------------------------------------------------------------------===//
14
15// Get the target-independent interfaces which we are implementing...
16//
17include "llvm/Target/Target.td"
18
19//===----------------------------------------------------------------------===//
20// X86 Subtarget state
21//
22
23def Mode64Bit : SubtargetFeature<"64bit-mode", "In64BitMode", "true",
24                                  "64-bit mode (x86_64)">;
25
26//===----------------------------------------------------------------------===//
27// X86 Subtarget features
28//===----------------------------------------------------------------------===//
29
30def FeatureCMOV    : SubtargetFeature<"cmov","HasCMov", "true",
31                                      "Enable conditional move instructions">;
32
33def FeaturePOPCNT   : SubtargetFeature<"popcnt", "HasPOPCNT", "true",
34                                       "Support POPCNT instruction">;
35
36
37def FeatureMMX     : SubtargetFeature<"mmx","X86SSELevel", "MMX",
38                                      "Enable MMX instructions">;
39def FeatureSSE1    : SubtargetFeature<"sse", "X86SSELevel", "SSE1",
40                                      "Enable SSE instructions",
41                                      // SSE codegen depends on cmovs, and all
42                                      // SSE1+ processors support them.
43                                      [FeatureMMX, FeatureCMOV]>;
44def FeatureSSE2    : SubtargetFeature<"sse2", "X86SSELevel", "SSE2",
45                                      "Enable SSE2 instructions",
46                                      [FeatureSSE1]>;
47def FeatureSSE3    : SubtargetFeature<"sse3", "X86SSELevel", "SSE3",
48                                      "Enable SSE3 instructions",
49                                      [FeatureSSE2]>;
50def FeatureSSSE3   : SubtargetFeature<"ssse3", "X86SSELevel", "SSSE3",
51                                      "Enable SSSE3 instructions",
52                                      [FeatureSSE3]>;
53def FeatureSSE41   : SubtargetFeature<"sse41", "X86SSELevel", "SSE41",
54                                      "Enable SSE 4.1 instructions",
55                                      [FeatureSSSE3]>;
56def FeatureSSE42   : SubtargetFeature<"sse42", "X86SSELevel", "SSE42",
57                                      "Enable SSE 4.2 instructions",
58                                      [FeatureSSE41]>;
59def Feature3DNow   : SubtargetFeature<"3dnow", "X863DNowLevel", "ThreeDNow",
60                                      "Enable 3DNow! instructions",
61                                      [FeatureMMX]>;
62def Feature3DNowA  : SubtargetFeature<"3dnowa", "X863DNowLevel", "ThreeDNowA",
63                                      "Enable 3DNow! Athlon instructions",
64                                      [Feature3DNow]>;
65// All x86-64 hardware has SSE2, but we don't mark SSE2 as an implied
66// feature, because SSE2 can be disabled (e.g. for compiling OS kernels)
67// without disabling 64-bit mode.
68def Feature64Bit   : SubtargetFeature<"64bit", "HasX86_64", "true",
69                                      "Support 64-bit instructions",
70                                      [FeatureCMOV]>;
71def FeatureCMPXCHG16B : SubtargetFeature<"cmpxchg16b", "HasCmpxchg16b", "true",
72                                      "64-bit with cmpxchg16b",
73                                      [Feature64Bit]>;
74def FeatureSlowBTMem : SubtargetFeature<"slow-bt-mem", "IsBTMemSlow", "true",
75                                       "Bit testing of memory is slow">;
76def FeatureFastUAMem : SubtargetFeature<"fast-unaligned-mem",
77                                        "IsUAMemFast", "true",
78                                        "Fast unaligned memory access">;
79def FeatureSSE4A   : SubtargetFeature<"sse4a", "HasSSE4A", "true",
80                                      "Support SSE 4a instructions",
81                                      [FeatureSSE3]>;
82
83def FeatureAVX     : SubtargetFeature<"avx", "X86SSELevel", "AVX",
84                                      "Enable AVX instructions",
85                                      [FeatureSSE42]>;
86def FeatureAVX2    : SubtargetFeature<"avx2", "X86SSELevel", "AVX2",
87                                      "Enable AVX2 instructions",
88                                      [FeatureAVX]>;
89def FeatureAVX512   : SubtargetFeature<"avx-512", "X86SSELevel", "AVX512",
90                                      "Enable AVX-512 instructions",
91                                      [FeatureAVX2]>;
92def FeatureERI      : SubtargetFeature<"avx-512-eri", "HasERI", "true",
93                      "Enable AVX-512 Exponential and Reciprocal Instructions",
94                                      [FeatureAVX512]>;
95def FeatureCDI      : SubtargetFeature<"avx-512-cdi", "HasCDI", "true",
96                      "Enable AVX-512 Conflict Detection Instructions",
97                                      [FeatureAVX512]>;
98def FeaturePFI      : SubtargetFeature<"avx-512-pfi", "HasPFI", "true",
99                      "Enable AVX-512 PreFetch Instructions",
100                                      [FeatureAVX512]>;
101
102def FeaturePCLMUL  : SubtargetFeature<"pclmul", "HasPCLMUL", "true",
103                         "Enable packed carry-less multiplication instructions",
104                               [FeatureSSE2]>;
105def FeatureFMA     : SubtargetFeature<"fma", "HasFMA", "true",
106                                      "Enable three-operand fused multiple-add",
107                                      [FeatureAVX]>;
108def FeatureFMA4    : SubtargetFeature<"fma4", "HasFMA4", "true",
109                                      "Enable four-operand fused multiple-add",
110                                      [FeatureAVX, FeatureSSE4A]>;
111def FeatureXOP     : SubtargetFeature<"xop", "HasXOP", "true",
112                                      "Enable XOP instructions",
113                                      [FeatureFMA4]>;
114def FeatureVectorUAMem : SubtargetFeature<"vector-unaligned-mem",
115                                          "HasVectorUAMem", "true",
116                 "Allow unaligned memory operands on vector/SIMD instructions">;
117def FeatureAES     : SubtargetFeature<"aes", "HasAES", "true",
118                                      "Enable AES instructions",
119                                      [FeatureSSE2]>;
120def FeatureMOVBE   : SubtargetFeature<"movbe", "HasMOVBE", "true",
121                                      "Support MOVBE instruction">;
122def FeatureRDRAND  : SubtargetFeature<"rdrand", "HasRDRAND", "true",
123                                      "Support RDRAND instruction">;
124def FeatureF16C    : SubtargetFeature<"f16c", "HasF16C", "true",
125                       "Support 16-bit floating point conversion instructions">;
126def FeatureFSGSBase : SubtargetFeature<"fsgsbase", "HasFSGSBase", "true",
127                                       "Support FS/GS Base instructions">;
128def FeatureLZCNT   : SubtargetFeature<"lzcnt", "HasLZCNT", "true",
129                                      "Support LZCNT instruction">;
130def FeatureBMI     : SubtargetFeature<"bmi", "HasBMI", "true",
131                                      "Support BMI instructions">;
132def FeatureBMI2    : SubtargetFeature<"bmi2", "HasBMI2", "true",
133                                      "Support BMI2 instructions">;
134def FeatureRTM     : SubtargetFeature<"rtm", "HasRTM", "true",
135                                      "Support RTM instructions">;
136def FeatureHLE     : SubtargetFeature<"hle", "HasHLE", "true",
137                                      "Support HLE">;
138def FeatureADX     : SubtargetFeature<"adx", "HasADX", "true",
139                                      "Support ADX instructions">;
140def FeaturePRFCHW  : SubtargetFeature<"prfchw", "HasPRFCHW", "true",
141                                      "Support PRFCHW instructions">;
142def FeatureRDSEED  : SubtargetFeature<"rdseed", "HasRDSEED", "true",
143                                      "Support RDSEED instruction">;
144def FeatureLeaForSP : SubtargetFeature<"lea-sp", "UseLeaForSP", "true",
145                                     "Use LEA for adjusting the stack pointer">;
146def FeatureSlowDivide : SubtargetFeature<"idiv-to-divb",
147                                     "HasSlowDivide", "true",
148                                     "Use small divide for positive values less than 256">;
149def FeaturePadShortFunctions : SubtargetFeature<"pad-short-functions",
150                                     "PadShortFunctions", "true",
151                                     "Pad short functions">;
152def FeatureCallRegIndirect : SubtargetFeature<"call-reg-indirect",
153                                     "CallRegIndirect", "true",
154                                     "Call register indirect">;
155def FeatureLEAUsesAG : SubtargetFeature<"lea-uses-ag", "LEAUsesAG", "true",
156                                   "LEA instruction needs inputs at AG stage">;
157
158//===----------------------------------------------------------------------===//
159// X86 processors supported.
160//===----------------------------------------------------------------------===//
161
162include "X86Schedule.td"
163
164def ProcIntelAtom : SubtargetFeature<"atom", "X86ProcFamily", "IntelAtom",
165                    "Intel Atom processors">;
166
167class Proc<string Name, list<SubtargetFeature> Features>
168 : ProcessorModel<Name, GenericModel, Features>;
169
170def : Proc<"generic",         []>;
171def : Proc<"i386",            []>;
172def : Proc<"i486",            []>;
173def : Proc<"i586",            []>;
174def : Proc<"pentium",         []>;
175def : Proc<"pentium-mmx",     [FeatureMMX]>;
176def : Proc<"i686",            []>;
177def : Proc<"pentiumpro",      [FeatureCMOV]>;
178def : Proc<"pentium2",        [FeatureMMX, FeatureCMOV]>;
179def : Proc<"pentium3",        [FeatureSSE1]>;
180def : Proc<"pentium3m",       [FeatureSSE1, FeatureSlowBTMem]>;
181def : Proc<"pentium-m",       [FeatureSSE2, FeatureSlowBTMem]>;
182def : Proc<"pentium4",        [FeatureSSE2]>;
183def : Proc<"pentium4m",       [FeatureSSE2, FeatureSlowBTMem]>;
184def : Proc<"x86-64",          [FeatureSSE2, Feature64Bit, FeatureSlowBTMem,
185                               FeatureFastUAMem]>;
186// Intel Core Duo.
187def : ProcessorModel<"yonah", SandyBridgeModel,
188                     [FeatureSSE3, FeatureSlowBTMem]>;
189
190// NetBurst.
191def : Proc<"prescott", [FeatureSSE3, FeatureSlowBTMem]>;
192def : Proc<"nocona",   [FeatureSSE3, FeatureCMPXCHG16B, FeatureSlowBTMem]>;
193
194// Intel Core 2 Solo/Duo.
195def : ProcessorModel<"core2", SandyBridgeModel,
196                     [FeatureSSSE3, FeatureCMPXCHG16B, FeatureSlowBTMem]>;
197def : ProcessorModel<"penryn", SandyBridgeModel,
198                     [FeatureSSE41, FeatureCMPXCHG16B, FeatureSlowBTMem]>;
199
200// Atom.
201def : ProcessorModel<"atom", AtomModel,
202                     [ProcIntelAtom, FeatureSSSE3, FeatureCMPXCHG16B,
203                      FeatureMOVBE, FeatureSlowBTMem, FeatureLeaForSP,
204                      FeatureSlowDivide,
205                      FeatureCallRegIndirect,
206                      FeatureLEAUsesAG,
207                      FeaturePadShortFunctions]>;
208
209// "Arrandale" along with corei3 and corei5
210def : ProcessorModel<"corei7", SandyBridgeModel,
211                     [FeatureSSE42, FeatureCMPXCHG16B, FeatureSlowBTMem,
212                      FeatureFastUAMem, FeaturePOPCNT, FeatureAES]>;
213
214def : ProcessorModel<"nehalem", SandyBridgeModel,
215                     [FeatureSSE42,  FeatureCMPXCHG16B, FeatureSlowBTMem,
216                      FeatureFastUAMem, FeaturePOPCNT]>;
217// Westmere is a similar machine to nehalem with some additional features.
218// Westmere is the corei3/i5/i7 path from nehalem to sandybridge
219def : ProcessorModel<"westmere", SandyBridgeModel,
220                     [FeatureSSE42, FeatureCMPXCHG16B, FeatureSlowBTMem,
221                      FeatureFastUAMem, FeaturePOPCNT, FeatureAES,
222                      FeaturePCLMUL]>;
223// Sandy Bridge
224// SSE is not listed here since llvm treats AVX as a reimplementation of SSE,
225// rather than a superset.
226def : ProcessorModel<"corei7-avx", SandyBridgeModel,
227                     [FeatureAVX, FeatureCMPXCHG16B, FeatureFastUAMem,
228                      FeaturePOPCNT, FeatureAES, FeaturePCLMUL]>;
229// Ivy Bridge
230def : ProcessorModel<"core-avx-i", SandyBridgeModel,
231                     [FeatureAVX, FeatureCMPXCHG16B, FeatureFastUAMem,
232                      FeaturePOPCNT, FeatureAES, FeaturePCLMUL, FeatureRDRAND,
233                      FeatureF16C, FeatureFSGSBase]>;
234
235// Haswell
236def : ProcessorModel<"core-avx2", HaswellModel,
237                     [FeatureAVX2, FeatureCMPXCHG16B, FeatureFastUAMem,
238                      FeaturePOPCNT, FeatureAES, FeaturePCLMUL, FeatureRDRAND,
239                      FeatureF16C, FeatureFSGSBase, FeatureMOVBE, FeatureLZCNT,
240                      FeatureBMI, FeatureBMI2, FeatureFMA, FeatureRTM,
241                      FeatureHLE]>;
242
243// KNL
244// FIXME: define KNL model
245def : ProcessorModel<"knl", HaswellModel,
246                     [FeatureAVX512, FeatureERI, FeatureCDI, FeaturePFI,
247                      FeatureCMPXCHG16B, FeatureFastUAMem, FeaturePOPCNT,
248                      FeatureAES, FeaturePCLMUL, FeatureRDRAND, FeatureF16C,
249                      FeatureFSGSBase, FeatureMOVBE, FeatureLZCNT, FeatureBMI,
250                      FeatureBMI2, FeatureFMA, FeatureRTM, FeatureHLE]>;
251
252def : Proc<"k6",              [FeatureMMX]>;
253def : Proc<"k6-2",            [Feature3DNow]>;
254def : Proc<"k6-3",            [Feature3DNow]>;
255def : Proc<"athlon",          [Feature3DNowA, FeatureSlowBTMem]>;
256def : Proc<"athlon-tbird",    [Feature3DNowA, FeatureSlowBTMem]>;
257def : Proc<"athlon-4",        [FeatureSSE1,   Feature3DNowA, FeatureSlowBTMem]>;
258def : Proc<"athlon-xp",       [FeatureSSE1,   Feature3DNowA, FeatureSlowBTMem]>;
259def : Proc<"athlon-mp",       [FeatureSSE1,   Feature3DNowA, FeatureSlowBTMem]>;
260def : Proc<"k8",              [FeatureSSE2,   Feature3DNowA, Feature64Bit,
261                               FeatureSlowBTMem]>;
262def : Proc<"opteron",         [FeatureSSE2,   Feature3DNowA, Feature64Bit,
263                               FeatureSlowBTMem]>;
264def : Proc<"athlon64",        [FeatureSSE2,   Feature3DNowA, Feature64Bit,
265                               FeatureSlowBTMem]>;
266def : Proc<"athlon-fx",       [FeatureSSE2,   Feature3DNowA, Feature64Bit,
267                               FeatureSlowBTMem]>;
268def : Proc<"k8-sse3",         [FeatureSSE3,   Feature3DNowA, FeatureCMPXCHG16B,
269                               FeatureSlowBTMem]>;
270def : Proc<"opteron-sse3",    [FeatureSSE3,   Feature3DNowA, FeatureCMPXCHG16B,
271                               FeatureSlowBTMem]>;
272def : Proc<"athlon64-sse3",   [FeatureSSE3,   Feature3DNowA, FeatureCMPXCHG16B,
273                               FeatureSlowBTMem]>;
274def : Proc<"amdfam10",        [FeatureSSE4A,
275                               Feature3DNowA, FeatureCMPXCHG16B, FeatureLZCNT,
276                               FeaturePOPCNT, FeatureSlowBTMem]>;
277// Bobcat
278def : Proc<"btver1",          [FeatureSSSE3, FeatureSSE4A, FeatureCMPXCHG16B,
279                               FeatureLZCNT, FeaturePOPCNT]>;
280// Jaguar
281def : Proc<"btver2",          [FeatureAVX, FeatureSSE4A, FeatureCMPXCHG16B,
282                               FeatureAES, FeaturePCLMUL, FeatureBMI,
283                               FeatureF16C, FeatureMOVBE, FeatureLZCNT,
284                               FeaturePOPCNT]>;
285// Bulldozer
286def : Proc<"bdver1",          [FeatureXOP, FeatureFMA4, FeatureCMPXCHG16B,
287                               FeatureAES, FeaturePCLMUL,
288                               FeatureLZCNT, FeaturePOPCNT]>;
289// Piledriver
290def : Proc<"bdver2",          [FeatureXOP, FeatureFMA4, FeatureCMPXCHG16B,
291                               FeatureAES, FeaturePCLMUL,
292                               FeatureF16C, FeatureLZCNT,
293                               FeaturePOPCNT, FeatureBMI, FeatureFMA]>;
294def : Proc<"geode",           [Feature3DNowA]>;
295
296def : Proc<"winchip-c6",      [FeatureMMX]>;
297def : Proc<"winchip2",        [Feature3DNow]>;
298def : Proc<"c3",              [Feature3DNow]>;
299def : Proc<"c3-2",            [FeatureSSE1]>;
300
301//===----------------------------------------------------------------------===//
302// Register File Description
303//===----------------------------------------------------------------------===//
304
305include "X86RegisterInfo.td"
306
307//===----------------------------------------------------------------------===//
308// Instruction Descriptions
309//===----------------------------------------------------------------------===//
310
311include "X86InstrInfo.td"
312
313def X86InstrInfo : InstrInfo;
314
315//===----------------------------------------------------------------------===//
316// Calling Conventions
317//===----------------------------------------------------------------------===//
318
319include "X86CallingConv.td"
320
321
322//===----------------------------------------------------------------------===//
323// Assembly Parser
324//===----------------------------------------------------------------------===//
325
326def ATTAsmParser : AsmParser {
327  string AsmParserClassName = "AsmParser";
328}
329
330def ATTAsmParserVariant : AsmParserVariant {
331  int Variant = 0;
332
333  // Variant name.
334  string Name = "att";
335
336  // Discard comments in assembly strings.
337  string CommentDelimiter = "#";
338
339  // Recognize hard coded registers.
340  string RegisterPrefix = "%";
341}
342
343def IntelAsmParserVariant : AsmParserVariant {
344  int Variant = 1;
345
346  // Variant name.
347  string Name = "intel";
348
349  // Discard comments in assembly strings.
350  string CommentDelimiter = ";";
351
352  // Recognize hard coded registers.
353  string RegisterPrefix = "";
354}
355
356//===----------------------------------------------------------------------===//
357// Assembly Printers
358//===----------------------------------------------------------------------===//
359
360// The X86 target supports two different syntaxes for emitting machine code.
361// This is controlled by the -x86-asm-syntax={att|intel}
362def ATTAsmWriter : AsmWriter {
363  string AsmWriterClassName  = "ATTInstPrinter";
364  int Variant = 0;
365  bit isMCAsmWriter = 1;
366}
367def IntelAsmWriter : AsmWriter {
368  string AsmWriterClassName  = "IntelInstPrinter";
369  int Variant = 1;
370  bit isMCAsmWriter = 1;
371}
372
373def X86 : Target {
374  // Information about the instructions...
375  let InstructionSet = X86InstrInfo;
376  let AssemblyParsers = [ATTAsmParser];
377  let AssemblyParserVariants = [ATTAsmParserVariant, IntelAsmParserVariant];
378  let AssemblyWriters = [ATTAsmWriter, IntelAsmWriter];
379}
380