| Index: src/s390/code-stubs-s390.cc
|
| diff --git a/src/s390/code-stubs-s390.cc b/src/s390/code-stubs-s390.cc
|
| index 18af0387d5287140bc9fcb5294652986f216ce6c..f0c82e724f76b29c1e2be901474c35c02fa9a530 100644
|
| --- a/src/s390/code-stubs-s390.cc
|
| +++ b/src/s390/code-stubs-s390.cc
|
| @@ -5632,18 +5632,39 @@ void CallApiCallbackStub::Generate(MacroAssembler* masm) {
|
| }
|
|
|
| void CallApiGetterStub::Generate(MacroAssembler* masm) {
|
| - // ----------- S t a t e -------------
|
| - // -- sp[0] : name
|
| - // -- sp[4 .. (4 + kArgsLength*4)] : v8::PropertyCallbackInfo::args_
|
| - // -- ...
|
| - // -- r4 : api_function_address
|
| - // -----------------------------------
|
| -
|
| - Register api_function_address = ApiGetterDescriptor::function_address();
|
| int arg0Slot = 0;
|
| int accessorInfoSlot = 0;
|
| int apiStackSpace = 0;
|
| - DCHECK(api_function_address.is(r4));
|
| + // Build v8::PropertyCallbackInfo::args_ array on the stack and push property
|
| + // name below the exit frame to make GC aware of them.
|
| + STATIC_ASSERT(PropertyCallbackArguments::kShouldThrowOnErrorIndex == 0);
|
| + STATIC_ASSERT(PropertyCallbackArguments::kHolderIndex == 1);
|
| + STATIC_ASSERT(PropertyCallbackArguments::kIsolateIndex == 2);
|
| + STATIC_ASSERT(PropertyCallbackArguments::kReturnValueDefaultValueIndex == 3);
|
| + STATIC_ASSERT(PropertyCallbackArguments::kReturnValueOffset == 4);
|
| + STATIC_ASSERT(PropertyCallbackArguments::kDataIndex == 5);
|
| + STATIC_ASSERT(PropertyCallbackArguments::kThisIndex == 6);
|
| + STATIC_ASSERT(PropertyCallbackArguments::kArgsLength == 7);
|
| +
|
| + Register receiver = ApiGetterDescriptor::ReceiverRegister();
|
| + Register holder = ApiGetterDescriptor::HolderRegister();
|
| + Register callback = ApiGetterDescriptor::CallbackRegister();
|
| + Register scratch = r6;
|
| + DCHECK(!AreAliased(receiver, holder, callback, scratch));
|
| +
|
| + Register api_function_address = r4;
|
| +
|
| + __ push(receiver);
|
| + // Push data from AccessorInfo.
|
| + __ LoadP(scratch, FieldMemOperand(callback, AccessorInfo::kDataOffset));
|
| + __ push(scratch);
|
| + __ LoadRoot(scratch, Heap::kUndefinedValueRootIndex);
|
| + __ Push(scratch, scratch);
|
| + __ mov(scratch, Operand(ExternalReference::isolate_address(isolate())));
|
| + __ Push(scratch, holder);
|
| + __ Push(Smi::FromInt(0)); // should_throw_on_error -> false
|
| + __ LoadP(scratch, FieldMemOperand(callback, AccessorInfo::kNameOffset));
|
| + __ push(scratch);
|
|
|
| // v8::PropertyCallbackInfo::args_ array and name handle.
|
| const int kStackUnwindSpace = PropertyCallbackArguments::kArgsLength + 1;
|
| @@ -5691,6 +5712,10 @@ void CallApiGetterStub::Generate(MacroAssembler* masm) {
|
| ExternalReference thunk_ref =
|
| ExternalReference::invoke_accessor_getter_callback(isolate());
|
|
|
| + __ LoadP(scratch, FieldMemOperand(callback, AccessorInfo::kJsGetterOffset));
|
| + __ LoadP(api_function_address,
|
| + FieldMemOperand(scratch, Foreign::kForeignAddressOffset));
|
| +
|
| // +3 is to skip prolog, return address and name handle.
|
| MemOperand return_value_operand(
|
| fp, (PropertyCallbackArguments::kReturnValueOffset + 3) * kPointerSize);
|
|
|