/external/v8/src/ |
D | contexts-inl.h | 48 JSFunction* Context::closure() { return JSFunction::cast(get(CLOSURE_INDEX)); } in closure() 49 void Context::set_closure(JSFunction* closure) { set(CLOSURE_INDEX, closure); } in set_closure()
|
D | contexts.h | 454 CLOSURE_INDEX, enumerator
|
D | gdb-jit.cc | 1202 DCHECK(Context::CLOSURE_INDEX == 0); in WriteBodyInternal()
|
D | code-stubs.cc | 2673 function_context, assembler->Int32Constant(Context::CLOSURE_INDEX), in Generate()
|
/external/v8/src/compiler/ |
D | js-create-lowering.cc | 802 a.Store(AccessBuilder::ForContextSlot(Context::CLOSURE_INDEX), closure); in ReduceJSCreateFunctionContext() 837 a.Store(AccessBuilder::ForContextSlot(Context::CLOSURE_INDEX), closure); in ReduceJSCreateWithContext() 870 a.Store(AccessBuilder::ForContextSlot(Context::CLOSURE_INDEX), closure); in ReduceJSCreateCatchContext() 899 a.Store(AccessBuilder::ForContextSlot(Context::CLOSURE_INDEX), closure); in ReduceJSCreateBlockContext()
|
D | typer.cc | 1258 case Context::CLOSURE_INDEX: in TypeJSLoadContext()
|
D | ast-graph-builder.cc | 450 return BuildLoadNativeContextField(Context::CLOSURE_INDEX); in GetFunctionClosureForContext() 455 javascript()->LoadContext(0, Context::CLOSURE_INDEX, false); in GetFunctionClosureForContext()
|
/external/v8/src/interpreter/ |
D | bytecode-generator.cc | 3089 .LoadContextSlot(native_context, Context::CLOSURE_INDEX, 0); in VisitFunctionClosureForContext() 3095 Context::CLOSURE_INDEX, 0); in VisitFunctionClosureForContext()
|
/external/v8/src/full-codegen/x64/ |
D | full-codegen-x64.cc | 3372 PushOperand(ContextOperand(rax, Context::CLOSURE_INDEX)); in PushFunctionArgumentForContextAllocation() 3377 PushOperand(ContextOperand(rsi, Context::CLOSURE_INDEX)); in PushFunctionArgumentForContextAllocation()
|
/external/v8/src/full-codegen/x87/ |
D | full-codegen-x87.cc | 3376 PushOperand(ContextOperand(eax, Context::CLOSURE_INDEX)); in PushFunctionArgumentForContextAllocation() 3381 PushOperand(ContextOperand(esi, Context::CLOSURE_INDEX)); in PushFunctionArgumentForContextAllocation()
|
/external/v8/src/full-codegen/ia32/ |
D | full-codegen-ia32.cc | 3384 PushOperand(ContextOperand(eax, Context::CLOSURE_INDEX)); in PushFunctionArgumentForContextAllocation() 3389 PushOperand(ContextOperand(esi, Context::CLOSURE_INDEX)); in PushFunctionArgumentForContextAllocation()
|
/external/v8/src/full-codegen/ppc/ |
D | full-codegen-ppc.cc | 3485 __ LoadNativeContextSlot(Context::CLOSURE_INDEX, ip); in PushFunctionArgumentForContextAllocation() 3490 __ LoadP(ip, ContextMemOperand(cp, Context::CLOSURE_INDEX)); in PushFunctionArgumentForContextAllocation()
|
/external/v8/src/full-codegen/mips64/ |
D | full-codegen-mips64.cc | 3497 __ LoadNativeContextSlot(Context::CLOSURE_INDEX, at); in PushFunctionArgumentForContextAllocation() 3502 __ ld(at, ContextMemOperand(cp, Context::CLOSURE_INDEX)); in PushFunctionArgumentForContextAllocation()
|
/external/v8/src/full-codegen/arm64/ |
D | full-codegen-arm64.cc | 3545 __ LoadNativeContextSlot(Context::CLOSURE_INDEX, x10); in PushFunctionArgumentForContextAllocation() 3550 __ Ldr(x10, ContextMemOperand(cp, Context::CLOSURE_INDEX)); in PushFunctionArgumentForContextAllocation()
|
/external/v8/src/full-codegen/mips/ |
D | full-codegen-mips.cc | 3493 __ LoadNativeContextSlot(Context::CLOSURE_INDEX, at); in PushFunctionArgumentForContextAllocation() 3498 __ lw(at, ContextMemOperand(cp, Context::CLOSURE_INDEX)); in PushFunctionArgumentForContextAllocation()
|
/external/v8/src/full-codegen/arm/ |
D | full-codegen-arm.cc | 3482 __ LoadNativeContextSlot(Context::CLOSURE_INDEX, ip); in PushFunctionArgumentForContextAllocation() 3487 __ ldr(ip, ContextMemOperand(cp, Context::CLOSURE_INDEX)); in PushFunctionArgumentForContextAllocation()
|
/external/v8/src/full-codegen/s390/ |
D | full-codegen-s390.cc | 3402 __ LoadNativeContextSlot(Context::CLOSURE_INDEX, ip); in PushFunctionArgumentForContextAllocation() 3407 __ LoadP(ip, ContextMemOperand(cp, Context::CLOSURE_INDEX)); in PushFunctionArgumentForContextAllocation()
|
/external/v8/src/profiler/ |
D | heap-snapshot-generator.cc | 1228 EXTRACT_CONTEXT_FIELD(CLOSURE_INDEX, JSFunction, closure); in ExtractContextReferences()
|
/external/v8/src/crankshaft/ |
D | hydrogen.cc | 4294 HLoadContextSlot(outer_context, Context::CLOSURE_INDEX, in VisitBlock()
|