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

Side by Side Diff: source/cpu_id.cc

Issue 1412793006: write to cpu_flags once (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « include/libyuv/version.h ('k') | 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 /* 1 /*
2 * Copyright 2011 The LibYuv Project Authors. All rights reserved. 2 * Copyright 2011 The LibYuv Project Authors. All rights reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 } 191 }
192 #else // nacl does not support getenv(). 192 #else // nacl does not support getenv().
193 static LIBYUV_BOOL TestEnv(const char*) { 193 static LIBYUV_BOOL TestEnv(const char*) {
194 return LIBYUV_FALSE; 194 return LIBYUV_FALSE;
195 } 195 }
196 #endif 196 #endif
197 197
198 LIBYUV_API SAFEBUFFERS 198 LIBYUV_API SAFEBUFFERS
199 int InitCpuFlags(void) { 199 int InitCpuFlags(void) {
200 #if !defined(__pnacl__) && !defined(__CLR_VER) && defined(CPU_X86) 200 #if !defined(__pnacl__) && !defined(__CLR_VER) && defined(CPU_X86)
201 201 int cpu_info;
202 uint32 cpu_info0[4] = { 0, 0, 0, 0 }; 202 uint32 cpu_info0[4] = { 0, 0, 0, 0 };
203 uint32 cpu_info1[4] = { 0, 0, 0, 0 }; 203 uint32 cpu_info1[4] = { 0, 0, 0, 0 };
204 uint32 cpu_info7[4] = { 0, 0, 0, 0 }; 204 uint32 cpu_info7[4] = { 0, 0, 0, 0 };
205 CpuId(0, 0, cpu_info0); 205 CpuId(0, 0, cpu_info0);
206 CpuId(1, 0, cpu_info1); 206 CpuId(1, 0, cpu_info1);
207 if (cpu_info0[0] >= 7) { 207 if (cpu_info0[0] >= 7) {
208 CpuId(7, 0, cpu_info7); 208 CpuId(7, 0, cpu_info7);
209 } 209 }
210 cpu_info_ = ((cpu_info1[3] & 0x04000000) ? kCpuHasSSE2 : 0) | 210 cpu_info = ((cpu_info1[3] & 0x04000000) ? kCpuHasSSE2 : 0) |
fbarchard1 2015/10/20 21:52:20 indent wrong.
fbarchard1 2015/10/20 22:10:14 Done.
211 ((cpu_info1[2] & 0x00000200) ? kCpuHasSSSE3 : 0) | 211 ((cpu_info1[2] & 0x00000200) ? kCpuHasSSSE3 : 0) |
212 ((cpu_info1[2] & 0x00080000) ? kCpuHasSSE41 : 0) | 212 ((cpu_info1[2] & 0x00080000) ? kCpuHasSSE41 : 0) |
213 ((cpu_info1[2] & 0x00100000) ? kCpuHasSSE42 : 0) | 213 ((cpu_info1[2] & 0x00100000) ? kCpuHasSSE42 : 0) |
214 ((cpu_info7[1] & 0x00000200) ? kCpuHasERMS : 0) | 214 ((cpu_info7[1] & 0x00000200) ? kCpuHasERMS : 0) |
215 ((cpu_info1[2] & 0x00001000) ? kCpuHasFMA3 : 0) | 215 ((cpu_info1[2] & 0x00001000) ? kCpuHasFMA3 : 0) |
216 kCpuHasX86; 216 kCpuHasX86;
217 217
218 #ifdef HAS_XGETBV 218 #ifdef HAS_XGETBV
219 // AVX requires CPU has AVX, XSAVE and OSXSave for xgetbv 219 // AVX requires CPU has AVX, XSAVE and OSXSave for xgetbv
220 if ((cpu_info1[2] & 0x1c000000) == 0x1c000000 && // AVX and OSXSave 220 if ((cpu_info1[2] & 0x1c000000) == 0x1c000000 && // AVX and OSXSave
221 !TestEnv("LIBYUV_DISABLE_AVX") && TestOsSaveYmm()) { // Saves YMM. 221 !TestEnv("LIBYUV_DISABLE_AVX") && TestOsSaveYmm()) { // Saves YMM.
222 cpu_info_ |= ((cpu_info7[1] & 0x00000020) ? kCpuHasAVX2 : 0) | 222 cpu_info |= ((cpu_info7[1] & 0x00000020) ? kCpuHasAVX2 : 0) |
223 kCpuHasAVX; 223 kCpuHasAVX;
fbarchard1 2015/10/20 21:52:20 ditto indent.
fbarchard1 2015/10/20 22:10:14 Done.
224 } 224 }
225 #endif 225 #endif
226 // Environment variable overrides for testing. 226 // Environment variable overrides for testing.
227 if (TestEnv("LIBYUV_DISABLE_X86")) { 227 if (TestEnv("LIBYUV_DISABLE_X86")) {
228 cpu_info_ &= ~kCpuHasX86; 228 cpu_info &= ~kCpuHasX86;
229 } 229 }
230 if (TestEnv("LIBYUV_DISABLE_SSE2")) { 230 if (TestEnv("LIBYUV_DISABLE_SSE2")) {
231 cpu_info_ &= ~kCpuHasSSE2; 231 cpu_info &= ~kCpuHasSSE2;
232 } 232 }
233 if (TestEnv("LIBYUV_DISABLE_SSSE3")) { 233 if (TestEnv("LIBYUV_DISABLE_SSSE3")) {
234 cpu_info_ &= ~kCpuHasSSSE3; 234 cpu_info &= ~kCpuHasSSSE3;
235 } 235 }
236 if (TestEnv("LIBYUV_DISABLE_SSE41")) { 236 if (TestEnv("LIBYUV_DISABLE_SSE41")) {
237 cpu_info_ &= ~kCpuHasSSE41; 237 cpu_info &= ~kCpuHasSSE41;
238 } 238 }
239 if (TestEnv("LIBYUV_DISABLE_SSE42")) { 239 if (TestEnv("LIBYUV_DISABLE_SSE42")) {
240 cpu_info_ &= ~kCpuHasSSE42; 240 cpu_info &= ~kCpuHasSSE42;
241 } 241 }
242 if (TestEnv("LIBYUV_DISABLE_AVX2")) { 242 if (TestEnv("LIBYUV_DISABLE_AVX2")) {
243 cpu_info_ &= ~kCpuHasAVX2; 243 cpu_info &= ~kCpuHasAVX2;
244 } 244 }
245 if (TestEnv("LIBYUV_DISABLE_ERMS")) { 245 if (TestEnv("LIBYUV_DISABLE_ERMS")) {
246 cpu_info_ &= ~kCpuHasERMS; 246 cpu_info &= ~kCpuHasERMS;
247 } 247 }
248 if (TestEnv("LIBYUV_DISABLE_FMA3")) { 248 if (TestEnv("LIBYUV_DISABLE_FMA3")) {
249 cpu_info_ &= ~kCpuHasFMA3; 249 cpu_info &= ~kCpuHasFMA3;
250 } 250 }
251 #endif 251 #endif
252 #if defined(__mips__) && defined(__linux__) 252 #if defined(__mips__) && defined(__linux__)
253 // Linux mips parse text file for dsp detect. 253 // Linux mips parse text file for dsp detect.
254 cpu_info_ = MipsCpuCaps("dsp"); // set kCpuHasMIPS_DSP. 254 cpu_info = MipsCpuCaps("dsp"); // set kCpuHasMIPS_DSP.
255 #if defined(__mips_dspr2) 255 #if defined(__mips_dspr2)
256 cpu_info_ |= kCpuHasMIPS_DSPR2; 256 cpu_info |= kCpuHasMIPS_DSPR2;
257 #endif 257 #endif
258 cpu_info_ |= kCpuHasMIPS; 258 cpu_info |= kCpuHasMIPS;
259 259
260 if (getenv("LIBYUV_DISABLE_MIPS")) { 260 if (getenv("LIBYUV_DISABLE_MIPS")) {
261 cpu_info_ &= ~kCpuHasMIPS; 261 cpu_info &= ~kCpuHasMIPS;
262 } 262 }
263 if (getenv("LIBYUV_DISABLE_MIPS_DSP")) { 263 if (getenv("LIBYUV_DISABLE_MIPS_DSP")) {
264 cpu_info_ &= ~kCpuHasMIPS_DSP; 264 cpu_info &= ~kCpuHasMIPS_DSP;
265 } 265 }
266 if (getenv("LIBYUV_DISABLE_MIPS_DSPR2")) { 266 if (getenv("LIBYUV_DISABLE_MIPS_DSPR2")) {
267 cpu_info_ &= ~kCpuHasMIPS_DSPR2; 267 cpu_info &= ~kCpuHasMIPS_DSPR2;
268 } 268 }
269 #endif 269 #endif
270 #if defined(__arm__) || defined(__aarch64__) 270 #if defined(__arm__) || defined(__aarch64__)
271 // gcc -mfpu=neon defines __ARM_NEON__ 271 // gcc -mfpu=neon defines __ARM_NEON__
272 // __ARM_NEON__ generates code that requires Neon. NaCL also requires Neon. 272 // __ARM_NEON__ generates code that requires Neon. NaCL also requires Neon.
273 // For Linux, /proc/cpuinfo can be tested but without that assume Neon. 273 // For Linux, /proc/cpuinfo can be tested but without that assume Neon.
274 #if defined(__ARM_NEON__) || defined(__native_client__) || !defined(__linux__) 274 #if defined(__ARM_NEON__) || defined(__native_client__) || !defined(__linux__)
275 cpu_info_ = kCpuHasNEON; 275 cpu_info = kCpuHasNEON;
276 // For aarch64(arm64), /proc/cpuinfo's feature is not complete, e.g. no neon 276 // For aarch64(arm64), /proc/cpuinfo's feature is not complete, e.g. no neon
277 // flag in it. 277 // flag in it.
278 // So for aarch64, neon enabling is hard coded here. 278 // So for aarch64, neon enabling is hard coded here.
279 #endif 279 #endif
280 #if defined(__aarch64__) 280 #if defined(__aarch64__)
281 cpu_info_ = kCpuHasNEON; 281 cpu_info = kCpuHasNEON;
282 #else 282 #else
283 // Linux arm parse text file for neon detect. 283 // Linux arm parse text file for neon detect.
284 cpu_info_ = ArmCpuCaps("/proc/cpuinfo"); 284 cpu_info = ArmCpuCaps("/proc/cpuinfo");
285 #endif 285 #endif
286 cpu_info_ |= kCpuHasARM; 286 cpu_info |= kCpuHasARM;
287 if (TestEnv("LIBYUV_DISABLE_NEON")) { 287 if (TestEnv("LIBYUV_DISABLE_NEON")) {
288 cpu_info_ &= ~kCpuHasNEON; 288 cpu_info &= ~kCpuHasNEON;
289 } 289 }
290 #endif // __arm__ 290 #endif // __arm__
291 if (TestEnv("LIBYUV_DISABLE_ASM")) { 291 if (TestEnv("LIBYUV_DISABLE_ASM")) {
292 cpu_info_ = 0; 292 cpu_info = 0;
293 } 293 }
294 cpu_info_ = cpu_info;
294 return cpu_info_; 295 return cpu_info_;
295 } 296 }
296 297
297 LIBYUV_API 298 LIBYUV_API
298 void MaskCpuFlags(int enable_flags) { 299 void MaskCpuFlags(int enable_flags) {
299 cpu_info_ = InitCpuFlags() & enable_flags; 300 cpu_info_ = InitCpuFlags() & enable_flags;
300 } 301 }
301 302
302 #ifdef __cplusplus 303 #ifdef __cplusplus
303 } // extern "C" 304 } // extern "C"
304 } // namespace libyuv 305 } // namespace libyuv
305 #endif 306 #endif
OLDNEW
« no previous file with comments | « include/libyuv/version.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698