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
24 scope->CollectStackAndContextLocals(&stack_locals, &context_locals, in Create()
28 const int context_local_count = context_locals.length(); in Create()
139 context_locals.Sort(&Variable::CompareIndex); in Create()
144 scope_info->set(index++, *context_locals[i]->name()); in Create()
156 Variable* var = context_locals[i]; in Create()
340 int context_locals = ContextLocalCount(); in ContextLength() local
344 bool has_context = context_locals > 0 || context_globals > 0 || in ContextLength()
353 return Context::MIN_CONTEXT_SLOTS + context_locals + context_globals + in ContextLength()
Dscopes.cc665 ZoneList<Variable*>* stack_locals, ZoneList<Variable*>* context_locals, in CollectStackAndContextLocals() argument
669 DCHECK(context_locals != NULL); in CollectStackAndContextLocals()
679 context_locals->Add(var, zone()); in CollectStackAndContextLocals()
710 context_locals->Add(var, zone()); in CollectStackAndContextLocals()
Dscopes.h505 ZoneList<Variable*>* stack_locals, ZoneList<Variable*>* context_locals,
/external/v8/src/
Dcontexts.cc399 int context_locals = scope_info->ContextLocalCount(); in InitializeGlobalSlots() local
400 int index = Context::MIN_CONTEXT_SLOTS + context_locals; in InitializeGlobalSlots()
/external/v8/src/profiler/
Dheap-snapshot-generator.cc1233 int context_locals = scope_info->ContextLocalCount(); in ExtractContextReferences() local
1234 for (int i = 0; i < context_locals; ++i) { in ExtractContextReferences()