OLD | NEW |
| (Empty) |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM. | |
6 #if defined(TARGET_ARCH_ARM) | |
7 | |
8 #include "vm/ic_stubs.h" | |
9 | |
10 #include "vm/object.h" | |
11 | |
12 namespace dart { | |
13 | |
14 RawCode* ICStubs::GetICStub(const GrowableArray<const Class*>& classes, | |
15 const GrowableArray<const Function*>& targets) { | |
16 UNIMPLEMENTED(); | |
17 return Code::null(); | |
18 } | |
19 | |
20 | |
21 bool ICStubs::RecognizeICStub(uword entry_point, | |
22 GrowableArray<const Class*>* classes, | |
23 GrowableArray<const Function*>* targets) { | |
24 UNIMPLEMENTED(); | |
25 return false; | |
26 } | |
27 | |
28 int ICStubs::IndexOfClass(const GrowableArray<const Class*>& classes, | |
29 const Class& cls) { | |
30 UNIMPLEMENTED(); | |
31 return false; | |
32 } | |
33 | |
34 | |
35 void ICStubs::PatchTargets(uword ic_entry_point, uword from, uword to) { | |
36 UNIMPLEMENTED(); | |
37 } | |
38 | |
39 } // namespace dart | |
40 | |
41 #endif // defined TARGET_ARCH_ARM | |
OLD | NEW |