Searched refs:context_index (Results 1 – 12 of 12) sorted by relevance
/external/v8/src/ |
D | scopeinfo.cc | 382 int context_index = Context::MIN_CONTEXT_SLOTS + i; in CopyContextLocalsToScopeObject() local 388 Handle<Object>(context->get(context_index), isolate), in CopyContextLocalsToScopeObject()
|
D | elements.cc | 1560 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()
|
D | full-codegen.h | 615 void LoadContextField(Register dst, int context_index);
|
D | objects.cc | 12103 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()
|
D | runtime.cc | 8089 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/ |
D | full-codegen-arm64.cc | 4781 void FullCodeGenerator::LoadContextField(Register dst, int context_index) { in LoadContextField() argument 4782 __ Ldr(dst, ContextMemOperand(cp, context_index)); in LoadContextField()
|
/external/v8/src/ia32/ |
D | full-codegen-ia32.cc | 4715 void FullCodeGenerator::LoadContextField(Register dst, int context_index) { in LoadContextField() argument 4716 __ mov(dst, ContextOperand(esi, context_index)); in LoadContextField()
|
/external/v8/src/x87/ |
D | full-codegen-x87.cc | 4704 void FullCodeGenerator::LoadContextField(Register dst, int context_index) { in LoadContextField() argument 4705 __ mov(dst, ContextOperand(esi, context_index)); in LoadContextField()
|
/external/v8/src/x64/ |
D | full-codegen-x64.cc | 4724 void FullCodeGenerator::LoadContextField(Register dst, int context_index) { in LoadContextField() argument 4725 __ movp(dst, ContextOperand(rsi, context_index)); in LoadContextField()
|
/external/v8/src/mips64/ |
D | full-codegen-mips64.cc | 4767 void FullCodeGenerator::LoadContextField(Register dst, int context_index) { in LoadContextField() argument 4768 __ ld(dst, ContextOperand(cp, context_index)); in LoadContextField()
|
/external/v8/src/arm/ |
D | full-codegen-arm.cc | 4752 void FullCodeGenerator::LoadContextField(Register dst, int context_index) { in LoadContextField() argument 4753 __ ldr(dst, ContextOperand(cp, context_index)); in LoadContextField()
|
/external/v8/src/mips/ |
D | full-codegen-mips.cc | 4764 void FullCodeGenerator::LoadContextField(Register dst, int context_index) { in LoadContextField() argument 4765 __ lw(dst, ContextOperand(cp, context_index)); in LoadContextField()
|