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