Lines Matching refs:graph
9 #include "src/compiler/graph.h"
55 // This loop finding algorithm works by traversing the graph in two directions,
65 LoopFinderImpl(Graph* graph, LoopTree* loop_tree, TickCounter* tick_counter,
68 end_(graph->end()),
70 queued_(graph, 2),
71 info_(graph->NodeCount(), {nullptr, nullptr, false}, zone),
73 loop_num_(graph->NodeCount(), -1, zone),
539 LoopTree* LoopFinder::BuildLoopTree(Graph* graph, TickCounter* tick_counter,
542 graph->zone()->New<LoopTree>(graph->NodeCount(), graph->zone());
543 LoopFinderImpl finder(graph, loop_tree, tick_counter, zone);
571 // We reached the end of the graph. The end node is not part of the loop.
662 "Floating control detected in wasm turbofan graph: Node #%d:%s is "