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

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

Issue 2728363002: [heap] Implement concurrent marking boilerplate. (Closed)
Patch Set: Add missing test file Created 3 years, 9 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
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 629 matching lines...) Expand 10 before | Expand all | Expand 10 after
640 DEFINE_BOOL(trace_mutator_utilization, false, 640 DEFINE_BOOL(trace_mutator_utilization, false,
641 "print mutator utilization, allocation speed, gc speed") 641 "print mutator utilization, allocation speed, gc speed")
642 DEFINE_BOOL(flush_code, true, "flush code that we expect not to use again") 642 DEFINE_BOOL(flush_code, true, "flush code that we expect not to use again")
643 DEFINE_BOOL(trace_code_flushing, false, "trace code flushing progress") 643 DEFINE_BOOL(trace_code_flushing, false, "trace code flushing progress")
644 DEFINE_BOOL(age_code, true, 644 DEFINE_BOOL(age_code, true,
645 "track un-executed functions to age code and flush only " 645 "track un-executed functions to age code and flush only "
646 "old code (required for code flushing)") 646 "old code (required for code flushing)")
647 DEFINE_BOOL(incremental_marking, true, "use incremental marking") 647 DEFINE_BOOL(incremental_marking, true, "use incremental marking")
648 DEFINE_BOOL(incremental_marking_wrappers, true, 648 DEFINE_BOOL(incremental_marking_wrappers, true,
649 "use incremental marking for marking wrappers") 649 "use incremental marking for marking wrappers")
650 DEFINE_BOOL(concurrent_marking, false, "use concurrent marking")
650 DEFINE_INT(min_progress_during_incremental_marking_finalization, 32, 651 DEFINE_INT(min_progress_during_incremental_marking_finalization, 32,
651 "keep finalizing incremental marking as long as we discover at " 652 "keep finalizing incremental marking as long as we discover at "
652 "least this many unmarked objects") 653 "least this many unmarked objects")
653 DEFINE_INT(max_incremental_marking_finalization_rounds, 3, 654 DEFINE_INT(max_incremental_marking_finalization_rounds, 3,
654 "at most try this many times to finalize incremental marking") 655 "at most try this many times to finalize incremental marking")
655 DEFINE_BOOL(minor_mc, false, "perform young generation mark compact GCs") 656 DEFINE_BOOL(minor_mc, false, "perform young generation mark compact GCs")
656 DEFINE_BOOL(black_allocation, true, "use black allocation") 657 DEFINE_BOOL(black_allocation, true, "use black allocation")
657 DEFINE_BOOL(concurrent_store_buffer, true, 658 DEFINE_BOOL(concurrent_store_buffer, true,
658 "use concurrent store buffer processing") 659 "use concurrent store buffer processing")
659 DEFINE_BOOL(concurrent_sweeping, true, "use concurrent sweeping") 660 DEFINE_BOOL(concurrent_sweeping, true, "use concurrent sweeping")
(...skipping 648 matching lines...) Expand 10 before | Expand all | Expand 10 after
1308 #undef DEFINE_ALIAS_FLOAT 1309 #undef DEFINE_ALIAS_FLOAT
1309 #undef DEFINE_ALIAS_ARGS 1310 #undef DEFINE_ALIAS_ARGS
1310 1311
1311 #undef FLAG_MODE_DECLARE 1312 #undef FLAG_MODE_DECLARE
1312 #undef FLAG_MODE_DEFINE 1313 #undef FLAG_MODE_DEFINE
1313 #undef FLAG_MODE_DEFINE_DEFAULTS 1314 #undef FLAG_MODE_DEFINE_DEFAULTS
1314 #undef FLAG_MODE_META 1315 #undef FLAG_MODE_META
1315 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1316 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1316 1317
1317 #undef COMMA 1318 #undef COMMA
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/heap/concurrent-marking.h » ('j') | src/heap/concurrent-marking.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698