Chromium Code Reviews| Index: src/flag-definitions.h |
| diff --git a/src/flag-definitions.h b/src/flag-definitions.h |
| index e1c075930c178c04969b32e7aca161bfcd04d2b4..f58b8fb367c46236b41b7252064b3fa03c3091ef 100644 |
| --- a/src/flag-definitions.h |
| +++ b/src/flag-definitions.h |
| @@ -256,11 +256,16 @@ HARMONY_STAGED(FLAG_STAGED_FEATURES) |
| HARMONY_SHIPPING(FLAG_SHIPPING_FEATURES) |
| #undef FLAG_SHIPPING_FEATURES |
| +// Flags for future configurations. |
| DEFINE_BOOL(future, false, |
| "Implies all staged features that we want to ship in the " |
| "not-too-far future") |
| DEFINE_IMPLICATION(future, ignition_staging) |
| +DEFINE_BOOL(ignition_staging, false, "use ignition with all staged features") |
|
marja
2017/01/10 09:58:54
Why are these now moved out of the "Flags for Igni
rmcilroy
2017/01/12 12:31:55
When writing this CL I got very confused initially
|
| +DEFINE_IMPLICATION(ignition_staging, ignition) |
| +DEFINE_IMPLICATION(ignition_staging, compiler_dispatcher) |
| + |
| // Flags for experimental implementation features. |
| DEFINE_BOOL(allocation_site_pretenuring, true, |
| "pretenure with allocation sites") |
| @@ -298,9 +303,6 @@ DEFINE_BOOL(string_slices, true, "use string slices") |
| // Flags for Ignition. |
| DEFINE_BOOL(ignition, false, "use ignition interpreter") |
| -DEFINE_BOOL(ignition_staging, false, "use ignition with all staged features") |
| -DEFINE_IMPLICATION(ignition_staging, ignition) |
| -DEFINE_IMPLICATION(ignition_staging, compiler_dispatcher) |
| DEFINE_STRING(ignition_filter, "*", "filter for ignition interpreter") |
| DEFINE_BOOL(ignition_deadcode, true, |
| "use ignition dead code elimination optimizer") |