| 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 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 "print cumulative GC statistics in name=value format on exit") | 575 "print cumulative GC statistics in name=value format on exit") |
| 576 DEFINE_BOOL(print_max_heap_committed, false, | 576 DEFINE_BOOL(print_max_heap_committed, false, |
| 577 "print statistics of the maximum memory committed for the heap " | 577 "print statistics of the maximum memory committed for the heap " |
| 578 "in name=value format on exit") | 578 "in name=value format on exit") |
| 579 DEFINE_BOOL(trace_gc_verbose, false, | 579 DEFINE_BOOL(trace_gc_verbose, false, |
| 580 "print more details following each garbage collection") | 580 "print more details following each garbage collection") |
| 581 DEFINE_BOOL(trace_fragmentation, false, | 581 DEFINE_BOOL(trace_fragmentation, false, |
| 582 "report fragmentation for old pointer and data pages") | 582 "report fragmentation for old pointer and data pages") |
| 583 DEFINE_BOOL(collect_maps, true, | 583 DEFINE_BOOL(collect_maps, true, |
| 584 "garbage collect maps from which no objects can be reached") | 584 "garbage collect maps from which no objects can be reached") |
| 585 DEFINE_BOOL(weak_embedded_maps_in_ic, true, | |
| 586 "make maps embedded in inline cache stubs") | |
| 587 DEFINE_BOOL(weak_embedded_maps_in_optimized_code, true, | 585 DEFINE_BOOL(weak_embedded_maps_in_optimized_code, true, |
| 588 "make maps embedded in optimized code weak") | 586 "make maps embedded in optimized code weak") |
| 589 DEFINE_BOOL(weak_embedded_objects_in_optimized_code, true, | 587 DEFINE_BOOL(weak_embedded_objects_in_optimized_code, true, |
| 590 "make objects embedded in optimized code weak") | 588 "make objects embedded in optimized code weak") |
| 591 DEFINE_BOOL(flush_code, true, | 589 DEFINE_BOOL(flush_code, true, |
| 592 "flush code that we expect not to use again (during full gc)") | 590 "flush code that we expect not to use again (during full gc)") |
| 593 DEFINE_BOOL(flush_code_incrementally, true, | 591 DEFINE_BOOL(flush_code_incrementally, true, |
| 594 "flush code that we expect not to use again (incrementally)") | 592 "flush code that we expect not to use again (incrementally)") |
| 595 DEFINE_BOOL(trace_code_flushing, false, "trace code flushing progress") | 593 DEFINE_BOOL(trace_code_flushing, false, "trace code flushing progress") |
| 596 DEFINE_BOOL(age_code, true, | 594 DEFINE_BOOL(age_code, true, |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 999 #undef DEFINE_ALIAS_FLOAT | 997 #undef DEFINE_ALIAS_FLOAT |
| 1000 #undef DEFINE_ALIAS_ARGS | 998 #undef DEFINE_ALIAS_ARGS |
| 1001 | 999 |
| 1002 #undef FLAG_MODE_DECLARE | 1000 #undef FLAG_MODE_DECLARE |
| 1003 #undef FLAG_MODE_DEFINE | 1001 #undef FLAG_MODE_DEFINE |
| 1004 #undef FLAG_MODE_DEFINE_DEFAULTS | 1002 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 1005 #undef FLAG_MODE_META | 1003 #undef FLAG_MODE_META |
| 1006 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1004 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 1007 | 1005 |
| 1008 #undef COMMA | 1006 #undef COMMA |
| OLD | NEW |