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

Side by Side Diff: src/base/cpu.cc

Issue 853703002: [x86] Avoid memory form of PUSH/CALL for ATOM. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: remove the CALL change to ia32 Created 5 years, 11 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
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project 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 "src/base/cpu.h" 5 #include "src/base/cpu.h"
6 6
7 #if V8_LIBC_MSVCRT 7 #if V8_LIBC_MSVCRT
8 #include <intrin.h> // __cpuid() 8 #include <intrin.h> // __cpuid()
9 #endif 9 #endif
10 #if V8_OS_LINUX 10 #if V8_OS_LINUX
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 has_fpu_(false), 305 has_fpu_(false),
306 has_cmov_(false), 306 has_cmov_(false),
307 has_sahf_(false), 307 has_sahf_(false),
308 has_mmx_(false), 308 has_mmx_(false),
309 has_sse_(false), 309 has_sse_(false),
310 has_sse2_(false), 310 has_sse2_(false),
311 has_sse3_(false), 311 has_sse3_(false),
312 has_ssse3_(false), 312 has_ssse3_(false),
313 has_sse41_(false), 313 has_sse41_(false),
314 has_sse42_(false), 314 has_sse42_(false),
315 is_atom_(false),
315 has_avx_(false), 316 has_avx_(false),
316 has_fma3_(false), 317 has_fma3_(false),
317 has_idiva_(false), 318 has_idiva_(false),
318 has_neon_(false), 319 has_neon_(false),
319 has_thumb2_(false), 320 has_thumb2_(false),
320 has_vfp_(false), 321 has_vfp_(false),
321 has_vfp3_(false), 322 has_vfp3_(false),
322 has_vfp3_d32_(false), 323 has_vfp3_d32_(false),
323 is_fp64_mode_(false) { 324 is_fp64_mode_(false) {
324 memcpy(vendor_, "Unknown", 8); 325 memcpy(vendor_, "Unknown", 8);
(...skipping 30 matching lines...) Expand all
355 has_cmov_ = (cpu_info[3] & 0x00008000) != 0; 356 has_cmov_ = (cpu_info[3] & 0x00008000) != 0;
356 has_mmx_ = (cpu_info[3] & 0x00800000) != 0; 357 has_mmx_ = (cpu_info[3] & 0x00800000) != 0;
357 has_sse_ = (cpu_info[3] & 0x02000000) != 0; 358 has_sse_ = (cpu_info[3] & 0x02000000) != 0;
358 has_sse2_ = (cpu_info[3] & 0x04000000) != 0; 359 has_sse2_ = (cpu_info[3] & 0x04000000) != 0;
359 has_sse3_ = (cpu_info[2] & 0x00000001) != 0; 360 has_sse3_ = (cpu_info[2] & 0x00000001) != 0;
360 has_ssse3_ = (cpu_info[2] & 0x00000200) != 0; 361 has_ssse3_ = (cpu_info[2] & 0x00000200) != 0;
361 has_sse41_ = (cpu_info[2] & 0x00080000) != 0; 362 has_sse41_ = (cpu_info[2] & 0x00080000) != 0;
362 has_sse42_ = (cpu_info[2] & 0x00100000) != 0; 363 has_sse42_ = (cpu_info[2] & 0x00100000) != 0;
363 has_avx_ = (cpu_info[2] & 0x10000000) != 0; 364 has_avx_ = (cpu_info[2] & 0x10000000) != 0;
364 if (has_avx_) has_fma3_ = (cpu_info[2] & 0x00001000) != 0; 365 if (has_avx_) has_fma3_ = (cpu_info[2] & 0x00001000) != 0;
366
367 if (family_ == 0x6) {
368 switch (model_) {
369 case 0x1c: // SLT
370 case 0x26:
371 case 0x36:
372 case 0x27:
373 case 0x35:
374 case 0x37: // SLM
375 case 0x4a:
376 case 0x4d:
377 is_atom_ = true;
378 }
379 }
365 } 380 }
366 381
367 #if V8_HOST_ARCH_IA32 382 #if V8_HOST_ARCH_IA32
368 // SAHF is always available in compat/legacy mode, 383 // SAHF is always available in compat/legacy mode,
369 has_sahf_ = true; 384 has_sahf_ = true;
370 #else 385 #else
371 // Query extended IDs. 386 // Query extended IDs.
372 __cpuid(cpu_info, 0x80000000); 387 __cpuid(cpu_info, 0x80000000);
373 unsigned num_ext_ids = cpu_info[0]; 388 unsigned num_ext_ids = cpu_info[0];
374 389
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
577 if (end == part) { 592 if (end == part) {
578 part_ = 0; 593 part_ = 0;
579 } 594 }
580 delete[] part; 595 delete[] part;
581 } 596 }
582 597
583 #endif 598 #endif
584 } 599 }
585 600
586 } } // namespace v8::base 601 } } // namespace v8::base
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698