Chromium Code Reviews| 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 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 630 DEFINE_INT(stack_size, V8_DEFAULT_STACK_SIZE_KB, | 630 DEFINE_INT(stack_size, V8_DEFAULT_STACK_SIZE_KB, |
| 631 "default size of stack region v8 is allowed to use (in kBytes)") | 631 "default size of stack region v8 is allowed to use (in kBytes)") |
| 632 | 632 |
| 633 // frames.cc | 633 // frames.cc |
| 634 DEFINE_INT(max_stack_trace_source_length, 300, | 634 DEFINE_INT(max_stack_trace_source_length, 300, |
| 635 "maximum length of function source code printed in a stack trace.") | 635 "maximum length of function source code printed in a stack trace.") |
| 636 | 636 |
| 637 // full-codegen.cc | 637 // full-codegen.cc |
| 638 DEFINE_BOOL(always_inline_smi_code, false, | 638 DEFINE_BOOL(always_inline_smi_code, false, |
| 639 "always inline smi code in non-opt code") | 639 "always inline smi code in non-opt code") |
| 640 DEFINE_BOOL(verify_operand_stack_depth, false, | 640 DEFINE_BOOL(verify_operand_stack_depth, true, |
|
Michael Starzinger
2016/02/23 14:01:26
Note that this is only turned on for full try-bot
| |
| 641 "emit debug code that verifies the static tracking of the operand " | 641 "emit debug code that verifies the static tracking of the operand " |
| 642 "stack depth") | 642 "stack depth") |
| 643 | 643 |
| 644 // heap.cc | 644 // heap.cc |
| 645 DEFINE_INT(min_semi_space_size, 0, | 645 DEFINE_INT(min_semi_space_size, 0, |
| 646 "min size of a semi-space (in MBytes), the new space consists of two" | 646 "min size of a semi-space (in MBytes), the new space consists of two" |
| 647 "semi-spaces") | 647 "semi-spaces") |
| 648 DEFINE_INT(max_semi_space_size, 0, | 648 DEFINE_INT(max_semi_space_size, 0, |
| 649 "max size of a semi-space (in MBytes), the new space consists of two" | 649 "max size of a semi-space (in MBytes), the new space consists of two" |
| 650 "semi-spaces") | 650 "semi-spaces") |
| (...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1163 #undef DEFINE_ALIAS_FLOAT | 1163 #undef DEFINE_ALIAS_FLOAT |
| 1164 #undef DEFINE_ALIAS_ARGS | 1164 #undef DEFINE_ALIAS_ARGS |
| 1165 | 1165 |
| 1166 #undef FLAG_MODE_DECLARE | 1166 #undef FLAG_MODE_DECLARE |
| 1167 #undef FLAG_MODE_DEFINE | 1167 #undef FLAG_MODE_DEFINE |
| 1168 #undef FLAG_MODE_DEFINE_DEFAULTS | 1168 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 1169 #undef FLAG_MODE_META | 1169 #undef FLAG_MODE_META |
| 1170 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1170 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 1171 | 1171 |
| 1172 #undef COMMA | 1172 #undef COMMA |
| OLD | NEW |