| 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 915 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 926 DEFINE_BOOL(enable_slow_asserts, false, | 926 DEFINE_BOOL(enable_slow_asserts, false, |
| 927 "enable asserts that are slow to execute") | 927 "enable asserts that are slow to execute") |
| 928 #endif | 928 #endif |
| 929 | 929 |
| 930 // codegen-ia32.cc / codegen-arm.cc / macro-assembler-*.cc | 930 // codegen-ia32.cc / codegen-arm.cc / macro-assembler-*.cc |
| 931 DEFINE_BOOL(print_source, false, "pretty print source code") | 931 DEFINE_BOOL(print_source, false, "pretty print source code") |
| 932 DEFINE_BOOL(print_builtin_source, false, | 932 DEFINE_BOOL(print_builtin_source, false, |
| 933 "pretty print source code for builtins") | 933 "pretty print source code for builtins") |
| 934 DEFINE_BOOL(print_ast, false, "print source AST") | 934 DEFINE_BOOL(print_ast, false, "print source AST") |
| 935 DEFINE_BOOL(print_builtin_ast, false, "print source AST for builtins") | 935 DEFINE_BOOL(print_builtin_ast, false, "print source AST for builtins") |
| 936 DEFINE_STRING(stop_at, "", "function name where to insert a breakpoint") | |
| 937 DEFINE_BOOL(trap_on_abort, false, "replace aborts by breakpoints") | 936 DEFINE_BOOL(trap_on_abort, false, "replace aborts by breakpoints") |
| 938 | 937 |
| 939 // compiler.cc | 938 // compiler.cc |
| 940 DEFINE_BOOL(print_builtin_scopes, false, "print scopes for builtins") | 939 DEFINE_BOOL(print_builtin_scopes, false, "print scopes for builtins") |
| 941 DEFINE_BOOL(print_scopes, false, "print scopes") | 940 DEFINE_BOOL(print_scopes, false, "print scopes") |
| 942 | 941 |
| 943 // contexts.cc | 942 // contexts.cc |
| 944 DEFINE_BOOL(trace_contexts, false, "trace contexts operations") | 943 DEFINE_BOOL(trace_contexts, false, "trace contexts operations") |
| 945 | 944 |
| 946 // heap.cc | 945 // heap.cc |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1151 #undef DEFINE_ALIAS_FLOAT | 1150 #undef DEFINE_ALIAS_FLOAT |
| 1152 #undef DEFINE_ALIAS_ARGS | 1151 #undef DEFINE_ALIAS_ARGS |
| 1153 | 1152 |
| 1154 #undef FLAG_MODE_DECLARE | 1153 #undef FLAG_MODE_DECLARE |
| 1155 #undef FLAG_MODE_DEFINE | 1154 #undef FLAG_MODE_DEFINE |
| 1156 #undef FLAG_MODE_DEFINE_DEFAULTS | 1155 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 1157 #undef FLAG_MODE_META | 1156 #undef FLAG_MODE_META |
| 1158 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1157 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 1159 | 1158 |
| 1160 #undef COMMA | 1159 #undef COMMA |
| OLD | NEW |