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

Unified Diff: runtime/vm/flow_graph.h

Issue 10912094: Reapply "Remove classes Computation and BindInstr." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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.cc » ('j') | runtime/vm/flow_graph_optimizer.cc » ('J')
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 4f9a2d2bd1efde0bd91d2b708c39fce61903a9ab..b4e38e56ccf2fb382c1cfc41cf5739758ceac656 100644
--- a/runtime/vm/flow_graph.h
+++ b/runtime/vm/flow_graph.h
@@ -10,14 +10,13 @@
namespace dart {
-class BindInstr;
class BlockEntryInstr;
-class StaticCallComp;
class Definition;
class FlowGraphBuilder;
class GraphEntryInstr;
class PhiInstr;
class ReturnInstr;
+class StaticCallInstr;
// Class to incapsulate the construction and manipulation of the flow graph.
class FlowGraph: public ZoneAllocated {
@@ -72,9 +71,7 @@ class FlowGraph: public ZoneAllocated {
void ComputeSSA(intptr_t next_virtual_register_number = 0);
void ComputeUseLists();
- void InlineCall(BindInstr* caller_instr,
- StaticCallComp* caller_comp,
- FlowGraph* callee_graph);
+ void InlineCall(StaticCallInstr* call, FlowGraph* callee_graph);
// TODO(zerny): Once the SSA is feature complete this should be removed.
void Bailout(const char* reason) const;
« no previous file with comments | « no previous file | runtime/vm/flow_graph.cc » ('j') | runtime/vm/flow_graph_optimizer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698