| Index: src/ic/mips64/ic-compiler-mips64.cc
|
| diff --git a/src/ic/mips64/ic-compiler-mips64.cc b/src/ic/mips64/ic-compiler-mips64.cc
|
| index 0cfd93102a7957aee2999f6a5c5045c6b9bdfa19..ddb3117b5d13fe793016ac53764de4e12d51407a 100644
|
| --- a/src/ic/mips64/ic-compiler-mips64.cc
|
| +++ b/src/ic/mips64/ic-compiler-mips64.cc
|
| @@ -964,6 +964,19 @@ void ElementHandlerCompiler::GenerateLoadDictionaryElement(
|
| }
|
|
|
|
|
| +void PropertyICCompiler::GenerateRuntimeSetProperty(MacroAssembler* masm,
|
| + StrictMode strict_mode) {
|
| + __ Push(StoreIC::ReceiverRegister(), StoreIC::NameRegister(),
|
| + StoreIC::ValueRegister());
|
| +
|
| + __ li(a0, Operand(Smi::FromInt(strict_mode)));
|
| + __ Push(a0);
|
| +
|
| + // Do tail-call to runtime routine.
|
| + __ TailCallRuntime(Runtime::kSetProperty, 4, 1);
|
| +}
|
| +
|
| +
|
| #undef __
|
| }
|
| } // namespace v8::internal
|
|
|