Index: src/ic/mips/ic-conventions-mips.cc |
diff --git a/src/ic/mips/ic-conventions-mips.cc b/src/ic/mips/ic-conventions-mips.cc |
deleted file mode 100644 |
index 4b06fa5352d1bf5ab88355b86cc4fa018aae10da..0000000000000000000000000000000000000000 |
--- a/src/ic/mips/ic-conventions-mips.cc |
+++ /dev/null |
@@ -1,37 +0,0 @@ |
-// Copyright 2014 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_MIPS |
- |
-#include "src/codegen.h" |
-#include "src/ic/ic-conventions.h" |
- |
-namespace v8 { |
-namespace internal { |
- |
-// IC register specifications |
-const Register LoadConvention::ReceiverRegister() { return a1; } |
-const Register LoadConvention::NameRegister() { return a2; } |
- |
- |
-const Register VectorLoadConvention::SlotRegister() { return a0; } |
- |
- |
-const Register FullVectorLoadConvention::VectorRegister() { return a3; } |
- |
- |
-const Register StoreConvention::ReceiverRegister() { return a1; } |
-const Register StoreConvention::NameRegister() { return a2; } |
-const Register StoreConvention::ValueRegister() { return a0; } |
-const Register StoreConvention::MapRegister() { return a3; } |
- |
- |
-const Register InstanceofConvention::left() { return a0; } |
-const Register InstanceofConvention::right() { return a1; } |
-} |
-} // namespace v8::internal |
- |
-#endif // V8_TARGET_ARCH_MIPS |