/external/v8/src/ |
D | contexts-inl.h | 53 Object* result = get(PREVIOUS_INDEX); in previous() 57 void Context::set_previous(Context* context) { set(PREVIOUS_INDEX, context); } in set_previous()
|
D | contexts.h | 379 PREVIOUS_INDEX, enumerator
|
D | gdb-jit.cc | 1202 DCHECK(Context::PREVIOUS_INDEX == 1); in WriteBodyInternal()
|
D | code-stubs-hydrogen.cc | 2012 HObjectAccess::ForContextSlot(Context::PREVIOUS_INDEX), in BuildCodeStub()
|
/external/v8/src/compiler/ |
D | js-create-lowering.cc | 669 a.Store(AccessBuilder::ForContextSlot(Context::PREVIOUS_INDEX), context); in ReduceJSCreateFunctionContext() 698 a.Store(AccessBuilder::ForContextSlot(Context::PREVIOUS_INDEX), context); in ReduceJSCreateWithContext() 723 a.Store(AccessBuilder::ForContextSlot(Context::PREVIOUS_INDEX), context); in ReduceJSCreateCatchContext() 754 a.Store(AccessBuilder::ForContextSlot(Context::PREVIOUS_INDEX), context); in ReduceJSCreateBlockContext()
|
D | js-generic-lowering.cc | 339 Context::SlotOffset(Context::PREVIOUS_INDEX)), in LowerJSLoadContext() 357 Context::SlotOffset(Context::PREVIOUS_INDEX)), in LowerJSStoreContext()
|
D | js-typed-lowering.cc | 1359 AccessBuilder::ForContextSlot(Context::PREVIOUS_INDEX)), in ReduceJSLoadContext() 1380 AccessBuilder::ForContextSlot(Context::PREVIOUS_INDEX)), in ReduceJSStoreContext()
|
/external/v8/src/full-codegen/ |
D | full-codegen.cc | 961 LoadContextField(context_register(), Context::PREVIOUS_INDEX); in EmitContinue() 1001 LoadContextField(context_register(), Context::PREVIOUS_INDEX); in EmitBreak() 1134 LoadContextField(context_register(), Context::PREVIOUS_INDEX); in VisitWithStatement() 1335 LoadContextField(context_register(), Context::PREVIOUS_INDEX); in VisitTryCatchStatement() 1922 Context::PREVIOUS_INDEX); in ~EnterBlockScopeIfNeeded()
|
/external/v8/test/unittests/compiler/ |
D | js-typed-lowering-unittest.cc | 542 Context::PREVIOUS_INDEX), in TEST_F() 577 Context::PREVIOUS_INDEX), in TEST_F()
|
/external/v8/src/full-codegen/ia32/ |
D | full-codegen-ia32.cc | 1124 __ mov(temp, ContextOperand(context, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1151 __ mov(temp, ContextOperand(temp, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1175 __ mov(temp, ContextOperand(context, Context::PREVIOUS_INDEX)); in ContextSlotOperandCheckExtensions()
|
/external/v8/src/full-codegen/x87/ |
D | full-codegen-x87.cc | 1116 __ mov(temp, ContextOperand(context, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1143 __ mov(temp, ContextOperand(temp, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1167 __ mov(temp, ContextOperand(context, Context::PREVIOUS_INDEX)); in ContextSlotOperandCheckExtensions()
|
/external/v8/src/full-codegen/arm64/ |
D | full-codegen-arm64.cc | 1190 __ Ldr(next, ContextMemOperand(current, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1212 __ Ldr(next, ContextMemOperand(next, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1237 __ Ldr(next, ContextMemOperand(context, Context::PREVIOUS_INDEX)); in ContextSlotOperandCheckExtensions()
|
/external/v8/src/full-codegen/x64/ |
D | full-codegen-x64.cc | 1153 __ movp(temp, ContextOperand(context, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1181 __ movp(temp, ContextOperand(temp, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1205 __ movp(temp, ContextOperand(context, Context::PREVIOUS_INDEX)); in ContextSlotOperandCheckExtensions()
|
/external/v8/src/full-codegen/mips64/ |
D | full-codegen-mips64.cc | 1197 __ ld(next, ContextMemOperand(current, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1221 __ ld(next, ContextMemOperand(next, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1246 __ ld(next, ContextMemOperand(context, Context::PREVIOUS_INDEX)); in ContextSlotOperandCheckExtensions()
|
/external/v8/src/full-codegen/arm/ |
D | full-codegen-arm.cc | 1202 __ ldr(next, ContextMemOperand(current, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1227 __ ldr(next, ContextMemOperand(next, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1252 __ ldr(next, ContextMemOperand(context, Context::PREVIOUS_INDEX)); in ContextSlotOperandCheckExtensions()
|
/external/v8/src/full-codegen/s390/ |
D | full-codegen-s390.cc | 1132 __ LoadP(next, ContextMemOperand(current, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1156 __ LoadP(next, ContextMemOperand(next, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1180 __ LoadP(next, ContextMemOperand(context, Context::PREVIOUS_INDEX)); in ContextSlotOperandCheckExtensions()
|
/external/v8/src/full-codegen/ppc/ |
D | full-codegen-ppc.cc | 1164 __ LoadP(next, ContextMemOperand(current, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1189 __ LoadP(next, ContextMemOperand(next, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1214 __ LoadP(next, ContextMemOperand(context, Context::PREVIOUS_INDEX)); in ContextSlotOperandCheckExtensions()
|
/external/v8/src/full-codegen/mips/ |
D | full-codegen-mips.cc | 1196 __ lw(next, ContextMemOperand(current, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1220 __ lw(next, ContextMemOperand(next, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1245 __ lw(next, ContextMemOperand(context, Context::PREVIOUS_INDEX)); in ContextSlotOperandCheckExtensions()
|
/external/v8/src/interpreter/ |
D | bytecode-generator.cc | 1825 ->LoadContextSlot(context_reg, Context::PREVIOUS_INDEX) in VisitVariableLoad() 2030 ->LoadContextSlot(context_reg, Context::PREVIOUS_INDEX) in VisitVariableAssignment()
|
/external/v8/src/x87/ |
D | macro-assembler-x87.cc | 2431 mov(dst, Operand(esi, Context::SlotOffset(Context::PREVIOUS_INDEX))); in LoadContext() 2433 mov(dst, Operand(dst, Context::SlotOffset(Context::PREVIOUS_INDEX))); in LoadContext()
|
/external/v8/src/ia32/ |
D | macro-assembler-ia32.cc | 2492 mov(dst, Operand(esi, Context::SlotOffset(Context::PREVIOUS_INDEX))); in LoadContext() 2494 mov(dst, Operand(dst, Context::SlotOffset(Context::PREVIOUS_INDEX))); in LoadContext()
|
/external/v8/src/arm/ |
D | macro-assembler-arm.cc | 2996 ldr(dst, MemOperand(cp, Context::SlotOffset(Context::PREVIOUS_INDEX))); in LoadContext() 2998 ldr(dst, MemOperand(dst, Context::SlotOffset(Context::PREVIOUS_INDEX))); in LoadContext()
|
/external/v8/src/crankshaft/ |
D | hydrogen.cc | 3467 HObjectAccess::ForContextSlot(Context::PREVIOUS_INDEX)); in BuildGetParentContext() 3492 HObjectAccess::ForContextSlot(Context::PREVIOUS_INDEX)); in BuildGetParentContext() 4897 HObjectAccess::ForContextSlot(Context::PREVIOUS_INDEX)); in VisitBlock() 5036 HObjectAccess::ForContextSlot(Context::PREVIOUS_INDEX)); in VisitContinueStatement() 5069 HObjectAccess::ForContextSlot(Context::PREVIOUS_INDEX)); in VisitBreakStatement() 5795 HObjectAccess::ForContextSlot(Context::PREVIOUS_INDEX)); in BuildContextChainWalk()
|
/external/v8/src/arm64/ |
D | macro-assembler-arm64.cc | 2977 Ldr(dst, MemOperand(cp, Context::SlotOffset(Context::PREVIOUS_INDEX))); in LoadContext() 2979 Ldr(dst, MemOperand(dst, Context::SlotOffset(Context::PREVIOUS_INDEX))); in LoadContext()
|
/external/v8/src/ppc/ |
D | macro-assembler-ppc.cc | 2881 LoadP(dst, MemOperand(cp, Context::SlotOffset(Context::PREVIOUS_INDEX))); in LoadContext() 2883 LoadP(dst, MemOperand(dst, Context::SlotOffset(Context::PREVIOUS_INDEX))); in LoadContext()
|