Home | History | Annotate | Download | only in objects

Lines Matching refs:stack

459   ZoneForwardList<Handle<Module>> stack(&zone);
461 if (!FinishInstantiate(isolate, module, &stack, &dfs_index, &zone)) {
462 for (auto& descendant : stack) {
470 DCHECK(stack.empty());
556 ZoneForwardList<Handle<Module>>* stack,
560 // {module} is on the {stack}.
561 std::count_if(stack->begin(), stack->end(),
568 ancestor = stack->front();
569 stack->pop_front();
582 ZoneForwardList<Handle<Module>>* stack,
600 stack->push_front(module);
608 if (!FinishInstantiate(isolate, requested_module, stack, dfs_index, zone)) {
615 // {requested_module} is instantiating iff it's on the {stack}.
617 std::count_if(stack->begin(), stack->end(), [&](Handle<Module> m) {
664 return MaybeTransitionComponent(isolate, module, stack, kInstantiated);
686 ZoneForwardList<Handle<Module>> stack(&zone);
689 if (!Evaluate(isolate, module, &stack, &dfs_index).ToHandle(&result)) {
690 for (auto& descendant : stack) {
698 DCHECK(stack.empty());
703 ZoneForwardList<Handle<Module>>* stack,
722 stack->push_front(module);
731 isolate, Evaluate(isolate, requested_module, stack, dfs_index), Object);
736 // {requested_module} is evaluating iff it's on the {stack}.
738 std::count_if(stack->begin(), stack->end(), [&](Handle<Module> m) {
760 CHECK(MaybeTransitionComponent(isolate, module, stack, kEvaluated));