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 950 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
961 DEFINE_BOOL(trace_normalization, false, | 961 DEFINE_BOOL(trace_normalization, false, |
962 "prints when objects are turned into dictionaries.") | 962 "prints when objects are turned into dictionaries.") |
963 | 963 |
964 // runtime.cc | 964 // runtime.cc |
965 DEFINE_BOOL(trace_lazy, false, "trace lazy compilation") | 965 DEFINE_BOOL(trace_lazy, false, "trace lazy compilation") |
966 | 966 |
967 // spaces.cc | 967 // spaces.cc |
968 DEFINE_BOOL(collect_heap_spill_statistics, false, | 968 DEFINE_BOOL(collect_heap_spill_statistics, false, |
969 "report heap spill statistics along with heap_stats " | 969 "report heap spill statistics along with heap_stats " |
970 "(requires heap_stats)") | 970 "(requires heap_stats)") |
| 971 DEFINE_BOOL(trace_live_bytes, false, |
| 972 "trace incrementing and resetting of live bytes") |
971 | 973 |
972 DEFINE_BOOL(trace_isolates, false, "trace isolate state changes") | 974 DEFINE_BOOL(trace_isolates, false, "trace isolate state changes") |
973 | 975 |
974 // Regexp | 976 // Regexp |
975 DEFINE_BOOL(regexp_possessive_quantifier, false, | 977 DEFINE_BOOL(regexp_possessive_quantifier, false, |
976 "enable possessive quantifier syntax for testing") | 978 "enable possessive quantifier syntax for testing") |
977 DEFINE_BOOL(trace_regexp_bytecodes, false, "trace regexp bytecode execution") | 979 DEFINE_BOOL(trace_regexp_bytecodes, false, "trace regexp bytecode execution") |
978 DEFINE_BOOL(trace_regexp_assembler, false, | 980 DEFINE_BOOL(trace_regexp_assembler, false, |
979 "trace regexp macro assembler calls.") | 981 "trace regexp macro assembler calls.") |
980 DEFINE_BOOL(trace_regexp_parser, false, "trace regexp parsing") | 982 DEFINE_BOOL(trace_regexp_parser, false, "trace regexp parsing") |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1151 #undef DEFINE_ALIAS_FLOAT | 1153 #undef DEFINE_ALIAS_FLOAT |
1152 #undef DEFINE_ALIAS_ARGS | 1154 #undef DEFINE_ALIAS_ARGS |
1153 | 1155 |
1154 #undef FLAG_MODE_DECLARE | 1156 #undef FLAG_MODE_DECLARE |
1155 #undef FLAG_MODE_DEFINE | 1157 #undef FLAG_MODE_DEFINE |
1156 #undef FLAG_MODE_DEFINE_DEFAULTS | 1158 #undef FLAG_MODE_DEFINE_DEFAULTS |
1157 #undef FLAG_MODE_META | 1159 #undef FLAG_MODE_META |
1158 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1160 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
1159 | 1161 |
1160 #undef COMMA | 1162 #undef COMMA |
OLD | NEW |