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

Unified Diff: runtime/vm/isolate.h

Issue 11734028: - Consolidate verbose-gc output to be a single line which can be imported easily into spreadsheets. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 12 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
Index: runtime/vm/isolate.h
===================================================================
--- runtime/vm/isolate.h (revision 16586)
+++ runtime/vm/isolate.h (working copy)
@@ -128,6 +128,8 @@
const char* name() const { return name_; }
+ int64_t start_time() const { return start_time_; }
+
Dart_Port main_port() { return main_port_; }
void set_main_port(Dart_Port port) {
ASSERT(main_port_ == 0); // Only set main port once.
@@ -351,6 +353,7 @@
MegamorphicCacheTable megamorphic_cache_table_;
Dart_MessageNotifyCallback message_notify_callback_;
char* name_;
+ int64_t start_time_;
Dart_Port main_port_;
Heap* heap_;
ObjectStore* object_store_;
@@ -372,6 +375,7 @@
uword spawn_data_;
GcPrologueCallbacks gc_prologue_callbacks_;
GcEpilogueCallbacks gc_epilogue_callbacks_;
+
// Deoptimization support.
intptr_t* deopt_cpu_registers_copy_;
double* deopt_xmm_registers_copy_;

Powered by Google App Engine
This is Rietveld 408576698