Home
last modified time | relevance | path

Searched refs:context_index (Results 1 – 12 of 12) sorted by relevance

/external/v8/src/
Dscopeinfo.cc382 int context_index = Context::MIN_CONTEXT_SLOTS + i; in CopyContextLocalsToScopeObject() local
388 Handle<Object>(context->get(context_index), isolate), in CopyContextLocalsToScopeObject()
Delements.cc1560 int context_index = Handle<Smi>::cast(probe)->value(); in GetImpl() local
1561 DCHECK(!context->get(context_index)->IsTheHole()); in GetImpl()
1562 return handle(context->get(context_index), isolate); in GetImpl()
1578 int context_index = entry->aliased_context_slot(); in GetImpl() local
1579 DCHECK(!context->get(context_index)->IsTheHole()); in GetImpl()
1580 return handle(context->get(context_index), isolate); in GetImpl()
Dfull-codegen.h615 void LoadContextField(Register dst, int context_index);
Dobjects.cc12103 int context_index = entry->aliased_context_slot(); in SetDictionaryElement() local
12104 DCHECK(!context->get(context_index)->IsTheHole()); in SetDictionaryElement()
12105 context->set(context_index, *value); in SetDictionaryElement()
12518 int context_index = Handle<Smi>::cast(probe)->value(); in SetElementWithoutInterceptor() local
12519 DCHECK(!context->get(context_index)->IsTheHole()); in SetElementWithoutInterceptor()
12520 context->set(context_index, *value); in SetElementWithoutInterceptor()
12527 isolate->factory()->NewAliasedArgumentsEntry(context_index)); in SetElementWithoutInterceptor()
Druntime.cc8089 int context_index = -1; in NewSloppyArguments() local
8092 context_index = j; in NewSloppyArguments()
8096 DCHECK(context_index >= 0); in NewSloppyArguments()
8099 Context::MIN_CONTEXT_SLOTS + context_index)); in NewSloppyArguments()
11732 int context_index = ScopeInfo::ContextSlotIndex( in SetContextLocalValue() local
11734 context->set(context_index, *new_value); in SetContextLocalValue()
/external/v8/src/arm64/
Dfull-codegen-arm64.cc4781 void FullCodeGenerator::LoadContextField(Register dst, int context_index) { in LoadContextField() argument
4782 __ Ldr(dst, ContextMemOperand(cp, context_index)); in LoadContextField()
/external/v8/src/ia32/
Dfull-codegen-ia32.cc4715 void FullCodeGenerator::LoadContextField(Register dst, int context_index) { in LoadContextField() argument
4716 __ mov(dst, ContextOperand(esi, context_index)); in LoadContextField()
/external/v8/src/x87/
Dfull-codegen-x87.cc4704 void FullCodeGenerator::LoadContextField(Register dst, int context_index) { in LoadContextField() argument
4705 __ mov(dst, ContextOperand(esi, context_index)); in LoadContextField()
/external/v8/src/x64/
Dfull-codegen-x64.cc4724 void FullCodeGenerator::LoadContextField(Register dst, int context_index) { in LoadContextField() argument
4725 __ movp(dst, ContextOperand(rsi, context_index)); in LoadContextField()
/external/v8/src/mips64/
Dfull-codegen-mips64.cc4767 void FullCodeGenerator::LoadContextField(Register dst, int context_index) { in LoadContextField() argument
4768 __ ld(dst, ContextOperand(cp, context_index)); in LoadContextField()
/external/v8/src/arm/
Dfull-codegen-arm.cc4752 void FullCodeGenerator::LoadContextField(Register dst, int context_index) { in LoadContextField() argument
4753 __ ldr(dst, ContextOperand(cp, context_index)); in LoadContextField()
/external/v8/src/mips/
Dfull-codegen-mips.cc4764 void FullCodeGenerator::LoadContextField(Register dst, int context_index) { in LoadContextField() argument
4765 __ lw(dst, ContextOperand(cp, context_index)); in LoadContextField()