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 "build/build_config.h" | 9 #include "build/build_config.h" |
10 | 10 |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
77 ); | 77 ); |
78 } | 78 } |
79 | 79 |
80 #endif | 80 #endif |
81 #endif // _MSC_VER | 81 #endif // _MSC_VER |
82 #endif // ARCH_CPU_X86_FAMILY | 82 #endif // ARCH_CPU_X86_FAMILY |
83 | 83 |
84 void CPU::Initialize() { | 84 void CPU::Initialize() { |
85 #if defined(ARCH_CPU_X86_FAMILY) | 85 #if defined(ARCH_CPU_X86_FAMILY) |
86 int cpu_info[4] = {-1}; | 86 int cpu_info[4] = {-1}; |
87 char cpu_string[0x20]; | 87 char cpu_string[32]; |
Mark Mentovai
2012/10/03 18:34:02
Now let’s make this stuff conform to Chromium styl
| |
88 | 88 char cpu_brand[48]; |
Mark Mentovai
2012/10/03 18:34:02
You can share a buffer for cpu_string and cpu_bran
| |
89 const int para_end = 0x80000004; | |
Mark Mentovai
2012/10/03 18:34:02
Don’t abbreviate. http://google-styleguide.googlec
| |
89 // __cpuid with an InfoType argument of 0 returns the number of | 90 // __cpuid with an InfoType argument of 0 returns the number of |
90 // valid Ids in CPUInfo[0] and the CPU identification string in | 91 // valid Ids in CPUInfo[0] and the CPU identification string in |
91 // the other three array elements. The CPU identification string is | 92 // the other three array elements. The CPU identification string is |
92 // not in linear order. The code below arranges the information | 93 // not in linear order. The code below arranges the information |
93 // in a human readable form. | 94 // in a human readable form. |
94 // | 95 // |
95 // More info can be found here: | 96 // More info can be found here: |
96 // http://msdn.microsoft.com/en-us/library/hskdteyh.aspx | 97 // http://msdn.microsoft.com/en-us/library/hskdteyh.aspx |
Mark Mentovai
2012/10/03 18:34:02
This URL is no longer valid. You should remove it,
| |
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 memset(cpu_string, 0, sizeof(cpu_string)); |
100 *(reinterpret_cast<int*>(cpu_string)) = cpu_info[1]; | 101 *(reinterpret_cast<int*>(cpu_string)) = cpu_info[1]; |
Mark Mentovai
2012/10/03 18:34:02
Fix these existing broken assignments to use memcp
| |
101 *(reinterpret_cast<int*>(cpu_string+4)) = cpu_info[3]; | 102 *(reinterpret_cast<int*>(cpu_string+4)) = cpu_info[3]; |
102 *(reinterpret_cast<int*>(cpu_string+8)) = cpu_info[2]; | 103 *(reinterpret_cast<int*>(cpu_string+8)) = cpu_info[2]; |
Mark Mentovai
2012/10/03 18:34:02
cpu_string is char[32] but it only needs to be cha
| |
103 | 104 |
104 // Interpret CPU feature information. | 105 // Interpret CPU feature information. |
105 if (num_ids > 0) { | 106 if (num_ids > 0) { |
106 __cpuid(cpu_info, 1); | 107 __cpuid(cpu_info, 1); |
107 stepping_ = cpu_info[0] & 0xf; | 108 stepping_ = cpu_info[0] & 0xf; |
108 model_ = ((cpu_info[0] >> 4) & 0xf) + ((cpu_info[0] >> 12) & 0xf0); | 109 model_ = ((cpu_info[0] >> 4) & 0xf) + ((cpu_info[0] >> 12) & 0xf0); |
109 family_ = (cpu_info[0] >> 8) & 0xf; | 110 family_ = (cpu_info[0] >> 8) & 0xf; |
110 type_ = (cpu_info[0] >> 12) & 0x3; | 111 type_ = (cpu_info[0] >> 12) & 0x3; |
111 ext_model_ = (cpu_info[0] >> 16) & 0xf; | 112 ext_model_ = (cpu_info[0] >> 16) & 0xf; |
112 ext_family_ = (cpu_info[0] >> 20) & 0xff; | 113 ext_family_ = (cpu_info[0] >> 20) & 0xff; |
113 cpu_vendor_ = cpu_string; | 114 cpu_vendor_ = cpu_string; |
Mark Mentovai
2012/10/03 18:34:02
This doesn’t seem to require num_ids to be > 0. Yo
| |
114 has_mmx_ = (cpu_info[3] & 0x00800000) != 0; | 115 has_mmx_ = (cpu_info[3] & 0x00800000) != 0; |
115 has_sse_ = (cpu_info[3] & 0x02000000) != 0; | 116 has_sse_ = (cpu_info[3] & 0x02000000) != 0; |
116 has_sse2_ = (cpu_info[3] & 0x04000000) != 0; | 117 has_sse2_ = (cpu_info[3] & 0x04000000) != 0; |
117 has_sse3_ = (cpu_info[2] & 0x00000001) != 0; | 118 has_sse3_ = (cpu_info[2] & 0x00000001) != 0; |
118 has_ssse3_ = (cpu_info[2] & 0x00000200) != 0; | 119 has_ssse3_ = (cpu_info[2] & 0x00000200) != 0; |
119 has_sse41_ = (cpu_info[2] & 0x00080000) != 0; | 120 has_sse41_ = (cpu_info[2] & 0x00080000) != 0; |
120 has_sse42_ = (cpu_info[2] & 0x00100000) != 0; | 121 has_sse42_ = (cpu_info[2] & 0x00100000) != 0; |
122 | |
123 // get the brand string of the cpu. | |
Mark Mentovai
2012/10/03 18:34:02
Comments should be written as sentences, and sente
Mark Mentovai
2012/10/03 18:34:02
I don’t think there’s any reason for this to be in
| |
124 __cpuid(cpu_info, 0x80000000); | |
125 | |
126 if (cpu_info[0] >= para_end) { | |
127 memset(cpu_brand, 0, sizeof(cpu_brand)); | |
Mark Mentovai
2012/10/03 18:34:02
You don’t need this memset, because you’re going t
| |
128 char* cpu_brand_ptr = cpu_brand; | |
129 | |
130 for (int parameter = 0x80000002; parameter <= para_end; parameter++) { | |
131 __cpuid(cpu_info, parameter); | |
132 memcpy(cpu_brand_ptr, cpu_info, sizeof(cpu_info)); | |
133 cpu_brand_ptr += sizeof(cpu_info); | |
134 } | |
135 cpu_brand_ = cpu_brand; | |
Mark Mentovai
2012/10/03 18:34:02
cpu_brand is not necessarily NUL-terminated as you
jar (doing other things)
2012/10/04 17:42:03
I couldn't find documentation that suggests the st
Mark Mentovai
2012/10/04 18:00:45
jar wrote:
| |
136 } | |
121 } | 137 } |
122 #endif | 138 #endif |
123 } | 139 } |
124 | 140 |
125 } // namespace base | 141 } // namespace base |
OLD | NEW |