| 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 DEFINE_INT(max_opt_count, 10, | 662 DEFINE_INT(max_opt_count, 10, |
| 663 "maximum number of optimization attempts before giving up.") | 663 "maximum number of optimization attempts before giving up.") |
| 664 | 664 |
| 665 // compilation-cache.cc | 665 // compilation-cache.cc |
| 666 DEFINE_BOOL(compilation_cache, true, "enable compilation cache") | 666 DEFINE_BOOL(compilation_cache, true, "enable compilation cache") |
| 667 | 667 |
| 668 DEFINE_BOOL(cache_prototype_transitions, true, "cache prototype transitions") | 668 DEFINE_BOOL(cache_prototype_transitions, true, "cache prototype transitions") |
| 669 | 669 |
| 670 // compiler-dispatcher.cc | 670 // compiler-dispatcher.cc |
| 671 DEFINE_BOOL(compiler_dispatcher, false, "enable compiler dispatcher") | 671 DEFINE_BOOL(compiler_dispatcher, false, "enable compiler dispatcher") |
| 672 DEFINE_BOOL(trace_compiler_dispatcher, false, |
| 673 "trace compiler dispatcher activity") |
| 674 |
| 675 // compiler-dispatcher-job.cc |
| 676 DEFINE_BOOL( |
| 677 trace_compiler_dispatcher_jobs, false, |
| 678 "trace progress of individual jobs managed by the compiler dispatcher") |
| 672 | 679 |
| 673 // cpu-profiler.cc | 680 // cpu-profiler.cc |
| 674 DEFINE_INT(cpu_profiler_sampling_interval, 1000, | 681 DEFINE_INT(cpu_profiler_sampling_interval, 1000, |
| 675 "CPU profiler sampling interval in microseconds") | 682 "CPU profiler sampling interval in microseconds") |
| 676 | 683 |
| 677 // Array abuse tracing | 684 // Array abuse tracing |
| 678 DEFINE_BOOL(trace_js_array_abuse, false, | 685 DEFINE_BOOL(trace_js_array_abuse, false, |
| 679 "trace out-of-bounds accesses to JS arrays") | 686 "trace out-of-bounds accesses to JS arrays") |
| 680 DEFINE_BOOL(trace_external_array_abuse, false, | 687 DEFINE_BOOL(trace_external_array_abuse, false, |
| 681 "trace out-of-bounds-accesses to external arrays") | 688 "trace out-of-bounds-accesses to external arrays") |
| (...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1268 #undef DEFINE_ALIAS_FLOAT | 1275 #undef DEFINE_ALIAS_FLOAT |
| 1269 #undef DEFINE_ALIAS_ARGS | 1276 #undef DEFINE_ALIAS_ARGS |
| 1270 | 1277 |
| 1271 #undef FLAG_MODE_DECLARE | 1278 #undef FLAG_MODE_DECLARE |
| 1272 #undef FLAG_MODE_DEFINE | 1279 #undef FLAG_MODE_DEFINE |
| 1273 #undef FLAG_MODE_DEFINE_DEFAULTS | 1280 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 1274 #undef FLAG_MODE_META | 1281 #undef FLAG_MODE_META |
| 1275 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1282 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 1276 | 1283 |
| 1277 #undef COMMA | 1284 #undef COMMA |
| OLD | NEW |