| Index: src/ic/mips/handler-compiler-mips.cc
|
| diff --git a/src/ic/mips/handler-compiler-mips.cc b/src/ic/mips/handler-compiler-mips.cc
|
| index bb0676e9d5ed74275f6b7d134cbfc860d9f8e2eb..e65a2846122520aa005f661211620098ca519a77 100644
|
| --- a/src/ic/mips/handler-compiler-mips.cc
|
| +++ b/src/ic/mips/handler-compiler-mips.cc
|
| @@ -286,8 +286,8 @@ void ElementHandlerCompiler::GenerateLoadDictionaryElement(
|
| // The return address is in ra.
|
| Label slow, miss;
|
|
|
| - Register key = LoadConvention::NameRegister();
|
| - Register receiver = LoadConvention::ReceiverRegister();
|
| + Register key = LoadDescriptor::NameRegister();
|
| + Register receiver = LoadDescriptor::ReceiverRegister();
|
| DCHECK(receiver.is(a1));
|
| DCHECK(key.is(a2));
|
|
|
| @@ -312,8 +312,8 @@ void ElementHandlerCompiler::GenerateLoadDictionaryElement(
|
|
|
| void NamedStoreHandlerCompiler::GenerateSlow(MacroAssembler* masm) {
|
| // Push receiver, key and value for runtime call.
|
| - __ Push(StoreConvention::ReceiverRegister(), StoreConvention::NameRegister(),
|
| - StoreConvention::ValueRegister());
|
| + __ Push(StoreDescriptor::ReceiverRegister(), StoreDescriptor::NameRegister(),
|
| + StoreDescriptor::ValueRegister());
|
|
|
| // The slow case calls into the runtime to complete the store without causing
|
| // an IC miss that would otherwise cause a transition to the generic stub.
|
| @@ -325,8 +325,8 @@ void NamedStoreHandlerCompiler::GenerateSlow(MacroAssembler* masm) {
|
|
|
| void ElementHandlerCompiler::GenerateStoreSlow(MacroAssembler* masm) {
|
| // Push receiver, key and value for runtime call.
|
| - __ Push(StoreConvention::ReceiverRegister(), StoreConvention::NameRegister(),
|
| - StoreConvention::ValueRegister());
|
| + __ Push(StoreDescriptor::ReceiverRegister(), StoreDescriptor::NameRegister(),
|
| + StoreDescriptor::ValueRegister());
|
|
|
| // The slow case calls into the runtime to complete the store without causing
|
| // an IC miss that would otherwise cause a transition to the generic stub.
|
| @@ -829,7 +829,7 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreInterceptor(
|
|
|
|
|
| Register NamedStoreHandlerCompiler::value() {
|
| - return StoreConvention::ValueRegister();
|
| + return StoreDescriptor::ValueRegister();
|
| }
|
|
|
|
|
| @@ -840,7 +840,7 @@ Handle<Code> NamedLoadHandlerCompiler::CompileLoadGlobal(
|
| FrontendHeader(receiver(), name, &miss);
|
|
|
| // Get the value from the cell.
|
| - Register result = StoreConvention::ValueRegister();
|
| + Register result = StoreDescriptor::ValueRegister();
|
| __ li(result, Operand(cell));
|
| __ lw(result, FieldMemOperand(result, Cell::kValueOffset));
|
|
|
|
|