| Index: src/flag-definitions.h
|
| diff --git a/src/flag-definitions.h b/src/flag-definitions.h
|
| index 07f60e77020e0fb56db75d4a1778e3146b1c8160..d24da96fadb8eab9651d3e4582327ed9f9c39105 100644
|
| --- a/src/flag-definitions.h
|
| +++ b/src/flag-definitions.h
|
| @@ -909,12 +909,6 @@ DEFINE_STRING(startup_blob, NULL,
|
| DEFINE_BOOL(profile_hydrogen_code_stub_compilation, false,
|
| "Print the time it takes to lazily compile hydrogen code stubs.")
|
|
|
| -DEFINE_BOOL(predictable, false, "enable predictable mode")
|
| -DEFINE_NEG_IMPLICATION(predictable, concurrent_recompilation)
|
| -DEFINE_NEG_IMPLICATION(predictable, concurrent_sweeping)
|
| -DEFINE_NEG_IMPLICATION(predictable, parallel_compaction)
|
| -DEFINE_NEG_IMPLICATION(predictable, memory_reducer)
|
| -
|
| // mark-compact.cc
|
| DEFINE_BOOL(force_marking_deque_overflows, false,
|
| "force overflows of marking deque by reducing it's size "
|
| @@ -1158,10 +1152,26 @@ DEFINE_IMPLICATION(print_all_code, trace_codegen)
|
| #endif
|
| #endif
|
|
|
| +#undef FLAG
|
| +#define FLAG FLAG_FULL
|
|
|
| //
|
| -// VERIFY_PREDICTABLE related flags
|
| +// Threading related flags.
|
| +//
|
| +
|
| +DEFINE_BOOL(single_threaded, false, "disable the use of background tasks")
|
| +DEFINE_NEG_IMPLICATION(single_threaded, concurrent_recompilation)
|
| +DEFINE_NEG_IMPLICATION(single_threaded, concurrent_sweeping)
|
| +DEFINE_NEG_IMPLICATION(single_threaded, parallel_compaction)
|
| +
|
| //
|
| +// Predictable mode related flags.
|
| +//
|
| +
|
| +DEFINE_BOOL(predictable, false, "enable predictable mode")
|
| +DEFINE_IMPLICATION(predictable, single_threaded)
|
| +DEFINE_NEG_IMPLICATION(predictable, memory_reducer)
|
| +
|
| #undef FLAG
|
|
|
| #ifdef VERIFY_PREDICTABLE
|
| @@ -1175,7 +1185,6 @@ DEFINE_BOOL(verify_predictable, false,
|
| DEFINE_INT(dump_allocations_digest_at_alloc, -1,
|
| "dump allocations digest each n-th allocation")
|
|
|
| -
|
| //
|
| // Read-only flags
|
| //
|
| @@ -1190,7 +1199,6 @@ DEFINE_BOOL(unbox_double_fields, V8_DOUBLE_FIELDS_UNBOXING,
|
| "enable in-object double fields unboxing (64-bit only)")
|
| DEFINE_IMPLICATION(unbox_double_fields, track_double_fields)
|
|
|
| -
|
| // Cleanup...
|
| #undef FLAG_FULL
|
| #undef FLAG_READONLY
|
|
|