blob: 3c8f489c372b9708a604656589cc0ecfe13b4f15 [file] [log] [blame]
Nate Begeman8c00f8c2005-08-04 07:12:09 +00001//===-- X86Subtarget.cpp - X86 Subtarget Information ------------*- C++ -*-===//
Nate Begemanfb5792f2005-07-12 01:41:54 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Nate Begemanfb5792f2005-07-12 01:41:54 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the X86 specific subclass of TargetSubtarget.
11//
12//===----------------------------------------------------------------------===//
13
14#include "X86Subtarget.h"
Evan Chenga26eb5e2006-10-06 09:17:41 +000015#include "X86GenSubtarget.inc"
Nate Begemanfb5792f2005-07-12 01:41:54 +000016#include "llvm/Module.h"
Jim Laskey05a059d2006-09-07 12:23:47 +000017#include "llvm/Support/CommandLine.h"
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +000018#include "llvm/Target/TargetMachine.h"
Anton Korobeynikov45709ae2008-04-23 18:18:10 +000019#include "llvm/Target/TargetOptions.h"
Nate Begemanfb5792f2005-07-12 01:41:54 +000020using namespace llvm;
21
Dan Gohman844731a2008-05-13 00:00:25 +000022static cl::opt<X86Subtarget::AsmWriterFlavorTy>
Anton Korobeynikov7f705592007-01-12 19:20:47 +000023AsmWriterFlavor("x86-asm-syntax", cl::init(X86Subtarget::Unset),
Jim Laskey05a059d2006-09-07 12:23:47 +000024 cl::desc("Choose style of code to emit from X86 backend:"),
25 cl::values(
Dan Gohmanb8cab922008-10-14 20:25:08 +000026 clEnumValN(X86Subtarget::ATT, "att", "Emit AT&T-style assembly"),
27 clEnumValN(X86Subtarget::Intel, "intel", "Emit Intel-style assembly"),
Chris Lattnercdb341d2006-09-07 22:29:41 +000028 clEnumValEnd));
Jim Laskey05a059d2006-09-07 12:23:47 +000029
Evan Cheng751c0e12006-10-16 21:00:37 +000030
Anton Korobeynikov7784ebc2006-11-30 22:42:55 +000031/// 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.
Anton Korobeynikov48c8e3d2006-12-20 20:40:30 +000035bool X86Subtarget::GVRequiresExtraLoad(const GlobalValue* GV,
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +000036 const TargetMachine& TM,
Anton Korobeynikov48c8e3d2006-12-20 20:40:30 +000037 bool isDirectCall) const
Anton Korobeynikov7784ebc2006-11-30 22:42:55 +000038{
Anton Korobeynikovb10308e2007-01-28 13:31:35 +000039 // FIXME: PIC
Evan Cheng817a6a92008-07-16 01:34:02 +000040 if (TM.getRelocationModel() != Reloc::Static &&
41 TM.getCodeModel() != CodeModel::Large) {
Anton Korobeynikov5032e5a2007-01-17 10:33:08 +000042 if (isTargetDarwin()) {
Evan Chenge4d10822008-12-08 19:29:03 +000043 if (isDirectCall)
44 return false;
Evan Chengae94e592008-12-05 01:06:39 +000045 bool isDecl = GV->isDeclaration() && !GV->hasNotBeenReadFromBitcode();
46 if (GV->hasHiddenVisibility() &&
47 (Is64Bit || (!isDecl && !GV->hasCommonLinkage())))
48 // If symbol visibility is hidden, the extra load is not needed if
49 // target is x86-64 or the symbol is definitely defined in the current
50 // translation unit.
51 return false;
Dan Gohman2d4e9bc2008-12-08 17:38:02 +000052 return !isDirectCall && (isDecl || GV->mayBeOverridden());
Anton Korobeynikov49964d62008-01-20 13:58:16 +000053 } else if (isTargetELF()) {
Rafael Espindolada5860f2008-06-02 07:52:43 +000054 // Extra load is needed for all externally visible.
55 if (isDirectCall)
56 return false;
Anton Korobeynikov3b485912008-07-09 13:29:08 +000057 if (GV->hasInternalLinkage() || GV->hasHiddenVisibility())
Rafael Espindolada5860f2008-06-02 07:52:43 +000058 return false;
59 return true;
Anton Korobeynikov317848f2007-01-03 11:43:14 +000060 } else if (isTargetCygMing() || isTargetWindows()) {
Anton Korobeynikov15fccf12006-12-20 01:03:20 +000061 return (GV->hasDLLImportLinkage());
62 }
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +000063 }
Dale Johannesen203af582008-12-05 21:47:27 +000064 return false;
65}
66
67/// True if accessing the GV requires a register. This is a superset of the
68/// cases where GVRequiresExtraLoad is true. Some variations of PIC require
69/// a register, but not an extra load.
70bool X86Subtarget::GVRequiresRegister(const GlobalValue *GV,
71 const TargetMachine& TM,
72 bool isDirectCall) const
73{
74 if (GVRequiresExtraLoad(GV, TM, isDirectCall))
75 return true;
76 // Code below here need only consider cases where GVRequiresExtraLoad
77 // returns false.
78 if (TM.getRelocationModel() == Reloc::PIC_)
79 return !isDirectCall &&
80 (GV->hasInternalLinkage() || GV->hasExternalLinkage());
Anton Korobeynikov7784ebc2006-11-30 22:42:55 +000081 return false;
82}
83
Bill Wendling6f287b22008-09-30 21:22:07 +000084/// getBZeroEntry - This function returns the name of a function which has an
85/// interface like the non-standard bzero function, if such a function exists on
86/// the current subtarget and it is considered prefereable over memset with zero
87/// passed as the second argument. Otherwise it returns null.
Bill Wendling6e087382008-09-30 22:05:33 +000088const char *X86Subtarget::getBZeroEntry() const {
Dan Gohman68d599d2008-04-01 20:38:36 +000089 // Darwin 10 has a __bzero entry point for this purpose.
90 if (getDarwinVers() >= 10)
Bill Wendling6e087382008-09-30 22:05:33 +000091 return "__bzero";
Dan Gohman68d599d2008-04-01 20:38:36 +000092
93 return 0;
94}
95
Dan Gohman8749b612008-12-16 03:35:01 +000096/// getSpecialAddressLatency - For targets where it is beneficial to
97/// backschedule instructions that compute addresses, return a value
98/// indicating the number of scheduling cycles of backscheduling that
99/// should be attempted.
100unsigned X86Subtarget::getSpecialAddressLatency() const {
101 // For x86 out-of-order targets, back-schedule address computations so
102 // that loads and stores aren't blocked.
103 // This value was chosen arbitrarily.
104 return 200;
105}
106
Chris Lattner1e39a152006-01-28 06:05:41 +0000107/// GetCpuIDAndInfo - Execute the specified cpuid and return the 4 values in the
108/// specified arguments. If we can't run cpuid on the host, return true.
Evan Cheng751c0e12006-10-16 21:00:37 +0000109bool X86::GetCpuIDAndInfo(unsigned value, unsigned *rEAX, unsigned *rEBX,
110 unsigned *rECX, unsigned *rEDX) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000111#if defined(__x86_64__)
Evan Chengf896d1e2006-10-17 00:24:49 +0000112 // gcc doesn't know cpuid would clobber ebx/rbx. Preseve it manually.
113 asm ("movq\t%%rbx, %%rsi\n\t"
114 "cpuid\n\t"
115 "xchgq\t%%rbx, %%rsi\n\t"
Evan Cheng25ab6902006-09-08 06:48:29 +0000116 : "=a" (*rEAX),
117 "=S" (*rEBX),
118 "=c" (*rECX),
119 "=d" (*rEDX)
120 : "a" (value));
121 return false;
122#elif defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86)
Evan Cheng559806f2006-01-27 08:10:46 +0000123#if defined(__GNUC__)
Evan Chengaacf9992006-11-08 20:35:37 +0000124 asm ("movl\t%%ebx, %%esi\n\t"
Evan Cheng559806f2006-01-27 08:10:46 +0000125 "cpuid\n\t"
Evan Chengaacf9992006-11-08 20:35:37 +0000126 "xchgl\t%%ebx, %%esi\n\t"
Jeff Cohen41adb0d2006-01-28 18:09:06 +0000127 : "=a" (*rEAX),
128 "=S" (*rEBX),
129 "=c" (*rECX),
130 "=d" (*rEDX)
Evan Cheng559806f2006-01-27 08:10:46 +0000131 : "a" (value));
Chris Lattner1e39a152006-01-28 06:05:41 +0000132 return false;
Jeff Cohen41adb0d2006-01-28 18:09:06 +0000133#elif defined(_MSC_VER)
134 __asm {
135 mov eax,value
136 cpuid
137 mov esi,rEAX
138 mov dword ptr [esi],eax
139 mov esi,rEBX
140 mov dword ptr [esi],ebx
141 mov esi,rECX
142 mov dword ptr [esi],ecx
143 mov esi,rEDX
144 mov dword ptr [esi],edx
145 }
146 return false;
Evan Cheng559806f2006-01-27 08:10:46 +0000147#endif
148#endif
Chris Lattner1e39a152006-01-28 06:05:41 +0000149 return true;
Evan Cheng559806f2006-01-27 08:10:46 +0000150}
151
Evan Chenga26eb5e2006-10-06 09:17:41 +0000152void X86Subtarget::AutoDetectSubtargetFeatures() {
Evan Chengb3a7e212006-01-27 19:30:30 +0000153 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
Jeff Cohena3496402006-01-28 18:47:32 +0000154 union {
Jeff Cohen216d2812006-01-28 19:48:34 +0000155 unsigned u[3];
156 char c[12];
Jeff Cohena3496402006-01-28 18:47:32 +0000157 } text;
Chris Lattner3b6f4972006-11-20 18:16:05 +0000158
Evan Cheng751c0e12006-10-16 21:00:37 +0000159 if (X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1))
Evan Chengabc346c2006-10-06 08:21:07 +0000160 return;
Anton Korobeynikov3b5ee732007-03-23 23:46:48 +0000161
162 X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
Chris Lattner3b6f4972006-11-20 18:16:05 +0000163
Anton Korobeynikov3b5ee732007-03-23 23:46:48 +0000164 if ((EDX >> 23) & 0x1) X86SSELevel = MMX;
165 if ((EDX >> 25) & 0x1) X86SSELevel = SSE1;
166 if ((EDX >> 26) & 0x1) X86SSELevel = SSE2;
167 if (ECX & 0x1) X86SSELevel = SSE3;
Bill Wendlingbb1ee052007-04-10 22:10:25 +0000168 if ((ECX >> 9) & 0x1) X86SSELevel = SSSE3;
Nate Begeman63ec90a2008-02-03 07:18:54 +0000169 if ((ECX >> 19) & 0x1) X86SSELevel = SSE41;
170 if ((ECX >> 20) & 0x1) X86SSELevel = SSE42;
Anton Korobeynikov3b5ee732007-03-23 23:46:48 +0000171
Jeff Cohenc3987092007-04-16 21:59:44 +0000172 if (memcmp(text.c, "GenuineIntel", 12) == 0 ||
173 memcmp(text.c, "AuthenticAMD", 12) == 0) {
174 X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
175 HasX86_64 = (EDX >> 29) & 0x1;
176 }
Evan Cheng559806f2006-01-27 08:10:46 +0000177}
Evan Cheng97c7fc32006-01-26 09:53:06 +0000178
Evan Chenga26eb5e2006-10-06 09:17:41 +0000179static const char *GetCurrentX86CPU() {
180 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
Evan Cheng751c0e12006-10-16 21:00:37 +0000181 if (X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX))
Evan Chenga26eb5e2006-10-06 09:17:41 +0000182 return "generic";
183 unsigned Family = (EAX >> 8) & 0xf; // Bits 8 - 11
184 unsigned Model = (EAX >> 4) & 0xf; // Bits 4 - 7
Evan Cheng751c0e12006-10-16 21:00:37 +0000185 X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
Evan Cheng3cff9f82006-10-06 18:57:51 +0000186 bool Em64T = (EDX >> 29) & 0x1;
Evan Chenga26eb5e2006-10-06 09:17:41 +0000187
188 union {
189 unsigned u[3];
190 char c[12];
191 } text;
192
Evan Cheng751c0e12006-10-16 21:00:37 +0000193 X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1);
Evan Chenga26eb5e2006-10-06 09:17:41 +0000194 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
195 switch (Family) {
196 case 3:
197 return "i386";
198 case 4:
199 return "i486";
200 case 5:
201 switch (Model) {
202 case 4: return "pentium-mmx";
203 default: return "pentium";
204 }
205 case 6:
206 switch (Model) {
207 case 1: return "pentiumpro";
208 case 3:
209 case 5:
210 case 6: return "pentium2";
211 case 7:
212 case 8:
213 case 10:
214 case 11: return "pentium3";
215 case 9:
216 case 13: return "pentium-m";
217 case 14: return "yonah";
218 case 15: return "core2";
219 default: return "i686";
220 }
221 case 15: {
222 switch (Model) {
223 case 3:
224 case 4:
225 return (Em64T) ? "nocona" : "prescott";
226 default:
227 return (Em64T) ? "x86-64" : "pentium4";
228 }
229 }
230
231 default:
232 return "generic";
233 }
234 } else if (memcmp(text.c, "AuthenticAMD", 12) == 0) {
235 // FIXME: this poorly matches the generated SubtargetFeatureKV table. There
236 // appears to be no way to generate the wide variety of AMD-specific targets
237 // from the information returned from CPUID.
238 switch (Family) {
239 case 4:
240 return "i486";
241 case 5:
242 switch (Model) {
243 case 6:
244 case 7: return "k6";
245 case 8: return "k6-2";
246 case 9:
247 case 13: return "k6-3";
248 default: return "pentium";
249 }
250 case 6:
251 switch (Model) {
252 case 4: return "athlon-tbird";
253 case 6:
254 case 7:
255 case 8: return "athlon-mp";
256 case 10: return "athlon-xp";
257 default: return "athlon";
258 }
259 case 15:
260 switch (Model) {
Anton Korobeynikov3b5ee732007-03-23 23:46:48 +0000261 case 1: return "opteron";
Evan Chenga26eb5e2006-10-06 09:17:41 +0000262 case 5: return "athlon-fx"; // also opteron
263 default: return "athlon64";
264 }
Evan Chenga26eb5e2006-10-06 09:17:41 +0000265 default:
266 return "generic";
267 }
268 } else {
269 return "generic";
270 }
271}
272
Evan Cheng25ab6902006-09-08 06:48:29 +0000273X86Subtarget::X86Subtarget(const Module &M, const std::string &FS, bool is64Bit)
Evan Cheng8e0055d2006-10-04 18:33:00 +0000274 : AsmFlavor(AsmWriterFlavor)
Duncan Sandsf9a67a82008-11-28 09:29:37 +0000275 , PICStyle(PICStyles::None)
Evan Cheng25ab6902006-09-08 06:48:29 +0000276 , X86SSELevel(NoMMXSSE)
Evan Chengdc008582008-04-16 19:03:02 +0000277 , X863DNowLevel(NoThreeDNow)
Evan Cheng25ab6902006-09-08 06:48:29 +0000278 , HasX86_64(false)
Chris Lattner7ad92d82008-01-02 19:44:55 +0000279 , DarwinVers(0)
Dan Gohman94bbdc82008-05-05 18:43:07 +0000280 , IsLinux(false)
Evan Cheng25ab6902006-09-08 06:48:29 +0000281 , stackAlignment(8)
282 // FIXME: this is a known good value for Yonah. How about others?
Rafael Espindolafc05f402007-10-31 11:52:06 +0000283 , MaxInlineSizeThreshold(128)
Evan Cheng25ab6902006-09-08 06:48:29 +0000284 , Is64Bit(is64Bit)
285 , TargetType(isELF) { // Default to ELF unless otherwise specified.
Mon P Wang63307c32008-05-05 19:05:59 +0000286
Evan Cheng97c7fc32006-01-26 09:53:06 +0000287 // Determine default and user specified characteristics
Evan Chenga26eb5e2006-10-06 09:17:41 +0000288 if (!FS.empty()) {
289 // If feature string is not empty, parse features string.
290 std::string CPU = GetCurrentX86CPU();
291 ParseSubtargetFeatures(FS, CPU);
Chris Lattner3b6f4972006-11-20 18:16:05 +0000292 } else {
293 // Otherwise, use CPUID to auto-detect feature set.
294 AutoDetectSubtargetFeatures();
295 }
296
297 // If requesting codegen for X86-64, make sure that 64-bit and SSE2 features
298 // are enabled. These are available on all x86-64 CPUs.
299 if (Is64Bit) {
300 HasX86_64 = true;
301 if (X86SSELevel < SSE2)
302 X86SSELevel = SSE2;
Evan Cheng25ab6902006-09-08 06:48:29 +0000303 }
304
Nate Begemanfb5792f2005-07-12 01:41:54 +0000305 // Set the boolean corresponding to the current target triple, or the default
306 // if one cannot be determined, to true.
307 const std::string& TT = M.getTargetTriple();
308 if (TT.length() > 5) {
Duncan Sandse51775d2008-01-08 10:06:15 +0000309 size_t Pos;
Chris Lattner7ad92d82008-01-02 19:44:55 +0000310 if ((Pos = TT.find("-darwin")) != std::string::npos) {
Chris Lattnere5600e52005-11-21 22:31:58 +0000311 TargetType = isDarwin;
Chris Lattner7ad92d82008-01-02 19:44:55 +0000312
313 // Compute the darwin version number.
314 if (isdigit(TT[Pos+7]))
315 DarwinVers = atoi(&TT[Pos+7]);
316 else
317 DarwinVers = 8; // Minimum supported darwin is Tiger.
Dan Gohmana779a982008-05-05 00:28:39 +0000318 } else if (TT.find("linux") != std::string::npos) {
Dan Gohman600bf162008-05-05 16:11:31 +0000319 // Linux doesn't imply ELF, but we don't currently support anything else.
320 TargetType = isELF;
321 IsLinux = true;
Chris Lattner7ad92d82008-01-02 19:44:55 +0000322 } else if (TT.find("cygwin") != std::string::npos) {
323 TargetType = isCygwin;
324 } else if (TT.find("mingw") != std::string::npos) {
325 TargetType = isMingw;
326 } else if (TT.find("win32") != std::string::npos) {
Chris Lattnere5600e52005-11-21 22:31:58 +0000327 TargetType = isWindows;
Anton Korobeynikov508f0fd2008-03-22 21:12:53 +0000328 } else if (TT.find("windows") != std::string::npos) {
329 TargetType = isWindows;
Chris Lattner7ad92d82008-01-02 19:44:55 +0000330 }
Nate Begemanfb5792f2005-07-12 01:41:54 +0000331 } else if (TT.empty()) {
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000332#if defined(__CYGWIN__)
Chris Lattnere5600e52005-11-21 22:31:58 +0000333 TargetType = isCygwin;
Anton Korobeynikov2b4f7802008-03-22 21:18:22 +0000334#elif defined(__MINGW32__) || defined(__MINGW64__)
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000335 TargetType = isMingw;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000336#elif defined(__APPLE__)
Chris Lattnere5600e52005-11-21 22:31:58 +0000337 TargetType = isDarwin;
Chris Lattner7ad92d82008-01-02 19:44:55 +0000338#if __APPLE_CC__ > 5400
339 DarwinVers = 9; // GCC 5400+ is Leopard.
340#else
341 DarwinVers = 8; // Minimum supported darwin is Tiger.
342#endif
343
Anton Korobeynikov2b4f7802008-03-22 21:18:22 +0000344#elif defined(_WIN32) || defined(_WIN64)
Chris Lattnere5600e52005-11-21 22:31:58 +0000345 TargetType = isWindows;
Dan Gohmana779a982008-05-05 00:28:39 +0000346#elif defined(__linux__)
347 // Linux doesn't imply ELF, but we don't currently support anything else.
Dan Gohman600bf162008-05-05 16:11:31 +0000348 TargetType = isELF;
349 IsLinux = true;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000350#endif
351 }
352
Chris Lattnercdb341d2006-09-07 22:29:41 +0000353 // If the asm syntax hasn't been overridden on the command line, use whatever
354 // the target wants.
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000355 if (AsmFlavor == X86Subtarget::Unset) {
Chris Lattner7ad92d82008-01-02 19:44:55 +0000356 AsmFlavor = (TargetType == isWindows)
357 ? X86Subtarget::Intel : X86Subtarget::ATT;
Chris Lattnercdb341d2006-09-07 22:29:41 +0000358 }
359
Anton Korobeynikov890fe882008-04-23 18:16:16 +0000360 // Stack alignment is 16 bytes on Darwin (both 32 and 64 bit) and for all 64
361 // bit targets.
362 if (TargetType == isDarwin || Is64Bit)
Nate Begemanfb5792f2005-07-12 01:41:54 +0000363 stackAlignment = 16;
Anton Korobeynikov78c80fd2008-04-12 22:12:22 +0000364
365 if (StackAlignment)
366 stackAlignment = StackAlignment;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000367}