| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM. | 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM. |
| 6 #if defined(TARGET_ARCH_ARM) | 6 #if defined(TARGET_ARCH_ARM) |
| 7 | 7 |
| 8 #include "vm/flow_graph_compiler.h" | 8 #include "vm/flow_graph_compiler.h" |
| 9 | 9 |
| 10 #include "lib/error.h" | 10 #include "lib/error.h" |
| (...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 566 FieldAddress FlowGraphCompiler::ElementAddressForRegIndex(intptr_t cid, | 566 FieldAddress FlowGraphCompiler::ElementAddressForRegIndex(intptr_t cid, |
| 567 intptr_t index_scale, | 567 intptr_t index_scale, |
| 568 Register array, | 568 Register array, |
| 569 Register index) { | 569 Register index) { |
| 570 UNIMPLEMENTED(); | 570 UNIMPLEMENTED(); |
| 571 return FieldAddress(array, index); | 571 return FieldAddress(array, index); |
| 572 } | 572 } |
| 573 | 573 |
| 574 | 574 |
| 575 Address FlowGraphCompiler::ExternalElementAddressForIntIndex( | 575 Address FlowGraphCompiler::ExternalElementAddressForIntIndex( |
| 576 intptr_t cid, | |
| 577 intptr_t index_scale, | 576 intptr_t index_scale, |
| 578 Register array, | 577 Register array, |
| 579 intptr_t index) { | 578 intptr_t index) { |
| 580 UNIMPLEMENTED(); | 579 UNIMPLEMENTED(); |
| 581 return FieldAddress(array, index); | 580 return FieldAddress(array, index); |
| 582 } | 581 } |
| 583 | 582 |
| 584 | 583 |
| 585 Address FlowGraphCompiler::ExternalElementAddressForRegIndex( | 584 Address FlowGraphCompiler::ExternalElementAddressForRegIndex( |
| 586 intptr_t cid, | |
| 587 intptr_t index_scale, | 585 intptr_t index_scale, |
| 588 Register array, | 586 Register array, |
| 589 Register index) { | 587 Register index) { |
| 590 UNIMPLEMENTED(); | 588 UNIMPLEMENTED(); |
| 591 return FieldAddress(array, index); | 589 return FieldAddress(array, index); |
| 592 } | 590 } |
| 593 | 591 |
| 594 | 592 |
| 595 void ParallelMoveResolver::EmitMove(int index) { | 593 void ParallelMoveResolver::EmitMove(int index) { |
| 596 UNIMPLEMENTED(); | 594 UNIMPLEMENTED(); |
| (...skipping 22 matching lines...) Expand all Loading... |
| 619 | 617 |
| 620 | 618 |
| 621 void ParallelMoveResolver::Exchange(const Address& mem1, const Address& mem2) { | 619 void ParallelMoveResolver::Exchange(const Address& mem1, const Address& mem2) { |
| 622 UNIMPLEMENTED(); | 620 UNIMPLEMENTED(); |
| 623 } | 621 } |
| 624 | 622 |
| 625 | 623 |
| 626 } // namespace dart | 624 } // namespace dart |
| 627 | 625 |
| 628 #endif // defined TARGET_ARCH_ARM | 626 #endif // defined TARGET_ARCH_ARM |
| OLD | NEW |