Index: src/interpreter/interpreter.cc |
diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc |
index 505202c6cb3e915330d88270ec77f328b38782db..55cbaebd177590815220305d4a972f0d8b9a4616 100644 |
--- a/src/interpreter/interpreter.cc |
+++ b/src/interpreter/interpreter.cc |
@@ -123,6 +123,8 @@ int Interpreter::InterruptBudget() { |
} |
bool Interpreter::MakeBytecode(CompilationInfo* info) { |
+ RuntimeCallStats* stats = info->isolate()->counters()->runtime_call_stats(); |
+ RuntimeCallTimerScope runtimeTimer(info->isolate(), &stats->CompileIgnition); |
TimerEventScope<TimerEventCompileIgnition> timer(info->isolate()); |
TRACE_EVENT0("v8", "V8.CompileIgnition"); |