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

Unified 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, 2 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « vm/ic_stubs.h ('k') | vm/ic_stubs_ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/ic_stubs_arm.cc
===================================================================
--- vm/ic_stubs_arm.cc (revision 700)
+++ vm/ic_stubs_arm.cc (working copy)
@@ -1,41 +0,0 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-#include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM.
-#if defined(TARGET_ARCH_ARM)
-
-#include "vm/ic_stubs.h"
-
-#include "vm/object.h"
-
-namespace dart {
-
-RawCode* ICStubs::GetICStub(const GrowableArray<const Class*>& classes,
- const GrowableArray<const Function*>& targets) {
- UNIMPLEMENTED();
- return Code::null();
-}
-
-
-bool ICStubs::RecognizeICStub(uword entry_point,
- GrowableArray<const Class*>* classes,
- GrowableArray<const Function*>* targets) {
- UNIMPLEMENTED();
- return false;
-}
-
-int ICStubs::IndexOfClass(const GrowableArray<const Class*>& classes,
- const Class& cls) {
- UNIMPLEMENTED();
- return false;
-}
-
-
-void ICStubs::PatchTargets(uword ic_entry_point, uword from, uword to) {
- UNIMPLEMENTED();
-}
-
-} // namespace dart
-
-#endif // defined TARGET_ARCH_ARM
« 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