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

Unified Diff: runtime/vm/flow_graph.h

Issue 10875030: Add support for XMM registers in SSA code generation pipeline. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix a bug pointed out by Florian 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 | « runtime/vm/compiler.cc ('k') | runtime/vm/flow_graph_allocator.h » ('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 235bf83baa5efa17573b9444507f70e9d51906a1..710d0583ba06ff6e7615d6aae85352f056aaf221 100644
--- a/runtime/vm/flow_graph.h
+++ b/runtime/vm/flow_graph.h
@@ -60,6 +60,8 @@ class FlowGraph: public ZoneAllocated {
return graph_entry_;
}
+ intptr_t alloc_ssa_temp_index() { return current_ssa_temp_index_++; }
+
// Operations on the flow graph.
void ComputeSSA();
void ComputeUseLists();
@@ -96,7 +98,6 @@ class FlowGraph: public ZoneAllocated {
void MarkLivePhis(GrowableArray<PhiInstr*>* live_phis);
intptr_t current_ssa_temp_index() const { return current_ssa_temp_index_; }
- intptr_t alloc_ssa_temp_index() { return current_ssa_temp_index_++; }
// DiscoverBlocks computes parent_ and assigned_vars_ which are then used
// if/when computing SSA.
« no previous file with comments | « runtime/vm/compiler.cc ('k') | runtime/vm/flow_graph_allocator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698