| Index: src/flag-definitions.h
|
| diff --git a/src/flag-definitions.h b/src/flag-definitions.h
|
| index 989e19348c08d0c8ce5618fbca87127cda85640c..b9eb073a8165c1b62aceee40fac51d8b7e49b1ab 100644
|
| --- a/src/flag-definitions.h
|
| +++ b/src/flag-definitions.h
|
| @@ -749,9 +749,12 @@ 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_osr)
|
| -DEFINE_NEG_IMPLICATION(predictable, concurrent_sweeping)
|
| +DEFINE_IMPLICATION(predictable, single_threaded)
|
| +
|
| +DEFINE_BOOL(single_threaded, false, "use a single thread to run")
|
| +DEFINE_NEG_IMPLICATION(single_threaded, concurrent_recompilation)
|
| +DEFINE_NEG_IMPLICATION(single_threaded, concurrent_osr)
|
| +DEFINE_NEG_IMPLICATION(single_threaded, concurrent_sweeping)
|
|
|
|
|
| //
|
|
|