/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/src/compiler/all-nodes.cc
60 строк
2 KB
Michaël Zasso
deps: update V8 to 13.6.233.8
02 май 2025, 16:06
Не верифицирован
02 май 2025, 16:06
918fe04
Код
Авторство
О чём код?
// Copyright 2014 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "src/compiler/all-nodes.h" #include "src/compiler/turbofan-graph.h" namespace v8 { namespace internal { namespace compiler { AllNodes::AllNodes(Zone* local_zone, const TFGraph* graph, bool only_inputs) : reachable(local_zone), is_reachable_(static_cast<int>(graph->NodeCount()), local_zone), only_inputs_(only_inputs) { Mark(local_zone, graph->end(), graph); } AllNodes::AllNodes(Zone* local_zone, Node* end, const TFGraph* graph, bool only_inputs) : reachable(local_zone), is_reachable_(static_cast<int>(graph->NodeCount()), local_zone), only_inputs_(only_inputs) { Mark(local_zone, end, graph); } void AllNodes::Mark(Zone* local_zone, Node* end, const TFGraph* graph) { DCHECK_LT(end->id(), graph->NodeCount()); is_reachable_.Add(end->id()); reachable.push_back(end); // Find all nodes reachable from {end}. for (size_t i = 0; i < reachable.size(); i++) { for (Node* const input : reachable[i]->inputs()) { if (input == nullptr) { // TODO(titzer): print a warning. continue; } if (!is_reachable_.Contains(input->id())) { is_reachable_.Add(input->id()); reachable.push_back(input); } } if (!only_inputs_) { for (Node* use : reachable[i]->uses()) { if (use == nullptr || use->id() >= graph->NodeCount()) { continue; } if (!is_reachable_.Contains(use->id())) { is_reachable_.Add(use->id()); reachable.push_back(use); } } } } } } // namespace compiler } // namespace internal } // namespace v8