Index: src/x64/ic-x64.cc |
diff --git a/src/x64/ic-x64.cc b/src/x64/ic-x64.cc |
index f8c40ab4e14833860ff68507c4ec04db1d9bca2e..5facf706db9aadc4239338749c79713748047980 100644 |
--- a/src/x64/ic-x64.cc |
+++ b/src/x64/ic-x64.cc |
@@ -766,7 +766,8 @@ void KeyedLoadIC::GenerateIndexedInterceptor(MacroAssembler* masm) { |
} |
-void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm) { |
+void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm, |
+ StrictModeFlag strict_mode) { |
// ----------- S t a t e ------------- |
// -- rax : value |
// -- rcx : key |
@@ -813,7 +814,7 @@ void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm) { |
__ bind(&slow); |
__ Integer32ToSmi(rcx, rcx); |
__ bind(&slow_with_tagged_index); |
- GenerateRuntimeSetProperty(masm); |
+ GenerateRuntimeSetProperty(masm, strict_mode); |
// Never returns to here. |
// Check whether the elements is a pixel array. |
@@ -1593,7 +1594,7 @@ void StoreIC::GenerateNormal(MacroAssembler* masm) { |
} |
-void StoreIC::GenerateGlobalProxy(MacroAssembler* masm) { |
+void StoreIC::GenerateGlobalProxy(MacroAssembler* masm, StrictModeFlag strict) { |
// ----------- S t a t e ------------- |
// -- rax : value |
// -- rcx : name |
@@ -1604,14 +1605,17 @@ void StoreIC::GenerateGlobalProxy(MacroAssembler* masm) { |
__ push(rdx); |
__ push(rcx); |
__ push(rax); |
- __ push(rbx); |
+ __ Push(Smi::FromInt(NONE)); // PropertyAttributes |
+ __ Push(Smi::FromInt(strict)); |
+ __ push(rbx); // return address |
// Do tail-call to runtime routine. |
- __ TailCallRuntime(Runtime::kSetProperty, 3, 1); |
+ __ TailCallRuntime(Runtime::kSetProperty, 5, 1); |
} |
-void KeyedStoreIC::GenerateRuntimeSetProperty(MacroAssembler* masm) { |
+void KeyedStoreIC::GenerateRuntimeSetProperty(MacroAssembler* masm, |
+ StrictModeFlag strict_mode) { |
// ----------- S t a t e ------------- |
// -- rax : value |
// -- rcx : key |
@@ -1623,10 +1627,12 @@ void KeyedStoreIC::GenerateRuntimeSetProperty(MacroAssembler* masm) { |
__ push(rdx); // receiver |
__ push(rcx); // key |
__ push(rax); // value |
+ __ Push(Smi::FromInt(NONE)); // PropertyAttributes |
+ __ Push(Smi::FromInt(strict_mode)); // Strict mode. |
__ push(rbx); // return address |
// Do tail-call to runtime routine. |
- __ TailCallRuntime(Runtime::kSetProperty, 3, 1); |
+ __ TailCallRuntime(Runtime::kSetProperty, 5, 1); |
} |