Searched refs:MIN_CONTEXT_SLOTS (Results 1 - 25 of 35) sorted by relevance

12

/external/v8/src/
H A Dscopeinfo.cc179 return Context::MIN_CONTEXT_SLOTS + context_locals +
322 result = Context::MIN_CONTEXT_SLOTS + var;
382 int context_index = Context::MIN_CONTEXT_SLOTS + i;
536 Context::MIN_CONTEXT_SLOTS,
H A Dcontexts.h271 MIN_CONTEXT_SLOTS, enumerator in enum:v8::internal::Context::__anon14827
274 THROWN_OBJECT_INDEX = MIN_CONTEXT_SLOTS,
277 GLOBAL_PROXY_INDEX = MIN_CONTEXT_SLOTS,
H A Dscopes.cc114 // Ensure at least MIN_CONTEXT_SLOTS to indicate a materialized context.
116 static_cast<int>(Context::MIN_CONTEXT_SLOTS));
138 num_heap_slots_ = Context::MIN_CONTEXT_SLOTS;
1357 num_heap_slots_ = Context::MIN_CONTEXT_SLOTS;
1373 if (num_heap_slots_ == Context::MIN_CONTEXT_SLOTS && !must_have_context) {
1378 DCHECK(num_heap_slots_ == 0 || num_heap_slots_ >= Context::MIN_CONTEXT_SLOTS);
1407 return num_heap_slots() - Context::MIN_CONTEXT_SLOTS -
H A Dcontexts.cc184 DCHECK(slot_index < 0 || slot_index >= MIN_CONTEXT_SLOTS);
H A Dfactory.cc724 DCHECK(length >= Context::MIN_CONTEXT_SLOTS);
740 STATIC_ASSERT(Context::MIN_CONTEXT_SLOTS == Context::THROWN_OBJECT_INDEX);
741 Handle<FixedArray> array = NewFixedArray(Context::MIN_CONTEXT_SLOTS + 1);
756 Handle<FixedArray> array = NewFixedArray(Context::MIN_CONTEXT_SLOTS);
H A Dgdb-jit.cc1125 int internal_slots = Context::MIN_CONTEXT_SLOTS;
1154 DCHECK(Context::MIN_CONTEXT_SLOTS == 4);
1327 int internal_slots = Context::MIN_CONTEXT_SLOTS;
H A Dcode-stubs-hydrogen.cc1509 int length = casted_stub()->slots() + Context::MIN_CONTEXT_SLOTS;
1547 for (int i = Context::MIN_CONTEXT_SLOTS; i < length; ++i) {
H A Dframes.cc1266 int index = Context::MIN_CONTEXT_SLOTS + i;
H A Dbootstrapper.cc1688 factory()->NewFunctionContext(Context::MIN_CONTEXT_SLOTS, bridge);
H A Dheap-snapshot-generator.cc1242 int idx = Context::MIN_CONTEXT_SLOTS + i;
/external/v8/src/compiler/
H A Dast-graph-builder.cc1681 int heap_slots = info()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
/external/v8/test/cctest/
H A Dtest-heap-profiler.cc2225 CHECK_EQ(v8::internal::Context::MIN_CONTEXT_SLOTS + num_objects - 1,
/external/v8/src/arm/
H A Dcode-stubs-arm.cc1710 // MIN_CONTEXT_SLOTS .. MIN_CONTEXT_SLOTS+parameter_count-1
1712 // MIN_CONTEXT_SLOTS+parameter_count-1 ..
1713 // MIN_CONTEXT_SLOTS+parameter_count-mapped_parameter_count
1718 __ add(r9, r9, Operand(Smi::FromInt(Context::MIN_CONTEXT_SLOTS)));
H A Dfull-codegen-arm.cc193 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
H A Dlithium-codegen-arm.cc179 int heap_slots = info()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
/external/v8/src/arm64/
H A Dcode-stubs-arm64.cc1869 // MIN_CONTEXT_SLOTS .. MIN_CONTEXT_SLOTS + parameter_count - 1
1873 // MIN_CONTEXT_SLOTS + parameter_count - 1 ..
1874 // MIN_CONTEXT_SLOTS + parameter_count - mapped_parameter_count
1897 __ Add(index, param_count, static_cast<int>(Context::MIN_CONTEXT_SLOTS));
H A Dfull-codegen-arm64.cc194 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
H A Dlithium-codegen-arm64.cc687 int heap_slots = info()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
/external/v8/src/ia32/
H A Dcode-stubs-ia32.cc927 // MIN_CONTEXT_SLOTS .. MIN_CONTEXT_SLOTS+parameter_count-1
929 // MIN_CONTEXT_SLOTS+parameter_count-1 ..
930 // MIN_CONTEXT_SLOTS+parameter_count-mapped_parameter_count
935 __ mov(ebx, Immediate(Smi::FromInt(Context::MIN_CONTEXT_SLOTS)));
H A Dfull-codegen-ia32.cc186 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
H A Dlithium-codegen-ia32.cc256 int heap_slots = info_->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
/external/v8/src/x64/
H A Dcode-stubs-x64.cc731 // MIN_CONTEXT_SLOTS .. MIN_CONTEXT_SLOTS+parameter_count-1
733 // MIN_CONTEXT_SLOTS+parameter_count-1 ..
734 // MIN_CONTEXT_SLOTS+parameter_count-mapped_parameter_count
740 __ Move(r8, Smi::FromInt(Context::MIN_CONTEXT_SLOTS));
/external/v8/src/x87/
H A Dcode-stubs-x87.cc607 // MIN_CONTEXT_SLOTS .. MIN_CONTEXT_SLOTS+parameter_count-1
609 // MIN_CONTEXT_SLOTS+parameter_count-1 ..
610 // MIN_CONTEXT_SLOTS+parameter_count-mapped_parameter_count
615 __ mov(ebx, Immediate(Smi::FromInt(Context::MIN_CONTEXT_SLOTS)));
/external/v8/src/mips/
H A Dcode-stubs-mips.cc1825 // MIN_CONTEXT_SLOTS .. MIN_CONTEXT_SLOTS+parameter_count-1
1827 // MIN_CONTEXT_SLOTS+parameter_count-1 ..
1828 // MIN_CONTEXT_SLOTS+parameter_count-mapped_parameter_count
1833 __ Addu(t5, t5, Operand(Smi::FromInt(Context::MIN_CONTEXT_SLOTS)));
H A Dfull-codegen-mips.cc202 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;

Completed in 516 milliseconds

12