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 701 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
712 DEFINE_BOOL(trace_external_array_abuse, false, | 712 DEFINE_BOOL(trace_external_array_abuse, false, |
713 "trace out-of-bounds-accesses to external arrays") | 713 "trace out-of-bounds-accesses to external arrays") |
714 DEFINE_BOOL(trace_array_abuse, false, | 714 DEFINE_BOOL(trace_array_abuse, false, |
715 "trace out-of-bounds accesses to all arrays") | 715 "trace out-of-bounds accesses to all arrays") |
716 DEFINE_IMPLICATION(trace_array_abuse, trace_js_array_abuse) | 716 DEFINE_IMPLICATION(trace_array_abuse, trace_js_array_abuse) |
717 DEFINE_IMPLICATION(trace_array_abuse, trace_external_array_abuse) | 717 DEFINE_IMPLICATION(trace_array_abuse, trace_external_array_abuse) |
718 | 718 |
719 // debugger | 719 // debugger |
720 DEFINE_BOOL(trace_debug_json, false, "trace debugging JSON request/response") | 720 DEFINE_BOOL(trace_debug_json, false, "trace debugging JSON request/response") |
721 DEFINE_BOOL(enable_liveedit, true, "enable liveedit experimental feature") | 721 DEFINE_BOOL(enable_liveedit, true, "enable liveedit experimental feature") |
722 DEFINE_BOOL(side_effect_free_debug_evaluate, false, | |
723 "use side-effect-free debug-evaluate for testing") | |
724 DEFINE_BOOL( | 722 DEFINE_BOOL( |
725 trace_side_effect_free_debug_evaluate, false, | 723 trace_side_effect_free_debug_evaluate, false, |
726 "print debug messages for side-effect-free debug-evaluate for testing") | 724 "print debug messages for side-effect-free debug-evaluate for testing") |
727 DEFINE_BOOL(hard_abort, true, "abort by crashing") | 725 DEFINE_BOOL(hard_abort, true, "abort by crashing") |
728 | 726 |
729 // execution.cc | 727 // execution.cc |
730 DEFINE_INT(stack_size, V8_DEFAULT_STACK_SIZE_KB, | 728 DEFINE_INT(stack_size, V8_DEFAULT_STACK_SIZE_KB, |
731 "default size of stack region v8 is allowed to use (in kBytes)") | 729 "default size of stack region v8 is allowed to use (in kBytes)") |
732 | 730 |
733 // frames.cc | 731 // frames.cc |
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1311 #undef DEFINE_ALIAS_FLOAT | 1309 #undef DEFINE_ALIAS_FLOAT |
1312 #undef DEFINE_ALIAS_ARGS | 1310 #undef DEFINE_ALIAS_ARGS |
1313 | 1311 |
1314 #undef FLAG_MODE_DECLARE | 1312 #undef FLAG_MODE_DECLARE |
1315 #undef FLAG_MODE_DEFINE | 1313 #undef FLAG_MODE_DEFINE |
1316 #undef FLAG_MODE_DEFINE_DEFAULTS | 1314 #undef FLAG_MODE_DEFINE_DEFAULTS |
1317 #undef FLAG_MODE_META | 1315 #undef FLAG_MODE_META |
1318 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1316 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
1319 | 1317 |
1320 #undef COMMA | 1318 #undef COMMA |
OLD | NEW |