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 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
629 DEFINE_BOOL(weak_embedded_maps_in_optimized_code, true, | 629 DEFINE_BOOL(weak_embedded_maps_in_optimized_code, true, |
630 "make maps embedded in optimized code weak") | 630 "make maps embedded in optimized code weak") |
631 DEFINE_BOOL(weak_embedded_objects_in_optimized_code, true, | 631 DEFINE_BOOL(weak_embedded_objects_in_optimized_code, true, |
632 "make objects embedded in optimized code weak") | 632 "make objects embedded in optimized code weak") |
633 DEFINE_BOOL(flush_code, true, "flush code that we expect not to use again") | 633 DEFINE_BOOL(flush_code, true, "flush code that we expect not to use again") |
634 DEFINE_BOOL(trace_code_flushing, false, "trace code flushing progress") | 634 DEFINE_BOOL(trace_code_flushing, false, "trace code flushing progress") |
635 DEFINE_BOOL(age_code, true, | 635 DEFINE_BOOL(age_code, true, |
636 "track un-executed functions to age code and flush only " | 636 "track un-executed functions to age code and flush only " |
637 "old code (required for code flushing)") | 637 "old code (required for code flushing)") |
638 DEFINE_BOOL(incremental_marking, true, "use incremental marking") | 638 DEFINE_BOOL(incremental_marking, true, "use incremental marking") |
639 DEFINE_BOOL(incremental_marking_steps, true, "do incremental marking steps") | |
640 DEFINE_BOOL(overapproximate_weak_closure, true, | 639 DEFINE_BOOL(overapproximate_weak_closure, true, |
641 "overapproximate weak closer to reduce atomic pause time") | 640 "overapproximate weak closer to reduce atomic pause time") |
642 DEFINE_INT(min_progress_during_object_groups_marking, 128, | 641 DEFINE_INT(min_progress_during_object_groups_marking, 128, |
643 "keep overapproximating the weak closure as long as we discover at " | 642 "keep overapproximating the weak closure as long as we discover at " |
644 "least this many unmarked objects") | 643 "least this many unmarked objects") |
645 DEFINE_INT(max_object_groups_marking_rounds, 3, | 644 DEFINE_INT(max_object_groups_marking_rounds, 3, |
646 "at most try this many times to over approximate the weak closure") | 645 "at most try this many times to over approximate the weak closure") |
647 DEFINE_BOOL(concurrent_sweeping, true, "use concurrent sweeping") | 646 DEFINE_BOOL(concurrent_sweeping, true, "use concurrent sweeping") |
648 DEFINE_BOOL(trace_incremental_marking, false, | 647 DEFINE_BOOL(trace_incremental_marking, false, |
649 "trace progress of the incremental marking") | 648 "trace progress of the incremental marking") |
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1078 #undef DEFINE_ALIAS_FLOAT | 1077 #undef DEFINE_ALIAS_FLOAT |
1079 #undef DEFINE_ALIAS_ARGS | 1078 #undef DEFINE_ALIAS_ARGS |
1080 | 1079 |
1081 #undef FLAG_MODE_DECLARE | 1080 #undef FLAG_MODE_DECLARE |
1082 #undef FLAG_MODE_DEFINE | 1081 #undef FLAG_MODE_DEFINE |
1083 #undef FLAG_MODE_DEFINE_DEFAULTS | 1082 #undef FLAG_MODE_DEFINE_DEFAULTS |
1084 #undef FLAG_MODE_META | 1083 #undef FLAG_MODE_META |
1085 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1084 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
1086 | 1085 |
1087 #undef COMMA | 1086 #undef COMMA |
OLD | NEW |