OLD | NEW |
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 Loading... |
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 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1164 #undef DEFINE_ALIAS_FLOAT | 1168 #undef DEFINE_ALIAS_FLOAT |
1165 #undef DEFINE_ALIAS_ARGS | 1169 #undef DEFINE_ALIAS_ARGS |
1166 | 1170 |
1167 #undef FLAG_MODE_DECLARE | 1171 #undef FLAG_MODE_DECLARE |
1168 #undef FLAG_MODE_DEFINE | 1172 #undef FLAG_MODE_DEFINE |
1169 #undef FLAG_MODE_DEFINE_DEFAULTS | 1173 #undef FLAG_MODE_DEFINE_DEFAULTS |
1170 #undef FLAG_MODE_META | 1174 #undef FLAG_MODE_META |
1171 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1175 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
1172 | 1176 |
1173 #undef COMMA | 1177 #undef COMMA |
OLD | NEW |