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