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