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

Unified Diff: runtime/vm/flow_graph_builder.h

Issue 10666026: Simple iterative liveness analysis over SSA. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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
« runtime/vm/flow_graph_allocator.cc ('K') | « runtime/vm/flow_graph_allocator.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_builder.h
diff --git a/runtime/vm/flow_graph_builder.h b/runtime/vm/flow_graph_builder.h
index 276164582c04881b9bb8f42eb1215490ca8af8ee..f1e98eaee891a234c3fb2cb184cc09fe2c95c7b2 100644
--- a/runtime/vm/flow_graph_builder.h
+++ b/runtime/vm/flow_graph_builder.h
@@ -42,6 +42,10 @@ class FlowGraphBuilder: public ValueObject {
void AddCatchEntry(TargetEntryInstr* entry);
+ intptr_t current_ssa_temp_index() const {
+ return current_ssa_temp_index_;
+ }
+
private:
void ComputeDominators(GrowableArray<BlockEntryInstr*>* preorder,
GrowableArray<intptr_t>* parent,
« runtime/vm/flow_graph_allocator.cc ('K') | « runtime/vm/flow_graph_allocator.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698