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 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
586 "print one trace line following each idle notification") | 586 "print one trace line following each idle notification") |
587 DEFINE_BOOL(trace_idle_notification_verbose, false, | 587 DEFINE_BOOL(trace_idle_notification_verbose, false, |
588 "prints the heap state used by the idle notification") | 588 "prints the heap state used by the idle notification") |
589 DEFINE_BOOL(print_cumulative_gc_stat, false, | 589 DEFINE_BOOL(print_cumulative_gc_stat, false, |
590 "print cumulative GC statistics in name=value format on exit") | 590 "print cumulative GC statistics in name=value format on exit") |
591 DEFINE_BOOL(print_max_heap_committed, false, | 591 DEFINE_BOOL(print_max_heap_committed, false, |
592 "print statistics of the maximum memory committed for the heap " | 592 "print statistics of the maximum memory committed for the heap " |
593 "in name=value format on exit") | 593 "in name=value format on exit") |
594 DEFINE_BOOL(trace_gc_verbose, false, | 594 DEFINE_BOOL(trace_gc_verbose, false, |
595 "print more details following each garbage collection") | 595 "print more details following each garbage collection") |
596 DEFINE_BOOL(trace_fragmentation, false, | 596 DEFINE_BOOL(trace_fragmentation, false, "report fragmentation") |
597 "report fragmentation for old pointer and data pages") | |
598 DEFINE_BOOL(collect_maps, true, | 597 DEFINE_BOOL(collect_maps, true, |
599 "garbage collect maps from which no objects can be reached") | 598 "garbage collect maps from which no objects can be reached") |
600 DEFINE_BOOL(weak_embedded_maps_in_optimized_code, true, | 599 DEFINE_BOOL(weak_embedded_maps_in_optimized_code, true, |
601 "make maps embedded in optimized code weak") | 600 "make maps embedded in optimized code weak") |
602 DEFINE_BOOL(weak_embedded_objects_in_optimized_code, true, | 601 DEFINE_BOOL(weak_embedded_objects_in_optimized_code, true, |
603 "make objects embedded in optimized code weak") | 602 "make objects embedded in optimized code weak") |
604 DEFINE_BOOL(flush_code, true, | 603 DEFINE_BOOL(flush_code, true, |
605 "flush code that we expect not to use again (during full gc)") | 604 "flush code that we expect not to use again (during full gc)") |
606 DEFINE_BOOL(flush_code_incrementally, true, | 605 DEFINE_BOOL(flush_code_incrementally, true, |
607 "flush code that we expect not to use again (incrementally)") | 606 "flush code that we expect not to use again (incrementally)") |
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1033 #undef DEFINE_ALIAS_FLOAT | 1032 #undef DEFINE_ALIAS_FLOAT |
1034 #undef DEFINE_ALIAS_ARGS | 1033 #undef DEFINE_ALIAS_ARGS |
1035 | 1034 |
1036 #undef FLAG_MODE_DECLARE | 1035 #undef FLAG_MODE_DECLARE |
1037 #undef FLAG_MODE_DEFINE | 1036 #undef FLAG_MODE_DEFINE |
1038 #undef FLAG_MODE_DEFINE_DEFAULTS | 1037 #undef FLAG_MODE_DEFINE_DEFAULTS |
1039 #undef FLAG_MODE_META | 1038 #undef FLAG_MODE_META |
1040 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1039 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
1041 | 1040 |
1042 #undef COMMA | 1041 #undef COMMA |
OLD | NEW |