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

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 xgetbv to detect OS support for AVX 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
(...skipping 14 matching lines...) Expand all
25 stepping_(0), 25 stepping_(0),
26 ext_model_(0), 26 ext_model_(0),
27 ext_family_(0), 27 ext_family_(0),
28 has_mmx_(false), 28 has_mmx_(false),
29 has_sse_(false), 29 has_sse_(false),
30 has_sse2_(false), 30 has_sse2_(false),
31 has_sse3_(false), 31 has_sse3_(false),
32 has_ssse3_(false), 32 has_ssse3_(false),
33 has_sse41_(false), 33 has_sse41_(false),
34 has_sse42_(false), 34 has_sse42_(false),
35 has_avx_(false),
35 cpu_vendor_("unknown") { 36 cpu_vendor_("unknown") {
36 Initialize(); 37 Initialize();
37 } 38 }
38 39
39 #if defined(ARCH_CPU_X86_FAMILY) 40 #if defined(ARCH_CPU_X86_FAMILY)
40 #ifndef _MSC_VER 41 #ifndef _MSC_VER
41 42
42 #if defined(__pic__) && defined(__i386__) 43 #if defined(__pic__) && defined(__i386__)
43 44
44 void __cpuid(int cpu_info[4], int info_type) { 45 void __cpuid(int cpu_info[4], int info_type) {
(...skipping 28 matching lines...) Expand all
73 74
74 void __cpuidex(int cpu_info[4], int info_type, int info_index) { 75 void __cpuidex(int cpu_info[4], int info_type, int info_index) {
75 __asm__ volatile ( 76 __asm__ volatile (
76 "cpuid \n\t" 77 "cpuid \n\t"
77 : "=a"(cpu_info[0]), "=b"(cpu_info[1]), "=c"(cpu_info[2]), "=d"(cpu_info[3]) 78 : "=a"(cpu_info[0]), "=b"(cpu_info[1]), "=c"(cpu_info[2]), "=d"(cpu_info[3])
78 : "a"(info_type), "c"(info_index) 79 : "a"(info_type), "c"(info_index)
79 ); 80 );
80 } 81 }
81 82
82 #endif 83 #endif
84
85 unsigned long long _xgetbv(unsigned int xcr) {
86 unsigned int eax, edx;
87 __asm__ volatile (
88 ".byte 0x0f, 0x01, 0xd0"
89 : "=a"(eax), "=d"(edx)
90 : "c" (xcr)
91 );
92 return static_cast<unsigned long long>(eax) ^
93 static_cast<unsigned long long>(edx) << 32;
94 }
83 #endif // _MSC_VER 95 #endif // _MSC_VER
84 #endif // ARCH_CPU_X86_FAMILY 96 #endif // ARCH_CPU_X86_FAMILY
85 97
86 void CPU::Initialize() { 98 void CPU::Initialize() {
87 #if defined(ARCH_CPU_X86_FAMILY) 99 #if defined(ARCH_CPU_X86_FAMILY)
88 int cpu_info[4] = {-1}; 100 int cpu_info[4] = {-1};
89 char cpu_string[48]; 101 char cpu_string[48];
90 102
91 // __cpuid with an InfoType argument of 0 returns the number of 103 // __cpuid with an InfoType argument of 0 returns the number of
92 // valid Ids in CPUInfo[0] and the CPU identification string in 104 // valid Ids in CPUInfo[0] and the CPU identification string in
(...skipping 17 matching lines...) Expand all
110 type_ = (cpu_info[0] >> 12) & 0x3; 122 type_ = (cpu_info[0] >> 12) & 0x3;
111 ext_model_ = (cpu_info[0] >> 16) & 0xf; 123 ext_model_ = (cpu_info[0] >> 16) & 0xf;
112 ext_family_ = (cpu_info[0] >> 20) & 0xff; 124 ext_family_ = (cpu_info[0] >> 20) & 0xff;
113 has_mmx_ = (cpu_info[3] & 0x00800000) != 0; 125 has_mmx_ = (cpu_info[3] & 0x00800000) != 0;
114 has_sse_ = (cpu_info[3] & 0x02000000) != 0; 126 has_sse_ = (cpu_info[3] & 0x02000000) != 0;
115 has_sse2_ = (cpu_info[3] & 0x04000000) != 0; 127 has_sse2_ = (cpu_info[3] & 0x04000000) != 0;
116 has_sse3_ = (cpu_info[2] & 0x00000001) != 0; 128 has_sse3_ = (cpu_info[2] & 0x00000001) != 0;
117 has_ssse3_ = (cpu_info[2] & 0x00000200) != 0; 129 has_ssse3_ = (cpu_info[2] & 0x00000200) != 0;
118 has_sse41_ = (cpu_info[2] & 0x00080000) != 0; 130 has_sse41_ = (cpu_info[2] & 0x00080000) != 0;
119 has_sse42_ = (cpu_info[2] & 0x00100000) != 0; 131 has_sse42_ = (cpu_info[2] & 0x00100000) != 0;
120 has_avx_ = (cpu_info[2] & 0x10000000) != 0; 132 has_avx_ = (cpu_info[2] & 0x10000000) != 0 && (_xgetbv(0) & 6) == 6;
DaleCurtis 2013/03/07 23:37:15 I think this needs #include <immintrin.h> on Windo
apatrick_chromium 2013/03/08 00:39:41 This says that it need Visual Studio 2010 SP1, whi
whunt 2013/03/08 18:30:32 XSAVE/XRSTOR are required for SSE to work at all a
whunt 2013/03/08 18:30:32 <intrin.h> should include <immintrin.h> I've only
121 } 133 }
122 134
123 // Get the brand string of the cpu. 135 // Get the brand string of the cpu.
124 __cpuid(cpu_info, 0x80000000); 136 __cpuid(cpu_info, 0x80000000);
125 const int parameter_end = 0x80000004; 137 const int parameter_end = 0x80000004;
126 138
127 if (cpu_info[0] >= parameter_end) { 139 if (cpu_info[0] >= parameter_end) {
128 char* cpu_string_ptr = cpu_string; 140 char* cpu_string_ptr = cpu_string;
129 141
130 for (int parameter = 0x80000002; parameter <= parameter_end && 142 for (int parameter = 0x80000002; parameter <= parameter_end &&
(...skipping 12 matching lines...) Expand all
143 if (has_sse42()) return SSE42; 155 if (has_sse42()) return SSE42;
144 if (has_sse41()) return SSE41; 156 if (has_sse41()) return SSE41;
145 if (has_ssse3()) return SSSE3; 157 if (has_ssse3()) return SSSE3;
146 if (has_sse3()) return SSE3; 158 if (has_sse3()) return SSE3;
147 if (has_sse2()) return SSE2; 159 if (has_sse2()) return SSE2;
148 if (has_sse()) return SSE; 160 if (has_sse()) return SSE;
149 return PENTIUM; 161 return PENTIUM;
150 } 162 }
151 163
152 } // namespace base 164 } // 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