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 655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
666 "Dump heap object allocations/movements/size_updates") | 666 "Dump heap object allocations/movements/size_updates") |
667 | 667 |
668 | 668 |
669 // v8.cc | 669 // v8.cc |
670 DEFINE_BOOL(use_idle_notification, true, | 670 DEFINE_BOOL(use_idle_notification, true, |
671 "Use idle notification to reduce memory footprint.") | 671 "Use idle notification to reduce memory footprint.") |
672 // ic.cc | 672 // ic.cc |
673 DEFINE_BOOL(use_ic, true, "use inline caching") | 673 DEFINE_BOOL(use_ic, true, "use inline caching") |
674 DEFINE_BOOL(trace_ic, false, "trace inline cache state transitions") | 674 DEFINE_BOOL(trace_ic, false, "trace inline cache state transitions") |
675 DEFINE_BOOL(vector_stores, false, "use vectors for store ics") | 675 DEFINE_BOOL(vector_stores, false, "use vectors for store ics") |
676 DEFINE_BOOL(global_var_shortcuts, true, "use ic-less global loads and stores") | 676 DEFINE_BOOL(global_var_shortcuts, false, "use ic-less global loads and stores") |
677 | 677 |
678 // macro-assembler-ia32.cc | 678 // macro-assembler-ia32.cc |
679 DEFINE_BOOL(native_code_counters, false, | 679 DEFINE_BOOL(native_code_counters, false, |
680 "generate extra code for manipulating stats counters") | 680 "generate extra code for manipulating stats counters") |
681 | 681 |
682 // mark-compact.cc | 682 // mark-compact.cc |
683 DEFINE_BOOL(always_compact, false, "Perform compaction on every full GC") | 683 DEFINE_BOOL(always_compact, false, "Perform compaction on every full GC") |
684 DEFINE_BOOL(never_compact, false, | 684 DEFINE_BOOL(never_compact, false, |
685 "Never perform compaction on full GC - testing only") | 685 "Never perform compaction on full GC - testing only") |
686 DEFINE_BOOL(compact_code_space, true, "Compact code space on full collections") | 686 DEFINE_BOOL(compact_code_space, true, "Compact code space on full collections") |
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1069 #undef DEFINE_ALIAS_FLOAT | 1069 #undef DEFINE_ALIAS_FLOAT |
1070 #undef DEFINE_ALIAS_ARGS | 1070 #undef DEFINE_ALIAS_ARGS |
1071 | 1071 |
1072 #undef FLAG_MODE_DECLARE | 1072 #undef FLAG_MODE_DECLARE |
1073 #undef FLAG_MODE_DEFINE | 1073 #undef FLAG_MODE_DEFINE |
1074 #undef FLAG_MODE_DEFINE_DEFAULTS | 1074 #undef FLAG_MODE_DEFINE_DEFAULTS |
1075 #undef FLAG_MODE_META | 1075 #undef FLAG_MODE_META |
1076 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1076 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
1077 | 1077 |
1078 #undef COMMA | 1078 #undef COMMA |
OLD | NEW |