Home
last modified time | relevance | path

Searched refs:stack_locals (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/ast/
Dscopeinfo.cc19 ZoneList<Variable*> stack_locals(scope->StackLocalCount(), zone); in Create() local
24 scope->CollectStackAndContextLocals(&stack_locals, &context_locals, in Create()
27 const int stack_local_count = stack_locals.length(); in Create()
121 first_slot_index = stack_locals[0]->index(); in Create()
129 DCHECK(stack_locals[i]->index() == first_slot_index + i); in Create()
130 scope_info->set(index++, *stack_locals[i]->name()); in Create()
Dscopes.cc665 ZoneList<Variable*>* stack_locals, ZoneList<Variable*>* context_locals, in CollectStackAndContextLocals() argument
668 DCHECK(stack_locals != NULL); in CollectStackAndContextLocals()
681 stack_locals->Add(var, zone()); in CollectStackAndContextLocals()
708 stack_locals->Add(var, zone()); in CollectStackAndContextLocals()
Dscopes.h505 ZoneList<Variable*>* stack_locals, ZoneList<Variable*>* context_locals,