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

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

Issue 1618693004: Revert "Revert of [profiler] Implement POC Sampling Heap Profiler (patchset #12 id:220001 of https:… (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add flag to suppress randomness from sampling heap profiler tests Created 4 years, 11 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 | « src/api.cc ('k') | 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 702 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 // counters.cc 713 // counters.cc
714 DEFINE_INT(histogram_interval, 600000, 714 DEFINE_INT(histogram_interval, 600000,
715 "time interval in ms for aggregating memory histograms") 715 "time interval in ms for aggregating memory histograms")
716 716
717 717
718 // heap-snapshot-generator.cc 718 // heap-snapshot-generator.cc
719 DEFINE_BOOL(heap_profiler_trace_objects, false, 719 DEFINE_BOOL(heap_profiler_trace_objects, false,
720 "Dump heap object allocations/movements/size_updates") 720 "Dump heap object allocations/movements/size_updates")
721 721
722 722
723 // sampling-heap-profiler.cc
724 DEFINE_BOOL(sampling_heap_profiler_suppress_randomness, false,
725 "Use constant sample intervals to eliminate test flakiness")
726
727
723 // v8.cc 728 // v8.cc
724 DEFINE_BOOL(use_idle_notification, true, 729 DEFINE_BOOL(use_idle_notification, true,
725 "Use idle notification to reduce memory footprint.") 730 "Use idle notification to reduce memory footprint.")
726 // ic.cc 731 // ic.cc
727 DEFINE_BOOL(use_ic, true, "use inline caching") 732 DEFINE_BOOL(use_ic, true, "use inline caching")
728 DEFINE_BOOL(trace_ic, false, "trace inline cache state transitions") 733 DEFINE_BOOL(trace_ic, false, "trace inline cache state transitions")
729 734
730 // macro-assembler-ia32.cc 735 // macro-assembler-ia32.cc
731 DEFINE_BOOL(native_code_counters, false, 736 DEFINE_BOOL(native_code_counters, false,
732 "generate extra code for manipulating stats counters") 737 "generate extra code for manipulating stats counters")
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
1135 #undef DEFINE_ALIAS_FLOAT 1140 #undef DEFINE_ALIAS_FLOAT
1136 #undef DEFINE_ALIAS_ARGS 1141 #undef DEFINE_ALIAS_ARGS
1137 1142
1138 #undef FLAG_MODE_DECLARE 1143 #undef FLAG_MODE_DECLARE
1139 #undef FLAG_MODE_DEFINE 1144 #undef FLAG_MODE_DEFINE
1140 #undef FLAG_MODE_DEFINE_DEFAULTS 1145 #undef FLAG_MODE_DEFINE_DEFAULTS
1141 #undef FLAG_MODE_META 1146 #undef FLAG_MODE_META
1142 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1147 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1143 1148
1144 #undef COMMA 1149 #undef COMMA
OLDNEW
« no previous file with comments | « src/api.cc ('k') | src/heap/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698