blob: dec98bd7a1e82b5e8162a163200de415a513dfde [file] [log] [blame]
[email protected]d1811bc2012-03-31 07:08:531// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]de8d26672008-09-25 22:08:442// 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"
[email protected]7e6d42b2011-02-16 18:51:586
[email protected]d1811bc2012-03-31 07:08:537#include <string.h>
8
[email protected]595d1592012-10-04 21:05:239#include <algorithm>
10
[email protected]f3d445e2013-11-22 18:35:0311#include "base/basictypes.h"
[email protected]d1811bc2012-03-31 07:08:5312#include "build/build_config.h"
13
[email protected]7e6d42b2011-02-16 18:51:5814#if defined(ARCH_CPU_X86_FAMILY)
15#if defined(_MSC_VER)
[email protected]de8d26672008-09-25 22:08:4416#include <intrin.h>
[email protected]f3d445e2013-11-22 18:35:0317#include <immintrin.h> // For _xgetbv()
[email protected]7e6d42b2011-02-16 18:51:5818#endif
19#endif
20
[email protected]de8d26672008-09-25 22:08:4421namespace base {
22
23CPU::CPU()
[email protected]5c8f89f692013-07-18 11:13:2824 : signature_(0),
25 type_(0),
[email protected]de8d26672008-09-25 22:08:4426 family_(0),
27 model_(0),
28 stepping_(0),
29 ext_model_(0),
30 ext_family_(0),
[email protected]7e6d42b2011-02-16 18:51:5831 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),
[email protected]f3d445e2013-11-22 18:35:0338 has_avx_(false),
39 has_avx_hardware_(false),
[email protected]aa312812013-04-30 19:46:0540 has_non_stop_time_stamp_counter_(false),
[email protected]de8d26672008-09-25 22:08:4441 cpu_vendor_("unknown") {
42 Initialize();
43}
44
[email protected]f3d445e2013-11-22 18:35:0345namespace {
46
[email protected]7e6d42b2011-02-16 18:51:5847#if defined(ARCH_CPU_X86_FAMILY)
48#ifndef _MSC_VER
49
50#if defined(__pic__) && defined(__i386__)
51
52void __cpuid(int cpu_info[4], int info_type) {
53 __asm__ volatile (
54 "mov %%ebx, %%edi\n"
55 "cpuid\n"
56 "xchg %%edi, %%ebx\n"
57 : "=a"(cpu_info[0]), "=D"(cpu_info[1]), "=c"(cpu_info[2]), "=d"(cpu_info[3])
58 : "a"(info_type)
59 );
60}
61
[email protected]7e6d42b2011-02-16 18:51:5862#else
63
64void __cpuid(int cpu_info[4], int info_type) {
65 __asm__ volatile (
66 "cpuid \n\t"
67 : "=a"(cpu_info[0]), "=b"(cpu_info[1]), "=c"(cpu_info[2]), "=d"(cpu_info[3])
68 : "a"(info_type)
69 );
70}
71
[email protected]f3d445e2013-11-22 18:35:0372#endif
73
74// _xgetbv returns the value of an Intel Extended Control Register (XCR).
75// Currently only XCR0 is defined by Intel so |xcr| should always be zero.
76uint64 _xgetbv(uint32 xcr) {
77 uint32 eax, edx;
78
79 __asm__ volatile ("xgetbv" : "=a" (eax), "=d" (edx) : "c" (xcr));
80 return (static_cast<uint64>(edx) << 32) | eax;
[email protected]7e6d42b2011-02-16 18:51:5881}
82
[email protected]f3d445e2013-11-22 18:35:0383#endif // !_MSC_VER
[email protected]7e6d42b2011-02-16 18:51:5884#endif // ARCH_CPU_X86_FAMILY
85
[email protected]f3d445e2013-11-22 18:35:0386} // anonymous namespace
87
[email protected]de8d26672008-09-25 22:08:4488void CPU::Initialize() {
[email protected]7e6d42b2011-02-16 18:51:5889#if defined(ARCH_CPU_X86_FAMILY)
[email protected]de8d26672008-09-25 22:08:4490 int cpu_info[4] = {-1};
[email protected]595d1592012-10-04 21:05:2391 char cpu_string[48];
[email protected]de8d26672008-09-25 22:08:4492
93 // __cpuid with an InfoType argument of 0 returns the number of
94 // valid Ids in CPUInfo[0] and the CPU identification string in
95 // the other three array elements. The CPU identification string is
[email protected]52a261f2009-03-03 15:01:1296 // not in linear order. The code below arranges the information
[email protected]595d1592012-10-04 21:05:2397 // in a human readable form. The human readable order is CPUInfo[1] |
98 // CPUInfo[3] | CPUInfo[2]. CPUInfo[2] and CPUInfo[3] are swapped
99 // before using memcpy to copy these three array elements to cpu_string.
[email protected]de8d26672008-09-25 22:08:44100 __cpuid(cpu_info, 0);
101 int num_ids = cpu_info[0];
[email protected]595d1592012-10-04 21:05:23102 std::swap(cpu_info[2], cpu_info[3]);
103 memcpy(cpu_string, &cpu_info[1], 3 * sizeof(cpu_info[1]));
104 cpu_vendor_.assign(cpu_string, 3 * sizeof(cpu_info[1]));
[email protected]de8d26672008-09-25 22:08:44105
106 // Interpret CPU feature information.
[email protected]7f0813642008-09-26 23:26:34107 if (num_ids > 0) {
108 __cpuid(cpu_info, 1);
[email protected]5c8f89f692013-07-18 11:13:28109 signature_ = cpu_info[0];
[email protected]7f0813642008-09-26 23:26:34110 stepping_ = cpu_info[0] & 0xf;
[email protected]7e6d42b2011-02-16 18:51:58111 model_ = ((cpu_info[0] >> 4) & 0xf) + ((cpu_info[0] >> 12) & 0xf0);
[email protected]7f0813642008-09-26 23:26:34112 family_ = (cpu_info[0] >> 8) & 0xf;
113 type_ = (cpu_info[0] >> 12) & 0x3;
114 ext_model_ = (cpu_info[0] >> 16) & 0xf;
115 ext_family_ = (cpu_info[0] >> 20) & 0xff;
[email protected]f3d445e2013-11-22 18:35:03116 has_mmx_ = (cpu_info[3] & 0x00800000) != 0;
117 has_sse_ = (cpu_info[3] & 0x02000000) != 0;
118 has_sse2_ = (cpu_info[3] & 0x04000000) != 0;
119 has_sse3_ = (cpu_info[2] & 0x00000001) != 0;
[email protected]7e6d42b2011-02-16 18:51:58120 has_ssse3_ = (cpu_info[2] & 0x00000200) != 0;
121 has_sse41_ = (cpu_info[2] & 0x00080000) != 0;
122 has_sse42_ = (cpu_info[2] & 0x00100000) != 0;
[email protected]f3d445e2013-11-22 18:35:03123 has_avx_hardware_ =
124 (cpu_info[2] & 0x10000000) != 0;
125 // AVX instructions will generate an illegal instruction exception unless
126 // a) they are supported by the CPU,
127 // b) XSAVE is supported by the CPU and
128 // c) XSAVE is enabled by the kernel.
129 // See http://software.intel.com/en-us/blogs/2011/04/14/is-avx-enabled
130 has_avx_ =
131 has_avx_hardware_ &&
132 (cpu_info[2] & 0x08000000) != 0 /* OSXSAVE */ &&
133 (_xgetbv(0) & 6) == 6 /* XSAVE enabled by kernel */;
[email protected]7f0813642008-09-26 23:26:34134 }
[email protected]595d1592012-10-04 21:05:23135
136 // Get the brand string of the cpu.
137 __cpuid(cpu_info, 0x80000000);
138 const int parameter_end = 0x80000004;
[email protected]aa312812013-04-30 19:46:05139 int max_parameter = cpu_info[0];
[email protected]595d1592012-10-04 21:05:23140
141 if (cpu_info[0] >= parameter_end) {
142 char* cpu_string_ptr = cpu_string;
143
144 for (int parameter = 0x80000002; parameter <= parameter_end &&
145 cpu_string_ptr < &cpu_string[sizeof(cpu_string)]; parameter++) {
146 __cpuid(cpu_info, parameter);
147 memcpy(cpu_string_ptr, cpu_info, sizeof(cpu_info));
148 cpu_string_ptr += sizeof(cpu_info);
149 }
150 cpu_brand_.assign(cpu_string, cpu_string_ptr - cpu_string);
151 }
[email protected]aa312812013-04-30 19:46:05152
153 const int parameter_containing_non_stop_time_stamp_counter = 0x80000007;
154 if (max_parameter >= parameter_containing_non_stop_time_stamp_counter) {
155 __cpuid(cpu_info, parameter_containing_non_stop_time_stamp_counter);
156 has_non_stop_time_stamp_counter_ = (cpu_info[3] & (1 << 8)) != 0;
157 }
[email protected]bac1b5e2013-10-31 04:50:51158#elif defined(ARCH_CPU_ARM_FAMILY)
159 // TODO(piman): Expand this. ARM has a CPUID register, but it's not available
160 // in user mode. /proc/cpuinfo has some information, but it's non standard,
161 // platform-specific, and not accessible from the sandbox.
162 // For some purposes, this first approximation is enough.
163 // crbug.com/313454
164 cpu_brand_.assign("ARM");
[email protected]7e6d42b2011-02-16 18:51:58165#endif
[email protected]de8d26672008-09-25 22:08:44166}
167
[email protected]5016a9dd2013-02-02 01:10:02168CPU::IntelMicroArchitecture CPU::GetIntelMicroArchitecture() const {
169 if (has_avx()) return AVX;
170 if (has_sse42()) return SSE42;
171 if (has_sse41()) return SSE41;
172 if (has_ssse3()) return SSSE3;
173 if (has_sse3()) return SSE3;
174 if (has_sse2()) return SSE2;
175 if (has_sse()) return SSE;
176 return PENTIUM;
177}
178
[email protected]de8d26672008-09-25 22:08:44179} // namespace base