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

Unified Diff: runtime/vm/flow_graph_allocator.cc

Issue 855533002: Isolate/Thread split: Isolate -> Zone for LocationSummary. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 11 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_allocator.cc
===================================================================
--- runtime/vm/flow_graph_allocator.cc (revision 42919)
+++ runtime/vm/flow_graph_allocator.cc (working copy)
@@ -164,7 +164,8 @@
Instruction* current = it.Current();
// Initialize location summary for instruction.
- current->InitializeLocationSummary(Isolate::Current(), true); // opt
+ current->InitializeLocationSummary(Isolate::Current()->current_zone(),
Ivan Posva 2015/01/15 20:35:39 SSALivenessAnalysis or even better its base class
koda 2015/01/15 21:29:11 Done.
+ true); // opt
LocationSummary* locs = current->locs();
#if DEBUG
locs->DiscoverWritableInputs();

Powered by Google App Engine
This is Rietveld 408576698