1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
11 #include "build/build_config.h"
13 #if defined(ARCH_CPU_X86_FAMILY)
35 cpu_vendor_("unknown") {
39 #if defined(ARCH_CPU_X86_FAMILY)
42 #if defined(__pic__) && defined(__i386__)
44 void __cpuid(int cpu_info
[4], int info_type
) {
49 : "=a"(cpu_info
[0]), "=D"(cpu_info
[1]), "=c"(cpu_info
[2]), "=d"(cpu_info
[3])
54 void __cpuidex(int cpu_info
[4], int info_type
, int info_index
) {
59 : "=a"(cpu_info
[0]), "=D"(cpu_info
[1]), "=c"(cpu_info
[2]), "=d"(cpu_info
[3])
60 : "a"(info_type
), "c"(info_index
)
66 void __cpuid(int cpu_info
[4], int info_type
) {
69 : "=a"(cpu_info
[0]), "=b"(cpu_info
[1]), "=c"(cpu_info
[2]), "=d"(cpu_info
[3])
74 void __cpuidex(int cpu_info
[4], int info_type
, int info_index
) {
77 : "=a"(cpu_info
[0]), "=b"(cpu_info
[1]), "=c"(cpu_info
[2]), "=d"(cpu_info
[3])
78 : "a"(info_type
), "c"(info_index
)
84 #endif // ARCH_CPU_X86_FAMILY
86 void CPU::Initialize() {
87 #if defined(ARCH_CPU_X86_FAMILY)
88 int cpu_info
[4] = {-1};
91 // __cpuid with an InfoType argument of 0 returns the number of
92 // valid Ids in CPUInfo[0] and the CPU identification string in
93 // the other three array elements. The CPU identification string is
94 // not in linear order. The code below arranges the information
95 // in a human readable form. The human readable order is CPUInfo[1] |
96 // CPUInfo[3] | CPUInfo[2]. CPUInfo[2] and CPUInfo[3] are swapped
97 // before using memcpy to copy these three array elements to cpu_string.
99 int num_ids
= cpu_info
[0];
100 std::swap(cpu_info
[2], cpu_info
[3]);
101 memcpy(cpu_string
, &cpu_info
[1], 3 * sizeof(cpu_info
[1]));
102 cpu_vendor_
.assign(cpu_string
, 3 * sizeof(cpu_info
[1]));
104 // Interpret CPU feature information.
106 __cpuid(cpu_info
, 1);
107 stepping_
= cpu_info
[0] & 0xf;
108 model_
= ((cpu_info
[0] >> 4) & 0xf) + ((cpu_info
[0] >> 12) & 0xf0);
109 family_
= (cpu_info
[0] >> 8) & 0xf;
110 type_
= (cpu_info
[0] >> 12) & 0x3;
111 ext_model_
= (cpu_info
[0] >> 16) & 0xf;
112 ext_family_
= (cpu_info
[0] >> 20) & 0xff;
113 has_mmx_
= (cpu_info
[3] & 0x00800000) != 0;
114 has_sse_
= (cpu_info
[3] & 0x02000000) != 0;
115 has_sse2_
= (cpu_info
[3] & 0x04000000) != 0;
116 has_sse3_
= (cpu_info
[2] & 0x00000001) != 0;
117 has_ssse3_
= (cpu_info
[2] & 0x00000200) != 0;
118 has_sse41_
= (cpu_info
[2] & 0x00080000) != 0;
119 has_sse42_
= (cpu_info
[2] & 0x00100000) != 0;
120 has_avx_
= (cpu_info
[2] & 0x10000000) != 0;
123 // Get the brand string of the cpu.
124 __cpuid(cpu_info
, 0x80000000);
125 const int parameter_end
= 0x80000004;
127 if (cpu_info
[0] >= parameter_end
) {
128 char* cpu_string_ptr
= cpu_string
;
130 for (int parameter
= 0x80000002; parameter
<= parameter_end
&&
131 cpu_string_ptr
< &cpu_string
[sizeof(cpu_string
)]; parameter
++) {
132 __cpuid(cpu_info
, parameter
);
133 memcpy(cpu_string_ptr
, cpu_info
, sizeof(cpu_info
));
134 cpu_string_ptr
+= sizeof(cpu_info
);
136 cpu_brand_
.assign(cpu_string
, cpu_string_ptr
- cpu_string
);
141 CPU::IntelMicroArchitecture
CPU::GetIntelMicroArchitecture() const {
142 if (has_avx()) return AVX
;
143 if (has_sse42()) return SSE42
;
144 if (has_sse41()) return SSE41
;
145 if (has_ssse3()) return SSSE3
;
146 if (has_sse3()) return SSE3
;
147 if (has_sse2()) return SSE2
;
148 if (has_sse()) return SSE
;