2016-07-15 06:02:35 +08:00
|
|
|
//===-- cpu_model.c - Support for __cpu_model builtin ------------*- C -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file is based on LLVM's lib/Support/Host.cpp.
|
|
|
|
// It implements the operating system Host concept and builtin
|
|
|
|
// __cpu_model for the compiler_rt library, for x86 only.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#if (defined(__i386__) || defined(_M_IX86) || \
|
|
|
|
defined(__x86_64__) || defined(_M_X64)) && \
|
|
|
|
(defined(__GNUC__) || defined(__clang__) || defined(_MSC_VER))
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#define bool int
|
|
|
|
#define true 1
|
|
|
|
#define false 0
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#include <intrin.h>
|
|
|
|
#endif
|
|
|
|
|
2017-04-08 00:54:32 +08:00
|
|
|
#ifndef __has_attribute
|
|
|
|
#define __has_attribute(attr) 0
|
|
|
|
#endif
|
|
|
|
|
2016-07-15 06:02:35 +08:00
|
|
|
enum VendorSignatures {
|
|
|
|
SIG_INTEL = 0x756e6547 /* Genu */,
|
|
|
|
SIG_AMD = 0x68747541 /* Auth */
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ProcessorVendors {
|
|
|
|
VENDOR_INTEL = 1,
|
|
|
|
VENDOR_AMD,
|
|
|
|
VENDOR_OTHER,
|
|
|
|
VENDOR_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ProcessorTypes {
|
2017-07-13 10:56:24 +08:00
|
|
|
INTEL_BONNELL = 1,
|
2016-07-15 06:02:35 +08:00
|
|
|
INTEL_CORE2,
|
|
|
|
INTEL_COREI7,
|
|
|
|
AMDFAM10H,
|
|
|
|
AMDFAM15H,
|
2017-07-13 10:56:24 +08:00
|
|
|
INTEL_SILVERMONT,
|
|
|
|
INTEL_KNL,
|
|
|
|
AMD_BTVER1,
|
|
|
|
AMD_BTVER2,
|
2017-07-11 01:30:20 +08:00
|
|
|
AMDFAM17H,
|
2017-10-12 04:35:43 +08:00
|
|
|
INTEL_KNM,
|
2016-07-15 06:02:35 +08:00
|
|
|
CPU_TYPE_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ProcessorSubtypes {
|
|
|
|
INTEL_COREI7_NEHALEM = 1,
|
|
|
|
INTEL_COREI7_WESTMERE,
|
|
|
|
INTEL_COREI7_SANDYBRIDGE,
|
|
|
|
AMDFAM10H_BARCELONA,
|
|
|
|
AMDFAM10H_SHANGHAI,
|
|
|
|
AMDFAM10H_ISTANBUL,
|
|
|
|
AMDFAM15H_BDVER1,
|
|
|
|
AMDFAM15H_BDVER2,
|
2017-07-13 10:56:24 +08:00
|
|
|
AMDFAM15H_BDVER3,
|
|
|
|
AMDFAM15H_BDVER4,
|
|
|
|
AMDFAM17H_ZNVER1,
|
2016-07-15 06:02:35 +08:00
|
|
|
INTEL_COREI7_IVYBRIDGE,
|
|
|
|
INTEL_COREI7_HASWELL,
|
|
|
|
INTEL_COREI7_BROADWELL,
|
|
|
|
INTEL_COREI7_SKYLAKE,
|
|
|
|
INTEL_COREI7_SKYLAKE_AVX512,
|
2017-11-19 08:46:21 +08:00
|
|
|
INTEL_COREI7_CANNONLAKE,
|
2016-07-15 06:02:35 +08:00
|
|
|
CPU_SUBTYPE_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ProcessorFeatures {
|
|
|
|
FEATURE_CMOV = 0,
|
|
|
|
FEATURE_MMX,
|
|
|
|
FEATURE_POPCNT,
|
|
|
|
FEATURE_SSE,
|
|
|
|
FEATURE_SSE2,
|
|
|
|
FEATURE_SSE3,
|
|
|
|
FEATURE_SSSE3,
|
|
|
|
FEATURE_SSE4_1,
|
|
|
|
FEATURE_SSE4_2,
|
|
|
|
FEATURE_AVX,
|
|
|
|
FEATURE_AVX2,
|
2017-07-13 10:56:24 +08:00
|
|
|
FEATURE_SSE4_A,
|
|
|
|
FEATURE_FMA4,
|
|
|
|
FEATURE_XOP,
|
|
|
|
FEATURE_FMA,
|
|
|
|
FEATURE_AVX512F,
|
|
|
|
FEATURE_BMI,
|
|
|
|
FEATURE_BMI2,
|
|
|
|
FEATURE_AES,
|
|
|
|
FEATURE_PCLMUL,
|
|
|
|
FEATURE_AVX512VL,
|
|
|
|
FEATURE_AVX512BW,
|
|
|
|
FEATURE_AVX512DQ,
|
|
|
|
FEATURE_AVX512CD,
|
|
|
|
FEATURE_AVX512ER,
|
|
|
|
FEATURE_AVX512PF,
|
|
|
|
FEATURE_AVX512VBMI,
|
|
|
|
FEATURE_AVX512IFMA,
|
|
|
|
FEATURE_AVX5124VNNIW,
|
|
|
|
FEATURE_AVX5124FMAPS,
|
|
|
|
FEATURE_AVX512VPOPCNTDQ
|
2016-07-15 06:02:35 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// The check below for i386 was copied from clang's cpuid.h (__get_cpuid_max).
|
|
|
|
// Check motivated by bug reports for OpenSSL crashing on CPUs without CPUID
|
|
|
|
// support. Consequently, for i386, the presence of CPUID is checked first
|
|
|
|
// via the corresponding eflags bit.
|
|
|
|
static bool isCpuIdSupported() {
|
|
|
|
#if defined(__GNUC__) || defined(__clang__)
|
|
|
|
#if defined(__i386__)
|
|
|
|
int __cpuid_supported;
|
2016-07-18 07:45:55 +08:00
|
|
|
__asm__(" pushfl\n"
|
|
|
|
" popl %%eax\n"
|
|
|
|
" movl %%eax,%%ecx\n"
|
|
|
|
" xorl $0x00200000,%%eax\n"
|
|
|
|
" pushl %%eax\n"
|
|
|
|
" popfl\n"
|
|
|
|
" pushfl\n"
|
|
|
|
" popl %%eax\n"
|
|
|
|
" movl $0,%0\n"
|
|
|
|
" cmpl %%eax,%%ecx\n"
|
|
|
|
" je 1f\n"
|
|
|
|
" movl $1,%0\n"
|
|
|
|
"1:"
|
|
|
|
: "=r"(__cpuid_supported)
|
|
|
|
:
|
|
|
|
: "eax", "ecx");
|
2016-07-15 06:02:35 +08:00
|
|
|
if (!__cpuid_supported)
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This code is copied from lib/Support/Host.cpp.
|
|
|
|
// Changes to either file should be mirrored in the other.
|
|
|
|
|
|
|
|
/// getX86CpuIDAndInfo - Execute the specified cpuid and return the 4 values in
|
|
|
|
/// the specified arguments. If we can't run cpuid on the host, return true.
|
2017-07-11 01:30:20 +08:00
|
|
|
static bool getX86CpuIDAndInfo(unsigned value, unsigned *rEAX, unsigned *rEBX,
|
2016-07-15 06:02:35 +08:00
|
|
|
unsigned *rECX, unsigned *rEDX) {
|
|
|
|
#if defined(__GNUC__) || defined(__clang__)
|
|
|
|
#if defined(__x86_64__)
|
2017-07-11 01:30:20 +08:00
|
|
|
// gcc doesn't know cpuid would clobber ebx/rbx. Preserve it manually.
|
2017-07-11 01:47:23 +08:00
|
|
|
// FIXME: should we save this for Clang?
|
2016-07-18 07:45:55 +08:00
|
|
|
__asm__("movq\t%%rbx, %%rsi\n\t"
|
|
|
|
"cpuid\n\t"
|
|
|
|
"xchgq\t%%rbx, %%rsi\n\t"
|
|
|
|
: "=a"(*rEAX), "=S"(*rEBX), "=c"(*rECX), "=d"(*rEDX)
|
|
|
|
: "a"(value));
|
2017-07-11 01:47:23 +08:00
|
|
|
return false;
|
2016-07-15 06:02:35 +08:00
|
|
|
#elif defined(__i386__)
|
2016-07-18 07:45:55 +08:00
|
|
|
__asm__("movl\t%%ebx, %%esi\n\t"
|
|
|
|
"cpuid\n\t"
|
|
|
|
"xchgl\t%%ebx, %%esi\n\t"
|
|
|
|
: "=a"(*rEAX), "=S"(*rEBX), "=c"(*rECX), "=d"(*rEDX)
|
|
|
|
: "a"(value));
|
2017-07-11 01:47:23 +08:00
|
|
|
return false;
|
2016-07-15 06:02:35 +08:00
|
|
|
#else
|
2017-07-11 01:47:23 +08:00
|
|
|
return true;
|
2016-07-15 06:02:35 +08:00
|
|
|
#endif
|
|
|
|
#elif defined(_MSC_VER)
|
|
|
|
// The MSVC intrinsic is portable across x86 and x64.
|
|
|
|
int registers[4];
|
|
|
|
__cpuid(registers, value);
|
|
|
|
*rEAX = registers[0];
|
|
|
|
*rEBX = registers[1];
|
|
|
|
*rECX = registers[2];
|
|
|
|
*rEDX = registers[3];
|
2017-07-11 01:30:20 +08:00
|
|
|
return false;
|
2016-07-15 06:02:35 +08:00
|
|
|
#else
|
2017-07-11 01:30:20 +08:00
|
|
|
return true;
|
2016-07-15 06:02:35 +08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getX86CpuIDAndInfoEx - Execute the specified cpuid with subleaf and return
|
|
|
|
/// the 4 values in the specified arguments. If we can't run cpuid on the host,
|
|
|
|
/// return true.
|
2017-07-11 01:30:20 +08:00
|
|
|
static bool getX86CpuIDAndInfoEx(unsigned value, unsigned subleaf,
|
2016-07-15 06:02:35 +08:00
|
|
|
unsigned *rEAX, unsigned *rEBX, unsigned *rECX,
|
|
|
|
unsigned *rEDX) {
|
|
|
|
#if defined(__GNUC__) || defined(__clang__)
|
2017-07-19 13:11:20 +08:00
|
|
|
#if defined(__x86_64__)
|
2016-07-15 06:02:35 +08:00
|
|
|
// gcc doesn't know cpuid would clobber ebx/rbx. Preserve it manually.
|
|
|
|
// FIXME: should we save this for Clang?
|
2016-07-18 07:45:55 +08:00
|
|
|
__asm__("movq\t%%rbx, %%rsi\n\t"
|
|
|
|
"cpuid\n\t"
|
|
|
|
"xchgq\t%%rbx, %%rsi\n\t"
|
|
|
|
: "=a"(*rEAX), "=S"(*rEBX), "=c"(*rECX), "=d"(*rEDX)
|
|
|
|
: "a"(value), "c"(subleaf));
|
2017-07-11 01:47:23 +08:00
|
|
|
return false;
|
2017-07-19 13:11:20 +08:00
|
|
|
#elif defined(__i386__)
|
2016-07-18 07:45:55 +08:00
|
|
|
__asm__("movl\t%%ebx, %%esi\n\t"
|
|
|
|
"cpuid\n\t"
|
|
|
|
"xchgl\t%%ebx, %%esi\n\t"
|
|
|
|
: "=a"(*rEAX), "=S"(*rEBX), "=c"(*rECX), "=d"(*rEDX)
|
|
|
|
: "a"(value), "c"(subleaf));
|
2017-07-11 01:47:23 +08:00
|
|
|
return false;
|
2016-07-15 06:02:35 +08:00
|
|
|
#else
|
2017-07-11 01:47:23 +08:00
|
|
|
return true;
|
2017-07-11 01:30:20 +08:00
|
|
|
#endif
|
2017-07-19 13:11:20 +08:00
|
|
|
#elif defined(_MSC_VER)
|
|
|
|
int registers[4];
|
|
|
|
__cpuidex(registers, value, subleaf);
|
|
|
|
*rEAX = registers[0];
|
|
|
|
*rEBX = registers[1];
|
|
|
|
*rECX = registers[2];
|
|
|
|
*rEDX = registers[3];
|
|
|
|
return false;
|
2017-07-11 01:30:20 +08:00
|
|
|
#else
|
|
|
|
return true;
|
2016-07-15 06:02:35 +08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read control register 0 (XCR0). Used to detect features such as AVX.
|
|
|
|
static bool getX86XCR0(unsigned *rEAX, unsigned *rEDX) {
|
|
|
|
#if defined(__GNUC__) || defined(__clang__)
|
|
|
|
// Check xgetbv; this uses a .byte sequence instead of the instruction
|
|
|
|
// directly because older assemblers do not include support for xgetbv and
|
|
|
|
// there is no easy way to conditionally compile based on the assembler used.
|
|
|
|
__asm__(".byte 0x0f, 0x01, 0xd0" : "=a"(*rEAX), "=d"(*rEDX) : "c"(0));
|
|
|
|
return false;
|
|
|
|
#elif defined(_MSC_FULL_VER) && defined(_XCR_XFEATURE_ENABLED_MASK)
|
|
|
|
unsigned long long Result = _xgetbv(_XCR_XFEATURE_ENABLED_MASK);
|
|
|
|
*rEAX = Result;
|
|
|
|
*rEDX = Result >> 32;
|
|
|
|
return false;
|
|
|
|
#else
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void detectX86FamilyModel(unsigned EAX, unsigned *Family,
|
|
|
|
unsigned *Model) {
|
|
|
|
*Family = (EAX >> 8) & 0xf; // Bits 8 - 11
|
|
|
|
*Model = (EAX >> 4) & 0xf; // Bits 4 - 7
|
|
|
|
if (*Family == 6 || *Family == 0xf) {
|
|
|
|
if (*Family == 0xf)
|
|
|
|
// Examine extended family ID if family ID is F.
|
|
|
|
*Family += (EAX >> 20) & 0xff; // Bits 20 - 27
|
|
|
|
// Examine extended model ID if family ID is 6 or F.
|
|
|
|
*Model += ((EAX >> 16) & 0xf) << 4; // Bits 16 - 19
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-11 01:47:23 +08:00
|
|
|
static void
|
|
|
|
getIntelProcessorTypeAndSubtype(unsigned Family, unsigned Model,
|
|
|
|
unsigned Brand_id, unsigned Features,
|
|
|
|
unsigned *Type, unsigned *Subtype) {
|
2016-07-15 06:02:35 +08:00
|
|
|
if (Brand_id != 0)
|
|
|
|
return;
|
|
|
|
switch (Family) {
|
|
|
|
case 6:
|
|
|
|
switch (Model) {
|
|
|
|
case 0x0f: // Intel Core 2 Duo processor, Intel Core 2 Duo mobile
|
|
|
|
// processor, Intel Core 2 Quad processor, Intel Core 2 Quad
|
|
|
|
// mobile processor, Intel Core 2 Extreme processor, Intel
|
|
|
|
// Pentium Dual-Core processor, Intel Xeon processor, model
|
|
|
|
// 0Fh. All processors are manufactured using the 65 nm process.
|
|
|
|
case 0x16: // Intel Celeron processor model 16h. All processors are
|
|
|
|
// manufactured using the 65 nm process
|
|
|
|
case 0x17: // Intel Core 2 Extreme processor, Intel Xeon processor, model
|
|
|
|
// 17h. All processors are manufactured using the 45 nm process.
|
|
|
|
//
|
|
|
|
// 45nm: Penryn , Wolfdale, Yorkfield (XE)
|
|
|
|
case 0x1d: // Intel Xeon processor MP. All processors are manufactured using
|
|
|
|
// the 45 nm process.
|
|
|
|
*Type = INTEL_CORE2; // "penryn"
|
|
|
|
break;
|
|
|
|
case 0x1a: // Intel Core i7 processor and Intel Xeon processor. All
|
|
|
|
// processors are manufactured using the 45 nm process.
|
|
|
|
case 0x1e: // Intel(R) Core(TM) i7 CPU 870 @ 2.93GHz.
|
|
|
|
// As found in a Summer 2010 model iMac.
|
|
|
|
case 0x1f:
|
2017-07-11 01:47:23 +08:00
|
|
|
case 0x2e: // Nehalem EX
|
2016-07-15 06:02:35 +08:00
|
|
|
*Type = INTEL_COREI7; // "nehalem"
|
|
|
|
*Subtype = INTEL_COREI7_NEHALEM;
|
|
|
|
break;
|
|
|
|
case 0x25: // Intel Core i7, laptop version.
|
|
|
|
case 0x2c: // Intel Core i7 processor and Intel Xeon processor. All
|
|
|
|
// processors are manufactured using the 32 nm process.
|
|
|
|
case 0x2f: // Westmere EX
|
|
|
|
*Type = INTEL_COREI7; // "westmere"
|
|
|
|
*Subtype = INTEL_COREI7_WESTMERE;
|
|
|
|
break;
|
|
|
|
case 0x2a: // Intel Core i7 processor. All processors are manufactured
|
|
|
|
// using the 32 nm process.
|
|
|
|
case 0x2d:
|
|
|
|
*Type = INTEL_COREI7; //"sandybridge"
|
|
|
|
*Subtype = INTEL_COREI7_SANDYBRIDGE;
|
|
|
|
break;
|
|
|
|
case 0x3a:
|
2017-07-11 01:47:23 +08:00
|
|
|
case 0x3e: // Ivy Bridge EP
|
2016-07-15 06:02:35 +08:00
|
|
|
*Type = INTEL_COREI7; // "ivybridge"
|
|
|
|
*Subtype = INTEL_COREI7_IVYBRIDGE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
// Haswell:
|
|
|
|
case 0x3c:
|
|
|
|
case 0x3f:
|
|
|
|
case 0x45:
|
|
|
|
case 0x46:
|
|
|
|
*Type = INTEL_COREI7; // "haswell"
|
|
|
|
*Subtype = INTEL_COREI7_HASWELL;
|
|
|
|
break;
|
|
|
|
|
|
|
|
// Broadwell:
|
|
|
|
case 0x3d:
|
|
|
|
case 0x47:
|
|
|
|
case 0x4f:
|
|
|
|
case 0x56:
|
|
|
|
*Type = INTEL_COREI7; // "broadwell"
|
|
|
|
*Subtype = INTEL_COREI7_BROADWELL;
|
|
|
|
break;
|
|
|
|
|
|
|
|
// Skylake:
|
2017-07-11 01:30:20 +08:00
|
|
|
case 0x4e: // Skylake mobile
|
|
|
|
case 0x5e: // Skylake desktop
|
|
|
|
case 0x8e: // Kaby Lake mobile
|
|
|
|
case 0x9e: // Kaby Lake desktop
|
2016-07-15 06:02:35 +08:00
|
|
|
*Type = INTEL_COREI7; // "skylake"
|
|
|
|
*Subtype = INTEL_COREI7_SKYLAKE;
|
|
|
|
break;
|
|
|
|
|
2017-07-11 01:30:20 +08:00
|
|
|
// Skylake Xeon:
|
|
|
|
case 0x55:
|
2017-07-11 01:47:23 +08:00
|
|
|
*Type = INTEL_COREI7;
|
2017-07-11 01:30:20 +08:00
|
|
|
*Subtype = INTEL_COREI7_SKYLAKE_AVX512; // "skylake-avx512"
|
|
|
|
break;
|
|
|
|
|
2017-11-19 08:46:21 +08:00
|
|
|
// Cannonlake:
|
|
|
|
case 0x66:
|
|
|
|
*Type = INTEL_COREI7;
|
|
|
|
*Subtype = INTEL_COREI7_CANNONLAKE; // "cannonlake"
|
|
|
|
break;
|
|
|
|
|
2016-07-15 06:02:35 +08:00
|
|
|
case 0x1c: // Most 45 nm Intel Atom processors
|
|
|
|
case 0x26: // 45 nm Atom Lincroft
|
|
|
|
case 0x27: // 32 nm Atom Medfield
|
|
|
|
case 0x35: // 32 nm Atom Midview
|
|
|
|
case 0x36: // 32 nm Atom Midview
|
2017-07-13 10:56:24 +08:00
|
|
|
*Type = INTEL_BONNELL;
|
2016-07-15 06:02:35 +08:00
|
|
|
break; // "bonnell"
|
|
|
|
|
|
|
|
// Atom Silvermont codes from the Intel software optimization guide.
|
|
|
|
case 0x37:
|
|
|
|
case 0x4a:
|
|
|
|
case 0x4d:
|
|
|
|
case 0x5a:
|
|
|
|
case 0x5d:
|
|
|
|
case 0x4c: // really airmont
|
2017-07-13 10:56:24 +08:00
|
|
|
*Type = INTEL_SILVERMONT;
|
2016-07-15 06:02:35 +08:00
|
|
|
break; // "silvermont"
|
|
|
|
|
|
|
|
case 0x57:
|
2017-07-13 10:56:24 +08:00
|
|
|
*Type = INTEL_KNL; // knl
|
2016-07-15 06:02:35 +08:00
|
|
|
break;
|
|
|
|
|
2017-10-12 04:35:43 +08:00
|
|
|
case 0x85:
|
|
|
|
*Type = INTEL_KNM; // knm
|
|
|
|
break;
|
|
|
|
|
2017-07-13 10:56:24 +08:00
|
|
|
default: // Unknown family 6 CPU.
|
2016-07-15 06:02:35 +08:00
|
|
|
break;
|
2017-07-11 01:47:23 +08:00
|
|
|
break;
|
2016-07-15 06:02:35 +08:00
|
|
|
}
|
|
|
|
default:
|
2017-07-13 10:56:24 +08:00
|
|
|
break; // Unknown.
|
2016-07-15 06:02:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-11 01:30:20 +08:00
|
|
|
static void getAMDProcessorTypeAndSubtype(unsigned Family, unsigned Model,
|
|
|
|
unsigned Features, unsigned *Type,
|
2016-07-15 06:02:35 +08:00
|
|
|
unsigned *Subtype) {
|
|
|
|
// FIXME: this poorly matches the generated SubtargetFeatureKV table. There
|
|
|
|
// appears to be no way to generate the wide variety of AMD-specific targets
|
|
|
|
// from the information returned from CPUID.
|
|
|
|
switch (Family) {
|
|
|
|
case 16:
|
|
|
|
*Type = AMDFAM10H; // "amdfam10"
|
|
|
|
switch (Model) {
|
|
|
|
case 2:
|
|
|
|
*Subtype = AMDFAM10H_BARCELONA;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
*Subtype = AMDFAM10H_SHANGHAI;
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
*Subtype = AMDFAM10H_ISTANBUL;
|
|
|
|
break;
|
|
|
|
}
|
2017-07-11 01:47:23 +08:00
|
|
|
break;
|
2016-07-15 06:02:35 +08:00
|
|
|
case 20:
|
2017-07-13 10:56:24 +08:00
|
|
|
*Type = AMD_BTVER1;
|
2016-07-15 06:02:35 +08:00
|
|
|
break; // "btver1";
|
|
|
|
case 21:
|
|
|
|
*Type = AMDFAM15H;
|
2017-07-11 01:47:23 +08:00
|
|
|
if (Model >= 0x60 && Model <= 0x7f) {
|
2016-07-15 06:02:35 +08:00
|
|
|
*Subtype = AMDFAM15H_BDVER4;
|
2017-07-13 10:56:24 +08:00
|
|
|
break; // "bdver4"; 60h-7Fh: Excavator
|
2016-07-15 06:02:35 +08:00
|
|
|
}
|
|
|
|
if (Model >= 0x30 && Model <= 0x3f) {
|
|
|
|
*Subtype = AMDFAM15H_BDVER3;
|
|
|
|
break; // "bdver3"; 30h-3Fh: Steamroller
|
|
|
|
}
|
[compiler-rt][X86][AMD][Bulldozer] Fix Bulldozer Model 2 detection.
Summary:
The compiler-rt side of D46314
I have discovered an issue by accident.
```
$ lscpu
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
CPU(s): 8
On-line CPU(s) list: 0-7
Thread(s) per core: 2
Core(s) per socket: 4
Socket(s): 1
NUMA node(s): 1
Vendor ID: AuthenticAMD
CPU family: 21
Model: 2
Model name: AMD FX(tm)-8350 Eight-Core Processor
Stepping: 0
CPU MHz: 3584.018
CPU max MHz: 4000.0000
CPU min MHz: 1400.0000
BogoMIPS: 8027.22
Virtualization: AMD-V
L1d cache: 16K
L1i cache: 64K
L2 cache: 2048K
L3 cache: 8192K
NUMA node0 CPU(s): 0-7
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core perfctr_nb cpb hw_pstate vmmcall bmi1 arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
```
So this is model-2 bulldozer AMD CPU.
GCC agrees:
```
$ echo | gcc -E - -march=native -###
<...>
/usr/lib/gcc/x86_64-linux-gnu/7/cc1 -E -quiet -imultiarch x86_64-linux-gnu - "-march=bdver2" -mmmx -mno-3dnow -msse -msse2 -msse3 -mssse3 -msse4a -mcx16 -msahf -mno-movbe -maes -mno-sha -mpclmul -mpopcnt -mabm -mlwp -mfma -mfma4 -mxop -mbmi -mno-sgx -mno-bmi2 -mtbm -mavx -mno-avx2 -msse4.2 -msse4.1 -mlzcnt -mno-rtm -mno-hle -mno-rdrnd -mf16c -mno-fsgsbase -mno-rdseed -mprfchw -mno-adx -mfxsr -mxsave -mno-xsaveopt -mno-avx512f -mno-avx512er -mno-avx512cd -mno-avx512pf -mno-prefetchwt1 -mno-clflushopt -mno-xsavec -mno-xsaves -mno-avx512dq -mno-avx512bw -mno-avx512vl -mno-avx512ifma -mno-avx512vbmi -mno-avx5124fmaps -mno-avx5124vnniw -mno-clwb -mno-mwaitx -mno-clzero -mno-pku -mno-rdpid --param "l1-cache-size=16" --param "l1-cache-line-size=64" --param "l2-cache-size=2048" "-mtune=bdver2"
<...>
```
But clang does not: (look for `bdver1`)
```
$ echo | clang -E - -march=native -###
clang version 7.0.0- (trunk)
Target: x86_64-pc-linux-gnu
Thread model: posix
InstalledDir: /usr/local/bin
"/usr/lib/llvm-7/bin/clang" "-cc1" "-triple" "x86_64-pc-linux-gnu" "-E" "-disable-free" "-disable-llvm-verifier" "-discard-value-names" "-main-file-name" "-" "-mrelocation-model" "static" "-mthread-model" "posix" "-mdisable-fp-elim" "-fmath-errno" "-masm-verbose" "-mconstructor-aliases" "-munwind-tables" "-fuse-init-array" "-target-cpu" "bdver1" "-target-feature" "+sse2" "-target-feature" "+cx16" "-target-feature" "+sahf" "-target-feature" "+tbm" "-target-feature" "-avx512ifma" "-target-feature" "-sha" "-target-feature" "-gfni" "-target-feature" "+fma4" "-target-feature" "-vpclmulqdq" "-target-feature" "+prfchw" "-target-feature" "-bmi2" "-target-feature" "-cldemote" "-target-feature" "-fsgsbase" "-target-feature" "-xsavec" "-target-feature" "+popcnt" "-target-feature" "+aes" "-target-feature" "-avx512bitalg" "-target-feature" "-xsaves" "-target-feature" "-avx512er" "-target-feature" "-avx512vnni" "-target-feature" "-avx512vpopcntdq" "-target-feature" "-clwb" "-target-feature" "-avx512f" "-target-feature" "-clzero" "-target-feature" "-pku" "-target-feature" "+mmx" "-target-feature" "+lwp" "-target-feature" "-rdpid" "-target-feature" "+xop" "-target-feature" "-rdseed" "-target-feature" "-waitpkg" "-target-feature" "-ibt" "-target-feature" "+sse4a" "-target-feature" "-avx512bw" "-target-feature" "-clflushopt" "-target-feature" "+xsave" "-target-feature" "-avx512vbmi2" "-target-feature" "-avx512vl" "-target-feature" "-avx512cd" "-target-feature" "+avx" "-target-feature" "-vaes" "-target-feature" "-rtm" "-target-feature" "+fma" "-target-feature" "+bmi" "-target-feature" "-rdrnd" "-target-feature" "-mwaitx" "-target-feature" "+sse4.1" "-target-feature" "+sse4.2" "-target-feature" "-avx2" "-target-feature" "-wbnoinvd" "-target-feature" "+sse" "-target-feature" "+lzcnt" "-target-feature" "+pclmul" "-target-feature" "-prefetchwt1" "-target-feature" "+f16c" "-target-feature" "+ssse3" "-target-feature" "-sgx" "-target-feature" "-shstk" "-target-feature" "+cmov" "-target-feature" "-avx512vbmi" "-target-feature" "-movbe" "-target-feature" "-xsaveopt" "-target-feature" "-avx512dq" "-target-feature" "-adx" "-target-feature" "-avx512pf" "-target-feature" "+sse3" "-dwarf-column-info" "-debugger-tuning=gdb" "-resource-dir" "/usr/lib/llvm-7/lib/clang/7.0.0" "-internal-isystem" "/usr/local/include" "-internal-isystem" "/usr/lib/llvm-7/lib/clang/7.0.0/include" "-internal-externc-isystem" "/usr/include/x86_64-linux-gnu" "-internal-externc-isystem" "/include" "-internal-externc-isystem" "/usr/include" "-fdebug-compilation-dir" "/build/llvm-build-Clang-release" "-ferror-limit" "19" "-fmessage-length" "271" "-fobjc-runtime=gcc" "-fdiagnostics-show-option" "-fcolor-diagnostics" "-o" "-" "-x" "c" "-"
```
So clang, unlike gcc, considers this to be `bdver1`.
After some digging, i've come across `getAMDProcessorTypeAndSubtype()` in `Host.cpp`.
I have added the following debug printf after the call to that function in `sys::getHostCPUName()`:
```
errs() << "Family " << Family << " Model " << Model << " Type " << Type "\n";
```
Which produced:
```
Family 21 Model 2 Type 5
```
Which matches the `lscpu` output.
As it was pointed in the review by @craig.topper:
>>! In D46314#1084123, @craig.topper wrote:
> I dont' think this is right. Here is what I found on wikipedia. https://en.wikipedia.org/wiki/List_of_AMD_CPU_microarchitectures.
>
> AMD Bulldozer Family 15h - the successor of 10h/K10. Bulldozer is designed for processors in the 10 to 220W category, implementing XOP, FMA4 and CVT16 instruction sets. Orochi was the first design which implemented it. For Bulldozer, CPUID model numbers are 00h and 01h.
> AMD Piledriver Family 15h (2nd-gen) - successor to Bulldozer. CPUID model numbers are 02h (earliest "Vishera" Piledrivers) and 10h-1Fh.
> AMD Steamroller Family 15h (3rd-gen) - third-generation Bulldozer derived core. CPUID model numbers are 30h-3Fh.
> AMD Excavator Family 15h (4th-gen) - fourth-generation Bulldozer derived core. CPUID model numbers are 60h-6Fh, later updated revisions have model numbers 70h-7Fh.
>
>
> So there's a weird exception where model 2 should go with 0x10-0x1f.
Though It does not help that the code can't be tested at the moment.
With this logical change, the `bdver2` is properly detected.
```
$ echo | /build/llvm-build-Clang-release/bin/clang -E - -march=native -###
clang version 7.0.0 (trunk 331249) (llvm/trunk 331256)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /build/llvm-build-Clang-release/bin
"/build/llvm-build-Clang-release/bin/clang-7" "-cc1" "-triple" "x86_64-unknown-linux-gnu" "-E" "-disable-free" "-main-file-name" "-" "-mrelocation-model" "static" "-mthread-model" "posix" "-mdisable-fp-elim" "-fmath-errno" "-masm-verbose" "-mconstructor-aliases" "-munwind-tables" "-fuse-init-array" "-target-cpu" "bdver2" "-target-feature" "+sse2" "-target-feature" "+cx16" "-target-feature" "+sahf" "-target-feature" "+tbm" "-target-feature" "-avx512ifma" "-target-feature" "-sha" "-target-feature" "-gfni" "-target-feature" "+fma4" "-target-feature" "-vpclmulqdq" "-target-feature" "+prfchw" "-target-feature" "-bmi2" "-target-feature" "-cldemote" "-target-feature" "-fsgsbase" "-target-feature" "-xsavec" "-target-feature" "+popcnt" "-target-feature" "+aes" "-target-feature" "-avx512bitalg" "-target-feature" "-movdiri" "-target-feature" "-xsaves" "-target-feature" "-avx512er" "-target-feature" "-avx512vnni" "-target-feature" "-avx512vpopcntdq" "-target-feature" "-clwb" "-target-feature" "-avx512f" "-target-feature" "-clzero" "-target-feature" "-pku" "-target-feature" "+mmx" "-target-feature" "+lwp" "-target-feature" "-rdpid" "-target-feature" "+xop" "-target-feature" "-rdseed" "-target-feature" "-waitpkg" "-target-feature" "-movdir64b" "-target-feature" "-ibt" "-target-feature" "+sse4a" "-target-feature" "-avx512bw" "-target-feature" "-clflushopt" "-target-feature" "+xsave" "-target-feature" "-avx512vbmi2" "-target-feature" "-avx512vl" "-target-feature" "-avx512cd" "-target-feature" "+avx" "-target-feature" "-vaes" "-target-feature" "-rtm" "-target-feature" "+fma" "-target-feature" "+bmi" "-target-feature" "-rdrnd" "-target-feature" "-mwaitx" "-target-feature" "+sse4.1" "-target-feature" "+sse4.2" "-target-feature" "-avx2" "-target-feature" "-wbnoinvd" "-target-feature" "+sse" "-target-feature" "+lzcnt" "-target-feature" "+pclmul" "-target-feature" "-prefetchwt1" "-target-feature" "+f16c" "-target-feature" "+ssse3" "-target-feature" "-sgx" "-target-feature" "-shstk" "-target-feature" "+cmov" "-target-feature" "-avx512vbmi" "-target-feature" "-movbe" "-target-feature" "-xsaveopt" "-target-feature" "-avx512dq" "-target-feature" "-adx" "-target-feature" "-avx512pf" "-target-feature" "+sse3" "-dwarf-column-info" "-debugger-tuning=gdb" "-resource-dir" "/build/llvm-build-Clang-release/lib/clang/7.0.0" "-internal-isystem" "/usr/local/include" "-internal-isystem" "/build/llvm-build-Clang-release/lib/clang/7.0.0/include" "-internal-externc-isystem" "/usr/include/x86_64-linux-gnu" "-internal-externc-isystem" "/include" "-internal-externc-isystem" "/usr/include" "-fdebug-compilation-dir" "/build/llvm-build-Clang-release" "-ferror-limit" "19" "-fmessage-length" "271" "-fobjc-runtime=gcc" "-fdiagnostics-show-option" "-fcolor-diagnostics" "-o" "-" "-x" "c" "-"
```
Reviewers: craig.topper, asbirlea, rnk, GGanesh, andreadb
Reviewed By: craig.topper
Subscribers: sdardis, dberris, aprantl, arichardson, JDevlieghere, #sanitizers, llvm-commits, cfe-commits, craig.topper
Differential Revision: https://reviews.llvm.org/D46323
llvm-svn: 331295
2018-05-02 02:40:15 +08:00
|
|
|
if ((Model >= 0x10 && Model <= 0x1f) || Model == 0x02) {
|
2016-07-15 06:02:35 +08:00
|
|
|
*Subtype = AMDFAM15H_BDVER2;
|
[compiler-rt][X86][AMD][Bulldozer] Fix Bulldozer Model 2 detection.
Summary:
The compiler-rt side of D46314
I have discovered an issue by accident.
```
$ lscpu
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
CPU(s): 8
On-line CPU(s) list: 0-7
Thread(s) per core: 2
Core(s) per socket: 4
Socket(s): 1
NUMA node(s): 1
Vendor ID: AuthenticAMD
CPU family: 21
Model: 2
Model name: AMD FX(tm)-8350 Eight-Core Processor
Stepping: 0
CPU MHz: 3584.018
CPU max MHz: 4000.0000
CPU min MHz: 1400.0000
BogoMIPS: 8027.22
Virtualization: AMD-V
L1d cache: 16K
L1i cache: 64K
L2 cache: 2048K
L3 cache: 8192K
NUMA node0 CPU(s): 0-7
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core perfctr_nb cpb hw_pstate vmmcall bmi1 arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
```
So this is model-2 bulldozer AMD CPU.
GCC agrees:
```
$ echo | gcc -E - -march=native -###
<...>
/usr/lib/gcc/x86_64-linux-gnu/7/cc1 -E -quiet -imultiarch x86_64-linux-gnu - "-march=bdver2" -mmmx -mno-3dnow -msse -msse2 -msse3 -mssse3 -msse4a -mcx16 -msahf -mno-movbe -maes -mno-sha -mpclmul -mpopcnt -mabm -mlwp -mfma -mfma4 -mxop -mbmi -mno-sgx -mno-bmi2 -mtbm -mavx -mno-avx2 -msse4.2 -msse4.1 -mlzcnt -mno-rtm -mno-hle -mno-rdrnd -mf16c -mno-fsgsbase -mno-rdseed -mprfchw -mno-adx -mfxsr -mxsave -mno-xsaveopt -mno-avx512f -mno-avx512er -mno-avx512cd -mno-avx512pf -mno-prefetchwt1 -mno-clflushopt -mno-xsavec -mno-xsaves -mno-avx512dq -mno-avx512bw -mno-avx512vl -mno-avx512ifma -mno-avx512vbmi -mno-avx5124fmaps -mno-avx5124vnniw -mno-clwb -mno-mwaitx -mno-clzero -mno-pku -mno-rdpid --param "l1-cache-size=16" --param "l1-cache-line-size=64" --param "l2-cache-size=2048" "-mtune=bdver2"
<...>
```
But clang does not: (look for `bdver1`)
```
$ echo | clang -E - -march=native -###
clang version 7.0.0- (trunk)
Target: x86_64-pc-linux-gnu
Thread model: posix
InstalledDir: /usr/local/bin
"/usr/lib/llvm-7/bin/clang" "-cc1" "-triple" "x86_64-pc-linux-gnu" "-E" "-disable-free" "-disable-llvm-verifier" "-discard-value-names" "-main-file-name" "-" "-mrelocation-model" "static" "-mthread-model" "posix" "-mdisable-fp-elim" "-fmath-errno" "-masm-verbose" "-mconstructor-aliases" "-munwind-tables" "-fuse-init-array" "-target-cpu" "bdver1" "-target-feature" "+sse2" "-target-feature" "+cx16" "-target-feature" "+sahf" "-target-feature" "+tbm" "-target-feature" "-avx512ifma" "-target-feature" "-sha" "-target-feature" "-gfni" "-target-feature" "+fma4" "-target-feature" "-vpclmulqdq" "-target-feature" "+prfchw" "-target-feature" "-bmi2" "-target-feature" "-cldemote" "-target-feature" "-fsgsbase" "-target-feature" "-xsavec" "-target-feature" "+popcnt" "-target-feature" "+aes" "-target-feature" "-avx512bitalg" "-target-feature" "-xsaves" "-target-feature" "-avx512er" "-target-feature" "-avx512vnni" "-target-feature" "-avx512vpopcntdq" "-target-feature" "-clwb" "-target-feature" "-avx512f" "-target-feature" "-clzero" "-target-feature" "-pku" "-target-feature" "+mmx" "-target-feature" "+lwp" "-target-feature" "-rdpid" "-target-feature" "+xop" "-target-feature" "-rdseed" "-target-feature" "-waitpkg" "-target-feature" "-ibt" "-target-feature" "+sse4a" "-target-feature" "-avx512bw" "-target-feature" "-clflushopt" "-target-feature" "+xsave" "-target-feature" "-avx512vbmi2" "-target-feature" "-avx512vl" "-target-feature" "-avx512cd" "-target-feature" "+avx" "-target-feature" "-vaes" "-target-feature" "-rtm" "-target-feature" "+fma" "-target-feature" "+bmi" "-target-feature" "-rdrnd" "-target-feature" "-mwaitx" "-target-feature" "+sse4.1" "-target-feature" "+sse4.2" "-target-feature" "-avx2" "-target-feature" "-wbnoinvd" "-target-feature" "+sse" "-target-feature" "+lzcnt" "-target-feature" "+pclmul" "-target-feature" "-prefetchwt1" "-target-feature" "+f16c" "-target-feature" "+ssse3" "-target-feature" "-sgx" "-target-feature" "-shstk" "-target-feature" "+cmov" "-target-feature" "-avx512vbmi" "-target-feature" "-movbe" "-target-feature" "-xsaveopt" "-target-feature" "-avx512dq" "-target-feature" "-adx" "-target-feature" "-avx512pf" "-target-feature" "+sse3" "-dwarf-column-info" "-debugger-tuning=gdb" "-resource-dir" "/usr/lib/llvm-7/lib/clang/7.0.0" "-internal-isystem" "/usr/local/include" "-internal-isystem" "/usr/lib/llvm-7/lib/clang/7.0.0/include" "-internal-externc-isystem" "/usr/include/x86_64-linux-gnu" "-internal-externc-isystem" "/include" "-internal-externc-isystem" "/usr/include" "-fdebug-compilation-dir" "/build/llvm-build-Clang-release" "-ferror-limit" "19" "-fmessage-length" "271" "-fobjc-runtime=gcc" "-fdiagnostics-show-option" "-fcolor-diagnostics" "-o" "-" "-x" "c" "-"
```
So clang, unlike gcc, considers this to be `bdver1`.
After some digging, i've come across `getAMDProcessorTypeAndSubtype()` in `Host.cpp`.
I have added the following debug printf after the call to that function in `sys::getHostCPUName()`:
```
errs() << "Family " << Family << " Model " << Model << " Type " << Type "\n";
```
Which produced:
```
Family 21 Model 2 Type 5
```
Which matches the `lscpu` output.
As it was pointed in the review by @craig.topper:
>>! In D46314#1084123, @craig.topper wrote:
> I dont' think this is right. Here is what I found on wikipedia. https://en.wikipedia.org/wiki/List_of_AMD_CPU_microarchitectures.
>
> AMD Bulldozer Family 15h - the successor of 10h/K10. Bulldozer is designed for processors in the 10 to 220W category, implementing XOP, FMA4 and CVT16 instruction sets. Orochi was the first design which implemented it. For Bulldozer, CPUID model numbers are 00h and 01h.
> AMD Piledriver Family 15h (2nd-gen) - successor to Bulldozer. CPUID model numbers are 02h (earliest "Vishera" Piledrivers) and 10h-1Fh.
> AMD Steamroller Family 15h (3rd-gen) - third-generation Bulldozer derived core. CPUID model numbers are 30h-3Fh.
> AMD Excavator Family 15h (4th-gen) - fourth-generation Bulldozer derived core. CPUID model numbers are 60h-6Fh, later updated revisions have model numbers 70h-7Fh.
>
>
> So there's a weird exception where model 2 should go with 0x10-0x1f.
Though It does not help that the code can't be tested at the moment.
With this logical change, the `bdver2` is properly detected.
```
$ echo | /build/llvm-build-Clang-release/bin/clang -E - -march=native -###
clang version 7.0.0 (trunk 331249) (llvm/trunk 331256)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /build/llvm-build-Clang-release/bin
"/build/llvm-build-Clang-release/bin/clang-7" "-cc1" "-triple" "x86_64-unknown-linux-gnu" "-E" "-disable-free" "-main-file-name" "-" "-mrelocation-model" "static" "-mthread-model" "posix" "-mdisable-fp-elim" "-fmath-errno" "-masm-verbose" "-mconstructor-aliases" "-munwind-tables" "-fuse-init-array" "-target-cpu" "bdver2" "-target-feature" "+sse2" "-target-feature" "+cx16" "-target-feature" "+sahf" "-target-feature" "+tbm" "-target-feature" "-avx512ifma" "-target-feature" "-sha" "-target-feature" "-gfni" "-target-feature" "+fma4" "-target-feature" "-vpclmulqdq" "-target-feature" "+prfchw" "-target-feature" "-bmi2" "-target-feature" "-cldemote" "-target-feature" "-fsgsbase" "-target-feature" "-xsavec" "-target-feature" "+popcnt" "-target-feature" "+aes" "-target-feature" "-avx512bitalg" "-target-feature" "-movdiri" "-target-feature" "-xsaves" "-target-feature" "-avx512er" "-target-feature" "-avx512vnni" "-target-feature" "-avx512vpopcntdq" "-target-feature" "-clwb" "-target-feature" "-avx512f" "-target-feature" "-clzero" "-target-feature" "-pku" "-target-feature" "+mmx" "-target-feature" "+lwp" "-target-feature" "-rdpid" "-target-feature" "+xop" "-target-feature" "-rdseed" "-target-feature" "-waitpkg" "-target-feature" "-movdir64b" "-target-feature" "-ibt" "-target-feature" "+sse4a" "-target-feature" "-avx512bw" "-target-feature" "-clflushopt" "-target-feature" "+xsave" "-target-feature" "-avx512vbmi2" "-target-feature" "-avx512vl" "-target-feature" "-avx512cd" "-target-feature" "+avx" "-target-feature" "-vaes" "-target-feature" "-rtm" "-target-feature" "+fma" "-target-feature" "+bmi" "-target-feature" "-rdrnd" "-target-feature" "-mwaitx" "-target-feature" "+sse4.1" "-target-feature" "+sse4.2" "-target-feature" "-avx2" "-target-feature" "-wbnoinvd" "-target-feature" "+sse" "-target-feature" "+lzcnt" "-target-feature" "+pclmul" "-target-feature" "-prefetchwt1" "-target-feature" "+f16c" "-target-feature" "+ssse3" "-target-feature" "-sgx" "-target-feature" "-shstk" "-target-feature" "+cmov" "-target-feature" "-avx512vbmi" "-target-feature" "-movbe" "-target-feature" "-xsaveopt" "-target-feature" "-avx512dq" "-target-feature" "-adx" "-target-feature" "-avx512pf" "-target-feature" "+sse3" "-dwarf-column-info" "-debugger-tuning=gdb" "-resource-dir" "/build/llvm-build-Clang-release/lib/clang/7.0.0" "-internal-isystem" "/usr/local/include" "-internal-isystem" "/build/llvm-build-Clang-release/lib/clang/7.0.0/include" "-internal-externc-isystem" "/usr/include/x86_64-linux-gnu" "-internal-externc-isystem" "/include" "-internal-externc-isystem" "/usr/include" "-fdebug-compilation-dir" "/build/llvm-build-Clang-release" "-ferror-limit" "19" "-fmessage-length" "271" "-fobjc-runtime=gcc" "-fdiagnostics-show-option" "-fcolor-diagnostics" "-o" "-" "-x" "c" "-"
```
Reviewers: craig.topper, asbirlea, rnk, GGanesh, andreadb
Reviewed By: craig.topper
Subscribers: sdardis, dberris, aprantl, arichardson, JDevlieghere, #sanitizers, llvm-commits, cfe-commits, craig.topper
Differential Revision: https://reviews.llvm.org/D46323
llvm-svn: 331295
2018-05-02 02:40:15 +08:00
|
|
|
break; // "bdver2"; 02h, 10h-1Fh: Piledriver
|
2016-07-15 06:02:35 +08:00
|
|
|
}
|
|
|
|
if (Model <= 0x0f) {
|
|
|
|
*Subtype = AMDFAM15H_BDVER1;
|
|
|
|
break; // "bdver1"; 00h-0Fh: Bulldozer
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 22:
|
2017-07-11 01:47:23 +08:00
|
|
|
*Type = AMD_BTVER2;
|
2016-07-15 06:02:35 +08:00
|
|
|
break; // "btver2"
|
2017-07-11 01:30:20 +08:00
|
|
|
case 23:
|
|
|
|
*Type = AMDFAM17H;
|
2017-07-11 01:47:23 +08:00
|
|
|
*Subtype = AMDFAM17H_ZNVER1;
|
2017-07-11 01:30:20 +08:00
|
|
|
break;
|
2016-07-15 06:02:35 +08:00
|
|
|
default:
|
|
|
|
break; // "generic"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-13 10:56:24 +08:00
|
|
|
static void getAvailableFeatures(unsigned ECX, unsigned EDX, unsigned MaxLeaf,
|
|
|
|
unsigned *FeaturesOut) {
|
2016-07-15 06:02:35 +08:00
|
|
|
unsigned Features = 0;
|
2017-07-11 01:30:20 +08:00
|
|
|
unsigned EAX, EBX;
|
2017-07-13 10:56:24 +08:00
|
|
|
|
|
|
|
if ((EDX >> 15) & 1)
|
|
|
|
Features |= 1 << FEATURE_CMOV;
|
|
|
|
if ((EDX >> 23) & 1)
|
|
|
|
Features |= 1 << FEATURE_MMX;
|
|
|
|
if ((EDX >> 25) & 1)
|
|
|
|
Features |= 1 << FEATURE_SSE;
|
|
|
|
if ((EDX >> 26) & 1)
|
|
|
|
Features |= 1 << FEATURE_SSE2;
|
|
|
|
|
|
|
|
if ((ECX >> 0) & 1)
|
|
|
|
Features |= 1 << FEATURE_SSE3;
|
|
|
|
if ((ECX >> 1) & 1)
|
|
|
|
Features |= 1 << FEATURE_PCLMUL;
|
|
|
|
if ((ECX >> 9) & 1)
|
|
|
|
Features |= 1 << FEATURE_SSSE3;
|
|
|
|
if ((ECX >> 12) & 1)
|
|
|
|
Features |= 1 << FEATURE_FMA;
|
|
|
|
if ((ECX >> 19) & 1)
|
|
|
|
Features |= 1 << FEATURE_SSE4_1;
|
|
|
|
if ((ECX >> 20) & 1)
|
|
|
|
Features |= 1 << FEATURE_SSE4_2;
|
|
|
|
if ((ECX >> 23) & 1)
|
|
|
|
Features |= 1 << FEATURE_POPCNT;
|
|
|
|
if ((ECX >> 25) & 1)
|
|
|
|
Features |= 1 << FEATURE_AES;
|
2016-07-15 06:02:35 +08:00
|
|
|
|
|
|
|
// If CPUID indicates support for XSAVE, XRESTORE and AVX, and XGETBV
|
|
|
|
// indicates that the AVX registers will be saved and restored on context
|
|
|
|
// switch, then we have full AVX support.
|
|
|
|
const unsigned AVXBits = (1 << 27) | (1 << 28);
|
|
|
|
bool HasAVX = ((ECX & AVXBits) == AVXBits) && !getX86XCR0(&EAX, &EDX) &&
|
|
|
|
((EAX & 0x6) == 0x6);
|
|
|
|
bool HasAVX512Save = HasAVX && ((EAX & 0xe0) == 0xe0);
|
2017-07-13 10:56:24 +08:00
|
|
|
|
|
|
|
if (HasAVX)
|
|
|
|
Features |= 1 << FEATURE_AVX;
|
|
|
|
|
2017-07-11 01:47:23 +08:00
|
|
|
bool HasLeaf7 =
|
|
|
|
MaxLeaf >= 0x7 && !getX86CpuIDAndInfoEx(0x7, 0x0, &EAX, &EBX, &ECX, &EDX);
|
2017-07-13 10:56:24 +08:00
|
|
|
|
|
|
|
if (HasLeaf7 && ((EBX >> 3) & 1))
|
|
|
|
Features |= 1 << FEATURE_BMI;
|
|
|
|
if (HasLeaf7 && ((EBX >> 5) & 1) && HasAVX)
|
|
|
|
Features |= 1 << FEATURE_AVX2;
|
|
|
|
if (HasLeaf7 && ((EBX >> 9) & 1))
|
|
|
|
Features |= 1 << FEATURE_BMI2;
|
|
|
|
if (HasLeaf7 && ((EBX >> 16) & 1) && HasAVX512Save)
|
|
|
|
Features |= 1 << FEATURE_AVX512F;
|
|
|
|
if (HasLeaf7 && ((EBX >> 17) & 1) && HasAVX512Save)
|
|
|
|
Features |= 1 << FEATURE_AVX512DQ;
|
|
|
|
if (HasLeaf7 && ((EBX >> 21) & 1) && HasAVX512Save)
|
|
|
|
Features |= 1 << FEATURE_AVX512IFMA;
|
|
|
|
if (HasLeaf7 && ((EBX >> 26) & 1) && HasAVX512Save)
|
|
|
|
Features |= 1 << FEATURE_AVX512PF;
|
|
|
|
if (HasLeaf7 && ((EBX >> 27) & 1) && HasAVX512Save)
|
|
|
|
Features |= 1 << FEATURE_AVX512ER;
|
|
|
|
if (HasLeaf7 && ((EBX >> 28) & 1) && HasAVX512Save)
|
|
|
|
Features |= 1 << FEATURE_AVX512CD;
|
|
|
|
if (HasLeaf7 && ((EBX >> 30) & 1) && HasAVX512Save)
|
|
|
|
Features |= 1 << FEATURE_AVX512BW;
|
|
|
|
if (HasLeaf7 && ((EBX >> 31) & 1) && HasAVX512Save)
|
|
|
|
Features |= 1 << FEATURE_AVX512VL;
|
|
|
|
|
|
|
|
if (HasLeaf7 && ((ECX >> 1) & 1) && HasAVX512Save)
|
|
|
|
Features |= 1 << FEATURE_AVX512VBMI;
|
|
|
|
if (HasLeaf7 && ((ECX >> 14) & 1) && HasAVX512Save)
|
|
|
|
Features |= 1 << FEATURE_AVX512VPOPCNTDQ;
|
|
|
|
|
|
|
|
if (HasLeaf7 && ((EDX >> 2) & 1) && HasAVX512Save)
|
|
|
|
Features |= 1 << FEATURE_AVX5124VNNIW;
|
|
|
|
if (HasLeaf7 && ((EDX >> 3) & 1) && HasAVX512Save)
|
|
|
|
Features |= 1 << FEATURE_AVX5124FMAPS;
|
2016-07-15 06:02:35 +08:00
|
|
|
|
2017-07-11 01:30:20 +08:00
|
|
|
unsigned MaxExtLevel;
|
|
|
|
getX86CpuIDAndInfo(0x80000000, &MaxExtLevel, &EBX, &ECX, &EDX);
|
|
|
|
|
|
|
|
bool HasExtLeaf1 = MaxExtLevel >= 0x80000001 &&
|
|
|
|
!getX86CpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
|
2017-07-13 10:56:24 +08:00
|
|
|
if (HasExtLeaf1 && ((ECX >> 6) & 1))
|
|
|
|
Features |= 1 << FEATURE_SSE4_A;
|
|
|
|
if (HasExtLeaf1 && ((ECX >> 11) & 1))
|
|
|
|
Features |= 1 << FEATURE_XOP;
|
|
|
|
if (HasExtLeaf1 && ((ECX >> 16) & 1))
|
|
|
|
Features |= 1 << FEATURE_FMA4;
|
|
|
|
|
|
|
|
*FeaturesOut = Features;
|
2016-07-15 06:02:35 +08:00
|
|
|
}
|
|
|
|
|
2017-04-08 00:54:32 +08:00
|
|
|
#if defined(HAVE_INIT_PRIORITY)
|
|
|
|
#define CONSTRUCTOR_ATTRIBUTE __attribute__((__constructor__ 101))
|
|
|
|
#elif __has_attribute(__constructor__)
|
|
|
|
#define CONSTRUCTOR_ATTRIBUTE __attribute__((__constructor__))
|
2016-07-15 06:02:35 +08:00
|
|
|
#else
|
2017-04-08 00:54:32 +08:00
|
|
|
// FIXME: For MSVC, we should make a function pointer global in .CRT$X?? so that
|
|
|
|
// this runs during initialization.
|
|
|
|
#define CONSTRUCTOR_ATTRIBUTE
|
2016-07-15 06:02:35 +08:00
|
|
|
#endif
|
|
|
|
|
2017-04-08 00:54:32 +08:00
|
|
|
int __cpu_indicator_init(void) CONSTRUCTOR_ATTRIBUTE;
|
2016-07-15 06:02:35 +08:00
|
|
|
|
|
|
|
struct __processor_model {
|
|
|
|
unsigned int __cpu_vendor;
|
|
|
|
unsigned int __cpu_type;
|
|
|
|
unsigned int __cpu_subtype;
|
|
|
|
unsigned int __cpu_features[1];
|
|
|
|
} __cpu_model = {0, 0, 0, {0}};
|
|
|
|
|
|
|
|
/* A constructor function that is sets __cpu_model and __cpu_features with
|
|
|
|
the right values. This needs to run only once. This constructor is
|
|
|
|
given the highest priority and it should run before constructors without
|
|
|
|
the priority set. However, it still runs after ifunc initializers and
|
|
|
|
needs to be called explicitly there. */
|
|
|
|
|
2017-04-08 00:54:32 +08:00
|
|
|
int CONSTRUCTOR_ATTRIBUTE
|
2016-07-15 06:02:35 +08:00
|
|
|
__cpu_indicator_init(void) {
|
2017-07-11 01:30:20 +08:00
|
|
|
unsigned EAX, EBX, ECX, EDX;
|
|
|
|
unsigned MaxLeaf = 5;
|
|
|
|
unsigned Vendor;
|
|
|
|
unsigned Model, Family, Brand_id;
|
|
|
|
unsigned Features = 0;
|
2016-07-15 06:02:35 +08:00
|
|
|
|
|
|
|
/* This function needs to run just once. */
|
|
|
|
if (__cpu_model.__cpu_vendor)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!isCpuIdSupported())
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Assume cpuid insn present. Run in level 0 to get vendor id. */
|
2017-07-11 01:30:20 +08:00
|
|
|
if (getX86CpuIDAndInfo(0, &MaxLeaf, &Vendor, &ECX, &EDX) || MaxLeaf < 1) {
|
2016-07-15 06:02:35 +08:00
|
|
|
__cpu_model.__cpu_vendor = VENDOR_OTHER;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
getX86CpuIDAndInfo(1, &EAX, &EBX, &ECX, &EDX);
|
|
|
|
detectX86FamilyModel(EAX, &Family, &Model);
|
|
|
|
Brand_id = EBX & 0xff;
|
|
|
|
|
|
|
|
/* Find available features. */
|
2017-07-13 10:56:24 +08:00
|
|
|
getAvailableFeatures(ECX, EDX, MaxLeaf, &Features);
|
2016-07-15 06:02:35 +08:00
|
|
|
__cpu_model.__cpu_features[0] = Features;
|
|
|
|
|
|
|
|
if (Vendor == SIG_INTEL) {
|
|
|
|
/* Get CPU type. */
|
|
|
|
getIntelProcessorTypeAndSubtype(Family, Model, Brand_id, Features,
|
|
|
|
&(__cpu_model.__cpu_type),
|
|
|
|
&(__cpu_model.__cpu_subtype));
|
|
|
|
__cpu_model.__cpu_vendor = VENDOR_INTEL;
|
|
|
|
} else if (Vendor == SIG_AMD) {
|
|
|
|
/* Get CPU type. */
|
|
|
|
getAMDProcessorTypeAndSubtype(Family, Model, Features,
|
|
|
|
&(__cpu_model.__cpu_type),
|
|
|
|
&(__cpu_model.__cpu_subtype));
|
|
|
|
__cpu_model.__cpu_vendor = VENDOR_AMD;
|
|
|
|
} else
|
|
|
|
__cpu_model.__cpu_vendor = VENDOR_OTHER;
|
|
|
|
|
|
|
|
assert(__cpu_model.__cpu_vendor < VENDOR_MAX);
|
|
|
|
assert(__cpu_model.__cpu_type < CPU_TYPE_MAX);
|
|
|
|
assert(__cpu_model.__cpu_subtype < CPU_SUBTYPE_MAX);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|