blob: e4cd288470e2f868adca15095218ee208fedb4ca [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
Evan Cheng5b925c02009-01-03 04:04:46 +000014#define DEBUG_TYPE "subtarget"
Nate Begemanfb5792f2005-07-12 01:41:54 +000015#include "X86Subtarget.h"
Evan Chenga26eb5e2006-10-06 09:17:41 +000016#include "X86GenSubtarget.inc"
Nate Begemanfb5792f2005-07-12 01:41:54 +000017#include "llvm/Module.h"
Jim Laskey05a059d2006-09-07 12:23:47 +000018#include "llvm/Support/CommandLine.h"
Evan Cheng5b925c02009-01-03 04:04:46 +000019#include "llvm/Support/Debug.h"
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +000020#include "llvm/Target/TargetMachine.h"
Anton Korobeynikov45709ae2008-04-23 18:18:10 +000021#include "llvm/Target/TargetOptions.h"
Nate Begemanfb5792f2005-07-12 01:41:54 +000022using namespace llvm;
23
Chris Lattnerbc583222009-04-25 18:27:23 +000024#if defined(_MSC_VER)
25 #include <intrin.h>
26#endif
27
Dan Gohman844731a2008-05-13 00:00:25 +000028static cl::opt<X86Subtarget::AsmWriterFlavorTy>
Anton Korobeynikov7f705592007-01-12 19:20:47 +000029AsmWriterFlavor("x86-asm-syntax", cl::init(X86Subtarget::Unset),
Jim Laskey05a059d2006-09-07 12:23:47 +000030 cl::desc("Choose style of code to emit from X86 backend:"),
31 cl::values(
Dan Gohmanb8cab922008-10-14 20:25:08 +000032 clEnumValN(X86Subtarget::ATT, "att", "Emit AT&T-style assembly"),
33 clEnumValN(X86Subtarget::Intel, "intel", "Emit Intel-style assembly"),
Chris Lattnercdb341d2006-09-07 22:29:41 +000034 clEnumValEnd));
Jim Laskey05a059d2006-09-07 12:23:47 +000035
Evan Cheng751c0e12006-10-16 21:00:37 +000036
Anton Korobeynikov7784ebc2006-11-30 22:42:55 +000037/// True if accessing the GV requires an extra load. For Windows, dllimported
38/// symbols are indirect, loading the value at address GV rather then the
39/// value of GV itself. This means that the GlobalAddress must be in the base
40/// or index register of the address, not the GV offset field.
Anton Korobeynikov48c8e3d2006-12-20 20:40:30 +000041bool X86Subtarget::GVRequiresExtraLoad(const GlobalValue* GV,
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +000042 const TargetMachine& TM,
Chris Lattner73b5b712009-07-09 03:27:27 +000043 bool isDirectCall) const {
44 // Windows targets only require an extra load for DLLImport linkage values,
45 // and they need these regardless of whether we're in PIC mode or not.
46 if (isTargetCygMing() || isTargetWindows())
47 return GV->hasDLLImportLinkage();
48
49 if (TM.getRelocationModel() == Reloc::Static ||
50 TM.getCodeModel() == CodeModel::Large)
51 return false;
52
53 if (isTargetDarwin()) {
54 if (isDirectCall)
55 return false;
56 bool isDecl = GV->isDeclaration() && !GV->hasNotBeenReadFromBitcode();
57 if (GV->hasHiddenVisibility() &&
58 (Is64Bit || (!isDecl && !GV->hasCommonLinkage())))
59 // If symbol visibility is hidden, the extra load is not needed if
60 // target is x86-64 or the symbol is definitely defined in the current
61 // translation unit.
62 return false;
63 return !isDirectCall && (isDecl || GV->isWeakForLinker());
64 } else if (isTargetELF()) {
65 // Extra load is needed for all externally visible.
66 if (isDirectCall)
67 return false;
68 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
69 return false;
70 return true;
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +000071 }
Dale Johannesen203af582008-12-05 21:47:27 +000072 return false;
73}
74
75/// True if accessing the GV requires a register. This is a superset of the
76/// cases where GVRequiresExtraLoad is true. Some variations of PIC require
77/// a register, but not an extra load.
78bool X86Subtarget::GVRequiresRegister(const GlobalValue *GV,
Evan Chengd7f666a2009-05-20 04:53:57 +000079 const TargetMachine& TM,
80 bool isDirectCall) const
Dale Johannesen203af582008-12-05 21:47:27 +000081{
82 if (GVRequiresExtraLoad(GV, TM, isDirectCall))
83 return true;
84 // Code below here need only consider cases where GVRequiresExtraLoad
85 // returns false.
86 if (TM.getRelocationModel() == Reloc::PIC_)
87 return !isDirectCall &&
Rafael Espindolabb46f522009-01-15 20:18:42 +000088 (GV->hasLocalLinkage() || GV->hasExternalLinkage());
Anton Korobeynikov7784ebc2006-11-30 22:42:55 +000089 return false;
90}
91
Bill Wendling6f287b22008-09-30 21:22:07 +000092/// getBZeroEntry - This function returns the name of a function which has an
93/// interface like the non-standard bzero function, if such a function exists on
94/// the current subtarget and it is considered prefereable over memset with zero
95/// passed as the second argument. Otherwise it returns null.
Bill Wendling6e087382008-09-30 22:05:33 +000096const char *X86Subtarget::getBZeroEntry() const {
Dan Gohman68d599d2008-04-01 20:38:36 +000097 // Darwin 10 has a __bzero entry point for this purpose.
98 if (getDarwinVers() >= 10)
Bill Wendling6e087382008-09-30 22:05:33 +000099 return "__bzero";
Dan Gohman68d599d2008-04-01 20:38:36 +0000100
101 return 0;
102}
103
Evan Chengd7f666a2009-05-20 04:53:57 +0000104/// IsLegalToCallImmediateAddr - Return true if the subtarget allows calls
105/// to immediate address.
106bool X86Subtarget::IsLegalToCallImmediateAddr(const TargetMachine &TM) const {
107 if (Is64Bit)
108 return false;
109 return isTargetELF() || TM.getRelocationModel() == Reloc::Static;
110}
111
Dan Gohman8749b612008-12-16 03:35:01 +0000112/// getSpecialAddressLatency - For targets where it is beneficial to
113/// backschedule instructions that compute addresses, return a value
114/// indicating the number of scheduling cycles of backscheduling that
115/// should be attempted.
116unsigned X86Subtarget::getSpecialAddressLatency() const {
117 // For x86 out-of-order targets, back-schedule address computations so
118 // that loads and stores aren't blocked.
119 // This value was chosen arbitrarily.
120 return 200;
121}
122
Chris Lattner1e39a152006-01-28 06:05:41 +0000123/// GetCpuIDAndInfo - Execute the specified cpuid and return the 4 values in the
124/// specified arguments. If we can't run cpuid on the host, return true.
Evan Cheng751c0e12006-10-16 21:00:37 +0000125bool X86::GetCpuIDAndInfo(unsigned value, unsigned *rEAX, unsigned *rEBX,
126 unsigned *rECX, unsigned *rEDX) {
Chris Lattnerbc583222009-04-25 18:27:23 +0000127#if defined(__x86_64__) || defined(_M_AMD64)
128 #if defined(__GNUC__)
129 // gcc doesn't know cpuid would clobber ebx/rbx. Preseve it manually.
130 asm ("movq\t%%rbx, %%rsi\n\t"
131 "cpuid\n\t"
132 "xchgq\t%%rbx, %%rsi\n\t"
133 : "=a" (*rEAX),
134 "=S" (*rEBX),
135 "=c" (*rECX),
136 "=d" (*rEDX)
137 : "a" (value));
138 return false;
139 #elif defined(_MSC_VER)
140 int registers[4];
141 __cpuid(registers, value);
142 *rEAX = registers[0];
143 *rEBX = registers[1];
144 *rECX = registers[2];
145 *rEDX = registers[3];
146 return false;
147 #endif
Evan Cheng25ab6902006-09-08 06:48:29 +0000148#elif defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86)
Chris Lattnerbc583222009-04-25 18:27:23 +0000149 #if defined(__GNUC__)
150 asm ("movl\t%%ebx, %%esi\n\t"
151 "cpuid\n\t"
152 "xchgl\t%%ebx, %%esi\n\t"
153 : "=a" (*rEAX),
154 "=S" (*rEBX),
155 "=c" (*rECX),
156 "=d" (*rEDX)
157 : "a" (value));
158 return false;
159 #elif defined(_MSC_VER)
160 __asm {
161 mov eax,value
162 cpuid
163 mov esi,rEAX
164 mov dword ptr [esi],eax
165 mov esi,rEBX
166 mov dword ptr [esi],ebx
167 mov esi,rECX
168 mov dword ptr [esi],ecx
169 mov esi,rEDX
170 mov dword ptr [esi],edx
171 }
172 return false;
173 #endif
Evan Cheng559806f2006-01-27 08:10:46 +0000174#endif
Chris Lattner1e39a152006-01-28 06:05:41 +0000175 return true;
Evan Cheng559806f2006-01-27 08:10:46 +0000176}
177
Evan Chengccb69762009-01-02 05:35:45 +0000178static void DetectFamilyModel(unsigned EAX, unsigned &Family, unsigned &Model) {
179 Family = (EAX >> 8) & 0xf; // Bits 8 - 11
180 Model = (EAX >> 4) & 0xf; // Bits 4 - 7
181 if (Family == 6 || Family == 0xf) {
182 if (Family == 0xf)
183 // Examine extended family ID if family ID is F.
184 Family += (EAX >> 20) & 0xff; // Bits 20 - 27
185 // Examine extended model ID if family ID is 6 or F.
186 Model += ((EAX >> 16) & 0xf) << 4; // Bits 16 - 19
187 }
188}
189
Evan Chenga26eb5e2006-10-06 09:17:41 +0000190void X86Subtarget::AutoDetectSubtargetFeatures() {
Evan Chengb3a7e212006-01-27 19:30:30 +0000191 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
Jeff Cohena3496402006-01-28 18:47:32 +0000192 union {
Jeff Cohen216d2812006-01-28 19:48:34 +0000193 unsigned u[3];
194 char c[12];
Jeff Cohena3496402006-01-28 18:47:32 +0000195 } text;
Chris Lattner3b6f4972006-11-20 18:16:05 +0000196
Evan Cheng751c0e12006-10-16 21:00:37 +0000197 if (X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1))
Evan Chengabc346c2006-10-06 08:21:07 +0000198 return;
Anton Korobeynikov3b5ee732007-03-23 23:46:48 +0000199
200 X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
Chris Lattner3b6f4972006-11-20 18:16:05 +0000201
Anton Korobeynikov3b5ee732007-03-23 23:46:48 +0000202 if ((EDX >> 23) & 0x1) X86SSELevel = MMX;
203 if ((EDX >> 25) & 0x1) X86SSELevel = SSE1;
204 if ((EDX >> 26) & 0x1) X86SSELevel = SSE2;
205 if (ECX & 0x1) X86SSELevel = SSE3;
Bill Wendlingbb1ee052007-04-10 22:10:25 +0000206 if ((ECX >> 9) & 0x1) X86SSELevel = SSSE3;
Nate Begeman63ec90a2008-02-03 07:18:54 +0000207 if ((ECX >> 19) & 0x1) X86SSELevel = SSE41;
208 if ((ECX >> 20) & 0x1) X86SSELevel = SSE42;
Anton Korobeynikov3b5ee732007-03-23 23:46:48 +0000209
Evan Chengccb69762009-01-02 05:35:45 +0000210 bool IsIntel = memcmp(text.c, "GenuineIntel", 12) == 0;
211 bool IsAMD = !IsIntel && memcmp(text.c, "AuthenticAMD", 12) == 0;
David Greene343dadb2009-06-26 22:46:54 +0000212
213 HasFMA3 = IsIntel && ((ECX >> 12) & 0x1);
214 HasAVX = ((ECX >> 28) & 0x1);
215
Evan Chengccb69762009-01-02 05:35:45 +0000216 if (IsIntel || IsAMD) {
217 // Determine if bit test memory instructions are slow.
218 unsigned Family = 0;
219 unsigned Model = 0;
220 DetectFamilyModel(EAX, Family, Model);
221 IsBTMemSlow = IsAMD || (Family == 6 && Model >= 13);
222
Jeff Cohenc3987092007-04-16 21:59:44 +0000223 X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
224 HasX86_64 = (EDX >> 29) & 0x1;
Stefanus Du Toit8cf5ab12009-05-26 21:04:35 +0000225 HasSSE4A = IsAMD && ((ECX >> 6) & 0x1);
David Greene343dadb2009-06-26 22:46:54 +0000226 HasFMA4 = IsAMD && ((ECX >> 16) & 0x1);
Jeff Cohenc3987092007-04-16 21:59:44 +0000227 }
Evan Cheng559806f2006-01-27 08:10:46 +0000228}
Evan Cheng97c7fc32006-01-26 09:53:06 +0000229
Evan Chenga26eb5e2006-10-06 09:17:41 +0000230static const char *GetCurrentX86CPU() {
231 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
Evan Cheng751c0e12006-10-16 21:00:37 +0000232 if (X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX))
Evan Chenga26eb5e2006-10-06 09:17:41 +0000233 return "generic";
Evan Chengccb69762009-01-02 05:35:45 +0000234 unsigned Family = 0;
235 unsigned Model = 0;
236 DetectFamilyModel(EAX, Family, Model);
Evan Cheng018b7ee2009-01-02 05:29:20 +0000237
Evan Cheng751c0e12006-10-16 21:00:37 +0000238 X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
Evan Cheng3cff9f82006-10-06 18:57:51 +0000239 bool Em64T = (EDX >> 29) & 0x1;
Stefanus Du Toit8cf5ab12009-05-26 21:04:35 +0000240 bool HasSSE3 = (ECX & 0x1);
Evan Chenga26eb5e2006-10-06 09:17:41 +0000241
242 union {
243 unsigned u[3];
244 char c[12];
245 } text;
246
Evan Cheng751c0e12006-10-16 21:00:37 +0000247 X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1);
Evan Chenga26eb5e2006-10-06 09:17:41 +0000248 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
249 switch (Family) {
250 case 3:
251 return "i386";
252 case 4:
253 return "i486";
254 case 5:
255 switch (Model) {
256 case 4: return "pentium-mmx";
257 default: return "pentium";
258 }
259 case 6:
260 switch (Model) {
261 case 1: return "pentiumpro";
262 case 3:
263 case 5:
264 case 6: return "pentium2";
265 case 7:
266 case 8:
267 case 10:
268 case 11: return "pentium3";
269 case 9:
270 case 13: return "pentium-m";
271 case 14: return "yonah";
Evan Cheng5b925c02009-01-03 04:04:46 +0000272 case 15:
273 case 22: // Celeron M 540
274 return "core2";
275 case 23: // 45nm: Penryn , Wolfdale, Yorkfield (XE)
276 return "penryn";
Evan Chenga26eb5e2006-10-06 09:17:41 +0000277 default: return "i686";
278 }
279 case 15: {
280 switch (Model) {
281 case 3:
282 case 4:
Evan Cheng5b925c02009-01-03 04:04:46 +0000283 case 6: // same as 4, but 65nm
Evan Chenga26eb5e2006-10-06 09:17:41 +0000284 return (Em64T) ? "nocona" : "prescott";
Evan Cheng78771122009-01-05 08:45:01 +0000285 case 26:
286 return "corei7";
Evan Cheng5b925c02009-01-03 04:04:46 +0000287 case 28:
Evan Cheng78771122009-01-05 08:45:01 +0000288 return "atom";
Evan Chenga26eb5e2006-10-06 09:17:41 +0000289 default:
290 return (Em64T) ? "x86-64" : "pentium4";
291 }
292 }
293
294 default:
295 return "generic";
296 }
297 } else if (memcmp(text.c, "AuthenticAMD", 12) == 0) {
298 // FIXME: this poorly matches the generated SubtargetFeatureKV table. There
299 // appears to be no way to generate the wide variety of AMD-specific targets
300 // from the information returned from CPUID.
301 switch (Family) {
302 case 4:
303 return "i486";
304 case 5:
305 switch (Model) {
306 case 6:
307 case 7: return "k6";
308 case 8: return "k6-2";
309 case 9:
310 case 13: return "k6-3";
311 default: return "pentium";
312 }
313 case 6:
314 switch (Model) {
315 case 4: return "athlon-tbird";
316 case 6:
317 case 7:
318 case 8: return "athlon-mp";
319 case 10: return "athlon-xp";
320 default: return "athlon";
321 }
322 case 15:
Stefanus Du Toit8cf5ab12009-05-26 21:04:35 +0000323 if (HasSSE3) {
324 switch (Model) {
325 default: return "k8-sse3";
326 }
327 } else {
328 switch (Model) {
329 case 1: return "opteron";
330 case 5: return "athlon-fx"; // also opteron
331 default: return "athlon64";
332 }
333 }
334 case 16:
Evan Chenga26eb5e2006-10-06 09:17:41 +0000335 switch (Model) {
Stefanus Du Toit8cf5ab12009-05-26 21:04:35 +0000336 default: return "amdfam10";
Evan Chenga26eb5e2006-10-06 09:17:41 +0000337 }
Evan Chenga26eb5e2006-10-06 09:17:41 +0000338 default:
339 return "generic";
340 }
341 } else {
342 return "generic";
343 }
344}
345
Evan Cheng25ab6902006-09-08 06:48:29 +0000346X86Subtarget::X86Subtarget(const Module &M, const std::string &FS, bool is64Bit)
Evan Cheng8e0055d2006-10-04 18:33:00 +0000347 : AsmFlavor(AsmWriterFlavor)
Duncan Sandsf9a67a82008-11-28 09:29:37 +0000348 , PICStyle(PICStyles::None)
Evan Cheng25ab6902006-09-08 06:48:29 +0000349 , X86SSELevel(NoMMXSSE)
Evan Chengdc008582008-04-16 19:03:02 +0000350 , X863DNowLevel(NoThreeDNow)
Evan Cheng25ab6902006-09-08 06:48:29 +0000351 , HasX86_64(false)
David Greene343dadb2009-06-26 22:46:54 +0000352 , HasSSE4A(false)
353 , HasAVX(false)
354 , HasFMA3(false)
355 , HasFMA4(false)
Evan Chengccb69762009-01-02 05:35:45 +0000356 , IsBTMemSlow(false)
Chris Lattner7ad92d82008-01-02 19:44:55 +0000357 , DarwinVers(0)
Dan Gohman94bbdc82008-05-05 18:43:07 +0000358 , IsLinux(false)
Evan Cheng25ab6902006-09-08 06:48:29 +0000359 , stackAlignment(8)
360 // FIXME: this is a known good value for Yonah. How about others?
Rafael Espindolafc05f402007-10-31 11:52:06 +0000361 , MaxInlineSizeThreshold(128)
Evan Cheng25ab6902006-09-08 06:48:29 +0000362 , Is64Bit(is64Bit)
363 , TargetType(isELF) { // Default to ELF unless otherwise specified.
Anton Korobeynikov0eebf652009-06-08 22:53:56 +0000364
365 // default to hard float ABI
366 if (FloatABIType == FloatABI::Default)
367 FloatABIType = FloatABI::Hard;
Mon P Wang63307c32008-05-05 19:05:59 +0000368
Evan Cheng97c7fc32006-01-26 09:53:06 +0000369 // Determine default and user specified characteristics
Evan Chenga26eb5e2006-10-06 09:17:41 +0000370 if (!FS.empty()) {
371 // If feature string is not empty, parse features string.
372 std::string CPU = GetCurrentX86CPU();
373 ParseSubtargetFeatures(FS, CPU);
Torok Edwinb68a88b2009-02-02 21:57:34 +0000374 // All X86-64 CPUs also have SSE2, however user might request no SSE via
375 // -mattr, so don't force SSELevel here.
Chris Lattner3b6f4972006-11-20 18:16:05 +0000376 } else {
377 // Otherwise, use CPUID to auto-detect feature set.
378 AutoDetectSubtargetFeatures();
Dan Gohmanf75e5b42009-02-03 00:04:43 +0000379 // Make sure SSE2 is enabled; it is available on all X86-64 CPUs.
380 if (Is64Bit && X86SSELevel < SSE2)
381 X86SSELevel = SSE2;
Evan Cheng25ab6902006-09-08 06:48:29 +0000382 }
Dan Gohmanf75e5b42009-02-03 00:04:43 +0000383
Dan Gohman605679f2009-02-03 18:53:21 +0000384 // If requesting codegen for X86-64, make sure that 64-bit features
385 // are enabled.
386 if (Is64Bit)
387 HasX86_64 = true;
388
Evan Cheng5b925c02009-01-03 04:04:46 +0000389 DOUT << "Subtarget features: SSELevel " << X86SSELevel
390 << ", 3DNowLevel " << X863DNowLevel
391 << ", 64bit " << HasX86_64 << "\n";
Dan Gohmanf75e5b42009-02-03 00:04:43 +0000392 assert((!Is64Bit || HasX86_64) &&
393 "64-bit code requested on a subtarget that doesn't support it!");
Evan Cheng25ab6902006-09-08 06:48:29 +0000394
Nate Begemanfb5792f2005-07-12 01:41:54 +0000395 // Set the boolean corresponding to the current target triple, or the default
396 // if one cannot be determined, to true.
397 const std::string& TT = M.getTargetTriple();
398 if (TT.length() > 5) {
Duncan Sandse51775d2008-01-08 10:06:15 +0000399 size_t Pos;
Chris Lattner7ad92d82008-01-02 19:44:55 +0000400 if ((Pos = TT.find("-darwin")) != std::string::npos) {
Chris Lattnere5600e52005-11-21 22:31:58 +0000401 TargetType = isDarwin;
Chris Lattner7ad92d82008-01-02 19:44:55 +0000402
403 // Compute the darwin version number.
404 if (isdigit(TT[Pos+7]))
405 DarwinVers = atoi(&TT[Pos+7]);
406 else
407 DarwinVers = 8; // Minimum supported darwin is Tiger.
Dan Gohmana779a982008-05-05 00:28:39 +0000408 } else if (TT.find("linux") != std::string::npos) {
Dan Gohman600bf162008-05-05 16:11:31 +0000409 // Linux doesn't imply ELF, but we don't currently support anything else.
410 TargetType = isELF;
411 IsLinux = true;
Chris Lattner7ad92d82008-01-02 19:44:55 +0000412 } else if (TT.find("cygwin") != std::string::npos) {
413 TargetType = isCygwin;
414 } else if (TT.find("mingw") != std::string::npos) {
415 TargetType = isMingw;
416 } else if (TT.find("win32") != std::string::npos) {
Chris Lattnere5600e52005-11-21 22:31:58 +0000417 TargetType = isWindows;
Anton Korobeynikov508f0fd2008-03-22 21:12:53 +0000418 } else if (TT.find("windows") != std::string::npos) {
419 TargetType = isWindows;
Chris Lattner7ad92d82008-01-02 19:44:55 +0000420 }
Mon P Wang9feb5dd2009-02-28 00:25:30 +0000421 else if (TT.find("-cl") != std::string::npos) {
422 TargetType = isDarwin;
423 DarwinVers = 9;
424 }
Nate Begemanfb5792f2005-07-12 01:41:54 +0000425 } else if (TT.empty()) {
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000426#if defined(__CYGWIN__)
Chris Lattnere5600e52005-11-21 22:31:58 +0000427 TargetType = isCygwin;
Anton Korobeynikov2b4f7802008-03-22 21:18:22 +0000428#elif defined(__MINGW32__) || defined(__MINGW64__)
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000429 TargetType = isMingw;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000430#elif defined(__APPLE__)
Chris Lattnere5600e52005-11-21 22:31:58 +0000431 TargetType = isDarwin;
Chris Lattner7ad92d82008-01-02 19:44:55 +0000432#if __APPLE_CC__ > 5400
433 DarwinVers = 9; // GCC 5400+ is Leopard.
434#else
435 DarwinVers = 8; // Minimum supported darwin is Tiger.
436#endif
437
Anton Korobeynikov2b4f7802008-03-22 21:18:22 +0000438#elif defined(_WIN32) || defined(_WIN64)
Chris Lattnere5600e52005-11-21 22:31:58 +0000439 TargetType = isWindows;
Dan Gohmana779a982008-05-05 00:28:39 +0000440#elif defined(__linux__)
441 // Linux doesn't imply ELF, but we don't currently support anything else.
Dan Gohman600bf162008-05-05 16:11:31 +0000442 TargetType = isELF;
443 IsLinux = true;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000444#endif
445 }
446
Chris Lattnercdb341d2006-09-07 22:29:41 +0000447 // If the asm syntax hasn't been overridden on the command line, use whatever
448 // the target wants.
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000449 if (AsmFlavor == X86Subtarget::Unset) {
Chris Lattner7ad92d82008-01-02 19:44:55 +0000450 AsmFlavor = (TargetType == isWindows)
451 ? X86Subtarget::Intel : X86Subtarget::ATT;
Chris Lattnercdb341d2006-09-07 22:29:41 +0000452 }
453
Anton Korobeynikov890fe882008-04-23 18:16:16 +0000454 // Stack alignment is 16 bytes on Darwin (both 32 and 64 bit) and for all 64
455 // bit targets.
456 if (TargetType == isDarwin || Is64Bit)
Nate Begemanfb5792f2005-07-12 01:41:54 +0000457 stackAlignment = 16;
Anton Korobeynikov78c80fd2008-04-12 22:12:22 +0000458
459 if (StackAlignment)
460 stackAlignment = StackAlignment;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000461}