blob: 8782e2e9d26b8934723bcaee638ad74a7ba0c7c3 [file] [log] [blame]
Daniel Dunbare52e6bf2008-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//
Hans Wennborgcfe341f2014-06-20 01:36:00 +000010// This file implements the operating system Host concept.
Daniel Dunbare52e6bf2008-10-02 01:17:28 +000011//
12//===----------------------------------------------------------------------===//
13
Chandler Carruthed0881b2012-12-03 16:50:05 +000014#include "llvm/Support/Host.h"
Benjamin Kramerefe40282012-06-26 21:36:32 +000015#include "llvm/ADT/SmallVector.h"
Hal Finkel59b0ee82012-06-12 03:03:13 +000016#include "llvm/ADT/StringRef.h"
17#include "llvm/ADT/StringSwitch.h"
Peter Collingbournea51c6ed2013-01-16 17:27:22 +000018#include "llvm/ADT/Triple.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000019#include "llvm/Config/config.h"
Hal Finkel59b0ee82012-06-12 03:03:13 +000020#include "llvm/Support/DataStream.h"
21#include "llvm/Support/Debug.h"
Hal Finkel59b0ee82012-06-12 03:03:13 +000022#include "llvm/Support/raw_ostream.h"
Daniel Dunbar241d01b2009-11-14 10:09:12 +000023#include <string.h>
Daniel Dunbare52e6bf2008-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. Spencer447762d2010-11-29 18:16:10 +000030#include "Windows/Host.inc"
Daniel Dunbare52e6bf2008-10-02 01:17:28 +000031#endif
Benjamin Kramer38465062009-11-19 12:17:31 +000032#ifdef _MSC_VER
33#include <intrin.h>
34#endif
Hal Finkel59b0ee82012-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 Dunbare52e6bf2008-10-02 01:17:28 +000041
Chandler Carruth66f38db2014-04-21 23:58:10 +000042#define DEBUG_TYPE "host-detection"
43
Daniel Dunbar241d01b2009-11-14 10:09:12 +000044//===----------------------------------------------------------------------===//
45//
46// Implementations of the CPU detection routines
47//
48//===----------------------------------------------------------------------===//
49
50using 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 Klecknerbe85cb92013-08-14 18:21:51 +000057static bool GetX86CpuIDAndInfo(unsigned value, unsigned *rEAX, unsigned *rEBX,
58 unsigned *rECX, unsigned *rEDX) {
Reid Klecknerbf4f9eb2013-08-16 22:42:42 +000059#if defined(__GNUC__) || defined(__clang__)
Reid Klecknerbe85cb92013-08-14 18:21:51 +000060 #if defined(__x86_64__) || defined(_M_AMD64) || defined (_M_X64)
Daniel Dunbar241d01b2009-11-14 10:09:12 +000061 // 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 Klecknerbe85cb92013-08-14 18:21:51 +000071 #elif defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86)
Daniel Dunbar241d01b2009-11-14 10:09:12 +000072 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 Blaikieb48ed1a2012-01-17 04:43:56 +000081// 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 Dunbar241d01b2009-11-14 10:09:12 +000085 #endif
Reid Klecknerbf4f9eb2013-08-16 22:42:42 +000086#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 Blaikieb48ed1a2012-01-17 04:43:56 +000095#else
Daniel Dunbar241d01b2009-11-14 10:09:12 +000096 return true;
David Blaikieb48ed1a2012-01-17 04:43:56 +000097#endif
Daniel Dunbar241d01b2009-11-14 10:09:12 +000098}
99
Tim Northover89ccb612013-11-25 09:52:59 +0000100/// 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 Kramer583b00e2013-11-25 15:40:24 +0000103static bool GetX86CpuIDAndInfoEx(unsigned value, unsigned subleaf,
104 unsigned *rEAX, unsigned *rEBX, unsigned *rECX,
105 unsigned *rEDX) {
Tim Northover89ccb612013-11-25 09:52:59 +0000106#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 Topper7af39d72013-04-22 05:38:01 +0000170static 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 Ballman31c0adc2013-04-23 17:38:44 +0000177#elif defined(_MSC_FULL_VER) && defined(_XCR_XFEATURE_ENABLED_MASK)
Craig Topper7af39d72013-04-22 05:38:01 +0000178 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 Ballman5f7c6802013-04-03 12:25:06 +0000183}
184
Chris Lattner963debc2010-09-06 05:19:44 +0000185static void DetectX86FamilyModel(unsigned EAX, unsigned &Family,
186 unsigned &Model) {
Daniel Dunbar241d01b2009-11-14 10:09:12 +0000187 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 Dunbar241d01b2009-11-14 10:09:12 +0000197
Rafael Espindola74f444c2013-12-12 15:45:32 +0000198StringRef sys::getHostCPUName() {
Daniel Dunbar241d01b2009-11-14 10:09:12 +0000199 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 Northover89ccb612013-11-25 09:52:59 +0000206 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 Lattner963debc2010-09-06 05:19:44 +0000214 bool HasSSE3 = (ECX & 0x1);
Benjamin Kramerfb349892013-07-29 11:02:08 +0000215 bool HasSSE41 = (ECX & 0x80000);
Aaron Ballman5f7c6802013-04-03 12:25:06 +0000216 // 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 Ballman5e6d2052013-04-03 18:00:22 +0000219 const unsigned AVXBits = (1 << 27) | (1 << 28);
220 bool HasAVX = ((ECX & AVXBits) == AVXBits) && OSHasAVXSupport();
Tim Northover89ccb612013-11-25 09:52:59 +0000221 bool HasAVX2 = HasAVX && MaxLeaf >= 0x7 &&
222 !GetX86CpuIDAndInfoEx(0x7, 0x0, &EAX, &EBX, &ECX, &EDX) &&
223 (EBX & 0x20);
Daniel Dunbar241d01b2009-11-14 10:09:12 +0000224 GetX86CpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
225 bool Em64T = (EDX >> 29) & 0x1;
Kaelyn Takataa39d2a02014-05-05 16:32:10 +0000226 bool HasTBM = (ECX >> 21) & 0x1;
Daniel Dunbar241d01b2009-11-14 10:09:12 +0000227
Daniel Dunbar241d01b2009-11-14 10:09:12 +0000228 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
229 switch (Family) {
Daniel Dunbar397235f2009-11-14 21:36:19 +0000230 case 3:
231 return "i386";
232 case 4:
233 switch (Model) {
NAKAMURA Takumi19e11f12010-09-09 13:30:48 +0000234 case 0: // Intel486 DX processors
235 case 1: // Intel486 DX processors
Daniel Dunbar397235f2009-11-14 21:36:19 +0000236 case 2: // Intel486 SX processors
NAKAMURA Takumi19e11f12010-09-09 13:30:48 +0000237 case 3: // Intel487 processors, IntelDX2 OverDrive processors,
238 // IntelDX2 processors
Daniel Dunbar397235f2009-11-14 21:36:19 +0000239 case 4: // Intel486 SL processor
NAKAMURA Takumi19e11f12010-09-09 13:30:48 +0000240 case 5: // IntelSX2 processors
Daniel Dunbar397235f2009-11-14 21:36:19 +0000241 case 7: // Write-Back Enhanced IntelDX2 processors
NAKAMURA Takumi19e11f12010-09-09 13:30:48 +0000242 case 8: // IntelDX4 OverDrive processors, IntelDX4 processors
Daniel Dunbar397235f2009-11-14 21:36:19 +0000243 default: return "i486";
Daniel Dunbar241d01b2009-11-14 10:09:12 +0000244 }
Daniel Dunbar397235f2009-11-14 21:36:19 +0000245 case 5:
246 switch (Model) {
247 case 1: // Pentium OverDrive processor for Pentium processor (60, 66),
NAKAMURA Takumi19e11f12010-09-09 13:30:48 +0000248 // Pentium processors (60, 66)
Daniel Dunbar397235f2009-11-14 21:36:19 +0000249 case 2: // Pentium OverDrive processor for Pentium processor (75, 90,
250 // 100, 120, 133), Pentium processors (75, 90, 100, 120, 133,
251 // 150, 166, 200)
252 case 3: // Pentium OverDrive processors for Intel486 processor-based
253 // systems
254 return "pentium";
255
NAKAMURA Takumi19e11f12010-09-09 13:30:48 +0000256 case 4: // Pentium OverDrive processor with MMX technology for Pentium
Daniel Dunbar397235f2009-11-14 21:36:19 +0000257 // processor (75, 90, 100, 120, 133), Pentium processor with
NAKAMURA Takumi19e11f12010-09-09 13:30:48 +0000258 // MMX technology (166, 200)
Daniel Dunbar397235f2009-11-14 21:36:19 +0000259 return "pentium-mmx";
260
261 default: return "pentium";
262 }
263 case 6:
264 switch (Model) {
265 case 1: // Pentium Pro processor
266 return "pentiumpro";
267
268 case 3: // Intel Pentium II OverDrive processor, Pentium II processor,
269 // model 03
270 case 5: // Pentium II processor, model 05, Pentium II Xeon processor,
NAKAMURA Takumi19e11f12010-09-09 13:30:48 +0000271 // model 05, and Intel Celeron processor, model 05
Daniel Dunbar397235f2009-11-14 21:36:19 +0000272 case 6: // Celeron processor, model 06
273 return "pentium2";
274
275 case 7: // Pentium III processor, model 07, and Pentium III Xeon
276 // processor, model 07
277 case 8: // Pentium III processor, model 08, Pentium III Xeon processor,
278 // model 08, and Celeron processor, model 08
279 case 10: // Pentium III Xeon processor, model 0Ah
280 case 11: // Pentium III processor, model 0Bh
281 return "pentium3";
282
283 case 9: // Intel Pentium M processor, Intel Celeron M processor model 09.
284 case 13: // Intel Pentium M processor, Intel Celeron M processor, model
285 // 0Dh. All processors are manufactured using the 90 nm process.
286 return "pentium-m";
287
NAKAMURA Takumi19e11f12010-09-09 13:30:48 +0000288 case 14: // Intel Core Duo processor, Intel Core Solo processor, model
Daniel Dunbar397235f2009-11-14 21:36:19 +0000289 // 0Eh. All processors are manufactured using the 65 nm process.
290 return "yonah";
291
NAKAMURA Takumi19e11f12010-09-09 13:30:48 +0000292 case 15: // Intel Core 2 Duo processor, Intel Core 2 Duo mobile
293 // processor, Intel Core 2 Quad processor, Intel Core 2 Quad
294 // mobile processor, Intel Core 2 Extreme processor, Intel
Daniel Dunbar397235f2009-11-14 21:36:19 +0000295 // Pentium Dual-Core processor, Intel Xeon processor, model
296 // 0Fh. All processors are manufactured using the 65 nm process.
297 case 22: // Intel Celeron processor model 16h. All processors are
298 // manufactured using the 65 nm process
299 return "core2";
300
301 case 21: // Intel EP80579 Integrated Processor and Intel EP80579
302 // Integrated Processor with Intel QuickAssist Technology
303 return "i686"; // FIXME: ???
304
NAKAMURA Takumi19e11f12010-09-09 13:30:48 +0000305 case 23: // Intel Core 2 Extreme processor, Intel Xeon processor, model
Daniel Dunbar397235f2009-11-14 21:36:19 +0000306 // 17h. All processors are manufactured using the 45 nm process.
307 //
308 // 45nm: Penryn , Wolfdale, Yorkfield (XE)
Benjamin Kramerfb349892013-07-29 11:02:08 +0000309 // Not all Penryn processors support SSE 4.1 (such as the Pentium brand)
310 return HasSSE41 ? "penryn" : "core2";
Daniel Dunbar397235f2009-11-14 21:36:19 +0000311
312 case 26: // Intel Core i7 processor and Intel Xeon processor. All
313 // processors are manufactured using the 45 nm process.
314 case 29: // Intel Xeon processor MP. All processors are manufactured using
315 // the 45 nm process.
Jakob Stoklund Olesen49e58a92010-09-19 17:54:28 +0000316 case 30: // Intel(R) Core(TM) i7 CPU 870 @ 2.93GHz.
317 // As found in a Summer 2010 model iMac.
Chris Lattnerb737bac2010-09-19 00:31:58 +0000318 case 37: // Intel Core i7, laptop version.
Benjamin Kramer5a122f32011-08-25 18:05:56 +0000319 case 44: // Intel Core i7 processor and Intel Xeon processor. All
320 // processors are manufactured using the 32 nm process.
Benjamin Kramer9d6063a2012-09-26 18:21:47 +0000321 case 46: // Nehalem EX
322 case 47: // Westmere EX
Daniel Dunbar397235f2009-11-14 21:36:19 +0000323 return "corei7";
Bob Wilsond0f06002011-07-08 22:33:59 +0000324
325 // SandyBridge:
326 case 42: // Intel Core i7 processor. All processors are manufactured
327 // using the 32 nm process.
Chris Lattner889c40e2011-06-09 06:38:17 +0000328 case 45:
Aaron Ballman5f7c6802013-04-03 12:25:06 +0000329 // Not all Sandy Bridge processors support AVX (such as the Pentium
330 // versions instead of the i7 versions).
331 return HasAVX ? "corei7-avx" : "corei7";
Daniel Dunbar397235f2009-11-14 21:36:19 +0000332
Evan Cheng7fd16072012-04-23 22:41:39 +0000333 // Ivy Bridge:
334 case 58:
Tim Northover89ccb612013-11-25 09:52:59 +0000335 case 62: // Ivy Bridge EP
Aaron Ballman5f7c6802013-04-03 12:25:06 +0000336 // Not all Ivy Bridge processors support AVX (such as the Pentium
337 // versions instead of the i7 versions).
338 return HasAVX ? "core-avx-i" : "corei7";
Evan Cheng7fd16072012-04-23 22:41:39 +0000339
Tim Northover89ccb612013-11-25 09:52:59 +0000340 // Haswell:
341 case 60:
342 case 63:
343 case 69:
344 case 70:
345 // Not all Haswell processors support AVX too (such as the Pentium
346 // versions instead of the i7 versions).
347 return HasAVX2 ? "core-avx2" : "corei7";
348
Preston Gurdc0b976c2012-05-02 21:38:46 +0000349 case 28: // Most 45 nm Intel Atom processors
350 case 38: // 45 nm Atom Lincroft
351 case 39: // 32 nm Atom Medfield
Preston Gurd8e082682012-07-19 19:05:37 +0000352 case 53: // 32 nm Atom Midview
353 case 54: // 32 nm Atom Midview
Daniel Dunbar397235f2009-11-14 21:36:19 +0000354 return "atom";
355
Preston Gurd3fe264d2013-09-13 19:23:28 +0000356 // Atom Silvermont codes from the Intel software optimization guide.
357 case 55:
Benjamin Kramer8f429382013-08-30 14:05:32 +0000358 case 74:
359 case 77:
360 return "slm";
361
Bob Wilson8d4e2fa2012-05-09 17:47:03 +0000362 default: return (Em64T) ? "x86-64" : "i686";
Daniel Dunbar397235f2009-11-14 21:36:19 +0000363 }
364 case 15: {
365 switch (Model) {
366 case 0: // Pentium 4 processor, Intel Xeon processor. All processors are
367 // model 00h and manufactured using the 0.18 micron process.
368 case 1: // Pentium 4 processor, Intel Xeon processor, Intel Xeon
369 // processor MP, and Intel Celeron processor. All processors are
370 // model 01h and manufactured using the 0.18 micron process.
NAKAMURA Takumi19e11f12010-09-09 13:30:48 +0000371 case 2: // Pentium 4 processor, Mobile Intel Pentium 4 processor - M,
Daniel Dunbar397235f2009-11-14 21:36:19 +0000372 // Intel Xeon processor, Intel Xeon processor MP, Intel Celeron
373 // processor, and Mobile Intel Celeron processor. All processors
374 // are model 02h and manufactured using the 0.13 micron process.
375 return (Em64T) ? "x86-64" : "pentium4";
376
377 case 3: // Pentium 4 processor, Intel Xeon processor, Intel Celeron D
378 // processor. All processors are model 03h and manufactured using
379 // the 90 nm process.
380 case 4: // Pentium 4 processor, Pentium 4 processor Extreme Edition,
381 // Pentium D processor, Intel Xeon processor, Intel Xeon
382 // processor MP, Intel Celeron D processor. All processors are
383 // model 04h and manufactured using the 90 nm process.
384 case 6: // Pentium 4 processor, Pentium D processor, Pentium processor
385 // Extreme Edition, Intel Xeon processor, Intel Xeon processor
386 // MP, Intel Celeron D processor. All processors are model 06h
387 // and manufactured using the 65 nm process.
388 return (Em64T) ? "nocona" : "prescott";
389
Daniel Dunbar397235f2009-11-14 21:36:19 +0000390 default:
391 return (Em64T) ? "x86-64" : "pentium4";
392 }
393 }
394
Daniel Dunbar241d01b2009-11-14 10:09:12 +0000395 default:
Benjamin Kramer713fd352009-11-17 17:57:04 +0000396 return "generic";
Daniel Dunbar241d01b2009-11-14 10:09:12 +0000397 }
398 } else if (memcmp(text.c, "AuthenticAMD", 12) == 0) {
399 // FIXME: this poorly matches the generated SubtargetFeatureKV table. There
400 // appears to be no way to generate the wide variety of AMD-specific targets
401 // from the information returned from CPUID.
402 switch (Family) {
403 case 4:
404 return "i486";
405 case 5:
406 switch (Model) {
407 case 6:
408 case 7: return "k6";
409 case 8: return "k6-2";
410 case 9:
411 case 13: return "k6-3";
Roman Divackyfd690092012-09-12 14:36:02 +0000412 case 10: return "geode";
Daniel Dunbar241d01b2009-11-14 10:09:12 +0000413 default: return "pentium";
414 }
415 case 6:
416 switch (Model) {
417 case 4: return "athlon-tbird";
418 case 6:
419 case 7:
420 case 8: return "athlon-mp";
421 case 10: return "athlon-xp";
422 default: return "athlon";
423 }
424 case 15:
Chris Lattner963debc2010-09-06 05:19:44 +0000425 if (HasSSE3)
Daniel Dunbar241d01b2009-11-14 10:09:12 +0000426 return "k8-sse3";
Chris Lattner963debc2010-09-06 05:19:44 +0000427 switch (Model) {
428 case 1: return "opteron";
429 case 5: return "athlon-fx"; // also opteron
430 default: return "athlon64";
Daniel Dunbar241d01b2009-11-14 10:09:12 +0000431 }
432 case 16:
433 return "amdfam10";
Benjamin Kramer077ae1d2012-01-10 11:50:02 +0000434 case 20:
435 return "btver1";
Benjamin Kramer3ced5452011-12-01 18:24:17 +0000436 case 21:
Benjamin Kramerb44c4272013-05-03 10:20:08 +0000437 if (!HasAVX) // If the OS doesn't support AVX provide a sane fallback.
438 return "btver1";
Benjamin Kramer60045732014-05-02 15:47:07 +0000439 if (Model >= 0x50)
440 return "bdver4"; // 50h-6Fh: Excavator
Benjamin Kramerd114def2013-11-04 10:29:20 +0000441 if (Model >= 0x30)
442 return "bdver3"; // 30h-3Fh: Steamroller
Kaelyn Takataa39d2a02014-05-05 16:32:10 +0000443 if (Model >= 0x10 || HasTBM)
Benjamin Kramerd114def2013-11-04 10:29:20 +0000444 return "bdver2"; // 10h-1Fh: Piledriver
445 return "bdver1"; // 00h-0Fh: Bulldozer
Benjamin Kramerb44c4272013-05-03 10:20:08 +0000446 case 22:
447 if (!HasAVX) // If the OS doesn't support AVX provide a sane fallback.
448 return "btver1";
449 return "btver2";
Daniel Dunbar241d01b2009-11-14 10:09:12 +0000450 default:
Benjamin Kramer713fd352009-11-17 17:57:04 +0000451 return "generic";
Daniel Dunbar241d01b2009-11-14 10:09:12 +0000452 }
Daniel Dunbar241d01b2009-11-14 10:09:12 +0000453 }
Torok Edwin022336a2009-12-14 12:38:18 +0000454 return "generic";
Torok Edwinabdc1c22009-12-13 08:59:40 +0000455}
Hal Finkel59b0ee82012-06-12 03:03:13 +0000456#elif defined(__APPLE__) && (defined(__ppc__) || defined(__powerpc__))
Rafael Espindola1f58e4d2013-12-12 16:10:48 +0000457StringRef sys::getHostCPUName() {
Hal Finkel59b0ee82012-06-12 03:03:13 +0000458 host_basic_info_data_t hostInfo;
459 mach_msg_type_number_t infoCount;
460
461 infoCount = HOST_BASIC_INFO_COUNT;
462 host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo,
463 &infoCount);
464
465 if (hostInfo.cpu_type != CPU_TYPE_POWERPC) return "generic";
466
467 switch(hostInfo.cpu_subtype) {
468 case CPU_SUBTYPE_POWERPC_601: return "601";
469 case CPU_SUBTYPE_POWERPC_602: return "602";
470 case CPU_SUBTYPE_POWERPC_603: return "603";
471 case CPU_SUBTYPE_POWERPC_603e: return "603e";
472 case CPU_SUBTYPE_POWERPC_603ev: return "603ev";
473 case CPU_SUBTYPE_POWERPC_604: return "604";
474 case CPU_SUBTYPE_POWERPC_604e: return "604e";
475 case CPU_SUBTYPE_POWERPC_620: return "620";
476 case CPU_SUBTYPE_POWERPC_750: return "750";
477 case CPU_SUBTYPE_POWERPC_7400: return "7400";
478 case CPU_SUBTYPE_POWERPC_7450: return "7450";
479 case CPU_SUBTYPE_POWERPC_970: return "970";
480 default: ;
481 }
482
483 return "generic";
484}
485#elif defined(__linux__) && (defined(__ppc__) || defined(__powerpc__))
Rafael Espindolab75ea012013-12-12 16:17:40 +0000486StringRef sys::getHostCPUName() {
Hal Finkel59b0ee82012-06-12 03:03:13 +0000487 // Access to the Processor Version Register (PVR) on PowerPC is privileged,
488 // and so we must use an operating-system interface to determine the current
489 // processor type. On Linux, this is exposed through the /proc/cpuinfo file.
490 const char *generic = "generic";
491
492 // Note: We cannot mmap /proc/cpuinfo here and then process the resulting
493 // memory buffer because the 'file' has 0 size (it can be read from only
494 // as a stream).
495
496 std::string Err;
497 DataStreamer *DS = getDataFileStreamer("/proc/cpuinfo", &Err);
498 if (!DS) {
499 DEBUG(dbgs() << "Unable to open /proc/cpuinfo: " << Err << "\n");
500 return generic;
501 }
502
503 // The cpu line is second (after the 'processor: 0' line), so if this
504 // buffer is too small then something has changed (or is wrong).
505 char buffer[1024];
506 size_t CPUInfoSize = DS->GetBytes((unsigned char*) buffer, sizeof(buffer));
507 delete DS;
508
509 const char *CPUInfoStart = buffer;
510 const char *CPUInfoEnd = buffer + CPUInfoSize;
511
512 const char *CIP = CPUInfoStart;
513
514 const char *CPUStart = 0;
515 size_t CPULen = 0;
516
517 // We need to find the first line which starts with cpu, spaces, and a colon.
518 // After the colon, there may be some additional spaces and then the cpu type.
519 while (CIP < CPUInfoEnd && CPUStart == 0) {
520 if (CIP < CPUInfoEnd && *CIP == '\n')
521 ++CIP;
522
523 if (CIP < CPUInfoEnd && *CIP == 'c') {
524 ++CIP;
525 if (CIP < CPUInfoEnd && *CIP == 'p') {
526 ++CIP;
527 if (CIP < CPUInfoEnd && *CIP == 'u') {
528 ++CIP;
529 while (CIP < CPUInfoEnd && (*CIP == ' ' || *CIP == '\t'))
530 ++CIP;
531
532 if (CIP < CPUInfoEnd && *CIP == ':') {
533 ++CIP;
534 while (CIP < CPUInfoEnd && (*CIP == ' ' || *CIP == '\t'))
535 ++CIP;
536
537 if (CIP < CPUInfoEnd) {
538 CPUStart = CIP;
539 while (CIP < CPUInfoEnd && (*CIP != ' ' && *CIP != '\t' &&
540 *CIP != ',' && *CIP != '\n'))
541 ++CIP;
542 CPULen = CIP - CPUStart;
543 }
544 }
545 }
546 }
547 }
548
549 if (CPUStart == 0)
550 while (CIP < CPUInfoEnd && *CIP != '\n')
551 ++CIP;
552 }
553
554 if (CPUStart == 0)
555 return generic;
556
557 return StringSwitch<const char *>(StringRef(CPUStart, CPULen))
558 .Case("604e", "604e")
559 .Case("604", "604")
560 .Case("7400", "7400")
561 .Case("7410", "7400")
562 .Case("7447", "7400")
563 .Case("7455", "7450")
564 .Case("G4", "g4")
Hal Finkelf1cc96a2012-06-12 16:39:23 +0000565 .Case("POWER4", "970")
Hal Finkel59b0ee82012-06-12 03:03:13 +0000566 .Case("PPC970FX", "970")
567 .Case("PPC970MP", "970")
568 .Case("G5", "g5")
569 .Case("POWER5", "g5")
570 .Case("A2", "a2")
571 .Case("POWER6", "pwr6")
572 .Case("POWER7", "pwr7")
Will Schmidt579e4022014-06-26 13:37:03 +0000573 .Case("POWER8", "pwr8")
574 .Case("POWER8E", "pwr8")
Hal Finkel59b0ee82012-06-12 03:03:13 +0000575 .Default(generic);
576}
Benjamin Kramerefe40282012-06-26 21:36:32 +0000577#elif defined(__linux__) && defined(__arm__)
Rafael Espindola1f58e4d2013-12-12 16:10:48 +0000578StringRef sys::getHostCPUName() {
Benjamin Kramerefe40282012-06-26 21:36:32 +0000579 // The cpuid register on arm is not accessible from user space. On Linux,
580 // it is exposed through the /proc/cpuinfo file.
581 // Note: We cannot mmap /proc/cpuinfo here and then process the resulting
582 // memory buffer because the 'file' has 0 size (it can be read from only
583 // as a stream).
584
585 std::string Err;
586 DataStreamer *DS = getDataFileStreamer("/proc/cpuinfo", &Err);
587 if (!DS) {
588 DEBUG(dbgs() << "Unable to open /proc/cpuinfo: " << Err << "\n");
589 return "generic";
590 }
591
592 // Read 1024 bytes from /proc/cpuinfo, which should contain the CPU part line
593 // in all cases.
594 char buffer[1024];
595 size_t CPUInfoSize = DS->GetBytes((unsigned char*) buffer, sizeof(buffer));
596 delete DS;
597
598 StringRef Str(buffer, CPUInfoSize);
599
600 SmallVector<StringRef, 32> Lines;
601 Str.split(Lines, "\n");
602
603 // Look for the CPU implementer line.
604 StringRef Implementer;
605 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
606 if (Lines[I].startswith("CPU implementer"))
607 Implementer = Lines[I].substr(15).ltrim("\t :");
608
609 if (Implementer == "0x41") // ARM Ltd.
610 // Look for the CPU part line.
611 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
612 if (Lines[I].startswith("CPU part"))
613 // The CPU part is a 3 digit hexadecimal number with a 0x prefix. The
614 // values correspond to the "Part number" in the CP15/c0 register. The
615 // contents are specified in the various processor manuals.
616 return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :"))
617 .Case("0x926", "arm926ej-s")
618 .Case("0xb02", "mpcore")
619 .Case("0xb36", "arm1136j-s")
620 .Case("0xb56", "arm1156t2-s")
621 .Case("0xb76", "arm1176jz-s")
622 .Case("0xc08", "cortex-a8")
623 .Case("0xc09", "cortex-a9")
James Molloy3ebe7a52012-10-31 09:07:37 +0000624 .Case("0xc0f", "cortex-a15")
Benjamin Kramerefe40282012-06-26 21:36:32 +0000625 .Case("0xc20", "cortex-m0")
626 .Case("0xc23", "cortex-m3")
627 .Case("0xc24", "cortex-m4")
628 .Default("generic");
629
Kai Nackeb38bf962013-12-20 09:24:13 +0000630 if (Implementer == "0x51") // Qualcomm Technologies, Inc.
631 // Look for the CPU part line.
632 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
633 if (Lines[I].startswith("CPU part"))
634 // The CPU part is a 3 digit hexadecimal number with a 0x prefix. The
635 // values correspond to the "Part number" in the CP15/c0 register. The
636 // contents are specified in the various processor manuals.
637 return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :"))
638 .Case("0x06f", "krait") // APQ8064
639 .Default("generic");
640
Benjamin Kramerefe40282012-06-26 21:36:32 +0000641 return "generic";
642}
Richard Sandifordf834ea12013-10-31 12:14:17 +0000643#elif defined(__linux__) && defined(__s390x__)
Rafael Espindola1f58e4d2013-12-12 16:10:48 +0000644StringRef sys::getHostCPUName() {
Richard Sandifordf834ea12013-10-31 12:14:17 +0000645 // STIDP is a privileged operation, so use /proc/cpuinfo instead.
646 // Note: We cannot mmap /proc/cpuinfo here and then process the resulting
647 // memory buffer because the 'file' has 0 size (it can be read from only
648 // as a stream).
649
650 std::string Err;
651 DataStreamer *DS = getDataFileStreamer("/proc/cpuinfo", &Err);
652 if (!DS) {
653 DEBUG(dbgs() << "Unable to open /proc/cpuinfo: " << Err << "\n");
654 return "generic";
655 }
656
657 // The "processor 0:" line comes after a fair amount of other information,
658 // including a cache breakdown, but this should be plenty.
659 char buffer[2048];
660 size_t CPUInfoSize = DS->GetBytes((unsigned char*) buffer, sizeof(buffer));
661 delete DS;
662
663 StringRef Str(buffer, CPUInfoSize);
664 SmallVector<StringRef, 32> Lines;
665 Str.split(Lines, "\n");
666 for (unsigned I = 0, E = Lines.size(); I != E; ++I) {
667 if (Lines[I].startswith("processor ")) {
668 size_t Pos = Lines[I].find("machine = ");
669 if (Pos != StringRef::npos) {
670 Pos += sizeof("machine = ") - 1;
671 unsigned int Id;
672 if (!Lines[I].drop_front(Pos).getAsInteger(10, Id)) {
673 if (Id >= 2827)
674 return "zEC12";
675 if (Id >= 2817)
676 return "z196";
677 }
678 }
679 break;
680 }
681 }
682
683 return "generic";
684}
Torok Edwinabdc1c22009-12-13 08:59:40 +0000685#else
Rafael Espindola1f58e4d2013-12-12 16:10:48 +0000686StringRef sys::getHostCPUName() {
Benjamin Kramer713fd352009-11-17 17:57:04 +0000687 return "generic";
Daniel Dunbar241d01b2009-11-14 10:09:12 +0000688}
Torok Edwinabdc1c22009-12-13 08:59:40 +0000689#endif
Xerxes Ranby17dc3a02010-01-19 21:26:05 +0000690
Bradley Smith9288b212014-05-22 11:44:34 +0000691#if defined(__linux__) && (defined(__arm__) || defined(__aarch64__))
Hao Liu10be3b22012-12-13 02:40:20 +0000692bool sys::getHostCPUFeatures(StringMap<bool> &Features) {
693 std::string Err;
694 DataStreamer *DS = getDataFileStreamer("/proc/cpuinfo", &Err);
695 if (!DS) {
696 DEBUG(dbgs() << "Unable to open /proc/cpuinfo: " << Err << "\n");
697 return false;
698 }
699
700 // Read 1024 bytes from /proc/cpuinfo, which should contain the Features line
701 // in all cases.
702 char buffer[1024];
703 size_t CPUInfoSize = DS->GetBytes((unsigned char*) buffer, sizeof(buffer));
704 delete DS;
705
706 StringRef Str(buffer, CPUInfoSize);
707
708 SmallVector<StringRef, 32> Lines;
709 Str.split(Lines, "\n");
710
Tobias Grosserbd9e5492013-06-11 21:45:01 +0000711 SmallVector<StringRef, 32> CPUFeatures;
712
713 // Look for the CPU features.
Hao Liu10be3b22012-12-13 02:40:20 +0000714 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
Tobias Grosserbd9e5492013-06-11 21:45:01 +0000715 if (Lines[I].startswith("Features")) {
716 Lines[I].split(CPUFeatures, " ");
717 break;
Hao Liu10be3b22012-12-13 02:40:20 +0000718 }
719
Bradley Smith9288b212014-05-22 11:44:34 +0000720#if defined(__aarch64__)
721 // Keep track of which crypto features we have seen
722 enum {
Bradley Smith63c8b1b2014-05-23 10:14:13 +0000723 CAP_AES = 0x1,
724 CAP_PMULL = 0x2,
725 CAP_SHA1 = 0x4,
726 CAP_SHA2 = 0x8
Bradley Smith9288b212014-05-22 11:44:34 +0000727 };
728 uint32_t crypto = 0;
729#endif
730
Tobias Grosserbd9e5492013-06-11 21:45:01 +0000731 for (unsigned I = 0, E = CPUFeatures.size(); I != E; ++I) {
732 StringRef LLVMFeatureStr = StringSwitch<StringRef>(CPUFeatures[I])
Bradley Smith9288b212014-05-22 11:44:34 +0000733#if defined(__aarch64__)
734 .Case("asimd", "neon")
735 .Case("fp", "fp-armv8")
736 .Case("crc32", "crc")
737#else
Tobias Grosserbd9e5492013-06-11 21:45:01 +0000738 .Case("half", "fp16")
739 .Case("neon", "neon")
740 .Case("vfpv3", "vfp3")
741 .Case("vfpv3d16", "d16")
742 .Case("vfpv4", "vfp4")
743 .Case("idiva", "hwdiv-arm")
744 .Case("idivt", "hwdiv")
Bradley Smith9288b212014-05-22 11:44:34 +0000745#endif
Tobias Grosserbd9e5492013-06-11 21:45:01 +0000746 .Default("");
747
Bradley Smith9288b212014-05-22 11:44:34 +0000748#if defined(__aarch64__)
Alp Tokerda0c7932014-05-31 21:26:28 +0000749 // We need to check crypto separately since we need all of the crypto
Bradley Smith9288b212014-05-22 11:44:34 +0000750 // extensions to enable the subtarget feature
751 if (CPUFeatures[I] == "aes")
Bradley Smith63c8b1b2014-05-23 10:14:13 +0000752 crypto |= CAP_AES;
Bradley Smith9288b212014-05-22 11:44:34 +0000753 else if (CPUFeatures[I] == "pmull")
Bradley Smith63c8b1b2014-05-23 10:14:13 +0000754 crypto |= CAP_PMULL;
Bradley Smith9288b212014-05-22 11:44:34 +0000755 else if (CPUFeatures[I] == "sha1")
Bradley Smith63c8b1b2014-05-23 10:14:13 +0000756 crypto |= CAP_SHA1;
Bradley Smith9288b212014-05-22 11:44:34 +0000757 else if (CPUFeatures[I] == "sha2")
Bradley Smith63c8b1b2014-05-23 10:14:13 +0000758 crypto |= CAP_SHA2;
Bradley Smith9288b212014-05-22 11:44:34 +0000759#endif
760
Tobias Grosserbd9e5492013-06-11 21:45:01 +0000761 if (LLVMFeatureStr != "")
David Blaikie5106ce72014-11-19 05:49:42 +0000762 Features[LLVMFeatureStr] = true;
Hao Liu10be3b22012-12-13 02:40:20 +0000763 }
764
Bradley Smith9288b212014-05-22 11:44:34 +0000765#if defined(__aarch64__)
766 // If we have all crypto bits we can add the feature
Bradley Smith63c8b1b2014-05-23 10:14:13 +0000767 if (crypto == (CAP_AES | CAP_PMULL | CAP_SHA1 | CAP_SHA2))
David Blaikie5106ce72014-11-19 05:49:42 +0000768 Features["crypto"] = true;
Bradley Smith9288b212014-05-22 11:44:34 +0000769#endif
770
Tobias Grosserbd9e5492013-06-11 21:45:01 +0000771 return true;
Hao Liu10be3b22012-12-13 02:40:20 +0000772}
773#else
Xerxes Ranby17dc3a02010-01-19 21:26:05 +0000774bool sys::getHostCPUFeatures(StringMap<bool> &Features){
775 return false;
776}
Hao Liu10be3b22012-12-13 02:40:20 +0000777#endif
Peter Collingbournea51c6ed2013-01-16 17:27:22 +0000778
779std::string sys::getProcessTriple() {
Duncan Sandse2cd1392013-07-17 11:01:05 +0000780 Triple PT(Triple::normalize(LLVM_HOST_TRIPLE));
Peter Collingbournea51c6ed2013-01-16 17:27:22 +0000781
782 if (sizeof(void *) == 8 && PT.isArch32Bit())
783 PT = PT.get64BitArchVariant();
784 if (sizeof(void *) == 4 && PT.isArch64Bit())
785 PT = PT.get32BitArchVariant();
786
787 return PT.str();
788}