[X86][SSE] Vector integer/float conversion memory folding
[oota-llvm.git] / lib / Target / X86 / X86.td
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 //
17 include "llvm/Target/Target.td"
18
19 //===----------------------------------------------------------------------===//
20 // X86 Subtarget state
21 //
22
23 def Mode64Bit : SubtargetFeature<"64bit-mode", "In64BitMode", "true",
24                                   "64-bit mode (x86_64)">;
25 def Mode32Bit : SubtargetFeature<"32bit-mode", "In32BitMode", "true",
26                                   "32-bit mode (80386)">;
27 def Mode16Bit : SubtargetFeature<"16bit-mode", "In16BitMode", "true",
28                                   "16-bit mode (i8086)">;
29
30 //===----------------------------------------------------------------------===//
31 // X86 Subtarget features
32 //===----------------------------------------------------------------------===//
33
34 def FeatureCMOV    : SubtargetFeature<"cmov","HasCMov", "true",
35                                       "Enable conditional move instructions">;
36
37 def FeaturePOPCNT   : SubtargetFeature<"popcnt", "HasPOPCNT", "true",
38                                        "Support POPCNT instruction">;
39
40
41 def FeatureMMX     : SubtargetFeature<"mmx","X86SSELevel", "MMX",
42                                       "Enable MMX instructions">;
43 def FeatureSSE1    : SubtargetFeature<"sse", "X86SSELevel", "SSE1",
44                                       "Enable SSE instructions",
45                                       // SSE codegen depends on cmovs, and all
46                                       // SSE1+ processors support them.
47                                       [FeatureMMX, FeatureCMOV]>;
48 def FeatureSSE2    : SubtargetFeature<"sse2", "X86SSELevel", "SSE2",
49                                       "Enable SSE2 instructions",
50                                       [FeatureSSE1]>;
51 def FeatureSSE3    : SubtargetFeature<"sse3", "X86SSELevel", "SSE3",
52                                       "Enable SSE3 instructions",
53                                       [FeatureSSE2]>;
54 def FeatureSSSE3   : SubtargetFeature<"ssse3", "X86SSELevel", "SSSE3",
55                                       "Enable SSSE3 instructions",
56                                       [FeatureSSE3]>;
57 def FeatureSSE41   : SubtargetFeature<"sse4.1", "X86SSELevel", "SSE41",
58                                       "Enable SSE 4.1 instructions",
59                                       [FeatureSSSE3]>;
60 def FeatureSSE42   : SubtargetFeature<"sse4.2", "X86SSELevel", "SSE42",
61                                       "Enable SSE 4.2 instructions",
62                                       [FeatureSSE41]>;
63 def Feature3DNow   : SubtargetFeature<"3dnow", "X863DNowLevel", "ThreeDNow",
64                                       "Enable 3DNow! instructions",
65                                       [FeatureMMX]>;
66 def Feature3DNowA  : SubtargetFeature<"3dnowa", "X863DNowLevel", "ThreeDNowA",
67                                       "Enable 3DNow! Athlon instructions",
68                                       [Feature3DNow]>;
69 // All x86-64 hardware has SSE2, but we don't mark SSE2 as an implied
70 // feature, because SSE2 can be disabled (e.g. for compiling OS kernels)
71 // without disabling 64-bit mode.
72 def Feature64Bit   : SubtargetFeature<"64bit", "HasX86_64", "true",
73                                       "Support 64-bit instructions",
74                                       [FeatureCMOV]>;
75 def FeatureCMPXCHG16B : SubtargetFeature<"cx16", "HasCmpxchg16b", "true",
76                                       "64-bit with cmpxchg16b",
77                                       [Feature64Bit]>;
78 def FeatureSlowBTMem : SubtargetFeature<"slow-bt-mem", "IsBTMemSlow", "true",
79                                        "Bit testing of memory is slow">;
80 def FeatureSlowSHLD : SubtargetFeature<"slow-shld", "IsSHLDSlow", "true",
81                                        "SHLD instruction is slow">;
82 def FeatureFastUAMem : SubtargetFeature<"fast-unaligned-mem",
83                                         "IsUAMemFast", "true",
84                                         "Fast unaligned memory access">;
85 def FeatureSSE4A   : SubtargetFeature<"sse4a", "HasSSE4A", "true",
86                                       "Support SSE 4a instructions",
87                                       [FeatureSSE3]>;
88
89 def FeatureAVX     : SubtargetFeature<"avx", "X86SSELevel", "AVX",
90                                       "Enable AVX instructions",
91                                       [FeatureSSE42]>;
92 def FeatureAVX2    : SubtargetFeature<"avx2", "X86SSELevel", "AVX2",
93                                       "Enable AVX2 instructions",
94                                       [FeatureAVX]>;
95 def FeatureAVX512   : SubtargetFeature<"avx512f", "X86SSELevel", "AVX512F",
96                                       "Enable AVX-512 instructions",
97                                       [FeatureAVX2]>;
98 def FeatureERI      : SubtargetFeature<"avx512er", "HasERI", "true",
99                       "Enable AVX-512 Exponential and Reciprocal Instructions",
100                                       [FeatureAVX512]>;
101 def FeatureCDI      : SubtargetFeature<"avx512cd", "HasCDI", "true",
102                       "Enable AVX-512 Conflict Detection Instructions",
103                                       [FeatureAVX512]>;
104 def FeaturePFI      : SubtargetFeature<"avx512pf", "HasPFI", "true",
105                       "Enable AVX-512 PreFetch Instructions",
106                                       [FeatureAVX512]>;
107 def FeatureDQI     : SubtargetFeature<"avx512dq", "HasDQI", "true",
108                       "Enable AVX-512 Doubleword and Quadword Instructions",
109                                       [FeatureAVX512]>;
110 def FeatureBWI     : SubtargetFeature<"avx512bw", "HasBWI", "true",
111                       "Enable AVX-512 Byte and Word Instructions",
112                                       [FeatureAVX512]>;
113 def FeatureVLX     : SubtargetFeature<"avx512vl", "HasVLX", "true",
114                       "Enable AVX-512 Vector Length eXtensions",
115                                       [FeatureAVX512]>;
116 def FeaturePCLMUL  : SubtargetFeature<"pclmul", "HasPCLMUL", "true",
117                          "Enable packed carry-less multiplication instructions",
118                                [FeatureSSE2]>;
119 def FeatureFMA     : SubtargetFeature<"fma", "HasFMA", "true",
120                                       "Enable three-operand fused multiple-add",
121                                       [FeatureAVX]>;
122 def FeatureFMA4    : SubtargetFeature<"fma4", "HasFMA4", "true",
123                                       "Enable four-operand fused multiple-add",
124                                       [FeatureAVX, FeatureSSE4A]>;
125 def FeatureXOP     : SubtargetFeature<"xop", "HasXOP", "true",
126                                       "Enable XOP instructions",
127                                       [FeatureFMA4]>;
128 def FeatureVectorUAMem : SubtargetFeature<"vector-unaligned-mem",
129                                           "HasVectorUAMem", "true",
130                  "Allow unaligned memory operands on vector/SIMD instructions">;
131 def FeatureAES     : SubtargetFeature<"aes", "HasAES", "true",
132                                       "Enable AES instructions",
133                                       [FeatureSSE2]>;
134 def FeatureTBM     : SubtargetFeature<"tbm", "HasTBM", "true",
135                                       "Enable TBM instructions">;
136 def FeatureMOVBE   : SubtargetFeature<"movbe", "HasMOVBE", "true",
137                                       "Support MOVBE instruction">;
138 def FeatureRDRAND  : SubtargetFeature<"rdrnd", "HasRDRAND", "true",
139                                       "Support RDRAND instruction">;
140 def FeatureF16C    : SubtargetFeature<"f16c", "HasF16C", "true",
141                        "Support 16-bit floating point conversion instructions",
142                        [FeatureAVX]>;
143 def FeatureFSGSBase : SubtargetFeature<"fsgsbase", "HasFSGSBase", "true",
144                                        "Support FS/GS Base instructions">;
145 def FeatureLZCNT   : SubtargetFeature<"lzcnt", "HasLZCNT", "true",
146                                       "Support LZCNT instruction">;
147 def FeatureBMI     : SubtargetFeature<"bmi", "HasBMI", "true",
148                                       "Support BMI instructions">;
149 def FeatureBMI2    : SubtargetFeature<"bmi2", "HasBMI2", "true",
150                                       "Support BMI2 instructions">;
151 def FeatureRTM     : SubtargetFeature<"rtm", "HasRTM", "true",
152                                       "Support RTM instructions">;
153 def FeatureHLE     : SubtargetFeature<"hle", "HasHLE", "true",
154                                       "Support HLE">;
155 def FeatureADX     : SubtargetFeature<"adx", "HasADX", "true",
156                                       "Support ADX instructions">;
157 def FeatureSHA     : SubtargetFeature<"sha", "HasSHA", "true",
158                                       "Enable SHA instructions",
159                                       [FeatureSSE2]>;
160 def FeatureSGX     : SubtargetFeature<"sgx", "HasSGX", "true",
161                                       "Support SGX instructions">;
162 def FeaturePRFCHW  : SubtargetFeature<"prfchw", "HasPRFCHW", "true",
163                                       "Support PRFCHW instructions">;
164 def FeatureRDSEED  : SubtargetFeature<"rdseed", "HasRDSEED", "true",
165                                       "Support RDSEED instruction">;
166 def FeatureSMAP    : SubtargetFeature<"smap", "HasSMAP", "true",
167                                       "Support SMAP instructions">;
168 def FeatureLeaForSP : SubtargetFeature<"lea-sp", "UseLeaForSP", "true",
169                                      "Use LEA for adjusting the stack pointer">;
170 def FeatureSlowDivide : SubtargetFeature<"idiv-to-divb",
171                                      "HasSlowDivide", "true",
172                                      "Use small divide for positive values less than 256">;
173 def FeaturePadShortFunctions : SubtargetFeature<"pad-short-functions",
174                                      "PadShortFunctions", "true",
175                                      "Pad short functions">;
176 def FeatureCallRegIndirect : SubtargetFeature<"call-reg-indirect",
177                                      "CallRegIndirect", "true",
178                                      "Call register indirect">;
179 def FeatureLEAUsesAG : SubtargetFeature<"lea-uses-ag", "LEAUsesAG", "true",
180                                    "LEA instruction needs inputs at AG stage">;
181 def FeatureSlowLEA : SubtargetFeature<"slow-lea", "SlowLEA", "true",
182                                    "LEA instruction with certain arguments is slow">;
183 def FeatureSlowIncDec : SubtargetFeature<"slow-incdec", "SlowIncDec", "true",
184                                    "INC and DEC instructions are slower than ADD and SUB">;
185 def FeatureUseSqrtEst : SubtargetFeature<"use-sqrt-est", "UseSqrtEst", "true",
186                             "Use RSQRT* to optimize square root calculations">;
187
188 //===----------------------------------------------------------------------===//
189 // X86 processors supported.
190 //===----------------------------------------------------------------------===//
191
192 include "X86Schedule.td"
193
194 def ProcIntelAtom : SubtargetFeature<"atom", "X86ProcFamily", "IntelAtom",
195                     "Intel Atom processors">;
196 def ProcIntelSLM  : SubtargetFeature<"slm", "X86ProcFamily", "IntelSLM",
197                     "Intel Silvermont processors">;
198
199 class Proc<string Name, list<SubtargetFeature> Features>
200  : ProcessorModel<Name, GenericModel, Features>;
201
202 def : Proc<"generic",         []>;
203 def : Proc<"i386",            []>;
204 def : Proc<"i486",            []>;
205 def : Proc<"i586",            []>;
206 def : Proc<"pentium",         []>;
207 def : Proc<"pentium-mmx",     [FeatureMMX]>;
208 def : Proc<"i686",            []>;
209 def : Proc<"pentiumpro",      [FeatureCMOV]>;
210 def : Proc<"pentium2",        [FeatureMMX, FeatureCMOV]>;
211 def : Proc<"pentium3",        [FeatureSSE1]>;
212 def : Proc<"pentium3m",       [FeatureSSE1, FeatureSlowBTMem]>;
213 def : Proc<"pentium-m",       [FeatureSSE2, FeatureSlowBTMem]>;
214 def : Proc<"pentium4",        [FeatureSSE2]>;
215 def : Proc<"pentium4m",       [FeatureSSE2, FeatureSlowBTMem]>;
216
217 // Intel Core Duo.
218 def : ProcessorModel<"yonah", SandyBridgeModel,
219                      [FeatureSSE3, FeatureSlowBTMem]>;
220
221 // NetBurst.
222 def : Proc<"prescott", [FeatureSSE3, FeatureSlowBTMem]>;
223 def : Proc<"nocona",   [FeatureSSE3, FeatureCMPXCHG16B, FeatureSlowBTMem]>;
224
225 // Intel Core 2 Solo/Duo.
226 def : ProcessorModel<"core2", SandyBridgeModel,
227                      [FeatureSSSE3, FeatureCMPXCHG16B, FeatureSlowBTMem]>;
228 def : ProcessorModel<"penryn", SandyBridgeModel,
229                      [FeatureSSE41, FeatureCMPXCHG16B, FeatureSlowBTMem]>;
230
231 // Atom.
232 def : ProcessorModel<"atom", AtomModel,
233                      [ProcIntelAtom, FeatureSSSE3, FeatureCMPXCHG16B,
234                       FeatureMOVBE, FeatureSlowBTMem, FeatureLeaForSP,
235                       FeatureSlowDivide,
236                       FeatureCallRegIndirect,
237                       FeatureLEAUsesAG,
238                       FeaturePadShortFunctions]>;
239
240 // Atom Silvermont.
241 def : ProcessorModel<"slm",  SLMModel, [ProcIntelSLM,
242                                FeatureSSE42, FeatureCMPXCHG16B,
243                                FeatureMOVBE, FeaturePOPCNT,
244                                FeaturePCLMUL, FeatureAES,
245                                FeatureCallRegIndirect,
246                                FeaturePRFCHW,
247                                FeatureSlowLEA, FeatureSlowIncDec,
248                                FeatureSlowBTMem, FeatureFastUAMem]>;
249 // "Arrandale" along with corei3 and corei5
250 def : ProcessorModel<"corei7", SandyBridgeModel,
251                      [FeatureSSE42, FeatureCMPXCHG16B, FeatureSlowBTMem,
252                       FeatureFastUAMem, FeaturePOPCNT, FeatureAES]>;
253
254 def : ProcessorModel<"nehalem", SandyBridgeModel,
255                      [FeatureSSE42,  FeatureCMPXCHG16B, FeatureSlowBTMem,
256                       FeatureFastUAMem, FeaturePOPCNT]>;
257 // Westmere is a similar machine to nehalem with some additional features.
258 // Westmere is the corei3/i5/i7 path from nehalem to sandybridge
259 def : ProcessorModel<"westmere", SandyBridgeModel,
260                      [FeatureSSE42, FeatureCMPXCHG16B, FeatureSlowBTMem,
261                       FeatureFastUAMem, FeaturePOPCNT, FeatureAES,
262                       FeaturePCLMUL]>;
263 // Sandy Bridge
264 // SSE is not listed here since llvm treats AVX as a reimplementation of SSE,
265 // rather than a superset.
266 def : ProcessorModel<"corei7-avx", SandyBridgeModel,
267                      [FeatureAVX, FeatureCMPXCHG16B, FeatureFastUAMem,
268                       FeaturePOPCNT, FeatureAES, FeaturePCLMUL]>;
269 // Ivy Bridge
270 def : ProcessorModel<"core-avx-i", SandyBridgeModel,
271                      [FeatureAVX, FeatureCMPXCHG16B, FeatureFastUAMem,
272                       FeaturePOPCNT, FeatureAES, FeaturePCLMUL, FeatureRDRAND,
273                       FeatureF16C, FeatureFSGSBase]>;
274
275 // Haswell
276 def : ProcessorModel<"core-avx2", HaswellModel,
277                      [FeatureAVX2, FeatureCMPXCHG16B, FeatureFastUAMem,
278                       FeaturePOPCNT, FeatureAES, FeaturePCLMUL, FeatureRDRAND,
279                       FeatureF16C, FeatureFSGSBase, FeatureMOVBE, FeatureLZCNT,
280                       FeatureBMI, FeatureBMI2, FeatureFMA, FeatureRTM,
281                       FeatureHLE]>;
282
283 // Broadwell
284 def : ProcessorModel<"broadwell", HaswellModel,
285                      [FeatureAVX2, FeatureCMPXCHG16B, FeatureFastUAMem,
286                       FeaturePOPCNT, FeatureAES, FeaturePCLMUL, FeatureRDRAND,
287                       FeatureF16C, FeatureFSGSBase, FeatureMOVBE, FeatureLZCNT,
288                       FeatureBMI, FeatureBMI2, FeatureFMA, FeatureRTM,
289                       FeatureHLE, FeatureADX, FeatureRDSEED, FeatureSMAP]>;
290 // KNL
291 // FIXME: define KNL model
292 def : ProcessorModel<"knl", HaswellModel,
293                      [FeatureAVX512, FeatureERI, FeatureCDI, FeaturePFI,
294                       FeatureCMPXCHG16B, FeatureFastUAMem, FeaturePOPCNT,
295                       FeatureAES, FeaturePCLMUL, FeatureRDRAND, FeatureF16C,
296                       FeatureFSGSBase, FeatureMOVBE, FeatureLZCNT, FeatureBMI,
297                       FeatureBMI2, FeatureFMA, FeatureRTM, FeatureHLE,
298                       FeatureSlowIncDec]>;
299
300 // SKX
301 // FIXME: define SKX model
302 def : ProcessorModel<"skx", HaswellModel,
303                      [FeatureAVX512, FeatureCDI,
304                       FeatureDQI, FeatureBWI, FeatureVLX,
305                       FeatureCMPXCHG16B, FeatureFastUAMem, FeaturePOPCNT,
306                       FeatureAES, FeaturePCLMUL, FeatureRDRAND, FeatureF16C,
307                       FeatureFSGSBase, FeatureMOVBE, FeatureLZCNT, FeatureBMI,
308                       FeatureBMI2, FeatureFMA, FeatureRTM, FeatureHLE,
309                       FeatureSlowIncDec, FeatureSGX]>;
310
311 def : Proc<"k6",              [FeatureMMX]>;
312 def : Proc<"k6-2",            [Feature3DNow]>;
313 def : Proc<"k6-3",            [Feature3DNow]>;
314 def : Proc<"athlon",          [Feature3DNowA, FeatureSlowBTMem,
315                                FeatureSlowSHLD]>;
316 def : Proc<"athlon-tbird",    [Feature3DNowA, FeatureSlowBTMem,
317                                FeatureSlowSHLD]>;
318 def : Proc<"athlon-4",        [FeatureSSE1,   Feature3DNowA, FeatureSlowBTMem, 
319                                FeatureSlowSHLD]>;
320 def : Proc<"athlon-xp",       [FeatureSSE1,   Feature3DNowA, FeatureSlowBTMem,
321                                FeatureSlowSHLD]>;
322 def : Proc<"athlon-mp",       [FeatureSSE1,   Feature3DNowA, FeatureSlowBTMem,
323                                FeatureSlowSHLD]>;
324 def : Proc<"k8",              [FeatureSSE2,   Feature3DNowA, Feature64Bit,
325                                FeatureSlowBTMem, FeatureSlowSHLD]>;
326 def : Proc<"opteron",         [FeatureSSE2,   Feature3DNowA, Feature64Bit,
327                                FeatureSlowBTMem, FeatureSlowSHLD]>;
328 def : Proc<"athlon64",        [FeatureSSE2,   Feature3DNowA, Feature64Bit,
329                                FeatureSlowBTMem, FeatureSlowSHLD]>;
330 def : Proc<"athlon-fx",       [FeatureSSE2,   Feature3DNowA, Feature64Bit,
331                                FeatureSlowBTMem, FeatureSlowSHLD]>;
332 def : Proc<"k8-sse3",         [FeatureSSE3,   Feature3DNowA, FeatureCMPXCHG16B,
333                                FeatureSlowBTMem, FeatureSlowSHLD]>;
334 def : Proc<"opteron-sse3",    [FeatureSSE3,   Feature3DNowA, FeatureCMPXCHG16B,
335                                FeatureSlowBTMem, FeatureSlowSHLD]>;
336 def : Proc<"athlon64-sse3",   [FeatureSSE3,   Feature3DNowA, FeatureCMPXCHG16B,
337                                FeatureSlowBTMem, FeatureSlowSHLD]>;
338 def : Proc<"amdfam10",        [FeatureSSE4A,
339                                Feature3DNowA, FeatureCMPXCHG16B, FeatureLZCNT,
340                                FeaturePOPCNT, FeatureSlowBTMem,
341                                FeatureSlowSHLD]>;
342 // Bobcat
343 def : Proc<"btver1",          [FeatureSSSE3, FeatureSSE4A, FeatureCMPXCHG16B,
344                                FeaturePRFCHW, FeatureLZCNT, FeaturePOPCNT,
345                                FeatureSlowSHLD]>;
346
347 // Jaguar
348 def : ProcessorModel<"btver2", BtVer2Model,
349                      [FeatureAVX, FeatureSSE4A, FeatureCMPXCHG16B,
350                       FeaturePRFCHW, FeatureAES, FeaturePCLMUL,
351                       FeatureBMI, FeatureF16C, FeatureMOVBE,
352                       FeatureLZCNT, FeaturePOPCNT, FeatureSlowSHLD,
353                       FeatureUseSqrtEst]>;
354
355 // Bulldozer
356 def : Proc<"bdver1",          [FeatureXOP, FeatureFMA4, FeatureCMPXCHG16B,
357                                FeatureAES, FeaturePRFCHW, FeaturePCLMUL,
358                                FeatureLZCNT, FeaturePOPCNT, FeatureSlowSHLD]>;
359 // Piledriver
360 def : Proc<"bdver2",          [FeatureXOP, FeatureFMA4, FeatureCMPXCHG16B,
361                                FeatureAES, FeaturePRFCHW, FeaturePCLMUL,
362                                FeatureF16C, FeatureLZCNT,
363                                FeaturePOPCNT, FeatureBMI, FeatureTBM,
364                                FeatureFMA, FeatureSlowSHLD]>;
365
366 // Steamroller
367 def : Proc<"bdver3",          [FeatureXOP, FeatureFMA4, FeatureCMPXCHG16B,
368                                FeatureAES, FeaturePRFCHW, FeaturePCLMUL,
369                                FeatureF16C, FeatureLZCNT,
370                                FeaturePOPCNT, FeatureBMI,  FeatureTBM,
371                                FeatureFMA, FeatureFSGSBase]>;
372
373 // Excavator
374 def : Proc<"bdver4",          [FeatureAVX2, FeatureXOP, FeatureFMA4,
375                                FeatureCMPXCHG16B, FeatureAES, FeaturePRFCHW,
376                                FeaturePCLMUL, FeatureF16C, FeatureLZCNT,
377                                FeaturePOPCNT, FeatureBMI, FeatureBMI2,
378                                FeatureTBM, FeatureFMA, FeatureFSGSBase]>;
379
380 def : Proc<"geode",           [Feature3DNowA]>;
381
382 def : Proc<"winchip-c6",      [FeatureMMX]>;
383 def : Proc<"winchip2",        [Feature3DNow]>;
384 def : Proc<"c3",              [Feature3DNow]>;
385 def : Proc<"c3-2",            [FeatureSSE1]>;
386
387 // We also provide a generic 64-bit specific x86 processor model which tries to
388 // be good for modern chips without enabling instruction set encodings past the
389 // basic SSE2 and 64-bit ones. It disables slow things from any mainstream and
390 // modern 64-bit x86 chip, and enables features that are generally beneficial.
391 // 
392 // We currently use the Sandy Bridge model as the default scheduling model as
393 // we use it across Nehalem, Westmere, Sandy Bridge, and Ivy Bridge which
394 // covers a huge swath of x86 processors. If there are specific scheduling
395 // knobs which need to be tuned differently for AMD chips, we might consider
396 // forming a common base for them.
397 def : ProcessorModel<"x86-64", SandyBridgeModel,
398                      [FeatureSSE2, Feature64Bit, FeatureSlowBTMem,
399                       FeatureFastUAMem]>;
400
401 //===----------------------------------------------------------------------===//
402 // Register File Description
403 //===----------------------------------------------------------------------===//
404
405 include "X86RegisterInfo.td"
406
407 //===----------------------------------------------------------------------===//
408 // Instruction Descriptions
409 //===----------------------------------------------------------------------===//
410
411 include "X86InstrInfo.td"
412
413 def X86InstrInfo : InstrInfo;
414
415 //===----------------------------------------------------------------------===//
416 // Calling Conventions
417 //===----------------------------------------------------------------------===//
418
419 include "X86CallingConv.td"
420
421
422 //===----------------------------------------------------------------------===//
423 // Assembly Parser
424 //===----------------------------------------------------------------------===//
425
426 def ATTAsmParser : AsmParser {
427   string AsmParserClassName = "AsmParser";
428 }
429
430 def ATTAsmParserVariant : AsmParserVariant {
431   int Variant = 0;
432
433   // Variant name.
434   string Name = "att";
435
436   // Discard comments in assembly strings.
437   string CommentDelimiter = "#";
438
439   // Recognize hard coded registers.
440   string RegisterPrefix = "%";
441 }
442
443 def IntelAsmParserVariant : AsmParserVariant {
444   int Variant = 1;
445
446   // Variant name.
447   string Name = "intel";
448
449   // Discard comments in assembly strings.
450   string CommentDelimiter = ";";
451
452   // Recognize hard coded registers.
453   string RegisterPrefix = "";
454 }
455
456 //===----------------------------------------------------------------------===//
457 // Assembly Printers
458 //===----------------------------------------------------------------------===//
459
460 // The X86 target supports two different syntaxes for emitting machine code.
461 // This is controlled by the -x86-asm-syntax={att|intel}
462 def ATTAsmWriter : AsmWriter {
463   string AsmWriterClassName  = "ATTInstPrinter";
464   int Variant = 0;
465 }
466 def IntelAsmWriter : AsmWriter {
467   string AsmWriterClassName  = "IntelInstPrinter";
468   int Variant = 1;
469 }
470
471 def X86 : Target {
472   // Information about the instructions...
473   let InstructionSet = X86InstrInfo;
474   let AssemblyParsers = [ATTAsmParser];
475   let AssemblyParserVariants = [ATTAsmParserVariant, IntelAsmParserVariant];
476   let AssemblyWriters = [ATTAsmWriter, IntelAsmWriter];
477 }