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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 DEFINE_MAYBE_BOOL(enable_vfp3, "deprecated (use --arm_arch instead)") | 582 DEFINE_MAYBE_BOOL(enable_vfp3, "deprecated (use --arm_arch instead)") |
583 DEFINE_MAYBE_BOOL(enable_32dregs, "deprecated (use --arm_arch instead)") | 583 DEFINE_MAYBE_BOOL(enable_32dregs, "deprecated (use --arm_arch instead)") |
584 DEFINE_MAYBE_BOOL(enable_neon, "deprecated (use --arm_arch instead)") | 584 DEFINE_MAYBE_BOOL(enable_neon, "deprecated (use --arm_arch instead)") |
585 DEFINE_MAYBE_BOOL(enable_sudiv, "deprecated (use --arm_arch instead)") | 585 DEFINE_MAYBE_BOOL(enable_sudiv, "deprecated (use --arm_arch instead)") |
586 DEFINE_MAYBE_BOOL(enable_armv8, "deprecated (use --arm_arch instead)") | 586 DEFINE_MAYBE_BOOL(enable_armv8, "deprecated (use --arm_arch instead)") |
587 | 587 |
588 // regexp-macro-assembler-*.cc | 588 // regexp-macro-assembler-*.cc |
589 DEFINE_BOOL(enable_regexp_unaligned_accesses, true, | 589 DEFINE_BOOL(enable_regexp_unaligned_accesses, true, |
590 "enable unaligned accesses for the regexp engine") | 590 "enable unaligned accesses for the regexp engine") |
591 | 591 |
| 592 // api.cc |
| 593 DEFINE_BOOL(script_streaming, true, "enable parsing on background") |
| 594 |
592 // bootstrapper.cc | 595 // bootstrapper.cc |
593 DEFINE_STRING(expose_natives_as, NULL, "expose natives in global object") | 596 DEFINE_STRING(expose_natives_as, NULL, "expose natives in global object") |
594 DEFINE_STRING(expose_debug_as, NULL, "expose debug in global object") | 597 DEFINE_STRING(expose_debug_as, NULL, "expose debug in global object") |
595 DEFINE_BOOL(expose_free_buffer, false, "expose freeBuffer extension") | 598 DEFINE_BOOL(expose_free_buffer, false, "expose freeBuffer extension") |
596 DEFINE_BOOL(expose_gc, false, "expose gc extension") | 599 DEFINE_BOOL(expose_gc, false, "expose gc extension") |
597 DEFINE_STRING(expose_gc_as, NULL, | 600 DEFINE_STRING(expose_gc_as, NULL, |
598 "expose gc extension under the specified name") | 601 "expose gc extension under the specified name") |
599 DEFINE_IMPLICATION(expose_gc_as, expose_gc) | 602 DEFINE_IMPLICATION(expose_gc_as, expose_gc) |
600 DEFINE_BOOL(expose_externalize_string, false, | 603 DEFINE_BOOL(expose_externalize_string, false, |
601 "expose externalize string extension") | 604 "expose externalize string extension") |
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1211 #undef DEFINE_ALIAS_FLOAT | 1214 #undef DEFINE_ALIAS_FLOAT |
1212 #undef DEFINE_ALIAS_ARGS | 1215 #undef DEFINE_ALIAS_ARGS |
1213 | 1216 |
1214 #undef FLAG_MODE_DECLARE | 1217 #undef FLAG_MODE_DECLARE |
1215 #undef FLAG_MODE_DEFINE | 1218 #undef FLAG_MODE_DEFINE |
1216 #undef FLAG_MODE_DEFINE_DEFAULTS | 1219 #undef FLAG_MODE_DEFINE_DEFAULTS |
1217 #undef FLAG_MODE_META | 1220 #undef FLAG_MODE_META |
1218 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1221 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
1219 | 1222 |
1220 #undef COMMA | 1223 #undef COMMA |
OLD | NEW |