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

Unified Diff: runtime/vm/raw_object.h

Issue 2584613002: PATCH (not to be comitted): Support for printing instruction statistics
Patch Set: Fixed polymorphic call inside try, added more tags for remaining unknown code Created 4 years 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 | « runtime/vm/precompiler.cc ('k') | runtime/vm/snapshot.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/raw_object.h
diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h
index 532cb72b7038a4d5b65fbae1a6f1f14bd3740c25..c6c26c9af0aec2ba8da13d335ef559aaa0d33a4a 100644
--- a/runtime/vm/raw_object.h
+++ b/runtime/vm/raw_object.h
@@ -1075,6 +1075,7 @@ class RawNamespace : public RawObject {
};
+class CodeStatistics;
class RawCode : public RawObject {
enum InlinedMetadataIndex {
kInlinedIntervalsIndex = 0,
@@ -1120,6 +1121,10 @@ class RawCode : public RawObject {
#endif
}
+#ifdef DART_PRECOMPILER
+ CodeStatistics* function_stats_;
+#endif
+
// Compilation timestamp.
NOT_IN_PRECOMPILED(int64_t compile_timestamp_);
« no previous file with comments | « runtime/vm/precompiler.cc ('k') | runtime/vm/snapshot.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698