| Index: runtime/vm/flow_graph_optimizer.h
|
| diff --git a/runtime/vm/flow_graph_optimizer.h b/runtime/vm/flow_graph_optimizer.h
|
| index d79cf6424b99d76373cc617e6f56b969347a4feb..a7e2773e3555bffe0a82cc910a0bea1fb0138691 100644
|
| --- a/runtime/vm/flow_graph_optimizer.h
|
| +++ b/runtime/vm/flow_graph_optimizer.h
|
| @@ -152,7 +152,7 @@ class FlowGraphOptimizer : public FlowGraphVisitor {
|
| TargetEntryInstr** entry,
|
| Definition** last);
|
|
|
| - bool InlineByteArrayBaseLoad(Instruction* call,
|
| + bool InlineByteArrayViewLoad(Instruction* call,
|
| Definition* receiver,
|
| intptr_t array_cid,
|
| intptr_t view_cid,
|
| @@ -160,7 +160,7 @@ class FlowGraphOptimizer : public FlowGraphVisitor {
|
| TargetEntryInstr** entry,
|
| Definition** last);
|
|
|
| - bool InlineByteArrayBaseStore(const Function& target,
|
| + bool InlineByteArrayViewStore(const Function& target,
|
| Instruction* call,
|
| Definition* receiver,
|
| intptr_t array_cid,
|
| @@ -169,16 +169,16 @@ class FlowGraphOptimizer : public FlowGraphVisitor {
|
| TargetEntryInstr** entry,
|
| Definition** last);
|
|
|
| - intptr_t PrepareInlineByteArrayBaseOp(Instruction* call,
|
| + intptr_t PrepareInlineByteArrayViewOp(Instruction* call,
|
| intptr_t array_cid,
|
| intptr_t view_cid,
|
| Definition** array,
|
| Definition* index,
|
| Instruction** cursor);
|
|
|
| - bool BuildByteArrayBaseLoad(InstanceCallInstr* call,
|
| + bool BuildByteArrayViewLoad(InstanceCallInstr* call,
|
| intptr_t view_cid);
|
| - bool BuildByteArrayBaseStore(InstanceCallInstr* call,
|
| + bool BuildByteArrayViewStore(InstanceCallInstr* call,
|
| intptr_t view_cid);
|
|
|
| // Insert a check of 'to_check' determined by 'unary_checks'. If the
|
|
|