| 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 1170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1181 #define FLAG FLAG_READONLY | 1181 #define FLAG FLAG_READONLY |
| 1182 | 1182 |
| 1183 // assembler.h | 1183 // assembler.h |
| 1184 DEFINE_BOOL(enable_embedded_constant_pool, V8_EMBEDDED_CONSTANT_POOL, | 1184 DEFINE_BOOL(enable_embedded_constant_pool, V8_EMBEDDED_CONSTANT_POOL, |
| 1185 "enable use of embedded constant pools (ARM/PPC only)") | 1185 "enable use of embedded constant pools (ARM/PPC only)") |
| 1186 | 1186 |
| 1187 DEFINE_BOOL(unbox_double_fields, V8_DOUBLE_FIELDS_UNBOXING, | 1187 DEFINE_BOOL(unbox_double_fields, V8_DOUBLE_FIELDS_UNBOXING, |
| 1188 "enable in-object double fields unboxing (64-bit only)") | 1188 "enable in-object double fields unboxing (64-bit only)") |
| 1189 DEFINE_IMPLICATION(unbox_double_fields, track_double_fields) | 1189 DEFINE_IMPLICATION(unbox_double_fields, track_double_fields) |
| 1190 | 1190 |
| 1191 DEFINE_BOOL(global_var_shortcuts, false, "use ic-less global loads and stores") | |
| 1192 | |
| 1193 | 1191 |
| 1194 // Cleanup... | 1192 // Cleanup... |
| 1195 #undef FLAG_FULL | 1193 #undef FLAG_FULL |
| 1196 #undef FLAG_READONLY | 1194 #undef FLAG_READONLY |
| 1197 #undef FLAG | 1195 #undef FLAG |
| 1198 #undef FLAG_ALIAS | 1196 #undef FLAG_ALIAS |
| 1199 | 1197 |
| 1200 #undef DEFINE_BOOL | 1198 #undef DEFINE_BOOL |
| 1201 #undef DEFINE_MAYBE_BOOL | 1199 #undef DEFINE_MAYBE_BOOL |
| 1202 #undef DEFINE_INT | 1200 #undef DEFINE_INT |
| (...skipping 10 matching lines...) Expand all Loading... |
| 1213 #undef DEFINE_ALIAS_FLOAT | 1211 #undef DEFINE_ALIAS_FLOAT |
| 1214 #undef DEFINE_ALIAS_ARGS | 1212 #undef DEFINE_ALIAS_ARGS |
| 1215 | 1213 |
| 1216 #undef FLAG_MODE_DECLARE | 1214 #undef FLAG_MODE_DECLARE |
| 1217 #undef FLAG_MODE_DEFINE | 1215 #undef FLAG_MODE_DEFINE |
| 1218 #undef FLAG_MODE_DEFINE_DEFAULTS | 1216 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 1219 #undef FLAG_MODE_META | 1217 #undef FLAG_MODE_META |
| 1220 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1218 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 1221 | 1219 |
| 1222 #undef COMMA | 1220 #undef COMMA |
| OLD | NEW |