| 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 "vm/longjump.h" | 10 #include "vm/longjump.h" |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 FieldAddress FlowGraphCompiler::ElementAddressForRegIndex(intptr_t cid, | 315 FieldAddress FlowGraphCompiler::ElementAddressForRegIndex(intptr_t cid, |
| 316 intptr_t index_scale, | 316 intptr_t index_scale, |
| 317 Register array, | 317 Register array, |
| 318 Register index) { | 318 Register index) { |
| 319 UNIMPLEMENTED(); | 319 UNIMPLEMENTED(); |
| 320 return FieldAddress(array, index); | 320 return FieldAddress(array, index); |
| 321 } | 321 } |
| 322 | 322 |
| 323 | 323 |
| 324 Address FlowGraphCompiler::ExternalElementAddressForIntIndex( | 324 Address FlowGraphCompiler::ExternalElementAddressForIntIndex( |
| 325 intptr_t cid, | |
| 326 intptr_t index_scale, | 325 intptr_t index_scale, |
| 327 Register array, | 326 Register array, |
| 328 intptr_t index) { | 327 intptr_t index) { |
| 329 UNIMPLEMENTED(); | 328 UNIMPLEMENTED(); |
| 330 return FieldAddress(array, index); | 329 return FieldAddress(array, index); |
| 331 } | 330 } |
| 332 | 331 |
| 333 | 332 |
| 334 Address FlowGraphCompiler::ExternalElementAddressForRegIndex( | 333 Address FlowGraphCompiler::ExternalElementAddressForRegIndex( |
| 335 intptr_t cid, | |
| 336 intptr_t index_scale, | 334 intptr_t index_scale, |
| 337 Register array, | 335 Register array, |
| 338 Register index) { | 336 Register index) { |
| 339 UNIMPLEMENTED(); | 337 UNIMPLEMENTED(); |
| 340 return FieldAddress(array, index); | 338 return FieldAddress(array, index); |
| 341 } | 339 } |
| 342 | 340 |
| 343 | 341 |
| 344 void ParallelMoveResolver::EmitMove(int index) { | 342 void ParallelMoveResolver::EmitMove(int index) { |
| 345 UNIMPLEMENTED(); | 343 UNIMPLEMENTED(); |
| (...skipping 22 matching lines...) Expand all Loading... |
| 368 | 366 |
| 369 | 367 |
| 370 void ParallelMoveResolver::Exchange(const Address& mem1, const Address& mem2) { | 368 void ParallelMoveResolver::Exchange(const Address& mem1, const Address& mem2) { |
| 371 UNIMPLEMENTED(); | 369 UNIMPLEMENTED(); |
| 372 } | 370 } |
| 373 | 371 |
| 374 | 372 |
| 375 } // namespace dart | 373 } // namespace dart |
| 376 | 374 |
| 377 #endif // defined TARGET_ARCH_MIPS | 375 #endif // defined TARGET_ARCH_MIPS |
| OLD | NEW |