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 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
923 // | 923 // |
924 // Read-only flags | 924 // Read-only flags |
925 // | 925 // |
926 #undef FLAG | 926 #undef FLAG |
927 #define FLAG FLAG_READONLY | 927 #define FLAG FLAG_READONLY |
928 | 928 |
929 // assembler.h | 929 // assembler.h |
930 DEFINE_BOOL(enable_ool_constant_pool, V8_OOL_CONSTANT_POOL, | 930 DEFINE_BOOL(enable_ool_constant_pool, V8_OOL_CONSTANT_POOL, |
931 "enable use of out-of-line constant pools (ARM only)") | 931 "enable use of out-of-line constant pools (ARM only)") |
932 | 932 |
| 933 DEFINE_BOOL(unbox_double_fields, V8_DOUBLE_FIELDS_UNBOXING, |
| 934 "enable in-object double fields unboxing (64-bit only)") |
| 935 DEFINE_IMPLICATION(unbox_double_fields, track_double_fields) |
| 936 |
| 937 |
933 // Cleanup... | 938 // Cleanup... |
934 #undef FLAG_FULL | 939 #undef FLAG_FULL |
935 #undef FLAG_READONLY | 940 #undef FLAG_READONLY |
936 #undef FLAG | 941 #undef FLAG |
937 #undef FLAG_ALIAS | 942 #undef FLAG_ALIAS |
938 | 943 |
939 #undef DEFINE_BOOL | 944 #undef DEFINE_BOOL |
940 #undef DEFINE_MAYBE_BOOL | 945 #undef DEFINE_MAYBE_BOOL |
941 #undef DEFINE_INT | 946 #undef DEFINE_INT |
942 #undef DEFINE_STRING | 947 #undef DEFINE_STRING |
943 #undef DEFINE_FLOAT | 948 #undef DEFINE_FLOAT |
944 #undef DEFINE_ARGS | 949 #undef DEFINE_ARGS |
945 #undef DEFINE_IMPLICATION | 950 #undef DEFINE_IMPLICATION |
946 #undef DEFINE_NEG_IMPLICATION | 951 #undef DEFINE_NEG_IMPLICATION |
947 #undef DEFINE_VALUE_IMPLICATION | 952 #undef DEFINE_VALUE_IMPLICATION |
948 #undef DEFINE_ALIAS_BOOL | 953 #undef DEFINE_ALIAS_BOOL |
949 #undef DEFINE_ALIAS_INT | 954 #undef DEFINE_ALIAS_INT |
950 #undef DEFINE_ALIAS_STRING | 955 #undef DEFINE_ALIAS_STRING |
951 #undef DEFINE_ALIAS_FLOAT | 956 #undef DEFINE_ALIAS_FLOAT |
952 #undef DEFINE_ALIAS_ARGS | 957 #undef DEFINE_ALIAS_ARGS |
953 | 958 |
954 #undef FLAG_MODE_DECLARE | 959 #undef FLAG_MODE_DECLARE |
955 #undef FLAG_MODE_DEFINE | 960 #undef FLAG_MODE_DEFINE |
956 #undef FLAG_MODE_DEFINE_DEFAULTS | 961 #undef FLAG_MODE_DEFINE_DEFAULTS |
957 #undef FLAG_MODE_META | 962 #undef FLAG_MODE_META |
958 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 963 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
959 | 964 |
960 #undef COMMA | 965 #undef COMMA |
OLD | NEW |