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