Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(361)

Unified Diff: src/vm-state-inl.h

Issue 1770353002: Annotate runtime call stats with trace events (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebase Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/builtins.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/vm-state-inl.h
diff --git a/src/vm-state-inl.h b/src/vm-state-inl.h
index f00cf12c3b4a889862f3a872508b0573d39b23f0..c8bd4e80828d92dbe0b5b3ebef211c6a7df409bc 100644
--- a/src/vm-state-inl.h
+++ b/src/vm-state-inl.h
@@ -68,6 +68,8 @@ ExternalCallbackScope::ExternalCallbackScope(Isolate* isolate, Address callback)
timer_.Initialize(&stats->ExternalCallback, stats->current_timer());
stats->Enter(&timer_);
}
+ TRACE_EVENT_BEGIN0(TRACE_DISABLED_BY_DEFAULT("v8.runtime"),
+ "V8.ExternalCallback");
}
ExternalCallbackScope::~ExternalCallbackScope() {
@@ -75,6 +77,8 @@ ExternalCallbackScope::~ExternalCallbackScope() {
isolate_->counters()->runtime_call_stats()->Leave(&timer_);
}
isolate_->set_external_callback_scope(previous_scope_);
+ TRACE_EVENT_END0(TRACE_DISABLED_BY_DEFAULT("v8.runtime"),
+ "V8.ExternalCallback");
}
Address ExternalCallbackScope::scope_address() {
« no previous file with comments | « src/builtins.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698