Home | History | Annotate | Download | only in src

Lines Matching refs:graph

52 // over a graph of basic blocks, either one block at a time (local analysis)
53 // or over the entire graph (global analysis). The flow engine is parameterized
55 // graph.
60 // are necessary to correctly handle loops in the control flow graph without
70 HFlowEngine(HGraph* graph, Zone* zone)
71 : graph_(graph),
74 pred_counts_(graph->blocks()->length(), zone),
76 block_states_(graph->blocks()->length(), zone),
77 loop_effects_(graph->blocks()->length(), zone) {
175 if (root->block_id() == 0) return false; // Visit the whole graph.
207 HGraph* graph_; // The hydrogen graph.