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