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 1082 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1093 void ParallelMoveResolver::Exchange(Register reg, const Address& mem) { | 1093 void ParallelMoveResolver::Exchange(Register reg, const Address& mem) { |
1094 UNIMPLEMENTED(); | 1094 UNIMPLEMENTED(); |
1095 } | 1095 } |
1096 | 1096 |
1097 | 1097 |
1098 void ParallelMoveResolver::Exchange(const Address& mem1, const Address& mem2) { | 1098 void ParallelMoveResolver::Exchange(const Address& mem1, const Address& mem2) { |
1099 UNIMPLEMENTED(); | 1099 UNIMPLEMENTED(); |
1100 } | 1100 } |
1101 | 1101 |
1102 | 1102 |
| 1103 void ParallelMoveResolver::SpillScratch(Register reg) { |
| 1104 UNIMPLEMENTED(); |
| 1105 } |
| 1106 |
| 1107 |
| 1108 void ParallelMoveResolver::RestoreScratch(Register reg) { |
| 1109 UNIMPLEMENTED(); |
| 1110 } |
| 1111 |
| 1112 |
| 1113 void ParallelMoveResolver::SpillFpuScratch(FpuRegister reg) { |
| 1114 UNIMPLEMENTED(); |
| 1115 } |
| 1116 |
| 1117 |
| 1118 void ParallelMoveResolver::RestoreFpuScratch(FpuRegister reg) { |
| 1119 UNIMPLEMENTED(); |
| 1120 } |
| 1121 |
| 1122 |
1103 } // namespace dart | 1123 } // namespace dart |
1104 | 1124 |
1105 #endif // defined TARGET_ARCH_MIPS | 1125 #endif // defined TARGET_ARCH_MIPS |
OLD | NEW |