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

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

Issue 1844413002: Use EmbedderHeapTracer instead of object grouping when trace_embedder_heap flag is set (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix fast accessor tests Created 4 years, 8 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 703 matching lines...) Expand 10 before | Expand all | Expand 10 after
714 "specifies heap growing factor as (1 + heap_growing_percent/100)") 714 "specifies heap growing factor as (1 + heap_growing_percent/100)")
715 715
716 // counters.cc 716 // counters.cc
717 DEFINE_INT(histogram_interval, 600000, 717 DEFINE_INT(histogram_interval, 600000,
718 "time interval in ms for aggregating memory histograms") 718 "time interval in ms for aggregating memory histograms")
719 719
720 // global-handles.cc 720 // global-handles.cc
721 DEFINE_BOOL(trace_object_groups, false, 721 DEFINE_BOOL(trace_object_groups, false,
722 "print object groups detected during each garbage collection") 722 "print object groups detected during each garbage collection")
723 723
724 // heap.cc
725 DEFINE_BOOL(trace_embedder_heap, false,
726 "use embedder heap tracing instead of object groups")
727
724 // heap-snapshot-generator.cc 728 // heap-snapshot-generator.cc
725 DEFINE_BOOL(heap_profiler_trace_objects, false, 729 DEFINE_BOOL(heap_profiler_trace_objects, false,
726 "Dump heap object allocations/movements/size_updates") 730 "Dump heap object allocations/movements/size_updates")
727 731
728 732
729 // sampling-heap-profiler.cc 733 // sampling-heap-profiler.cc
730 DEFINE_BOOL(sampling_heap_profiler_suppress_randomness, false, 734 DEFINE_BOOL(sampling_heap_profiler_suppress_randomness, false,
731 "Use constant sample intervals to eliminate test flakiness") 735 "Use constant sample intervals to eliminate test flakiness")
732 736
733 737
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
1162 #undef DEFINE_ALIAS_FLOAT 1166 #undef DEFINE_ALIAS_FLOAT
1163 #undef DEFINE_ALIAS_ARGS 1167 #undef DEFINE_ALIAS_ARGS
1164 1168
1165 #undef FLAG_MODE_DECLARE 1169 #undef FLAG_MODE_DECLARE
1166 #undef FLAG_MODE_DEFINE 1170 #undef FLAG_MODE_DEFINE
1167 #undef FLAG_MODE_DEFINE_DEFAULTS 1171 #undef FLAG_MODE_DEFINE_DEFAULTS
1168 #undef FLAG_MODE_META 1172 #undef FLAG_MODE_META
1169 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1173 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1170 1174
1171 #undef COMMA 1175 #undef COMMA
OLDNEW
« no previous file with comments | « src/fast-accessor-assembler.cc ('k') | src/heap/heap.h » ('j') | src/objects.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698