| 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 885 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 896 DEFINE_INT(dump_allocations_digest_at_alloc, 0, | 896 DEFINE_INT(dump_allocations_digest_at_alloc, 0, |
| 897 "dump allocations digest each n-th allocation") | 897 "dump allocations digest each n-th allocation") |
| 898 | 898 |
| 899 | 899 |
| 900 // | 900 // |
| 901 // Read-only flags | 901 // Read-only flags |
| 902 // | 902 // |
| 903 #undef FLAG | 903 #undef FLAG |
| 904 #define FLAG FLAG_READONLY | 904 #define FLAG FLAG_READONLY |
| 905 | 905 |
| 906 // assembler-arm.h | 906 // assembler.h |
| 907 DEFINE_BOOL(enable_ool_constant_pool, V8_OOL_CONSTANT_POOL, | 907 DEFINE_BOOL(enable_ool_constant_pool, V8_OOL_CONSTANT_POOL, |
| 908 "enable use of out-of-line constant pools (ARM only)") | 908 "enable use of out-of-line constant pools (ARM only)") |
| 909 | 909 |
| 910 // Cleanup... | 910 // Cleanup... |
| 911 #undef FLAG_FULL | 911 #undef FLAG_FULL |
| 912 #undef FLAG_READONLY | 912 #undef FLAG_READONLY |
| 913 #undef FLAG | 913 #undef FLAG |
| 914 #undef FLAG_ALIAS | 914 #undef FLAG_ALIAS |
| 915 | 915 |
| 916 #undef DEFINE_BOOL | 916 #undef DEFINE_BOOL |
| (...skipping 11 matching lines...) Expand all Loading... |
| 928 #undef DEFINE_ALIAS_FLOAT | 928 #undef DEFINE_ALIAS_FLOAT |
| 929 #undef DEFINE_ALIAS_ARGS | 929 #undef DEFINE_ALIAS_ARGS |
| 930 | 930 |
| 931 #undef FLAG_MODE_DECLARE | 931 #undef FLAG_MODE_DECLARE |
| 932 #undef FLAG_MODE_DEFINE | 932 #undef FLAG_MODE_DEFINE |
| 933 #undef FLAG_MODE_DEFINE_DEFAULTS | 933 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 934 #undef FLAG_MODE_META | 934 #undef FLAG_MODE_META |
| 935 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 935 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 936 | 936 |
| 937 #undef COMMA | 937 #undef COMMA |
| OLD | NEW |