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