| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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/code_patcher.h" | 8 #include "vm/code_patcher.h" |
| 9 | 9 |
| 10 namespace dart { | 10 namespace dart { |
| 11 | 11 |
| 12 void CodePatcher::GetStaticCallAt(uword return_address, | 12 void CodePatcher::GetStaticCallAt(uword return_address, |
| 13 Function* function, | |
| 14 uword* target) { | 13 uword* target) { |
| 15 UNIMPLEMENTED(); | 14 UNIMPLEMENTED(); |
| 16 } | 15 } |
| 17 | 16 |
| 18 | 17 |
| 19 void CodePatcher::PatchStaticCallAt(uword return_address, uword new_target) { | 18 void CodePatcher::PatchStaticCallAt(uword return_address, uword new_target) { |
| 20 UNIMPLEMENTED(); | 19 UNIMPLEMENTED(); |
| 21 } | 20 } |
| 22 | 21 |
| 23 | 22 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 | 65 |
| 67 void CodePatcher::InsertCallAt(uword start, uword target) { | 66 void CodePatcher::InsertCallAt(uword start, uword target) { |
| 68 UNIMPLEMENTED(); | 67 UNIMPLEMENTED(); |
| 69 } | 68 } |
| 70 | 69 |
| 71 | 70 |
| 72 | 71 |
| 73 } // namespace dart | 72 } // namespace dart |
| 74 | 73 |
| 75 #endif // defined TARGET_ARCH_ARM | 74 #endif // defined TARGET_ARCH_ARM |
| OLD | NEW |