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 1301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1312 "dump allocations digest each n-th allocation") | 1312 "dump allocations digest each n-th allocation") |
1313 | 1313 |
1314 // | 1314 // |
1315 // Read-only flags | 1315 // Read-only flags |
1316 // | 1316 // |
1317 #undef FLAG | 1317 #undef FLAG |
1318 #define FLAG FLAG_READONLY | 1318 #define FLAG FLAG_READONLY |
1319 | 1319 |
1320 // assembler.h | 1320 // assembler.h |
1321 DEFINE_BOOL(enable_embedded_constant_pool, V8_EMBEDDED_CONSTANT_POOL, | 1321 DEFINE_BOOL(enable_embedded_constant_pool, V8_EMBEDDED_CONSTANT_POOL, |
1322 "enable use of embedded constant pools (ARM/PPC only)") | 1322 "enable use of embedded constant pools (PPC only)") |
1323 | 1323 |
1324 DEFINE_BOOL(unbox_double_fields, V8_DOUBLE_FIELDS_UNBOXING, | 1324 DEFINE_BOOL(unbox_double_fields, V8_DOUBLE_FIELDS_UNBOXING, |
1325 "enable in-object double fields unboxing (64-bit only)") | 1325 "enable in-object double fields unboxing (64-bit only)") |
1326 DEFINE_IMPLICATION(unbox_double_fields, track_double_fields) | 1326 DEFINE_IMPLICATION(unbox_double_fields, track_double_fields) |
1327 | 1327 |
1328 // Cleanup... | 1328 // Cleanup... |
1329 #undef FLAG_FULL | 1329 #undef FLAG_FULL |
1330 #undef FLAG_READONLY | 1330 #undef FLAG_READONLY |
1331 #undef FLAG | 1331 #undef FLAG |
1332 #undef FLAG_ALIAS | 1332 #undef FLAG_ALIAS |
(...skipping 14 matching lines...) Expand all Loading... |
1347 #undef DEFINE_ALIAS_FLOAT | 1347 #undef DEFINE_ALIAS_FLOAT |
1348 #undef DEFINE_ALIAS_ARGS | 1348 #undef DEFINE_ALIAS_ARGS |
1349 | 1349 |
1350 #undef FLAG_MODE_DECLARE | 1350 #undef FLAG_MODE_DECLARE |
1351 #undef FLAG_MODE_DEFINE | 1351 #undef FLAG_MODE_DEFINE |
1352 #undef FLAG_MODE_DEFINE_DEFAULTS | 1352 #undef FLAG_MODE_DEFINE_DEFAULTS |
1353 #undef FLAG_MODE_META | 1353 #undef FLAG_MODE_META |
1354 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1354 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
1355 | 1355 |
1356 #undef COMMA | 1356 #undef COMMA |
OLD | NEW |