| Index: src/flag-definitions.h
|
| ===================================================================
|
| --- src/flag-definitions.h (revision 7948)
|
| +++ src/flag-definitions.h (working copy)
|
| @@ -147,7 +147,6 @@
|
| DEFINE_bool(debug_code, false,
|
| "generate extra code (assertions) for debugging")
|
| DEFINE_bool(code_comments, false, "emit comments in code disassembly")
|
| -DEFINE_bool(emit_branch_hints, false, "emit branch hints")
|
| DEFINE_bool(peephole_optimization, true,
|
| "perform peephole optimizations in assembly code")
|
| DEFINE_bool(print_peephole_optimization, false,
|
| @@ -294,14 +293,15 @@
|
|
|
| // mark-compact.cc
|
| DEFINE_bool(always_compact, false, "Perform compaction on every full GC")
|
| -DEFINE_bool(never_compact, false,
|
| - "Never perform compaction on full GC - testing only")
|
| DEFINE_bool(lazy_sweeping, true,
|
| "Use lazy sweeping for old pointer and data spaces")
|
| -DEFINE_bool(cleanup_ics_at_gc, true,
|
| - "Flush inline caches prior to mark compact collection.")
|
| DEFINE_bool(cleanup_caches_in_maps_at_gc, true,
|
| "Flush code caches in maps during mark compact cycle.")
|
| +DEFINE_bool(never_compact, false,
|
| + "Never perform compaction on full GC - testing only")
|
| +DEFINE_bool(cleanup_code_caches_at_gc, true,
|
| + "Flush inline caches prior to mark compact collection and "
|
| + "flush code caches in maps during mark compact cycle.")
|
| DEFINE_int(random_seed, 0,
|
| "Default seed for initializing random generator "
|
| "(0, the default, means to use system random).")
|
| @@ -338,7 +338,7 @@
|
| DEFINE_int(sim_stack_alignment, 8,
|
| "Stack alingment in bytes in simulator (4 or 8, 8 is default)")
|
|
|
| -// top.cc
|
| +// isolate.cc
|
| DEFINE_bool(trace_exception, false,
|
| "print stack trace when throwing exceptions")
|
| DEFINE_bool(preallocate_message_memory, false,
|
|
|