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

Unified Diff: runtime/vm/flow_graph_inliner.h

Issue 211873003: Incremental tuning/cleanup of inlining: --print-inline-tree changed to --print-inlining-tree. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 9 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/flow_graph_inliner.h
===================================================================
--- runtime/vm/flow_graph_inliner.h (revision 34394)
+++ runtime/vm/flow_graph_inliner.h (working copy)
@@ -21,7 +21,8 @@
// The flow graph is destructively updated upon inlining.
void Inline();
- static void CollectGraphInfo(FlowGraph* flow_graph);
+ // Compute graph info if it was not already computed or if 'force' is true.
+ static void CollectGraphInfo(FlowGraph* flow_graph, bool force = false);
static bool AlwaysInline(const Function& function);

Powered by Google App Engine
This is Rietveld 408576698