| Index: src/api.cc
|
| diff --git a/src/api.cc b/src/api.cc
|
| index 6332e1f6dc678794be12a882ed343e0e9d2285a0..4f1d7348ca3fbbbccebb99aec9550e03c71a99b8 100644
|
| --- a/src/api.cc
|
| +++ b/src/api.cc
|
| @@ -1783,7 +1783,6 @@
|
|
|
| MaybeLocal<Value> Script::Run(Local<Context> context) {
|
| PREPARE_FOR_EXECUTION_WITH_CALLBACK(context, "v8::Script::Run()", Value)
|
| - i::HistogramTimerScope execute_timer(isolate->counters()->execute());
|
| i::AggregatingHistogramTimerScope timer(isolate->counters()->compile_lazy());
|
| i::TimerEventScope<i::TimerEventExecute> timer_scope(isolate);
|
| TRACE_EVENT0("v8", "V8.Execute");
|
| @@ -4374,7 +4373,6 @@
|
| Local<Value> argv[]) {
|
| PREPARE_FOR_EXECUTION_WITH_CALLBACK(context, "v8::Object::CallAsFunction()",
|
| Value);
|
| - i::HistogramTimerScope execute_timer(isolate->counters()->execute());
|
| i::TimerEventScope<i::TimerEventExecute> timer_scope(isolate);
|
| TRACE_EVENT0("v8", "V8.Execute");
|
| auto self = Utils::OpenHandle(this);
|
| @@ -4402,7 +4400,6 @@
|
| Local<Value> argv[]) {
|
| PREPARE_FOR_EXECUTION_WITH_CALLBACK(context,
|
| "v8::Object::CallAsConstructor()", Value);
|
| - i::HistogramTimerScope execute_timer(isolate->counters()->execute());
|
| i::TimerEventScope<i::TimerEventExecute> timer_scope(isolate);
|
| TRACE_EVENT0("v8", "V8.Execute");
|
| auto self = Utils::OpenHandle(this);
|
| @@ -4453,7 +4450,6 @@
|
| v8::Local<v8::Value> argv[]) const {
|
| PREPARE_FOR_EXECUTION_WITH_CALLBACK(context, "v8::Function::NewInstance()",
|
| Object);
|
| - i::HistogramTimerScope execute_timer(isolate->counters()->execute());
|
| i::TimerEventScope<i::TimerEventExecute> timer_scope(isolate);
|
| TRACE_EVENT0("v8", "V8.Execute");
|
| auto self = Utils::OpenHandle(this);
|
| @@ -4478,7 +4474,6 @@
|
| v8::Local<v8::Value> recv, int argc,
|
| v8::Local<v8::Value> argv[]) {
|
| PREPARE_FOR_EXECUTION_WITH_CALLBACK(context, "v8::Function::Call()", Value);
|
| - i::HistogramTimerScope execute_timer(isolate->counters()->execute());
|
| i::TimerEventScope<i::TimerEventExecute> timer_scope(isolate);
|
| TRACE_EVENT0("v8", "V8.Execute");
|
| auto self = Utils::OpenHandle(this);
|
|
|