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 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
790 DEFINE_BOOL(sampling_heap_profiler_suppress_randomness, false, | 790 DEFINE_BOOL(sampling_heap_profiler_suppress_randomness, false, |
791 "Use constant sample intervals to eliminate test flakiness") | 791 "Use constant sample intervals to eliminate test flakiness") |
792 | 792 |
793 | 793 |
794 // v8.cc | 794 // v8.cc |
795 DEFINE_BOOL(use_idle_notification, true, | 795 DEFINE_BOOL(use_idle_notification, true, |
796 "Use idle notification to reduce memory footprint.") | 796 "Use idle notification to reduce memory footprint.") |
797 // ic.cc | 797 // ic.cc |
798 DEFINE_BOOL(use_ic, true, "use inline caching") | 798 DEFINE_BOOL(use_ic, true, "use inline caching") |
799 DEFINE_BOOL(trace_ic, false, "trace inline cache state transitions") | 799 DEFINE_BOOL(trace_ic, false, "trace inline cache state transitions") |
800 DEFINE_BOOL(tf_load_ic_stub, true, "use TF LoadIC stub") | 800 DEFINE_BOOL_READONLY(tf_load_ic_stub, true, "use TF LoadIC stub") |
801 DEFINE_BOOL(tf_store_ic_stub, true, "use TF StoreIC stub") | 801 DEFINE_BOOL(tf_store_ic_stub, true, "use TF StoreIC stub") |
802 | 802 |
803 // macro-assembler-ia32.cc | 803 // macro-assembler-ia32.cc |
804 DEFINE_BOOL(native_code_counters, false, | 804 DEFINE_BOOL(native_code_counters, false, |
805 "generate extra code for manipulating stats counters") | 805 "generate extra code for manipulating stats counters") |
806 | 806 |
807 // mark-compact.cc | 807 // mark-compact.cc |
808 DEFINE_BOOL(always_compact, false, "Perform compaction on every full GC") | 808 DEFINE_BOOL(always_compact, false, "Perform compaction on every full GC") |
809 DEFINE_BOOL(never_compact, false, | 809 DEFINE_BOOL(never_compact, false, |
810 "Never perform compaction on full GC - testing only") | 810 "Never perform compaction on full GC - testing only") |
(...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1215 #undef DEFINE_ALIAS_FLOAT | 1215 #undef DEFINE_ALIAS_FLOAT |
1216 #undef DEFINE_ALIAS_ARGS | 1216 #undef DEFINE_ALIAS_ARGS |
1217 | 1217 |
1218 #undef FLAG_MODE_DECLARE | 1218 #undef FLAG_MODE_DECLARE |
1219 #undef FLAG_MODE_DEFINE | 1219 #undef FLAG_MODE_DEFINE |
1220 #undef FLAG_MODE_DEFINE_DEFAULTS | 1220 #undef FLAG_MODE_DEFINE_DEFAULTS |
1221 #undef FLAG_MODE_META | 1221 #undef FLAG_MODE_META |
1222 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1222 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
1223 | 1223 |
1224 #undef COMMA | 1224 #undef COMMA |
OLD | NEW |