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

Unified Diff: runtime/vm/flow_graph_range_analysis.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
« no previous file with comments | « runtime/vm/flow_graph_optimizer.cc ('k') | runtime/vm/flow_graph_range_analysis.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_range_analysis.h
===================================================================
--- runtime/vm/flow_graph_range_analysis.h (revision 44266)
+++ runtime/vm/flow_graph_range_analysis.h (working copy)
@@ -601,7 +601,7 @@
Range* ConstraintSmiRange(Token::Kind op, Definition* boundary);
- Isolate* isolate() const { return flow_graph_->isolate(); }
+ Zone* zone() const { return flow_graph_->zone(); }
FlowGraph* flow_graph_;
@@ -651,13 +651,13 @@
Definition* ConstructReplacementFor(Definition* def);
void ReplaceInstructions();
- Isolate* isolate() const { return isolate_; }
+ Zone* zone() const { return zone_; }
GrowableArray<Definition*> potential_uint32_defs_;
BitVector* selected_uint32_defs_;
FlowGraph* flow_graph_;
- Isolate* isolate_;
+ Zone* zone_;
};
« no previous file with comments | « runtime/vm/flow_graph_optimizer.cc ('k') | runtime/vm/flow_graph_range_analysis.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698