| Index: src/interpreter/interpreter.cc
|
| diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc
|
| index 9a1262470d96f25d50a9ae62d9c3d08702cc62b1..39ff8c51f3f269cda3da7c9e65fb9a915cccf483 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");
|
|
|
|
|