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

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

Issue 732473002: Added --trace_idle_notification_verbose which prints out the idle notificatino heap state. (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/gc-idle-time-handler.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 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
534 DEFINE_INT(gc_interval, -1, "garbage collect after <n> allocations") 534 DEFINE_INT(gc_interval, -1, "garbage collect after <n> allocations")
535 DEFINE_BOOL(trace_gc, false, 535 DEFINE_BOOL(trace_gc, false,
536 "print one trace line following each garbage collection") 536 "print one trace line following each garbage collection")
537 DEFINE_BOOL(trace_gc_nvp, false, 537 DEFINE_BOOL(trace_gc_nvp, false,
538 "print one detailed trace line in name=value format " 538 "print one detailed trace line in name=value format "
539 "after each garbage collection") 539 "after each garbage collection")
540 DEFINE_BOOL(trace_gc_ignore_scavenger, false, 540 DEFINE_BOOL(trace_gc_ignore_scavenger, false,
541 "do not print trace line after scavenger collection") 541 "do not print trace line after scavenger collection")
542 DEFINE_BOOL(trace_idle_notification, false, 542 DEFINE_BOOL(trace_idle_notification, false,
543 "print one trace line following each idle notification") 543 "print one trace line following each idle notification")
544 DEFINE_BOOL(trace_idle_notification_verbose, false,
545 "prints the heap state used by the idle notification")
544 DEFINE_BOOL(print_cumulative_gc_stat, false, 546 DEFINE_BOOL(print_cumulative_gc_stat, false,
545 "print cumulative GC statistics in name=value format on exit") 547 "print cumulative GC statistics in name=value format on exit")
546 DEFINE_BOOL(print_max_heap_committed, false, 548 DEFINE_BOOL(print_max_heap_committed, false,
547 "print statistics of the maximum memory committed for the heap " 549 "print statistics of the maximum memory committed for the heap "
548 "in name=value format on exit") 550 "in name=value format on exit")
549 DEFINE_BOOL(trace_gc_verbose, false, 551 DEFINE_BOOL(trace_gc_verbose, false,
550 "print more details following each garbage collection") 552 "print more details following each garbage collection")
551 DEFINE_BOOL(trace_fragmentation, false, 553 DEFINE_BOOL(trace_fragmentation, false,
552 "report fragmentation for old pointer and data pages") 554 "report fragmentation for old pointer and data pages")
553 DEFINE_BOOL(collect_maps, true, 555 DEFINE_BOOL(collect_maps, true,
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
973 #undef DEFINE_ALIAS_FLOAT 975 #undef DEFINE_ALIAS_FLOAT
974 #undef DEFINE_ALIAS_ARGS 976 #undef DEFINE_ALIAS_ARGS
975 977
976 #undef FLAG_MODE_DECLARE 978 #undef FLAG_MODE_DECLARE
977 #undef FLAG_MODE_DEFINE 979 #undef FLAG_MODE_DEFINE
978 #undef FLAG_MODE_DEFINE_DEFAULTS 980 #undef FLAG_MODE_DEFINE_DEFAULTS
979 #undef FLAG_MODE_META 981 #undef FLAG_MODE_META
980 #undef FLAG_MODE_DEFINE_IMPLICATIONS 982 #undef FLAG_MODE_DEFINE_IMPLICATIONS
981 983
982 #undef COMMA 984 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | src/heap/gc-idle-time-handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698