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

Unified Diff: runtime/vm/flow_graph.h

Issue 10917085: Revert "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') | 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 b4e38e56ccf2fb382c1cfc41cf5739758ceac656..4f9a2d2bd1efde0bd91d2b708c39fce61903a9ab 100644
--- a/runtime/vm/flow_graph.h
+++ b/runtime/vm/flow_graph.h
@@ -10,13 +10,14 @@
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 {
@@ -71,7 +72,9 @@ class FlowGraph: public ZoneAllocated {
void ComputeSSA(intptr_t next_virtual_register_number = 0);
void ComputeUseLists();
- void InlineCall(StaticCallInstr* call, FlowGraph* callee_graph);
+ void InlineCall(BindInstr* caller_instr,
+ StaticCallComp* caller_comp,
+ 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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698