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

Unified Diff: runtime/vm/flow_graph_inliner.h

Issue 11275180: Fixed disabling inlining of static calls that were not executed. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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/compiler.cc ('k') | runtime/vm/flow_graph_inliner.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_inliner.h
===================================================================
--- runtime/vm/flow_graph_inliner.h (revision 14605)
+++ runtime/vm/flow_graph_inliner.h (working copy)
@@ -14,18 +14,14 @@
class FlowGraphInliner : ValueObject {
public:
- FlowGraphInliner(FlowGraph* flow_graph,
- const GrowableArray<intptr_t>& deopt_ids)
- : flow_graph_(flow_graph),
- uncalled_static_static_call_deopt_ids_(deopt_ids) {}
+ explicit FlowGraphInliner(FlowGraph* flow_graph)
+ : flow_graph_(flow_graph) {}
// The flow graph is destructively updated upon inlining.
void Inline();
private:
FlowGraph* flow_graph_;
- const GrowableArray<intptr_t>& uncalled_static_static_call_deopt_ids_;
-
DISALLOW_COPY_AND_ASSIGN(FlowGraphInliner);
};
« no previous file with comments | « runtime/vm/compiler.cc ('k') | runtime/vm/flow_graph_inliner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698