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

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

Issue 2361073002: [heap] Remove --print-cumulative-gc-stat flag. (Closed)
Patch Set: unused variables Created 4 years, 3 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 | « no previous file | src/heap/gc-tracer.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 695 matching lines...) Expand 10 before | Expand all | Expand 10 after
706 "print one trace line following each garbage collection") 706 "print one trace line following each garbage collection")
707 DEFINE_BOOL(trace_gc_nvp, false, 707 DEFINE_BOOL(trace_gc_nvp, false,
708 "print one detailed trace line in name=value format " 708 "print one detailed trace line in name=value format "
709 "after each garbage collection") 709 "after each garbage collection")
710 DEFINE_BOOL(trace_gc_ignore_scavenger, false, 710 DEFINE_BOOL(trace_gc_ignore_scavenger, false,
711 "do not print trace line after scavenger collection") 711 "do not print trace line after scavenger collection")
712 DEFINE_BOOL(trace_idle_notification, false, 712 DEFINE_BOOL(trace_idle_notification, false,
713 "print one trace line following each idle notification") 713 "print one trace line following each idle notification")
714 DEFINE_BOOL(trace_idle_notification_verbose, false, 714 DEFINE_BOOL(trace_idle_notification_verbose, false,
715 "prints the heap state used by the idle notification") 715 "prints the heap state used by the idle notification")
716 DEFINE_BOOL(print_cumulative_gc_stat, false,
717 "print cumulative GC statistics in name=value format on exit")
718 DEFINE_BOOL(print_max_heap_committed, false, 716 DEFINE_BOOL(print_max_heap_committed, false,
719 "print statistics of the maximum memory committed for the heap " 717 "print statistics of the maximum memory committed for the heap "
720 "in name=value format on exit") 718 "in name=value format on exit")
721 DEFINE_BOOL(trace_gc_verbose, false, 719 DEFINE_BOOL(trace_gc_verbose, false,
722 "print more details following each garbage collection") 720 "print more details following each garbage collection")
723 DEFINE_INT(trace_allocation_stack_interval, -1, 721 DEFINE_INT(trace_allocation_stack_interval, -1,
724 "print stack trace after <n> free-list allocations") 722 "print stack trace after <n> free-list allocations")
725 DEFINE_BOOL(trace_fragmentation, false, "report fragmentation for old space") 723 DEFINE_BOOL(trace_fragmentation, false, "report fragmentation for old space")
726 DEFINE_BOOL(trace_fragmentation_verbose, false, 724 DEFINE_BOOL(trace_fragmentation_verbose, false,
727 "report fragmentation for old space (detailed)") 725 "report fragmentation for old space (detailed)")
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
1208 #undef DEFINE_ALIAS_FLOAT 1206 #undef DEFINE_ALIAS_FLOAT
1209 #undef DEFINE_ALIAS_ARGS 1207 #undef DEFINE_ALIAS_ARGS
1210 1208
1211 #undef FLAG_MODE_DECLARE 1209 #undef FLAG_MODE_DECLARE
1212 #undef FLAG_MODE_DEFINE 1210 #undef FLAG_MODE_DEFINE
1213 #undef FLAG_MODE_DEFINE_DEFAULTS 1211 #undef FLAG_MODE_DEFINE_DEFAULTS
1214 #undef FLAG_MODE_META 1212 #undef FLAG_MODE_META
1215 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1213 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1216 1214
1217 #undef COMMA 1215 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | src/heap/gc-tracer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698