Index: src/ic/arm64/ic-compiler-arm64.cc |
diff --git a/src/ic/arm64/ic-compiler-arm64.cc b/src/ic/arm64/ic-compiler-arm64.cc |
index d2ad8339b67c8fd32f2af74595bf1d41380473c9..d15a07d64b3e9c7804bad78281371a10c39363e4 100644 |
--- a/src/ic/arm64/ic-compiler-arm64.cc |
+++ b/src/ic/arm64/ic-compiler-arm64.cc |
@@ -974,6 +974,22 @@ void ElementHandlerCompiler::GenerateLoadDictionaryElement( |
TailCallBuiltin(masm, Builtins::kKeyedLoadIC_Miss); |
} |
+ |
+void PropertyICCompiler::GenerateRuntimeSetProperty(MacroAssembler* masm, |
+ StrictMode strict_mode) { |
+ ASM_LOCATION("PropertyICCompiler::GenerateRuntimeSetProperty"); |
+ |
+ __ Push(StoreIC::ReceiverRegister(), StoreIC::NameRegister(), |
+ StoreIC::ValueRegister()); |
+ |
+ __ Mov(x10, Smi::FromInt(strict_mode)); |
+ __ Push(x10); |
+ |
+ // Do tail-call to runtime routine. |
+ __ TailCallRuntime(Runtime::kSetProperty, 4, 1); |
+} |
+ |
+ |
#undef __ |
} |
} // namespace v8::internal |