Daniel Dunbar | e52e6bf | 2008-10-02 01:17:28 +0000 | [diff] [blame] | 1 | //===-- Host.cpp - Implement OS Host Concept --------------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Hans Wennborg | cfe341f | 2014-06-20 01:36:00 +0000 | [diff] [blame] | 10 | // This file implements the operating system Host concept. |
Daniel Dunbar | e52e6bf | 2008-10-02 01:17:28 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 14 | #include "llvm/Support/Host.h" |
Benjamin Kramer | efe4028 | 2012-06-26 21:36:32 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/SmallVector.h" |
Hal Finkel | 59b0ee8 | 2012-06-12 03:03:13 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/StringRef.h" |
| 17 | #include "llvm/ADT/StringSwitch.h" |
Peter Collingbourne | a51c6ed | 2013-01-16 17:27:22 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/Triple.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 19 | #include "llvm/Config/config.h" |
Hal Finkel | 59b0ee8 | 2012-06-12 03:03:13 +0000 | [diff] [blame] | 20 | #include "llvm/Support/Debug.h" |
Rafael Espindola | 97935a9 | 2014-12-17 02:32:44 +0000 | [diff] [blame] | 21 | #include "llvm/Support/FileSystem.h" |
Hal Finkel | 59b0ee8 | 2012-06-12 03:03:13 +0000 | [diff] [blame] | 22 | #include "llvm/Support/raw_ostream.h" |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 23 | #include <string.h> |
Daniel Dunbar | e52e6bf | 2008-10-02 01:17:28 +0000 | [diff] [blame] | 24 | |
| 25 | // Include the platform-specific parts of this class. |
| 26 | #ifdef LLVM_ON_UNIX |
| 27 | #include "Unix/Host.inc" |
| 28 | #endif |
| 29 | #ifdef LLVM_ON_WIN32 |
Michael J. Spencer | 447762d | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 30 | #include "Windows/Host.inc" |
Daniel Dunbar | e52e6bf | 2008-10-02 01:17:28 +0000 | [diff] [blame] | 31 | #endif |
Benjamin Kramer | 3846506 | 2009-11-19 12:17:31 +0000 | [diff] [blame] | 32 | #ifdef _MSC_VER |
| 33 | #include <intrin.h> |
| 34 | #endif |
Hal Finkel | 59b0ee8 | 2012-06-12 03:03:13 +0000 | [diff] [blame] | 35 | #if defined(__APPLE__) && (defined(__ppc__) || defined(__powerpc__)) |
| 36 | #include <mach/mach.h> |
| 37 | #include <mach/mach_host.h> |
| 38 | #include <mach/host_info.h> |
| 39 | #include <mach/machine.h> |
| 40 | #endif |
Daniel Dunbar | e52e6bf | 2008-10-02 01:17:28 +0000 | [diff] [blame] | 41 | |
Chandler Carruth | 66f38db | 2014-04-21 23:58:10 +0000 | [diff] [blame] | 42 | #define DEBUG_TYPE "host-detection" |
| 43 | |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 44 | //===----------------------------------------------------------------------===// |
| 45 | // |
| 46 | // Implementations of the CPU detection routines |
| 47 | // |
| 48 | //===----------------------------------------------------------------------===// |
| 49 | |
| 50 | using namespace llvm; |
| 51 | |
Rafael Espindola | 81adfb5 | 2014-12-17 02:42:20 +0000 | [diff] [blame] | 52 | #if defined(__linux__) |
Rafael Espindola | 97935a9 | 2014-12-17 02:32:44 +0000 | [diff] [blame] | 53 | static ssize_t LLVM_ATTRIBUTE_UNUSED readCpuInfo(void *Buf, size_t Size) { |
Rafael Espindola | 97935a9 | 2014-12-17 02:32:44 +0000 | [diff] [blame] | 54 | // Note: We cannot mmap /proc/cpuinfo here and then process the resulting |
| 55 | // memory buffer because the 'file' has 0 size (it can be read from only |
| 56 | // as a stream). |
| 57 | |
| 58 | int FD; |
| 59 | std::error_code EC = sys::fs::openFileForRead("/proc/cpuinfo", FD); |
| 60 | if (EC) { |
| 61 | DEBUG(dbgs() << "Unable to open /proc/cpuinfo: " << EC.message() << "\n"); |
| 62 | return -1; |
| 63 | } |
| 64 | int Ret = read(FD, Buf, Size); |
| 65 | int CloseStatus = close(FD); |
| 66 | if (CloseStatus) |
| 67 | return -1; |
| 68 | return Ret; |
| 69 | } |
Rafael Espindola | 81adfb5 | 2014-12-17 02:42:20 +0000 | [diff] [blame] | 70 | #endif |
Rafael Espindola | 97935a9 | 2014-12-17 02:32:44 +0000 | [diff] [blame] | 71 | |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 72 | #if defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86)\ |
| 73 | || defined(__x86_64__) || defined(_M_AMD64) || defined (_M_X64) |
| 74 | |
| 75 | /// GetX86CpuIDAndInfo - Execute the specified cpuid and return the 4 values in the |
| 76 | /// specified arguments. If we can't run cpuid on the host, return true. |
Reid Kleckner | be85cb9 | 2013-08-14 18:21:51 +0000 | [diff] [blame] | 77 | static bool GetX86CpuIDAndInfo(unsigned value, unsigned *rEAX, unsigned *rEBX, |
| 78 | unsigned *rECX, unsigned *rEDX) { |
Reid Kleckner | bf4f9eb | 2013-08-16 22:42:42 +0000 | [diff] [blame] | 79 | #if defined(__GNUC__) || defined(__clang__) |
Reid Kleckner | be85cb9 | 2013-08-14 18:21:51 +0000 | [diff] [blame] | 80 | #if defined(__x86_64__) || defined(_M_AMD64) || defined (_M_X64) |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 81 | // gcc doesn't know cpuid would clobber ebx/rbx. Preseve it manually. |
| 82 | asm ("movq\t%%rbx, %%rsi\n\t" |
| 83 | "cpuid\n\t" |
| 84 | "xchgq\t%%rbx, %%rsi\n\t" |
| 85 | : "=a" (*rEAX), |
| 86 | "=S" (*rEBX), |
| 87 | "=c" (*rECX), |
| 88 | "=d" (*rEDX) |
| 89 | : "a" (value)); |
| 90 | return false; |
Reid Kleckner | be85cb9 | 2013-08-14 18:21:51 +0000 | [diff] [blame] | 91 | #elif defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86) |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 92 | asm ("movl\t%%ebx, %%esi\n\t" |
| 93 | "cpuid\n\t" |
| 94 | "xchgl\t%%ebx, %%esi\n\t" |
| 95 | : "=a" (*rEAX), |
| 96 | "=S" (*rEBX), |
| 97 | "=c" (*rECX), |
| 98 | "=d" (*rEDX) |
| 99 | : "a" (value)); |
| 100 | return false; |
David Blaikie | b48ed1a | 2012-01-17 04:43:56 +0000 | [diff] [blame] | 101 | // pedantic #else returns to appease -Wunreachable-code (so we don't generate |
| 102 | // postprocessed code that looks like "return true; return false;") |
| 103 | #else |
| 104 | return true; |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 105 | #endif |
Reid Kleckner | bf4f9eb | 2013-08-16 22:42:42 +0000 | [diff] [blame] | 106 | #elif defined(_MSC_VER) |
| 107 | // The MSVC intrinsic is portable across x86 and x64. |
| 108 | int registers[4]; |
| 109 | __cpuid(registers, value); |
| 110 | *rEAX = registers[0]; |
| 111 | *rEBX = registers[1]; |
| 112 | *rECX = registers[2]; |
| 113 | *rEDX = registers[3]; |
| 114 | return false; |
David Blaikie | b48ed1a | 2012-01-17 04:43:56 +0000 | [diff] [blame] | 115 | #else |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 116 | return true; |
David Blaikie | b48ed1a | 2012-01-17 04:43:56 +0000 | [diff] [blame] | 117 | #endif |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 118 | } |
| 119 | |
Tim Northover | 89ccb61 | 2013-11-25 09:52:59 +0000 | [diff] [blame] | 120 | /// GetX86CpuIDAndInfoEx - Execute the specified cpuid with subleaf and return the |
| 121 | /// 4 values in the specified arguments. If we can't run cpuid on the host, |
| 122 | /// return true. |
Benjamin Kramer | 583b00e | 2013-11-25 15:40:24 +0000 | [diff] [blame] | 123 | static bool GetX86CpuIDAndInfoEx(unsigned value, unsigned subleaf, |
| 124 | unsigned *rEAX, unsigned *rEBX, unsigned *rECX, |
| 125 | unsigned *rEDX) { |
Tim Northover | 89ccb61 | 2013-11-25 09:52:59 +0000 | [diff] [blame] | 126 | #if defined(__x86_64__) || defined(_M_AMD64) || defined (_M_X64) |
| 127 | #if defined(__GNUC__) |
| 128 | // gcc doesn't know cpuid would clobber ebx/rbx. Preseve it manually. |
| 129 | asm ("movq\t%%rbx, %%rsi\n\t" |
| 130 | "cpuid\n\t" |
| 131 | "xchgq\t%%rbx, %%rsi\n\t" |
| 132 | : "=a" (*rEAX), |
| 133 | "=S" (*rEBX), |
| 134 | "=c" (*rECX), |
| 135 | "=d" (*rEDX) |
| 136 | : "a" (value), |
| 137 | "c" (subleaf)); |
| 138 | return false; |
| 139 | #elif defined(_MSC_VER) |
Aaron Ballman | b664e2a | 2015-02-16 18:23:00 +0000 | [diff] [blame] | 140 | int registers[4]; |
| 141 | __cpuidex(registers, value, subleaf); |
| 142 | *rEAX = registers[0]; |
| 143 | *rEBX = registers[1]; |
| 144 | *rECX = registers[2]; |
| 145 | *rEDX = registers[3]; |
| 146 | return false; |
Tim Northover | 89ccb61 | 2013-11-25 09:52:59 +0000 | [diff] [blame] | 147 | #else |
| 148 | return true; |
| 149 | #endif |
| 150 | #elif defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86) |
| 151 | #if defined(__GNUC__) |
| 152 | asm ("movl\t%%ebx, %%esi\n\t" |
| 153 | "cpuid\n\t" |
| 154 | "xchgl\t%%ebx, %%esi\n\t" |
| 155 | : "=a" (*rEAX), |
| 156 | "=S" (*rEBX), |
| 157 | "=c" (*rECX), |
| 158 | "=d" (*rEDX) |
| 159 | : "a" (value), |
| 160 | "c" (subleaf)); |
| 161 | return false; |
| 162 | #elif defined(_MSC_VER) |
| 163 | __asm { |
| 164 | mov eax,value |
| 165 | mov ecx,subleaf |
| 166 | cpuid |
| 167 | mov esi,rEAX |
| 168 | mov dword ptr [esi],eax |
| 169 | mov esi,rEBX |
| 170 | mov dword ptr [esi],ebx |
| 171 | mov esi,rECX |
| 172 | mov dword ptr [esi],ecx |
| 173 | mov esi,rEDX |
| 174 | mov dword ptr [esi],edx |
| 175 | } |
| 176 | return false; |
| 177 | #else |
| 178 | return true; |
| 179 | #endif |
| 180 | #else |
| 181 | return true; |
| 182 | #endif |
| 183 | } |
| 184 | |
Craig Topper | 798a260 | 2015-03-29 01:00:23 +0000 | [diff] [blame] | 185 | static bool GetX86XCR0(unsigned *rEAX, unsigned *rEDX) { |
Craig Topper | 7af39d7 | 2013-04-22 05:38:01 +0000 | [diff] [blame] | 186 | #if defined(__GNUC__) |
| 187 | // Check xgetbv; this uses a .byte sequence instead of the instruction |
| 188 | // directly because older assemblers do not include support for xgetbv and |
| 189 | // there is no easy way to conditionally compile based on the assembler used. |
Craig Topper | 798a260 | 2015-03-29 01:00:23 +0000 | [diff] [blame] | 190 | __asm__ (".byte 0x0f, 0x01, 0xd0" : "=a" (*rEAX), "=d" (*rEDX) : "c" (0)); |
| 191 | return false; |
Aaron Ballman | 31c0adc | 2013-04-23 17:38:44 +0000 | [diff] [blame] | 192 | #elif defined(_MSC_FULL_VER) && defined(_XCR_XFEATURE_ENABLED_MASK) |
Craig Topper | 798a260 | 2015-03-29 01:00:23 +0000 | [diff] [blame] | 193 | unsigned long long Result = _xgetbv(_XCR_XFEATURE_ENABLED_MASK); |
Craig Topper | 7db49fd | 2015-03-29 01:07:57 +0000 | [diff] [blame] | 194 | *rEAX = Result; |
| 195 | *rEDX = Result >> 32; |
Craig Topper | 798a260 | 2015-03-29 01:00:23 +0000 | [diff] [blame] | 196 | return false; |
Craig Topper | 7af39d7 | 2013-04-22 05:38:01 +0000 | [diff] [blame] | 197 | #else |
Craig Topper | 798a260 | 2015-03-29 01:00:23 +0000 | [diff] [blame] | 198 | return true; |
Craig Topper | 7af39d7 | 2013-04-22 05:38:01 +0000 | [diff] [blame] | 199 | #endif |
Aaron Ballman | 5f7c680 | 2013-04-03 12:25:06 +0000 | [diff] [blame] | 200 | } |
| 201 | |
Chris Lattner | 963debc | 2010-09-06 05:19:44 +0000 | [diff] [blame] | 202 | static void DetectX86FamilyModel(unsigned EAX, unsigned &Family, |
| 203 | unsigned &Model) { |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 204 | Family = (EAX >> 8) & 0xf; // Bits 8 - 11 |
| 205 | Model = (EAX >> 4) & 0xf; // Bits 4 - 7 |
| 206 | if (Family == 6 || Family == 0xf) { |
| 207 | if (Family == 0xf) |
| 208 | // Examine extended family ID if family ID is F. |
| 209 | Family += (EAX >> 20) & 0xff; // Bits 20 - 27 |
| 210 | // Examine extended model ID if family ID is 6 or F. |
| 211 | Model += ((EAX >> 16) & 0xf) << 4; // Bits 16 - 19 |
| 212 | } |
| 213 | } |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 214 | |
Rafael Espindola | 74f444c | 2013-12-12 15:45:32 +0000 | [diff] [blame] | 215 | StringRef sys::getHostCPUName() { |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 216 | unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0; |
| 217 | if (GetX86CpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX)) |
| 218 | return "generic"; |
| 219 | unsigned Family = 0; |
| 220 | unsigned Model = 0; |
| 221 | DetectX86FamilyModel(EAX, Family, Model); |
| 222 | |
Tim Northover | 89ccb61 | 2013-11-25 09:52:59 +0000 | [diff] [blame] | 223 | union { |
| 224 | unsigned u[3]; |
| 225 | char c[12]; |
| 226 | } text; |
| 227 | |
| 228 | GetX86CpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1); |
| 229 | |
| 230 | unsigned MaxLeaf = EAX; |
Chris Lattner | 963debc | 2010-09-06 05:19:44 +0000 | [diff] [blame] | 231 | bool HasSSE3 = (ECX & 0x1); |
Benjamin Kramer | fb34989 | 2013-07-29 11:02:08 +0000 | [diff] [blame] | 232 | bool HasSSE41 = (ECX & 0x80000); |
Aaron Ballman | 5f7c680 | 2013-04-03 12:25:06 +0000 | [diff] [blame] | 233 | // If CPUID indicates support for XSAVE, XRESTORE and AVX, and XGETBV |
| 234 | // indicates that the AVX registers will be saved and restored on context |
| 235 | // switch, then we have full AVX support. |
Aaron Ballman | 5e6d205 | 2013-04-03 18:00:22 +0000 | [diff] [blame] | 236 | const unsigned AVXBits = (1 << 27) | (1 << 28); |
Craig Topper | 798a260 | 2015-03-29 01:00:23 +0000 | [diff] [blame] | 237 | bool HasAVX = ((ECX & AVXBits) == AVXBits) && !GetX86XCR0(&EAX, &EDX) && |
| 238 | ((EAX & 0x6) == 0x6); |
Tim Northover | 89ccb61 | 2013-11-25 09:52:59 +0000 | [diff] [blame] | 239 | bool HasAVX2 = HasAVX && MaxLeaf >= 0x7 && |
| 240 | !GetX86CpuIDAndInfoEx(0x7, 0x0, &EAX, &EBX, &ECX, &EDX) && |
| 241 | (EBX & 0x20); |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 242 | GetX86CpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX); |
| 243 | bool Em64T = (EDX >> 29) & 0x1; |
Kaelyn Takata | a39d2a0 | 2014-05-05 16:32:10 +0000 | [diff] [blame] | 244 | bool HasTBM = (ECX >> 21) & 0x1; |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 245 | |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 246 | if (memcmp(text.c, "GenuineIntel", 12) == 0) { |
| 247 | switch (Family) { |
Daniel Dunbar | 397235f | 2009-11-14 21:36:19 +0000 | [diff] [blame] | 248 | case 3: |
| 249 | return "i386"; |
| 250 | case 4: |
| 251 | switch (Model) { |
NAKAMURA Takumi | 19e11f1 | 2010-09-09 13:30:48 +0000 | [diff] [blame] | 252 | case 0: // Intel486 DX processors |
| 253 | case 1: // Intel486 DX processors |
Daniel Dunbar | 397235f | 2009-11-14 21:36:19 +0000 | [diff] [blame] | 254 | case 2: // Intel486 SX processors |
NAKAMURA Takumi | 19e11f1 | 2010-09-09 13:30:48 +0000 | [diff] [blame] | 255 | case 3: // Intel487 processors, IntelDX2 OverDrive processors, |
| 256 | // IntelDX2 processors |
Daniel Dunbar | 397235f | 2009-11-14 21:36:19 +0000 | [diff] [blame] | 257 | case 4: // Intel486 SL processor |
NAKAMURA Takumi | 19e11f1 | 2010-09-09 13:30:48 +0000 | [diff] [blame] | 258 | case 5: // IntelSX2 processors |
Daniel Dunbar | 397235f | 2009-11-14 21:36:19 +0000 | [diff] [blame] | 259 | case 7: // Write-Back Enhanced IntelDX2 processors |
NAKAMURA Takumi | 19e11f1 | 2010-09-09 13:30:48 +0000 | [diff] [blame] | 260 | case 8: // IntelDX4 OverDrive processors, IntelDX4 processors |
Daniel Dunbar | 397235f | 2009-11-14 21:36:19 +0000 | [diff] [blame] | 261 | default: return "i486"; |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 262 | } |
Daniel Dunbar | 397235f | 2009-11-14 21:36:19 +0000 | [diff] [blame] | 263 | case 5: |
| 264 | switch (Model) { |
| 265 | case 1: // Pentium OverDrive processor for Pentium processor (60, 66), |
NAKAMURA Takumi | 19e11f1 | 2010-09-09 13:30:48 +0000 | [diff] [blame] | 266 | // Pentium processors (60, 66) |
Daniel Dunbar | 397235f | 2009-11-14 21:36:19 +0000 | [diff] [blame] | 267 | case 2: // Pentium OverDrive processor for Pentium processor (75, 90, |
| 268 | // 100, 120, 133), Pentium processors (75, 90, 100, 120, 133, |
| 269 | // 150, 166, 200) |
| 270 | case 3: // Pentium OverDrive processors for Intel486 processor-based |
| 271 | // systems |
| 272 | return "pentium"; |
| 273 | |
NAKAMURA Takumi | 19e11f1 | 2010-09-09 13:30:48 +0000 | [diff] [blame] | 274 | case 4: // Pentium OverDrive processor with MMX technology for Pentium |
Daniel Dunbar | 397235f | 2009-11-14 21:36:19 +0000 | [diff] [blame] | 275 | // processor (75, 90, 100, 120, 133), Pentium processor with |
NAKAMURA Takumi | 19e11f1 | 2010-09-09 13:30:48 +0000 | [diff] [blame] | 276 | // MMX technology (166, 200) |
Daniel Dunbar | 397235f | 2009-11-14 21:36:19 +0000 | [diff] [blame] | 277 | return "pentium-mmx"; |
| 278 | |
| 279 | default: return "pentium"; |
| 280 | } |
| 281 | case 6: |
| 282 | switch (Model) { |
| 283 | case 1: // Pentium Pro processor |
| 284 | return "pentiumpro"; |
| 285 | |
| 286 | case 3: // Intel Pentium II OverDrive processor, Pentium II processor, |
| 287 | // model 03 |
| 288 | case 5: // Pentium II processor, model 05, Pentium II Xeon processor, |
NAKAMURA Takumi | 19e11f1 | 2010-09-09 13:30:48 +0000 | [diff] [blame] | 289 | // model 05, and Intel Celeron processor, model 05 |
Daniel Dunbar | 397235f | 2009-11-14 21:36:19 +0000 | [diff] [blame] | 290 | case 6: // Celeron processor, model 06 |
| 291 | return "pentium2"; |
| 292 | |
| 293 | case 7: // Pentium III processor, model 07, and Pentium III Xeon |
| 294 | // processor, model 07 |
| 295 | case 8: // Pentium III processor, model 08, Pentium III Xeon processor, |
| 296 | // model 08, and Celeron processor, model 08 |
| 297 | case 10: // Pentium III Xeon processor, model 0Ah |
| 298 | case 11: // Pentium III processor, model 0Bh |
| 299 | return "pentium3"; |
| 300 | |
| 301 | case 9: // Intel Pentium M processor, Intel Celeron M processor model 09. |
| 302 | case 13: // Intel Pentium M processor, Intel Celeron M processor, model |
| 303 | // 0Dh. All processors are manufactured using the 90 nm process. |
| 304 | return "pentium-m"; |
| 305 | |
NAKAMURA Takumi | 19e11f1 | 2010-09-09 13:30:48 +0000 | [diff] [blame] | 306 | case 14: // Intel Core Duo processor, Intel Core Solo processor, model |
Daniel Dunbar | 397235f | 2009-11-14 21:36:19 +0000 | [diff] [blame] | 307 | // 0Eh. All processors are manufactured using the 65 nm process. |
| 308 | return "yonah"; |
| 309 | |
NAKAMURA Takumi | 19e11f1 | 2010-09-09 13:30:48 +0000 | [diff] [blame] | 310 | case 15: // Intel Core 2 Duo processor, Intel Core 2 Duo mobile |
| 311 | // processor, Intel Core 2 Quad processor, Intel Core 2 Quad |
| 312 | // mobile processor, Intel Core 2 Extreme processor, Intel |
Daniel Dunbar | 397235f | 2009-11-14 21:36:19 +0000 | [diff] [blame] | 313 | // Pentium Dual-Core processor, Intel Xeon processor, model |
| 314 | // 0Fh. All processors are manufactured using the 65 nm process. |
| 315 | case 22: // Intel Celeron processor model 16h. All processors are |
| 316 | // manufactured using the 65 nm process |
| 317 | return "core2"; |
| 318 | |
| 319 | case 21: // Intel EP80579 Integrated Processor and Intel EP80579 |
| 320 | // Integrated Processor with Intel QuickAssist Technology |
| 321 | return "i686"; // FIXME: ??? |
| 322 | |
NAKAMURA Takumi | 19e11f1 | 2010-09-09 13:30:48 +0000 | [diff] [blame] | 323 | case 23: // Intel Core 2 Extreme processor, Intel Xeon processor, model |
Daniel Dunbar | 397235f | 2009-11-14 21:36:19 +0000 | [diff] [blame] | 324 | // 17h. All processors are manufactured using the 45 nm process. |
| 325 | // |
| 326 | // 45nm: Penryn , Wolfdale, Yorkfield (XE) |
Craig Topper | 4e78a92 | 2015-03-30 06:31:03 +0000 | [diff] [blame^] | 327 | case 29: // Intel Xeon processor MP. All processors are manufactured using |
| 328 | // the 45 nm process. |
Benjamin Kramer | fb34989 | 2013-07-29 11:02:08 +0000 | [diff] [blame] | 329 | // Not all Penryn processors support SSE 4.1 (such as the Pentium brand) |
| 330 | return HasSSE41 ? "penryn" : "core2"; |
Daniel Dunbar | 397235f | 2009-11-14 21:36:19 +0000 | [diff] [blame] | 331 | |
| 332 | case 26: // Intel Core i7 processor and Intel Xeon processor. All |
| 333 | // processors are manufactured using the 45 nm process. |
Jakob Stoklund Olesen | 49e58a9 | 2010-09-19 17:54:28 +0000 | [diff] [blame] | 334 | case 30: // Intel(R) Core(TM) i7 CPU 870 @ 2.93GHz. |
| 335 | // As found in a Summer 2010 model iMac. |
Chris Lattner | b737bac | 2010-09-19 00:31:58 +0000 | [diff] [blame] | 336 | case 37: // Intel Core i7, laptop version. |
Benjamin Kramer | 5a122f3 | 2011-08-25 18:05:56 +0000 | [diff] [blame] | 337 | case 44: // Intel Core i7 processor and Intel Xeon processor. All |
| 338 | // processors are manufactured using the 32 nm process. |
Benjamin Kramer | 9d6063a | 2012-09-26 18:21:47 +0000 | [diff] [blame] | 339 | case 46: // Nehalem EX |
| 340 | case 47: // Westmere EX |
Daniel Dunbar | 397235f | 2009-11-14 21:36:19 +0000 | [diff] [blame] | 341 | return "corei7"; |
Bob Wilson | d0f0600 | 2011-07-08 22:33:59 +0000 | [diff] [blame] | 342 | |
| 343 | // SandyBridge: |
| 344 | case 42: // Intel Core i7 processor. All processors are manufactured |
| 345 | // using the 32 nm process. |
Chris Lattner | 889c40e | 2011-06-09 06:38:17 +0000 | [diff] [blame] | 346 | case 45: |
Aaron Ballman | 5f7c680 | 2013-04-03 12:25:06 +0000 | [diff] [blame] | 347 | // Not all Sandy Bridge processors support AVX (such as the Pentium |
| 348 | // versions instead of the i7 versions). |
| 349 | return HasAVX ? "corei7-avx" : "corei7"; |
Daniel Dunbar | 397235f | 2009-11-14 21:36:19 +0000 | [diff] [blame] | 350 | |
Evan Cheng | 7fd1607 | 2012-04-23 22:41:39 +0000 | [diff] [blame] | 351 | // Ivy Bridge: |
| 352 | case 58: |
Tim Northover | 89ccb61 | 2013-11-25 09:52:59 +0000 | [diff] [blame] | 353 | case 62: // Ivy Bridge EP |
Aaron Ballman | 5f7c680 | 2013-04-03 12:25:06 +0000 | [diff] [blame] | 354 | // Not all Ivy Bridge processors support AVX (such as the Pentium |
| 355 | // versions instead of the i7 versions). |
| 356 | return HasAVX ? "core-avx-i" : "corei7"; |
Evan Cheng | 7fd1607 | 2012-04-23 22:41:39 +0000 | [diff] [blame] | 357 | |
Tim Northover | 89ccb61 | 2013-11-25 09:52:59 +0000 | [diff] [blame] | 358 | // Haswell: |
| 359 | case 60: |
| 360 | case 63: |
| 361 | case 69: |
| 362 | case 70: |
Craig Topper | 3b1c350 | 2015-03-23 04:17:11 +0000 | [diff] [blame] | 363 | // Not all Haswell processors support AVX2 (such as the Pentium |
Tim Northover | 89ccb61 | 2013-11-25 09:52:59 +0000 | [diff] [blame] | 364 | // versions instead of the i7 versions). |
| 365 | return HasAVX2 ? "core-avx2" : "corei7"; |
| 366 | |
Craig Topper | 1e1b0f7 | 2015-03-23 00:15:06 +0000 | [diff] [blame] | 367 | // Broadwell: |
| 368 | case 61: |
Craig Topper | 3b1c350 | 2015-03-23 04:17:11 +0000 | [diff] [blame] | 369 | // Not all Broadwell processors support AVX2 (such as the Pentium |
Craig Topper | 1e1b0f7 | 2015-03-23 00:15:06 +0000 | [diff] [blame] | 370 | // versions instead of the i7 versions). |
| 371 | return HasAVX2 ? "broadwell" : "corei7"; |
| 372 | |
Preston Gurd | c0b976c | 2012-05-02 21:38:46 +0000 | [diff] [blame] | 373 | case 28: // Most 45 nm Intel Atom processors |
| 374 | case 38: // 45 nm Atom Lincroft |
| 375 | case 39: // 32 nm Atom Medfield |
Preston Gurd | 8e08268 | 2012-07-19 19:05:37 +0000 | [diff] [blame] | 376 | case 53: // 32 nm Atom Midview |
| 377 | case 54: // 32 nm Atom Midview |
Daniel Dunbar | 397235f | 2009-11-14 21:36:19 +0000 | [diff] [blame] | 378 | return "atom"; |
| 379 | |
Preston Gurd | 3fe264d | 2013-09-13 19:23:28 +0000 | [diff] [blame] | 380 | // Atom Silvermont codes from the Intel software optimization guide. |
| 381 | case 55: |
Benjamin Kramer | 8f42938 | 2013-08-30 14:05:32 +0000 | [diff] [blame] | 382 | case 74: |
| 383 | case 77: |
| 384 | return "slm"; |
| 385 | |
Bob Wilson | 8d4e2fa | 2012-05-09 17:47:03 +0000 | [diff] [blame] | 386 | default: return (Em64T) ? "x86-64" : "i686"; |
Daniel Dunbar | 397235f | 2009-11-14 21:36:19 +0000 | [diff] [blame] | 387 | } |
| 388 | case 15: { |
| 389 | switch (Model) { |
| 390 | case 0: // Pentium 4 processor, Intel Xeon processor. All processors are |
| 391 | // model 00h and manufactured using the 0.18 micron process. |
| 392 | case 1: // Pentium 4 processor, Intel Xeon processor, Intel Xeon |
| 393 | // processor MP, and Intel Celeron processor. All processors are |
| 394 | // model 01h and manufactured using the 0.18 micron process. |
NAKAMURA Takumi | 19e11f1 | 2010-09-09 13:30:48 +0000 | [diff] [blame] | 395 | case 2: // Pentium 4 processor, Mobile Intel Pentium 4 processor - M, |
Daniel Dunbar | 397235f | 2009-11-14 21:36:19 +0000 | [diff] [blame] | 396 | // Intel Xeon processor, Intel Xeon processor MP, Intel Celeron |
| 397 | // processor, and Mobile Intel Celeron processor. All processors |
| 398 | // are model 02h and manufactured using the 0.13 micron process. |
| 399 | return (Em64T) ? "x86-64" : "pentium4"; |
| 400 | |
| 401 | case 3: // Pentium 4 processor, Intel Xeon processor, Intel Celeron D |
| 402 | // processor. All processors are model 03h and manufactured using |
| 403 | // the 90 nm process. |
| 404 | case 4: // Pentium 4 processor, Pentium 4 processor Extreme Edition, |
| 405 | // Pentium D processor, Intel Xeon processor, Intel Xeon |
| 406 | // processor MP, Intel Celeron D processor. All processors are |
| 407 | // model 04h and manufactured using the 90 nm process. |
| 408 | case 6: // Pentium 4 processor, Pentium D processor, Pentium processor |
| 409 | // Extreme Edition, Intel Xeon processor, Intel Xeon processor |
| 410 | // MP, Intel Celeron D processor. All processors are model 06h |
| 411 | // and manufactured using the 65 nm process. |
| 412 | return (Em64T) ? "nocona" : "prescott"; |
| 413 | |
Daniel Dunbar | 397235f | 2009-11-14 21:36:19 +0000 | [diff] [blame] | 414 | default: |
| 415 | return (Em64T) ? "x86-64" : "pentium4"; |
| 416 | } |
| 417 | } |
| 418 | |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 419 | default: |
Benjamin Kramer | 713fd35 | 2009-11-17 17:57:04 +0000 | [diff] [blame] | 420 | return "generic"; |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 421 | } |
| 422 | } else if (memcmp(text.c, "AuthenticAMD", 12) == 0) { |
| 423 | // FIXME: this poorly matches the generated SubtargetFeatureKV table. There |
| 424 | // appears to be no way to generate the wide variety of AMD-specific targets |
| 425 | // from the information returned from CPUID. |
| 426 | switch (Family) { |
| 427 | case 4: |
| 428 | return "i486"; |
| 429 | case 5: |
| 430 | switch (Model) { |
| 431 | case 6: |
| 432 | case 7: return "k6"; |
| 433 | case 8: return "k6-2"; |
| 434 | case 9: |
| 435 | case 13: return "k6-3"; |
Roman Divacky | fd69009 | 2012-09-12 14:36:02 +0000 | [diff] [blame] | 436 | case 10: return "geode"; |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 437 | default: return "pentium"; |
| 438 | } |
| 439 | case 6: |
| 440 | switch (Model) { |
| 441 | case 4: return "athlon-tbird"; |
| 442 | case 6: |
| 443 | case 7: |
| 444 | case 8: return "athlon-mp"; |
| 445 | case 10: return "athlon-xp"; |
| 446 | default: return "athlon"; |
| 447 | } |
| 448 | case 15: |
Chris Lattner | 963debc | 2010-09-06 05:19:44 +0000 | [diff] [blame] | 449 | if (HasSSE3) |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 450 | return "k8-sse3"; |
Chris Lattner | 963debc | 2010-09-06 05:19:44 +0000 | [diff] [blame] | 451 | switch (Model) { |
| 452 | case 1: return "opteron"; |
| 453 | case 5: return "athlon-fx"; // also opteron |
| 454 | default: return "athlon64"; |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 455 | } |
| 456 | case 16: |
| 457 | return "amdfam10"; |
Benjamin Kramer | 077ae1d | 2012-01-10 11:50:02 +0000 | [diff] [blame] | 458 | case 20: |
| 459 | return "btver1"; |
Benjamin Kramer | 3ced545 | 2011-12-01 18:24:17 +0000 | [diff] [blame] | 460 | case 21: |
Benjamin Kramer | b44c427 | 2013-05-03 10:20:08 +0000 | [diff] [blame] | 461 | if (!HasAVX) // If the OS doesn't support AVX provide a sane fallback. |
| 462 | return "btver1"; |
Benjamin Kramer | 6004573 | 2014-05-02 15:47:07 +0000 | [diff] [blame] | 463 | if (Model >= 0x50) |
| 464 | return "bdver4"; // 50h-6Fh: Excavator |
Benjamin Kramer | d114def | 2013-11-04 10:29:20 +0000 | [diff] [blame] | 465 | if (Model >= 0x30) |
| 466 | return "bdver3"; // 30h-3Fh: Steamroller |
Kaelyn Takata | a39d2a0 | 2014-05-05 16:32:10 +0000 | [diff] [blame] | 467 | if (Model >= 0x10 || HasTBM) |
Benjamin Kramer | d114def | 2013-11-04 10:29:20 +0000 | [diff] [blame] | 468 | return "bdver2"; // 10h-1Fh: Piledriver |
| 469 | return "bdver1"; // 00h-0Fh: Bulldozer |
Benjamin Kramer | b44c427 | 2013-05-03 10:20:08 +0000 | [diff] [blame] | 470 | case 22: |
| 471 | if (!HasAVX) // If the OS doesn't support AVX provide a sane fallback. |
| 472 | return "btver1"; |
| 473 | return "btver2"; |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 474 | default: |
Benjamin Kramer | 713fd35 | 2009-11-17 17:57:04 +0000 | [diff] [blame] | 475 | return "generic"; |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 476 | } |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 477 | } |
Torok Edwin | 022336a | 2009-12-14 12:38:18 +0000 | [diff] [blame] | 478 | return "generic"; |
Torok Edwin | abdc1c2 | 2009-12-13 08:59:40 +0000 | [diff] [blame] | 479 | } |
Hal Finkel | 59b0ee8 | 2012-06-12 03:03:13 +0000 | [diff] [blame] | 480 | #elif defined(__APPLE__) && (defined(__ppc__) || defined(__powerpc__)) |
Rafael Espindola | 1f58e4d | 2013-12-12 16:10:48 +0000 | [diff] [blame] | 481 | StringRef sys::getHostCPUName() { |
Hal Finkel | 59b0ee8 | 2012-06-12 03:03:13 +0000 | [diff] [blame] | 482 | host_basic_info_data_t hostInfo; |
| 483 | mach_msg_type_number_t infoCount; |
| 484 | |
| 485 | infoCount = HOST_BASIC_INFO_COUNT; |
| 486 | host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo, |
| 487 | &infoCount); |
| 488 | |
| 489 | if (hostInfo.cpu_type != CPU_TYPE_POWERPC) return "generic"; |
| 490 | |
| 491 | switch(hostInfo.cpu_subtype) { |
| 492 | case CPU_SUBTYPE_POWERPC_601: return "601"; |
| 493 | case CPU_SUBTYPE_POWERPC_602: return "602"; |
| 494 | case CPU_SUBTYPE_POWERPC_603: return "603"; |
| 495 | case CPU_SUBTYPE_POWERPC_603e: return "603e"; |
| 496 | case CPU_SUBTYPE_POWERPC_603ev: return "603ev"; |
| 497 | case CPU_SUBTYPE_POWERPC_604: return "604"; |
| 498 | case CPU_SUBTYPE_POWERPC_604e: return "604e"; |
| 499 | case CPU_SUBTYPE_POWERPC_620: return "620"; |
| 500 | case CPU_SUBTYPE_POWERPC_750: return "750"; |
| 501 | case CPU_SUBTYPE_POWERPC_7400: return "7400"; |
| 502 | case CPU_SUBTYPE_POWERPC_7450: return "7450"; |
| 503 | case CPU_SUBTYPE_POWERPC_970: return "970"; |
| 504 | default: ; |
| 505 | } |
| 506 | |
| 507 | return "generic"; |
| 508 | } |
| 509 | #elif defined(__linux__) && (defined(__ppc__) || defined(__powerpc__)) |
Rafael Espindola | b75ea01 | 2013-12-12 16:17:40 +0000 | [diff] [blame] | 510 | StringRef sys::getHostCPUName() { |
Hal Finkel | 59b0ee8 | 2012-06-12 03:03:13 +0000 | [diff] [blame] | 511 | // Access to the Processor Version Register (PVR) on PowerPC is privileged, |
| 512 | // and so we must use an operating-system interface to determine the current |
| 513 | // processor type. On Linux, this is exposed through the /proc/cpuinfo file. |
| 514 | const char *generic = "generic"; |
| 515 | |
Hal Finkel | 59b0ee8 | 2012-06-12 03:03:13 +0000 | [diff] [blame] | 516 | // The cpu line is second (after the 'processor: 0' line), so if this |
| 517 | // buffer is too small then something has changed (or is wrong). |
| 518 | char buffer[1024]; |
Rafael Espindola | 97935a9 | 2014-12-17 02:32:44 +0000 | [diff] [blame] | 519 | ssize_t CPUInfoSize = readCpuInfo(buffer, sizeof(buffer)); |
| 520 | if (CPUInfoSize == -1) |
| 521 | return generic; |
Hal Finkel | 59b0ee8 | 2012-06-12 03:03:13 +0000 | [diff] [blame] | 522 | |
| 523 | const char *CPUInfoStart = buffer; |
| 524 | const char *CPUInfoEnd = buffer + CPUInfoSize; |
| 525 | |
| 526 | const char *CIP = CPUInfoStart; |
| 527 | |
| 528 | const char *CPUStart = 0; |
| 529 | size_t CPULen = 0; |
| 530 | |
| 531 | // We need to find the first line which starts with cpu, spaces, and a colon. |
| 532 | // After the colon, there may be some additional spaces and then the cpu type. |
| 533 | while (CIP < CPUInfoEnd && CPUStart == 0) { |
| 534 | if (CIP < CPUInfoEnd && *CIP == '\n') |
| 535 | ++CIP; |
| 536 | |
| 537 | if (CIP < CPUInfoEnd && *CIP == 'c') { |
| 538 | ++CIP; |
| 539 | if (CIP < CPUInfoEnd && *CIP == 'p') { |
| 540 | ++CIP; |
| 541 | if (CIP < CPUInfoEnd && *CIP == 'u') { |
| 542 | ++CIP; |
| 543 | while (CIP < CPUInfoEnd && (*CIP == ' ' || *CIP == '\t')) |
| 544 | ++CIP; |
| 545 | |
| 546 | if (CIP < CPUInfoEnd && *CIP == ':') { |
| 547 | ++CIP; |
| 548 | while (CIP < CPUInfoEnd && (*CIP == ' ' || *CIP == '\t')) |
| 549 | ++CIP; |
| 550 | |
| 551 | if (CIP < CPUInfoEnd) { |
| 552 | CPUStart = CIP; |
| 553 | while (CIP < CPUInfoEnd && (*CIP != ' ' && *CIP != '\t' && |
| 554 | *CIP != ',' && *CIP != '\n')) |
| 555 | ++CIP; |
| 556 | CPULen = CIP - CPUStart; |
| 557 | } |
| 558 | } |
| 559 | } |
| 560 | } |
| 561 | } |
| 562 | |
| 563 | if (CPUStart == 0) |
| 564 | while (CIP < CPUInfoEnd && *CIP != '\n') |
| 565 | ++CIP; |
| 566 | } |
| 567 | |
| 568 | if (CPUStart == 0) |
| 569 | return generic; |
| 570 | |
| 571 | return StringSwitch<const char *>(StringRef(CPUStart, CPULen)) |
| 572 | .Case("604e", "604e") |
| 573 | .Case("604", "604") |
| 574 | .Case("7400", "7400") |
| 575 | .Case("7410", "7400") |
| 576 | .Case("7447", "7400") |
| 577 | .Case("7455", "7450") |
| 578 | .Case("G4", "g4") |
Hal Finkel | f1cc96a | 2012-06-12 16:39:23 +0000 | [diff] [blame] | 579 | .Case("POWER4", "970") |
Hal Finkel | 59b0ee8 | 2012-06-12 03:03:13 +0000 | [diff] [blame] | 580 | .Case("PPC970FX", "970") |
| 581 | .Case("PPC970MP", "970") |
| 582 | .Case("G5", "g5") |
| 583 | .Case("POWER5", "g5") |
| 584 | .Case("A2", "a2") |
| 585 | .Case("POWER6", "pwr6") |
| 586 | .Case("POWER7", "pwr7") |
Will Schmidt | 579e402 | 2014-06-26 13:37:03 +0000 | [diff] [blame] | 587 | .Case("POWER8", "pwr8") |
| 588 | .Case("POWER8E", "pwr8") |
Hal Finkel | 59b0ee8 | 2012-06-12 03:03:13 +0000 | [diff] [blame] | 589 | .Default(generic); |
| 590 | } |
Benjamin Kramer | efe4028 | 2012-06-26 21:36:32 +0000 | [diff] [blame] | 591 | #elif defined(__linux__) && defined(__arm__) |
Rafael Espindola | 1f58e4d | 2013-12-12 16:10:48 +0000 | [diff] [blame] | 592 | StringRef sys::getHostCPUName() { |
Benjamin Kramer | efe4028 | 2012-06-26 21:36:32 +0000 | [diff] [blame] | 593 | // The cpuid register on arm is not accessible from user space. On Linux, |
| 594 | // it is exposed through the /proc/cpuinfo file. |
Benjamin Kramer | efe4028 | 2012-06-26 21:36:32 +0000 | [diff] [blame] | 595 | |
| 596 | // Read 1024 bytes from /proc/cpuinfo, which should contain the CPU part line |
| 597 | // in all cases. |
| 598 | char buffer[1024]; |
Rafael Espindola | 97935a9 | 2014-12-17 02:32:44 +0000 | [diff] [blame] | 599 | ssize_t CPUInfoSize = readCpuInfo(buffer, sizeof(buffer)); |
| 600 | if (CPUInfoSize == -1) |
| 601 | return "generic"; |
Benjamin Kramer | efe4028 | 2012-06-26 21:36:32 +0000 | [diff] [blame] | 602 | |
| 603 | StringRef Str(buffer, CPUInfoSize); |
| 604 | |
| 605 | SmallVector<StringRef, 32> Lines; |
| 606 | Str.split(Lines, "\n"); |
| 607 | |
| 608 | // Look for the CPU implementer line. |
| 609 | StringRef Implementer; |
| 610 | for (unsigned I = 0, E = Lines.size(); I != E; ++I) |
| 611 | if (Lines[I].startswith("CPU implementer")) |
| 612 | Implementer = Lines[I].substr(15).ltrim("\t :"); |
| 613 | |
| 614 | if (Implementer == "0x41") // ARM Ltd. |
| 615 | // Look for the CPU part line. |
| 616 | for (unsigned I = 0, E = Lines.size(); I != E; ++I) |
| 617 | if (Lines[I].startswith("CPU part")) |
| 618 | // The CPU part is a 3 digit hexadecimal number with a 0x prefix. The |
| 619 | // values correspond to the "Part number" in the CP15/c0 register. The |
| 620 | // contents are specified in the various processor manuals. |
| 621 | return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :")) |
| 622 | .Case("0x926", "arm926ej-s") |
| 623 | .Case("0xb02", "mpcore") |
| 624 | .Case("0xb36", "arm1136j-s") |
| 625 | .Case("0xb56", "arm1156t2-s") |
| 626 | .Case("0xb76", "arm1176jz-s") |
| 627 | .Case("0xc08", "cortex-a8") |
| 628 | .Case("0xc09", "cortex-a9") |
James Molloy | 3ebe7a5 | 2012-10-31 09:07:37 +0000 | [diff] [blame] | 629 | .Case("0xc0f", "cortex-a15") |
Benjamin Kramer | efe4028 | 2012-06-26 21:36:32 +0000 | [diff] [blame] | 630 | .Case("0xc20", "cortex-m0") |
| 631 | .Case("0xc23", "cortex-m3") |
| 632 | .Case("0xc24", "cortex-m4") |
| 633 | .Default("generic"); |
| 634 | |
Kai Nacke | b38bf96 | 2013-12-20 09:24:13 +0000 | [diff] [blame] | 635 | if (Implementer == "0x51") // Qualcomm Technologies, Inc. |
| 636 | // Look for the CPU part line. |
| 637 | for (unsigned I = 0, E = Lines.size(); I != E; ++I) |
| 638 | if (Lines[I].startswith("CPU part")) |
| 639 | // The CPU part is a 3 digit hexadecimal number with a 0x prefix. The |
| 640 | // values correspond to the "Part number" in the CP15/c0 register. The |
| 641 | // contents are specified in the various processor manuals. |
| 642 | return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :")) |
| 643 | .Case("0x06f", "krait") // APQ8064 |
| 644 | .Default("generic"); |
| 645 | |
Benjamin Kramer | efe4028 | 2012-06-26 21:36:32 +0000 | [diff] [blame] | 646 | return "generic"; |
| 647 | } |
Richard Sandiford | f834ea1 | 2013-10-31 12:14:17 +0000 | [diff] [blame] | 648 | #elif defined(__linux__) && defined(__s390x__) |
Rafael Espindola | 1f58e4d | 2013-12-12 16:10:48 +0000 | [diff] [blame] | 649 | StringRef sys::getHostCPUName() { |
Richard Sandiford | f834ea1 | 2013-10-31 12:14:17 +0000 | [diff] [blame] | 650 | // STIDP is a privileged operation, so use /proc/cpuinfo instead. |
Richard Sandiford | f834ea1 | 2013-10-31 12:14:17 +0000 | [diff] [blame] | 651 | |
| 652 | // The "processor 0:" line comes after a fair amount of other information, |
| 653 | // including a cache breakdown, but this should be plenty. |
| 654 | char buffer[2048]; |
Rafael Espindola | 97935a9 | 2014-12-17 02:32:44 +0000 | [diff] [blame] | 655 | ssize_t CPUInfoSize = readCpuInfo(buffer, sizeof(buffer)); |
| 656 | if (CPUInfoSize == -1) |
| 657 | return "generic"; |
Richard Sandiford | f834ea1 | 2013-10-31 12:14:17 +0000 | [diff] [blame] | 658 | |
| 659 | StringRef Str(buffer, CPUInfoSize); |
| 660 | SmallVector<StringRef, 32> Lines; |
| 661 | Str.split(Lines, "\n"); |
| 662 | for (unsigned I = 0, E = Lines.size(); I != E; ++I) { |
| 663 | if (Lines[I].startswith("processor ")) { |
| 664 | size_t Pos = Lines[I].find("machine = "); |
| 665 | if (Pos != StringRef::npos) { |
| 666 | Pos += sizeof("machine = ") - 1; |
| 667 | unsigned int Id; |
| 668 | if (!Lines[I].drop_front(Pos).getAsInteger(10, Id)) { |
| 669 | if (Id >= 2827) |
| 670 | return "zEC12"; |
| 671 | if (Id >= 2817) |
| 672 | return "z196"; |
| 673 | } |
| 674 | } |
| 675 | break; |
| 676 | } |
| 677 | } |
| 678 | |
| 679 | return "generic"; |
| 680 | } |
Torok Edwin | abdc1c2 | 2009-12-13 08:59:40 +0000 | [diff] [blame] | 681 | #else |
Rafael Espindola | 1f58e4d | 2013-12-12 16:10:48 +0000 | [diff] [blame] | 682 | StringRef sys::getHostCPUName() { |
Benjamin Kramer | 713fd35 | 2009-11-17 17:57:04 +0000 | [diff] [blame] | 683 | return "generic"; |
Daniel Dunbar | 241d01b | 2009-11-14 10:09:12 +0000 | [diff] [blame] | 684 | } |
Torok Edwin | abdc1c2 | 2009-12-13 08:59:40 +0000 | [diff] [blame] | 685 | #endif |
Xerxes Ranby | 17dc3a0 | 2010-01-19 21:26:05 +0000 | [diff] [blame] | 686 | |
Craig Topper | 798a260 | 2015-03-29 01:00:23 +0000 | [diff] [blame] | 687 | #if defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86)\ |
| 688 | || defined(__x86_64__) || defined(_M_AMD64) || defined (_M_X64) |
| 689 | bool sys::getHostCPUFeatures(StringMap<bool> &Features) { |
| 690 | unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0; |
| 691 | unsigned MaxLevel; |
| 692 | union { |
| 693 | unsigned u[3]; |
| 694 | char c[12]; |
| 695 | } text; |
| 696 | |
| 697 | if (GetX86CpuIDAndInfo(0, &MaxLevel, text.u+0, text.u+2, text.u+1) || |
| 698 | MaxLevel < 1) |
| 699 | return false; |
| 700 | |
| 701 | GetX86CpuIDAndInfo(1, &EAX, &EBX, &ECX, &EDX); |
| 702 | |
| 703 | Features["cmov"] = (EDX >> 15) & 1; |
| 704 | Features["mmx"] = (EDX >> 23) & 1; |
| 705 | Features["sse"] = (EDX >> 25) & 1; |
| 706 | Features["sse2"] = (EDX >> 26) & 1; |
| 707 | Features["sse3"] = (ECX >> 0) & 1; |
| 708 | Features["ssse3"] = (ECX >> 9) & 1; |
| 709 | Features["sse4.1"] = (ECX >> 19) & 1; |
| 710 | Features["sse4.2"] = (ECX >> 20) & 1; |
| 711 | |
| 712 | Features["pclmul"] = (ECX >> 1) & 1; |
| 713 | Features["fma"] = (ECX >> 12) & 1; |
| 714 | Features["cx16"] = (ECX >> 13) & 1; |
| 715 | Features["movbe"] = (ECX >> 22) & 1; |
| 716 | Features["popcnt"] = (ECX >> 23) & 1; |
| 717 | Features["aes"] = (ECX >> 25) & 1; |
| 718 | Features["f16c"] = (ECX >> 29) & 1; |
| 719 | Features["rdrnd"] = (ECX >> 30) & 1; |
| 720 | |
| 721 | // If CPUID indicates support for XSAVE, XRESTORE and AVX, and XGETBV |
| 722 | // indicates that the AVX registers will be saved and restored on context |
| 723 | // switch, then we have full AVX support. |
| 724 | bool HasAVX = ((ECX >> 27) & 1) && ((ECX >> 28) & 1) && |
| 725 | !GetX86XCR0(&EAX, &EDX) && ((EAX & 0x6) == 0x6); |
| 726 | Features["avx"] = HasAVX; |
| 727 | |
| 728 | // AVX512 requires additional context to be saved by the OS. |
| 729 | bool HasAVX512Save = HasAVX && ((EAX & 0xe0) == 0xe0); |
| 730 | |
| 731 | unsigned MaxExtLevel; |
| 732 | GetX86CpuIDAndInfo(0x80000000, &MaxExtLevel, &EBX, &ECX, &EDX); |
| 733 | |
| 734 | bool HasExtLeaf1 = MaxExtLevel >= 0x80000001 && |
| 735 | !GetX86CpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX); |
| 736 | Features["lzcnt"] = HasExtLeaf1 && ((ECX >> 5) & 1); |
| 737 | Features["sse4a"] = HasExtLeaf1 && ((ECX >> 6) & 1); |
| 738 | Features["prfchw"] = HasExtLeaf1 && ((ECX >> 8) & 1); |
| 739 | Features["xop"] = HasExtLeaf1 && ((ECX >> 11) & 1); |
| 740 | Features["fma4"] = HasExtLeaf1 && ((ECX >> 16) & 1); |
| 741 | Features["tbm"] = HasExtLeaf1 && ((ECX >> 21) & 1); |
| 742 | |
| 743 | bool HasLeaf7 = MaxLevel >= 7 && |
| 744 | !GetX86CpuIDAndInfoEx(0x7, 0x0, &EAX, &EBX, &ECX, &EDX); |
| 745 | |
| 746 | // AVX2 is only supported if we have the OS save support from AVX. |
| 747 | Features["avx2"] = HasAVX && HasLeaf7 && (EBX >> 5) & 1; |
| 748 | |
| 749 | Features["fsgsbase"] = HasLeaf7 && ((EBX >> 0) & 1); |
| 750 | Features["bmi"] = HasLeaf7 && ((EBX >> 3) & 1); |
| 751 | Features["hle"] = HasLeaf7 && ((EBX >> 4) & 1); |
| 752 | Features["bmi2"] = HasLeaf7 && ((EBX >> 8) & 1); |
| 753 | Features["rtm"] = HasLeaf7 && ((EBX >> 11) & 1); |
| 754 | Features["rdseed"] = HasLeaf7 && ((EBX >> 18) & 1); |
| 755 | Features["adx"] = HasLeaf7 && ((EBX >> 19) & 1); |
| 756 | Features["sha"] = HasLeaf7 && ((EBX >> 29) & 1); |
| 757 | |
| 758 | // AVX512 is only supported if the OS supports the context save for it. |
| 759 | Features["avx512f"] = HasLeaf7 && ((EBX >> 16) & 1) && HasAVX512Save; |
| 760 | Features["avx512dq"] = HasLeaf7 && ((EBX >> 17) & 1) && HasAVX512Save; |
| 761 | Features["avx512pf"] = HasLeaf7 && ((EBX >> 26) & 1) && HasAVX512Save; |
| 762 | Features["avx512er"] = HasLeaf7 && ((EBX >> 27) & 1) && HasAVX512Save; |
| 763 | Features["avx512cd"] = HasLeaf7 && ((EBX >> 28) & 1) && HasAVX512Save; |
| 764 | Features["avx512bw"] = HasLeaf7 && ((EBX >> 30) & 1) && HasAVX512Save; |
| 765 | Features["avx512vl"] = HasLeaf7 && ((EBX >> 31) & 1) && HasAVX512Save; |
| 766 | |
| 767 | return true; |
| 768 | } |
| 769 | #elif defined(__linux__) && (defined(__arm__) || defined(__aarch64__)) |
Hao Liu | 10be3b2 | 2012-12-13 02:40:20 +0000 | [diff] [blame] | 770 | bool sys::getHostCPUFeatures(StringMap<bool> &Features) { |
Hao Liu | 10be3b2 | 2012-12-13 02:40:20 +0000 | [diff] [blame] | 771 | // Read 1024 bytes from /proc/cpuinfo, which should contain the Features line |
| 772 | // in all cases. |
| 773 | char buffer[1024]; |
Rafael Espindola | 97935a9 | 2014-12-17 02:32:44 +0000 | [diff] [blame] | 774 | ssize_t CPUInfoSize = readCpuInfo(buffer, sizeof(buffer)); |
| 775 | if (CPUInfoSize == -1) |
| 776 | return false; |
Hao Liu | 10be3b2 | 2012-12-13 02:40:20 +0000 | [diff] [blame] | 777 | |
| 778 | StringRef Str(buffer, CPUInfoSize); |
| 779 | |
| 780 | SmallVector<StringRef, 32> Lines; |
| 781 | Str.split(Lines, "\n"); |
| 782 | |
Tobias Grosser | bd9e549 | 2013-06-11 21:45:01 +0000 | [diff] [blame] | 783 | SmallVector<StringRef, 32> CPUFeatures; |
| 784 | |
| 785 | // Look for the CPU features. |
Hao Liu | 10be3b2 | 2012-12-13 02:40:20 +0000 | [diff] [blame] | 786 | for (unsigned I = 0, E = Lines.size(); I != E; ++I) |
Tobias Grosser | bd9e549 | 2013-06-11 21:45:01 +0000 | [diff] [blame] | 787 | if (Lines[I].startswith("Features")) { |
| 788 | Lines[I].split(CPUFeatures, " "); |
| 789 | break; |
Hao Liu | 10be3b2 | 2012-12-13 02:40:20 +0000 | [diff] [blame] | 790 | } |
| 791 | |
Bradley Smith | 9288b21 | 2014-05-22 11:44:34 +0000 | [diff] [blame] | 792 | #if defined(__aarch64__) |
| 793 | // Keep track of which crypto features we have seen |
| 794 | enum { |
Bradley Smith | 63c8b1b | 2014-05-23 10:14:13 +0000 | [diff] [blame] | 795 | CAP_AES = 0x1, |
| 796 | CAP_PMULL = 0x2, |
| 797 | CAP_SHA1 = 0x4, |
| 798 | CAP_SHA2 = 0x8 |
Bradley Smith | 9288b21 | 2014-05-22 11:44:34 +0000 | [diff] [blame] | 799 | }; |
| 800 | uint32_t crypto = 0; |
| 801 | #endif |
| 802 | |
Tobias Grosser | bd9e549 | 2013-06-11 21:45:01 +0000 | [diff] [blame] | 803 | for (unsigned I = 0, E = CPUFeatures.size(); I != E; ++I) { |
| 804 | StringRef LLVMFeatureStr = StringSwitch<StringRef>(CPUFeatures[I]) |
Bradley Smith | 9288b21 | 2014-05-22 11:44:34 +0000 | [diff] [blame] | 805 | #if defined(__aarch64__) |
| 806 | .Case("asimd", "neon") |
| 807 | .Case("fp", "fp-armv8") |
| 808 | .Case("crc32", "crc") |
| 809 | #else |
Tobias Grosser | bd9e549 | 2013-06-11 21:45:01 +0000 | [diff] [blame] | 810 | .Case("half", "fp16") |
| 811 | .Case("neon", "neon") |
| 812 | .Case("vfpv3", "vfp3") |
| 813 | .Case("vfpv3d16", "d16") |
| 814 | .Case("vfpv4", "vfp4") |
| 815 | .Case("idiva", "hwdiv-arm") |
| 816 | .Case("idivt", "hwdiv") |
Bradley Smith | 9288b21 | 2014-05-22 11:44:34 +0000 | [diff] [blame] | 817 | #endif |
Tobias Grosser | bd9e549 | 2013-06-11 21:45:01 +0000 | [diff] [blame] | 818 | .Default(""); |
| 819 | |
Bradley Smith | 9288b21 | 2014-05-22 11:44:34 +0000 | [diff] [blame] | 820 | #if defined(__aarch64__) |
Alp Toker | da0c793 | 2014-05-31 21:26:28 +0000 | [diff] [blame] | 821 | // We need to check crypto separately since we need all of the crypto |
Bradley Smith | 9288b21 | 2014-05-22 11:44:34 +0000 | [diff] [blame] | 822 | // extensions to enable the subtarget feature |
| 823 | if (CPUFeatures[I] == "aes") |
Bradley Smith | 63c8b1b | 2014-05-23 10:14:13 +0000 | [diff] [blame] | 824 | crypto |= CAP_AES; |
Bradley Smith | 9288b21 | 2014-05-22 11:44:34 +0000 | [diff] [blame] | 825 | else if (CPUFeatures[I] == "pmull") |
Bradley Smith | 63c8b1b | 2014-05-23 10:14:13 +0000 | [diff] [blame] | 826 | crypto |= CAP_PMULL; |
Bradley Smith | 9288b21 | 2014-05-22 11:44:34 +0000 | [diff] [blame] | 827 | else if (CPUFeatures[I] == "sha1") |
Bradley Smith | 63c8b1b | 2014-05-23 10:14:13 +0000 | [diff] [blame] | 828 | crypto |= CAP_SHA1; |
Bradley Smith | 9288b21 | 2014-05-22 11:44:34 +0000 | [diff] [blame] | 829 | else if (CPUFeatures[I] == "sha2") |
Bradley Smith | 63c8b1b | 2014-05-23 10:14:13 +0000 | [diff] [blame] | 830 | crypto |= CAP_SHA2; |
Bradley Smith | 9288b21 | 2014-05-22 11:44:34 +0000 | [diff] [blame] | 831 | #endif |
| 832 | |
Tobias Grosser | bd9e549 | 2013-06-11 21:45:01 +0000 | [diff] [blame] | 833 | if (LLVMFeatureStr != "") |
David Blaikie | 5106ce7 | 2014-11-19 05:49:42 +0000 | [diff] [blame] | 834 | Features[LLVMFeatureStr] = true; |
Hao Liu | 10be3b2 | 2012-12-13 02:40:20 +0000 | [diff] [blame] | 835 | } |
| 836 | |
Bradley Smith | 9288b21 | 2014-05-22 11:44:34 +0000 | [diff] [blame] | 837 | #if defined(__aarch64__) |
| 838 | // If we have all crypto bits we can add the feature |
Bradley Smith | 63c8b1b | 2014-05-23 10:14:13 +0000 | [diff] [blame] | 839 | if (crypto == (CAP_AES | CAP_PMULL | CAP_SHA1 | CAP_SHA2)) |
David Blaikie | 5106ce7 | 2014-11-19 05:49:42 +0000 | [diff] [blame] | 840 | Features["crypto"] = true; |
Bradley Smith | 9288b21 | 2014-05-22 11:44:34 +0000 | [diff] [blame] | 841 | #endif |
| 842 | |
Tobias Grosser | bd9e549 | 2013-06-11 21:45:01 +0000 | [diff] [blame] | 843 | return true; |
Hao Liu | 10be3b2 | 2012-12-13 02:40:20 +0000 | [diff] [blame] | 844 | } |
| 845 | #else |
Xerxes Ranby | 17dc3a0 | 2010-01-19 21:26:05 +0000 | [diff] [blame] | 846 | bool sys::getHostCPUFeatures(StringMap<bool> &Features){ |
| 847 | return false; |
| 848 | } |
Hao Liu | 10be3b2 | 2012-12-13 02:40:20 +0000 | [diff] [blame] | 849 | #endif |
Peter Collingbourne | a51c6ed | 2013-01-16 17:27:22 +0000 | [diff] [blame] | 850 | |
| 851 | std::string sys::getProcessTriple() { |
Duncan Sands | e2cd139 | 2013-07-17 11:01:05 +0000 | [diff] [blame] | 852 | Triple PT(Triple::normalize(LLVM_HOST_TRIPLE)); |
Peter Collingbourne | a51c6ed | 2013-01-16 17:27:22 +0000 | [diff] [blame] | 853 | |
| 854 | if (sizeof(void *) == 8 && PT.isArch32Bit()) |
| 855 | PT = PT.get64BitArchVariant(); |
| 856 | if (sizeof(void *) == 4 && PT.isArch64Bit()) |
| 857 | PT = PT.get32BitArchVariant(); |
| 858 | |
| 859 | return PT.str(); |
| 860 | } |