| 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 { |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 UNIMPLEMENTED(); | 50 UNIMPLEMENTED(); |
| 51 } | 51 } |
| 52 | 52 |
| 53 | 53 |
| 54 bool CodePatcher::CodeIsPatchable(const Code& code) { | 54 bool CodePatcher::CodeIsPatchable(const Code& code) { |
| 55 UNIMPLEMENTED(); | 55 UNIMPLEMENTED(); |
| 56 return false; | 56 return false; |
| 57 } | 57 } |
| 58 | 58 |
| 59 | 59 |
| 60 RawArray* CodePatcher::GetInstanceCallIcDataAt(uword return_address) { | 60 RawICData* CodePatcher::GetInstanceCallIcDataAt(uword return_address) { |
| 61 UNIMPLEMENTED(); | 61 UNIMPLEMENTED(); |
| 62 return NULL; | 62 return NULL; |
| 63 } | 63 } |
| 64 | 64 |
| 65 | |
| 66 void CodePatcher::SetInstanceCallIcDataAt(uword return_address, | |
| 67 const Array& ic_data) { | |
| 68 UNIMPLEMENTED(); | |
| 69 } | |
| 70 | |
| 71 } // namespace dart | 65 } // namespace dart |
| 72 | 66 |
| 73 #endif // defined TARGET_ARCH_ARM | 67 #endif // defined TARGET_ARCH_ARM |
| OLD | NEW |