/external/v8/src/ |
D | contexts-inl.h | 52 Object* result = get(PREVIOUS_INDEX); in previous() 56 void Context::set_previous(Context* context) { set(PREVIOUS_INDEX, context); } in set_previous()
|
D | contexts.h | 398 PREVIOUS_INDEX, enumerator
|
D | gdb-jit.cc | 1188 DCHECK(Context::PREVIOUS_INDEX == 1); in WriteBodyInternal()
|
D | code-stubs-hydrogen.cc | 2116 HObjectAccess::ForContextSlot(Context::PREVIOUS_INDEX), in BuildCodeStub()
|
/external/v8/src/full-codegen/ |
D | full-codegen.cc | 864 LoadContextField(context_register(), Context::PREVIOUS_INDEX); in VisitContinueStatement() 892 LoadContextField(context_register(), Context::PREVIOUS_INDEX); in VisitBreakStatement() 956 LoadContextField(context_register(), Context::PREVIOUS_INDEX); in VisitWithStatement() 1153 LoadContextField(context_register(), Context::PREVIOUS_INDEX); in VisitTryCatchStatement() 1666 Context::PREVIOUS_INDEX); in ~EnterBlockScopeIfNeeded()
|
/external/v8/src/compiler/ |
D | js-typed-lowering.cc | 1295 AccessBuilder::ForContextSlot(Context::PREVIOUS_INDEX)), in ReduceJSLoadContext() 1316 AccessBuilder::ForContextSlot(Context::PREVIOUS_INDEX)), in ReduceJSStoreContext() 1964 a.Store(AccessBuilder::ForContextSlot(Context::PREVIOUS_INDEX), context); in ReduceJSCreateFunctionContext() 2008 a.Store(AccessBuilder::ForContextSlot(Context::PREVIOUS_INDEX), context); in ReduceJSCreateWithContext() 2034 a.Store(AccessBuilder::ForContextSlot(Context::PREVIOUS_INDEX), context); in ReduceJSCreateCatchContext() 2066 a.Store(AccessBuilder::ForContextSlot(Context::PREVIOUS_INDEX), context); in ReduceJSCreateBlockContext()
|
D | js-generic-lowering.cc | 405 Context::SlotOffset(Context::PREVIOUS_INDEX)), in LowerJSLoadContext() 423 Context::SlotOffset(Context::PREVIOUS_INDEX)), in LowerJSStoreContext()
|
/external/v8/test/unittests/compiler/ |
D | js-typed-lowering-unittest.cc | 576 Context::PREVIOUS_INDEX), in TEST_F() 611 Context::PREVIOUS_INDEX), in TEST_F()
|
/external/v8/src/interpreter/ |
D | bytecode-generator.cc | 1236 ->LoadContextSlot(context_reg, Context::PREVIOUS_INDEX) in VisitVariableLoad() 1313 ->LoadContextSlot(context_reg, Context::PREVIOUS_INDEX) in VisitVariableAssignment()
|
/external/v8/src/x87/ |
D | macro-assembler-x87.cc | 2137 mov(dst, Operand(esi, Context::SlotOffset(Context::PREVIOUS_INDEX))); in LoadContext() 2139 mov(dst, Operand(dst, Context::SlotOffset(Context::PREVIOUS_INDEX))); in LoadContext()
|
D | code-stubs-x87.cc | 4824 __ mov(result_reg, ContextOperand(context_reg, Context::PREVIOUS_INDEX)); in Generate() 4863 __ mov(cell_reg, ContextOperand(context_reg, Context::PREVIOUS_INDEX)); in Generate()
|
/external/v8/src/ia32/ |
D | macro-assembler-ia32.cc | 2173 mov(dst, Operand(esi, Context::SlotOffset(Context::PREVIOUS_INDEX))); in LoadContext() 2175 mov(dst, Operand(dst, Context::SlotOffset(Context::PREVIOUS_INDEX))); in LoadContext()
|
/external/v8/src/full-codegen/x64/ |
D | full-codegen-x64.cc | 1227 __ movp(temp, ContextOperand(context, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1255 __ movp(temp, ContextOperand(temp, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1279 __ movp(temp, ContextOperand(context, Context::PREVIOUS_INDEX)); in ContextSlotOperandCheckExtensions()
|
/external/v8/src/full-codegen/arm64/ |
D | full-codegen-arm64.cc | 1271 __ Ldr(next, ContextMemOperand(current, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1293 __ Ldr(next, ContextMemOperand(next, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1318 __ Ldr(next, ContextMemOperand(context, Context::PREVIOUS_INDEX)); in ContextSlotOperandCheckExtensions()
|
/external/v8/src/full-codegen/mips/ |
D | full-codegen-mips.cc | 1272 __ lw(next, ContextMemOperand(current, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1296 __ lw(next, ContextMemOperand(next, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1321 __ lw(next, ContextMemOperand(context, Context::PREVIOUS_INDEX)); in ContextSlotOperandCheckExtensions()
|
/external/v8/src/full-codegen/ppc/ |
D | full-codegen-ppc.cc | 1238 __ LoadP(next, ContextMemOperand(current, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1263 __ LoadP(next, ContextMemOperand(next, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1288 __ LoadP(next, ContextMemOperand(context, Context::PREVIOUS_INDEX)); in ContextSlotOperandCheckExtensions()
|
/external/v8/src/full-codegen/arm/ |
D | full-codegen-arm.cc | 1280 __ ldr(next, ContextMemOperand(current, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1305 __ ldr(next, ContextMemOperand(next, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1330 __ ldr(next, ContextMemOperand(context, Context::PREVIOUS_INDEX)); in ContextSlotOperandCheckExtensions()
|
/external/v8/src/full-codegen/x87/ |
D | full-codegen-x87.cc | 1189 __ mov(temp, ContextOperand(context, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1216 __ mov(temp, ContextOperand(temp, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1240 __ mov(temp, ContextOperand(context, Context::PREVIOUS_INDEX)); in ContextSlotOperandCheckExtensions()
|
/external/v8/src/full-codegen/ia32/ |
D | full-codegen-ia32.cc | 1197 __ mov(temp, ContextOperand(context, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1224 __ mov(temp, ContextOperand(temp, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1248 __ mov(temp, ContextOperand(context, Context::PREVIOUS_INDEX)); in ContextSlotOperandCheckExtensions()
|
/external/v8/src/full-codegen/mips64/ |
D | full-codegen-mips64.cc | 1271 __ ld(next, ContextMemOperand(current, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1295 __ ld(next, ContextMemOperand(next, Context::PREVIOUS_INDEX)); in EmitLoadGlobalCheckExtensions() 1320 __ ld(next, ContextMemOperand(context, Context::PREVIOUS_INDEX)); in ContextSlotOperandCheckExtensions()
|
/external/v8/src/arm/ |
D | macro-assembler-arm.cc | 2638 ldr(dst, MemOperand(cp, Context::SlotOffset(Context::PREVIOUS_INDEX))); in LoadContext() 2640 ldr(dst, MemOperand(dst, Context::SlotOffset(Context::PREVIOUS_INDEX))); in LoadContext()
|
/external/v8/src/ppc/ |
D | macro-assembler-ppc.cc | 2455 LoadP(dst, MemOperand(cp, Context::SlotOffset(Context::PREVIOUS_INDEX))); in LoadContext() 2457 LoadP(dst, MemOperand(dst, Context::SlotOffset(Context::PREVIOUS_INDEX))); in LoadContext()
|
/external/v8/src/arm64/ |
D | macro-assembler-arm64.cc | 2875 Ldr(dst, MemOperand(cp, Context::SlotOffset(Context::PREVIOUS_INDEX))); in LoadContext() 2877 Ldr(dst, MemOperand(dst, Context::SlotOffset(Context::PREVIOUS_INDEX))); in LoadContext()
|
/external/v8/src/crankshaft/ |
D | hydrogen.cc | 3308 HObjectAccess::ForContextSlot(Context::PREVIOUS_INDEX)); in BuildGetParentContext() 3333 HObjectAccess::ForContextSlot(Context::PREVIOUS_INDEX)); in BuildGetParentContext() 4759 HObjectAccess::ForContextSlot(Context::PREVIOUS_INDEX)); in VisitBlock() 4896 HObjectAccess::ForContextSlot(Context::PREVIOUS_INDEX)); in VisitContinueStatement() 4928 HObjectAccess::ForContextSlot(Context::PREVIOUS_INDEX)); in VisitBreakStatement() 5602 HObjectAccess::ForContextSlot(Context::PREVIOUS_INDEX)); in BuildContextChainWalk()
|
/external/v8/src/x64/ |
D | macro-assembler-x64.cc | 5067 movp(dst, Operand(rsi, Context::SlotOffset(Context::PREVIOUS_INDEX))); in LoadContext() 5069 movp(dst, Operand(dst, Context::SlotOffset(Context::PREVIOUS_INDEX))); in LoadContext()
|