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 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
672 DEFINE_INT(max_opt_count, 10, | 672 DEFINE_INT(max_opt_count, 10, |
673 "maximum number of optimization attempts before giving up.") | 673 "maximum number of optimization attempts before giving up.") |
674 | 674 |
675 // compilation-cache.cc | 675 // compilation-cache.cc |
676 DEFINE_BOOL(compilation_cache, true, "enable compilation cache") | 676 DEFINE_BOOL(compilation_cache, true, "enable compilation cache") |
677 | 677 |
678 DEFINE_BOOL(cache_prototype_transitions, true, "cache prototype transitions") | 678 DEFINE_BOOL(cache_prototype_transitions, true, "cache prototype transitions") |
679 | 679 |
680 // compiler-dispatcher.cc | 680 // compiler-dispatcher.cc |
681 DEFINE_BOOL(compiler_dispatcher, false, "enable compiler dispatcher") | 681 DEFINE_BOOL(compiler_dispatcher, false, "enable compiler dispatcher") |
| 682 DEFINE_BOOL(compiler_dispatcher_eager_inner, false, |
| 683 "enable background compilation of eager inner functions") |
682 DEFINE_BOOL(trace_compiler_dispatcher, false, | 684 DEFINE_BOOL(trace_compiler_dispatcher, false, |
683 "trace compiler dispatcher activity") | 685 "trace compiler dispatcher activity") |
684 | 686 |
685 // compiler-dispatcher-job.cc | 687 // compiler-dispatcher-job.cc |
686 DEFINE_BOOL( | 688 DEFINE_BOOL( |
687 trace_compiler_dispatcher_jobs, false, | 689 trace_compiler_dispatcher_jobs, false, |
688 "trace progress of individual jobs managed by the compiler dispatcher") | 690 "trace progress of individual jobs managed by the compiler dispatcher") |
689 | 691 |
690 // cpu-profiler.cc | 692 // cpu-profiler.cc |
691 DEFINE_INT(cpu_profiler_sampling_interval, 1000, | 693 DEFINE_INT(cpu_profiler_sampling_interval, 1000, |
(...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1293 #undef DEFINE_ALIAS_FLOAT | 1295 #undef DEFINE_ALIAS_FLOAT |
1294 #undef DEFINE_ALIAS_ARGS | 1296 #undef DEFINE_ALIAS_ARGS |
1295 | 1297 |
1296 #undef FLAG_MODE_DECLARE | 1298 #undef FLAG_MODE_DECLARE |
1297 #undef FLAG_MODE_DEFINE | 1299 #undef FLAG_MODE_DEFINE |
1298 #undef FLAG_MODE_DEFINE_DEFAULTS | 1300 #undef FLAG_MODE_DEFINE_DEFAULTS |
1299 #undef FLAG_MODE_META | 1301 #undef FLAG_MODE_META |
1300 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1302 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
1301 | 1303 |
1302 #undef COMMA | 1304 #undef COMMA |
OLD | NEW |