2012-02-18 13:03:15 +01:00
|
|
|
//===-- X86.td - Target definition file for the Intel X86 --*- tablegen -*-===//
|
2011-04-14 16:33:36 +02:00
|
|
|
//
|
2003-10-21 17:17:13 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2011-04-14 16:33:36 +02:00
|
|
|
//
|
2003-10-21 17:17:13 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2003-08-03 17:47:49 +02:00
|
|
|
//
|
2011-10-11 08:44:02 +02:00
|
|
|
// This is a target description file for the Intel i386 architecture, referred
|
|
|
|
// to here as the "X86" architecture.
|
2003-08-03 17:47:49 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2003-08-04 06:59:56 +02:00
|
|
|
// Get the target-independent interfaces which we are implementing...
|
2003-08-03 17:47:49 +02:00
|
|
|
//
|
2008-11-24 08:34:46 +01:00
|
|
|
include "llvm/Target/Target.td"
|
2003-08-03 17:47:49 +02:00
|
|
|
|
2011-07-07 23:06:52 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2012-08-16 05:50:04 +02:00
|
|
|
// X86 Subtarget state
|
2011-07-07 23:06:52 +02:00
|
|
|
//
|
|
|
|
|
|
|
|
def Mode64Bit : SubtargetFeature<"64bit-mode", "In64BitMode", "true",
|
|
|
|
"64-bit mode (x86_64)">;
|
|
|
|
|
2006-10-06 11:17:41 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2012-08-16 05:50:04 +02:00
|
|
|
// X86 Subtarget features
|
2007-05-04 22:38:40 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2009-09-02 07:53:04 +02:00
|
|
|
|
|
|
|
def FeatureCMOV : SubtargetFeature<"cmov","HasCMov", "true",
|
|
|
|
"Enable conditional move instructions">;
|
|
|
|
|
2010-12-04 21:32:23 +01:00
|
|
|
def FeaturePOPCNT : SubtargetFeature<"popcnt", "HasPOPCNT", "true",
|
|
|
|
"Support POPCNT instruction">;
|
|
|
|
|
2010-01-11 17:29:42 +01:00
|
|
|
|
2007-05-04 22:38:40 +02:00
|
|
|
def FeatureMMX : SubtargetFeature<"mmx","X86SSELevel", "MMX",
|
|
|
|
"Enable MMX instructions">;
|
|
|
|
def FeatureSSE1 : SubtargetFeature<"sse", "X86SSELevel", "SSE1",
|
|
|
|
"Enable SSE instructions",
|
2009-09-02 07:53:04 +02:00
|
|
|
// SSE codegen depends on cmovs, and all
|
2011-04-14 16:33:36 +02:00
|
|
|
// SSE1+ processors support them.
|
2009-09-02 07:53:04 +02:00
|
|
|
[FeatureMMX, FeatureCMOV]>;
|
2007-05-04 22:38:40 +02:00
|
|
|
def FeatureSSE2 : SubtargetFeature<"sse2", "X86SSELevel", "SSE2",
|
|
|
|
"Enable SSE2 instructions",
|
|
|
|
[FeatureSSE1]>;
|
|
|
|
def FeatureSSE3 : SubtargetFeature<"sse3", "X86SSELevel", "SSE3",
|
|
|
|
"Enable SSE3 instructions",
|
|
|
|
[FeatureSSE2]>;
|
|
|
|
def FeatureSSSE3 : SubtargetFeature<"ssse3", "X86SSELevel", "SSSE3",
|
|
|
|
"Enable SSSE3 instructions",
|
|
|
|
[FeatureSSE3]>;
|
2008-02-03 08:18:54 +01:00
|
|
|
def FeatureSSE41 : SubtargetFeature<"sse41", "X86SSELevel", "SSE41",
|
|
|
|
"Enable SSE 4.1 instructions",
|
|
|
|
[FeatureSSSE3]>;
|
|
|
|
def FeatureSSE42 : SubtargetFeature<"sse42", "X86SSELevel", "SSE42",
|
|
|
|
"Enable SSE 4.2 instructions",
|
2011-12-29 16:51:45 +01:00
|
|
|
[FeatureSSE41]>;
|
2007-05-04 22:38:40 +02:00
|
|
|
def Feature3DNow : SubtargetFeature<"3dnow", "X863DNowLevel", "ThreeDNow",
|
2011-04-15 02:32:41 +02:00
|
|
|
"Enable 3DNow! instructions",
|
|
|
|
[FeatureMMX]>;
|
2007-05-04 22:38:40 +02:00
|
|
|
def Feature3DNowA : SubtargetFeature<"3dnowa", "X863DNowLevel", "ThreeDNowA",
|
2007-05-06 09:56:19 +02:00
|
|
|
"Enable 3DNow! Athlon instructions",
|
|
|
|
[Feature3DNow]>;
|
2009-02-03 01:04:43 +01:00
|
|
|
// All x86-64 hardware has SSE2, but we don't mark SSE2 as an implied
|
|
|
|
// feature, because SSE2 can be disabled (e.g. for compiling OS kernels)
|
|
|
|
// without disabling 64-bit mode.
|
2007-05-06 09:56:19 +02:00
|
|
|
def Feature64Bit : SubtargetFeature<"64bit", "HasX86_64", "true",
|
2010-03-14 23:24:34 +01:00
|
|
|
"Support 64-bit instructions",
|
|
|
|
[FeatureCMOV]>;
|
2011-08-26 23:21:21 +02:00
|
|
|
def FeatureCMPXCHG16B : SubtargetFeature<"cmpxchg16b", "HasCmpxchg16b", "true",
|
|
|
|
"64-bit with cmpxchg16b",
|
|
|
|
[Feature64Bit]>;
|
2009-01-02 06:35:45 +01:00
|
|
|
def FeatureSlowBTMem : SubtargetFeature<"slow-bt-mem", "IsBTMemSlow", "true",
|
|
|
|
"Bit testing of memory is slow">;
|
2010-04-01 07:58:17 +02:00
|
|
|
def FeatureFastUAMem : SubtargetFeature<"fast-unaligned-mem",
|
|
|
|
"IsUAMemFast", "true",
|
|
|
|
"Fast unaligned memory access">;
|
2009-05-26 23:04:35 +02:00
|
|
|
def FeatureSSE4A : SubtargetFeature<"sse4a", "HasSSE4A", "true",
|
2011-12-30 08:16:00 +01:00
|
|
|
"Support SSE 4a instructions",
|
|
|
|
[FeatureSSE3]>;
|
2006-10-06 11:17:41 +02:00
|
|
|
|
2012-01-09 10:02:13 +01:00
|
|
|
def FeatureAVX : SubtargetFeature<"avx", "X86SSELevel", "AVX",
|
|
|
|
"Enable AVX instructions",
|
|
|
|
[FeatureSSE42]>;
|
|
|
|
def FeatureAVX2 : SubtargetFeature<"avx2", "X86SSELevel", "AVX2",
|
2011-10-30 20:57:21 +01:00
|
|
|
"Enable AVX2 instructions",
|
|
|
|
[FeatureAVX]>;
|
2013-08-21 05:57:57 +02:00
|
|
|
def FeatureAVX512 : SubtargetFeature<"avx512f", "X86SSELevel", "AVX512F",
|
2013-07-24 13:02:47 +02:00
|
|
|
"Enable AVX-512 instructions",
|
|
|
|
[FeatureAVX2]>;
|
2013-08-21 05:57:57 +02:00
|
|
|
def FeatureERI : SubtargetFeature<"avx512er", "HasERI", "true",
|
2013-07-28 10:28:38 +02:00
|
|
|
"Enable AVX-512 Exponential and Reciprocal Instructions",
|
|
|
|
[FeatureAVX512]>;
|
2013-08-21 05:57:57 +02:00
|
|
|
def FeatureCDI : SubtargetFeature<"avx512cd", "HasCDI", "true",
|
2013-07-28 10:28:38 +02:00
|
|
|
"Enable AVX-512 Conflict Detection Instructions",
|
|
|
|
[FeatureAVX512]>;
|
2013-08-21 05:57:57 +02:00
|
|
|
def FeaturePFI : SubtargetFeature<"avx512pf", "HasPFI", "true",
|
2013-07-28 10:28:38 +02:00
|
|
|
"Enable AVX-512 PreFetch Instructions",
|
|
|
|
[FeatureAVX512]>;
|
2013-07-24 13:02:47 +02:00
|
|
|
|
2012-05-31 16:34:17 +02:00
|
|
|
def FeaturePCLMUL : SubtargetFeature<"pclmul", "HasPCLMUL", "true",
|
|
|
|
"Enable packed carry-less multiplication instructions",
|
2012-05-01 07:28:32 +02:00
|
|
|
[FeatureSSE2]>;
|
2012-06-03 20:58:46 +02:00
|
|
|
def FeatureFMA : SubtargetFeature<"fma", "HasFMA", "true",
|
2011-12-29 20:46:19 +01:00
|
|
|
"Enable three-operand fused multiple-add",
|
|
|
|
[FeatureAVX]>;
|
2009-06-27 00:46:54 +02:00
|
|
|
def FeatureFMA4 : SubtargetFeature<"fma4", "HasFMA4", "true",
|
2011-12-30 08:16:00 +01:00
|
|
|
"Enable four-operand fused multiple-add",
|
2012-05-01 08:54:48 +02:00
|
|
|
[FeatureAVX, FeatureSSE4A]>;
|
2011-12-30 08:16:00 +01:00
|
|
|
def FeatureXOP : SubtargetFeature<"xop", "HasXOP", "true",
|
2012-05-01 07:41:41 +02:00
|
|
|
"Enable XOP instructions",
|
2012-08-16 06:04:02 +02:00
|
|
|
[FeatureFMA4]>;
|
2010-01-11 17:29:42 +01:00
|
|
|
def FeatureVectorUAMem : SubtargetFeature<"vector-unaligned-mem",
|
|
|
|
"HasVectorUAMem", "true",
|
|
|
|
"Allow unaligned memory operands on vector/SIMD instructions">;
|
2010-04-02 23:54:27 +02:00
|
|
|
def FeatureAES : SubtargetFeature<"aes", "HasAES", "true",
|
2012-05-01 07:28:32 +02:00
|
|
|
"Enable AES instructions",
|
|
|
|
[FeatureSSE2]>;
|
2011-10-03 19:28:23 +02:00
|
|
|
def FeatureMOVBE : SubtargetFeature<"movbe", "HasMOVBE", "true",
|
|
|
|
"Support MOVBE instruction">;
|
|
|
|
def FeatureRDRAND : SubtargetFeature<"rdrand", "HasRDRAND", "true",
|
|
|
|
"Support RDRAND instruction">;
|
2011-10-09 09:31:39 +02:00
|
|
|
def FeatureF16C : SubtargetFeature<"f16c", "HasF16C", "true",
|
|
|
|
"Support 16-bit floating point conversion instructions">;
|
2011-10-30 20:57:21 +01:00
|
|
|
def FeatureFSGSBase : SubtargetFeature<"fsgsbase", "HasFSGSBase", "true",
|
|
|
|
"Support FS/GS Base instructions">;
|
2011-10-11 08:44:02 +02:00
|
|
|
def FeatureLZCNT : SubtargetFeature<"lzcnt", "HasLZCNT", "true",
|
|
|
|
"Support LZCNT instruction">;
|
2011-10-14 05:21:46 +02:00
|
|
|
def FeatureBMI : SubtargetFeature<"bmi", "HasBMI", "true",
|
|
|
|
"Support BMI instructions">;
|
2011-10-16 09:55:05 +02:00
|
|
|
def FeatureBMI2 : SubtargetFeature<"bmi2", "HasBMI2", "true",
|
|
|
|
"Support BMI2 instructions">;
|
2012-11-08 08:28:54 +01:00
|
|
|
def FeatureRTM : SubtargetFeature<"rtm", "HasRTM", "true",
|
|
|
|
"Support RTM instructions">;
|
2013-03-26 23:46:02 +01:00
|
|
|
def FeatureHLE : SubtargetFeature<"hle", "HasHLE", "true",
|
|
|
|
"Support HLE">;
|
2013-02-14 20:08:21 +01:00
|
|
|
def FeatureADX : SubtargetFeature<"adx", "HasADX", "true",
|
|
|
|
"Support ADX instructions">;
|
2013-03-26 18:47:11 +01:00
|
|
|
def FeaturePRFCHW : SubtargetFeature<"prfchw", "HasPRFCHW", "true",
|
|
|
|
"Support PRFCHW instructions">;
|
2013-03-29 00:41:26 +01:00
|
|
|
def FeatureRDSEED : SubtargetFeature<"rdseed", "HasRDSEED", "true",
|
|
|
|
"Support RDSEED instruction">;
|
2012-02-07 23:50:41 +01:00
|
|
|
def FeatureLeaForSP : SubtargetFeature<"lea-sp", "UseLeaForSP", "true",
|
|
|
|
"Use LEA for adjusting the stack pointer">;
|
2012-09-04 20:22:17 +02:00
|
|
|
def FeatureSlowDivide : SubtargetFeature<"idiv-to-divb",
|
2013-01-08 19:27:24 +01:00
|
|
|
"HasSlowDivide", "true",
|
|
|
|
"Use small divide for positive values less than 256">;
|
|
|
|
def FeaturePadShortFunctions : SubtargetFeature<"pad-short-functions",
|
|
|
|
"PadShortFunctions", "true",
|
|
|
|
"Pad short functions">;
|
2013-03-27 20:14:02 +01:00
|
|
|
def FeatureCallRegIndirect : SubtargetFeature<"call-reg-indirect",
|
|
|
|
"CallRegIndirect", "true",
|
|
|
|
"Call register indirect">;
|
2013-04-25 22:29:37 +02:00
|
|
|
def FeatureLEAUsesAG : SubtargetFeature<"lea-uses-ag", "LEAUsesAG", "true",
|
|
|
|
"LEA instruction needs inputs at AG stage">;
|
2009-06-27 00:46:54 +02:00
|
|
|
|
2006-10-06 11:17:41 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// X86 processors supported.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-02-02 00:20:51 +01:00
|
|
|
include "X86Schedule.td"
|
|
|
|
|
|
|
|
def ProcIntelAtom : SubtargetFeature<"atom", "X86ProcFamily", "IntelAtom",
|
|
|
|
"Intel Atom processors">;
|
|
|
|
|
2006-10-06 11:17:41 +02:00
|
|
|
class Proc<string Name, list<SubtargetFeature> Features>
|
2012-07-07 06:00:00 +02:00
|
|
|
: ProcessorModel<Name, GenericModel, Features>;
|
2012-02-02 00:20:51 +01:00
|
|
|
|
2006-10-06 11:17:41 +02:00
|
|
|
def : Proc<"generic", []>;
|
|
|
|
def : Proc<"i386", []>;
|
|
|
|
def : Proc<"i486", []>;
|
2008-10-15 00:06:33 +02:00
|
|
|
def : Proc<"i586", []>;
|
2006-10-06 11:17:41 +02:00
|
|
|
def : Proc<"pentium", []>;
|
|
|
|
def : Proc<"pentium-mmx", [FeatureMMX]>;
|
|
|
|
def : Proc<"i686", []>;
|
2009-09-02 07:53:04 +02:00
|
|
|
def : Proc<"pentiumpro", [FeatureCMOV]>;
|
|
|
|
def : Proc<"pentium2", [FeatureMMX, FeatureCMOV]>;
|
2007-05-22 07:15:37 +02:00
|
|
|
def : Proc<"pentium3", [FeatureSSE1]>;
|
2011-05-03 05:42:50 +02:00
|
|
|
def : Proc<"pentium3m", [FeatureSSE1, FeatureSlowBTMem]>;
|
2009-01-02 06:35:45 +01:00
|
|
|
def : Proc<"pentium-m", [FeatureSSE2, FeatureSlowBTMem]>;
|
2007-05-22 07:15:37 +02:00
|
|
|
def : Proc<"pentium4", [FeatureSSE2]>;
|
2011-05-03 05:42:50 +02:00
|
|
|
def : Proc<"pentium4m", [FeatureSSE2, FeatureSlowBTMem]>;
|
2012-12-15 10:01:13 +01:00
|
|
|
def : Proc<"x86-64", [FeatureSSE2, Feature64Bit, FeatureSlowBTMem,
|
|
|
|
FeatureFastUAMem]>;
|
2013-03-26 23:19:12 +01:00
|
|
|
// Intel Core Duo.
|
|
|
|
def : ProcessorModel<"yonah", SandyBridgeModel,
|
|
|
|
[FeatureSSE3, FeatureSlowBTMem]>;
|
|
|
|
|
|
|
|
// NetBurst.
|
|
|
|
def : Proc<"prescott", [FeatureSSE3, FeatureSlowBTMem]>;
|
|
|
|
def : Proc<"nocona", [FeatureSSE3, FeatureCMPXCHG16B, FeatureSlowBTMem]>;
|
|
|
|
|
|
|
|
// Intel Core 2 Solo/Duo.
|
|
|
|
def : ProcessorModel<"core2", SandyBridgeModel,
|
|
|
|
[FeatureSSSE3, FeatureCMPXCHG16B, FeatureSlowBTMem]>;
|
|
|
|
def : ProcessorModel<"penryn", SandyBridgeModel,
|
|
|
|
[FeatureSSE41, FeatureCMPXCHG16B, FeatureSlowBTMem]>;
|
|
|
|
|
|
|
|
// Atom.
|
|
|
|
def : ProcessorModel<"atom", AtomModel,
|
|
|
|
[ProcIntelAtom, FeatureSSSE3, FeatureCMPXCHG16B,
|
|
|
|
FeatureMOVBE, FeatureSlowBTMem, FeatureLeaForSP,
|
2013-03-27 20:14:02 +01:00
|
|
|
FeatureSlowDivide,
|
|
|
|
FeatureCallRegIndirect,
|
2013-04-25 22:29:37 +02:00
|
|
|
FeatureLEAUsesAG,
|
2013-03-27 20:14:02 +01:00
|
|
|
FeaturePadShortFunctions]>;
|
2013-03-26 23:19:12 +01:00
|
|
|
|
2010-04-02 23:54:27 +02:00
|
|
|
// "Arrandale" along with corei3 and corei5
|
2013-03-26 23:19:12 +01:00
|
|
|
def : ProcessorModel<"corei7", SandyBridgeModel,
|
|
|
|
[FeatureSSE42, FeatureCMPXCHG16B, FeatureSlowBTMem,
|
|
|
|
FeatureFastUAMem, FeaturePOPCNT, FeatureAES]>;
|
|
|
|
|
|
|
|
def : ProcessorModel<"nehalem", SandyBridgeModel,
|
|
|
|
[FeatureSSE42, FeatureCMPXCHG16B, FeatureSlowBTMem,
|
|
|
|
FeatureFastUAMem, FeaturePOPCNT]>;
|
2010-04-02 23:54:27 +02:00
|
|
|
// Westmere is a similar machine to nehalem with some additional features.
|
|
|
|
// Westmere is the corei3/i5/i7 path from nehalem to sandybridge
|
2013-03-26 23:19:12 +01:00
|
|
|
def : ProcessorModel<"westmere", SandyBridgeModel,
|
|
|
|
[FeatureSSE42, FeatureCMPXCHG16B, FeatureSlowBTMem,
|
|
|
|
FeatureFastUAMem, FeaturePOPCNT, FeatureAES,
|
|
|
|
FeaturePCLMUL]>;
|
2011-10-10 21:35:07 +02:00
|
|
|
// Sandy Bridge
|
2010-12-10 01:26:57 +01:00
|
|
|
// SSE is not listed here since llvm treats AVX as a reimplementation of SSE,
|
|
|
|
// rather than a superset.
|
2013-03-26 23:19:12 +01:00
|
|
|
def : ProcessorModel<"corei7-avx", SandyBridgeModel,
|
|
|
|
[FeatureAVX, FeatureCMPXCHG16B, FeatureFastUAMem,
|
|
|
|
FeaturePOPCNT, FeatureAES, FeaturePCLMUL]>;
|
2011-10-10 21:35:07 +02:00
|
|
|
// Ivy Bridge
|
2013-03-26 23:19:12 +01:00
|
|
|
def : ProcessorModel<"core-avx-i", SandyBridgeModel,
|
|
|
|
[FeatureAVX, FeatureCMPXCHG16B, FeatureFastUAMem,
|
|
|
|
FeaturePOPCNT, FeatureAES, FeaturePCLMUL, FeatureRDRAND,
|
|
|
|
FeatureF16C, FeatureFSGSBase]>;
|
2006-10-06 11:17:41 +02:00
|
|
|
|
2011-10-14 05:21:46 +02:00
|
|
|
// Haswell
|
2013-03-28 23:34:46 +01:00
|
|
|
def : ProcessorModel<"core-avx2", HaswellModel,
|
2013-03-26 23:19:12 +01:00
|
|
|
[FeatureAVX2, FeatureCMPXCHG16B, FeatureFastUAMem,
|
|
|
|
FeaturePOPCNT, FeatureAES, FeaturePCLMUL, FeatureRDRAND,
|
|
|
|
FeatureF16C, FeatureFSGSBase, FeatureMOVBE, FeatureLZCNT,
|
2013-03-26 23:46:02 +01:00
|
|
|
FeatureBMI, FeatureBMI2, FeatureFMA, FeatureRTM,
|
|
|
|
FeatureHLE]>;
|
2011-10-14 05:21:46 +02:00
|
|
|
|
2013-07-24 13:02:47 +02:00
|
|
|
// KNL
|
|
|
|
// FIXME: define KNL model
|
|
|
|
def : ProcessorModel<"knl", HaswellModel,
|
|
|
|
[FeatureAVX512, FeatureERI, FeatureCDI, FeaturePFI,
|
|
|
|
FeatureCMPXCHG16B, FeatureFastUAMem, FeaturePOPCNT,
|
|
|
|
FeatureAES, FeaturePCLMUL, FeatureRDRAND, FeatureF16C,
|
|
|
|
FeatureFSGSBase, FeatureMOVBE, FeatureLZCNT, FeatureBMI,
|
|
|
|
FeatureBMI2, FeatureFMA, FeatureRTM, FeatureHLE]>;
|
|
|
|
|
2006-10-06 11:17:41 +02:00
|
|
|
def : Proc<"k6", [FeatureMMX]>;
|
2011-04-15 02:32:41 +02:00
|
|
|
def : Proc<"k6-2", [Feature3DNow]>;
|
|
|
|
def : Proc<"k6-3", [Feature3DNow]>;
|
|
|
|
def : Proc<"athlon", [Feature3DNowA, FeatureSlowBTMem]>;
|
|
|
|
def : Proc<"athlon-tbird", [Feature3DNowA, FeatureSlowBTMem]>;
|
2009-01-02 06:35:45 +01:00
|
|
|
def : Proc<"athlon-4", [FeatureSSE1, Feature3DNowA, FeatureSlowBTMem]>;
|
|
|
|
def : Proc<"athlon-xp", [FeatureSSE1, Feature3DNowA, FeatureSlowBTMem]>;
|
|
|
|
def : Proc<"athlon-mp", [FeatureSSE1, Feature3DNowA, FeatureSlowBTMem]>;
|
2009-02-03 01:04:43 +01:00
|
|
|
def : Proc<"k8", [FeatureSSE2, Feature3DNowA, Feature64Bit,
|
|
|
|
FeatureSlowBTMem]>;
|
|
|
|
def : Proc<"opteron", [FeatureSSE2, Feature3DNowA, Feature64Bit,
|
|
|
|
FeatureSlowBTMem]>;
|
|
|
|
def : Proc<"athlon64", [FeatureSSE2, Feature3DNowA, Feature64Bit,
|
|
|
|
FeatureSlowBTMem]>;
|
|
|
|
def : Proc<"athlon-fx", [FeatureSSE2, Feature3DNowA, Feature64Bit,
|
|
|
|
FeatureSlowBTMem]>;
|
2011-08-26 23:21:21 +02:00
|
|
|
def : Proc<"k8-sse3", [FeatureSSE3, Feature3DNowA, FeatureCMPXCHG16B,
|
2009-05-26 23:04:35 +02:00
|
|
|
FeatureSlowBTMem]>;
|
2011-08-26 23:21:21 +02:00
|
|
|
def : Proc<"opteron-sse3", [FeatureSSE3, Feature3DNowA, FeatureCMPXCHG16B,
|
2009-05-26 23:04:35 +02:00
|
|
|
FeatureSlowBTMem]>;
|
2011-08-26 23:21:21 +02:00
|
|
|
def : Proc<"athlon64-sse3", [FeatureSSE3, Feature3DNowA, FeatureCMPXCHG16B,
|
2009-05-26 23:04:35 +02:00
|
|
|
FeatureSlowBTMem]>;
|
2012-05-01 08:54:48 +02:00
|
|
|
def : Proc<"amdfam10", [FeatureSSE4A,
|
2011-11-30 16:48:16 +01:00
|
|
|
Feature3DNowA, FeatureCMPXCHG16B, FeatureLZCNT,
|
2011-12-29 19:47:31 +01:00
|
|
|
FeaturePOPCNT, FeatureSlowBTMem]>;
|
2012-01-10 12:50:02 +01:00
|
|
|
// Bobcat
|
|
|
|
def : Proc<"btver1", [FeatureSSSE3, FeatureSSE4A, FeatureCMPXCHG16B,
|
|
|
|
FeatureLZCNT, FeaturePOPCNT]>;
|
2013-05-03 12:20:08 +02:00
|
|
|
// Jaguar
|
|
|
|
def : Proc<"btver2", [FeatureAVX, FeatureSSE4A, FeatureCMPXCHG16B,
|
|
|
|
FeatureAES, FeaturePCLMUL, FeatureBMI,
|
|
|
|
FeatureF16C, FeatureMOVBE, FeatureLZCNT,
|
|
|
|
FeaturePOPCNT]>;
|
2012-01-10 12:50:02 +01:00
|
|
|
// Bulldozer
|
2012-05-01 08:54:48 +02:00
|
|
|
def : Proc<"bdver1", [FeatureXOP, FeatureFMA4, FeatureCMPXCHG16B,
|
2012-05-31 16:34:17 +02:00
|
|
|
FeatureAES, FeaturePCLMUL,
|
2012-05-01 08:54:48 +02:00
|
|
|
FeatureLZCNT, FeaturePOPCNT]>;
|
2013-05-03 12:20:08 +02:00
|
|
|
// Piledriver
|
2012-05-01 08:54:48 +02:00
|
|
|
def : Proc<"bdver2", [FeatureXOP, FeatureFMA4, FeatureCMPXCHG16B,
|
2012-05-31 16:34:17 +02:00
|
|
|
FeatureAES, FeaturePCLMUL,
|
2012-05-01 08:54:48 +02:00
|
|
|
FeatureF16C, FeatureLZCNT,
|
2012-08-16 06:04:02 +02:00
|
|
|
FeaturePOPCNT, FeatureBMI, FeatureFMA]>;
|
2012-09-12 16:36:02 +02:00
|
|
|
def : Proc<"geode", [Feature3DNowA]>;
|
2006-10-06 11:17:41 +02:00
|
|
|
|
|
|
|
def : Proc<"winchip-c6", [FeatureMMX]>;
|
2011-04-15 02:32:41 +02:00
|
|
|
def : Proc<"winchip2", [Feature3DNow]>;
|
|
|
|
def : Proc<"c3", [Feature3DNow]>;
|
2007-05-22 07:15:37 +02:00
|
|
|
def : Proc<"c3-2", [FeatureSSE1]>;
|
2006-10-06 11:17:41 +02:00
|
|
|
|
2003-08-03 17:47:49 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Register File Description
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "X86RegisterInfo.td"
|
|
|
|
|
2003-08-03 20:19:37 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Instruction Descriptions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2003-08-03 23:54:21 +02:00
|
|
|
include "X86InstrInfo.td"
|
|
|
|
|
2010-04-05 05:10:20 +02:00
|
|
|
def X86InstrInfo : InstrInfo;
|
2003-08-03 20:19:37 +02:00
|
|
|
|
2007-02-26 19:17:14 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Calling Conventions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "X86CallingConv.td"
|
|
|
|
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2010-10-30 15:48:28 +02:00
|
|
|
// Assembly Parser
|
2007-02-26 19:17:14 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-07-29 02:02:19 +02:00
|
|
|
def ATTAsmParser : AsmParser {
|
2012-01-12 19:03:40 +01:00
|
|
|
string AsmParserClassName = "AsmParser";
|
2012-01-09 20:13:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
def ATTAsmParserVariant : AsmParserVariant {
|
2009-07-29 02:02:19 +02:00
|
|
|
int Variant = 0;
|
2009-08-11 22:59:47 +02:00
|
|
|
|
2013-04-19 00:35:36 +02:00
|
|
|
// Variant name.
|
|
|
|
string Name = "att";
|
|
|
|
|
2009-08-11 22:59:47 +02:00
|
|
|
// Discard comments in assembly strings.
|
|
|
|
string CommentDelimiter = "#";
|
|
|
|
|
|
|
|
// Recognize hard coded registers.
|
|
|
|
string RegisterPrefix = "%";
|
2009-07-29 02:02:19 +02:00
|
|
|
}
|
|
|
|
|
2012-01-10 18:51:54 +01:00
|
|
|
def IntelAsmParserVariant : AsmParserVariant {
|
|
|
|
int Variant = 1;
|
|
|
|
|
2013-04-19 00:35:36 +02:00
|
|
|
// Variant name.
|
|
|
|
string Name = "intel";
|
|
|
|
|
2012-01-10 18:51:54 +01:00
|
|
|
// Discard comments in assembly strings.
|
|
|
|
string CommentDelimiter = ";";
|
|
|
|
|
|
|
|
// Recognize hard coded registers.
|
|
|
|
string RegisterPrefix = "";
|
|
|
|
}
|
|
|
|
|
2010-10-30 15:48:28 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Assembly Printers
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-10-03 22:36:57 +02:00
|
|
|
// The X86 target supports two different syntaxes for emitting machine code.
|
|
|
|
// This is controlled by the -x86-asm-syntax={att|intel}
|
|
|
|
def ATTAsmWriter : AsmWriter {
|
2009-09-13 21:30:11 +02:00
|
|
|
string AsmWriterClassName = "ATTInstPrinter";
|
2004-10-03 22:36:57 +02:00
|
|
|
int Variant = 0;
|
2010-10-01 01:40:25 +02:00
|
|
|
bit isMCAsmWriter = 1;
|
2004-10-03 22:36:57 +02:00
|
|
|
}
|
|
|
|
def IntelAsmWriter : AsmWriter {
|
2009-09-20 09:47:59 +02:00
|
|
|
string AsmWriterClassName = "IntelInstPrinter";
|
2004-10-03 22:36:57 +02:00
|
|
|
int Variant = 1;
|
2010-10-01 01:40:25 +02:00
|
|
|
bit isMCAsmWriter = 1;
|
2004-10-03 22:36:57 +02:00
|
|
|
}
|
|
|
|
|
2003-08-03 20:19:37 +02:00
|
|
|
def X86 : Target {
|
|
|
|
// Information about the instructions...
|
2003-08-04 06:59:56 +02:00
|
|
|
let InstructionSet = X86InstrInfo;
|
2009-07-29 02:02:19 +02:00
|
|
|
let AssemblyParsers = [ATTAsmParser];
|
2012-01-10 18:51:54 +01:00
|
|
|
let AssemblyParserVariants = [ATTAsmParserVariant, IntelAsmParserVariant];
|
2004-10-03 22:36:57 +02:00
|
|
|
let AssemblyWriters = [ATTAsmWriter, IntelAsmWriter];
|
2003-08-03 20:19:37 +02:00
|
|
|
}
|