| Index: src/flag-definitions.h
|
| diff --git a/src/flag-definitions.h b/src/flag-definitions.h
|
| index 685559a53c7a02b4dae4c5483d0c9e7e3d4bab35..81ec78a335045dfad2a482d0aefa3b7ada9e0dac 100644
|
| --- a/src/flag-definitions.h
|
| +++ b/src/flag-definitions.h
|
| @@ -284,6 +284,8 @@ DEFINE_bool(enable_vfp2, true,
|
| "enable use of VFP2 instructions if available")
|
| DEFINE_bool(enable_armv7, true,
|
| "enable use of ARMv7 instructions if available (ARM only)")
|
| +DEFINE_bool(enable_sudiv, true,
|
| + "enable use of SDIV and UDIV instructions if available (ARM only)")
|
| DEFINE_bool(enable_fpu, true,
|
| "enable use of MIPS FPU instructions if available (MIPS only)")
|
|
|
| @@ -333,6 +335,10 @@ DEFINE_bool(compilation_cache, true, "enable compilation cache")
|
|
|
| DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions")
|
|
|
| +// cpu-profiler.cc
|
| +DEFINE_int(cpu_profiler_sampling_period, 1000,
|
| + "CPU profiler sampling period in microseconds")
|
| +
|
| // debug.cc
|
| DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response")
|
| DEFINE_bool(debugger_auto_break, true,
|
|
|