| Index: src/ic/arm/handler-compiler-arm.cc
|
| diff --git a/src/ic/arm/handler-compiler-arm.cc b/src/ic/arm/handler-compiler-arm.cc
|
| index ed26a4e0df7c2a07a75607a36301712eac254ac2..d794e578c1b15dd2f34df5f9a8004c318c05feab 100644
|
| --- a/src/ic/arm/handler-compiler-arm.cc
|
| +++ b/src/ic/arm/handler-compiler-arm.cc
|
| @@ -597,6 +597,57 @@
|
| __ Ret();
|
| }
|
|
|
| +
|
| +void NamedLoadHandlerCompiler::GenerateLoadCallback(
|
| + Register reg, Handle<AccessorInfo> callback) {
|
| + DCHECK(!AreAliased(scratch2(), scratch3(), scratch4(), receiver()));
|
| + DCHECK(!AreAliased(scratch2(), scratch3(), scratch4(), reg));
|
| +
|
| + // 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);
|
| +
|
| + __ push(receiver());
|
| + // Push data from AccessorInfo.
|
| + Handle<Object> data(callback->data(), isolate());
|
| + if (data->IsUndefined() || data->IsSmi()) {
|
| + __ Move(scratch2(), data);
|
| + } else {
|
| + Handle<WeakCell> cell =
|
| + isolate()->factory()->NewWeakCell(Handle<HeapObject>::cast(data));
|
| + // The callback is alive if this instruction is executed,
|
| + // so the weak cell is not cleared and points to data.
|
| + __ GetWeakValue(scratch2(), cell);
|
| + }
|
| + __ push(scratch2());
|
| + __ LoadRoot(scratch2(), Heap::kUndefinedValueRootIndex);
|
| + __ Push(scratch2(), scratch2());
|
| + __ mov(scratch2(), Operand(ExternalReference::isolate_address(isolate())));
|
| + __ Push(scratch2(), reg);
|
| + __ Push(Smi::FromInt(0)); // should_throw_on_error -> false
|
| + __ push(name());
|
| +
|
| + // Abi for CallApiGetter
|
| + Register getter_address_reg = ApiGetterDescriptor::function_address();
|
| +
|
| + Address getter_address = v8::ToCData<Address>(callback->getter());
|
| + ApiFunction fun(getter_address);
|
| + ExternalReference::Type type = ExternalReference::DIRECT_GETTER_CALL;
|
| + ExternalReference ref = ExternalReference(&fun, type, isolate());
|
| + __ mov(getter_address_reg, Operand(ref));
|
| +
|
| + CallApiGetterStub stub(isolate());
|
| + __ TailCallStub(&stub);
|
| +}
|
| +
|
| +
|
| void NamedLoadHandlerCompiler::GenerateLoadInterceptorWithFollowup(
|
| LookupIterator* it, Register holder_reg) {
|
| DCHECK(holder()->HasNamedInterceptor());
|
|
|