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

Unified Diff: runtime/vm/flow_graph_optimizer.h

Issue 982873004: Thread/Isolate refactoring: new(Isolate) -> new(Zone) (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 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_optimizer.h
===================================================================
--- runtime/vm/flow_graph_optimizer.h (revision 44266)
+++ runtime/vm/flow_graph_optimizer.h (working copy)
@@ -324,7 +324,7 @@
// Replace a target entry instruction with a join entry instruction. Does
// not update the original target's predecessors to point to the new block
// and does not replace the target in already computed block order lists.
- static JoinEntryInstr* ToJoinEntry(Isolate* isolate,
+ static JoinEntryInstr* ToJoinEntry(Zone* zone,
TargetEntryInstr* target);
private:
@@ -334,7 +334,7 @@
// Duplicate a branch while replacing its comparison's left and right
// inputs.
- static BranchInstr* CloneBranch(Isolate* isolate,
+ static BranchInstr* CloneBranch(Zone* zone,
BranchInstr* branch,
Value* new_left,
Value* new_right);

Powered by Google App Engine
This is Rietveld 408576698