blob: 66207a1e0b8b0539b99a72b85435936f847803bb [file] [log] [blame]
jbauman@chromium.orgd07e3bd2012-03-31 16:08:53 +09001// Copyright (c) 2012 The Chromium Authors. All rights reserved.
maruel@google.com8178de22008-09-26 07:08:44 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "base/cpu.h"
jiesun@chromium.orgc8420402011-02-17 03:51:58 +09006
jbauman@chromium.orgd07e3bd2012-03-31 16:08:53 +09007#include <string.h>
8
chunyang.dai@intel.com94d8f282012-10-05 06:05:23 +09009#include <algorithm>
10
agl@chromium.orga3f13f52013-11-23 03:35:03 +090011#include "base/basictypes.h"
jbauman@chromium.orgd07e3bd2012-03-31 16:08:53 +090012#include "build/build_config.h"
13
jiesun@chromium.orgc8420402011-02-17 03:51:58 +090014#if defined(ARCH_CPU_X86_FAMILY)
15#if defined(_MSC_VER)
maruel@google.com8178de22008-09-26 07:08:44 +090016#include <intrin.h>
agl@chromium.orga3f13f52013-11-23 03:35:03 +090017#include <immintrin.h> // For _xgetbv()
jiesun@chromium.orgc8420402011-02-17 03:51:58 +090018#endif
19#endif
20
maruel@google.com8178de22008-09-26 07:08:44 +090021namespace base {
22
23CPU::CPU()
simonjam@chromium.org7bf2f7b2013-07-18 20:13:28 +090024 : signature_(0),
25 type_(0),
maruel@google.com8178de22008-09-26 07:08:44 +090026 family_(0),
27 model_(0),
28 stepping_(0),
29 ext_model_(0),
30 ext_family_(0),
jiesun@chromium.orgc8420402011-02-17 03:51:58 +090031 has_mmx_(false),
32 has_sse_(false),
33 has_sse2_(false),
34 has_sse3_(false),
35 has_ssse3_(false),
36 has_sse41_(false),
37 has_sse42_(false),
agl@chromium.orga3f13f52013-11-23 03:35:03 +090038 has_avx_(false),
39 has_avx_hardware_(false),
agl@chromium.orgabda8512013-12-03 01:15:03 +090040 has_aesni_(false),
simonjam@chromium.orge50c7cb2013-05-01 04:46:05 +090041 has_non_stop_time_stamp_counter_(false),
maruel@google.com8178de22008-09-26 07:08:44 +090042 cpu_vendor_("unknown") {
43 Initialize();
44}
45
agl@chromium.orga3f13f52013-11-23 03:35:03 +090046namespace {
47
jiesun@chromium.orgc8420402011-02-17 03:51:58 +090048#if defined(ARCH_CPU_X86_FAMILY)
49#ifndef _MSC_VER
50
51#if defined(__pic__) && defined(__i386__)
52
53void __cpuid(int cpu_info[4], int info_type) {
54 __asm__ volatile (
55 "mov %%ebx, %%edi\n"
56 "cpuid\n"
57 "xchg %%edi, %%ebx\n"
58 : "=a"(cpu_info[0]), "=D"(cpu_info[1]), "=c"(cpu_info[2]), "=d"(cpu_info[3])
59 : "a"(info_type)
60 );
61}
62
jiesun@chromium.orgc8420402011-02-17 03:51:58 +090063#else
64
65void __cpuid(int cpu_info[4], int info_type) {
66 __asm__ volatile (
67 "cpuid \n\t"
68 : "=a"(cpu_info[0]), "=b"(cpu_info[1]), "=c"(cpu_info[2]), "=d"(cpu_info[3])
69 : "a"(info_type)
70 );
71}
72
agl@chromium.orga3f13f52013-11-23 03:35:03 +090073#endif
74
75// _xgetbv returns the value of an Intel Extended Control Register (XCR).
76// Currently only XCR0 is defined by Intel so |xcr| should always be zero.
77uint64 _xgetbv(uint32 xcr) {
78 uint32 eax, edx;
79
80 __asm__ volatile ("xgetbv" : "=a" (eax), "=d" (edx) : "c" (xcr));
81 return (static_cast<uint64>(edx) << 32) | eax;
jiesun@chromium.orgc8420402011-02-17 03:51:58 +090082}
83
agl@chromium.orga3f13f52013-11-23 03:35:03 +090084#endif // !_MSC_VER
jiesun@chromium.orgc8420402011-02-17 03:51:58 +090085#endif // ARCH_CPU_X86_FAMILY
86
agl@chromium.orga3f13f52013-11-23 03:35:03 +090087} // anonymous namespace
88
maruel@google.com8178de22008-09-26 07:08:44 +090089void CPU::Initialize() {
jiesun@chromium.orgc8420402011-02-17 03:51:58 +090090#if defined(ARCH_CPU_X86_FAMILY)
maruel@google.com8178de22008-09-26 07:08:44 +090091 int cpu_info[4] = {-1};
chunyang.dai@intel.com94d8f282012-10-05 06:05:23 +090092 char cpu_string[48];
maruel@google.com8178de22008-09-26 07:08:44 +090093
94 // __cpuid with an InfoType argument of 0 returns the number of
95 // valid Ids in CPUInfo[0] and the CPU identification string in
96 // the other three array elements. The CPU identification string is
maruel@chromium.org8fe7adc2009-03-04 00:01:12 +090097 // not in linear order. The code below arranges the information
chunyang.dai@intel.com94d8f282012-10-05 06:05:23 +090098 // in a human readable form. The human readable order is CPUInfo[1] |
99 // CPUInfo[3] | CPUInfo[2]. CPUInfo[2] and CPUInfo[3] are swapped
100 // before using memcpy to copy these three array elements to cpu_string.
maruel@google.com8178de22008-09-26 07:08:44 +0900101 __cpuid(cpu_info, 0);
102 int num_ids = cpu_info[0];
chunyang.dai@intel.com94d8f282012-10-05 06:05:23 +0900103 std::swap(cpu_info[2], cpu_info[3]);
104 memcpy(cpu_string, &cpu_info[1], 3 * sizeof(cpu_info[1]));
105 cpu_vendor_.assign(cpu_string, 3 * sizeof(cpu_info[1]));
maruel@google.com8178de22008-09-26 07:08:44 +0900106
107 // Interpret CPU feature information.
mbelshe@google.com4591e482008-09-27 08:26:34 +0900108 if (num_ids > 0) {
109 __cpuid(cpu_info, 1);
simonjam@chromium.org7bf2f7b2013-07-18 20:13:28 +0900110 signature_ = cpu_info[0];
mbelshe@google.com4591e482008-09-27 08:26:34 +0900111 stepping_ = cpu_info[0] & 0xf;
jiesun@chromium.orgc8420402011-02-17 03:51:58 +0900112 model_ = ((cpu_info[0] >> 4) & 0xf) + ((cpu_info[0] >> 12) & 0xf0);
mbelshe@google.com4591e482008-09-27 08:26:34 +0900113 family_ = (cpu_info[0] >> 8) & 0xf;
114 type_ = (cpu_info[0] >> 12) & 0x3;
115 ext_model_ = (cpu_info[0] >> 16) & 0xf;
116 ext_family_ = (cpu_info[0] >> 20) & 0xff;
agl@chromium.orga3f13f52013-11-23 03:35:03 +0900117 has_mmx_ = (cpu_info[3] & 0x00800000) != 0;
118 has_sse_ = (cpu_info[3] & 0x02000000) != 0;
119 has_sse2_ = (cpu_info[3] & 0x04000000) != 0;
120 has_sse3_ = (cpu_info[2] & 0x00000001) != 0;
jiesun@chromium.orgc8420402011-02-17 03:51:58 +0900121 has_ssse3_ = (cpu_info[2] & 0x00000200) != 0;
122 has_sse41_ = (cpu_info[2] & 0x00080000) != 0;
123 has_sse42_ = (cpu_info[2] & 0x00100000) != 0;
agl@chromium.orga3f13f52013-11-23 03:35:03 +0900124 has_avx_hardware_ =
125 (cpu_info[2] & 0x10000000) != 0;
126 // AVX instructions will generate an illegal instruction exception unless
127 // a) they are supported by the CPU,
128 // b) XSAVE is supported by the CPU and
129 // c) XSAVE is enabled by the kernel.
130 // See http://software.intel.com/en-us/blogs/2011/04/14/is-avx-enabled
131 has_avx_ =
132 has_avx_hardware_ &&
133 (cpu_info[2] & 0x08000000) != 0 /* OSXSAVE */ &&
134 (_xgetbv(0) & 6) == 6 /* XSAVE enabled by kernel */;
agl@chromium.orgabda8512013-12-03 01:15:03 +0900135 has_aesni_ = (cpu_info[2] & 0x02000000) != 0;
mbelshe@google.com4591e482008-09-27 08:26:34 +0900136 }
chunyang.dai@intel.com94d8f282012-10-05 06:05:23 +0900137
138 // Get the brand string of the cpu.
139 __cpuid(cpu_info, 0x80000000);
140 const int parameter_end = 0x80000004;
simonjam@chromium.orge50c7cb2013-05-01 04:46:05 +0900141 int max_parameter = cpu_info[0];
chunyang.dai@intel.com94d8f282012-10-05 06:05:23 +0900142
143 if (cpu_info[0] >= parameter_end) {
144 char* cpu_string_ptr = cpu_string;
145
146 for (int parameter = 0x80000002; parameter <= parameter_end &&
147 cpu_string_ptr < &cpu_string[sizeof(cpu_string)]; parameter++) {
148 __cpuid(cpu_info, parameter);
149 memcpy(cpu_string_ptr, cpu_info, sizeof(cpu_info));
150 cpu_string_ptr += sizeof(cpu_info);
151 }
152 cpu_brand_.assign(cpu_string, cpu_string_ptr - cpu_string);
153 }
simonjam@chromium.orge50c7cb2013-05-01 04:46:05 +0900154
155 const int parameter_containing_non_stop_time_stamp_counter = 0x80000007;
156 if (max_parameter >= parameter_containing_non_stop_time_stamp_counter) {
157 __cpuid(cpu_info, parameter_containing_non_stop_time_stamp_counter);
158 has_non_stop_time_stamp_counter_ = (cpu_info[3] & (1 << 8)) != 0;
159 }
piman@chromium.orgfac571c2013-10-31 13:50:51 +0900160#elif defined(ARCH_CPU_ARM_FAMILY)
161 // TODO(piman): Expand this. ARM has a CPUID register, but it's not available
162 // in user mode. /proc/cpuinfo has some information, but it's non standard,
163 // platform-specific, and not accessible from the sandbox.
164 // For some purposes, this first approximation is enough.
165 // crbug.com/313454
166 cpu_brand_.assign("ARM");
jiesun@chromium.orgc8420402011-02-17 03:51:58 +0900167#endif
maruel@google.com8178de22008-09-26 07:08:44 +0900168}
169
whunt@chromium.orga5dbde42013-02-02 10:10:02 +0900170CPU::IntelMicroArchitecture CPU::GetIntelMicroArchitecture() const {
171 if (has_avx()) return AVX;
172 if (has_sse42()) return SSE42;
173 if (has_sse41()) return SSE41;
174 if (has_ssse3()) return SSSE3;
175 if (has_sse3()) return SSE3;
176 if (has_sse2()) return SSE2;
177 if (has_sse()) return SSE;
178 return PENTIUM;
179}
180
maruel@google.com8178de22008-09-26 07:08:44 +0900181} // namespace base