blob: 71b5cb31f575dd584c83f6bde285b1b0699efe09 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- X86Subtarget.cpp - X86 Subtarget Information ------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the X86 specific subclass of TargetSubtarget.
11//
12//===----------------------------------------------------------------------===//
13
14#include "X86Subtarget.h"
15#include "X86GenSubtarget.inc"
16#include "llvm/Module.h"
17#include "llvm/Support/CommandLine.h"
18#include "llvm/Target/TargetMachine.h"
19using namespace llvm;
20
21cl::opt<X86Subtarget::AsmWriterFlavorTy>
22AsmWriterFlavor("x86-asm-syntax", cl::init(X86Subtarget::Unset),
23 cl::desc("Choose style of code to emit from X86 backend:"),
24 cl::values(
25 clEnumValN(X86Subtarget::ATT, "att", " Emit AT&T-style assembly"),
26 clEnumValN(X86Subtarget::Intel, "intel", " Emit Intel-style assembly"),
27 clEnumValEnd));
28
Anton Korobeynikov06c42402008-04-12 22:12:22 +000029cl::opt<unsigned>
30StackAlignment("stack-alignment", cl::init(0),
31 cl::desc("Override default stack alignment"));
32
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033
34/// True if accessing the GV requires an extra load. For Windows, dllimported
35/// symbols are indirect, loading the value at address GV rather then the
36/// value of GV itself. This means that the GlobalAddress must be in the base
37/// or index register of the address, not the GV offset field.
38bool X86Subtarget::GVRequiresExtraLoad(const GlobalValue* GV,
39 const TargetMachine& TM,
40 bool isDirectCall) const
41{
42 // FIXME: PIC
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +000043 if (TM.getRelocationModel() != Reloc::Static) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000044 if (isTargetDarwin()) {
45 return (!isDirectCall &&
46 (GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() ||
47 (GV->isDeclaration() && !GV->hasNotBeenReadFromBitcode())));
Anton Korobeynikov6835eb62008-01-20 13:58:16 +000048 } else if (isTargetELF()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000049 // Extra load is needed for all non-statics.
50 return (!isDirectCall &&
51 (GV->isDeclaration() || !GV->hasInternalLinkage()));
52 } else if (isTargetCygMing() || isTargetWindows()) {
53 return (GV->hasDLLImportLinkage());
54 }
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +000055 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000056
57 return false;
58}
59
Dan Gohmanf95c2bf2008-04-01 20:38:36 +000060/// This function returns the name of a function which has an interface
61/// like the non-standard bzero function, if such a function exists on
62/// the current subtarget and it is considered prefereable over
63/// memset with zero passed as the second argument. Otherwise it
64/// returns null.
65const char *X86Subtarget::getBZeroEntry() const {
66
67 // Darwin 10 has a __bzero entry point for this purpose.
68 if (getDarwinVers() >= 10)
69 return "__bzero";
70
71 return 0;
72}
73
Dan Gohmanf17a25c2007-07-18 16:29:46 +000074/// GetCpuIDAndInfo - Execute the specified cpuid and return the 4 values in the
75/// specified arguments. If we can't run cpuid on the host, return true.
76bool X86::GetCpuIDAndInfo(unsigned value, unsigned *rEAX, unsigned *rEBX,
77 unsigned *rECX, unsigned *rEDX) {
78#if defined(__x86_64__)
79 // gcc doesn't know cpuid would clobber ebx/rbx. Preseve it manually.
80 asm ("movq\t%%rbx, %%rsi\n\t"
81 "cpuid\n\t"
82 "xchgq\t%%rbx, %%rsi\n\t"
83 : "=a" (*rEAX),
84 "=S" (*rEBX),
85 "=c" (*rECX),
86 "=d" (*rEDX)
87 : "a" (value));
88 return false;
89#elif defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86)
90#if defined(__GNUC__)
91 asm ("movl\t%%ebx, %%esi\n\t"
92 "cpuid\n\t"
93 "xchgl\t%%ebx, %%esi\n\t"
94 : "=a" (*rEAX),
95 "=S" (*rEBX),
96 "=c" (*rECX),
97 "=d" (*rEDX)
98 : "a" (value));
99 return false;
100#elif defined(_MSC_VER)
101 __asm {
102 mov eax,value
103 cpuid
104 mov esi,rEAX
105 mov dword ptr [esi],eax
106 mov esi,rEBX
107 mov dword ptr [esi],ebx
108 mov esi,rECX
109 mov dword ptr [esi],ecx
110 mov esi,rEDX
111 mov dword ptr [esi],edx
112 }
113 return false;
114#endif
115#endif
116 return true;
117}
118
119void X86Subtarget::AutoDetectSubtargetFeatures() {
120 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
121 union {
122 unsigned u[3];
123 char c[12];
124 } text;
125
126 if (X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1))
127 return;
128
129 X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
130
131 if ((EDX >> 23) & 0x1) X86SSELevel = MMX;
132 if ((EDX >> 25) & 0x1) X86SSELevel = SSE1;
133 if ((EDX >> 26) & 0x1) X86SSELevel = SSE2;
134 if (ECX & 0x1) X86SSELevel = SSE3;
135 if ((ECX >> 9) & 0x1) X86SSELevel = SSSE3;
Nate Begemanb2975562008-02-03 07:18:54 +0000136 if ((ECX >> 19) & 0x1) X86SSELevel = SSE41;
137 if ((ECX >> 20) & 0x1) X86SSELevel = SSE42;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138
139 if (memcmp(text.c, "GenuineIntel", 12) == 0 ||
140 memcmp(text.c, "AuthenticAMD", 12) == 0) {
141 X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
142 HasX86_64 = (EDX >> 29) & 0x1;
143 }
144}
145
146static const char *GetCurrentX86CPU() {
147 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
148 if (X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX))
149 return "generic";
150 unsigned Family = (EAX >> 8) & 0xf; // Bits 8 - 11
151 unsigned Model = (EAX >> 4) & 0xf; // Bits 4 - 7
152 X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
153 bool Em64T = (EDX >> 29) & 0x1;
154
155 union {
156 unsigned u[3];
157 char c[12];
158 } text;
159
160 X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1);
161 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
162 switch (Family) {
163 case 3:
164 return "i386";
165 case 4:
166 return "i486";
167 case 5:
168 switch (Model) {
169 case 4: return "pentium-mmx";
170 default: return "pentium";
171 }
172 case 6:
173 switch (Model) {
174 case 1: return "pentiumpro";
175 case 3:
176 case 5:
177 case 6: return "pentium2";
178 case 7:
179 case 8:
180 case 10:
181 case 11: return "pentium3";
182 case 9:
183 case 13: return "pentium-m";
184 case 14: return "yonah";
185 case 15: return "core2";
186 default: return "i686";
187 }
188 case 15: {
189 switch (Model) {
190 case 3:
191 case 4:
192 return (Em64T) ? "nocona" : "prescott";
193 default:
194 return (Em64T) ? "x86-64" : "pentium4";
195 }
196 }
197
198 default:
199 return "generic";
200 }
201 } else if (memcmp(text.c, "AuthenticAMD", 12) == 0) {
202 // FIXME: this poorly matches the generated SubtargetFeatureKV table. There
203 // appears to be no way to generate the wide variety of AMD-specific targets
204 // from the information returned from CPUID.
205 switch (Family) {
206 case 4:
207 return "i486";
208 case 5:
209 switch (Model) {
210 case 6:
211 case 7: return "k6";
212 case 8: return "k6-2";
213 case 9:
214 case 13: return "k6-3";
215 default: return "pentium";
216 }
217 case 6:
218 switch (Model) {
219 case 4: return "athlon-tbird";
220 case 6:
221 case 7:
222 case 8: return "athlon-mp";
223 case 10: return "athlon-xp";
224 default: return "athlon";
225 }
226 case 15:
227 switch (Model) {
228 case 1: return "opteron";
229 case 5: return "athlon-fx"; // also opteron
230 default: return "athlon64";
231 }
232 default:
233 return "generic";
234 }
235 } else {
236 return "generic";
237 }
238}
239
240X86Subtarget::X86Subtarget(const Module &M, const std::string &FS, bool is64Bit)
241 : AsmFlavor(AsmWriterFlavor)
242 , PICStyle(PICStyle::None)
243 , X86SSELevel(NoMMXSSE)
Evan Chengb6992de2008-04-16 19:03:02 +0000244 , X863DNowLevel(NoThreeDNow)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000245 , HasX86_64(false)
Chris Lattner93a2d432008-01-02 19:44:55 +0000246 , DarwinVers(0)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000247 , stackAlignment(8)
248 // FIXME: this is a known good value for Yonah. How about others?
Rafael Espindola7afa9b12007-10-31 11:52:06 +0000249 , MaxInlineSizeThreshold(128)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000250 , Is64Bit(is64Bit)
251 , TargetType(isELF) { // Default to ELF unless otherwise specified.
252
253 // Determine default and user specified characteristics
254 if (!FS.empty()) {
255 // If feature string is not empty, parse features string.
256 std::string CPU = GetCurrentX86CPU();
257 ParseSubtargetFeatures(FS, CPU);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000258 } else {
259 // Otherwise, use CPUID to auto-detect feature set.
260 AutoDetectSubtargetFeatures();
261 }
262
263 // If requesting codegen for X86-64, make sure that 64-bit and SSE2 features
264 // are enabled. These are available on all x86-64 CPUs.
265 if (Is64Bit) {
266 HasX86_64 = true;
267 if (X86SSELevel < SSE2)
268 X86SSELevel = SSE2;
269 }
270
271 // Set the boolean corresponding to the current target triple, or the default
272 // if one cannot be determined, to true.
273 const std::string& TT = M.getTargetTriple();
274 if (TT.length() > 5) {
Duncan Sandsdfd94582008-01-08 10:06:15 +0000275 size_t Pos;
Chris Lattner93a2d432008-01-02 19:44:55 +0000276 if ((Pos = TT.find("-darwin")) != std::string::npos) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000277 TargetType = isDarwin;
Chris Lattner93a2d432008-01-02 19:44:55 +0000278
279 // Compute the darwin version number.
280 if (isdigit(TT[Pos+7]))
281 DarwinVers = atoi(&TT[Pos+7]);
282 else
283 DarwinVers = 8; // Minimum supported darwin is Tiger.
284 } else if (TT.find("cygwin") != std::string::npos) {
285 TargetType = isCygwin;
286 } else if (TT.find("mingw") != std::string::npos) {
287 TargetType = isMingw;
288 } else if (TT.find("win32") != std::string::npos) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000289 TargetType = isWindows;
Anton Korobeynikovf0ce64b2008-03-22 21:12:53 +0000290 } else if (TT.find("windows") != std::string::npos) {
291 TargetType = isWindows;
Chris Lattner93a2d432008-01-02 19:44:55 +0000292 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000293 } else if (TT.empty()) {
294#if defined(__CYGWIN__)
295 TargetType = isCygwin;
Anton Korobeynikov62a51e42008-03-22 21:18:22 +0000296#elif defined(__MINGW32__) || defined(__MINGW64__)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000297 TargetType = isMingw;
298#elif defined(__APPLE__)
299 TargetType = isDarwin;
Chris Lattner93a2d432008-01-02 19:44:55 +0000300#if __APPLE_CC__ > 5400
301 DarwinVers = 9; // GCC 5400+ is Leopard.
302#else
303 DarwinVers = 8; // Minimum supported darwin is Tiger.
304#endif
305
Anton Korobeynikov62a51e42008-03-22 21:18:22 +0000306#elif defined(_WIN32) || defined(_WIN64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000307 TargetType = isWindows;
308#endif
309 }
310
311 // If the asm syntax hasn't been overridden on the command line, use whatever
312 // the target wants.
313 if (AsmFlavor == X86Subtarget::Unset) {
Chris Lattner93a2d432008-01-02 19:44:55 +0000314 AsmFlavor = (TargetType == isWindows)
315 ? X86Subtarget::Intel : X86Subtarget::ATT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000316 }
317
Anton Korobeynikovcdd93812008-04-23 18:16:16 +0000318 // Stack alignment is 16 bytes on Darwin (both 32 and 64 bit) and for all 64
319 // bit targets.
320 if (TargetType == isDarwin || Is64Bit)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000321 stackAlignment = 16;
Anton Korobeynikov06c42402008-04-12 22:12:22 +0000322
323 if (StackAlignment)
324 stackAlignment = StackAlignment;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000325}