blob: 3eb0e28aab44717c8f5f8bf2e5db813c0e1e5bc4 [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
Evan Cheng1f282202008-07-16 01:34:02 +000040 if (TM.getRelocationModel() != Reloc::Static &&
41 TM.getCodeModel() != CodeModel::Large) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000042 if (isTargetDarwin()) {
43 return (!isDirectCall &&
44 (GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() ||
Dale Johannesen49c44122008-05-14 20:12:51 +000045 GV->hasCommonLinkage() ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +000046 (GV->isDeclaration() && !GV->hasNotBeenReadFromBitcode())));
Anton Korobeynikov6835eb62008-01-20 13:58:16 +000047 } else if (isTargetELF()) {
Rafael Espindolaae289c12008-06-02 07:52:43 +000048 // Extra load is needed for all externally visible.
49 if (isDirectCall)
50 return false;
Anton Korobeynikov6b570362008-07-09 13:29:08 +000051 if (GV->hasInternalLinkage() || GV->hasHiddenVisibility())
Rafael Espindolaae289c12008-06-02 07:52:43 +000052 return false;
53 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054 } else if (isTargetCygMing() || isTargetWindows()) {
55 return (GV->hasDLLImportLinkage());
56 }
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +000057 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000058
59 return false;
60}
61
Bill Wendling5db7ffb2008-09-30 21:22:07 +000062/// getBZeroEntry - This function returns the name of a function which has an
63/// interface like the non-standard bzero function, if such a function exists on
64/// the current subtarget and it is considered prefereable over memset with zero
65/// passed as the second argument. Otherwise it returns null.
66const char *X86Subtarget::getBZeroEntry(bool NoBuiltin) const {
Dan Gohmanf95c2bf2008-04-01 20:38:36 +000067 // Darwin 10 has a __bzero entry point for this purpose.
68 if (getDarwinVers() >= 10)
Bill Wendling5db7ffb2008-09-30 21:22:07 +000069 return NoBuiltin ? "_bzero" : "__bzero";
Dan Gohmanf95c2bf2008-04-01 20:38:36 +000070
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 Gohmande22f242008-05-05 18:43:07 +0000247 , IsLinux(false)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000248 , stackAlignment(8)
249 // FIXME: this is a known good value for Yonah. How about others?
Rafael Espindola7afa9b12007-10-31 11:52:06 +0000250 , MaxInlineSizeThreshold(128)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000251 , Is64Bit(is64Bit)
252 , TargetType(isELF) { // Default to ELF unless otherwise specified.
Mon P Wang078a62d2008-05-05 19:05:59 +0000253
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000254 // Determine default and user specified characteristics
255 if (!FS.empty()) {
256 // If feature string is not empty, parse features string.
257 std::string CPU = GetCurrentX86CPU();
258 ParseSubtargetFeatures(FS, CPU);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000259 } else {
260 // Otherwise, use CPUID to auto-detect feature set.
261 AutoDetectSubtargetFeatures();
262 }
263
264 // If requesting codegen for X86-64, make sure that 64-bit and SSE2 features
265 // are enabled. These are available on all x86-64 CPUs.
266 if (Is64Bit) {
267 HasX86_64 = true;
268 if (X86SSELevel < SSE2)
269 X86SSELevel = SSE2;
270 }
271
272 // Set the boolean corresponding to the current target triple, or the default
273 // if one cannot be determined, to true.
274 const std::string& TT = M.getTargetTriple();
275 if (TT.length() > 5) {
Duncan Sandsdfd94582008-01-08 10:06:15 +0000276 size_t Pos;
Chris Lattner93a2d432008-01-02 19:44:55 +0000277 if ((Pos = TT.find("-darwin")) != std::string::npos) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000278 TargetType = isDarwin;
Chris Lattner93a2d432008-01-02 19:44:55 +0000279
280 // Compute the darwin version number.
281 if (isdigit(TT[Pos+7]))
282 DarwinVers = atoi(&TT[Pos+7]);
283 else
284 DarwinVers = 8; // Minimum supported darwin is Tiger.
Dan Gohmana65530a2008-05-05 00:28:39 +0000285 } else if (TT.find("linux") != std::string::npos) {
Dan Gohman2593e2b2008-05-05 16:11:31 +0000286 // Linux doesn't imply ELF, but we don't currently support anything else.
287 TargetType = isELF;
288 IsLinux = true;
Chris Lattner93a2d432008-01-02 19:44:55 +0000289 } else if (TT.find("cygwin") != std::string::npos) {
290 TargetType = isCygwin;
291 } else if (TT.find("mingw") != std::string::npos) {
292 TargetType = isMingw;
293 } else if (TT.find("win32") != std::string::npos) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000294 TargetType = isWindows;
Anton Korobeynikovf0ce64b2008-03-22 21:12:53 +0000295 } else if (TT.find("windows") != std::string::npos) {
296 TargetType = isWindows;
Chris Lattner93a2d432008-01-02 19:44:55 +0000297 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000298 } else if (TT.empty()) {
299#if defined(__CYGWIN__)
300 TargetType = isCygwin;
Anton Korobeynikov62a51e42008-03-22 21:18:22 +0000301#elif defined(__MINGW32__) || defined(__MINGW64__)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000302 TargetType = isMingw;
303#elif defined(__APPLE__)
304 TargetType = isDarwin;
Chris Lattner93a2d432008-01-02 19:44:55 +0000305#if __APPLE_CC__ > 5400
306 DarwinVers = 9; // GCC 5400+ is Leopard.
307#else
308 DarwinVers = 8; // Minimum supported darwin is Tiger.
309#endif
310
Anton Korobeynikov62a51e42008-03-22 21:18:22 +0000311#elif defined(_WIN32) || defined(_WIN64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000312 TargetType = isWindows;
Dan Gohmana65530a2008-05-05 00:28:39 +0000313#elif defined(__linux__)
314 // Linux doesn't imply ELF, but we don't currently support anything else.
Dan Gohman2593e2b2008-05-05 16:11:31 +0000315 TargetType = isELF;
316 IsLinux = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000317#endif
318 }
319
320 // If the asm syntax hasn't been overridden on the command line, use whatever
321 // the target wants.
322 if (AsmFlavor == X86Subtarget::Unset) {
Chris Lattner93a2d432008-01-02 19:44:55 +0000323 AsmFlavor = (TargetType == isWindows)
324 ? X86Subtarget::Intel : X86Subtarget::ATT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000325 }
326
Anton Korobeynikovcdd93812008-04-23 18:16:16 +0000327 // Stack alignment is 16 bytes on Darwin (both 32 and 64 bit) and for all 64
328 // bit targets.
329 if (TargetType == isDarwin || Is64Bit)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000330 stackAlignment = 16;
Anton Korobeynikov06c42402008-04-12 22:12:22 +0000331
332 if (StackAlignment)
333 stackAlignment = StackAlignment;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000334}