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

Unified Diff: runtime/vm/flow_graph_builder.h

Issue 10399026: Add a global graph entry. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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_builder.cc » ('j') | runtime/vm/intermediate_language.h » ('J')
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 49b83fd24c60a1540239df5fc876d80c048c9dae..92c6bc48707dc6494361518f5d422b66fb818a19 100644
--- a/runtime/vm/flow_graph_builder.h
+++ b/runtime/vm/flow_graph_builder.h
@@ -40,7 +40,7 @@ class FlowGraphBuilder: public ValueObject {
void set_try_index(intptr_t value) { try_index_ = value; }
intptr_t try_index() const { return try_index_; }
- void AddCatchEntry(intptr_t try_index, Instruction* entry);
+ void AddCatchEntry(TargetEntryInstr* entry);
private:
void ComputeDominators(GrowableArray<BlockEntryInstr*>* preorder,
@@ -56,7 +56,7 @@ class FlowGraphBuilder: public ValueObject {
intptr_t context_level_;
intptr_t last_used_try_index_;
intptr_t try_index_;
- GrowableArray<Instruction*> catch_entries_;
+ GraphEntryInstr* graph_entry_;
DISALLOW_IMPLICIT_CONSTRUCTORS(FlowGraphBuilder);
};
« no previous file with comments | « no previous file | runtime/vm/flow_graph_builder.cc » ('j') | runtime/vm/intermediate_language.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698