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

Side by Side Diff: vm/ic_stubs_x64.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_ia32_test.cc ('k') | vm/instructions_ia32.h » ('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_X64.
6 #if defined(TARGET_ARCH_X64)
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
29 int ICStubs::IndexOfClass(const GrowableArray<const Class*>& classes,
30 const Class& cls) {
31 UNIMPLEMENTED();
32 return false;
33 }
34
35
36 void ICStubs::PatchTargets(uword ic_entry_point, uword from, uword to) {
37 UNIMPLEMENTED();
38 }
39
40 } // namespace dart
41
42 #endif // defined TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « vm/ic_stubs_ia32_test.cc ('k') | vm/instructions_ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698