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

Unified Diff: src/ic/arm/ic-conventions-arm.cc

Issue 527093002: Make concrete classes for individual call descriptors. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: REBASE. Created 6 years, 3 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
Index: src/ic/arm/ic-conventions-arm.cc
diff --git a/src/ic/arm/ic-conventions-arm.cc b/src/ic/arm/ic-conventions-arm.cc
deleted file mode 100644
index 6192cba20a2ff423c77f20b9bfb159b2f10b6836..0000000000000000000000000000000000000000
--- a/src/ic/arm/ic-conventions-arm.cc
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright 2012 the V8 project authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "src/v8.h"
-
-#if V8_TARGET_ARCH_ARM
-
-#include "src/codegen.h"
-#include "src/ic/ic-conventions.h"
-
-namespace v8 {
-namespace internal {
-
-// IC register specifications
-const Register LoadConvention::ReceiverRegister() { return r1; }
-const Register LoadConvention::NameRegister() { return r2; }
-
-
-const Register VectorLoadConvention::SlotRegister() { return r0; }
-
-
-const Register FullVectorLoadConvention::VectorRegister() { return r3; }
-
-
-const Register StoreConvention::ReceiverRegister() { return r1; }
-const Register StoreConvention::NameRegister() { return r2; }
-const Register StoreConvention::ValueRegister() { return r0; }
-const Register StoreConvention::MapRegister() { return r3; }
-
-
-const Register InstanceofConvention::left() { return r0; }
-const Register InstanceofConvention::right() { return r1; }
-}
-} // namespace v8::internal
-
-#endif // V8_TARGET_ARCH_ARM

Powered by Google App Engine
This is Rietveld 408576698