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
23 scope->CollectStackAndContextLocals(&stack_locals, &context_locals, in Create()
25 const int stack_local_count = stack_locals.length(); in Create()
115 first_slot_index = stack_locals[0]->index(); in Create()
123 DCHECK(stack_locals[i]->index() == first_slot_index + i); in Create()
124 scope_info->set(index++, *stack_locals[i]->name()); in Create()
Dscopes.cc634 void Scope::CollectStackAndContextLocals(ZoneList<Variable*>* stack_locals, in CollectStackAndContextLocals() argument
637 DCHECK(stack_locals != NULL); in CollectStackAndContextLocals()
651 stack_locals->Add(var, zone()); in CollectStackAndContextLocals()
673 stack_locals->Add(var, zone()); in CollectStackAndContextLocals()
Dscopes.h499 void CollectStackAndContextLocals(ZoneList<Variable*>* stack_locals,