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