| 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_MIPS. | 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_MIPS. |
| 6 #if defined(TARGET_ARCH_MIPS) | 6 #if defined(TARGET_ARCH_MIPS) |
| 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 1396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1407 FpuRegister right, | 1407 FpuRegister right, |
| 1408 Register result) { | 1408 Register result) { |
| 1409 UNIMPLEMENTED(); | 1409 UNIMPLEMENTED(); |
| 1410 } | 1410 } |
| 1411 | 1411 |
| 1412 | 1412 |
| 1413 FieldAddress FlowGraphCompiler::ElementAddressForIntIndex(intptr_t cid, | 1413 FieldAddress FlowGraphCompiler::ElementAddressForIntIndex(intptr_t cid, |
| 1414 intptr_t index_scale, | 1414 intptr_t index_scale, |
| 1415 Register array, | 1415 Register array, |
| 1416 intptr_t index) { | 1416 intptr_t index) { |
| 1417 UNIMPLEMENTED(); | 1417 UNREACHABLE(); |
| 1418 return FieldAddress(array, index); | 1418 return FieldAddress(array, index); |
| 1419 } | 1419 } |
| 1420 | 1420 |
| 1421 | 1421 |
| 1422 FieldAddress FlowGraphCompiler::ElementAddressForRegIndex(intptr_t cid, | 1422 FieldAddress FlowGraphCompiler::ElementAddressForRegIndex(intptr_t cid, |
| 1423 intptr_t index_scale, | 1423 intptr_t index_scale, |
| 1424 Register array, | 1424 Register array, |
| 1425 Register index) { | 1425 Register index) { |
| 1426 UNIMPLEMENTED(); | 1426 UNIMPLEMENTED(); |
| 1427 return FieldAddress(array, index); | 1427 return FieldAddress(array, index); |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1641 __ AddImmediate(SP, kDoubleSize); | 1641 __ AddImmediate(SP, kDoubleSize); |
| 1642 } | 1642 } |
| 1643 | 1643 |
| 1644 | 1644 |
| 1645 #undef __ | 1645 #undef __ |
| 1646 | 1646 |
| 1647 | 1647 |
| 1648 } // namespace dart | 1648 } // namespace dart |
| 1649 | 1649 |
| 1650 #endif // defined TARGET_ARCH_MIPS | 1650 #endif // defined TARGET_ARCH_MIPS |
| OLD | NEW |