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( |
| 26 | clEnumValN(X86Subtarget::ATT, "att", " Emit AT&T-style assembly"), |
| 27 | clEnumValN(X86Subtarget::Intel, "intel", " Emit Intel-style assembly"), |
| 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()) { |
| 43 | return (!isDirectCall && |
| 44 | (GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() || |
Dale Johannesen | 49c4412 | 2008-05-14 20:12:51 +0000 | [diff] [blame] | 45 | GV->hasCommonLinkage() || |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 46 | (GV->isDeclaration() && !GV->hasNotBeenReadFromBitcode()))); |
Anton Korobeynikov | 6835eb6 | 2008-01-20 13:58:16 +0000 | [diff] [blame] | 47 | } else if (isTargetELF()) { |
Rafael Espindola | ae289c1 | 2008-06-02 07:52:43 +0000 | [diff] [blame] | 48 | // Extra load is needed for all externally visible. |
| 49 | if (isDirectCall) |
| 50 | return false; |
Anton Korobeynikov | 6b57036 | 2008-07-09 13:29:08 +0000 | [diff] [blame] | 51 | if (GV->hasInternalLinkage() || GV->hasHiddenVisibility()) |
Rafael Espindola | ae289c1 | 2008-06-02 07:52:43 +0000 | [diff] [blame] | 52 | return false; |
| 53 | return true; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 54 | } else if (isTargetCygMing() || isTargetWindows()) { |
| 55 | return (GV->hasDLLImportLinkage()); |
| 56 | } |
Anton Korobeynikov | 8c90d2a | 2008-02-20 11:22:39 +0000 | [diff] [blame] | 57 | } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 58 | |
| 59 | return false; |
| 60 | } |
| 61 | |
Bill Wendling | 5db7ffb | 2008-09-30 21:22:07 +0000 | [diff] [blame] | 62 | /// getBZeroEntry - This function returns the name of a function which has an |
| 63 | /// interface like the non-standard bzero function, if such a function exists on |
| 64 | /// the current subtarget and it is considered prefereable over memset with zero |
| 65 | /// passed as the second argument. Otherwise it returns null. |
Bill Wendling | d375203 | 2008-09-30 22:05:33 +0000 | [diff] [blame^] | 66 | const char *X86Subtarget::getBZeroEntry() const { |
Dan Gohman | f95c2bf | 2008-04-01 20:38:36 +0000 | [diff] [blame] | 67 | // Darwin 10 has a __bzero entry point for this purpose. |
| 68 | if (getDarwinVers() >= 10) |
Bill Wendling | d375203 | 2008-09-30 22:05:33 +0000 | [diff] [blame^] | 69 | return "__bzero"; |
Dan Gohman | f95c2bf | 2008-04-01 20:38:36 +0000 | [diff] [blame] | 70 | |
| 71 | return 0; |
| 72 | } |
| 73 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 74 | /// GetCpuIDAndInfo - Execute the specified cpuid and return the 4 values in the |
| 75 | /// specified arguments. If we can't run cpuid on the host, return true. |
| 76 | bool X86::GetCpuIDAndInfo(unsigned value, unsigned *rEAX, unsigned *rEBX, |
| 77 | unsigned *rECX, unsigned *rEDX) { |
| 78 | #if defined(__x86_64__) |
| 79 | // gcc doesn't know cpuid would clobber ebx/rbx. Preseve it manually. |
| 80 | asm ("movq\t%%rbx, %%rsi\n\t" |
| 81 | "cpuid\n\t" |
| 82 | "xchgq\t%%rbx, %%rsi\n\t" |
| 83 | : "=a" (*rEAX), |
| 84 | "=S" (*rEBX), |
| 85 | "=c" (*rECX), |
| 86 | "=d" (*rEDX) |
| 87 | : "a" (value)); |
| 88 | return false; |
| 89 | #elif defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86) |
| 90 | #if defined(__GNUC__) |
| 91 | asm ("movl\t%%ebx, %%esi\n\t" |
| 92 | "cpuid\n\t" |
| 93 | "xchgl\t%%ebx, %%esi\n\t" |
| 94 | : "=a" (*rEAX), |
| 95 | "=S" (*rEBX), |
| 96 | "=c" (*rECX), |
| 97 | "=d" (*rEDX) |
| 98 | : "a" (value)); |
| 99 | return false; |
| 100 | #elif defined(_MSC_VER) |
| 101 | __asm { |
| 102 | mov eax,value |
| 103 | cpuid |
| 104 | mov esi,rEAX |
| 105 | mov dword ptr [esi],eax |
| 106 | mov esi,rEBX |
| 107 | mov dword ptr [esi],ebx |
| 108 | mov esi,rECX |
| 109 | mov dword ptr [esi],ecx |
| 110 | mov esi,rEDX |
| 111 | mov dword ptr [esi],edx |
| 112 | } |
| 113 | return false; |
| 114 | #endif |
| 115 | #endif |
| 116 | return true; |
| 117 | } |
| 118 | |
| 119 | void X86Subtarget::AutoDetectSubtargetFeatures() { |
| 120 | unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0; |
| 121 | union { |
| 122 | unsigned u[3]; |
| 123 | char c[12]; |
| 124 | } text; |
| 125 | |
| 126 | if (X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1)) |
| 127 | return; |
| 128 | |
| 129 | X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX); |
| 130 | |
| 131 | if ((EDX >> 23) & 0x1) X86SSELevel = MMX; |
| 132 | if ((EDX >> 25) & 0x1) X86SSELevel = SSE1; |
| 133 | if ((EDX >> 26) & 0x1) X86SSELevel = SSE2; |
| 134 | if (ECX & 0x1) X86SSELevel = SSE3; |
| 135 | if ((ECX >> 9) & 0x1) X86SSELevel = SSSE3; |
Nate Begeman | b297556 | 2008-02-03 07:18:54 +0000 | [diff] [blame] | 136 | if ((ECX >> 19) & 0x1) X86SSELevel = SSE41; |
| 137 | if ((ECX >> 20) & 0x1) X86SSELevel = SSE42; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 138 | |
| 139 | if (memcmp(text.c, "GenuineIntel", 12) == 0 || |
| 140 | memcmp(text.c, "AuthenticAMD", 12) == 0) { |
| 141 | X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX); |
| 142 | HasX86_64 = (EDX >> 29) & 0x1; |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | static const char *GetCurrentX86CPU() { |
| 147 | unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0; |
| 148 | if (X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX)) |
| 149 | return "generic"; |
| 150 | unsigned Family = (EAX >> 8) & 0xf; // Bits 8 - 11 |
| 151 | unsigned Model = (EAX >> 4) & 0xf; // Bits 4 - 7 |
| 152 | X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX); |
| 153 | bool Em64T = (EDX >> 29) & 0x1; |
| 154 | |
| 155 | union { |
| 156 | unsigned u[3]; |
| 157 | char c[12]; |
| 158 | } text; |
| 159 | |
| 160 | X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1); |
| 161 | if (memcmp(text.c, "GenuineIntel", 12) == 0) { |
| 162 | switch (Family) { |
| 163 | case 3: |
| 164 | return "i386"; |
| 165 | case 4: |
| 166 | return "i486"; |
| 167 | case 5: |
| 168 | switch (Model) { |
| 169 | case 4: return "pentium-mmx"; |
| 170 | default: return "pentium"; |
| 171 | } |
| 172 | case 6: |
| 173 | switch (Model) { |
| 174 | case 1: return "pentiumpro"; |
| 175 | case 3: |
| 176 | case 5: |
| 177 | case 6: return "pentium2"; |
| 178 | case 7: |
| 179 | case 8: |
| 180 | case 10: |
| 181 | case 11: return "pentium3"; |
| 182 | case 9: |
| 183 | case 13: return "pentium-m"; |
| 184 | case 14: return "yonah"; |
| 185 | case 15: return "core2"; |
| 186 | default: return "i686"; |
| 187 | } |
| 188 | case 15: { |
| 189 | switch (Model) { |
| 190 | case 3: |
| 191 | case 4: |
| 192 | return (Em64T) ? "nocona" : "prescott"; |
| 193 | default: |
| 194 | return (Em64T) ? "x86-64" : "pentium4"; |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | default: |
| 199 | return "generic"; |
| 200 | } |
| 201 | } else if (memcmp(text.c, "AuthenticAMD", 12) == 0) { |
| 202 | // FIXME: this poorly matches the generated SubtargetFeatureKV table. There |
| 203 | // appears to be no way to generate the wide variety of AMD-specific targets |
| 204 | // from the information returned from CPUID. |
| 205 | switch (Family) { |
| 206 | case 4: |
| 207 | return "i486"; |
| 208 | case 5: |
| 209 | switch (Model) { |
| 210 | case 6: |
| 211 | case 7: return "k6"; |
| 212 | case 8: return "k6-2"; |
| 213 | case 9: |
| 214 | case 13: return "k6-3"; |
| 215 | default: return "pentium"; |
| 216 | } |
| 217 | case 6: |
| 218 | switch (Model) { |
| 219 | case 4: return "athlon-tbird"; |
| 220 | case 6: |
| 221 | case 7: |
| 222 | case 8: return "athlon-mp"; |
| 223 | case 10: return "athlon-xp"; |
| 224 | default: return "athlon"; |
| 225 | } |
| 226 | case 15: |
| 227 | switch (Model) { |
| 228 | case 1: return "opteron"; |
| 229 | case 5: return "athlon-fx"; // also opteron |
| 230 | default: return "athlon64"; |
| 231 | } |
| 232 | default: |
| 233 | return "generic"; |
| 234 | } |
| 235 | } else { |
| 236 | return "generic"; |
| 237 | } |
| 238 | } |
| 239 | |
| 240 | X86Subtarget::X86Subtarget(const Module &M, const std::string &FS, bool is64Bit) |
| 241 | : AsmFlavor(AsmWriterFlavor) |
| 242 | , PICStyle(PICStyle::None) |
| 243 | , X86SSELevel(NoMMXSSE) |
Evan Cheng | b6992de | 2008-04-16 19:03:02 +0000 | [diff] [blame] | 244 | , X863DNowLevel(NoThreeDNow) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 245 | , HasX86_64(false) |
Chris Lattner | 93a2d43 | 2008-01-02 19:44:55 +0000 | [diff] [blame] | 246 | , DarwinVers(0) |
Dan Gohman | de22f24 | 2008-05-05 18:43:07 +0000 | [diff] [blame] | 247 | , IsLinux(false) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 248 | , stackAlignment(8) |
| 249 | // FIXME: this is a known good value for Yonah. How about others? |
Rafael Espindola | 7afa9b1 | 2007-10-31 11:52:06 +0000 | [diff] [blame] | 250 | , MaxInlineSizeThreshold(128) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 251 | , Is64Bit(is64Bit) |
| 252 | , TargetType(isELF) { // Default to ELF unless otherwise specified. |
Mon P Wang | 078a62d | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 253 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 254 | // Determine default and user specified characteristics |
| 255 | if (!FS.empty()) { |
| 256 | // If feature string is not empty, parse features string. |
| 257 | std::string CPU = GetCurrentX86CPU(); |
| 258 | ParseSubtargetFeatures(FS, CPU); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 259 | } else { |
| 260 | // Otherwise, use CPUID to auto-detect feature set. |
| 261 | AutoDetectSubtargetFeatures(); |
| 262 | } |
| 263 | |
| 264 | // If requesting codegen for X86-64, make sure that 64-bit and SSE2 features |
| 265 | // are enabled. These are available on all x86-64 CPUs. |
| 266 | if (Is64Bit) { |
| 267 | HasX86_64 = true; |
| 268 | if (X86SSELevel < SSE2) |
| 269 | X86SSELevel = SSE2; |
| 270 | } |
| 271 | |
| 272 | // Set the boolean corresponding to the current target triple, or the default |
| 273 | // if one cannot be determined, to true. |
| 274 | const std::string& TT = M.getTargetTriple(); |
| 275 | if (TT.length() > 5) { |
Duncan Sands | dfd9458 | 2008-01-08 10:06:15 +0000 | [diff] [blame] | 276 | size_t Pos; |
Chris Lattner | 93a2d43 | 2008-01-02 19:44:55 +0000 | [diff] [blame] | 277 | if ((Pos = TT.find("-darwin")) != std::string::npos) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 278 | TargetType = isDarwin; |
Chris Lattner | 93a2d43 | 2008-01-02 19:44:55 +0000 | [diff] [blame] | 279 | |
| 280 | // Compute the darwin version number. |
| 281 | if (isdigit(TT[Pos+7])) |
| 282 | DarwinVers = atoi(&TT[Pos+7]); |
| 283 | else |
| 284 | DarwinVers = 8; // Minimum supported darwin is Tiger. |
Dan Gohman | a65530a | 2008-05-05 00:28:39 +0000 | [diff] [blame] | 285 | } else if (TT.find("linux") != std::string::npos) { |
Dan Gohman | 2593e2b | 2008-05-05 16:11:31 +0000 | [diff] [blame] | 286 | // Linux doesn't imply ELF, but we don't currently support anything else. |
| 287 | TargetType = isELF; |
| 288 | IsLinux = true; |
Chris Lattner | 93a2d43 | 2008-01-02 19:44:55 +0000 | [diff] [blame] | 289 | } else if (TT.find("cygwin") != std::string::npos) { |
| 290 | TargetType = isCygwin; |
| 291 | } else if (TT.find("mingw") != std::string::npos) { |
| 292 | TargetType = isMingw; |
| 293 | } else if (TT.find("win32") != std::string::npos) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 294 | TargetType = isWindows; |
Anton Korobeynikov | f0ce64b | 2008-03-22 21:12:53 +0000 | [diff] [blame] | 295 | } else if (TT.find("windows") != std::string::npos) { |
| 296 | TargetType = isWindows; |
Chris Lattner | 93a2d43 | 2008-01-02 19:44:55 +0000 | [diff] [blame] | 297 | } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 298 | } else if (TT.empty()) { |
| 299 | #if defined(__CYGWIN__) |
| 300 | TargetType = isCygwin; |
Anton Korobeynikov | 62a51e4 | 2008-03-22 21:18:22 +0000 | [diff] [blame] | 301 | #elif defined(__MINGW32__) || defined(__MINGW64__) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 302 | TargetType = isMingw; |
| 303 | #elif defined(__APPLE__) |
| 304 | TargetType = isDarwin; |
Chris Lattner | 93a2d43 | 2008-01-02 19:44:55 +0000 | [diff] [blame] | 305 | #if __APPLE_CC__ > 5400 |
| 306 | DarwinVers = 9; // GCC 5400+ is Leopard. |
| 307 | #else |
| 308 | DarwinVers = 8; // Minimum supported darwin is Tiger. |
| 309 | #endif |
| 310 | |
Anton Korobeynikov | 62a51e4 | 2008-03-22 21:18:22 +0000 | [diff] [blame] | 311 | #elif defined(_WIN32) || defined(_WIN64) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 312 | TargetType = isWindows; |
Dan Gohman | a65530a | 2008-05-05 00:28:39 +0000 | [diff] [blame] | 313 | #elif defined(__linux__) |
| 314 | // 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] | 315 | TargetType = isELF; |
| 316 | IsLinux = true; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 317 | #endif |
| 318 | } |
| 319 | |
| 320 | // If the asm syntax hasn't been overridden on the command line, use whatever |
| 321 | // the target wants. |
| 322 | if (AsmFlavor == X86Subtarget::Unset) { |
Chris Lattner | 93a2d43 | 2008-01-02 19:44:55 +0000 | [diff] [blame] | 323 | AsmFlavor = (TargetType == isWindows) |
| 324 | ? X86Subtarget::Intel : X86Subtarget::ATT; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 325 | } |
| 326 | |
Anton Korobeynikov | cdd9381 | 2008-04-23 18:16:16 +0000 | [diff] [blame] | 327 | // Stack alignment is 16 bytes on Darwin (both 32 and 64 bit) and for all 64 |
| 328 | // bit targets. |
| 329 | if (TargetType == isDarwin || Is64Bit) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 330 | stackAlignment = 16; |
Anton Korobeynikov | 06c4240 | 2008-04-12 22:12:22 +0000 | [diff] [blame] | 331 | |
| 332 | if (StackAlignment) |
| 333 | stackAlignment = StackAlignment; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 334 | } |