Index: src/api.cc |
diff --git a/src/api.cc b/src/api.cc |
index 553cf485d46090491ce302cbc4210856188fe3ca..c2df205c43b6f8de517517fcd81d6f2d715f9406 100644 |
--- a/src/api.cc |
+++ b/src/api.cc |
@@ -4479,7 +4479,6 @@ MaybeLocal<Value> Object::CallAsFunction(Local<Context> context, |
Local<Value> recv, int argc, |
Local<Value> argv[]) { |
PREPARE_FOR_EXECUTION_WITH_CALLBACK(context, Object, CallAsFunction, Value); |
- i::HistogramTimerScope execute_timer(isolate->counters()->execute(), true); |
i::TimerEventScope<i::TimerEventExecute> timer_scope(isolate); |
TRACE_EVENT0("v8", "V8.Execute"); |
auto self = Utils::OpenHandle(this); |
@@ -4507,7 +4506,6 @@ MaybeLocal<Value> Object::CallAsConstructor(Local<Context> context, int argc, |
Local<Value> argv[]) { |
PREPARE_FOR_EXECUTION_WITH_CALLBACK(context, Object, CallAsConstructor, |
Value); |
- i::HistogramTimerScope execute_timer(isolate->counters()->execute(), true); |
i::TimerEventScope<i::TimerEventExecute> timer_scope(isolate); |
TRACE_EVENT0("v8", "V8.Execute"); |
auto self = Utils::OpenHandle(this); |
@@ -4558,7 +4556,6 @@ Local<v8::Object> Function::NewInstance() const { |
MaybeLocal<Object> Function::NewInstance(Local<Context> context, int argc, |
v8::Local<v8::Value> argv[]) const { |
PREPARE_FOR_EXECUTION_WITH_CALLBACK(context, Function, NewInstance, Object); |
- i::HistogramTimerScope execute_timer(isolate->counters()->execute(), true); |
i::TimerEventScope<i::TimerEventExecute> timer_scope(isolate); |
TRACE_EVENT0("v8", "V8.Execute"); |
auto self = Utils::OpenHandle(this); |
@@ -4583,7 +4580,6 @@ MaybeLocal<v8::Value> Function::Call(Local<Context> context, |
v8::Local<v8::Value> recv, int argc, |
v8::Local<v8::Value> argv[]) { |
PREPARE_FOR_EXECUTION_WITH_CALLBACK(context, Function, Call, Value); |
- i::HistogramTimerScope execute_timer(isolate->counters()->execute(), true); |
i::TimerEventScope<i::TimerEventExecute> timer_scope(isolate); |
TRACE_EVENT0("v8", "V8.Execute"); |
auto self = Utils::OpenHandle(this); |