blob: d16319b9e4ecc3e582ac86cd61e7056fcca08284 [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
Evan Cheng5211b422009-01-03 04:04:46 +000014#define DEBUG_TYPE "subtarget"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000015#include "X86Subtarget.h"
16#include "X86GenSubtarget.inc"
17#include "llvm/Module.h"
18#include "llvm/Support/CommandLine.h"
Evan Cheng5211b422009-01-03 04:04:46 +000019#include "llvm/Support/Debug.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000020#include "llvm/Target/TargetMachine.h"
Anton Korobeynikovb214a522008-04-23 18:18:10 +000021#include "llvm/Target/TargetOptions.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000022using namespace llvm;
23
Chris Lattner1d8091f2009-04-25 18:27:23 +000024#if defined(_MSC_VER)
25 #include <intrin.h>
26#endif
27
Dan Gohman089efff2008-05-13 00:00:25 +000028static cl::opt<X86Subtarget::AsmWriterFlavorTy>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029AsmWriterFlavor("x86-asm-syntax", cl::init(X86Subtarget::Unset),
30 cl::desc("Choose style of code to emit from X86 backend:"),
31 cl::values(
Dan Gohman669b9bf2008-10-14 20:25:08 +000032 clEnumValN(X86Subtarget::ATT, "att", "Emit AT&T-style assembly"),
33 clEnumValN(X86Subtarget::Intel, "intel", "Emit Intel-style assembly"),
Dan Gohmanf17a25c2007-07-18 16:29:46 +000034 clEnumValEnd));
35
36
37/// 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 Lattner08323962009-07-10 05:45:15 +000041bool X86Subtarget::GVRequiresExtraLoad(const GlobalValue *GV,
Chris Lattner6bdfa1c2009-07-10 05:52:02 +000042 const TargetMachine &TM) const {
Chris Lattner6d45da02009-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 Lattner6d45da02009-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 Lattner6bdfa1c2009-07-10 05:52:02 +000060 return isDecl || GV->isWeakForLinker();
Chris Lattner6d45da02009-07-09 03:27:27 +000061 } else if (isTargetELF()) {
62 // Extra load is needed for all externally visible.
Chris Lattner6d45da02009-07-09 03:27:27 +000063 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
64 return false;
65 return true;
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +000066 }
Dale Johannesen64660e92008-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 Lattnera35337f2009-07-10 05:37:11 +000074 const TargetMachine &TM) const {
Chris Lattner6bdfa1c2009-07-10 05:52:02 +000075 if (GVRequiresExtraLoad(GV, TM))
Dale Johannesen64660e92008-12-05 21:47:27 +000076 return true;
Chris Lattnera35337f2009-07-10 05:37:11 +000077
Dale Johannesen64660e92008-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 Lattnera35337f2009-07-10 05:37:11 +000081 return GV->hasLocalLinkage() || GV->hasExternalLinkage();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000082 return false;
83}
84
Bill Wendling5db7ffb2008-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 Wendlingd3752032008-09-30 22:05:33 +000089const char *X86Subtarget::getBZeroEntry() const {
Dan Gohmanf95c2bf2008-04-01 20:38:36 +000090 // Darwin 10 has a __bzero entry point for this purpose.
91 if (getDarwinVers() >= 10)
Bill Wendlingd3752032008-09-30 22:05:33 +000092 return "__bzero";
Dan Gohmanf95c2bf2008-04-01 20:38:36 +000093
94 return 0;
95}
96
Evan Cheng6d35a4d2009-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 Gohman47170992008-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
Dan Gohmanf17a25c2007-07-18 16:29:46 +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.
118bool X86::GetCpuIDAndInfo(unsigned value, unsigned *rEAX, unsigned *rEBX,
119 unsigned *rECX, unsigned *rEDX) {
Chris Lattner1d8091f2009-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
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000141#elif defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86)
Chris Lattner1d8091f2009-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
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000167#endif
168 return true;
169}
170
Evan Cheng95a77fd2009-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
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000183void X86Subtarget::AutoDetectSubtargetFeatures() {
184 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
185 union {
186 unsigned u[3];
187 char c[12];
188 } text;
189
190 if (X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1))
191 return;
192
193 X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
194
195 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;
199 if ((ECX >> 9) & 0x1) X86SSELevel = SSSE3;
Nate Begemanb2975562008-02-03 07:18:54 +0000200 if ((ECX >> 19) & 0x1) X86SSELevel = SSE41;
201 if ((ECX >> 20) & 0x1) X86SSELevel = SSE42;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000202
Evan Cheng95a77fd2009-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 Greene8bf22bc2009-06-26 22:46:54 +0000205
206 HasFMA3 = IsIntel && ((ECX >> 12) & 0x1);
207 HasAVX = ((ECX >> 28) & 0x1);
208
Evan Cheng95a77fd2009-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
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000216 X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
217 HasX86_64 = (EDX >> 29) & 0x1;
Stefanus Du Toitfe086e62009-05-26 21:04:35 +0000218 HasSSE4A = IsAMD && ((ECX >> 6) & 0x1);
David Greene8bf22bc2009-06-26 22:46:54 +0000219 HasFMA4 = IsAMD && ((ECX >> 16) & 0x1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000220 }
221}
222
223static const char *GetCurrentX86CPU() {
224 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
225 if (X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX))
226 return "generic";
Evan Cheng95a77fd2009-01-02 05:35:45 +0000227 unsigned Family = 0;
228 unsigned Model = 0;
229 DetectFamilyModel(EAX, Family, Model);
Evan Chengedde6842009-01-02 05:29:20 +0000230
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000231 X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
232 bool Em64T = (EDX >> 29) & 0x1;
Stefanus Du Toitfe086e62009-05-26 21:04:35 +0000233 bool HasSSE3 = (ECX & 0x1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000234
235 union {
236 unsigned u[3];
237 char c[12];
238 } text;
239
240 X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1);
241 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 Cheng5211b422009-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";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000270 default: return "i686";
271 }
272 case 15: {
273 switch (Model) {
274 case 3:
275 case 4:
Evan Cheng5211b422009-01-03 04:04:46 +0000276 case 6: // same as 4, but 65nm
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000277 return (Em64T) ? "nocona" : "prescott";
Evan Chengcfadd3b2009-01-05 08:45:01 +0000278 case 26:
279 return "corei7";
Evan Cheng5211b422009-01-03 04:04:46 +0000280 case 28:
Evan Chengcfadd3b2009-01-05 08:45:01 +0000281 return "atom";
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Toitfe086e62009-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:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000328 switch (Model) {
Stefanus Du Toitfe086e62009-05-26 21:04:35 +0000329 default: return "amdfam10";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000330 }
331 default:
332 return "generic";
333 }
334 } else {
335 return "generic";
336 }
337}
338
339X86Subtarget::X86Subtarget(const Module &M, const std::string &FS, bool is64Bit)
340 : AsmFlavor(AsmWriterFlavor)
Duncan Sandsde5f95f2008-11-28 09:29:37 +0000341 , PICStyle(PICStyles::None)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000342 , X86SSELevel(NoMMXSSE)
Evan Chengb6992de2008-04-16 19:03:02 +0000343 , X863DNowLevel(NoThreeDNow)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000344 , HasX86_64(false)
David Greene8bf22bc2009-06-26 22:46:54 +0000345 , HasSSE4A(false)
346 , HasAVX(false)
347 , HasFMA3(false)
348 , HasFMA4(false)
Evan Cheng95a77fd2009-01-02 05:35:45 +0000349 , IsBTMemSlow(false)
Chris Lattner93a2d432008-01-02 19:44:55 +0000350 , DarwinVers(0)
Dan Gohmande22f242008-05-05 18:43:07 +0000351 , IsLinux(false)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000352 , stackAlignment(8)
353 // FIXME: this is a known good value for Yonah. How about others?
Rafael Espindola7afa9b12007-10-31 11:52:06 +0000354 , MaxInlineSizeThreshold(128)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000355 , Is64Bit(is64Bit)
356 , TargetType(isELF) { // Default to ELF unless otherwise specified.
Anton Korobeynikov11713322009-06-08 22:53:56 +0000357
358 // default to hard float ABI
359 if (FloatABIType == FloatABI::Default)
360 FloatABIType = FloatABI::Hard;
Mon P Wang078a62d2008-05-05 19:05:59 +0000361
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000362 // Determine default and user specified characteristics
363 if (!FS.empty()) {
364 // If feature string is not empty, parse features string.
365 std::string CPU = GetCurrentX86CPU();
366 ParseSubtargetFeatures(FS, CPU);
Edwin Török4031b792009-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.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000369 } else {
370 // Otherwise, use CPUID to auto-detect feature set.
371 AutoDetectSubtargetFeatures();
Dan Gohman4092bbc2009-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;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000375 }
Dan Gohman4092bbc2009-02-03 00:04:43 +0000376
Dan Gohmand3ef6c92009-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 Cheng5211b422009-01-03 04:04:46 +0000382 DOUT << "Subtarget features: SSELevel " << X86SSELevel
383 << ", 3DNowLevel " << X863DNowLevel
384 << ", 64bit " << HasX86_64 << "\n";
Dan Gohman4092bbc2009-02-03 00:04:43 +0000385 assert((!Is64Bit || HasX86_64) &&
386 "64-bit code requested on a subtarget that doesn't support it!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000387
388 // 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 Sandsdfd94582008-01-08 10:06:15 +0000392 size_t Pos;
Chris Lattner93a2d432008-01-02 19:44:55 +0000393 if ((Pos = TT.find("-darwin")) != std::string::npos) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000394 TargetType = isDarwin;
Chris Lattner93a2d432008-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 Gohmana65530a2008-05-05 00:28:39 +0000401 } else if (TT.find("linux") != std::string::npos) {
Dan Gohman2593e2b2008-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 Lattner93a2d432008-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) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000410 TargetType = isWindows;
Anton Korobeynikovf0ce64b2008-03-22 21:12:53 +0000411 } else if (TT.find("windows") != std::string::npos) {
412 TargetType = isWindows;
Chris Lattner93a2d432008-01-02 19:44:55 +0000413 }
Mon P Wang23bbfc32009-02-28 00:25:30 +0000414 else if (TT.find("-cl") != std::string::npos) {
415 TargetType = isDarwin;
416 DarwinVers = 9;
417 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000418 } else if (TT.empty()) {
419#if defined(__CYGWIN__)
420 TargetType = isCygwin;
Anton Korobeynikov62a51e42008-03-22 21:18:22 +0000421#elif defined(__MINGW32__) || defined(__MINGW64__)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000422 TargetType = isMingw;
423#elif defined(__APPLE__)
424 TargetType = isDarwin;
Chris Lattner93a2d432008-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 Korobeynikov62a51e42008-03-22 21:18:22 +0000431#elif defined(_WIN32) || defined(_WIN64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000432 TargetType = isWindows;
Dan Gohmana65530a2008-05-05 00:28:39 +0000433#elif defined(__linux__)
434 // Linux doesn't imply ELF, but we don't currently support anything else.
Dan Gohman2593e2b2008-05-05 16:11:31 +0000435 TargetType = isELF;
436 IsLinux = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000437#endif
438 }
439
440 // If the asm syntax hasn't been overridden on the command line, use whatever
441 // the target wants.
442 if (AsmFlavor == X86Subtarget::Unset) {
Chris Lattner93a2d432008-01-02 19:44:55 +0000443 AsmFlavor = (TargetType == isWindows)
444 ? X86Subtarget::Intel : X86Subtarget::ATT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000445 }
446
Anton Korobeynikovcdd93812008-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)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000450 stackAlignment = 16;
Anton Korobeynikov06c42402008-04-12 22:12:22 +0000451
452 if (StackAlignment)
453 stackAlignment = StackAlignment;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000454}