Home
last modified time | relevance | path

Searched refs:MIN_CONTEXT_SLOTS (Results 1 – 19 of 19) sorted by relevance

/external/v8/src/
Dscopeinfo.cc115 ASSERT(heap_locals[i]->AsSlot()->index() - Context::MIN_CONTEXT_SLOTS == in ScopeInfo()
117 ASSERT(heap_locals[i]->AsSlot()->index() - Context::MIN_CONTEXT_SLOTS == in ScopeInfo()
140 ASSERT(var->AsSlot()->index() - Context::MIN_CONTEXT_SLOTS == in ScopeInfo()
142 ASSERT(var->AsSlot()->index() - Context::MIN_CONTEXT_SLOTS == in ScopeInfo()
337 Context::MIN_CONTEXT_SLOTS); in LocalName()
346 ASSERT(number_of_context_slots() >= Context::MIN_CONTEXT_SLOTS); in NumberOfLocals()
347 number_of_locals += number_of_context_slots() - Context::MIN_CONTEXT_SLOTS; in NumberOfLocals()
415 return number_of_context_slots + Context::MIN_CONTEXT_SLOTS; in NumberOfContextSlots()
468 result = static_cast<int>((p - p0) >> 1) + Context::MIN_CONTEXT_SLOTS; in ContextSlotIndex()
516 return number_of_context_slots + Context::MIN_CONTEXT_SLOTS - 1; in FunctionContextSlotIndex()
[all …]
Dscopeinfo.h75 return context_slots_[i - Context::MIN_CONTEXT_SLOTS]; in context_slot_name()
79 return l == 0 ? 0 : l + Context::MIN_CONTEXT_SLOTS; in number_of_context_slots()
Dcontexts.cc130 ASSERT(index < 0 || index >= MIN_CONTEXT_SLOTS); in Lookup()
227 ASSERT(index < 0 || index >= MIN_CONTEXT_SLOTS); in GlobalIfNotShadowedByEval()
Dcontexts.h186 MIN_CONTEXT_SLOTS, enumerator
189 GLOBAL_PROXY_INDEX = MIN_CONTEXT_SLOTS,
Dscopes.cc1097 num_heap_slots_ = Context::MIN_CONTEXT_SLOTS; in AllocateVariablesRecursively()
1117 if (num_heap_slots_ == Context::MIN_CONTEXT_SLOTS && in AllocateVariablesRecursively()
1123 ASSERT(num_heap_slots_ == 0 || num_heap_slots_ >= Context::MIN_CONTEXT_SLOTS); in AllocateVariablesRecursively()
Dframes.cc971 if (heap_locals_count > Context::MIN_CONTEXT_SLOTS) { in Print()
974 for (int i = Context::MIN_CONTEXT_SLOTS; i < heap_locals_count; i++) { in Print()
Dbootstrapper.cc1323 factory->NewFunctionContext(Context::MIN_CONTEXT_SLOTS, bridge); in InstallNatives()
Dheap.cc3781 ASSERT(length >= Context::MIN_CONTEXT_SLOTS); in AllocateFunctionContext()
3804 { MaybeObject* maybe_result = AllocateFixedArray(Context::MIN_CONTEXT_SLOTS); in AllocateWithContext()
Druntime.cc9647 for (int i = Context::MIN_CONTEXT_SLOTS; in CopyContextLocalsToScopeObject()
10507 if (sinfo->number_of_context_slots() > Context::MIN_CONTEXT_SLOTS) { in GetArgumentsObject()
10607 isolate->factory()->NewFunctionContext(Context::MIN_CONTEXT_SLOTS, in RUNTIME_FUNCTION()
10716 Context::MIN_CONTEXT_SLOTS, go_between); in RUNTIME_FUNCTION()
Dobjects.cc3010 for (int i = Context::MIN_CONTEXT_SLOTS; i < context->length(); i++) { in ReferencesObject()
/external/v8/src/x64/
Dcode-stubs-x64.cc120 int length = slots_ + Context::MIN_CONTEXT_SLOTS; in Generate()
145 for (int i = Context::MIN_CONTEXT_SLOTS; i < length; i++) { in Generate()
Dlithium-codegen-x64.cc176 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; in GeneratePrologue()
Dfull-codegen-x64.cc143 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; in Generate()
/external/v8/src/arm/
Dcode-stubs-arm.cc139 int length = slots_ + Context::MIN_CONTEXT_SLOTS; in Generate()
171 for (int i = Context::MIN_CONTEXT_SLOTS; i < length; i++) { in Generate()
Dfull-codegen-arm.cc156 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; in Generate()
Dlithium-codegen-arm.cc168 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; in GeneratePrologue()
/external/v8/src/ia32/
Dcode-stubs-ia32.cc123 int length = slots_ + Context::MIN_CONTEXT_SLOTS; in Generate()
152 for (int i = Context::MIN_CONTEXT_SLOTS; i < length; i++) { in Generate()
Dfull-codegen-ia32.cc144 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; in Generate()
Dlithium-codegen-ia32.cc161 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; in GeneratePrologue()