| 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 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 669 DEFINE_BOOL(print_max_heap_committed, false, | 669 DEFINE_BOOL(print_max_heap_committed, false, |
| 670 "print statistics of the maximum memory committed for the heap " | 670 "print statistics of the maximum memory committed for the heap " |
| 671 "in name=value format on exit") | 671 "in name=value format on exit") |
| 672 DEFINE_BOOL(trace_gc_verbose, false, | 672 DEFINE_BOOL(trace_gc_verbose, false, |
| 673 "print more details following each garbage collection") | 673 "print more details following each garbage collection") |
| 674 DEFINE_INT(trace_allocation_stack_interval, -1, | 674 DEFINE_INT(trace_allocation_stack_interval, -1, |
| 675 "print stack trace after <n> free-list allocations") | 675 "print stack trace after <n> free-list allocations") |
| 676 DEFINE_BOOL(trace_fragmentation, false, "report fragmentation for old space") | 676 DEFINE_BOOL(trace_fragmentation, false, "report fragmentation for old space") |
| 677 DEFINE_BOOL(trace_fragmentation_verbose, false, | 677 DEFINE_BOOL(trace_fragmentation_verbose, false, |
| 678 "report fragmentation for old space (detailed)") | 678 "report fragmentation for old space (detailed)") |
| 679 DEFINE_BOOL(trace_evacuation, false, "report evacuation statistics") |
| 679 DEFINE_BOOL(trace_mutator_utilization, false, | 680 DEFINE_BOOL(trace_mutator_utilization, false, |
| 680 "print mutator utilization, allocation speed, gc speed") | 681 "print mutator utilization, allocation speed, gc speed") |
| 681 DEFINE_BOOL(weak_embedded_maps_in_optimized_code, true, | 682 DEFINE_BOOL(weak_embedded_maps_in_optimized_code, true, |
| 682 "make maps embedded in optimized code weak") | 683 "make maps embedded in optimized code weak") |
| 683 DEFINE_BOOL(weak_embedded_objects_in_optimized_code, true, | 684 DEFINE_BOOL(weak_embedded_objects_in_optimized_code, true, |
| 684 "make objects embedded in optimized code weak") | 685 "make objects embedded in optimized code weak") |
| 685 DEFINE_BOOL(flush_code, true, "flush code that we expect not to use again") | 686 DEFINE_BOOL(flush_code, true, "flush code that we expect not to use again") |
| 686 DEFINE_BOOL(trace_code_flushing, false, "trace code flushing progress") | 687 DEFINE_BOOL(trace_code_flushing, false, "trace code flushing progress") |
| 687 DEFINE_BOOL(age_code, true, | 688 DEFINE_BOOL(age_code, true, |
| 688 "track un-executed functions to age code and flush only " | 689 "track un-executed functions to age code and flush only " |
| (...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1166 #undef DEFINE_ALIAS_FLOAT | 1167 #undef DEFINE_ALIAS_FLOAT |
| 1167 #undef DEFINE_ALIAS_ARGS | 1168 #undef DEFINE_ALIAS_ARGS |
| 1168 | 1169 |
| 1169 #undef FLAG_MODE_DECLARE | 1170 #undef FLAG_MODE_DECLARE |
| 1170 #undef FLAG_MODE_DEFINE | 1171 #undef FLAG_MODE_DEFINE |
| 1171 #undef FLAG_MODE_DEFINE_DEFAULTS | 1172 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 1172 #undef FLAG_MODE_META | 1173 #undef FLAG_MODE_META |
| 1173 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1174 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 1174 | 1175 |
| 1175 #undef COMMA | 1176 #undef COMMA |
| OLD | NEW |