Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(101)

Side by Side Diff: src/flag-definitions.h

Issue 2658803002: [Compiler] Put background compilation of eager inner functions behind a flag. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/compiler.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/compiler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698