| Index: src/arm/stub-cache-arm.cc
|
| diff --git a/src/arm/stub-cache-arm.cc b/src/arm/stub-cache-arm.cc
|
| index 5d10a7e73bce9df195aabe1e89c60dc4902d55fd..ab1812fc8e2a11b3371dd2dc7f98c0b183472215 100644
|
| --- a/src/arm/stub-cache-arm.cc
|
| +++ b/src/arm/stub-cache-arm.cc
|
| @@ -852,7 +852,7 @@ static void CompileCallLoadPropertyWithInterceptor(
|
| }
|
|
|
|
|
| -static const int kFastApiCallArguments = 4;
|
| +static const int kFastApiCallArguments = FunctionCallbackArguments::kArgsLength;
|
|
|
| // Reserves space for the extra arguments to API function in the
|
| // caller's frame.
|
| @@ -881,10 +881,11 @@ static void GenerateFastApiDirectCall(MacroAssembler* masm,
|
| // -- sp[4] : callee JS function
|
| // -- sp[8] : call data
|
| // -- sp[12] : isolate
|
| - // -- sp[16] : last JS argument
|
| + // -- sp[16] : ReturnValue
|
| + // -- sp[20] : last JS argument
|
| // -- ...
|
| - // -- sp[(argc + 3) * 4] : first JS argument
|
| - // -- sp[(argc + 4) * 4] : receiver
|
| + // -- sp[(argc + 4) * 4] : first JS argument
|
| + // -- sp[(argc + 5) * 4] : receiver
|
| // -----------------------------------
|
| // Get the function and setup the context.
|
| Handle<JSFunction> function = optimization.constant_function();
|
| @@ -901,11 +902,13 @@ static void GenerateFastApiDirectCall(MacroAssembler* masm,
|
| __ Move(r6, call_data);
|
| }
|
| __ mov(r7, Operand(ExternalReference::isolate_address(masm->isolate())));
|
| - // Store JS function, call data and isolate.
|
| + // Store JS function, call data, isolate and ReturnValue.
|
| __ stm(ib, sp, r5.bit() | r6.bit() | r7.bit());
|
| + __ LoadRoot(r7, Heap::kUndefinedValueRootIndex);
|
| + __ stm(ib, sp, r7.bit());
|
|
|
| // Prepare arguments.
|
| - __ add(r2, sp, Operand(3 * kPointerSize));
|
| + __ add(r2, sp, Operand(4 * kPointerSize));
|
|
|
| // Allocate the v8::Arguments structure in the arguments' space since
|
| // it's not controlled by GC.
|
| @@ -930,14 +933,13 @@ static void GenerateFastApiDirectCall(MacroAssembler* masm,
|
| __ str(ip, MemOperand(r0, 3 * kPointerSize));
|
|
|
| const int kStackUnwindSpace = argc + kFastApiCallArguments + 1;
|
| - Address function_address = v8::ToCData<Address>(api_call_info->callback());
|
| - ApiFunction fun(function_address);
|
| - ExternalReference ref = ExternalReference(&fun,
|
| - ExternalReference::DIRECT_API_CALL,
|
| - masm->isolate());
|
| AllowExternalCallThatCantCauseGC scope(masm);
|
|
|
| - __ CallApiFunctionAndReturn(ref, kStackUnwindSpace);
|
| + __ CallApiFunctionAndReturn(api_call_info->callback(),
|
| + ExternalReference::DIRECT_API_CALL,
|
| + kStackUnwindSpace,
|
| + 1,
|
| + 0);
|
| }
|
|
|
|
|
| @@ -1413,7 +1415,8 @@ void BaseLoadStubCompiler::GenerateLoadCallback(
|
| __ Push(reg, scratch3());
|
| __ mov(scratch3(),
|
| Operand(ExternalReference::isolate_address(isolate())));
|
| - __ Push(scratch3(), name());
|
| + __ LoadRoot(scratch4(), Heap::kUndefinedValueRootIndex);
|
| + __ Push(scratch3(), scratch4(), name());
|
| __ mov(r0, sp); // r0 = Handle<Name>
|
|
|
| const int kApiStackSpace = 1;
|
| @@ -1425,12 +1428,12 @@ void BaseLoadStubCompiler::GenerateLoadCallback(
|
| __ str(scratch2(), MemOperand(sp, 1 * kPointerSize));
|
| __ add(r1, sp, Operand(1 * kPointerSize)); // r1 = AccessorInfo&
|
|
|
| - const int kStackUnwindSpace = 5;
|
| - Address getter_address = v8::ToCData<Address>(callback->getter());
|
| - ApiFunction fun(getter_address);
|
| - ExternalReference ref = ExternalReference(
|
| - &fun, ExternalReference::DIRECT_GETTER_CALL, isolate());
|
| - __ CallApiFunctionAndReturn(ref, kStackUnwindSpace);
|
| + const int kStackUnwindSpace = kFastApiCallArguments + 1;
|
| + __ CallApiFunctionAndReturn(callback->getter(),
|
| + ExternalReference::DIRECT_GETTER_CALL,
|
| + kStackUnwindSpace,
|
| + 1,
|
| + 1);
|
| }
|
|
|
|
|
|
|