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 82e53a5b1fb0643deedf0be0aa9a6758aa771565..832c25ae485c0b11fb2832ad83a2ee7215e33c9b 100644 |
--- a/src/ic/ppc/handler-compiler-ppc.cc |
+++ b/src/ic/ppc/handler-compiler-ppc.cc |
@@ -43,11 +43,11 @@ void NamedLoadHandlerCompiler::GenerateLoadViaGetter( |
receiver = scratch; |
} |
__ push(receiver); |
- ParameterCount actual(0); |
- ParameterCount expected(expected_arguments); |
__ LoadAccessor(r4, holder, accessor_index, ACCESSOR_GETTER); |
- __ InvokeFunction(r4, expected, actual, CALL_FUNCTION, |
- CheckDebugStepCallWrapper()); |
+ __ li(r3, Operand::Zero()); |
+ __ Call(masm->isolate()->builtins()->CallFunction( |
+ ConvertReceiverMode::kNotNullOrUndefined), |
+ RelocInfo::CODE_TARGET); |
} else { |
// If we generate a global code snippet for deoptimization only, remember |
// the place to continue after deoptimization. |
@@ -86,11 +86,11 @@ void NamedStoreHandlerCompiler::GenerateStoreViaSetter( |
receiver = scratch; |
} |
__ Push(receiver, value()); |
- ParameterCount actual(1); |
- ParameterCount expected(expected_arguments); |
__ LoadAccessor(r4, holder, accessor_index, ACCESSOR_SETTER); |
- __ InvokeFunction(r4, expected, actual, CALL_FUNCTION, |
- CheckDebugStepCallWrapper()); |
+ __ li(r3, Operand(1)); |
+ __ Call(masm->isolate()->builtins()->CallFunction( |
+ ConvertReceiverMode::kNotNullOrUndefined), |
+ RelocInfo::CODE_TARGET); |
} else { |
// If we generate a global code snippet for deoptimization only, remember |
// the place to continue after deoptimization. |