Lines Matching refs:graph
7 #include "src/compiler/graph.h"
13 AllNodes::AllNodes(Zone* local_zone, const Graph* graph, bool only_inputs)
15 is_reachable_(graph->NodeCount(), false, local_zone),
17 Mark(local_zone, graph->end(), graph);
20 AllNodes::AllNodes(Zone* local_zone, Node* end, const Graph* graph,
23 is_reachable_(graph->NodeCount(), false, local_zone),
25 Mark(local_zone, end, graph);
28 void AllNodes::Mark(Zone* local_zone, Node* end, const Graph* graph) {
29 DCHECK_LT(end->id(), graph->NodeCount());
46 if (use == nullptr || use->id() >= graph->NodeCount()) {