| Index: runtime/vm/flow_graph_compiler_arm.cc
|
| ===================================================================
|
| --- runtime/vm/flow_graph_compiler_arm.cc (revision 18171)
|
| +++ runtime/vm/flow_graph_compiler_arm.cc (working copy)
|
| @@ -304,6 +304,7 @@
|
|
|
|
|
| FieldAddress FlowGraphCompiler::ElementAddressForIntIndex(intptr_t cid,
|
| + intptr_t index_scale,
|
| Register array,
|
| intptr_t index) {
|
| UNIMPLEMENTED();
|
| @@ -312,6 +313,7 @@
|
|
|
|
|
| FieldAddress FlowGraphCompiler::ElementAddressForRegIndex(intptr_t cid,
|
| + intptr_t index_scale,
|
| Register array,
|
| Register index) {
|
| UNIMPLEMENTED();
|
| @@ -319,17 +321,21 @@
|
| }
|
|
|
|
|
| -Address FlowGraphCompiler::ExternalElementAddressForIntIndex(intptr_t cid,
|
| - Register array,
|
| - intptr_t index) {
|
| +Address FlowGraphCompiler::ExternalElementAddressForIntIndex(
|
| + intptr_t cid,
|
| + intptr_t index_scale,
|
| + Register array,
|
| + intptr_t index) {
|
| UNIMPLEMENTED();
|
| return FieldAddress(array, index);
|
| }
|
|
|
|
|
| -Address FlowGraphCompiler::ExternalElementAddressForRegIndex(intptr_t cid,
|
| - Register array,
|
| - Register index) {
|
| +Address FlowGraphCompiler::ExternalElementAddressForRegIndex(
|
| + intptr_t cid,
|
| + intptr_t index_scale,
|
| + Register array,
|
| + Register index) {
|
| UNIMPLEMENTED();
|
| return FieldAddress(array, index);
|
| }
|
|
|