[X86] Use ADD/SUB instead of INC/DEC for Haswell and Broadwell CPUs
[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 def FeatureUseRecipEst : SubtargetFeature<"use-recip-est", "UseReciprocalEst",
188                           "true", "Use RCP* to optimize division calculations">;
189
190 //===----------------------------------------------------------------------===//
191 // X86 processors supported.
192 //===----------------------------------------------------------------------===//
193
194 include "X86Schedule.td"
195
196 def ProcIntelAtom : SubtargetFeature<"atom", "X86ProcFamily", "IntelAtom",
197                     "Intel Atom processors">;
198 def ProcIntelSLM  : SubtargetFeature<"slm", "X86ProcFamily", "IntelSLM",
199                     "Intel Silvermont processors">;
200
201 class Proc<string Name, list<SubtargetFeature> Features>
202  : ProcessorModel<Name, GenericModel, Features>;
203
204 def : Proc<"generic",         []>;
205 def : Proc<"i386",            []>;
206 def : Proc<"i486",            []>;
207 def : Proc<"i586",            []>;
208 def : Proc<"pentium",         []>;
209 def : Proc<"pentium-mmx",     [FeatureMMX]>;
210 def : Proc<"i686",            []>;
211 def : Proc<"pentiumpro",      [FeatureCMOV]>;
212 def : Proc<"pentium2",        [FeatureMMX, FeatureCMOV]>;
213 def : Proc<"pentium3",        [FeatureSSE1]>;
214 def : Proc<"pentium3m",       [FeatureSSE1, FeatureSlowBTMem]>;
215 def : Proc<"pentium-m",       [FeatureSSE2, FeatureSlowBTMem]>;
216 def : Proc<"pentium4",        [FeatureSSE2]>;
217 def : Proc<"pentium4m",       [FeatureSSE2, FeatureSlowBTMem]>;
218
219 // Intel Core Duo.
220 def : ProcessorModel<"yonah", SandyBridgeModel,
221                      [FeatureSSE3, FeatureSlowBTMem]>;
222
223 // NetBurst.
224 def : Proc<"prescott", [FeatureSSE3, FeatureSlowBTMem]>;
225 def : Proc<"nocona",   [FeatureSSE3, FeatureCMPXCHG16B, FeatureSlowBTMem]>;
226
227 // Intel Core 2 Solo/Duo.
228 def : ProcessorModel<"core2", SandyBridgeModel,
229                      [FeatureSSSE3, FeatureCMPXCHG16B, FeatureSlowBTMem]>;
230 def : ProcessorModel<"penryn", SandyBridgeModel,
231                      [FeatureSSE41, FeatureCMPXCHG16B, FeatureSlowBTMem]>;
232
233 // Atom.
234 def : ProcessorModel<"atom", AtomModel,
235                      [ProcIntelAtom, FeatureSSSE3, FeatureCMPXCHG16B,
236                       FeatureMOVBE, FeatureSlowBTMem, FeatureLeaForSP,
237                       FeatureSlowDivide,
238                       FeatureCallRegIndirect,
239                       FeatureLEAUsesAG,
240                       FeaturePadShortFunctions]>;
241
242 // Atom Silvermont.
243 def : ProcessorModel<"slm",  SLMModel, [ProcIntelSLM,
244                                FeatureSSE42, FeatureCMPXCHG16B,
245                                FeatureMOVBE, FeaturePOPCNT,
246                                FeaturePCLMUL, FeatureAES,
247                                FeatureCallRegIndirect,
248                                FeaturePRFCHW,
249                                FeatureSlowLEA, FeatureSlowIncDec,
250                                FeatureSlowBTMem, FeatureFastUAMem]>;
251 // "Arrandale" along with corei3 and corei5
252 def : ProcessorModel<"corei7", SandyBridgeModel,
253                      [FeatureSSE42, FeatureCMPXCHG16B, FeatureSlowBTMem,
254                       FeatureFastUAMem, FeaturePOPCNT, FeatureAES]>;
255
256 def : ProcessorModel<"nehalem", SandyBridgeModel,
257                      [FeatureSSE42,  FeatureCMPXCHG16B, FeatureSlowBTMem,
258                       FeatureFastUAMem, FeaturePOPCNT]>;
259 // Westmere is a similar machine to nehalem with some additional features.
260 // Westmere is the corei3/i5/i7 path from nehalem to sandybridge
261 def : ProcessorModel<"westmere", SandyBridgeModel,
262                      [FeatureSSE42, FeatureCMPXCHG16B, FeatureSlowBTMem,
263                       FeatureFastUAMem, FeaturePOPCNT, FeatureAES,
264                       FeaturePCLMUL]>;
265 // Sandy Bridge
266 // SSE is not listed here since llvm treats AVX as a reimplementation of SSE,
267 // rather than a superset.
268 def : ProcessorModel<"corei7-avx", SandyBridgeModel,
269                      [FeatureAVX, FeatureCMPXCHG16B, FeatureFastUAMem,
270                       FeaturePOPCNT, FeatureAES, FeaturePCLMUL]>;
271 // Ivy Bridge
272 def : ProcessorModel<"core-avx-i", SandyBridgeModel,
273                      [FeatureAVX, FeatureCMPXCHG16B, FeatureFastUAMem,
274                       FeaturePOPCNT, FeatureAES, FeaturePCLMUL, FeatureRDRAND,
275                       FeatureF16C, FeatureFSGSBase]>;
276
277 // Haswell
278 def : ProcessorModel<"core-avx2", HaswellModel,
279                      [FeatureAVX2, FeatureCMPXCHG16B, FeatureFastUAMem,
280                       FeaturePOPCNT, FeatureAES, FeaturePCLMUL, FeatureRDRAND,
281                       FeatureF16C, FeatureFSGSBase, FeatureMOVBE, FeatureLZCNT,
282                       FeatureBMI, FeatureBMI2, FeatureFMA, FeatureRTM,
283                       FeatureHLE, FeatureSlowIncDec]>;
284
285 // Broadwell
286 def : ProcessorModel<"broadwell", HaswellModel,
287                      [FeatureAVX2, FeatureCMPXCHG16B, FeatureFastUAMem,
288                       FeaturePOPCNT, FeatureAES, FeaturePCLMUL, FeatureRDRAND,
289                       FeatureF16C, FeatureFSGSBase, FeatureMOVBE, FeatureLZCNT,
290                       FeatureBMI, FeatureBMI2, FeatureFMA, FeatureRTM,
291                       FeatureHLE, FeatureADX, FeatureRDSEED, FeatureSMAP,
292                       FeatureSlowIncDec]>;
293 // KNL
294 // FIXME: define KNL model
295 def : ProcessorModel<"knl", HaswellModel,
296                      [FeatureAVX512, FeatureERI, FeatureCDI, FeaturePFI,
297                       FeatureCMPXCHG16B, FeatureFastUAMem, FeaturePOPCNT,
298                       FeatureAES, FeaturePCLMUL, FeatureRDRAND, FeatureF16C,
299                       FeatureFSGSBase, FeatureMOVBE, FeatureLZCNT, FeatureBMI,
300                       FeatureBMI2, FeatureFMA, FeatureRTM, FeatureHLE,
301                       FeatureSlowIncDec]>;
302
303 // SKX
304 // FIXME: define SKX model
305 def : ProcessorModel<"skx", HaswellModel,
306                      [FeatureAVX512, FeatureCDI,
307                       FeatureDQI, FeatureBWI, FeatureVLX,
308                       FeatureCMPXCHG16B, FeatureFastUAMem, FeaturePOPCNT,
309                       FeatureAES, FeaturePCLMUL, FeatureRDRAND, FeatureF16C,
310                       FeatureFSGSBase, FeatureMOVBE, FeatureLZCNT, FeatureBMI,
311                       FeatureBMI2, FeatureFMA, FeatureRTM, FeatureHLE,
312                       FeatureSlowIncDec, FeatureSGX]>;
313
314 def : Proc<"k6",              [FeatureMMX]>;
315 def : Proc<"k6-2",            [Feature3DNow]>;
316 def : Proc<"k6-3",            [Feature3DNow]>;
317 def : Proc<"athlon",          [Feature3DNowA, FeatureSlowBTMem,
318                                FeatureSlowSHLD]>;
319 def : Proc<"athlon-tbird",    [Feature3DNowA, FeatureSlowBTMem,
320                                FeatureSlowSHLD]>;
321 def : Proc<"athlon-4",        [FeatureSSE1,   Feature3DNowA, FeatureSlowBTMem, 
322                                FeatureSlowSHLD]>;
323 def : Proc<"athlon-xp",       [FeatureSSE1,   Feature3DNowA, FeatureSlowBTMem,
324                                FeatureSlowSHLD]>;
325 def : Proc<"athlon-mp",       [FeatureSSE1,   Feature3DNowA, FeatureSlowBTMem,
326                                FeatureSlowSHLD]>;
327 def : Proc<"k8",              [FeatureSSE2,   Feature3DNowA, Feature64Bit,
328                                FeatureSlowBTMem, FeatureSlowSHLD]>;
329 def : Proc<"opteron",         [FeatureSSE2,   Feature3DNowA, Feature64Bit,
330                                FeatureSlowBTMem, FeatureSlowSHLD]>;
331 def : Proc<"athlon64",        [FeatureSSE2,   Feature3DNowA, Feature64Bit,
332                                FeatureSlowBTMem, FeatureSlowSHLD]>;
333 def : Proc<"athlon-fx",       [FeatureSSE2,   Feature3DNowA, Feature64Bit,
334                                FeatureSlowBTMem, FeatureSlowSHLD]>;
335 def : Proc<"k8-sse3",         [FeatureSSE3,   Feature3DNowA, FeatureCMPXCHG16B,
336                                FeatureSlowBTMem, FeatureSlowSHLD]>;
337 def : Proc<"opteron-sse3",    [FeatureSSE3,   Feature3DNowA, FeatureCMPXCHG16B,
338                                FeatureSlowBTMem, FeatureSlowSHLD]>;
339 def : Proc<"athlon64-sse3",   [FeatureSSE3,   Feature3DNowA, FeatureCMPXCHG16B,
340                                FeatureSlowBTMem, FeatureSlowSHLD]>;
341 def : Proc<"amdfam10",        [FeatureSSE4A,
342                                Feature3DNowA, FeatureCMPXCHG16B, FeatureLZCNT,
343                                FeaturePOPCNT, FeatureSlowBTMem,
344                                FeatureSlowSHLD]>;
345 // Bobcat
346 def : Proc<"btver1",          [FeatureSSSE3, FeatureSSE4A, FeatureCMPXCHG16B,
347                                FeaturePRFCHW, FeatureLZCNT, FeaturePOPCNT,
348                                FeatureSlowSHLD]>;
349
350 // Jaguar
351 def : ProcessorModel<"btver2", BtVer2Model,
352                      [FeatureAVX, FeatureSSE4A, FeatureCMPXCHG16B,
353                       FeaturePRFCHW, FeatureAES, FeaturePCLMUL,
354                       FeatureBMI, FeatureF16C, FeatureMOVBE,
355                       FeatureLZCNT, FeaturePOPCNT, FeatureSlowSHLD,
356                       FeatureUseSqrtEst, FeatureUseRecipEst]>;
357
358 // Bulldozer
359 def : Proc<"bdver1",          [FeatureXOP, FeatureFMA4, FeatureCMPXCHG16B,
360                                FeatureAES, FeaturePRFCHW, FeaturePCLMUL,
361                                FeatureAVX, FeatureSSE4A, FeatureLZCNT,
362                                FeaturePOPCNT, FeatureSlowSHLD]>;
363 // Piledriver
364 def : Proc<"bdver2",          [FeatureXOP, FeatureFMA4, FeatureCMPXCHG16B,
365                                FeatureAES, FeaturePRFCHW, FeaturePCLMUL,
366                                FeatureAVX, FeatureSSE4A, FeatureF16C,
367                                FeatureLZCNT, FeaturePOPCNT, FeatureBMI,
368                                FeatureTBM, FeatureFMA, FeatureSlowSHLD]>;
369
370 // Steamroller
371 def : Proc<"bdver3",          [FeatureXOP, FeatureFMA4, FeatureCMPXCHG16B,
372                                FeatureAES, FeaturePRFCHW, FeaturePCLMUL,
373                                FeatureAVX, FeatureSSE4A, FeatureF16C,
374                                FeatureLZCNT, FeaturePOPCNT, FeatureBMI,
375                                FeatureTBM, FeatureFMA, FeatureSlowSHLD,
376                                FeatureFSGSBase]>;
377
378 // Excavator
379 def : Proc<"bdver4",          [FeatureAVX2, FeatureXOP, FeatureFMA4,
380                                FeatureCMPXCHG16B, FeatureAES, FeaturePRFCHW,
381                                FeaturePCLMUL, FeatureF16C, FeatureLZCNT,
382                                FeaturePOPCNT, FeatureBMI, FeatureBMI2,
383                                FeatureTBM, FeatureFMA, FeatureSSE4A,
384                                FeatureFSGSBase]>;
385
386 def : Proc<"geode",           [Feature3DNowA]>;
387
388 def : Proc<"winchip-c6",      [FeatureMMX]>;
389 def : Proc<"winchip2",        [Feature3DNow]>;
390 def : Proc<"c3",              [Feature3DNow]>;
391 def : Proc<"c3-2",            [FeatureSSE1]>;
392
393 // We also provide a generic 64-bit specific x86 processor model which tries to
394 // be good for modern chips without enabling instruction set encodings past the
395 // basic SSE2 and 64-bit ones. It disables slow things from any mainstream and
396 // modern 64-bit x86 chip, and enables features that are generally beneficial.
397 // 
398 // We currently use the Sandy Bridge model as the default scheduling model as
399 // we use it across Nehalem, Westmere, Sandy Bridge, and Ivy Bridge which
400 // covers a huge swath of x86 processors. If there are specific scheduling
401 // knobs which need to be tuned differently for AMD chips, we might consider
402 // forming a common base for them.
403 def : ProcessorModel<"x86-64", SandyBridgeModel,
404                      [FeatureSSE2, Feature64Bit, FeatureSlowBTMem,
405                       FeatureFastUAMem]>;
406
407 //===----------------------------------------------------------------------===//
408 // Register File Description
409 //===----------------------------------------------------------------------===//
410
411 include "X86RegisterInfo.td"
412
413 //===----------------------------------------------------------------------===//
414 // Instruction Descriptions
415 //===----------------------------------------------------------------------===//
416
417 include "X86InstrInfo.td"
418
419 def X86InstrInfo : InstrInfo;
420
421 //===----------------------------------------------------------------------===//
422 // Calling Conventions
423 //===----------------------------------------------------------------------===//
424
425 include "X86CallingConv.td"
426
427
428 //===----------------------------------------------------------------------===//
429 // Assembly Parser
430 //===----------------------------------------------------------------------===//
431
432 def ATTAsmParser : AsmParser {
433   string AsmParserClassName = "AsmParser";
434 }
435
436 def ATTAsmParserVariant : AsmParserVariant {
437   int Variant = 0;
438
439   // Variant name.
440   string Name = "att";
441
442   // Discard comments in assembly strings.
443   string CommentDelimiter = "#";
444
445   // Recognize hard coded registers.
446   string RegisterPrefix = "%";
447 }
448
449 def IntelAsmParserVariant : AsmParserVariant {
450   int Variant = 1;
451
452   // Variant name.
453   string Name = "intel";
454
455   // Discard comments in assembly strings.
456   string CommentDelimiter = ";";
457
458   // Recognize hard coded registers.
459   string RegisterPrefix = "";
460 }
461
462 //===----------------------------------------------------------------------===//
463 // Assembly Printers
464 //===----------------------------------------------------------------------===//
465
466 // The X86 target supports two different syntaxes for emitting machine code.
467 // This is controlled by the -x86-asm-syntax={att|intel}
468 def ATTAsmWriter : AsmWriter {
469   string AsmWriterClassName  = "ATTInstPrinter";
470   int Variant = 0;
471 }
472 def IntelAsmWriter : AsmWriter {
473   string AsmWriterClassName  = "IntelInstPrinter";
474   int Variant = 1;
475 }
476
477 def X86 : Target {
478   // Information about the instructions...
479   let InstructionSet = X86InstrInfo;
480   let AssemblyParsers = [ATTAsmParser];
481   let AssemblyParserVariants = [ATTAsmParserVariant, IntelAsmParserVariant];
482   let AssemblyWriters = [ATTAsmWriter, IntelAsmWriter];
483 }