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

Unified Diff: vm/isolate.h

Issue 10446116: Add flow graph printing into a .cfg file with flag --print-flow-graph-file. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 7 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: vm/isolate.h
===================================================================
--- vm/isolate.h (revision 8145)
+++ vm/isolate.h (working copy)
@@ -190,6 +190,14 @@
return gc_epilogue_callbacks_;
}
+ FILE* flow_graph_file() {
+ return flow_graph_file_;
+ }
+
+ void set_flow_graph_file(FILE* file) {
+ flow_graph_file_ = file;
+ }
+
private:
Isolate();
@@ -229,6 +237,7 @@
uword spawn_data_;
GcPrologueCallbacks gc_prologue_callbacks_;
GcEpilogueCallbacks gc_epilogue_callbacks_;
+ FILE* flow_graph_file_;
static Dart_IsolateCreateCallback create_callback_;
static Dart_IsolateInterruptCallback interrupt_callback_;
« vm/intermediate_language.cc ('K') | « vm/intermediate_language.cc ('k') | vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698