Chromium Code Reviews| Index: runtime/vm/flow_graph_optimizer.h |
| =================================================================== |
| --- runtime/vm/flow_graph_optimizer.h (revision 11611) |
| +++ runtime/vm/flow_graph_optimizer.h (working copy) |
| @@ -32,6 +32,13 @@ |
| virtual void VisitBind(BindInstr* instr); |
| virtual void VisitBranch(BranchInstr* instr); |
| +// TODO(fschneider): Once we get rid of the distinction between Instruction |
| +// and computation, this can be made private again. |
|
srdjan
2012/08/30 18:36:12
Fix comment indent.
Florian Schneider
2012/09/03 09:25:09
Done.
|
| + BindInstr* InsertBefore(Instruction* instr, |
| + Computation* comp, |
| + Environment* env, |
| + BindInstr::UseKind use_kind); |
| + |
| private: |
| bool TryReplaceWithArrayOp(BindInstr* instr, |
| InstanceCallComp* comp, |
| @@ -51,11 +58,6 @@ |
| void AddCheckClass(BindInstr* instr, InstanceCallComp* comp, Value* value); |
| - BindInstr* InsertBefore(Instruction* instr, |
| - Computation* comp, |
| - Environment* env, |
| - BindInstr::UseKind use_kind); |
| - |
| BindInstr* InsertAfter(Instruction* instr, |
| Computation* comp, |
| Environment* env, |