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 |
950 // Cleanup... | 955 // Cleanup... |
951 #undef FLAG_FULL | 956 #undef FLAG_FULL |
952 #undef FLAG_READONLY | 957 #undef FLAG_READONLY |
953 #undef FLAG | 958 #undef FLAG |
954 #undef FLAG_ALIAS | 959 #undef FLAG_ALIAS |
955 | 960 |
956 #undef DEFINE_BOOL | 961 #undef DEFINE_BOOL |
957 #undef DEFINE_MAYBE_BOOL | 962 #undef DEFINE_MAYBE_BOOL |
958 #undef DEFINE_INT | 963 #undef DEFINE_INT |
959 #undef DEFINE_STRING | 964 #undef DEFINE_STRING |
960 #undef DEFINE_FLOAT | 965 #undef DEFINE_FLOAT |
961 #undef DEFINE_ARGS | 966 #undef DEFINE_ARGS |
962 #undef DEFINE_IMPLICATION | 967 #undef DEFINE_IMPLICATION |
963 #undef DEFINE_NEG_IMPLICATION | 968 #undef DEFINE_NEG_IMPLICATION |
964 #undef DEFINE_VALUE_IMPLICATION | 969 #undef DEFINE_VALUE_IMPLICATION |
965 #undef DEFINE_ALIAS_BOOL | 970 #undef DEFINE_ALIAS_BOOL |
966 #undef DEFINE_ALIAS_INT | 971 #undef DEFINE_ALIAS_INT |
967 #undef DEFINE_ALIAS_STRING | 972 #undef DEFINE_ALIAS_STRING |
968 #undef DEFINE_ALIAS_FLOAT | 973 #undef DEFINE_ALIAS_FLOAT |
969 #undef DEFINE_ALIAS_ARGS | 974 #undef DEFINE_ALIAS_ARGS |
970 | 975 |
971 #undef FLAG_MODE_DECLARE | 976 #undef FLAG_MODE_DECLARE |
972 #undef FLAG_MODE_DEFINE | 977 #undef FLAG_MODE_DEFINE |
973 #undef FLAG_MODE_DEFINE_DEFAULTS | 978 #undef FLAG_MODE_DEFINE_DEFAULTS |
974 #undef FLAG_MODE_META | 979 #undef FLAG_MODE_META |
975 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 980 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
976 | 981 |
977 #undef COMMA | 982 #undef COMMA |
OLD | NEW |