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

Unified Diff: runtime/vm/flow_graph_allocator.h

Issue 601103004: Keep list of uses sorted when building it. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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_allocator.cc » ('j') | runtime/vm/flow_graph_allocator.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_allocator.h
diff --git a/runtime/vm/flow_graph_allocator.h b/runtime/vm/flow_graph_allocator.h
index 013eb6f41d360f99cf5201b234b3888b320ada2c..8b106bd6640c85d269628600c5182383911f6509 100644
--- a/runtime/vm/flow_graph_allocator.h
+++ b/runtime/vm/flow_graph_allocator.h
@@ -558,8 +558,6 @@ class LiveRange : public ZoneAllocated {
finger_() {
}
- static LiveRange* MakeTemp(intptr_t pos, Location* location_slot);
-
intptr_t vreg() const { return vreg_; }
Representation representation() const { return representation_; }
LiveRange* next_sibling() const { return next_sibling_; }
@@ -588,15 +586,13 @@ class LiveRange : public ZoneAllocated {
void AddSafepoint(intptr_t pos, LocationSummary* locs);
- void AddUse(intptr_t pos, Location* location_slot);
+ UsePosition* AddUse(intptr_t pos, Location* location_slot);
void AddHintedUse(intptr_t pos, Location* location_slot, Location* hint);
void AddUseInterval(intptr_t start, intptr_t end);
void Print();
- void AssignLocation(UseInterval* use, Location loc);
-
LiveRange* SplitAt(intptr_t pos);
// A fast conservative check if the range might contain a given position
« no previous file with comments | « no previous file | runtime/vm/flow_graph_allocator.cc » ('j') | runtime/vm/flow_graph_allocator.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698