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 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
662 | 662 |
663 // code-stubs-hydrogen.cc | 663 // code-stubs-hydrogen.cc |
664 DEFINE_BOOL(profile_hydrogen_code_stub_compilation, false, | 664 DEFINE_BOOL(profile_hydrogen_code_stub_compilation, false, |
665 "Print the time it takes to lazily compile hydrogen code stubs.") | 665 "Print the time it takes to lazily compile hydrogen code stubs.") |
666 | 666 |
667 DEFINE_BOOL(predictable, false, "enable predictable mode") | 667 DEFINE_BOOL(predictable, false, "enable predictable mode") |
668 DEFINE_NEG_IMPLICATION(predictable, concurrent_recompilation) | 668 DEFINE_NEG_IMPLICATION(predictable, concurrent_recompilation) |
669 DEFINE_NEG_IMPLICATION(predictable, concurrent_osr) | 669 DEFINE_NEG_IMPLICATION(predictable, concurrent_osr) |
670 DEFINE_NEG_IMPLICATION(predictable, concurrent_sweeping) | 670 DEFINE_NEG_IMPLICATION(predictable, concurrent_sweeping) |
671 DEFINE_NEG_IMPLICATION(predictable, parallel_sweeping) | 671 DEFINE_NEG_IMPLICATION(predictable, parallel_sweeping) |
| 672 DEFINE_NEG_IMPLICATION(predictable, job_based_sweeping) |
672 | 673 |
673 | 674 |
674 // | 675 // |
675 // Dev shell flags | 676 // Dev shell flags |
676 // | 677 // |
677 | 678 |
678 DEFINE_BOOL(help, false, "Print usage message, including flags, on console") | 679 DEFINE_BOOL(help, false, "Print usage message, including flags, on console") |
679 DEFINE_BOOL(dump_counters, false, "Dump counters on exit") | 680 DEFINE_BOOL(dump_counters, false, "Dump counters on exit") |
680 | 681 |
681 DEFINE_BOOL(debugger, false, "Enable JavaScript debugger") | 682 DEFINE_BOOL(debugger, false, "Enable JavaScript debugger") |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
936 #undef DEFINE_ALIAS_FLOAT | 937 #undef DEFINE_ALIAS_FLOAT |
937 #undef DEFINE_ALIAS_ARGS | 938 #undef DEFINE_ALIAS_ARGS |
938 | 939 |
939 #undef FLAG_MODE_DECLARE | 940 #undef FLAG_MODE_DECLARE |
940 #undef FLAG_MODE_DEFINE | 941 #undef FLAG_MODE_DEFINE |
941 #undef FLAG_MODE_DEFINE_DEFAULTS | 942 #undef FLAG_MODE_DEFINE_DEFAULTS |
942 #undef FLAG_MODE_META | 943 #undef FLAG_MODE_META |
943 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 944 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
944 | 945 |
945 #undef COMMA | 946 #undef COMMA |
OLD | NEW |