Home
last modified time | relevance | path

Searched refs:context_locals (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/ast/
Dscopeinfo.cc20 ZoneList<Variable*> context_locals(scope->ContextLocalCount(), zone); in Create() local
23 scope->CollectStackAndContextLocals(&stack_locals, &context_locals, in Create()
26 const int context_local_count = context_locals.length(); in Create()
133 context_locals.Sort(&Variable::CompareIndex); in Create()
138 scope_info->set(index++, *context_locals[i]->name()); in Create()
150 Variable* var = context_locals[i]; in Create()
309 int context_locals = ContextLocalCount(); in ContextLength() local
313 bool has_context = context_locals > 0 || context_globals > 0 || in ContextLength()
322 return Context::MIN_CONTEXT_SLOTS + context_locals + context_globals + in ContextLength()
Dscopes.cc635 ZoneList<Variable*>* context_locals, in CollectStackAndContextLocals() argument
638 DCHECK(context_locals != NULL); in CollectStackAndContextLocals()
649 context_locals->Add(var, zone()); in CollectStackAndContextLocals()
675 context_locals->Add(var, zone()); in CollectStackAndContextLocals()
Dscopes.h500 ZoneList<Variable*>* context_locals,
/external/v8/src/
Dcontexts.cc435 int context_locals = scope_info->ContextLocalCount(); in InitializeGlobalSlots() local
436 int index = Context::MIN_CONTEXT_SLOTS + context_locals; in InitializeGlobalSlots()
/external/v8/src/profiler/
Dheap-snapshot-generator.cc1209 int context_locals = scope_info->ContextLocalCount(); in ExtractContextReferences() local
1210 for (int i = 0; i < context_locals; ++i) { in ExtractContextReferences()