| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_MIPS. |
| 6 #if defined(TARGET_ARCH_MIPS) |
| 7 |
| 8 #include "vm/code_patcher.h" |
| 9 |
| 10 namespace dart { |
| 11 |
| 12 uword CodePatcher::GetStaticCallTargetAt(uword return_address) { |
| 13 UNIMPLEMENTED(); |
| 14 return 0; |
| 15 } |
| 16 |
| 17 |
| 18 void CodePatcher::PatchStaticCallAt(uword return_address, uword new_target) { |
| 19 UNIMPLEMENTED(); |
| 20 } |
| 21 |
| 22 |
| 23 void CodePatcher::PatchInstanceCallAt(uword return_address, uword new_target) { |
| 24 UNIMPLEMENTED(); |
| 25 } |
| 26 |
| 27 |
| 28 void CodePatcher::InsertCallAt(uword start, uword target) { |
| 29 UNIMPLEMENTED(); |
| 30 } |
| 31 |
| 32 |
| 33 bool CodePatcher::IsDartCall(uword return_address) { |
| 34 UNIMPLEMENTED(); |
| 35 return false; |
| 36 } |
| 37 |
| 38 |
| 39 uword CodePatcher::GetInstanceCallAt(uword return_address, |
| 40 ICData* ic_data, |
| 41 Array* arguments_descriptor) { |
| 42 UNIMPLEMENTED(); |
| 43 return 0; |
| 44 } |
| 45 |
| 46 |
| 47 intptr_t CodePatcher::InstanceCallSizeInBytes() { |
| 48 UNIMPLEMENTED(); |
| 49 return 0; |
| 50 } |
| 51 |
| 52 } // namespace dart |
| 53 |
| 54 #endif // defined TARGET_ARCH_MIPS |
| OLD | NEW |