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

Unified Diff: runtime/vm/flow_graph.h

Issue 10857056: Replaced Value by Definition in the renaming environment. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Patch title. Created 8 years, 4 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 | « no previous file | runtime/vm/flow_graph.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph.h
diff --git a/runtime/vm/flow_graph.h b/runtime/vm/flow_graph.h
index 8e75e07c6e573acca6b2c7fa2ce5006cd0d18bc1..e76dd22c4cb71da0bf0e9dba2d36e9b0f2c5b098 100644
--- a/runtime/vm/flow_graph.h
+++ b/runtime/vm/flow_graph.h
@@ -11,10 +11,10 @@
namespace dart {
class BlockEntryInstr;
+class Definition;
class FlowGraphBuilder;
class GraphEntryInstr;
class PhiInstr;
-class Value;
// Class to incapsulate the construction and manipulation of the flow graph.
class FlowGraph: public ZoneAllocated {
@@ -80,7 +80,7 @@ class FlowGraph: public ZoneAllocated {
void Rename(GrowableArray<PhiInstr*>* live_phis);
void RenameRecursive(
BlockEntryInstr* block_entry,
- GrowableArray<Value*>* env,
+ GrowableArray<Definition*>* env,
GrowableArray<PhiInstr*>* live_phis);
void InsertPhis(
« no previous file with comments | « no previous file | runtime/vm/flow_graph.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698