#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);
for (size_t i = 0; i < reachable.size(); i++) {
for (Node* const input : reachable[i]->inputs()) {
if (input == nullptr) {
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);
}
}
}
}
}
}
}
}