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