| OLD | NEW |
| 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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 "instruction pairs (ARM only)") | 379 "instruction pairs (ARM only)") |
| 380 DEFINE_bool(enable_unaligned_accesses, true, | 380 DEFINE_bool(enable_unaligned_accesses, true, |
| 381 "enable unaligned accesses for ARMv7 (ARM only)") | 381 "enable unaligned accesses for ARMv7 (ARM only)") |
| 382 DEFINE_bool(enable_32dregs, ENABLE_32DREGS_DEFAULT, | 382 DEFINE_bool(enable_32dregs, ENABLE_32DREGS_DEFAULT, |
| 383 "enable use of d16-d31 registers on ARM - this requires VFP3") | 383 "enable use of d16-d31 registers on ARM - this requires VFP3") |
| 384 DEFINE_bool(enable_vldr_imm, false, | 384 DEFINE_bool(enable_vldr_imm, false, |
| 385 "enable use of constant pools for double immediate (ARM only)") | 385 "enable use of constant pools for double immediate (ARM only)") |
| 386 DEFINE_bool(force_long_branches, false, | 386 DEFINE_bool(force_long_branches, false, |
| 387 "force all emitted branches to be in long mode (MIPS only)") | 387 "force all emitted branches to be in long mode (MIPS only)") |
| 388 | 388 |
| 389 // cpu-arm64.cc |
| 390 DEFINE_bool(enable_always_align_csp, true, |
| 391 "enable alignment of csp to 16 bytes on platforms which prefer " |
| 392 "the register to always be aligned (ARM64 only)") |
| 393 |
| 389 // bootstrapper.cc | 394 // bootstrapper.cc |
| 390 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") | 395 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") |
| 391 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") | 396 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") |
| 392 DEFINE_bool(expose_free_buffer, false, "expose freeBuffer extension") | 397 DEFINE_bool(expose_free_buffer, false, "expose freeBuffer extension") |
| 393 DEFINE_bool(expose_gc, false, "expose gc extension") | 398 DEFINE_bool(expose_gc, false, "expose gc extension") |
| 394 DEFINE_string(expose_gc_as, NULL, | 399 DEFINE_string(expose_gc_as, NULL, |
| 395 "expose gc extension under the specified name") | 400 "expose gc extension under the specified name") |
| 396 DEFINE_implication(expose_gc_as, expose_gc) | 401 DEFINE_implication(expose_gc_as, expose_gc) |
| 397 DEFINE_bool(expose_externalize_string, false, | 402 DEFINE_bool(expose_externalize_string, false, |
| 398 "expose externalize string extension") | 403 "expose externalize string extension") |
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 905 #undef DEFINE_ALIAS_float | 910 #undef DEFINE_ALIAS_float |
| 906 #undef DEFINE_ALIAS_args | 911 #undef DEFINE_ALIAS_args |
| 907 | 912 |
| 908 #undef FLAG_MODE_DECLARE | 913 #undef FLAG_MODE_DECLARE |
| 909 #undef FLAG_MODE_DEFINE | 914 #undef FLAG_MODE_DEFINE |
| 910 #undef FLAG_MODE_DEFINE_DEFAULTS | 915 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 911 #undef FLAG_MODE_META | 916 #undef FLAG_MODE_META |
| 912 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 917 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 913 | 918 |
| 914 #undef COMMA | 919 #undef COMMA |
| OLD | NEW |