| 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 929 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 940 // | 940 // |
| 941 // Read-only flags | 941 // Read-only flags |
| 942 // | 942 // |
| 943 #undef FLAG | 943 #undef FLAG |
| 944 #define FLAG FLAG_READONLY | 944 #define FLAG FLAG_READONLY |
| 945 | 945 |
| 946 // assembler.h | 946 // assembler.h |
| 947 DEFINE_BOOL(enable_ool_constant_pool, V8_OOL_CONSTANT_POOL, | 947 DEFINE_BOOL(enable_ool_constant_pool, V8_OOL_CONSTANT_POOL, |
| 948 "enable use of out-of-line constant pools (ARM only)") | 948 "enable use of out-of-line constant pools (ARM only)") |
| 949 | 949 |
| 950 DEFINE_BOOL(unbox_double_fields, V8_DOUBLE_FIELDS_UNBOXING, | |
| 951 "enable in-object double fields unboxing (64-bit only)") | |
| 952 DEFINE_IMPLICATION(unbox_double_fields, track_double_fields) | |
| 953 | |
| 954 | |
| 955 // Cleanup... | 950 // Cleanup... |
| 956 #undef FLAG_FULL | 951 #undef FLAG_FULL |
| 957 #undef FLAG_READONLY | 952 #undef FLAG_READONLY |
| 958 #undef FLAG | 953 #undef FLAG |
| 959 #undef FLAG_ALIAS | 954 #undef FLAG_ALIAS |
| 960 | 955 |
| 961 #undef DEFINE_BOOL | 956 #undef DEFINE_BOOL |
| 962 #undef DEFINE_MAYBE_BOOL | 957 #undef DEFINE_MAYBE_BOOL |
| 963 #undef DEFINE_INT | 958 #undef DEFINE_INT |
| 964 #undef DEFINE_STRING | 959 #undef DEFINE_STRING |
| 965 #undef DEFINE_FLOAT | 960 #undef DEFINE_FLOAT |
| 966 #undef DEFINE_ARGS | 961 #undef DEFINE_ARGS |
| 967 #undef DEFINE_IMPLICATION | 962 #undef DEFINE_IMPLICATION |
| 968 #undef DEFINE_NEG_IMPLICATION | 963 #undef DEFINE_NEG_IMPLICATION |
| 969 #undef DEFINE_VALUE_IMPLICATION | 964 #undef DEFINE_VALUE_IMPLICATION |
| 970 #undef DEFINE_ALIAS_BOOL | 965 #undef DEFINE_ALIAS_BOOL |
| 971 #undef DEFINE_ALIAS_INT | 966 #undef DEFINE_ALIAS_INT |
| 972 #undef DEFINE_ALIAS_STRING | 967 #undef DEFINE_ALIAS_STRING |
| 973 #undef DEFINE_ALIAS_FLOAT | 968 #undef DEFINE_ALIAS_FLOAT |
| 974 #undef DEFINE_ALIAS_ARGS | 969 #undef DEFINE_ALIAS_ARGS |
| 975 | 970 |
| 976 #undef FLAG_MODE_DECLARE | 971 #undef FLAG_MODE_DECLARE |
| 977 #undef FLAG_MODE_DEFINE | 972 #undef FLAG_MODE_DEFINE |
| 978 #undef FLAG_MODE_DEFINE_DEFAULTS | 973 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 979 #undef FLAG_MODE_META | 974 #undef FLAG_MODE_META |
| 980 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 975 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 981 | 976 |
| 982 #undef COMMA | 977 #undef COMMA |
| OLD | NEW |