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

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

Issue 734363002: Introduce an option to do regular new space growing for a while (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years, 1 month 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 | « no previous file | src/heap/heap.h » ('j') | 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 515 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 "semi-spaces") 526 "semi-spaces")
527 DEFINE_INT(target_semi_space_size, 0, 527 DEFINE_INT(target_semi_space_size, 0,
528 "target size of a semi-space (in MBytes) before triggering a GC") 528 "target size of a semi-space (in MBytes) before triggering a GC")
529 DEFINE_INT(max_semi_space_size, 0, 529 DEFINE_INT(max_semi_space_size, 0,
530 "max size of a semi-space (in MBytes), the new space consists of two" 530 "max size of a semi-space (in MBytes), the new space consists of two"
531 "semi-spaces") 531 "semi-spaces")
532 DEFINE_INT(max_old_space_size, 0, "max size of the old space (in Mbytes)") 532 DEFINE_INT(max_old_space_size, 0, "max size of the old space (in Mbytes)")
533 DEFINE_INT(max_executable_size, 0, "max size of executable memory (in Mbytes)") 533 DEFINE_INT(max_executable_size, 0, "max size of executable memory (in Mbytes)")
534 DEFINE_BOOL(gc_global, false, "always perform global GCs") 534 DEFINE_BOOL(gc_global, false, "always perform global GCs")
535 DEFINE_INT(gc_interval, -1, "garbage collect after <n> allocations") 535 DEFINE_INT(gc_interval, -1, "garbage collect after <n> allocations")
536 DEFINE_INT(scavenges_before_grow, -1,
537 "Number of scavenges after which to change the allocation strategy "
538 "to growing to the target size.")
536 DEFINE_BOOL(trace_gc, false, 539 DEFINE_BOOL(trace_gc, false,
537 "print one trace line following each garbage collection") 540 "print one trace line following each garbage collection")
538 DEFINE_BOOL(trace_gc_nvp, false, 541 DEFINE_BOOL(trace_gc_nvp, false,
539 "print one detailed trace line in name=value format " 542 "print one detailed trace line in name=value format "
540 "after each garbage collection") 543 "after each garbage collection")
541 DEFINE_BOOL(trace_gc_ignore_scavenger, false, 544 DEFINE_BOOL(trace_gc_ignore_scavenger, false,
542 "do not print trace line after scavenger collection") 545 "do not print trace line after scavenger collection")
543 DEFINE_BOOL(trace_idle_notification, false, 546 DEFINE_BOOL(trace_idle_notification, false,
544 "print one trace line following each idle notification") 547 "print one trace line following each idle notification")
545 DEFINE_BOOL(trace_idle_notification_verbose, false, 548 DEFINE_BOOL(trace_idle_notification_verbose, false,
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
978 #undef DEFINE_ALIAS_FLOAT 981 #undef DEFINE_ALIAS_FLOAT
979 #undef DEFINE_ALIAS_ARGS 982 #undef DEFINE_ALIAS_ARGS
980 983
981 #undef FLAG_MODE_DECLARE 984 #undef FLAG_MODE_DECLARE
982 #undef FLAG_MODE_DEFINE 985 #undef FLAG_MODE_DEFINE
983 #undef FLAG_MODE_DEFINE_DEFAULTS 986 #undef FLAG_MODE_DEFINE_DEFAULTS
984 #undef FLAG_MODE_META 987 #undef FLAG_MODE_META
985 #undef FLAG_MODE_DEFINE_IMPLICATIONS 988 #undef FLAG_MODE_DEFINE_IMPLICATIONS
986 989
987 #undef COMMA 990 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | src/heap/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698