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

Unified Diff: src/isolate.cc

Issue 1678973002: [counters] moving runtime counters to counter.h (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 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/counters.cc ('k') | src/runtime/runtime.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.cc
diff --git a/src/isolate.cc b/src/isolate.cc
index e0f2b1df329e7cb7dcb466ea3a242b6c2522b36c..7e7190bc270f773e935f7f24908a1c57f27e9e91 100644
--- a/src/isolate.cc
+++ b/src/isolate.cc
@@ -2402,8 +2402,8 @@ void Isolate::DumpAndResetCompilationStats() {
hstatistics_ = nullptr;
if (FLAG_runtime_call_stats) {
OFStream os(stdout);
- runtime_state()->runtime_call_stats()->Print(os);
- runtime_state()->runtime_call_stats()->Reset();
+ counters()->runtime_call_stats()->Print(os);
+ counters()->runtime_call_stats()->Reset();
}
}
« no previous file with comments | « src/counters.cc ('k') | src/runtime/runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698