blob: c353cc6887aa90a66f742e8749137241ad200d49 [file] [log] [blame]
Daniel Dunbarbb146722008-10-02 01:17:28 +00001//===-- 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 Carruthd04a8d42012-12-03 16:50:05 +000014#include "llvm/Support/Host.h"
Benjamin Kramer4750c1d2012-06-26 21:36:32 +000015#include "llvm/ADT/SmallVector.h"
Hal Finkel4db738a2012-06-12 03:03:13 +000016#include "llvm/ADT/StringRef.h"
17#include "llvm/ADT/StringSwitch.h"
Peter Collingbournefbb662f2013-01-16 17:27:22 +000018#include "llvm/ADT/Triple.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000019#include "llvm/Config/config.h"
Hal Finkel4db738a2012-06-12 03:03:13 +000020#include "llvm/Support/DataStream.h"
21#include "llvm/Support/Debug.h"
Hal Finkel4db738a2012-06-12 03:03:13 +000022#include "llvm/Support/raw_ostream.h"
Daniel Dunbar067d0242009-11-14 10:09:12 +000023#include <string.h>
Daniel Dunbarbb146722008-10-02 01:17:28 +000024
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. Spencer1f6efa32010-11-29 18:16:10 +000030#include "Windows/Host.inc"
Daniel Dunbarbb146722008-10-02 01:17:28 +000031#endif
Benjamin Kramerac07b3d2009-11-19 12:17:31 +000032#ifdef _MSC_VER
33#include <intrin.h>
34#endif
Hal Finkel4db738a2012-06-12 03:03:13 +000035#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 Dunbarbb146722008-10-02 01:17:28 +000041
Daniel Dunbar067d0242009-11-14 10:09:12 +000042//===----------------------------------------------------------------------===//
43//
44// Implementations of the CPU detection routines
45//
46//===----------------------------------------------------------------------===//
47
48using 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.
55static bool GetX86CpuIDAndInfo(unsigned value, unsigned *rEAX,
56 unsigned *rEBX, unsigned *rECX, unsigned *rEDX) {
57#if defined(__x86_64__) || defined(_M_AMD64) || defined (_M_X64)
58 #if defined(__GNUC__)
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;
69 #elif defined(_MSC_VER)
70 int registers[4];
71 __cpuid(registers, value);
72 *rEAX = registers[0];
73 *rEBX = registers[1];
74 *rECX = registers[2];
75 *rEDX = registers[3];
76 return false;
David Blaikiefdebc382012-01-17 04:43:56 +000077 #else
78 return true;
Daniel Dunbar067d0242009-11-14 10:09:12 +000079 #endif
80#elif defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86)
81 #if defined(__GNUC__)
82 asm ("movl\t%%ebx, %%esi\n\t"
83 "cpuid\n\t"
84 "xchgl\t%%ebx, %%esi\n\t"
85 : "=a" (*rEAX),
86 "=S" (*rEBX),
87 "=c" (*rECX),
88 "=d" (*rEDX)
89 : "a" (value));
90 return false;
91 #elif defined(_MSC_VER)
92 __asm {
93 mov eax,value
94 cpuid
95 mov esi,rEAX
96 mov dword ptr [esi],eax
97 mov esi,rEBX
98 mov dword ptr [esi],ebx
99 mov esi,rECX
100 mov dword ptr [esi],ecx
101 mov esi,rEDX
102 mov dword ptr [esi],edx
103 }
104 return false;
David Blaikiefdebc382012-01-17 04:43:56 +0000105// pedantic #else returns to appease -Wunreachable-code (so we don't generate
106// postprocessed code that looks like "return true; return false;")
107 #else
108 return true;
Daniel Dunbar067d0242009-11-14 10:09:12 +0000109 #endif
David Blaikiefdebc382012-01-17 04:43:56 +0000110#else
Daniel Dunbar067d0242009-11-14 10:09:12 +0000111 return true;
David Blaikiefdebc382012-01-17 04:43:56 +0000112#endif
Daniel Dunbar067d0242009-11-14 10:09:12 +0000113}
114
Aaron Ballman3b148e52013-04-03 00:33:32 +0000115static bool OSHasAVXSupport() {
Aaron Ballman95a16c42013-04-03 01:39:37 +0000116#if defined( __GNUC__ ) && \
117 (__GNUC__ > 4 || __GNUC__ == 4 && __GNUC_MINOR__ >= 4)
Aaron Ballman3b148e52013-04-03 00:33:32 +0000118 int rEAX, rEDX;
119 __asm__ ("xgetbv" : "=a" (rEAX), "=d" (rEDX) : "c" (0));
120#elif defined(_MSC_VER)
121 unsigned long long rEAX = _xgetbv(_XCR_XFEATURE_ENABLED_MASK);
122#else
123 int rEAX = 0; // Ensures we return false
124#endif
125 return (rEAX & 6) == 6;
126}
127
Chris Lattner9c7f0752010-09-06 05:19:44 +0000128static void DetectX86FamilyModel(unsigned EAX, unsigned &Family,
129 unsigned &Model) {
Daniel Dunbar067d0242009-11-14 10:09:12 +0000130 Family = (EAX >> 8) & 0xf; // Bits 8 - 11
131 Model = (EAX >> 4) & 0xf; // Bits 4 - 7
132 if (Family == 6 || Family == 0xf) {
133 if (Family == 0xf)
134 // Examine extended family ID if family ID is F.
135 Family += (EAX >> 20) & 0xff; // Bits 20 - 27
136 // Examine extended model ID if family ID is 6 or F.
137 Model += ((EAX >> 16) & 0xf) << 4; // Bits 16 - 19
138 }
139}
Daniel Dunbar067d0242009-11-14 10:09:12 +0000140
141std::string sys::getHostCPUName() {
Daniel Dunbar067d0242009-11-14 10:09:12 +0000142 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
143 if (GetX86CpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX))
144 return "generic";
145 unsigned Family = 0;
146 unsigned Model = 0;
147 DetectX86FamilyModel(EAX, Family, Model);
148
Chris Lattner9c7f0752010-09-06 05:19:44 +0000149 bool HasSSE3 = (ECX & 0x1);
Aaron Ballman3b148e52013-04-03 00:33:32 +0000150 // If CPUID indicates support for XSAVE, XRESTORE and AVX, and XGETBV
151 // indicates that the AVX registers will be saved and restored on context
152 // switch, when we have full AVX support.
153 bool HasAVX = (ECX & ((1 << 28) | (1 << 27))) != 0 && OSHasAVXSupport();
Daniel Dunbar067d0242009-11-14 10:09:12 +0000154 GetX86CpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
155 bool Em64T = (EDX >> 29) & 0x1;
Daniel Dunbar067d0242009-11-14 10:09:12 +0000156
157 union {
158 unsigned u[3];
159 char c[12];
160 } text;
161
162 GetX86CpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1);
163 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
164 switch (Family) {
Daniel Dunbara7ac3ce2009-11-14 21:36:19 +0000165 case 3:
166 return "i386";
167 case 4:
168 switch (Model) {
NAKAMURA Takumid4d4c7f2010-09-09 13:30:48 +0000169 case 0: // Intel486 DX processors
170 case 1: // Intel486 DX processors
Daniel Dunbara7ac3ce2009-11-14 21:36:19 +0000171 case 2: // Intel486 SX processors
NAKAMURA Takumid4d4c7f2010-09-09 13:30:48 +0000172 case 3: // Intel487 processors, IntelDX2 OverDrive processors,
173 // IntelDX2 processors
Daniel Dunbara7ac3ce2009-11-14 21:36:19 +0000174 case 4: // Intel486 SL processor
NAKAMURA Takumid4d4c7f2010-09-09 13:30:48 +0000175 case 5: // IntelSX2 processors
Daniel Dunbara7ac3ce2009-11-14 21:36:19 +0000176 case 7: // Write-Back Enhanced IntelDX2 processors
NAKAMURA Takumid4d4c7f2010-09-09 13:30:48 +0000177 case 8: // IntelDX4 OverDrive processors, IntelDX4 processors
Daniel Dunbara7ac3ce2009-11-14 21:36:19 +0000178 default: return "i486";
Daniel Dunbar067d0242009-11-14 10:09:12 +0000179 }
Daniel Dunbara7ac3ce2009-11-14 21:36:19 +0000180 case 5:
181 switch (Model) {
182 case 1: // Pentium OverDrive processor for Pentium processor (60, 66),
NAKAMURA Takumid4d4c7f2010-09-09 13:30:48 +0000183 // Pentium processors (60, 66)
Daniel Dunbara7ac3ce2009-11-14 21:36:19 +0000184 case 2: // Pentium OverDrive processor for Pentium processor (75, 90,
185 // 100, 120, 133), Pentium processors (75, 90, 100, 120, 133,
186 // 150, 166, 200)
187 case 3: // Pentium OverDrive processors for Intel486 processor-based
188 // systems
189 return "pentium";
190
NAKAMURA Takumid4d4c7f2010-09-09 13:30:48 +0000191 case 4: // Pentium OverDrive processor with MMX technology for Pentium
Daniel Dunbara7ac3ce2009-11-14 21:36:19 +0000192 // processor (75, 90, 100, 120, 133), Pentium processor with
NAKAMURA Takumid4d4c7f2010-09-09 13:30:48 +0000193 // MMX technology (166, 200)
Daniel Dunbara7ac3ce2009-11-14 21:36:19 +0000194 return "pentium-mmx";
195
196 default: return "pentium";
197 }
198 case 6:
199 switch (Model) {
200 case 1: // Pentium Pro processor
201 return "pentiumpro";
202
203 case 3: // Intel Pentium II OverDrive processor, Pentium II processor,
204 // model 03
205 case 5: // Pentium II processor, model 05, Pentium II Xeon processor,
NAKAMURA Takumid4d4c7f2010-09-09 13:30:48 +0000206 // model 05, and Intel Celeron processor, model 05
Daniel Dunbara7ac3ce2009-11-14 21:36:19 +0000207 case 6: // Celeron processor, model 06
208 return "pentium2";
209
210 case 7: // Pentium III processor, model 07, and Pentium III Xeon
211 // processor, model 07
212 case 8: // Pentium III processor, model 08, Pentium III Xeon processor,
213 // model 08, and Celeron processor, model 08
214 case 10: // Pentium III Xeon processor, model 0Ah
215 case 11: // Pentium III processor, model 0Bh
216 return "pentium3";
217
218 case 9: // Intel Pentium M processor, Intel Celeron M processor model 09.
219 case 13: // Intel Pentium M processor, Intel Celeron M processor, model
220 // 0Dh. All processors are manufactured using the 90 nm process.
221 return "pentium-m";
222
NAKAMURA Takumid4d4c7f2010-09-09 13:30:48 +0000223 case 14: // Intel Core Duo processor, Intel Core Solo processor, model
Daniel Dunbara7ac3ce2009-11-14 21:36:19 +0000224 // 0Eh. All processors are manufactured using the 65 nm process.
225 return "yonah";
226
NAKAMURA Takumid4d4c7f2010-09-09 13:30:48 +0000227 case 15: // Intel Core 2 Duo processor, Intel Core 2 Duo mobile
228 // processor, Intel Core 2 Quad processor, Intel Core 2 Quad
229 // mobile processor, Intel Core 2 Extreme processor, Intel
Daniel Dunbara7ac3ce2009-11-14 21:36:19 +0000230 // Pentium Dual-Core processor, Intel Xeon processor, model
231 // 0Fh. All processors are manufactured using the 65 nm process.
232 case 22: // Intel Celeron processor model 16h. All processors are
233 // manufactured using the 65 nm process
234 return "core2";
235
236 case 21: // Intel EP80579 Integrated Processor and Intel EP80579
237 // Integrated Processor with Intel QuickAssist Technology
238 return "i686"; // FIXME: ???
239
NAKAMURA Takumid4d4c7f2010-09-09 13:30:48 +0000240 case 23: // Intel Core 2 Extreme processor, Intel Xeon processor, model
Daniel Dunbara7ac3ce2009-11-14 21:36:19 +0000241 // 17h. All processors are manufactured using the 45 nm process.
242 //
243 // 45nm: Penryn , Wolfdale, Yorkfield (XE)
244 return "penryn";
245
246 case 26: // Intel Core i7 processor and Intel Xeon processor. All
247 // processors are manufactured using the 45 nm process.
248 case 29: // Intel Xeon processor MP. All processors are manufactured using
249 // the 45 nm process.
Jakob Stoklund Olesen71c60952010-09-19 17:54:28 +0000250 case 30: // Intel(R) Core(TM) i7 CPU 870 @ 2.93GHz.
251 // As found in a Summer 2010 model iMac.
Chris Lattner222920d2010-09-19 00:31:58 +0000252 case 37: // Intel Core i7, laptop version.
Benjamin Kramercf847bf2011-08-25 18:05:56 +0000253 case 44: // Intel Core i7 processor and Intel Xeon processor. All
254 // processors are manufactured using the 32 nm process.
Benjamin Kramer4335e342012-09-26 18:21:47 +0000255 case 46: // Nehalem EX
256 case 47: // Westmere EX
Daniel Dunbara7ac3ce2009-11-14 21:36:19 +0000257 return "corei7";
Bob Wilson7c3a5ca2011-07-08 22:33:59 +0000258
259 // SandyBridge:
260 case 42: // Intel Core i7 processor. All processors are manufactured
261 // using the 32 nm process.
Chris Lattner78a113c2011-06-09 06:38:17 +0000262 case 45:
Aaron Ballman3b148e52013-04-03 00:33:32 +0000263 // Not all Sandy Bridge processors support AVX (such as the Pentium
264 // versions instead of the i7 versions).
265 return HasAVX ? "corei7-avx" : "corei7";
Daniel Dunbara7ac3ce2009-11-14 21:36:19 +0000266
Evan Chengaff59682012-04-23 22:41:39 +0000267 // Ivy Bridge:
268 case 58:
Aaron Ballman3b148e52013-04-03 00:33:32 +0000269 // Not all Ivy Bridge processors support AVX (such as the Pentium
270 // versions instead of the i7 versions).
271 return HasAVX ? "core-avx-i" : "corei7";
Evan Chengaff59682012-04-23 22:41:39 +0000272
Preston Gurd79bbe852012-05-02 21:38:46 +0000273 case 28: // Most 45 nm Intel Atom processors
274 case 38: // 45 nm Atom Lincroft
275 case 39: // 32 nm Atom Medfield
Preston Gurdfd012b22012-07-19 19:05:37 +0000276 case 53: // 32 nm Atom Midview
277 case 54: // 32 nm Atom Midview
Daniel Dunbara7ac3ce2009-11-14 21:36:19 +0000278 return "atom";
279
Bob Wilson0d38d3a2012-05-09 17:47:03 +0000280 default: return (Em64T) ? "x86-64" : "i686";
Daniel Dunbara7ac3ce2009-11-14 21:36:19 +0000281 }
282 case 15: {
283 switch (Model) {
284 case 0: // Pentium 4 processor, Intel Xeon processor. All processors are
285 // model 00h and manufactured using the 0.18 micron process.
286 case 1: // Pentium 4 processor, Intel Xeon processor, Intel Xeon
287 // processor MP, and Intel Celeron processor. All processors are
288 // model 01h and manufactured using the 0.18 micron process.
NAKAMURA Takumid4d4c7f2010-09-09 13:30:48 +0000289 case 2: // Pentium 4 processor, Mobile Intel Pentium 4 processor - M,
Daniel Dunbara7ac3ce2009-11-14 21:36:19 +0000290 // Intel Xeon processor, Intel Xeon processor MP, Intel Celeron
291 // processor, and Mobile Intel Celeron processor. All processors
292 // are model 02h and manufactured using the 0.13 micron process.
293 return (Em64T) ? "x86-64" : "pentium4";
294
295 case 3: // Pentium 4 processor, Intel Xeon processor, Intel Celeron D
296 // processor. All processors are model 03h and manufactured using
297 // the 90 nm process.
298 case 4: // Pentium 4 processor, Pentium 4 processor Extreme Edition,
299 // Pentium D processor, Intel Xeon processor, Intel Xeon
300 // processor MP, Intel Celeron D processor. All processors are
301 // model 04h and manufactured using the 90 nm process.
302 case 6: // Pentium 4 processor, Pentium D processor, Pentium processor
303 // Extreme Edition, Intel Xeon processor, Intel Xeon processor
304 // MP, Intel Celeron D processor. All processors are model 06h
305 // and manufactured using the 65 nm process.
306 return (Em64T) ? "nocona" : "prescott";
307
Daniel Dunbara7ac3ce2009-11-14 21:36:19 +0000308 default:
309 return (Em64T) ? "x86-64" : "pentium4";
310 }
311 }
312
Daniel Dunbar067d0242009-11-14 10:09:12 +0000313 default:
Benjamin Kramer110e7bb2009-11-17 17:57:04 +0000314 return "generic";
Daniel Dunbar067d0242009-11-14 10:09:12 +0000315 }
316 } else if (memcmp(text.c, "AuthenticAMD", 12) == 0) {
317 // FIXME: this poorly matches the generated SubtargetFeatureKV table. There
318 // appears to be no way to generate the wide variety of AMD-specific targets
319 // from the information returned from CPUID.
320 switch (Family) {
321 case 4:
322 return "i486";
323 case 5:
324 switch (Model) {
325 case 6:
326 case 7: return "k6";
327 case 8: return "k6-2";
328 case 9:
329 case 13: return "k6-3";
Roman Divackyee3392b2012-09-12 14:36:02 +0000330 case 10: return "geode";
Daniel Dunbar067d0242009-11-14 10:09:12 +0000331 default: return "pentium";
332 }
333 case 6:
334 switch (Model) {
335 case 4: return "athlon-tbird";
336 case 6:
337 case 7:
338 case 8: return "athlon-mp";
339 case 10: return "athlon-xp";
340 default: return "athlon";
341 }
342 case 15:
Chris Lattner9c7f0752010-09-06 05:19:44 +0000343 if (HasSSE3)
Daniel Dunbar067d0242009-11-14 10:09:12 +0000344 return "k8-sse3";
Chris Lattner9c7f0752010-09-06 05:19:44 +0000345 switch (Model) {
346 case 1: return "opteron";
347 case 5: return "athlon-fx"; // also opteron
348 default: return "athlon64";
Daniel Dunbar067d0242009-11-14 10:09:12 +0000349 }
350 case 16:
351 return "amdfam10";
Benjamin Kramer66a7fd72012-01-10 11:50:02 +0000352 case 20:
353 return "btver1";
Benjamin Kramer618f89f2011-12-01 18:24:17 +0000354 case 21:
Roman Divackyebbb3592013-02-26 22:41:01 +0000355 if (Model <= 15)
356 return "bdver1";
357 else if (Model <= 31)
358 return "bdver2";
Daniel Dunbar067d0242009-11-14 10:09:12 +0000359 default:
Benjamin Kramer110e7bb2009-11-17 17:57:04 +0000360 return "generic";
Daniel Dunbar067d0242009-11-14 10:09:12 +0000361 }
Daniel Dunbar067d0242009-11-14 10:09:12 +0000362 }
Torok Edwin546d8d02009-12-14 12:38:18 +0000363 return "generic";
Torok Edwinc4174d62009-12-13 08:59:40 +0000364}
Hal Finkel4db738a2012-06-12 03:03:13 +0000365#elif defined(__APPLE__) && (defined(__ppc__) || defined(__powerpc__))
366std::string sys::getHostCPUName() {
367 host_basic_info_data_t hostInfo;
368 mach_msg_type_number_t infoCount;
369
370 infoCount = HOST_BASIC_INFO_COUNT;
371 host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo,
372 &infoCount);
373
374 if (hostInfo.cpu_type != CPU_TYPE_POWERPC) return "generic";
375
376 switch(hostInfo.cpu_subtype) {
377 case CPU_SUBTYPE_POWERPC_601: return "601";
378 case CPU_SUBTYPE_POWERPC_602: return "602";
379 case CPU_SUBTYPE_POWERPC_603: return "603";
380 case CPU_SUBTYPE_POWERPC_603e: return "603e";
381 case CPU_SUBTYPE_POWERPC_603ev: return "603ev";
382 case CPU_SUBTYPE_POWERPC_604: return "604";
383 case CPU_SUBTYPE_POWERPC_604e: return "604e";
384 case CPU_SUBTYPE_POWERPC_620: return "620";
385 case CPU_SUBTYPE_POWERPC_750: return "750";
386 case CPU_SUBTYPE_POWERPC_7400: return "7400";
387 case CPU_SUBTYPE_POWERPC_7450: return "7450";
388 case CPU_SUBTYPE_POWERPC_970: return "970";
389 default: ;
390 }
391
392 return "generic";
393}
394#elif defined(__linux__) && (defined(__ppc__) || defined(__powerpc__))
395std::string sys::getHostCPUName() {
396 // Access to the Processor Version Register (PVR) on PowerPC is privileged,
397 // and so we must use an operating-system interface to determine the current
398 // processor type. On Linux, this is exposed through the /proc/cpuinfo file.
399 const char *generic = "generic";
400
401 // Note: We cannot mmap /proc/cpuinfo here and then process the resulting
402 // memory buffer because the 'file' has 0 size (it can be read from only
403 // as a stream).
404
405 std::string Err;
406 DataStreamer *DS = getDataFileStreamer("/proc/cpuinfo", &Err);
407 if (!DS) {
408 DEBUG(dbgs() << "Unable to open /proc/cpuinfo: " << Err << "\n");
409 return generic;
410 }
411
412 // The cpu line is second (after the 'processor: 0' line), so if this
413 // buffer is too small then something has changed (or is wrong).
414 char buffer[1024];
415 size_t CPUInfoSize = DS->GetBytes((unsigned char*) buffer, sizeof(buffer));
416 delete DS;
417
418 const char *CPUInfoStart = buffer;
419 const char *CPUInfoEnd = buffer + CPUInfoSize;
420
421 const char *CIP = CPUInfoStart;
422
423 const char *CPUStart = 0;
424 size_t CPULen = 0;
425
426 // We need to find the first line which starts with cpu, spaces, and a colon.
427 // After the colon, there may be some additional spaces and then the cpu type.
428 while (CIP < CPUInfoEnd && CPUStart == 0) {
429 if (CIP < CPUInfoEnd && *CIP == '\n')
430 ++CIP;
431
432 if (CIP < CPUInfoEnd && *CIP == 'c') {
433 ++CIP;
434 if (CIP < CPUInfoEnd && *CIP == 'p') {
435 ++CIP;
436 if (CIP < CPUInfoEnd && *CIP == 'u') {
437 ++CIP;
438 while (CIP < CPUInfoEnd && (*CIP == ' ' || *CIP == '\t'))
439 ++CIP;
440
441 if (CIP < CPUInfoEnd && *CIP == ':') {
442 ++CIP;
443 while (CIP < CPUInfoEnd && (*CIP == ' ' || *CIP == '\t'))
444 ++CIP;
445
446 if (CIP < CPUInfoEnd) {
447 CPUStart = CIP;
448 while (CIP < CPUInfoEnd && (*CIP != ' ' && *CIP != '\t' &&
449 *CIP != ',' && *CIP != '\n'))
450 ++CIP;
451 CPULen = CIP - CPUStart;
452 }
453 }
454 }
455 }
456 }
457
458 if (CPUStart == 0)
459 while (CIP < CPUInfoEnd && *CIP != '\n')
460 ++CIP;
461 }
462
463 if (CPUStart == 0)
464 return generic;
465
466 return StringSwitch<const char *>(StringRef(CPUStart, CPULen))
467 .Case("604e", "604e")
468 .Case("604", "604")
469 .Case("7400", "7400")
470 .Case("7410", "7400")
471 .Case("7447", "7400")
472 .Case("7455", "7450")
473 .Case("G4", "g4")
Hal Finkel6670c822012-06-12 16:39:23 +0000474 .Case("POWER4", "970")
Hal Finkel4db738a2012-06-12 03:03:13 +0000475 .Case("PPC970FX", "970")
476 .Case("PPC970MP", "970")
477 .Case("G5", "g5")
478 .Case("POWER5", "g5")
479 .Case("A2", "a2")
480 .Case("POWER6", "pwr6")
481 .Case("POWER7", "pwr7")
482 .Default(generic);
483}
Benjamin Kramer4750c1d2012-06-26 21:36:32 +0000484#elif defined(__linux__) && defined(__arm__)
485std::string sys::getHostCPUName() {
486 // The cpuid register on arm is not accessible from user space. On Linux,
487 // it is exposed through the /proc/cpuinfo file.
488 // Note: We cannot mmap /proc/cpuinfo here and then process the resulting
489 // memory buffer because the 'file' has 0 size (it can be read from only
490 // as a stream).
491
492 std::string Err;
493 DataStreamer *DS = getDataFileStreamer("/proc/cpuinfo", &Err);
494 if (!DS) {
495 DEBUG(dbgs() << "Unable to open /proc/cpuinfo: " << Err << "\n");
496 return "generic";
497 }
498
499 // Read 1024 bytes from /proc/cpuinfo, which should contain the CPU part line
500 // in all cases.
501 char buffer[1024];
502 size_t CPUInfoSize = DS->GetBytes((unsigned char*) buffer, sizeof(buffer));
503 delete DS;
504
505 StringRef Str(buffer, CPUInfoSize);
506
507 SmallVector<StringRef, 32> Lines;
508 Str.split(Lines, "\n");
509
510 // Look for the CPU implementer line.
511 StringRef Implementer;
512 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
513 if (Lines[I].startswith("CPU implementer"))
514 Implementer = Lines[I].substr(15).ltrim("\t :");
515
516 if (Implementer == "0x41") // ARM Ltd.
517 // Look for the CPU part line.
518 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
519 if (Lines[I].startswith("CPU part"))
520 // The CPU part is a 3 digit hexadecimal number with a 0x prefix. The
521 // values correspond to the "Part number" in the CP15/c0 register. The
522 // contents are specified in the various processor manuals.
523 return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :"))
524 .Case("0x926", "arm926ej-s")
525 .Case("0xb02", "mpcore")
526 .Case("0xb36", "arm1136j-s")
527 .Case("0xb56", "arm1156t2-s")
528 .Case("0xb76", "arm1176jz-s")
529 .Case("0xc08", "cortex-a8")
530 .Case("0xc09", "cortex-a9")
James Molloy552e7312012-10-31 09:07:37 +0000531 .Case("0xc0f", "cortex-a15")
Benjamin Kramer4750c1d2012-06-26 21:36:32 +0000532 .Case("0xc20", "cortex-m0")
533 .Case("0xc23", "cortex-m3")
534 .Case("0xc24", "cortex-m4")
535 .Default("generic");
536
537 return "generic";
538}
Torok Edwinc4174d62009-12-13 08:59:40 +0000539#else
540std::string sys::getHostCPUName() {
Benjamin Kramer110e7bb2009-11-17 17:57:04 +0000541 return "generic";
Daniel Dunbar067d0242009-11-14 10:09:12 +0000542}
Torok Edwinc4174d62009-12-13 08:59:40 +0000543#endif
Xerxes Ranby1c8183d2010-01-19 21:26:05 +0000544
Hao Liufde71f42012-12-13 02:40:20 +0000545#if defined(__linux__) && defined(__arm__)
546bool sys::getHostCPUFeatures(StringMap<bool> &Features) {
547 std::string Err;
548 DataStreamer *DS = getDataFileStreamer("/proc/cpuinfo", &Err);
549 if (!DS) {
550 DEBUG(dbgs() << "Unable to open /proc/cpuinfo: " << Err << "\n");
551 return false;
552 }
553
554 // Read 1024 bytes from /proc/cpuinfo, which should contain the Features line
555 // in all cases.
556 char buffer[1024];
557 size_t CPUInfoSize = DS->GetBytes((unsigned char*) buffer, sizeof(buffer));
558 delete DS;
559
560 StringRef Str(buffer, CPUInfoSize);
561
562 SmallVector<StringRef, 32> Lines;
563 Str.split(Lines, "\n");
564
565 // Look for the CPU implementer line.
566 StringRef Implementer;
567 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
568 if (Lines[I].startswith("CPU implementer"))
569 Implementer = Lines[I].substr(15).ltrim("\t :");
570
571 if (Implementer == "0x41") { // ARM Ltd.
572 SmallVector<StringRef, 32> CPUFeatures;
573
574 // Look for the CPU features.
575 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
576 if (Lines[I].startswith("Features")) {
577 Lines[I].split(CPUFeatures, " ");
578 break;
579 }
580
581 for (unsigned I = 0, E = CPUFeatures.size(); I != E; ++I) {
582 StringRef LLVMFeatureStr = StringSwitch<StringRef>(CPUFeatures[I])
583 .Case("half", "fp16")
584 .Case("neon", "neon")
585 .Case("vfpv3", "vfp3")
586 .Case("vfpv3d16", "d16")
587 .Case("vfpv4", "vfp4")
588 .Case("idiva", "hwdiv-arm")
589 .Case("idivt", "hwdiv")
590 .Default("");
591
592 if (LLVMFeatureStr != "")
593 Features.GetOrCreateValue(LLVMFeatureStr).setValue(true);
594 }
595
596 return true;
597 }
598
599 return false;
600}
601#else
Xerxes Ranby1c8183d2010-01-19 21:26:05 +0000602bool sys::getHostCPUFeatures(StringMap<bool> &Features){
603 return false;
604}
Hao Liufde71f42012-12-13 02:40:20 +0000605#endif
Peter Collingbournefbb662f2013-01-16 17:27:22 +0000606
607std::string sys::getProcessTriple() {
608 Triple PT(LLVM_HOSTTRIPLE);
609
610 if (sizeof(void *) == 8 && PT.isArch32Bit())
611 PT = PT.get64BitArchVariant();
612 if (sizeof(void *) == 4 && PT.isArch64Bit())
613 PT = PT.get32BitArchVariant();
614
615 return PT.str();
616}