| Index: src/flag-definitions.h
|
| diff --git a/src/flag-definitions.h b/src/flag-definitions.h
|
| index 4ca1440ba365be23489f9e44251afd30efc065da..9cf895d513332cbae8c977f59e25963ea8f196d6 100644
|
| --- a/src/flag-definitions.h
|
| +++ b/src/flag-definitions.h
|
| @@ -202,6 +202,8 @@ DEFINE_implication(harmony_observation, harmony_collections)
|
| // Flags for experimental implementation features.
|
| DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes")
|
| DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values")
|
| +DEFINE_bool(compiled_keyed_dictionary_loads, true,
|
| + "use optimizing compiler to generate keyed dictionary load stubs")
|
| DEFINE_bool(clever_optimizations, true,
|
| "Optimize object size, Array shift, DOM strings and string +")
|
| DEFINE_bool(pretenuring, true, "allocate objects in old space")
|
| @@ -600,8 +602,6 @@ DEFINE_bool(abort_on_uncaught_exception, false,
|
| "abort program (dump core) when an uncaught exception is thrown")
|
| DEFINE_bool(trace_exception, false,
|
| "print stack trace when throwing exceptions")
|
| -DEFINE_bool(preallocate_message_memory, false,
|
| - "preallocate some memory to build stack traces.")
|
| DEFINE_bool(randomize_hashes, true,
|
| "randomize hashes to avoid predictable hash collisions "
|
| "(with snapshots this option cannot override the baked-in seed)")
|
| @@ -613,10 +613,6 @@ DEFINE_int(hash_seed, 0,
|
| DEFINE_bool(profile_deserialization, false,
|
| "Print the time it takes to deserialize the snapshot.")
|
|
|
| -// v8.cc
|
| -DEFINE_bool(preemption, false,
|
| - "activate a 100ms timer that switches between V8 threads")
|
| -
|
| // Regexp
|
| DEFINE_bool(regexp_optimization, true, "generate optimized regexp code")
|
|
|
|
|