Index: src/ppc/code-stubs-ppc.cc |
diff --git a/src/ppc/code-stubs-ppc.cc b/src/ppc/code-stubs-ppc.cc |
index 560fd6e5d54eaad2211e318f29fa229b0ee4f15c..89be7c5ecae233f94cfa070cb78242b6f70d8254 100644 |
--- a/src/ppc/code-stubs-ppc.cc |
+++ b/src/ppc/code-stubs-ppc.cc |
@@ -5722,18 +5722,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_ |
- // -- ... |
- // -- r5 : api_function_address |
- // ----------------------------------- |
- |
- Register api_function_address = ApiGetterDescriptor::function_address(); |
int arg0Slot = 0; |
int accessorInfoSlot = 0; |
int apiStackSpace = 0; |
- DCHECK(api_function_address.is(r5)); |
+ // 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 = r7; |
+ DCHECK(!AreAliased(receiver, holder, callback, scratch)); |
+ |
+ Register api_function_address = r5; |
+ |
+ __ 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; |
@@ -5781,6 +5802,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); |