| 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 879 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 890 // | 890 // |
| 891 // Read-only flags | 891 // Read-only flags |
| 892 // | 892 // |
| 893 #undef FLAG | 893 #undef FLAG |
| 894 #define FLAG FLAG_READONLY | 894 #define FLAG FLAG_READONLY |
| 895 | 895 |
| 896 // assembler-arm.h | 896 // assembler-arm.h |
| 897 DEFINE_BOOL(enable_ool_constant_pool, V8_OOL_CONSTANT_POOL, | 897 DEFINE_BOOL(enable_ool_constant_pool, V8_OOL_CONSTANT_POOL, |
| 898 "enable use of out-of-line constant pools (ARM only)") | 898 "enable use of out-of-line constant pools (ARM only)") |
| 899 | 899 |
| 900 DEFINE_BOOL(unbox_double_fields, V8_DOUBLE_FIELDS_UNBOXING, |
| 901 "enable in-object double fields unboxing (X64 only)") |
| 902 DEFINE_IMPLICATION(unbox_double_fields, track_double_fields) |
| 903 |
| 904 |
| 900 // Cleanup... | 905 // Cleanup... |
| 901 #undef FLAG_FULL | 906 #undef FLAG_FULL |
| 902 #undef FLAG_READONLY | 907 #undef FLAG_READONLY |
| 903 #undef FLAG | 908 #undef FLAG |
| 904 #undef FLAG_ALIAS | 909 #undef FLAG_ALIAS |
| 905 | 910 |
| 906 #undef DEFINE_BOOL | 911 #undef DEFINE_BOOL |
| 907 #undef DEFINE_MAYBE_BOOL | 912 #undef DEFINE_MAYBE_BOOL |
| 908 #undef DEFINE_INT | 913 #undef DEFINE_INT |
| 909 #undef DEFINE_STRING | 914 #undef DEFINE_STRING |
| 910 #undef DEFINE_FLOAT | 915 #undef DEFINE_FLOAT |
| 911 #undef DEFINE_ARGS | 916 #undef DEFINE_ARGS |
| 912 #undef DEFINE_IMPLICATION | 917 #undef DEFINE_IMPLICATION |
| 913 #undef DEFINE_NEG_IMPLICATION | 918 #undef DEFINE_NEG_IMPLICATION |
| 914 #undef DEFINE_ALIAS_BOOL | 919 #undef DEFINE_ALIAS_BOOL |
| 915 #undef DEFINE_ALIAS_INT | 920 #undef DEFINE_ALIAS_INT |
| 916 #undef DEFINE_ALIAS_STRING | 921 #undef DEFINE_ALIAS_STRING |
| 917 #undef DEFINE_ALIAS_FLOAT | 922 #undef DEFINE_ALIAS_FLOAT |
| 918 #undef DEFINE_ALIAS_ARGS | 923 #undef DEFINE_ALIAS_ARGS |
| 919 | 924 |
| 920 #undef FLAG_MODE_DECLARE | 925 #undef FLAG_MODE_DECLARE |
| 921 #undef FLAG_MODE_DEFINE | 926 #undef FLAG_MODE_DEFINE |
| 922 #undef FLAG_MODE_DEFINE_DEFAULTS | 927 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 923 #undef FLAG_MODE_META | 928 #undef FLAG_MODE_META |
| 924 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 929 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 925 | 930 |
| 926 #undef COMMA | 931 #undef COMMA |
| OLD | NEW |