Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | //===-- X86Subtarget.cpp - X86 Subtarget Information ------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 081ce94 | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the X86 specific subclass of TargetSubtarget. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "X86Subtarget.h" |
| 15 | #include "X86GenSubtarget.inc" |
| 16 | #include "llvm/Module.h" |
| 17 | #include "llvm/Support/CommandLine.h" |
| 18 | #include "llvm/Target/TargetMachine.h" |
Anton Korobeynikov | b214a52 | 2008-04-23 18:18:10 +0000 | [diff] [blame] | 19 | #include "llvm/Target/TargetOptions.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 20 | using namespace llvm; |
| 21 | |
Dan Gohman | 089efff | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 22 | static cl::opt<X86Subtarget::AsmWriterFlavorTy> |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 23 | AsmWriterFlavor("x86-asm-syntax", cl::init(X86Subtarget::Unset), |
| 24 | cl::desc("Choose style of code to emit from X86 backend:"), |
| 25 | cl::values( |
Dan Gohman | 669b9bf | 2008-10-14 20:25:08 +0000 | [diff] [blame] | 26 | clEnumValN(X86Subtarget::ATT, "att", "Emit AT&T-style assembly"), |
| 27 | clEnumValN(X86Subtarget::Intel, "intel", "Emit Intel-style assembly"), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 28 | clEnumValEnd)); |
| 29 | |
| 30 | |
| 31 | /// 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. |
| 35 | bool X86Subtarget::GVRequiresExtraLoad(const GlobalValue* GV, |
| 36 | const TargetMachine& TM, |
| 37 | bool isDirectCall) const |
| 38 | { |
| 39 | // FIXME: PIC |
Evan Cheng | 1f28220 | 2008-07-16 01:34:02 +0000 | [diff] [blame] | 40 | if (TM.getRelocationModel() != Reloc::Static && |
| 41 | TM.getCodeModel() != CodeModel::Large) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 42 | if (isTargetDarwin()) { |
Evan Cheng | 17cc795 | 2008-12-08 19:29:03 +0000 | [diff] [blame] | 43 | if (isDirectCall) |
| 44 | return false; |
Evan Cheng | a65854f | 2008-12-05 01:06:39 +0000 | [diff] [blame] | 45 | 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 Gohman | 653cc45 | 2008-12-08 17:38:02 +0000 | [diff] [blame] | 52 | return !isDirectCall && (isDecl || GV->mayBeOverridden()); |
Anton Korobeynikov | 6835eb6 | 2008-01-20 13:58:16 +0000 | [diff] [blame] | 53 | } else if (isTargetELF()) { |
Rafael Espindola | ae289c1 | 2008-06-02 07:52:43 +0000 | [diff] [blame] | 54 | // Extra load is needed for all externally visible. |
| 55 | if (isDirectCall) |
| 56 | return false; |
Anton Korobeynikov | 6b57036 | 2008-07-09 13:29:08 +0000 | [diff] [blame] | 57 | if (GV->hasInternalLinkage() || GV->hasHiddenVisibility()) |
Rafael Espindola | ae289c1 | 2008-06-02 07:52:43 +0000 | [diff] [blame] | 58 | return false; |
| 59 | return true; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 60 | } else if (isTargetCygMing() || isTargetWindows()) { |
| 61 | return (GV->hasDLLImportLinkage()); |
| 62 | } |
Anton Korobeynikov | 8c90d2a | 2008-02-20 11:22:39 +0000 | [diff] [blame] | 63 | } |
Dale Johannesen | 64660e9 | 2008-12-05 21:47:27 +0000 | [diff] [blame] | 64 | 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. |
| 70 | bool 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()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 81 | return false; |
| 82 | } |
| 83 | |
Bill Wendling | 5db7ffb | 2008-09-30 21:22:07 +0000 | [diff] [blame] | 84 | /// 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 Wendling | d375203 | 2008-09-30 22:05:33 +0000 | [diff] [blame] | 88 | const char *X86Subtarget::getBZeroEntry() const { |
Dan Gohman | f95c2bf | 2008-04-01 20:38:36 +0000 | [diff] [blame] | 89 | // Darwin 10 has a __bzero entry point for this purpose. |
| 90 | if (getDarwinVers() >= 10) |
Bill Wendling | d375203 | 2008-09-30 22:05:33 +0000 | [diff] [blame] | 91 | return "__bzero"; |
Dan Gohman | f95c2bf | 2008-04-01 20:38:36 +0000 | [diff] [blame] | 92 | |
| 93 | return 0; |
| 94 | } |
| 95 | |
Dan Gohman | 4717099 | 2008-12-16 03:35:01 +0000 | [diff] [blame] | 96 | /// 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. |
| 100 | unsigned 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 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 107 | /// 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. |
| 109 | bool X86::GetCpuIDAndInfo(unsigned value, unsigned *rEAX, unsigned *rEBX, |
| 110 | unsigned *rECX, unsigned *rEDX) { |
| 111 | #if defined(__x86_64__) |
| 112 | // 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" |
| 116 | : "=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) |
| 123 | #if defined(__GNUC__) |
| 124 | asm ("movl\t%%ebx, %%esi\n\t" |
| 125 | "cpuid\n\t" |
| 126 | "xchgl\t%%ebx, %%esi\n\t" |
| 127 | : "=a" (*rEAX), |
| 128 | "=S" (*rEBX), |
| 129 | "=c" (*rECX), |
| 130 | "=d" (*rEDX) |
| 131 | : "a" (value)); |
| 132 | return false; |
| 133 | #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; |
| 147 | #endif |
| 148 | #endif |
| 149 | return true; |
| 150 | } |
| 151 | |
Evan Cheng | 95a77fd | 2009-01-02 05:35:45 +0000 | [diff] [blame^] | 152 | static void DetectFamilyModel(unsigned EAX, unsigned &Family, unsigned &Model) { |
| 153 | Family = (EAX >> 8) & 0xf; // Bits 8 - 11 |
| 154 | Model = (EAX >> 4) & 0xf; // Bits 4 - 7 |
| 155 | if (Family == 6 || Family == 0xf) { |
| 156 | if (Family == 0xf) |
| 157 | // Examine extended family ID if family ID is F. |
| 158 | Family += (EAX >> 20) & 0xff; // Bits 20 - 27 |
| 159 | // Examine extended model ID if family ID is 6 or F. |
| 160 | Model += ((EAX >> 16) & 0xf) << 4; // Bits 16 - 19 |
| 161 | } |
| 162 | } |
| 163 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 164 | void X86Subtarget::AutoDetectSubtargetFeatures() { |
| 165 | unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0; |
| 166 | union { |
| 167 | unsigned u[3]; |
| 168 | char c[12]; |
| 169 | } text; |
| 170 | |
| 171 | if (X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1)) |
| 172 | return; |
| 173 | |
| 174 | X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX); |
| 175 | |
| 176 | if ((EDX >> 23) & 0x1) X86SSELevel = MMX; |
| 177 | if ((EDX >> 25) & 0x1) X86SSELevel = SSE1; |
| 178 | if ((EDX >> 26) & 0x1) X86SSELevel = SSE2; |
| 179 | if (ECX & 0x1) X86SSELevel = SSE3; |
| 180 | if ((ECX >> 9) & 0x1) X86SSELevel = SSSE3; |
Nate Begeman | b297556 | 2008-02-03 07:18:54 +0000 | [diff] [blame] | 181 | if ((ECX >> 19) & 0x1) X86SSELevel = SSE41; |
| 182 | if ((ECX >> 20) & 0x1) X86SSELevel = SSE42; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 183 | |
Evan Cheng | 95a77fd | 2009-01-02 05:35:45 +0000 | [diff] [blame^] | 184 | bool IsIntel = memcmp(text.c, "GenuineIntel", 12) == 0; |
| 185 | bool IsAMD = !IsIntel && memcmp(text.c, "AuthenticAMD", 12) == 0; |
| 186 | if (IsIntel || IsAMD) { |
| 187 | // Determine if bit test memory instructions are slow. |
| 188 | unsigned Family = 0; |
| 189 | unsigned Model = 0; |
| 190 | DetectFamilyModel(EAX, Family, Model); |
| 191 | IsBTMemSlow = IsAMD || (Family == 6 && Model >= 13); |
| 192 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 193 | X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX); |
| 194 | HasX86_64 = (EDX >> 29) & 0x1; |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | static const char *GetCurrentX86CPU() { |
| 199 | unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0; |
| 200 | if (X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX)) |
| 201 | return "generic"; |
Evan Cheng | 95a77fd | 2009-01-02 05:35:45 +0000 | [diff] [blame^] | 202 | unsigned Family = 0; |
| 203 | unsigned Model = 0; |
| 204 | DetectFamilyModel(EAX, Family, Model); |
Evan Cheng | edde684 | 2009-01-02 05:29:20 +0000 | [diff] [blame] | 205 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 206 | X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX); |
| 207 | bool Em64T = (EDX >> 29) & 0x1; |
| 208 | |
| 209 | union { |
| 210 | unsigned u[3]; |
| 211 | char c[12]; |
| 212 | } text; |
| 213 | |
| 214 | X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1); |
| 215 | if (memcmp(text.c, "GenuineIntel", 12) == 0) { |
| 216 | switch (Family) { |
| 217 | case 3: |
| 218 | return "i386"; |
| 219 | case 4: |
| 220 | return "i486"; |
| 221 | case 5: |
| 222 | switch (Model) { |
| 223 | case 4: return "pentium-mmx"; |
| 224 | default: return "pentium"; |
| 225 | } |
| 226 | case 6: |
| 227 | switch (Model) { |
| 228 | case 1: return "pentiumpro"; |
| 229 | case 3: |
| 230 | case 5: |
| 231 | case 6: return "pentium2"; |
| 232 | case 7: |
| 233 | case 8: |
| 234 | case 10: |
| 235 | case 11: return "pentium3"; |
| 236 | case 9: |
| 237 | case 13: return "pentium-m"; |
| 238 | case 14: return "yonah"; |
| 239 | case 15: return "core2"; |
Evan Cheng | edde684 | 2009-01-02 05:29:20 +0000 | [diff] [blame] | 240 | case 23: return "penryn"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 241 | default: return "i686"; |
| 242 | } |
| 243 | case 15: { |
| 244 | switch (Model) { |
| 245 | case 3: |
| 246 | case 4: |
| 247 | return (Em64T) ? "nocona" : "prescott"; |
| 248 | default: |
| 249 | return (Em64T) ? "x86-64" : "pentium4"; |
| 250 | } |
| 251 | } |
| 252 | |
| 253 | default: |
| 254 | return "generic"; |
| 255 | } |
| 256 | } else if (memcmp(text.c, "AuthenticAMD", 12) == 0) { |
| 257 | // FIXME: this poorly matches the generated SubtargetFeatureKV table. There |
| 258 | // appears to be no way to generate the wide variety of AMD-specific targets |
| 259 | // from the information returned from CPUID. |
| 260 | switch (Family) { |
| 261 | case 4: |
| 262 | return "i486"; |
| 263 | case 5: |
| 264 | switch (Model) { |
| 265 | case 6: |
| 266 | case 7: return "k6"; |
| 267 | case 8: return "k6-2"; |
| 268 | case 9: |
| 269 | case 13: return "k6-3"; |
| 270 | default: return "pentium"; |
| 271 | } |
| 272 | case 6: |
| 273 | switch (Model) { |
| 274 | case 4: return "athlon-tbird"; |
| 275 | case 6: |
| 276 | case 7: |
| 277 | case 8: return "athlon-mp"; |
| 278 | case 10: return "athlon-xp"; |
| 279 | default: return "athlon"; |
| 280 | } |
| 281 | case 15: |
| 282 | switch (Model) { |
| 283 | case 1: return "opteron"; |
| 284 | case 5: return "athlon-fx"; // also opteron |
| 285 | default: return "athlon64"; |
| 286 | } |
| 287 | default: |
| 288 | return "generic"; |
| 289 | } |
| 290 | } else { |
| 291 | return "generic"; |
| 292 | } |
| 293 | } |
| 294 | |
| 295 | X86Subtarget::X86Subtarget(const Module &M, const std::string &FS, bool is64Bit) |
| 296 | : AsmFlavor(AsmWriterFlavor) |
Duncan Sands | de5f95f | 2008-11-28 09:29:37 +0000 | [diff] [blame] | 297 | , PICStyle(PICStyles::None) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 298 | , X86SSELevel(NoMMXSSE) |
Evan Cheng | b6992de | 2008-04-16 19:03:02 +0000 | [diff] [blame] | 299 | , X863DNowLevel(NoThreeDNow) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 300 | , HasX86_64(false) |
Evan Cheng | 95a77fd | 2009-01-02 05:35:45 +0000 | [diff] [blame^] | 301 | , IsBTMemSlow(false) |
Chris Lattner | 93a2d43 | 2008-01-02 19:44:55 +0000 | [diff] [blame] | 302 | , DarwinVers(0) |
Dan Gohman | de22f24 | 2008-05-05 18:43:07 +0000 | [diff] [blame] | 303 | , IsLinux(false) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 304 | , stackAlignment(8) |
| 305 | // FIXME: this is a known good value for Yonah. How about others? |
Rafael Espindola | 7afa9b1 | 2007-10-31 11:52:06 +0000 | [diff] [blame] | 306 | , MaxInlineSizeThreshold(128) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 307 | , Is64Bit(is64Bit) |
| 308 | , TargetType(isELF) { // Default to ELF unless otherwise specified. |
Mon P Wang | 078a62d | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 309 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 310 | // Determine default and user specified characteristics |
| 311 | if (!FS.empty()) { |
| 312 | // If feature string is not empty, parse features string. |
| 313 | std::string CPU = GetCurrentX86CPU(); |
| 314 | ParseSubtargetFeatures(FS, CPU); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 315 | } else { |
| 316 | // Otherwise, use CPUID to auto-detect feature set. |
| 317 | AutoDetectSubtargetFeatures(); |
| 318 | } |
| 319 | |
| 320 | // If requesting codegen for X86-64, make sure that 64-bit and SSE2 features |
| 321 | // are enabled. These are available on all x86-64 CPUs. |
| 322 | if (Is64Bit) { |
| 323 | HasX86_64 = true; |
| 324 | if (X86SSELevel < SSE2) |
| 325 | X86SSELevel = SSE2; |
| 326 | } |
| 327 | |
| 328 | // Set the boolean corresponding to the current target triple, or the default |
| 329 | // if one cannot be determined, to true. |
| 330 | const std::string& TT = M.getTargetTriple(); |
| 331 | if (TT.length() > 5) { |
Duncan Sands | dfd9458 | 2008-01-08 10:06:15 +0000 | [diff] [blame] | 332 | size_t Pos; |
Chris Lattner | 93a2d43 | 2008-01-02 19:44:55 +0000 | [diff] [blame] | 333 | if ((Pos = TT.find("-darwin")) != std::string::npos) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 334 | TargetType = isDarwin; |
Chris Lattner | 93a2d43 | 2008-01-02 19:44:55 +0000 | [diff] [blame] | 335 | |
| 336 | // Compute the darwin version number. |
| 337 | if (isdigit(TT[Pos+7])) |
| 338 | DarwinVers = atoi(&TT[Pos+7]); |
| 339 | else |
| 340 | DarwinVers = 8; // Minimum supported darwin is Tiger. |
Dan Gohman | a65530a | 2008-05-05 00:28:39 +0000 | [diff] [blame] | 341 | } else if (TT.find("linux") != std::string::npos) { |
Dan Gohman | 2593e2b | 2008-05-05 16:11:31 +0000 | [diff] [blame] | 342 | // Linux doesn't imply ELF, but we don't currently support anything else. |
| 343 | TargetType = isELF; |
| 344 | IsLinux = true; |
Chris Lattner | 93a2d43 | 2008-01-02 19:44:55 +0000 | [diff] [blame] | 345 | } else if (TT.find("cygwin") != std::string::npos) { |
| 346 | TargetType = isCygwin; |
| 347 | } else if (TT.find("mingw") != std::string::npos) { |
| 348 | TargetType = isMingw; |
| 349 | } else if (TT.find("win32") != std::string::npos) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 350 | TargetType = isWindows; |
Anton Korobeynikov | f0ce64b | 2008-03-22 21:12:53 +0000 | [diff] [blame] | 351 | } else if (TT.find("windows") != std::string::npos) { |
| 352 | TargetType = isWindows; |
Chris Lattner | 93a2d43 | 2008-01-02 19:44:55 +0000 | [diff] [blame] | 353 | } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 354 | } else if (TT.empty()) { |
| 355 | #if defined(__CYGWIN__) |
| 356 | TargetType = isCygwin; |
Anton Korobeynikov | 62a51e4 | 2008-03-22 21:18:22 +0000 | [diff] [blame] | 357 | #elif defined(__MINGW32__) || defined(__MINGW64__) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 358 | TargetType = isMingw; |
| 359 | #elif defined(__APPLE__) |
| 360 | TargetType = isDarwin; |
Chris Lattner | 93a2d43 | 2008-01-02 19:44:55 +0000 | [diff] [blame] | 361 | #if __APPLE_CC__ > 5400 |
| 362 | DarwinVers = 9; // GCC 5400+ is Leopard. |
| 363 | #else |
| 364 | DarwinVers = 8; // Minimum supported darwin is Tiger. |
| 365 | #endif |
| 366 | |
Anton Korobeynikov | 62a51e4 | 2008-03-22 21:18:22 +0000 | [diff] [blame] | 367 | #elif defined(_WIN32) || defined(_WIN64) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 368 | TargetType = isWindows; |
Dan Gohman | a65530a | 2008-05-05 00:28:39 +0000 | [diff] [blame] | 369 | #elif defined(__linux__) |
| 370 | // Linux doesn't imply ELF, but we don't currently support anything else. |
Dan Gohman | 2593e2b | 2008-05-05 16:11:31 +0000 | [diff] [blame] | 371 | TargetType = isELF; |
| 372 | IsLinux = true; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 373 | #endif |
| 374 | } |
| 375 | |
| 376 | // If the asm syntax hasn't been overridden on the command line, use whatever |
| 377 | // the target wants. |
| 378 | if (AsmFlavor == X86Subtarget::Unset) { |
Chris Lattner | 93a2d43 | 2008-01-02 19:44:55 +0000 | [diff] [blame] | 379 | AsmFlavor = (TargetType == isWindows) |
| 380 | ? X86Subtarget::Intel : X86Subtarget::ATT; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 381 | } |
| 382 | |
Anton Korobeynikov | cdd9381 | 2008-04-23 18:16:16 +0000 | [diff] [blame] | 383 | // Stack alignment is 16 bytes on Darwin (both 32 and 64 bit) and for all 64 |
| 384 | // bit targets. |
| 385 | if (TargetType == isDarwin || Is64Bit) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 386 | stackAlignment = 16; |
Anton Korobeynikov | 06c4240 | 2008-04-12 22:12:22 +0000 | [diff] [blame] | 387 | |
| 388 | if (StackAlignment) |
| 389 | stackAlignment = StackAlignment; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 390 | } |