| Index: src/ic/ppc/handler-compiler-ppc.cc
|
| diff --git a/src/ic/ppc/handler-compiler-ppc.cc b/src/ic/ppc/handler-compiler-ppc.cc
|
| index 0335362fbb3a3c59a74116e055e45743c29b5120..4b7d6c05fba5c20282f73dcb0f6a333514ef5182 100644
|
| --- a/src/ic/ppc/handler-compiler-ppc.cc
|
| +++ b/src/ic/ppc/handler-compiler-ppc.cc
|
| @@ -307,15 +307,10 @@ void PropertyHandlerCompiler::GenerateApiAccessorCall(
|
|
|
|
|
| static void StoreIC_PushArgs(MacroAssembler* masm) {
|
| - if (FLAG_vector_stores) {
|
| - __ Push(StoreDescriptor::ReceiverRegister(),
|
| - StoreDescriptor::NameRegister(), StoreDescriptor::ValueRegister(),
|
| - VectorStoreICDescriptor::SlotRegister(),
|
| - VectorStoreICDescriptor::VectorRegister());
|
| - } else {
|
| - __ Push(StoreDescriptor::ReceiverRegister(),
|
| - StoreDescriptor::NameRegister(), StoreDescriptor::ValueRegister());
|
| - }
|
| + __ Push(StoreDescriptor::ReceiverRegister(), StoreDescriptor::NameRegister(),
|
| + StoreDescriptor::ValueRegister(),
|
| + VectorStoreICDescriptor::SlotRegister(),
|
| + VectorStoreICDescriptor::VectorRegister());
|
| }
|
|
|
|
|
| @@ -324,7 +319,7 @@ void NamedStoreHandlerCompiler::GenerateSlow(MacroAssembler* masm) {
|
|
|
| // 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.
|
| - __ TailCallRuntime(Runtime::kStoreIC_Slow, FLAG_vector_stores ? 5 : 3, 1);
|
| + __ TailCallRuntime(Runtime::kStoreIC_Slow, 5, 1);
|
| }
|
|
|
|
|
| @@ -333,8 +328,7 @@ void ElementHandlerCompiler::GenerateStoreSlow(MacroAssembler* masm) {
|
|
|
| // 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.
|
| - __ TailCallRuntime(Runtime::kKeyedStoreIC_Slow, FLAG_vector_stores ? 5 : 3,
|
| - 1);
|
| + __ TailCallRuntime(Runtime::kKeyedStoreIC_Slow, 5, 1);
|
| }
|
|
|
|
|
|
|