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 679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
690 DEFINE_BOOL(heap_profiler_trace_objects, false, | 690 DEFINE_BOOL(heap_profiler_trace_objects, false, |
691 "Dump heap object allocations/movements/size_updates") | 691 "Dump heap object allocations/movements/size_updates") |
692 | 692 |
693 | 693 |
694 // v8.cc | 694 // v8.cc |
695 DEFINE_BOOL(use_idle_notification, true, | 695 DEFINE_BOOL(use_idle_notification, true, |
696 "Use idle notification to reduce memory footprint.") | 696 "Use idle notification to reduce memory footprint.") |
697 // ic.cc | 697 // ic.cc |
698 DEFINE_BOOL(use_ic, true, "use inline caching") | 698 DEFINE_BOOL(use_ic, true, "use inline caching") |
699 DEFINE_BOOL(trace_ic, false, "trace inline cache state transitions") | 699 DEFINE_BOOL(trace_ic, false, "trace inline cache state transitions") |
700 DEFINE_BOOL(vector_stores, true, "use vectors for store ics") | 700 DEFINE_BOOL(vector_stores, false, "use vectors for store ics") |
701 DEFINE_BOOL(global_var_shortcuts, true, "use ic-less global loads and stores") | 701 DEFINE_BOOL(global_var_shortcuts, true, "use ic-less global loads and stores") |
702 | 702 |
703 // macro-assembler-ia32.cc | 703 // macro-assembler-ia32.cc |
704 DEFINE_BOOL(native_code_counters, false, | 704 DEFINE_BOOL(native_code_counters, false, |
705 "generate extra code for manipulating stats counters") | 705 "generate extra code for manipulating stats counters") |
706 | 706 |
707 // mark-compact.cc | 707 // mark-compact.cc |
708 DEFINE_BOOL(always_compact, false, "Perform compaction on every full GC") | 708 DEFINE_BOOL(always_compact, false, "Perform compaction on every full GC") |
709 DEFINE_BOOL(never_compact, false, | 709 DEFINE_BOOL(never_compact, false, |
710 "Never perform compaction on full GC - testing only") | 710 "Never perform compaction on full GC - testing only") |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1104 #undef DEFINE_ALIAS_FLOAT | 1104 #undef DEFINE_ALIAS_FLOAT |
1105 #undef DEFINE_ALIAS_ARGS | 1105 #undef DEFINE_ALIAS_ARGS |
1106 | 1106 |
1107 #undef FLAG_MODE_DECLARE | 1107 #undef FLAG_MODE_DECLARE |
1108 #undef FLAG_MODE_DEFINE | 1108 #undef FLAG_MODE_DEFINE |
1109 #undef FLAG_MODE_DEFINE_DEFAULTS | 1109 #undef FLAG_MODE_DEFINE_DEFAULTS |
1110 #undef FLAG_MODE_META | 1110 #undef FLAG_MODE_META |
1111 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1111 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
1112 | 1112 |
1113 #undef COMMA | 1113 #undef COMMA |
OLD | NEW |