Chromium Code Reviews| 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> | 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_WIN) | |
| 15 #include "base/win/windows_version.h" | |
| 16 #endif | |
| 17 | |
| 18 #if defined(OS_LINUX) | |
| 19 #include "base/file_util.h" | |
| 20 #endif | |
| 21 | |
| 22 #if defined(OS_MACOSX) | |
| 23 #include "base/mac/mac_util.h" | |
| 24 #include <sys/param.h> | |
| 25 #include <sys/sysctl.h> | |
| 26 #endif | |
| 27 | |
| 14 #if defined(_MSC_VER) | 28 #if defined(_MSC_VER) |
| 15 #include <intrin.h> | 29 #include <intrin.h> |
| 16 #endif | 30 #endif |
| 17 #endif | 31 #endif |
| 18 | 32 |
| 19 namespace base { | 33 namespace base { |
| 20 | 34 |
| 21 CPU::CPU() | 35 CPU::CPU() |
| 22 : type_(0), | 36 : type_(0), |
| 23 family_(0), | 37 family_(0), |
| 24 model_(0), | 38 model_(0), |
| 25 stepping_(0), | 39 stepping_(0), |
| 26 ext_model_(0), | 40 ext_model_(0), |
| 27 ext_family_(0), | 41 ext_family_(0), |
| 28 has_mmx_(false), | 42 has_mmx_(false), |
| 29 has_sse_(false), | 43 has_sse_(false), |
| 30 has_sse2_(false), | 44 has_sse2_(false), |
| 31 has_sse3_(false), | 45 has_sse3_(false), |
| 32 has_ssse3_(false), | 46 has_ssse3_(false), |
| 33 has_sse41_(false), | 47 has_sse41_(false), |
| 34 has_sse42_(false), | 48 has_sse42_(false), |
| 49 has_avx_(false), | |
| 35 cpu_vendor_("unknown") { | 50 cpu_vendor_("unknown") { |
| 36 Initialize(); | 51 Initialize(); |
| 37 } | 52 } |
| 38 | 53 |
| 39 #if defined(ARCH_CPU_X86_FAMILY) | 54 #if defined(ARCH_CPU_X86_FAMILY) |
| 40 #ifndef _MSC_VER | 55 #ifndef _MSC_VER |
| 41 | 56 |
| 42 #if defined(__pic__) && defined(__i386__) | 57 #if defined(__pic__) && defined(__i386__) |
| 43 | 58 |
| 44 void __cpuid(int cpu_info[4], int info_type) { | 59 void __cpuid(int cpu_info[4], int info_type) { |
| (...skipping 29 matching lines...) Expand all Loading... | |
| 74 void __cpuidex(int cpu_info[4], int info_type, int info_index) { | 89 void __cpuidex(int cpu_info[4], int info_type, int info_index) { |
| 75 __asm__ volatile ( | 90 __asm__ volatile ( |
| 76 "cpuid \n\t" | 91 "cpuid \n\t" |
| 77 : "=a"(cpu_info[0]), "=b"(cpu_info[1]), "=c"(cpu_info[2]), "=d"(cpu_info[3]) | 92 : "=a"(cpu_info[0]), "=b"(cpu_info[1]), "=c"(cpu_info[2]), "=d"(cpu_info[3]) |
| 78 : "a"(info_type), "c"(info_index) | 93 : "a"(info_type), "c"(info_index) |
| 79 ); | 94 ); |
| 80 } | 95 } |
| 81 | 96 |
| 82 #endif | 97 #endif |
| 83 #endif // _MSC_VER | 98 #endif // _MSC_VER |
| 99 | |
| 100 #if defined(OS_WIN) | |
| 101 | |
| 102 bool OSHasAVXSupport() { | |
| 103 base::win::OSInfo* info = base::win::OSInfo::GetInstance(); | |
| 104 | |
| 105 // Windows 7 SP1 added support for AVX. | |
| 106 return info->version() > base::win::VERSION_VISTA || | |
|
apatrick_chromium
2013/03/07 21:22:47
This is checking for Windows 7 all versions or Vis
| |
| 107 info->version() == base::win::VERSION_VISTA && | |
| 108 info->service_pack().major >= 1; | |
| 109 } | |
| 110 | |
| 111 #elif defined(OS_LINUX) | |
| 112 | |
| 113 bool OSHasAVXSupport() { | |
| 114 std::string buffer; | |
| 115 if (!file_util::ReadFileToString(base::FilePath("/proc/cpuinfo"), &buffer)) | |
|
DaleCurtis
2013/03/07 21:12:11
As mentioned earlier, I'm pretty sure this will ca
whunt
2013/03/07 21:17:08
With this patch, Chrome *appears* to run correctly
DaleCurtis
2013/03/07 21:33:36
Ah looks like it doesn't crash but instead just fa
whunt
2013/03/07 21:49:03
I am neither very knowledgeable about linux or the
DaleCurtis
2013/03/07 21:57:43
Looks like you can use the xgetbv intrinsic once t
whunt
2013/03/07 23:28:54
awesome suggestion, done
| |
| 116 return false; | |
| 117 | |
| 118 // Scan through /proc/cpuinfo to see if the kernel supports AVX. | |
| 119 return buffer.find("avx") != std::string::npos; | |
| 120 } | |
| 121 | |
| 122 #elif defined(OS_MACOSX) | |
| 123 | |
| 124 bool OSHasAVXSupport() { | |
| 125 // AVX support was added in 10.6.8 | |
| 126 // This check is conservative due to the fact that IsOS... doesn't | |
| 127 // have minor versions | |
| 128 return base::mac::IsOSLionOrLater(); | |
| 129 } | |
| 130 | |
| 131 #else | |
| 132 bool OSHasAVXSupport() { | |
| 133 return false; | |
| 134 } | |
| 135 | |
| 136 #endif | |
| 84 #endif // ARCH_CPU_X86_FAMILY | 137 #endif // ARCH_CPU_X86_FAMILY |
| 85 | 138 |
| 86 void CPU::Initialize() { | 139 void CPU::Initialize() { |
| 87 #if defined(ARCH_CPU_X86_FAMILY) | 140 #if defined(ARCH_CPU_X86_FAMILY) |
| 88 int cpu_info[4] = {-1}; | 141 int cpu_info[4] = {-1}; |
| 89 char cpu_string[48]; | 142 char cpu_string[48]; |
| 90 | 143 |
| 91 // __cpuid with an InfoType argument of 0 returns the number of | 144 // __cpuid with an InfoType argument of 0 returns the number of |
| 92 // valid Ids in CPUInfo[0] and the CPU identification string in | 145 // valid Ids in CPUInfo[0] and the CPU identification string in |
| 93 // the other three array elements. The CPU identification string is | 146 // the other three array elements. The CPU identification string is |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 110 type_ = (cpu_info[0] >> 12) & 0x3; | 163 type_ = (cpu_info[0] >> 12) & 0x3; |
| 111 ext_model_ = (cpu_info[0] >> 16) & 0xf; | 164 ext_model_ = (cpu_info[0] >> 16) & 0xf; |
| 112 ext_family_ = (cpu_info[0] >> 20) & 0xff; | 165 ext_family_ = (cpu_info[0] >> 20) & 0xff; |
| 113 has_mmx_ = (cpu_info[3] & 0x00800000) != 0; | 166 has_mmx_ = (cpu_info[3] & 0x00800000) != 0; |
| 114 has_sse_ = (cpu_info[3] & 0x02000000) != 0; | 167 has_sse_ = (cpu_info[3] & 0x02000000) != 0; |
| 115 has_sse2_ = (cpu_info[3] & 0x04000000) != 0; | 168 has_sse2_ = (cpu_info[3] & 0x04000000) != 0; |
| 116 has_sse3_ = (cpu_info[2] & 0x00000001) != 0; | 169 has_sse3_ = (cpu_info[2] & 0x00000001) != 0; |
| 117 has_ssse3_ = (cpu_info[2] & 0x00000200) != 0; | 170 has_ssse3_ = (cpu_info[2] & 0x00000200) != 0; |
| 118 has_sse41_ = (cpu_info[2] & 0x00080000) != 0; | 171 has_sse41_ = (cpu_info[2] & 0x00080000) != 0; |
| 119 has_sse42_ = (cpu_info[2] & 0x00100000) != 0; | 172 has_sse42_ = (cpu_info[2] & 0x00100000) != 0; |
| 120 has_avx_ = (cpu_info[2] & 0x10000000) != 0; | 173 has_avx_ = (cpu_info[2] & 0x10000000) != 0 && OSHasAVXSupport(); |
| 121 } | 174 } |
| 122 | 175 |
| 123 // Get the brand string of the cpu. | 176 // Get the brand string of the cpu. |
| 124 __cpuid(cpu_info, 0x80000000); | 177 __cpuid(cpu_info, 0x80000000); |
| 125 const int parameter_end = 0x80000004; | 178 const int parameter_end = 0x80000004; |
| 126 | 179 |
| 127 if (cpu_info[0] >= parameter_end) { | 180 if (cpu_info[0] >= parameter_end) { |
| 128 char* cpu_string_ptr = cpu_string; | 181 char* cpu_string_ptr = cpu_string; |
| 129 | 182 |
| 130 for (int parameter = 0x80000002; parameter <= parameter_end && | 183 for (int parameter = 0x80000002; parameter <= parameter_end && |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 143 if (has_sse42()) return SSE42; | 196 if (has_sse42()) return SSE42; |
| 144 if (has_sse41()) return SSE41; | 197 if (has_sse41()) return SSE41; |
| 145 if (has_ssse3()) return SSSE3; | 198 if (has_ssse3()) return SSSE3; |
| 146 if (has_sse3()) return SSE3; | 199 if (has_sse3()) return SSE3; |
| 147 if (has_sse2()) return SSE2; | 200 if (has_sse2()) return SSE2; |
| 148 if (has_sse()) return SSE; | 201 if (has_sse()) return SSE; |
| 149 return PENTIUM; | 202 return PENTIUM; |
| 150 } | 203 } |
| 151 | 204 |
| 152 } // namespace base | 205 } // namespace base |
| OLD | NEW |