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

Side by Side Diff: src/flag-definitions.h

Issue 809003002: x86: enable check of Atom (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years 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 | « src/base/cpu.cc ('k') | src/globals.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 // This file defines all of the flags. It is separated into different section, 5 // This file defines all of the flags. It is separated into different section,
6 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the 6 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the
7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'. 7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'.
8 // 8 //
9 // This include does not have a guard, because it is a template-style include, 9 // This include does not have a guard, because it is a template-style include,
10 // which can be included multiple times in different modes. It expects to have 10 // which can be included multiple times in different modes. It expects to have
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 // assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc 430 // assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc
431 DEFINE_BOOL(debug_code, false, "generate extra code (assertions) for debugging") 431 DEFINE_BOOL(debug_code, false, "generate extra code (assertions) for debugging")
432 DEFINE_BOOL(code_comments, false, "emit comments in code disassembly") 432 DEFINE_BOOL(code_comments, false, "emit comments in code disassembly")
433 DEFINE_BOOL(enable_sse3, true, "enable use of SSE3 instructions if available") 433 DEFINE_BOOL(enable_sse3, true, "enable use of SSE3 instructions if available")
434 DEFINE_BOOL(enable_sse4_1, true, 434 DEFINE_BOOL(enable_sse4_1, true,
435 "enable use of SSE4.1 instructions if available") 435 "enable use of SSE4.1 instructions if available")
436 DEFINE_BOOL(enable_sahf, true, 436 DEFINE_BOOL(enable_sahf, true,
437 "enable use of SAHF instruction if available (X64 only)") 437 "enable use of SAHF instruction if available (X64 only)")
438 DEFINE_BOOL(enable_avx, true, "enable use of AVX instructions if available") 438 DEFINE_BOOL(enable_avx, true, "enable use of AVX instructions if available")
439 DEFINE_BOOL(enable_fma3, true, "enable use of FMA3 instructions if available") 439 DEFINE_BOOL(enable_fma3, true, "enable use of FMA3 instructions if available")
440 DEFINE_BOOL(enable_atom, true,
441 "enable specific optimization for Atom if available")
440 DEFINE_BOOL(enable_vfp3, ENABLE_VFP3_DEFAULT, 442 DEFINE_BOOL(enable_vfp3, ENABLE_VFP3_DEFAULT,
441 "enable use of VFP3 instructions if available") 443 "enable use of VFP3 instructions if available")
442 DEFINE_BOOL(enable_armv7, ENABLE_ARMV7_DEFAULT, 444 DEFINE_BOOL(enable_armv7, ENABLE_ARMV7_DEFAULT,
443 "enable use of ARMv7 instructions if available (ARM only)") 445 "enable use of ARMv7 instructions if available (ARM only)")
444 DEFINE_BOOL(enable_armv8, ENABLE_ARMV8_DEFAULT, 446 DEFINE_BOOL(enable_armv8, ENABLE_ARMV8_DEFAULT,
445 "enable use of ARMv8 instructions if available (ARM 32-bit only)") 447 "enable use of ARMv8 instructions if available (ARM 32-bit only)")
446 DEFINE_BOOL(enable_neon, ENABLE_NEON_DEFAULT, 448 DEFINE_BOOL(enable_neon, ENABLE_NEON_DEFAULT,
447 "enable use of NEON instructions if available (ARM only)") 449 "enable use of NEON instructions if available (ARM only)")
448 DEFINE_BOOL(enable_sudiv, true, 450 DEFINE_BOOL(enable_sudiv, true,
449 "enable use of SDIV and UDIV instructions if available (ARM only)") 451 "enable use of SDIV and UDIV instructions if available (ARM only)")
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after
1000 #undef DEFINE_ALIAS_FLOAT 1002 #undef DEFINE_ALIAS_FLOAT
1001 #undef DEFINE_ALIAS_ARGS 1003 #undef DEFINE_ALIAS_ARGS
1002 1004
1003 #undef FLAG_MODE_DECLARE 1005 #undef FLAG_MODE_DECLARE
1004 #undef FLAG_MODE_DEFINE 1006 #undef FLAG_MODE_DEFINE
1005 #undef FLAG_MODE_DEFINE_DEFAULTS 1007 #undef FLAG_MODE_DEFINE_DEFAULTS
1006 #undef FLAG_MODE_META 1008 #undef FLAG_MODE_META
1007 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1009 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1008 1010
1009 #undef COMMA 1011 #undef COMMA
OLDNEW
« no previous file with comments | « src/base/cpu.cc ('k') | src/globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698