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 994 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1005 | 1005 |
1006 // | 1006 // |
1007 // Read-only flags | 1007 // Read-only flags |
1008 // | 1008 // |
1009 #undef FLAG | 1009 #undef FLAG |
1010 #define FLAG FLAG_READONLY | 1010 #define FLAG FLAG_READONLY |
1011 | 1011 |
1012 // assembler.h | 1012 // assembler.h |
1013 DEFINE_BOOL(enable_ool_constant_pool, V8_OOL_CONSTANT_POOL, | 1013 DEFINE_BOOL(enable_ool_constant_pool, V8_OOL_CONSTANT_POOL, |
1014 "enable use of out-of-line constant pools (ARM only)") | 1014 "enable use of out-of-line constant pools (ARM only)") |
| 1015 DEFINE_BOOL(enable_embedded_constant_pool, V8_EMBEDDED_CONSTANT_POOL, |
| 1016 "enable use of embedded constant pools (PPC only)") |
1015 | 1017 |
1016 DEFINE_BOOL(unbox_double_fields, V8_DOUBLE_FIELDS_UNBOXING, | 1018 DEFINE_BOOL(unbox_double_fields, V8_DOUBLE_FIELDS_UNBOXING, |
1017 "enable in-object double fields unboxing (64-bit only)") | 1019 "enable in-object double fields unboxing (64-bit only)") |
1018 DEFINE_IMPLICATION(unbox_double_fields, track_double_fields) | 1020 DEFINE_IMPLICATION(unbox_double_fields, track_double_fields) |
1019 | 1021 |
1020 | 1022 |
1021 // Cleanup... | 1023 // Cleanup... |
1022 #undef FLAG_FULL | 1024 #undef FLAG_FULL |
1023 #undef FLAG_READONLY | 1025 #undef FLAG_READONLY |
1024 #undef FLAG | 1026 #undef FLAG |
(...skipping 15 matching lines...) Expand all Loading... |
1040 #undef DEFINE_ALIAS_FLOAT | 1042 #undef DEFINE_ALIAS_FLOAT |
1041 #undef DEFINE_ALIAS_ARGS | 1043 #undef DEFINE_ALIAS_ARGS |
1042 | 1044 |
1043 #undef FLAG_MODE_DECLARE | 1045 #undef FLAG_MODE_DECLARE |
1044 #undef FLAG_MODE_DEFINE | 1046 #undef FLAG_MODE_DEFINE |
1045 #undef FLAG_MODE_DEFINE_DEFAULTS | 1047 #undef FLAG_MODE_DEFINE_DEFAULTS |
1046 #undef FLAG_MODE_META | 1048 #undef FLAG_MODE_META |
1047 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1049 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
1048 | 1050 |
1049 #undef COMMA | 1051 #undef COMMA |
OLD | NEW |