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

Unified Diff: runtime/vm/flow_graph_inliner.h

Issue 13529021: Fix guarded_cid handling: add field to list of guarded_field at LoadField creation time. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 8 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
« no previous file with comments | « runtime/vm/flow_graph.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 20996)
+++ runtime/vm/flow_graph_inliner.h (working copy)
@@ -9,13 +9,14 @@
namespace dart {
+class Field;
class FlowGraph;
template <typename T> class GrowableArray;
class FlowGraphInliner : ValueObject {
public:
- explicit FlowGraphInliner(FlowGraph* flow_graph)
- : flow_graph_(flow_graph) {}
+ FlowGraphInliner(FlowGraph* flow_graph, GrowableArray<Field*>* guarded_fields)
+ : flow_graph_(flow_graph), guarded_fields_(guarded_fields) {}
// The flow graph is destructively updated upon inlining.
void Inline();
@@ -24,6 +25,8 @@
private:
FlowGraph* flow_graph_;
+ GrowableArray<Field*>* guarded_fields_;
+
DISALLOW_COPY_AND_ASSIGN(FlowGraphInliner);
};
« no previous file with comments | « runtime/vm/flow_graph.cc ('k') | runtime/vm/flow_graph_inliner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698