Home | History | Annotate | Download | only in src

Lines Matching refs:graph

75 // over a graph of basic blocks, either one block at a time (local analysis)
76 // or over the entire graph (global analysis). The flow engine is parameterized
78 // graph.
83 // are necessary to correctly handle loops in the control flow graph without
93 HFlowEngine(HGraph* graph, Zone* zone)
94 : graph_(graph),
97 pred_counts_(graph->blocks()->length(), zone),
99 block_states_(graph->blocks()->length(), zone),
100 loop_effects_(graph->blocks()->length(), zone) {
198 if (root->block_id() == 0) return false; // Visit the whole graph.
230 HGraph* graph_; // The hydrogen graph.