blob: d16319b9e4ecc3e582ac86cd61e7056fcca08284 [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.
Chris Lattnere6c07b52009-07-10 05:45:15 +000041bool X86Subtarget::GVRequiresExtraLoad(const GlobalValue *GV,
Chris Lattnered0dca62009-07-10 05:52:02 +000042 const TargetMachine &TM) const {
Chris Lattner73b5b712009-07-09 03:27:27 +000043 // Windows targets only require an extra load for DLLImport linkage values,
44 // and they need these regardless of whether we're in PIC mode or not.
45 if (isTargetCygMing() || isTargetWindows())
46 return GV->hasDLLImportLinkage();
47
48 if (TM.getRelocationModel() == Reloc::Static ||
49 TM.getCodeModel() == CodeModel::Large)
50 return false;
51
52 if (isTargetDarwin()) {
Chris Lattner73b5b712009-07-09 03:27:27 +000053 bool isDecl = GV->isDeclaration() && !GV->hasNotBeenReadFromBitcode();
54 if (GV->hasHiddenVisibility() &&
55 (Is64Bit || (!isDecl && !GV->hasCommonLinkage())))
56 // If symbol visibility is hidden, the extra load is not needed if
57 // target is x86-64 or the symbol is definitely defined in the current
58 // translation unit.
59 return false;
Chris Lattnered0dca62009-07-10 05:52:02 +000060 return isDecl || GV->isWeakForLinker();
Chris Lattner73b5b712009-07-09 03:27:27 +000061 } else if (isTargetELF()) {
62 // Extra load is needed for all externally visible.
Chris Lattner73b5b712009-07-09 03:27:27 +000063 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
64 return false;
65 return true;
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +000066 }
Dale Johannesen203af582008-12-05 21:47:27 +000067 return false;
68}
69
70/// True if accessing the GV requires a register. This is a superset of the
71/// cases where GVRequiresExtraLoad is true. Some variations of PIC require
72/// a register, but not an extra load.
73bool X86Subtarget::GVRequiresRegister(const GlobalValue *GV,
Chris Lattner04b304c2009-07-10 05:37:11 +000074 const TargetMachine &TM) const {
Chris Lattnered0dca62009-07-10 05:52:02 +000075 if (GVRequiresExtraLoad(GV, TM))
Dale Johannesen203af582008-12-05 21:47:27 +000076 return true;
Chris Lattner04b304c2009-07-10 05:37:11 +000077
Dale Johannesen203af582008-12-05 21:47:27 +000078 // Code below here need only consider cases where GVRequiresExtraLoad
79 // returns false.
80 if (TM.getRelocationModel() == Reloc::PIC_)
Chris Lattner04b304c2009-07-10 05:37:11 +000081 return GV->hasLocalLinkage() || GV->hasExternalLinkage();
Anton Korobeynikov7784ebc2006-11-30 22:42:55 +000082 return false;
83}
84
Bill Wendling6f287b22008-09-30 21:22:07 +000085/// getBZeroEntry - This function returns the name of a function which has an
86/// interface like the non-standard bzero function, if such a function exists on
87/// the current subtarget and it is considered prefereable over memset with zero
88/// passed as the second argument. Otherwise it returns null.
Bill Wendling6e087382008-09-30 22:05:33 +000089const char *X86Subtarget::getBZeroEntry() const {
Dan Gohman68d599d2008-04-01 20:38:36 +000090 // Darwin 10 has a __bzero entry point for this purpose.
91 if (getDarwinVers() >= 10)
Bill Wendling6e087382008-09-30 22:05:33 +000092 return "__bzero";
Dan Gohman68d599d2008-04-01 20:38:36 +000093
94 return 0;
95}
96
Evan Chengd7f666a2009-05-20 04:53:57 +000097/// IsLegalToCallImmediateAddr - Return true if the subtarget allows calls
98/// to immediate address.
99bool X86Subtarget::IsLegalToCallImmediateAddr(const TargetMachine &TM) const {
100 if (Is64Bit)
101 return false;
102 return isTargetELF() || TM.getRelocationModel() == Reloc::Static;
103}
104
Dan Gohman8749b612008-12-16 03:35:01 +0000105/// getSpecialAddressLatency - For targets where it is beneficial to
106/// backschedule instructions that compute addresses, return a value
107/// indicating the number of scheduling cycles of backscheduling that
108/// should be attempted.
109unsigned X86Subtarget::getSpecialAddressLatency() const {
110 // For x86 out-of-order targets, back-schedule address computations so
111 // that loads and stores aren't blocked.
112 // This value was chosen arbitrarily.
113 return 200;
114}
115
Chris Lattner1e39a152006-01-28 06:05:41 +0000116/// GetCpuIDAndInfo - Execute the specified cpuid and return the 4 values in the
117/// specified arguments. If we can't run cpuid on the host, return true.
Evan Cheng751c0e12006-10-16 21:00:37 +0000118bool X86::GetCpuIDAndInfo(unsigned value, unsigned *rEAX, unsigned *rEBX,
119 unsigned *rECX, unsigned *rEDX) {
Chris Lattnerbc583222009-04-25 18:27:23 +0000120#if defined(__x86_64__) || defined(_M_AMD64)
121 #if defined(__GNUC__)
122 // gcc doesn't know cpuid would clobber ebx/rbx. Preseve it manually.
123 asm ("movq\t%%rbx, %%rsi\n\t"
124 "cpuid\n\t"
125 "xchgq\t%%rbx, %%rsi\n\t"
126 : "=a" (*rEAX),
127 "=S" (*rEBX),
128 "=c" (*rECX),
129 "=d" (*rEDX)
130 : "a" (value));
131 return false;
132 #elif defined(_MSC_VER)
133 int registers[4];
134 __cpuid(registers, value);
135 *rEAX = registers[0];
136 *rEBX = registers[1];
137 *rECX = registers[2];
138 *rEDX = registers[3];
139 return false;
140 #endif
Evan Cheng25ab6902006-09-08 06:48:29 +0000141#elif defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86)
Chris Lattnerbc583222009-04-25 18:27:23 +0000142 #if defined(__GNUC__)
143 asm ("movl\t%%ebx, %%esi\n\t"
144 "cpuid\n\t"
145 "xchgl\t%%ebx, %%esi\n\t"
146 : "=a" (*rEAX),
147 "=S" (*rEBX),
148 "=c" (*rECX),
149 "=d" (*rEDX)
150 : "a" (value));
151 return false;
152 #elif defined(_MSC_VER)
153 __asm {
154 mov eax,value
155 cpuid
156 mov esi,rEAX
157 mov dword ptr [esi],eax
158 mov esi,rEBX
159 mov dword ptr [esi],ebx
160 mov esi,rECX
161 mov dword ptr [esi],ecx
162 mov esi,rEDX
163 mov dword ptr [esi],edx
164 }
165 return false;
166 #endif
Evan Cheng559806f2006-01-27 08:10:46 +0000167#endif
Chris Lattner1e39a152006-01-28 06:05:41 +0000168 return true;
Evan Cheng559806f2006-01-27 08:10:46 +0000169}
170
Evan Chengccb69762009-01-02 05:35:45 +0000171static void DetectFamilyModel(unsigned EAX, unsigned &Family, unsigned &Model) {
172 Family = (EAX >> 8) & 0xf; // Bits 8 - 11
173 Model = (EAX >> 4) & 0xf; // Bits 4 - 7
174 if (Family == 6 || Family == 0xf) {
175 if (Family == 0xf)
176 // Examine extended family ID if family ID is F.
177 Family += (EAX >> 20) & 0xff; // Bits 20 - 27
178 // Examine extended model ID if family ID is 6 or F.
179 Model += ((EAX >> 16) & 0xf) << 4; // Bits 16 - 19
180 }
181}
182
Evan Chenga26eb5e2006-10-06 09:17:41 +0000183void X86Subtarget::AutoDetectSubtargetFeatures() {
Evan Chengb3a7e212006-01-27 19:30:30 +0000184 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
Jeff Cohena3496402006-01-28 18:47:32 +0000185 union {
Jeff Cohen216d2812006-01-28 19:48:34 +0000186 unsigned u[3];
187 char c[12];
Jeff Cohena3496402006-01-28 18:47:32 +0000188 } text;
Chris Lattner3b6f4972006-11-20 18:16:05 +0000189
Evan Cheng751c0e12006-10-16 21:00:37 +0000190 if (X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1))
Evan Chengabc346c2006-10-06 08:21:07 +0000191 return;
Anton Korobeynikov3b5ee732007-03-23 23:46:48 +0000192
193 X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
Chris Lattner3b6f4972006-11-20 18:16:05 +0000194
Anton Korobeynikov3b5ee732007-03-23 23:46:48 +0000195 if ((EDX >> 23) & 0x1) X86SSELevel = MMX;
196 if ((EDX >> 25) & 0x1) X86SSELevel = SSE1;
197 if ((EDX >> 26) & 0x1) X86SSELevel = SSE2;
198 if (ECX & 0x1) X86SSELevel = SSE3;
Bill Wendlingbb1ee052007-04-10 22:10:25 +0000199 if ((ECX >> 9) & 0x1) X86SSELevel = SSSE3;
Nate Begeman63ec90a2008-02-03 07:18:54 +0000200 if ((ECX >> 19) & 0x1) X86SSELevel = SSE41;
201 if ((ECX >> 20) & 0x1) X86SSELevel = SSE42;
Anton Korobeynikov3b5ee732007-03-23 23:46:48 +0000202
Evan Chengccb69762009-01-02 05:35:45 +0000203 bool IsIntel = memcmp(text.c, "GenuineIntel", 12) == 0;
204 bool IsAMD = !IsIntel && memcmp(text.c, "AuthenticAMD", 12) == 0;
David Greene343dadb2009-06-26 22:46:54 +0000205
206 HasFMA3 = IsIntel && ((ECX >> 12) & 0x1);
207 HasAVX = ((ECX >> 28) & 0x1);
208
Evan Chengccb69762009-01-02 05:35:45 +0000209 if (IsIntel || IsAMD) {
210 // Determine if bit test memory instructions are slow.
211 unsigned Family = 0;
212 unsigned Model = 0;
213 DetectFamilyModel(EAX, Family, Model);
214 IsBTMemSlow = IsAMD || (Family == 6 && Model >= 13);
215
Jeff Cohenc3987092007-04-16 21:59:44 +0000216 X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
217 HasX86_64 = (EDX >> 29) & 0x1;
Stefanus Du Toit8cf5ab12009-05-26 21:04:35 +0000218 HasSSE4A = IsAMD && ((ECX >> 6) & 0x1);
David Greene343dadb2009-06-26 22:46:54 +0000219 HasFMA4 = IsAMD && ((ECX >> 16) & 0x1);
Jeff Cohenc3987092007-04-16 21:59:44 +0000220 }
Evan Cheng559806f2006-01-27 08:10:46 +0000221}
Evan Cheng97c7fc32006-01-26 09:53:06 +0000222
Evan Chenga26eb5e2006-10-06 09:17:41 +0000223static const char *GetCurrentX86CPU() {
224 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
Evan Cheng751c0e12006-10-16 21:00:37 +0000225 if (X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX))
Evan Chenga26eb5e2006-10-06 09:17:41 +0000226 return "generic";
Evan Chengccb69762009-01-02 05:35:45 +0000227 unsigned Family = 0;
228 unsigned Model = 0;
229 DetectFamilyModel(EAX, Family, Model);
Evan Cheng018b7ee2009-01-02 05:29:20 +0000230
Evan Cheng751c0e12006-10-16 21:00:37 +0000231 X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
Evan Cheng3cff9f82006-10-06 18:57:51 +0000232 bool Em64T = (EDX >> 29) & 0x1;
Stefanus Du Toit8cf5ab12009-05-26 21:04:35 +0000233 bool HasSSE3 = (ECX & 0x1);
Evan Chenga26eb5e2006-10-06 09:17:41 +0000234
235 union {
236 unsigned u[3];
237 char c[12];
238 } text;
239
Evan Cheng751c0e12006-10-16 21:00:37 +0000240 X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1);
Evan Chenga26eb5e2006-10-06 09:17:41 +0000241 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
242 switch (Family) {
243 case 3:
244 return "i386";
245 case 4:
246 return "i486";
247 case 5:
248 switch (Model) {
249 case 4: return "pentium-mmx";
250 default: return "pentium";
251 }
252 case 6:
253 switch (Model) {
254 case 1: return "pentiumpro";
255 case 3:
256 case 5:
257 case 6: return "pentium2";
258 case 7:
259 case 8:
260 case 10:
261 case 11: return "pentium3";
262 case 9:
263 case 13: return "pentium-m";
264 case 14: return "yonah";
Evan Cheng5b925c02009-01-03 04:04:46 +0000265 case 15:
266 case 22: // Celeron M 540
267 return "core2";
268 case 23: // 45nm: Penryn , Wolfdale, Yorkfield (XE)
269 return "penryn";
Evan Chenga26eb5e2006-10-06 09:17:41 +0000270 default: return "i686";
271 }
272 case 15: {
273 switch (Model) {
274 case 3:
275 case 4:
Evan Cheng5b925c02009-01-03 04:04:46 +0000276 case 6: // same as 4, but 65nm
Evan Chenga26eb5e2006-10-06 09:17:41 +0000277 return (Em64T) ? "nocona" : "prescott";
Evan Cheng78771122009-01-05 08:45:01 +0000278 case 26:
279 return "corei7";
Evan Cheng5b925c02009-01-03 04:04:46 +0000280 case 28:
Evan Cheng78771122009-01-05 08:45:01 +0000281 return "atom";
Evan Chenga26eb5e2006-10-06 09:17:41 +0000282 default:
283 return (Em64T) ? "x86-64" : "pentium4";
284 }
285 }
286
287 default:
288 return "generic";
289 }
290 } else if (memcmp(text.c, "AuthenticAMD", 12) == 0) {
291 // FIXME: this poorly matches the generated SubtargetFeatureKV table. There
292 // appears to be no way to generate the wide variety of AMD-specific targets
293 // from the information returned from CPUID.
294 switch (Family) {
295 case 4:
296 return "i486";
297 case 5:
298 switch (Model) {
299 case 6:
300 case 7: return "k6";
301 case 8: return "k6-2";
302 case 9:
303 case 13: return "k6-3";
304 default: return "pentium";
305 }
306 case 6:
307 switch (Model) {
308 case 4: return "athlon-tbird";
309 case 6:
310 case 7:
311 case 8: return "athlon-mp";
312 case 10: return "athlon-xp";
313 default: return "athlon";
314 }
315 case 15:
Stefanus Du Toit8cf5ab12009-05-26 21:04:35 +0000316 if (HasSSE3) {
317 switch (Model) {
318 default: return "k8-sse3";
319 }
320 } else {
321 switch (Model) {
322 case 1: return "opteron";
323 case 5: return "athlon-fx"; // also opteron
324 default: return "athlon64";
325 }
326 }
327 case 16:
Evan Chenga26eb5e2006-10-06 09:17:41 +0000328 switch (Model) {
Stefanus Du Toit8cf5ab12009-05-26 21:04:35 +0000329 default: return "amdfam10";
Evan Chenga26eb5e2006-10-06 09:17:41 +0000330 }
Evan Chenga26eb5e2006-10-06 09:17:41 +0000331 default:
332 return "generic";
333 }
334 } else {
335 return "generic";
336 }
337}
338
Evan Cheng25ab6902006-09-08 06:48:29 +0000339X86Subtarget::X86Subtarget(const Module &M, const std::string &FS, bool is64Bit)
Evan Cheng8e0055d2006-10-04 18:33:00 +0000340 : AsmFlavor(AsmWriterFlavor)
Duncan Sandsf9a67a82008-11-28 09:29:37 +0000341 , PICStyle(PICStyles::None)
Evan Cheng25ab6902006-09-08 06:48:29 +0000342 , X86SSELevel(NoMMXSSE)
Evan Chengdc008582008-04-16 19:03:02 +0000343 , X863DNowLevel(NoThreeDNow)
Evan Cheng25ab6902006-09-08 06:48:29 +0000344 , HasX86_64(false)
David Greene343dadb2009-06-26 22:46:54 +0000345 , HasSSE4A(false)
346 , HasAVX(false)
347 , HasFMA3(false)
348 , HasFMA4(false)
Evan Chengccb69762009-01-02 05:35:45 +0000349 , IsBTMemSlow(false)
Chris Lattner7ad92d82008-01-02 19:44:55 +0000350 , DarwinVers(0)
Dan Gohman94bbdc82008-05-05 18:43:07 +0000351 , IsLinux(false)
Evan Cheng25ab6902006-09-08 06:48:29 +0000352 , stackAlignment(8)
353 // FIXME: this is a known good value for Yonah. How about others?
Rafael Espindolafc05f402007-10-31 11:52:06 +0000354 , MaxInlineSizeThreshold(128)
Evan Cheng25ab6902006-09-08 06:48:29 +0000355 , Is64Bit(is64Bit)
356 , TargetType(isELF) { // Default to ELF unless otherwise specified.
Anton Korobeynikov0eebf652009-06-08 22:53:56 +0000357
358 // default to hard float ABI
359 if (FloatABIType == FloatABI::Default)
360 FloatABIType = FloatABI::Hard;
Mon P Wang63307c32008-05-05 19:05:59 +0000361
Evan Cheng97c7fc32006-01-26 09:53:06 +0000362 // Determine default and user specified characteristics
Evan Chenga26eb5e2006-10-06 09:17:41 +0000363 if (!FS.empty()) {
364 // If feature string is not empty, parse features string.
365 std::string CPU = GetCurrentX86CPU();
366 ParseSubtargetFeatures(FS, CPU);
Torok Edwinb68a88b2009-02-02 21:57:34 +0000367 // All X86-64 CPUs also have SSE2, however user might request no SSE via
368 // -mattr, so don't force SSELevel here.
Chris Lattner3b6f4972006-11-20 18:16:05 +0000369 } else {
370 // Otherwise, use CPUID to auto-detect feature set.
371 AutoDetectSubtargetFeatures();
Dan Gohmanf75e5b42009-02-03 00:04:43 +0000372 // Make sure SSE2 is enabled; it is available on all X86-64 CPUs.
373 if (Is64Bit && X86SSELevel < SSE2)
374 X86SSELevel = SSE2;
Evan Cheng25ab6902006-09-08 06:48:29 +0000375 }
Dan Gohmanf75e5b42009-02-03 00:04:43 +0000376
Dan Gohman605679f2009-02-03 18:53:21 +0000377 // If requesting codegen for X86-64, make sure that 64-bit features
378 // are enabled.
379 if (Is64Bit)
380 HasX86_64 = true;
381
Evan Cheng5b925c02009-01-03 04:04:46 +0000382 DOUT << "Subtarget features: SSELevel " << X86SSELevel
383 << ", 3DNowLevel " << X863DNowLevel
384 << ", 64bit " << HasX86_64 << "\n";
Dan Gohmanf75e5b42009-02-03 00:04:43 +0000385 assert((!Is64Bit || HasX86_64) &&
386 "64-bit code requested on a subtarget that doesn't support it!");
Evan Cheng25ab6902006-09-08 06:48:29 +0000387
Nate Begemanfb5792f2005-07-12 01:41:54 +0000388 // Set the boolean corresponding to the current target triple, or the default
389 // if one cannot be determined, to true.
390 const std::string& TT = M.getTargetTriple();
391 if (TT.length() > 5) {
Duncan Sandse51775d2008-01-08 10:06:15 +0000392 size_t Pos;
Chris Lattner7ad92d82008-01-02 19:44:55 +0000393 if ((Pos = TT.find("-darwin")) != std::string::npos) {
Chris Lattnere5600e52005-11-21 22:31:58 +0000394 TargetType = isDarwin;
Chris Lattner7ad92d82008-01-02 19:44:55 +0000395
396 // Compute the darwin version number.
397 if (isdigit(TT[Pos+7]))
398 DarwinVers = atoi(&TT[Pos+7]);
399 else
400 DarwinVers = 8; // Minimum supported darwin is Tiger.
Dan Gohmana779a982008-05-05 00:28:39 +0000401 } else if (TT.find("linux") != std::string::npos) {
Dan Gohman600bf162008-05-05 16:11:31 +0000402 // Linux doesn't imply ELF, but we don't currently support anything else.
403 TargetType = isELF;
404 IsLinux = true;
Chris Lattner7ad92d82008-01-02 19:44:55 +0000405 } else if (TT.find("cygwin") != std::string::npos) {
406 TargetType = isCygwin;
407 } else if (TT.find("mingw") != std::string::npos) {
408 TargetType = isMingw;
409 } else if (TT.find("win32") != std::string::npos) {
Chris Lattnere5600e52005-11-21 22:31:58 +0000410 TargetType = isWindows;
Anton Korobeynikov508f0fd2008-03-22 21:12:53 +0000411 } else if (TT.find("windows") != std::string::npos) {
412 TargetType = isWindows;
Chris Lattner7ad92d82008-01-02 19:44:55 +0000413 }
Mon P Wang9feb5dd2009-02-28 00:25:30 +0000414 else if (TT.find("-cl") != std::string::npos) {
415 TargetType = isDarwin;
416 DarwinVers = 9;
417 }
Nate Begemanfb5792f2005-07-12 01:41:54 +0000418 } else if (TT.empty()) {
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000419#if defined(__CYGWIN__)
Chris Lattnere5600e52005-11-21 22:31:58 +0000420 TargetType = isCygwin;
Anton Korobeynikov2b4f7802008-03-22 21:18:22 +0000421#elif defined(__MINGW32__) || defined(__MINGW64__)
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000422 TargetType = isMingw;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000423#elif defined(__APPLE__)
Chris Lattnere5600e52005-11-21 22:31:58 +0000424 TargetType = isDarwin;
Chris Lattner7ad92d82008-01-02 19:44:55 +0000425#if __APPLE_CC__ > 5400
426 DarwinVers = 9; // GCC 5400+ is Leopard.
427#else
428 DarwinVers = 8; // Minimum supported darwin is Tiger.
429#endif
430
Anton Korobeynikov2b4f7802008-03-22 21:18:22 +0000431#elif defined(_WIN32) || defined(_WIN64)
Chris Lattnere5600e52005-11-21 22:31:58 +0000432 TargetType = isWindows;
Dan Gohmana779a982008-05-05 00:28:39 +0000433#elif defined(__linux__)
434 // Linux doesn't imply ELF, but we don't currently support anything else.
Dan Gohman600bf162008-05-05 16:11:31 +0000435 TargetType = isELF;
436 IsLinux = true;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000437#endif
438 }
439
Chris Lattnercdb341d2006-09-07 22:29:41 +0000440 // If the asm syntax hasn't been overridden on the command line, use whatever
441 // the target wants.
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000442 if (AsmFlavor == X86Subtarget::Unset) {
Chris Lattner7ad92d82008-01-02 19:44:55 +0000443 AsmFlavor = (TargetType == isWindows)
444 ? X86Subtarget::Intel : X86Subtarget::ATT;
Chris Lattnercdb341d2006-09-07 22:29:41 +0000445 }
446
Anton Korobeynikov890fe882008-04-23 18:16:16 +0000447 // Stack alignment is 16 bytes on Darwin (both 32 and 64 bit) and for all 64
448 // bit targets.
449 if (TargetType == isDarwin || Is64Bit)
Nate Begemanfb5792f2005-07-12 01:41:54 +0000450 stackAlignment = 16;
Anton Korobeynikov78c80fd2008-04-12 22:12:22 +0000451
452 if (StackAlignment)
453 stackAlignment = StackAlignment;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000454}