| 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 1080 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1091 // heap.cc | 1091 // heap.cc |
| 1092 DEFINE_BOOL(gc_verbose, false, "print stuff during garbage collection") | 1092 DEFINE_BOOL(gc_verbose, false, "print stuff during garbage collection") |
| 1093 DEFINE_BOOL(heap_stats, false, "report heap statistics before and after GC") | 1093 DEFINE_BOOL(heap_stats, false, "report heap statistics before and after GC") |
| 1094 DEFINE_BOOL(code_stats, false, "report code statistics after GC") | 1094 DEFINE_BOOL(code_stats, false, "report code statistics after GC") |
| 1095 DEFINE_BOOL(print_handles, false, "report handles after GC") | 1095 DEFINE_BOOL(print_handles, false, "report handles after GC") |
| 1096 DEFINE_BOOL(check_handle_count, false, | 1096 DEFINE_BOOL(check_handle_count, false, |
| 1097 "Check that there are not too many handles at GC") | 1097 "Check that there are not too many handles at GC") |
| 1098 DEFINE_BOOL(print_global_handles, false, "report global handles after GC") | 1098 DEFINE_BOOL(print_global_handles, false, "report global handles after GC") |
| 1099 | 1099 |
| 1100 // TurboFan debug-only flags. | 1100 // TurboFan debug-only flags. |
| 1101 DEFINE_BOOL(print_turbo_replay, false, | |
| 1102 "print C++ code to recreate TurboFan graphs") | |
| 1103 DEFINE_BOOL(trace_turbo_escape, false, "enable tracing in escape analysis") | 1101 DEFINE_BOOL(trace_turbo_escape, false, "enable tracing in escape analysis") |
| 1104 | 1102 |
| 1105 // objects.cc | 1103 // objects.cc |
| 1106 DEFINE_BOOL(trace_normalization, false, | 1104 DEFINE_BOOL(trace_normalization, false, |
| 1107 "prints when objects are turned into dictionaries.") | 1105 "prints when objects are turned into dictionaries.") |
| 1108 | 1106 |
| 1109 // runtime.cc | 1107 // runtime.cc |
| 1110 DEFINE_BOOL(trace_lazy, false, "trace lazy compilation") | 1108 DEFINE_BOOL(trace_lazy, false, "trace lazy compilation") |
| 1111 | 1109 |
| 1112 // spaces.cc | 1110 // spaces.cc |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1342 #undef DEFINE_ALIAS_FLOAT | 1340 #undef DEFINE_ALIAS_FLOAT |
| 1343 #undef DEFINE_ALIAS_ARGS | 1341 #undef DEFINE_ALIAS_ARGS |
| 1344 | 1342 |
| 1345 #undef FLAG_MODE_DECLARE | 1343 #undef FLAG_MODE_DECLARE |
| 1346 #undef FLAG_MODE_DEFINE | 1344 #undef FLAG_MODE_DEFINE |
| 1347 #undef FLAG_MODE_DEFINE_DEFAULTS | 1345 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 1348 #undef FLAG_MODE_META | 1346 #undef FLAG_MODE_META |
| 1349 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1347 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 1350 | 1348 |
| 1351 #undef COMMA | 1349 #undef COMMA |
| OLD | NEW |