OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/cpu.h" | 5 #include "base/cpu.h" |
6 | 6 |
7 #include <string.h> | 7 #include <string.h> |
8 | 8 |
| 9 #include <algorithm> |
| 10 |
9 #include "build/build_config.h" | 11 #include "build/build_config.h" |
10 | 12 |
11 #if defined(ARCH_CPU_X86_FAMILY) | 13 #if defined(ARCH_CPU_X86_FAMILY) |
12 #if defined(_MSC_VER) | 14 #if defined(_MSC_VER) |
13 #include <intrin.h> | 15 #include <intrin.h> |
14 #endif | 16 #endif |
15 #endif | 17 #endif |
16 | 18 |
17 namespace base { | 19 namespace base { |
18 | 20 |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 ); | 79 ); |
78 } | 80 } |
79 | 81 |
80 #endif | 82 #endif |
81 #endif // _MSC_VER | 83 #endif // _MSC_VER |
82 #endif // ARCH_CPU_X86_FAMILY | 84 #endif // ARCH_CPU_X86_FAMILY |
83 | 85 |
84 void CPU::Initialize() { | 86 void CPU::Initialize() { |
85 #if defined(ARCH_CPU_X86_FAMILY) | 87 #if defined(ARCH_CPU_X86_FAMILY) |
86 int cpu_info[4] = {-1}; | 88 int cpu_info[4] = {-1}; |
87 char cpu_string[0x20]; | 89 char cpu_string[48]; |
88 | 90 |
89 // __cpuid with an InfoType argument of 0 returns the number of | 91 // __cpuid with an InfoType argument of 0 returns the number of |
90 // valid Ids in CPUInfo[0] and the CPU identification string in | 92 // valid Ids in CPUInfo[0] and the CPU identification string in |
91 // the other three array elements. The CPU identification string is | 93 // the other three array elements. The CPU identification string is |
92 // not in linear order. The code below arranges the information | 94 // not in linear order. The code below arranges the information |
93 // in a human readable form. | 95 // in a human readable form. The human readable order is CPUInfo[1] | |
94 // | 96 // CPUInfo[3] | CPUInfo[2]. CPUInfo[2] and CPUInfo[3] are swapped |
95 // More info can be found here: | 97 // before using memcpy to copy these three array elements to cpu_string. |
96 // http://msdn.microsoft.com/en-us/library/hskdteyh.aspx | |
97 __cpuid(cpu_info, 0); | 98 __cpuid(cpu_info, 0); |
98 int num_ids = cpu_info[0]; | 99 int num_ids = cpu_info[0]; |
99 memset(cpu_string, 0, sizeof(cpu_string)); | 100 std::swap(cpu_info[2], cpu_info[3]); |
100 *(reinterpret_cast<int*>(cpu_string)) = cpu_info[1]; | 101 memcpy(cpu_string, &cpu_info[1], 3 * sizeof(cpu_info[1])); |
101 *(reinterpret_cast<int*>(cpu_string+4)) = cpu_info[3]; | 102 cpu_vendor_.assign(cpu_string, 3 * sizeof(cpu_info[1])); |
102 *(reinterpret_cast<int*>(cpu_string+8)) = cpu_info[2]; | |
103 | 103 |
104 // Interpret CPU feature information. | 104 // Interpret CPU feature information. |
105 if (num_ids > 0) { | 105 if (num_ids > 0) { |
106 __cpuid(cpu_info, 1); | 106 __cpuid(cpu_info, 1); |
107 stepping_ = cpu_info[0] & 0xf; | 107 stepping_ = cpu_info[0] & 0xf; |
108 model_ = ((cpu_info[0] >> 4) & 0xf) + ((cpu_info[0] >> 12) & 0xf0); | 108 model_ = ((cpu_info[0] >> 4) & 0xf) + ((cpu_info[0] >> 12) & 0xf0); |
109 family_ = (cpu_info[0] >> 8) & 0xf; | 109 family_ = (cpu_info[0] >> 8) & 0xf; |
110 type_ = (cpu_info[0] >> 12) & 0x3; | 110 type_ = (cpu_info[0] >> 12) & 0x3; |
111 ext_model_ = (cpu_info[0] >> 16) & 0xf; | 111 ext_model_ = (cpu_info[0] >> 16) & 0xf; |
112 ext_family_ = (cpu_info[0] >> 20) & 0xff; | 112 ext_family_ = (cpu_info[0] >> 20) & 0xff; |
113 cpu_vendor_ = cpu_string; | |
114 has_mmx_ = (cpu_info[3] & 0x00800000) != 0; | 113 has_mmx_ = (cpu_info[3] & 0x00800000) != 0; |
115 has_sse_ = (cpu_info[3] & 0x02000000) != 0; | 114 has_sse_ = (cpu_info[3] & 0x02000000) != 0; |
116 has_sse2_ = (cpu_info[3] & 0x04000000) != 0; | 115 has_sse2_ = (cpu_info[3] & 0x04000000) != 0; |
117 has_sse3_ = (cpu_info[2] & 0x00000001) != 0; | 116 has_sse3_ = (cpu_info[2] & 0x00000001) != 0; |
118 has_ssse3_ = (cpu_info[2] & 0x00000200) != 0; | 117 has_ssse3_ = (cpu_info[2] & 0x00000200) != 0; |
119 has_sse41_ = (cpu_info[2] & 0x00080000) != 0; | 118 has_sse41_ = (cpu_info[2] & 0x00080000) != 0; |
120 has_sse42_ = (cpu_info[2] & 0x00100000) != 0; | 119 has_sse42_ = (cpu_info[2] & 0x00100000) != 0; |
121 } | 120 } |
| 121 |
| 122 // Get the brand string of the cpu. |
| 123 __cpuid(cpu_info, 0x80000000); |
| 124 const int parameter_end = 0x80000004; |
| 125 |
| 126 if (cpu_info[0] >= parameter_end) { |
| 127 char* cpu_string_ptr = cpu_string; |
| 128 |
| 129 for (int parameter = 0x80000002; parameter <= parameter_end && |
| 130 cpu_string_ptr < &cpu_string[sizeof(cpu_string)]; parameter++) { |
| 131 __cpuid(cpu_info, parameter); |
| 132 memcpy(cpu_string_ptr, cpu_info, sizeof(cpu_info)); |
| 133 cpu_string_ptr += sizeof(cpu_info); |
| 134 } |
| 135 cpu_brand_.assign(cpu_string, cpu_string_ptr - cpu_string); |
| 136 } |
122 #endif | 137 #endif |
123 } | 138 } |
124 | 139 |
125 } // namespace base | 140 } // namespace base |
OLD | NEW |