Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Side by Side Diff: vm/ic_stubs_arm.cc

Issue 8379013: Implement new inline cache. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: '' Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « vm/ic_stubs.h ('k') | vm/ic_stubs_ia32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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
OLDNEW
« no previous file with comments | « vm/ic_stubs.h ('k') | vm/ic_stubs_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698