2012-02-18 12:03:15 +00:00
|
|
|
//===-- X86.td - Target definition file for the Intel X86 --*- tablegen -*-===//
|
2011-04-14 14:33:36 +00:00
|
|
|
//
|
2003-10-21 15:17:13 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2011-04-14 14:33:36 +00:00
|
|
|
//
|
2003-10-21 15:17:13 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2003-08-03 15:47:49 +00:00
|
|
|
//
|
2011-10-11 06:44:02 +00:00
|
|
|
// This is a target description file for the Intel i386 architecture, referred
|
|
|
|
// to here as the "X86" architecture.
|
2003-08-03 15:47:49 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2003-08-04 04:59:56 +00:00
|
|
|
// Get the target-independent interfaces which we are implementing...
|
2003-08-03 15:47:49 +00:00
|
|
|
//
|
2008-11-24 07:34:46 +00:00
|
|
|
include "llvm/Target/Target.td"
|
2003-08-03 15:47:49 +00:00
|
|
|
|
2011-07-07 21:06:52 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2012-08-16 03:50:04 +00:00
|
|
|
// X86 Subtarget state
|
2011-07-07 21:06:52 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
def Mode64Bit : SubtargetFeature<"64bit-mode", "In64BitMode", "true",
|
|
|
|
"64-bit mode (x86_64)">;
|
|
|
|
|
2006-10-06 09:17:41 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2012-08-16 03:50:04 +00:00
|
|
|
// X86 Subtarget features
|
2007-05-04 20:38:40 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2009-09-02 05:53:04 +00:00
|
|
|
|
|
|
|
def FeatureCMOV : SubtargetFeature<"cmov","HasCMov", "true",
|
|
|
|
"Enable conditional move instructions">;
|
|
|
|
|
2010-12-04 20:32:23 +00:00
|
|
|
def FeaturePOPCNT : SubtargetFeature<"popcnt", "HasPOPCNT", "true",
|
|
|
|
"Support POPCNT instruction">;
|
|
|
|
|
2010-01-11 16:29:42 +00:00
|
|
|
|
2007-05-04 20:38:40 +00:00
|
|
|
def FeatureMMX : SubtargetFeature<"mmx","X86SSELevel", "MMX",
|
|
|
|
"Enable MMX instructions">;
|
|
|
|
def FeatureSSE1 : SubtargetFeature<"sse", "X86SSELevel", "SSE1",
|
|
|
|
"Enable SSE instructions",
|
2009-09-02 05:53:04 +00:00
|
|
|
// SSE codegen depends on cmovs, and all
|
2011-04-14 14:33:36 +00:00
|
|
|
// SSE1+ processors support them.
|
2009-09-02 05:53:04 +00:00
|
|
|
[FeatureMMX, FeatureCMOV]>;
|
2007-05-04 20:38:40 +00: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 07:18:54 +00: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 15:51:45 +00:00
|
|
|
[FeatureSSE41]>;
|
2007-05-04 20:38:40 +00:00
|
|
|
def Feature3DNow : SubtargetFeature<"3dnow", "X863DNowLevel", "ThreeDNow",
|
2011-04-15 00:32:41 +00:00
|
|
|
"Enable 3DNow! instructions",
|
|
|
|
[FeatureMMX]>;
|
2007-05-04 20:38:40 +00:00
|
|
|
def Feature3DNowA : SubtargetFeature<"3dnowa", "X863DNowLevel", "ThreeDNowA",
|
2007-05-06 07:56:19 +00:00
|
|
|
"Enable 3DNow! Athlon instructions",
|
|
|
|
[Feature3DNow]>;
|
2009-02-03 00:04:43 +00: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 07:56:19 +00:00
|
|
|
def Feature64Bit : SubtargetFeature<"64bit", "HasX86_64", "true",
|
2010-03-14 22:24:34 +00:00
|
|
|
"Support 64-bit instructions",
|
|
|
|
[FeatureCMOV]>;
|
2011-08-26 21:21:21 +00:00
|
|
|
def FeatureCMPXCHG16B : SubtargetFeature<"cmpxchg16b", "HasCmpxchg16b", "true",
|
|
|
|
"64-bit with cmpxchg16b",
|
|
|
|
[Feature64Bit]>;
|
2009-01-02 05:35:45 +00:00
|
|
|
def FeatureSlowBTMem : SubtargetFeature<"slow-bt-mem", "IsBTMemSlow", "true",
|
|
|
|
"Bit testing of memory is slow">;
|
2010-04-01 05:58:17 +00:00
|
|
|
def FeatureFastUAMem : SubtargetFeature<"fast-unaligned-mem",
|
|
|
|
"IsUAMemFast", "true",
|
|
|
|
"Fast unaligned memory access">;
|
2009-05-26 21:04:35 +00:00
|
|
|
def FeatureSSE4A : SubtargetFeature<"sse4a", "HasSSE4A", "true",
|
2011-12-30 07:16:00 +00:00
|
|
|
"Support SSE 4a instructions",
|
|
|
|
[FeatureSSE3]>;
|
2006-10-06 09:17:41 +00:00
|
|
|
|
2012-01-09 09:02:13 +00:00
|
|
|
def FeatureAVX : SubtargetFeature<"avx", "X86SSELevel", "AVX",
|
|
|
|
"Enable AVX instructions",
|
|
|
|
[FeatureSSE42]>;
|
|
|
|
def FeatureAVX2 : SubtargetFeature<"avx2", "X86SSELevel", "AVX2",
|
2011-10-30 19:57:21 +00:00
|
|
|
"Enable AVX2 instructions",
|
|
|
|
[FeatureAVX]>;
|
2012-05-31 14:34:17 +00:00
|
|
|
def FeaturePCLMUL : SubtargetFeature<"pclmul", "HasPCLMUL", "true",
|
|
|
|
"Enable packed carry-less multiplication instructions",
|
2012-05-01 05:28:32 +00:00
|
|
|
[FeatureSSE2]>;
|
2012-06-03 18:58:46 +00:00
|
|
|
def FeatureFMA : SubtargetFeature<"fma", "HasFMA", "true",
|
2011-12-29 19:46:19 +00:00
|
|
|
"Enable three-operand fused multiple-add",
|
|
|
|
[FeatureAVX]>;
|
2009-06-26 22:46:54 +00:00
|
|
|
def FeatureFMA4 : SubtargetFeature<"fma4", "HasFMA4", "true",
|
2011-12-30 07:16:00 +00:00
|
|
|
"Enable four-operand fused multiple-add",
|
2012-05-01 06:54:48 +00:00
|
|
|
[FeatureAVX, FeatureSSE4A]>;
|
2011-12-30 07:16:00 +00:00
|
|
|
def FeatureXOP : SubtargetFeature<"xop", "HasXOP", "true",
|
2012-05-01 05:41:41 +00:00
|
|
|
"Enable XOP instructions",
|
2012-08-16 04:04:02 +00:00
|
|
|
[FeatureFMA4]>;
|
2010-01-11 16:29:42 +00:00
|
|
|
def FeatureVectorUAMem : SubtargetFeature<"vector-unaligned-mem",
|
|
|
|
"HasVectorUAMem", "true",
|
|
|
|
"Allow unaligned memory operands on vector/SIMD instructions">;
|
2010-04-02 21:54:27 +00:00
|
|
|
def FeatureAES : SubtargetFeature<"aes", "HasAES", "true",
|
2012-05-01 05:28:32 +00:00
|
|
|
"Enable AES instructions",
|
|
|
|
[FeatureSSE2]>;
|
2011-10-03 17:28:23 +00:00
|
|
|
def FeatureMOVBE : SubtargetFeature<"movbe", "HasMOVBE", "true",
|
|
|
|
"Support MOVBE instruction">;
|
|
|
|
def FeatureRDRAND : SubtargetFeature<"rdrand", "HasRDRAND", "true",
|
|
|
|
"Support RDRAND instruction">;
|
2011-10-09 07:31:39 +00:00
|
|
|
def FeatureF16C : SubtargetFeature<"f16c", "HasF16C", "true",
|
|
|
|
"Support 16-bit floating point conversion instructions">;
|
2011-10-30 19:57:21 +00:00
|
|
|
def FeatureFSGSBase : SubtargetFeature<"fsgsbase", "HasFSGSBase", "true",
|
|
|
|
"Support FS/GS Base instructions">;
|
2011-10-11 06:44:02 +00:00
|
|
|
def FeatureLZCNT : SubtargetFeature<"lzcnt", "HasLZCNT", "true",
|
|
|
|
"Support LZCNT instruction">;
|
2011-10-14 03:21:46 +00:00
|
|
|
def FeatureBMI : SubtargetFeature<"bmi", "HasBMI", "true",
|
|
|
|
"Support BMI instructions">;
|
2011-10-16 07:55:05 +00:00
|
|
|
def FeatureBMI2 : SubtargetFeature<"bmi2", "HasBMI2", "true",
|
|
|
|
"Support BMI2 instructions">;
|
2012-02-07 22:50:41 +00:00
|
|
|
def FeatureLeaForSP : SubtargetFeature<"lea-sp", "UseLeaForSP", "true",
|
|
|
|
"Use LEA for adjusting the stack pointer">;
|
2009-06-26 22:46:54 +00:00
|
|
|
|
2006-10-06 09:17:41 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// X86 processors supported.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-02-01 23:20:51 +00:00
|
|
|
include "X86Schedule.td"
|
|
|
|
|
|
|
|
def ProcIntelAtom : SubtargetFeature<"atom", "X86ProcFamily", "IntelAtom",
|
|
|
|
"Intel Atom processors">;
|
|
|
|
|
2006-10-06 09:17:41 +00:00
|
|
|
class Proc<string Name, list<SubtargetFeature> Features>
|
2012-07-07 04:00:00 +00:00
|
|
|
: ProcessorModel<Name, GenericModel, Features>;
|
2012-02-01 23:20:51 +00:00
|
|
|
|
|
|
|
class AtomProc<string Name, list<SubtargetFeature> Features>
|
2012-07-07 04:00:00 +00:00
|
|
|
: ProcessorModel<Name, AtomModel, Features>;
|
2006-10-06 09:17:41 +00:00
|
|
|
|
|
|
|
def : Proc<"generic", []>;
|
|
|
|
def : Proc<"i386", []>;
|
|
|
|
def : Proc<"i486", []>;
|
2008-10-14 22:06:33 +00:00
|
|
|
def : Proc<"i586", []>;
|
2006-10-06 09:17:41 +00:00
|
|
|
def : Proc<"pentium", []>;
|
|
|
|
def : Proc<"pentium-mmx", [FeatureMMX]>;
|
|
|
|
def : Proc<"i686", []>;
|
2009-09-02 05:53:04 +00:00
|
|
|
def : Proc<"pentiumpro", [FeatureCMOV]>;
|
|
|
|
def : Proc<"pentium2", [FeatureMMX, FeatureCMOV]>;
|
2007-05-22 05:15:37 +00:00
|
|
|
def : Proc<"pentium3", [FeatureSSE1]>;
|
2011-05-03 03:42:50 +00:00
|
|
|
def : Proc<"pentium3m", [FeatureSSE1, FeatureSlowBTMem]>;
|
2009-01-02 05:35:45 +00:00
|
|
|
def : Proc<"pentium-m", [FeatureSSE2, FeatureSlowBTMem]>;
|
2007-05-22 05:15:37 +00:00
|
|
|
def : Proc<"pentium4", [FeatureSSE2]>;
|
2011-05-03 03:42:50 +00:00
|
|
|
def : Proc<"pentium4m", [FeatureSSE2, FeatureSlowBTMem]>;
|
2011-08-26 21:21:21 +00:00
|
|
|
def : Proc<"x86-64", [FeatureSSE2, Feature64Bit, FeatureSlowBTMem]>;
|
2009-12-22 17:47:23 +00:00
|
|
|
def : Proc<"yonah", [FeatureSSE3, FeatureSlowBTMem]>;
|
|
|
|
def : Proc<"prescott", [FeatureSSE3, FeatureSlowBTMem]>;
|
2011-08-26 21:21:21 +00:00
|
|
|
def : Proc<"nocona", [FeatureSSE3, FeatureCMPXCHG16B,
|
|
|
|
FeatureSlowBTMem]>;
|
|
|
|
def : Proc<"core2", [FeatureSSSE3, FeatureCMPXCHG16B,
|
|
|
|
FeatureSlowBTMem]>;
|
|
|
|
def : Proc<"penryn", [FeatureSSE41, FeatureCMPXCHG16B,
|
|
|
|
FeatureSlowBTMem]>;
|
2012-02-01 23:20:51 +00:00
|
|
|
def : AtomProc<"atom", [ProcIntelAtom, FeatureSSE3, FeatureCMPXCHG16B,
|
2012-02-07 22:50:41 +00:00
|
|
|
FeatureMOVBE, FeatureSlowBTMem, FeatureLeaForSP]>;
|
2010-04-02 21:54:27 +00:00
|
|
|
// "Arrandale" along with corei3 and corei5
|
2011-08-26 21:21:21 +00:00
|
|
|
def : Proc<"corei7", [FeatureSSE42, FeatureCMPXCHG16B,
|
2011-12-29 18:47:31 +00:00
|
|
|
FeatureSlowBTMem, FeatureFastUAMem,
|
|
|
|
FeaturePOPCNT, FeatureAES]>;
|
2011-08-26 21:21:21 +00:00
|
|
|
def : Proc<"nehalem", [FeatureSSE42, FeatureCMPXCHG16B,
|
2011-12-29 18:47:31 +00:00
|
|
|
FeatureSlowBTMem, FeatureFastUAMem,
|
|
|
|
FeaturePOPCNT]>;
|
2010-04-02 21:54:27 +00:00
|
|
|
// Westmere is a similar machine to nehalem with some additional features.
|
|
|
|
// Westmere is the corei3/i5/i7 path from nehalem to sandybridge
|
2011-08-26 21:21:21 +00:00
|
|
|
def : Proc<"westmere", [FeatureSSE42, FeatureCMPXCHG16B,
|
2011-12-29 18:47:31 +00:00
|
|
|
FeatureSlowBTMem, FeatureFastUAMem,
|
2012-05-31 14:34:17 +00:00
|
|
|
FeaturePOPCNT, FeatureAES, FeaturePCLMUL]>;
|
2011-10-10 19:35:07 +00:00
|
|
|
// Sandy Bridge
|
2010-12-10 00:26:57 +00:00
|
|
|
// SSE is not listed here since llvm treats AVX as a reimplementation of SSE,
|
|
|
|
// rather than a superset.
|
2012-04-26 06:40:15 +00:00
|
|
|
def : Proc<"corei7-avx", [FeatureAVX, FeatureCMPXCHG16B, FeaturePOPCNT,
|
2012-05-31 14:34:17 +00:00
|
|
|
FeatureAES, FeaturePCLMUL]>;
|
2011-10-10 19:35:07 +00:00
|
|
|
// Ivy Bridge
|
2012-04-26 06:40:15 +00:00
|
|
|
def : Proc<"core-avx-i", [FeatureAVX, FeatureCMPXCHG16B, FeaturePOPCNT,
|
2012-05-31 14:34:17 +00:00
|
|
|
FeatureAES, FeaturePCLMUL,
|
2011-10-30 19:57:21 +00:00
|
|
|
FeatureRDRAND, FeatureF16C, FeatureFSGSBase]>;
|
2006-10-06 09:17:41 +00:00
|
|
|
|
2011-10-14 03:21:46 +00:00
|
|
|
// Haswell
|
2012-04-26 06:40:15 +00:00
|
|
|
def : Proc<"core-avx2", [FeatureAVX2, FeatureCMPXCHG16B, FeaturePOPCNT,
|
2012-05-31 14:34:17 +00:00
|
|
|
FeatureAES, FeaturePCLMUL, FeatureRDRAND,
|
2011-12-29 19:46:19 +00:00
|
|
|
FeatureF16C, FeatureFSGSBase,
|
2011-12-29 18:47:31 +00:00
|
|
|
FeatureMOVBE, FeatureLZCNT, FeatureBMI,
|
2012-06-03 18:58:46 +00:00
|
|
|
FeatureBMI2, FeatureFMA]>;
|
2011-10-14 03:21:46 +00:00
|
|
|
|
2006-10-06 09:17:41 +00:00
|
|
|
def : Proc<"k6", [FeatureMMX]>;
|
2011-04-15 00:32:41 +00: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 05:35:45 +00: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 00:04:43 +00: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 21:21:21 +00:00
|
|
|
def : Proc<"k8-sse3", [FeatureSSE3, Feature3DNowA, FeatureCMPXCHG16B,
|
2009-05-26 21:04:35 +00:00
|
|
|
FeatureSlowBTMem]>;
|
2011-08-26 21:21:21 +00:00
|
|
|
def : Proc<"opteron-sse3", [FeatureSSE3, Feature3DNowA, FeatureCMPXCHG16B,
|
2009-05-26 21:04:35 +00:00
|
|
|
FeatureSlowBTMem]>;
|
2011-08-26 21:21:21 +00:00
|
|
|
def : Proc<"athlon64-sse3", [FeatureSSE3, Feature3DNowA, FeatureCMPXCHG16B,
|
2009-05-26 21:04:35 +00:00
|
|
|
FeatureSlowBTMem]>;
|
2012-05-01 06:54:48 +00:00
|
|
|
def : Proc<"amdfam10", [FeatureSSE4A,
|
2011-11-30 15:48:16 +00:00
|
|
|
Feature3DNowA, FeatureCMPXCHG16B, FeatureLZCNT,
|
2011-12-29 18:47:31 +00:00
|
|
|
FeaturePOPCNT, FeatureSlowBTMem]>;
|
2012-01-10 11:50:02 +00:00
|
|
|
// Bobcat
|
|
|
|
def : Proc<"btver1", [FeatureSSSE3, FeatureSSE4A, FeatureCMPXCHG16B,
|
|
|
|
FeatureLZCNT, FeaturePOPCNT]>;
|
|
|
|
// Bulldozer
|
2012-05-01 06:54:48 +00:00
|
|
|
def : Proc<"bdver1", [FeatureXOP, FeatureFMA4, FeatureCMPXCHG16B,
|
2012-05-31 14:34:17 +00:00
|
|
|
FeatureAES, FeaturePCLMUL,
|
2012-05-01 06:54:48 +00:00
|
|
|
FeatureLZCNT, FeaturePOPCNT]>;
|
2012-01-10 11:50:02 +00:00
|
|
|
// Enhanced Bulldozer
|
2012-05-01 06:54:48 +00:00
|
|
|
def : Proc<"bdver2", [FeatureXOP, FeatureFMA4, FeatureCMPXCHG16B,
|
2012-05-31 14:34:17 +00:00
|
|
|
FeatureAES, FeaturePCLMUL,
|
2012-05-01 06:54:48 +00:00
|
|
|
FeatureF16C, FeatureLZCNT,
|
2012-08-16 04:04:02 +00:00
|
|
|
FeaturePOPCNT, FeatureBMI, FeatureFMA]>;
|
2006-10-06 09:17:41 +00:00
|
|
|
|
|
|
|
def : Proc<"winchip-c6", [FeatureMMX]>;
|
2011-04-15 00:32:41 +00:00
|
|
|
def : Proc<"winchip2", [Feature3DNow]>;
|
|
|
|
def : Proc<"c3", [Feature3DNow]>;
|
2007-05-22 05:15:37 +00:00
|
|
|
def : Proc<"c3-2", [FeatureSSE1]>;
|
2006-10-06 09:17:41 +00:00
|
|
|
|
2003-08-03 15:47:49 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Register File Description
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "X86RegisterInfo.td"
|
|
|
|
|
2003-08-03 18:19:37 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Instruction Descriptions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2003-08-03 21:54:21 +00:00
|
|
|
include "X86InstrInfo.td"
|
|
|
|
|
2010-04-05 03:10:20 +00:00
|
|
|
def X86InstrInfo : InstrInfo;
|
2003-08-03 18:19:37 +00:00
|
|
|
|
2007-02-26 18:17:14 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Calling Conventions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "X86CallingConv.td"
|
|
|
|
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2010-10-30 13:48:28 +00:00
|
|
|
// Assembly Parser
|
2007-02-26 18:17:14 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-07-29 00:02:19 +00:00
|
|
|
def ATTAsmParser : AsmParser {
|
2012-01-12 18:03:40 +00:00
|
|
|
string AsmParserClassName = "AsmParser";
|
2012-01-09 19:13:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
def ATTAsmParserVariant : AsmParserVariant {
|
2009-07-29 00:02:19 +00:00
|
|
|
int Variant = 0;
|
2009-08-11 20:59:47 +00:00
|
|
|
|
|
|
|
// Discard comments in assembly strings.
|
|
|
|
string CommentDelimiter = "#";
|
|
|
|
|
|
|
|
// Recognize hard coded registers.
|
|
|
|
string RegisterPrefix = "%";
|
2009-07-29 00:02:19 +00:00
|
|
|
}
|
|
|
|
|
2012-01-10 17:51:54 +00:00
|
|
|
def IntelAsmParserVariant : AsmParserVariant {
|
|
|
|
int Variant = 1;
|
|
|
|
|
|
|
|
// Discard comments in assembly strings.
|
|
|
|
string CommentDelimiter = ";";
|
|
|
|
|
|
|
|
// Recognize hard coded registers.
|
|
|
|
string RegisterPrefix = "";
|
|
|
|
}
|
|
|
|
|
2010-10-30 13:48:28 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Assembly Printers
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-10-03 20:36:57 +00: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 19:30:11 +00:00
|
|
|
string AsmWriterClassName = "ATTInstPrinter";
|
2004-10-03 20:36:57 +00:00
|
|
|
int Variant = 0;
|
2010-09-30 23:40:25 +00:00
|
|
|
bit isMCAsmWriter = 1;
|
2004-10-03 20:36:57 +00:00
|
|
|
}
|
|
|
|
def IntelAsmWriter : AsmWriter {
|
2009-09-20 07:47:59 +00:00
|
|
|
string AsmWriterClassName = "IntelInstPrinter";
|
2004-10-03 20:36:57 +00:00
|
|
|
int Variant = 1;
|
2010-09-30 23:40:25 +00:00
|
|
|
bit isMCAsmWriter = 1;
|
2004-10-03 20:36:57 +00:00
|
|
|
}
|
|
|
|
|
2003-08-03 18:19:37 +00:00
|
|
|
def X86 : Target {
|
|
|
|
// Information about the instructions...
|
2003-08-04 04:59:56 +00:00
|
|
|
let InstructionSet = X86InstrInfo;
|
2009-07-29 00:02:19 +00:00
|
|
|
let AssemblyParsers = [ATTAsmParser];
|
2012-01-10 17:51:54 +00:00
|
|
|
let AssemblyParserVariants = [ATTAsmParserVariant, IntelAsmParserVariant];
|
2004-10-03 20:36:57 +00:00
|
|
|
let AssemblyWriters = [ATTAsmWriter, IntelAsmWriter];
|
2003-08-03 18:19:37 +00:00
|
|
|
}
|