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 699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
710 "file in which to serialize heap") | 710 "file in which to serialize heap") |
711 #endif | 711 #endif |
712 | 712 |
713 // mksnapshot.cc | 713 // mksnapshot.cc |
714 DEFINE_STRING(extra_code, NULL, | 714 DEFINE_STRING(extra_code, NULL, |
715 "A filename with extra code to be included in" | 715 "A filename with extra code to be included in" |
716 " the snapshot (mksnapshot only)") | 716 " the snapshot (mksnapshot only)") |
717 DEFINE_STRING(raw_file, NULL, | 717 DEFINE_STRING(raw_file, NULL, |
718 "A file to write the raw snapshot bytes to. " | 718 "A file to write the raw snapshot bytes to. " |
719 "(mksnapshot only)") | 719 "(mksnapshot only)") |
720 DEFINE_STRING(raw_context_file, NULL, | |
721 "A file to write the raw context " | |
722 "snapshot bytes to. (mksnapshot only)") | |
723 DEFINE_STRING(startup_blob, NULL, | 720 DEFINE_STRING(startup_blob, NULL, |
724 "Write V8 startup blob file. " | 721 "Write V8 startup blob file. " |
725 "(mksnapshot only)") | 722 "(mksnapshot only)") |
726 | 723 |
727 // code-stubs-hydrogen.cc | 724 // code-stubs-hydrogen.cc |
728 DEFINE_BOOL(profile_hydrogen_code_stub_compilation, false, | 725 DEFINE_BOOL(profile_hydrogen_code_stub_compilation, false, |
729 "Print the time it takes to lazily compile hydrogen code stubs.") | 726 "Print the time it takes to lazily compile hydrogen code stubs.") |
730 | 727 |
731 DEFINE_BOOL(predictable, false, "enable predictable mode") | 728 DEFINE_BOOL(predictable, false, "enable predictable mode") |
732 DEFINE_NEG_IMPLICATION(predictable, concurrent_recompilation) | 729 DEFINE_NEG_IMPLICATION(predictable, concurrent_recompilation) |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1003 #undef DEFINE_ALIAS_FLOAT | 1000 #undef DEFINE_ALIAS_FLOAT |
1004 #undef DEFINE_ALIAS_ARGS | 1001 #undef DEFINE_ALIAS_ARGS |
1005 | 1002 |
1006 #undef FLAG_MODE_DECLARE | 1003 #undef FLAG_MODE_DECLARE |
1007 #undef FLAG_MODE_DEFINE | 1004 #undef FLAG_MODE_DEFINE |
1008 #undef FLAG_MODE_DEFINE_DEFAULTS | 1005 #undef FLAG_MODE_DEFINE_DEFAULTS |
1009 #undef FLAG_MODE_META | 1006 #undef FLAG_MODE_META |
1010 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1007 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
1011 | 1008 |
1012 #undef COMMA | 1009 #undef COMMA |
OLD | NEW |