Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Side by Side Diff: base/cpu.cc

Issue 12511002: Adding check for OS support to AVX (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: using file_util::ReadFileToString Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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> 9 #include <algorithm>
10 10
11 #include "build/build_config.h" 11 #include "build/build_config.h"
12 12
13 #if defined(ARCH_CPU_X86_FAMILY) 13 #if defined(ARCH_CPU_X86_FAMILY)
14 #if defined(OS_LINUX)
15 #include "base/file_util.h"
16 #endif
17
18 #if defined (OS_MACOSX)
apatrick_chromium 2013/03/06 19:19:21 nit: space between "defined" and "("
19 #include "base/version.h"
apatrick_chromium 2013/03/06 19:19:21 #include "base/memory/scoped_ptr.h"
20 #include <sys/param.h>
21 #include <sys/sysctl.h>
22 #endif
23
apatrick_chromium 2013/03/06 19:19:21 #if defined(OS_WIN) #include <windows.h> #endif
14 #if defined(_MSC_VER) 24 #if defined(_MSC_VER)
15 #include <intrin.h> 25 #include <intrin.h>
16 #endif 26 #endif
17 #endif 27 #endif
18 28
19 namespace base { 29 namespace base {
20 30
21 CPU::CPU() 31 CPU::CPU()
22 : type_(0), 32 : type_(0),
23 family_(0), 33 family_(0),
24 model_(0), 34 model_(0),
25 stepping_(0), 35 stepping_(0),
26 ext_model_(0), 36 ext_model_(0),
27 ext_family_(0), 37 ext_family_(0),
28 has_mmx_(false), 38 has_mmx_(false),
29 has_sse_(false), 39 has_sse_(false),
30 has_sse2_(false), 40 has_sse2_(false),
31 has_sse3_(false), 41 has_sse3_(false),
32 has_ssse3_(false), 42 has_ssse3_(false),
33 has_sse41_(false), 43 has_sse41_(false),
34 has_sse42_(false), 44 has_sse42_(false),
45 has_avx_(false),
35 cpu_vendor_("unknown") { 46 cpu_vendor_("unknown") {
36 Initialize(); 47 Initialize();
37 } 48 }
38 49
39 #if defined(ARCH_CPU_X86_FAMILY) 50 #if defined(ARCH_CPU_X86_FAMILY)
40 #ifndef _MSC_VER 51 #ifndef _MSC_VER
41 52
42 #if defined(__pic__) && defined(__i386__) 53 #if defined(__pic__) && defined(__i386__)
43 54
44 void __cpuid(int cpu_info[4], int info_type) { 55 void __cpuid(int cpu_info[4], int info_type) {
(...skipping 29 matching lines...) Expand all
74 void __cpuidex(int cpu_info[4], int info_type, int info_index) { 85 void __cpuidex(int cpu_info[4], int info_type, int info_index) {
75 __asm__ volatile ( 86 __asm__ volatile (
76 "cpuid \n\t" 87 "cpuid \n\t"
77 : "=a"(cpu_info[0]), "=b"(cpu_info[1]), "=c"(cpu_info[2]), "=d"(cpu_info[3]) 88 : "=a"(cpu_info[0]), "=b"(cpu_info[1]), "=c"(cpu_info[2]), "=d"(cpu_info[3])
78 : "a"(info_type), "c"(info_index) 89 : "a"(info_type), "c"(info_index)
79 ); 90 );
80 } 91 }
81 92
82 #endif 93 #endif
83 #endif // _MSC_VER 94 #endif // _MSC_VER
95
96 #if defined(OS_WIN)
97 bool OSHasAVXSupport() {
98 OSVERSIONINFO version_info;
apatrick_chromium 2013/03/06 19:19:21 Consider OSVERSIONINFOEX to get service pack versi
99
100 if (!GetVersionEx(&version_info))
apatrick_chromium 2013/03/06 19:19:21 You need to set version_info.dwOSVersionInfoSize t
101 return false;
102
103 // Windows 7 SP1 added support for AVX.
apatrick_chromium 2013/03/06 19:19:21 This tests for Windows 7 or later rather than Wind
104 return version_info.dwMajorVersion > 6 ||
105 version_info.dwMajorVersion == 6 &&
106 version_info.dwMinorVersion > 1;
107 }
108 #elif defined(OS_LINUX)
109 bool OSHasAVXSupport() {
110 std::string buffer;
111 if (!file_util::ReadFileToString("/proc/cpuinfo", &buffer))
DaleCurtis 2013/03/06 18:32:37 Is there a different way you can write this check?
apatrick_chromium 2013/03/06 19:19:21 First argument should be of type base::FilePath.
112 return false;
113
114 // Scan through /proc/cpuinfo to see if the kernel supports AVX.
115 return buffer.find("avx") != std::string::npos;
116 }
117 #elif defined(OS_MACOSX)
apatrick_chromium 2013/03/06 19:19:21 nit: two spaces between #elif and defined
118 bool OSHasAVXSupport() {
119 size_t length;
120 char* kernel_version;
121 const static int mib[2] = {CTL_KERN, KERN_OSRELEASE};
apatrick_chromium 2013/03/06 19:19:21 This is passed to sysctl so it can't be const. htt
122
123 if (sysctl(mib, 2, NULL, &length, NULL, 0) < 0)
apatrick_chromium 2013/03/06 19:19:21 2 -> arraysize(mib)
124 return false;
125
126 scoped_ptr<char[]> buffer = new char[length];
127 if (!buffer)
128 return false;
129
130 if (sysctl(mib, 2, buffer, &length, NULL, 0) < 0)
DaleCurtis 2013/03/06 18:32:37 Perhaps the same sandbox issue.
apatrick_chromium 2013/03/06 19:19:21 buffer.get() 2 -> arraysize(mib)
131 return false;
132
133 base::Version kernel_version(buffer);
apatrick_chromium 2013/03/06 19:19:21 kernel_version is declared twice. Also Version is
134 if (!kernel_version.IsValid())
135 return false;
136
137 // AVX support was added in 10.6.8, which has kernel 10.8.
138 return kernel_version.CompareTo(base::Version("10.8")) >= 0;
139 }
140 #else
141 bool OSHasAVXSupport() {
142 return false;
143 }
144 #endif
84 #endif // ARCH_CPU_X86_FAMILY 145 #endif // ARCH_CPU_X86_FAMILY
85 146
86 void CPU::Initialize() { 147 void CPU::Initialize() {
87 #if defined(ARCH_CPU_X86_FAMILY) 148 #if defined(ARCH_CPU_X86_FAMILY)
88 int cpu_info[4] = {-1}; 149 int cpu_info[4] = {-1};
89 char cpu_string[48]; 150 char cpu_string[48];
90 151
91 // __cpuid with an InfoType argument of 0 returns the number of 152 // __cpuid with an InfoType argument of 0 returns the number of
92 // valid Ids in CPUInfo[0] and the CPU identification string in 153 // valid Ids in CPUInfo[0] and the CPU identification string in
93 // the other three array elements. The CPU identification string is 154 // the other three array elements. The CPU identification string is
(...skipping 16 matching lines...) Expand all
110 type_ = (cpu_info[0] >> 12) & 0x3; 171 type_ = (cpu_info[0] >> 12) & 0x3;
111 ext_model_ = (cpu_info[0] >> 16) & 0xf; 172 ext_model_ = (cpu_info[0] >> 16) & 0xf;
112 ext_family_ = (cpu_info[0] >> 20) & 0xff; 173 ext_family_ = (cpu_info[0] >> 20) & 0xff;
113 has_mmx_ = (cpu_info[3] & 0x00800000) != 0; 174 has_mmx_ = (cpu_info[3] & 0x00800000) != 0;
114 has_sse_ = (cpu_info[3] & 0x02000000) != 0; 175 has_sse_ = (cpu_info[3] & 0x02000000) != 0;
115 has_sse2_ = (cpu_info[3] & 0x04000000) != 0; 176 has_sse2_ = (cpu_info[3] & 0x04000000) != 0;
116 has_sse3_ = (cpu_info[2] & 0x00000001) != 0; 177 has_sse3_ = (cpu_info[2] & 0x00000001) != 0;
117 has_ssse3_ = (cpu_info[2] & 0x00000200) != 0; 178 has_ssse3_ = (cpu_info[2] & 0x00000200) != 0;
118 has_sse41_ = (cpu_info[2] & 0x00080000) != 0; 179 has_sse41_ = (cpu_info[2] & 0x00080000) != 0;
119 has_sse42_ = (cpu_info[2] & 0x00100000) != 0; 180 has_sse42_ = (cpu_info[2] & 0x00100000) != 0;
120 has_avx_ = (cpu_info[2] & 0x10000000) != 0; 181 has_avx_ = (cpu_info[2] & 0x10000000) != 0 && OSHasAVXSupport();
121 } 182 }
122 183
123 // Get the brand string of the cpu. 184 // Get the brand string of the cpu.
124 __cpuid(cpu_info, 0x80000000); 185 __cpuid(cpu_info, 0x80000000);
125 const int parameter_end = 0x80000004; 186 const int parameter_end = 0x80000004;
126 187
127 if (cpu_info[0] >= parameter_end) { 188 if (cpu_info[0] >= parameter_end) {
128 char* cpu_string_ptr = cpu_string; 189 char* cpu_string_ptr = cpu_string;
129 190
130 for (int parameter = 0x80000002; parameter <= parameter_end && 191 for (int parameter = 0x80000002; parameter <= parameter_end &&
(...skipping 12 matching lines...) Expand all
143 if (has_sse42()) return SSE42; 204 if (has_sse42()) return SSE42;
144 if (has_sse41()) return SSE41; 205 if (has_sse41()) return SSE41;
145 if (has_ssse3()) return SSSE3; 206 if (has_ssse3()) return SSSE3;
146 if (has_sse3()) return SSE3; 207 if (has_sse3()) return SSE3;
147 if (has_sse2()) return SSE2; 208 if (has_sse2()) return SSE2;
148 if (has_sse()) return SSE; 209 if (has_sse()) return SSE;
149 return PENTIUM; 210 return PENTIUM;
150 } 211 }
151 212
152 } // namespace base 213 } // namespace base
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698