blob: 423c77ed6d37b11af251fd08cb10f8e72f4ecdd8 [file] [log] [blame]
Arnold Schwaighofer373e8652007-10-12 21:30:57 +00001//===- X86.td - Target definition file for the Intel X86 ---*- tablegen -*-===//
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This is a target description file for the Intel i386 architecture, refered to
11// here as the "X86" architecture.
12//
13//===----------------------------------------------------------------------===//
14
15// Get the target-independent interfaces which we are implementing...
16//
17include "../Target.td"
18
19//===----------------------------------------------------------------------===//
20// X86 Subtarget features.
21//===----------------------------------------------------------------------===//
22
23def FeatureMMX : SubtargetFeature<"mmx","X86SSELevel", "MMX",
24 "Enable MMX instructions">;
25def FeatureSSE1 : SubtargetFeature<"sse", "X86SSELevel", "SSE1",
26 "Enable SSE instructions",
27 [FeatureMMX]>;
28def FeatureSSE2 : SubtargetFeature<"sse2", "X86SSELevel", "SSE2",
29 "Enable SSE2 instructions",
30 [FeatureSSE1]>;
31def FeatureSSE3 : SubtargetFeature<"sse3", "X86SSELevel", "SSE3",
32 "Enable SSE3 instructions",
33 [FeatureSSE2]>;
34def FeatureSSSE3 : SubtargetFeature<"ssse3", "X86SSELevel", "SSSE3",
35 "Enable SSSE3 instructions",
36 [FeatureSSE3]>;
37def Feature3DNow : SubtargetFeature<"3dnow", "X863DNowLevel", "ThreeDNow",
38 "Enable 3DNow! instructions">;
39def Feature3DNowA : SubtargetFeature<"3dnowa", "X863DNowLevel", "ThreeDNowA",
40 "Enable 3DNow! Athlon instructions",
41 [Feature3DNow]>;
42def Feature64Bit : SubtargetFeature<"64bit", "HasX86_64", "true",
43 "Support 64-bit instructions",
44 [FeatureSSE2]>;
45
46//===----------------------------------------------------------------------===//
47// X86 processors supported.
48//===----------------------------------------------------------------------===//
49
50class Proc<string Name, list<SubtargetFeature> Features>
51 : Processor<Name, NoItineraries, Features>;
52
53def : Proc<"generic", []>;
54def : Proc<"i386", []>;
55def : Proc<"i486", []>;
56def : Proc<"pentium", []>;
57def : Proc<"pentium-mmx", [FeatureMMX]>;
58def : Proc<"i686", []>;
59def : Proc<"pentiumpro", []>;
60def : Proc<"pentium2", [FeatureMMX]>;
61def : Proc<"pentium3", [FeatureSSE1]>;
62def : Proc<"pentium-m", [FeatureSSE2]>;
63def : Proc<"pentium4", [FeatureSSE2]>;
64def : Proc<"x86-64", [Feature64Bit]>;
65def : Proc<"yonah", [FeatureSSE3]>;
66def : Proc<"prescott", [FeatureSSE3]>;
67def : Proc<"nocona", [FeatureSSE3]>;
68def : Proc<"core2", [FeatureSSSE3]>;
69
70def : Proc<"k6", [FeatureMMX]>;
71def : Proc<"k6-2", [FeatureMMX, Feature3DNow]>;
72def : Proc<"k6-3", [FeatureMMX, Feature3DNow]>;
73def : Proc<"athlon", [FeatureMMX, Feature3DNowA]>;
74def : Proc<"athlon-tbird", [FeatureMMX, Feature3DNowA]>;
75def : Proc<"athlon-4", [FeatureSSE1, Feature3DNowA]>;
76def : Proc<"athlon-xp", [FeatureSSE1, Feature3DNowA]>;
77def : Proc<"athlon-mp", [FeatureSSE1, Feature3DNowA]>;
78def : Proc<"k8", [Feature3DNowA, Feature64Bit]>;
79def : Proc<"opteron", [Feature3DNowA, Feature64Bit]>;
80def : Proc<"athlon64", [Feature3DNowA, Feature64Bit]>;
81def : Proc<"athlon-fx", [Feature3DNowA, Feature64Bit]>;
82
83def : Proc<"winchip-c6", [FeatureMMX]>;
84def : Proc<"winchip2", [FeatureMMX, Feature3DNow]>;
85def : Proc<"c3", [FeatureMMX, Feature3DNow]>;
86def : Proc<"c3-2", [FeatureSSE1]>;
87
88//===----------------------------------------------------------------------===//
89// Register File Description
90//===----------------------------------------------------------------------===//
91
92include "X86RegisterInfo.td"
93
94//===----------------------------------------------------------------------===//
95// Instruction Descriptions
96//===----------------------------------------------------------------------===//
97
98include "X86InstrInfo.td"
99
100def X86InstrInfo : InstrInfo {
101
102 // Define how we want to layout our TargetSpecific information field... This
103 // should be kept up-to-date with the fields in the X86InstrInfo.h file.
104 let TSFlagsFields = ["FormBits",
105 "hasOpSizePrefix",
106 "hasAdSizePrefix",
107 "Prefix",
108 "hasREX_WPrefix",
109 "ImmTypeBits",
110 "FPFormBits",
111 "Opcode"];
112 let TSFlagsShifts = [0,
113 6,
114 7,
115 8,
116 12,
117 13,
118 16,
119 24];
120}
121
122//===----------------------------------------------------------------------===//
123// Calling Conventions
124//===----------------------------------------------------------------------===//
125
126include "X86CallingConv.td"
127
128
129//===----------------------------------------------------------------------===//
130// Assembly Printers
131//===----------------------------------------------------------------------===//
132
133// The X86 target supports two different syntaxes for emitting machine code.
134// This is controlled by the -x86-asm-syntax={att|intel}
135def ATTAsmWriter : AsmWriter {
136 string AsmWriterClassName = "ATTAsmPrinter";
137 int Variant = 0;
138}
139def IntelAsmWriter : AsmWriter {
140 string AsmWriterClassName = "IntelAsmPrinter";
141 int Variant = 1;
142}
143
144
145def X86 : Target {
146 // Information about the instructions...
147 let InstructionSet = X86InstrInfo;
148
149 let AssemblyWriters = [ATTAsmWriter, IntelAsmWriter];
150}