Index: src/execution.cc |
diff --git a/src/execution.cc b/src/execution.cc |
index a092a8a06cea1d99acfbfee6a92a114a06fedee3..bc1258f60e9554c56ae97072d4278fe8f38e8596 100644 |
--- a/src/execution.cc |
+++ b/src/execution.cc |
@@ -94,6 +94,8 @@ MUST_USE_RESULT MaybeHandle<Object> Invoke(Isolate* isolate, bool is_construct, |
if (FLAG_profile_deserialization && target->IsJSFunction()) { |
PrintDeserializedCodeInfo(Handle<JSFunction>::cast(target)); |
} |
+ RuntimeCallTimerScope timer( |
+ isolate, &isolate->counters()->runtime_call_stats()->JS_Execution); |
value = CALL_GENERATED_CODE(isolate, stub_entry, orig_func, func, recv, |
argc, argv); |
} |