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 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
822 DEFINE_BOOL(gc_verbose, false, "print stuff during garbage collection") | 822 DEFINE_BOOL(gc_verbose, false, "print stuff during garbage collection") |
823 DEFINE_BOOL(heap_stats, false, "report heap statistics before and after GC") | 823 DEFINE_BOOL(heap_stats, false, "report heap statistics before and after GC") |
824 DEFINE_BOOL(code_stats, false, "report code statistics after GC") | 824 DEFINE_BOOL(code_stats, false, "report code statistics after GC") |
825 DEFINE_BOOL(print_handles, false, "report handles after GC") | 825 DEFINE_BOOL(print_handles, false, "report handles after GC") |
826 DEFINE_BOOL(print_global_handles, false, "report global handles after GC") | 826 DEFINE_BOOL(print_global_handles, false, "report global handles after GC") |
827 | 827 |
828 // TurboFan debug-only flags. | 828 // TurboFan debug-only flags. |
829 DEFINE_BOOL(print_turbo_replay, false, | 829 DEFINE_BOOL(print_turbo_replay, false, |
830 "print C++ code to recreate TurboFan graphs") | 830 "print C++ code to recreate TurboFan graphs") |
831 | 831 |
832 // interface.cc | |
833 DEFINE_BOOL(print_interfaces, false, "print interfaces") | |
834 DEFINE_BOOL(print_interface_details, false, "print interface inference details") | |
835 DEFINE_INT(print_interface_depth, 5, "depth for printing interfaces") | |
836 | |
837 // objects.cc | 832 // objects.cc |
838 DEFINE_BOOL(trace_normalization, false, | 833 DEFINE_BOOL(trace_normalization, false, |
839 "prints when objects are turned into dictionaries.") | 834 "prints when objects are turned into dictionaries.") |
840 | 835 |
841 // runtime.cc | 836 // runtime.cc |
842 DEFINE_BOOL(trace_lazy, false, "trace lazy compilation") | 837 DEFINE_BOOL(trace_lazy, false, "trace lazy compilation") |
843 | 838 |
844 // spaces.cc | 839 // spaces.cc |
845 DEFINE_BOOL(collect_heap_spill_statistics, false, | 840 DEFINE_BOOL(collect_heap_spill_statistics, false, |
846 "report heap spill statistics along with heap_stats " | 841 "report heap spill statistics along with heap_stats " |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1025 #undef DEFINE_ALIAS_FLOAT | 1020 #undef DEFINE_ALIAS_FLOAT |
1026 #undef DEFINE_ALIAS_ARGS | 1021 #undef DEFINE_ALIAS_ARGS |
1027 | 1022 |
1028 #undef FLAG_MODE_DECLARE | 1023 #undef FLAG_MODE_DECLARE |
1029 #undef FLAG_MODE_DEFINE | 1024 #undef FLAG_MODE_DEFINE |
1030 #undef FLAG_MODE_DEFINE_DEFAULTS | 1025 #undef FLAG_MODE_DEFINE_DEFAULTS |
1031 #undef FLAG_MODE_META | 1026 #undef FLAG_MODE_META |
1032 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1027 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
1033 | 1028 |
1034 #undef COMMA | 1029 #undef COMMA |
OLD | NEW |