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

Unified Diff: include/dart_api.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, 6 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: include/dart_api.h
===================================================================
--- include/dart_api.h (revision 8145)
+++ include/dart_api.h (working copy)
@@ -2115,4 +2115,8 @@
DART_EXPORT void Dart_InitPprofSupport();
DART_EXPORT void Dart_GetPprofSymbolInfo(void** buffer, int* buffer_size);
+// Support for generating flow graph compiler debugging output into a file.
+typedef void (*FileWriterFunction)(const char* buffer, int64_t num_bytes);
+DART_EXPORT void Dart_InitFlowGraphPrinting(FileWriterFunction function);
+
#endif // INCLUDE_DART_API_H_

Powered by Google App Engine
This is Rietveld 408576698