| Index: src/ic/mips/ic-compiler-mips.cc
|
| diff --git a/src/ic/mips/ic-compiler-mips.cc b/src/ic/mips/ic-compiler-mips.cc
|
| index d0e5a00ec03065b2850ad66c19b2bd4c178b7405..fa52cd8e83d2de27328dc295a4c7c2eab7b18ad1 100644
|
| --- a/src/ic/mips/ic-compiler-mips.cc
|
| +++ b/src/ic/mips/ic-compiler-mips.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #if V8_TARGET_ARCH_MIPS
|
|
|
| +#include "src/ic/call-optimization.h"
|
| #include "src/ic/ic-compiler.h"
|
|
|
| namespace v8 {
|
| @@ -201,12 +202,6 @@ void PropertyHandlerCompiler::GenerateFastApiCall(
|
| }
|
|
|
|
|
| -void PropertyAccessCompiler::GenerateTailCall(MacroAssembler* masm,
|
| - Handle<Code> code) {
|
| - __ Jump(code, RelocInfo::CODE_TARGET);
|
| -}
|
| -
|
| -
|
| #undef __
|
| #define __ ACCESS_MASM(masm())
|
|
|
| @@ -747,25 +742,6 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreInterceptor(
|
| }
|
|
|
|
|
| -Register* PropertyAccessCompiler::load_calling_convention() {
|
| - // receiver, name, scratch1, scratch2, scratch3, scratch4.
|
| - Register receiver = LoadIC::ReceiverRegister();
|
| - Register name = LoadIC::NameRegister();
|
| - static Register registers[] = {receiver, name, a3, a0, t0, t1};
|
| - return registers;
|
| -}
|
| -
|
| -
|
| -Register* PropertyAccessCompiler::store_calling_convention() {
|
| - // receiver, name, scratch1, scratch2, scratch3.
|
| - Register receiver = StoreIC::ReceiverRegister();
|
| - Register name = StoreIC::NameRegister();
|
| - DCHECK(a3.is(KeyedStoreIC::MapRegister()));
|
| - static Register registers[] = {receiver, name, a3, t0, t1};
|
| - return registers;
|
| -}
|
| -
|
| -
|
| Register NamedStoreHandlerCompiler::value() { return StoreIC::ValueRegister(); }
|
|
|
|
|
|
|