blob: 0a015ee7e587966e5c459355561bff85fa27acf1 [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"
Chris Lattnerd392bd92009-07-10 07:20:05 +000016#include "X86InstrInfo.h"
Evan Chenga26eb5e2006-10-06 09:17:41 +000017#include "X86GenSubtarget.inc"
Daniel Dunbar3be03402009-08-02 22:11:08 +000018#include "llvm/GlobalValue.h"
Evan Cheng5b925c02009-01-03 04:04:46 +000019#include "llvm/Support/Debug.h"
Bill Wendling0ea8bf32009-08-03 00:11:34 +000020#include "llvm/Support/raw_ostream.h"
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +000021#include "llvm/Target/TargetMachine.h"
Anton Korobeynikov45709ae2008-04-23 18:18:10 +000022#include "llvm/Target/TargetOptions.h"
Nate Begemanfb5792f2005-07-12 01:41:54 +000023using namespace llvm;
24
Chris Lattnerbc583222009-04-25 18:27:23 +000025#if defined(_MSC_VER)
Bill Wendling0ea8bf32009-08-03 00:11:34 +000026#include <intrin.h>
Chris Lattnerbc583222009-04-25 18:27:23 +000027#endif
28
Chris Lattnerd392bd92009-07-10 07:20:05 +000029/// ClassifyGlobalReference - Classify a global variable reference for the
30/// current subtarget according to how we should reference it in a non-pcrel
31/// context.
32unsigned char X86Subtarget::
33ClassifyGlobalReference(const GlobalValue *GV, const TargetMachine &TM) const {
34 // DLLImport only exists on windows, it is implemented as a load from a
35 // DLLIMPORT stub.
36 if (GV->hasDLLImportLinkage())
37 return X86II::MO_DLLIMPORT;
38
Evan Chenga82b22c2009-07-16 22:53:10 +000039 // GV with ghost linkage (in JIT lazy compilation mode) do not require an
40 // extra load from stub.
41 bool isDecl = GV->isDeclaration() && !GV->hasNotBeenReadFromBitcode();
42
Chris Lattnerd392bd92009-07-10 07:20:05 +000043 // X86-64 in PIC mode.
44 if (isPICStyleRIPRel()) {
45 // Large model never uses stubs.
46 if (TM.getCodeModel() == CodeModel::Large)
47 return X86II::MO_NO_FLAG;
48
Chris Lattnerc7822322009-07-10 21:01:59 +000049 if (isTargetDarwin()) {
50 // If symbol visibility is hidden, the extra load is not needed if
51 // target is x86-64 or the symbol is definitely defined in the current
52 // translation unit.
53 if (GV->hasDefaultVisibility() &&
Evan Chenga82b22c2009-07-16 22:53:10 +000054 (isDecl || GV->isWeakForLinker()))
Chris Lattnerc7822322009-07-10 21:01:59 +000055 return X86II::MO_GOTPCREL;
56 } else {
57 assert(isTargetELF() && "Unknown rip-relative target");
Chris Lattnerd392bd92009-07-10 07:20:05 +000058
Chris Lattnerc7822322009-07-10 21:01:59 +000059 // Extra load is needed for all externally visible.
60 if (!GV->hasLocalLinkage() && GV->hasDefaultVisibility())
61 return X86II::MO_GOTPCREL;
62 }
Chris Lattnerd392bd92009-07-10 07:20:05 +000063
64 return X86II::MO_NO_FLAG;
65 }
66
67 if (isPICStyleGOT()) { // 32-bit ELF targets.
68 // Extra load is needed for all externally visible.
69 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
70 return X86II::MO_GOTOFF;
71 return X86II::MO_GOT;
72 }
73
Chris Lattnere2c92082009-07-10 21:00:45 +000074 if (isPICStyleStubPIC()) { // Darwin/32 in PIC mode.
Chris Lattner84853a12009-07-10 20:53:38 +000075 // Determine whether we have a stub reference and/or whether the reference
76 // is relative to the PIC base or not.
Chris Lattnerd392bd92009-07-10 07:20:05 +000077
78 // If this is a strong reference to a definition, it is definitely not
79 // through a stub.
Evan Chenga82b22c2009-07-16 22:53:10 +000080 if (!isDecl && !GV->isWeakForLinker())
Chris Lattner84853a12009-07-10 20:53:38 +000081 return X86II::MO_PIC_BASE_OFFSET;
Chris Lattnerd392bd92009-07-10 07:20:05 +000082
83 // Unless we have a symbol with hidden visibility, we have to go through a
84 // normal $non_lazy_ptr stub because this symbol might be resolved late.
Chris Lattner84853a12009-07-10 20:53:38 +000085 if (!GV->hasHiddenVisibility()) // Non-hidden $non_lazy_ptr reference.
86 return X86II::MO_DARWIN_NONLAZY_PIC_BASE;
Chris Lattnerd392bd92009-07-10 07:20:05 +000087
88 // If symbol visibility is hidden, we have a stub for common symbol
89 // references and external declarations.
Evan Chenga82b22c2009-07-16 22:53:10 +000090 if (isDecl || GV->hasCommonLinkage()) {
Chris Lattnerd392bd92009-07-10 07:20:05 +000091 // Hidden $non_lazy_ptr reference.
Chris Lattner84853a12009-07-10 20:53:38 +000092 return X86II::MO_DARWIN_HIDDEN_NONLAZY_PIC_BASE;
Chris Lattnerd392bd92009-07-10 07:20:05 +000093 }
94
95 // Otherwise, no stub.
Chris Lattner84853a12009-07-10 20:53:38 +000096 return X86II::MO_PIC_BASE_OFFSET;
97 }
98
Chris Lattnere2c92082009-07-10 21:00:45 +000099 if (isPICStyleStubNoDynamic()) { // Darwin/32 in -mdynamic-no-pic mode.
Chris Lattner84853a12009-07-10 20:53:38 +0000100 // Determine whether we have a stub reference.
101
102 // If this is a strong reference to a definition, it is definitely not
103 // through a stub.
Evan Chenga82b22c2009-07-16 22:53:10 +0000104 if (!isDecl && !GV->isWeakForLinker())
Chris Lattner84853a12009-07-10 20:53:38 +0000105 return X86II::MO_NO_FLAG;
106
107 // Unless we have a symbol with hidden visibility, we have to go through a
108 // normal $non_lazy_ptr stub because this symbol might be resolved late.
109 if (!GV->hasHiddenVisibility()) // Non-hidden $non_lazy_ptr reference.
110 return X86II::MO_DARWIN_NONLAZY;
111
112 // If symbol visibility is hidden, we have a stub for common symbol
113 // references and external declarations.
Evan Chenga82b22c2009-07-16 22:53:10 +0000114 if (isDecl || GV->hasCommonLinkage()) {
Chris Lattner84853a12009-07-10 20:53:38 +0000115 // Hidden $non_lazy_ptr reference.
116 return X86II::MO_DARWIN_HIDDEN_NONLAZY;
117 }
118
119 // Otherwise, no stub.
120 return X86II::MO_NO_FLAG;
Chris Lattnerd392bd92009-07-10 07:20:05 +0000121 }
122
123 // Direct static reference to global.
124 return X86II::MO_NO_FLAG;
125}
126
Anton Korobeynikov7784ebc2006-11-30 22:42:55 +0000127
Bill Wendling6f287b22008-09-30 21:22:07 +0000128/// getBZeroEntry - This function returns the name of a function which has an
129/// interface like the non-standard bzero function, if such a function exists on
130/// the current subtarget and it is considered prefereable over memset with zero
131/// passed as the second argument. Otherwise it returns null.
Bill Wendling6e087382008-09-30 22:05:33 +0000132const char *X86Subtarget::getBZeroEntry() const {
Dan Gohman68d599d2008-04-01 20:38:36 +0000133 // Darwin 10 has a __bzero entry point for this purpose.
134 if (getDarwinVers() >= 10)
Bill Wendling6e087382008-09-30 22:05:33 +0000135 return "__bzero";
Dan Gohman68d599d2008-04-01 20:38:36 +0000136
137 return 0;
138}
139
Evan Chengd7f666a2009-05-20 04:53:57 +0000140/// IsLegalToCallImmediateAddr - Return true if the subtarget allows calls
141/// to immediate address.
142bool X86Subtarget::IsLegalToCallImmediateAddr(const TargetMachine &TM) const {
143 if (Is64Bit)
144 return false;
145 return isTargetELF() || TM.getRelocationModel() == Reloc::Static;
146}
147
Dan Gohman8749b612008-12-16 03:35:01 +0000148/// getSpecialAddressLatency - For targets where it is beneficial to
149/// backschedule instructions that compute addresses, return a value
150/// indicating the number of scheduling cycles of backscheduling that
151/// should be attempted.
152unsigned X86Subtarget::getSpecialAddressLatency() const {
153 // For x86 out-of-order targets, back-schedule address computations so
154 // that loads and stores aren't blocked.
155 // This value was chosen arbitrarily.
156 return 200;
157}
158
Chris Lattner1e39a152006-01-28 06:05:41 +0000159/// GetCpuIDAndInfo - Execute the specified cpuid and return the 4 values in the
160/// specified arguments. If we can't run cpuid on the host, return true.
Evan Cheng751c0e12006-10-16 21:00:37 +0000161bool X86::GetCpuIDAndInfo(unsigned value, unsigned *rEAX, unsigned *rEBX,
162 unsigned *rECX, unsigned *rEDX) {
Anton Korobeynikov6f9bb6f2009-08-28 16:06:41 +0000163#if defined(__x86_64__) || defined(_M_AMD64) || defined (_M_X64)
Chris Lattnerbc583222009-04-25 18:27:23 +0000164 #if defined(__GNUC__)
165 // gcc doesn't know cpuid would clobber ebx/rbx. Preseve it manually.
166 asm ("movq\t%%rbx, %%rsi\n\t"
167 "cpuid\n\t"
168 "xchgq\t%%rbx, %%rsi\n\t"
169 : "=a" (*rEAX),
170 "=S" (*rEBX),
171 "=c" (*rECX),
172 "=d" (*rEDX)
173 : "a" (value));
174 return false;
175 #elif defined(_MSC_VER)
176 int registers[4];
177 __cpuid(registers, value);
178 *rEAX = registers[0];
179 *rEBX = registers[1];
180 *rECX = registers[2];
181 *rEDX = registers[3];
182 return false;
183 #endif
Evan Cheng25ab6902006-09-08 06:48:29 +0000184#elif defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86)
Chris Lattnerbc583222009-04-25 18:27:23 +0000185 #if defined(__GNUC__)
186 asm ("movl\t%%ebx, %%esi\n\t"
187 "cpuid\n\t"
188 "xchgl\t%%ebx, %%esi\n\t"
189 : "=a" (*rEAX),
190 "=S" (*rEBX),
191 "=c" (*rECX),
192 "=d" (*rEDX)
193 : "a" (value));
194 return false;
195 #elif defined(_MSC_VER)
196 __asm {
197 mov eax,value
198 cpuid
199 mov esi,rEAX
200 mov dword ptr [esi],eax
201 mov esi,rEBX
202 mov dword ptr [esi],ebx
203 mov esi,rECX
204 mov dword ptr [esi],ecx
205 mov esi,rEDX
206 mov dword ptr [esi],edx
207 }
208 return false;
209 #endif
Evan Cheng559806f2006-01-27 08:10:46 +0000210#endif
Chris Lattner1e39a152006-01-28 06:05:41 +0000211 return true;
Evan Cheng559806f2006-01-27 08:10:46 +0000212}
213
Evan Chengccb69762009-01-02 05:35:45 +0000214static void DetectFamilyModel(unsigned EAX, unsigned &Family, unsigned &Model) {
215 Family = (EAX >> 8) & 0xf; // Bits 8 - 11
216 Model = (EAX >> 4) & 0xf; // Bits 4 - 7
217 if (Family == 6 || Family == 0xf) {
218 if (Family == 0xf)
219 // Examine extended family ID if family ID is F.
220 Family += (EAX >> 20) & 0xff; // Bits 20 - 27
221 // Examine extended model ID if family ID is 6 or F.
222 Model += ((EAX >> 16) & 0xf) << 4; // Bits 16 - 19
223 }
224}
225
Evan Chenga26eb5e2006-10-06 09:17:41 +0000226void X86Subtarget::AutoDetectSubtargetFeatures() {
Evan Chengb3a7e212006-01-27 19:30:30 +0000227 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
Jeff Cohena3496402006-01-28 18:47:32 +0000228 union {
Jeff Cohen216d2812006-01-28 19:48:34 +0000229 unsigned u[3];
230 char c[12];
Jeff Cohena3496402006-01-28 18:47:32 +0000231 } text;
Chris Lattner3b6f4972006-11-20 18:16:05 +0000232
Evan Cheng751c0e12006-10-16 21:00:37 +0000233 if (X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1))
Evan Chengabc346c2006-10-06 08:21:07 +0000234 return;
Anton Korobeynikov3b5ee732007-03-23 23:46:48 +0000235
236 X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
Chris Lattner3b6f4972006-11-20 18:16:05 +0000237
Chris Lattner70084162009-09-02 05:53:04 +0000238 if ((EDX >> 15) & 1) HasCMov = true;
239 if ((EDX >> 23) & 1) X86SSELevel = MMX;
240 if ((EDX >> 25) & 1) X86SSELevel = SSE1;
241 if ((EDX >> 26) & 1) X86SSELevel = SSE2;
Anton Korobeynikov3b5ee732007-03-23 23:46:48 +0000242 if (ECX & 0x1) X86SSELevel = SSE3;
Chris Lattner70084162009-09-02 05:53:04 +0000243 if ((ECX >> 9) & 1) X86SSELevel = SSSE3;
244 if ((ECX >> 19) & 1) X86SSELevel = SSE41;
245 if ((ECX >> 20) & 1) X86SSELevel = SSE42;
Anton Korobeynikov3b5ee732007-03-23 23:46:48 +0000246
Evan Chengccb69762009-01-02 05:35:45 +0000247 bool IsIntel = memcmp(text.c, "GenuineIntel", 12) == 0;
248 bool IsAMD = !IsIntel && memcmp(text.c, "AuthenticAMD", 12) == 0;
David Greene343dadb2009-06-26 22:46:54 +0000249
250 HasFMA3 = IsIntel && ((ECX >> 12) & 0x1);
251 HasAVX = ((ECX >> 28) & 0x1);
252
Evan Chengccb69762009-01-02 05:35:45 +0000253 if (IsIntel || IsAMD) {
254 // Determine if bit test memory instructions are slow.
255 unsigned Family = 0;
256 unsigned Model = 0;
257 DetectFamilyModel(EAX, Family, Model);
258 IsBTMemSlow = IsAMD || (Family == 6 && Model >= 13);
259
Jeff Cohenc3987092007-04-16 21:59:44 +0000260 X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
261 HasX86_64 = (EDX >> 29) & 0x1;
Stefanus Du Toit8cf5ab12009-05-26 21:04:35 +0000262 HasSSE4A = IsAMD && ((ECX >> 6) & 0x1);
David Greene343dadb2009-06-26 22:46:54 +0000263 HasFMA4 = IsAMD && ((ECX >> 16) & 0x1);
Jeff Cohenc3987092007-04-16 21:59:44 +0000264 }
Evan Cheng559806f2006-01-27 08:10:46 +0000265}
Evan Cheng97c7fc32006-01-26 09:53:06 +0000266
Evan Chenga26eb5e2006-10-06 09:17:41 +0000267static const char *GetCurrentX86CPU() {
268 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
Evan Cheng751c0e12006-10-16 21:00:37 +0000269 if (X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX))
Evan Chenga26eb5e2006-10-06 09:17:41 +0000270 return "generic";
Evan Chengccb69762009-01-02 05:35:45 +0000271 unsigned Family = 0;
272 unsigned Model = 0;
273 DetectFamilyModel(EAX, Family, Model);
Evan Cheng018b7ee2009-01-02 05:29:20 +0000274
Evan Cheng751c0e12006-10-16 21:00:37 +0000275 X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
Evan Cheng3cff9f82006-10-06 18:57:51 +0000276 bool Em64T = (EDX >> 29) & 0x1;
Stefanus Du Toit8cf5ab12009-05-26 21:04:35 +0000277 bool HasSSE3 = (ECX & 0x1);
Evan Chenga26eb5e2006-10-06 09:17:41 +0000278
279 union {
280 unsigned u[3];
281 char c[12];
282 } text;
283
Evan Cheng751c0e12006-10-16 21:00:37 +0000284 X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1);
Evan Chenga26eb5e2006-10-06 09:17:41 +0000285 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
286 switch (Family) {
287 case 3:
288 return "i386";
289 case 4:
290 return "i486";
291 case 5:
292 switch (Model) {
293 case 4: return "pentium-mmx";
294 default: return "pentium";
295 }
296 case 6:
297 switch (Model) {
298 case 1: return "pentiumpro";
299 case 3:
300 case 5:
301 case 6: return "pentium2";
302 case 7:
303 case 8:
304 case 10:
305 case 11: return "pentium3";
306 case 9:
307 case 13: return "pentium-m";
308 case 14: return "yonah";
Evan Cheng5b925c02009-01-03 04:04:46 +0000309 case 15:
310 case 22: // Celeron M 540
311 return "core2";
312 case 23: // 45nm: Penryn , Wolfdale, Yorkfield (XE)
313 return "penryn";
Evan Chenga26eb5e2006-10-06 09:17:41 +0000314 default: return "i686";
315 }
316 case 15: {
317 switch (Model) {
318 case 3:
319 case 4:
Evan Cheng5b925c02009-01-03 04:04:46 +0000320 case 6: // same as 4, but 65nm
Evan Chenga26eb5e2006-10-06 09:17:41 +0000321 return (Em64T) ? "nocona" : "prescott";
Evan Cheng78771122009-01-05 08:45:01 +0000322 case 26:
323 return "corei7";
Evan Cheng5b925c02009-01-03 04:04:46 +0000324 case 28:
Evan Cheng78771122009-01-05 08:45:01 +0000325 return "atom";
Evan Chenga26eb5e2006-10-06 09:17:41 +0000326 default:
327 return (Em64T) ? "x86-64" : "pentium4";
328 }
329 }
330
331 default:
332 return "generic";
333 }
334 } else if (memcmp(text.c, "AuthenticAMD", 12) == 0) {
335 // FIXME: this poorly matches the generated SubtargetFeatureKV table. There
336 // appears to be no way to generate the wide variety of AMD-specific targets
337 // from the information returned from CPUID.
338 switch (Family) {
339 case 4:
340 return "i486";
341 case 5:
342 switch (Model) {
343 case 6:
344 case 7: return "k6";
345 case 8: return "k6-2";
346 case 9:
347 case 13: return "k6-3";
348 default: return "pentium";
349 }
350 case 6:
351 switch (Model) {
352 case 4: return "athlon-tbird";
353 case 6:
354 case 7:
355 case 8: return "athlon-mp";
356 case 10: return "athlon-xp";
357 default: return "athlon";
358 }
359 case 15:
Stefanus Du Toit8cf5ab12009-05-26 21:04:35 +0000360 if (HasSSE3) {
Daniel Dunbarcfb8a1b2009-07-19 01:38:38 +0000361 return "k8-sse3";
Stefanus Du Toit8cf5ab12009-05-26 21:04:35 +0000362 } else {
363 switch (Model) {
364 case 1: return "opteron";
365 case 5: return "athlon-fx"; // also opteron
366 default: return "athlon64";
367 }
368 }
369 case 16:
Daniel Dunbarcfb8a1b2009-07-19 01:38:38 +0000370 return "amdfam10";
Evan Chenga26eb5e2006-10-06 09:17:41 +0000371 default:
372 return "generic";
373 }
374 } else {
375 return "generic";
376 }
377}
378
Daniel Dunbar3be03402009-08-02 22:11:08 +0000379X86Subtarget::X86Subtarget(const std::string &TT, const std::string &FS,
380 bool is64Bit)
Chris Lattnerce914b82009-08-11 23:01:09 +0000381 : PICStyle(PICStyles::None)
Evan Cheng25ab6902006-09-08 06:48:29 +0000382 , X86SSELevel(NoMMXSSE)
Evan Chengdc008582008-04-16 19:03:02 +0000383 , X863DNowLevel(NoThreeDNow)
Chris Lattner70084162009-09-02 05:53:04 +0000384 , HasCMov(false)
Evan Cheng25ab6902006-09-08 06:48:29 +0000385 , HasX86_64(false)
David Greene343dadb2009-06-26 22:46:54 +0000386 , HasSSE4A(false)
387 , HasAVX(false)
388 , HasFMA3(false)
389 , HasFMA4(false)
Evan Chengccb69762009-01-02 05:35:45 +0000390 , IsBTMemSlow(false)
Chris Lattner7ad92d82008-01-02 19:44:55 +0000391 , DarwinVers(0)
Dan Gohman94bbdc82008-05-05 18:43:07 +0000392 , IsLinux(false)
Evan Cheng25ab6902006-09-08 06:48:29 +0000393 , stackAlignment(8)
394 // FIXME: this is a known good value for Yonah. How about others?
Rafael Espindolafc05f402007-10-31 11:52:06 +0000395 , MaxInlineSizeThreshold(128)
Evan Cheng25ab6902006-09-08 06:48:29 +0000396 , Is64Bit(is64Bit)
397 , TargetType(isELF) { // Default to ELF unless otherwise specified.
Anton Korobeynikov0eebf652009-06-08 22:53:56 +0000398
399 // default to hard float ABI
400 if (FloatABIType == FloatABI::Default)
401 FloatABIType = FloatABI::Hard;
Mon P Wang63307c32008-05-05 19:05:59 +0000402
Evan Cheng97c7fc32006-01-26 09:53:06 +0000403 // Determine default and user specified characteristics
Evan Chenga26eb5e2006-10-06 09:17:41 +0000404 if (!FS.empty()) {
405 // If feature string is not empty, parse features string.
406 std::string CPU = GetCurrentX86CPU();
407 ParseSubtargetFeatures(FS, CPU);
Torok Edwinb68a88b2009-02-02 21:57:34 +0000408 // All X86-64 CPUs also have SSE2, however user might request no SSE via
409 // -mattr, so don't force SSELevel here.
Chris Lattner3b6f4972006-11-20 18:16:05 +0000410 } else {
411 // Otherwise, use CPUID to auto-detect feature set.
412 AutoDetectSubtargetFeatures();
Dan Gohmanf75e5b42009-02-03 00:04:43 +0000413 // Make sure SSE2 is enabled; it is available on all X86-64 CPUs.
414 if (Is64Bit && X86SSELevel < SSE2)
415 X86SSELevel = SSE2;
Evan Cheng25ab6902006-09-08 06:48:29 +0000416 }
Dan Gohmanf75e5b42009-02-03 00:04:43 +0000417
Dan Gohman605679f2009-02-03 18:53:21 +0000418 // If requesting codegen for X86-64, make sure that 64-bit features
419 // are enabled.
420 if (Is64Bit)
421 HasX86_64 = true;
422
Bill Wendling0ea8bf32009-08-03 00:11:34 +0000423 DEBUG(errs() << "Subtarget features: SSELevel " << X86SSELevel
424 << ", 3DNowLevel " << X863DNowLevel
425 << ", 64bit " << HasX86_64 << "\n");
Dan Gohmanf75e5b42009-02-03 00:04:43 +0000426 assert((!Is64Bit || HasX86_64) &&
427 "64-bit code requested on a subtarget that doesn't support it!");
Evan Cheng25ab6902006-09-08 06:48:29 +0000428
Nate Begemanfb5792f2005-07-12 01:41:54 +0000429 // Set the boolean corresponding to the current target triple, or the default
430 // if one cannot be determined, to true.
Nate Begemanfb5792f2005-07-12 01:41:54 +0000431 if (TT.length() > 5) {
Duncan Sandse51775d2008-01-08 10:06:15 +0000432 size_t Pos;
Chris Lattner7ad92d82008-01-02 19:44:55 +0000433 if ((Pos = TT.find("-darwin")) != std::string::npos) {
Chris Lattnere5600e52005-11-21 22:31:58 +0000434 TargetType = isDarwin;
Chris Lattner7ad92d82008-01-02 19:44:55 +0000435
436 // Compute the darwin version number.
437 if (isdigit(TT[Pos+7]))
438 DarwinVers = atoi(&TT[Pos+7]);
439 else
440 DarwinVers = 8; // Minimum supported darwin is Tiger.
Dan Gohmana779a982008-05-05 00:28:39 +0000441 } else if (TT.find("linux") != std::string::npos) {
Dan Gohman600bf162008-05-05 16:11:31 +0000442 // Linux doesn't imply ELF, but we don't currently support anything else.
443 TargetType = isELF;
444 IsLinux = true;
Chris Lattner7ad92d82008-01-02 19:44:55 +0000445 } else if (TT.find("cygwin") != std::string::npos) {
446 TargetType = isCygwin;
447 } else if (TT.find("mingw") != std::string::npos) {
448 TargetType = isMingw;
449 } else if (TT.find("win32") != std::string::npos) {
Chris Lattnere5600e52005-11-21 22:31:58 +0000450 TargetType = isWindows;
Anton Korobeynikov508f0fd2008-03-22 21:12:53 +0000451 } else if (TT.find("windows") != std::string::npos) {
452 TargetType = isWindows;
Daniel Dunbare22f4da2009-08-05 18:12:37 +0000453 } else if (TT.find("-cl") != std::string::npos) {
Mon P Wang9feb5dd2009-02-28 00:25:30 +0000454 TargetType = isDarwin;
455 DarwinVers = 9;
456 }
Nate Begemanfb5792f2005-07-12 01:41:54 +0000457 }
458
Anton Korobeynikov890fe882008-04-23 18:16:16 +0000459 // Stack alignment is 16 bytes on Darwin (both 32 and 64 bit) and for all 64
460 // bit targets.
461 if (TargetType == isDarwin || Is64Bit)
Nate Begemanfb5792f2005-07-12 01:41:54 +0000462 stackAlignment = 16;
Anton Korobeynikov78c80fd2008-04-12 22:12:22 +0000463
464 if (StackAlignment)
465 stackAlignment = StackAlignment;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000466}