Home | History | Annotate | Download | only in optimizing

Lines Matching refs:graph

33   explicit SsaPrettyPrinter(HGraph* graph) : HPrettyPrinter(graph), str_("") {}
65 static void ReNumberInstructions(HGraph* graph) {
67 for (size_t i = 0, e = graph->GetBlocks().Size(); i < e; ++i) {
68 HBasicBlock* block = graph->GetBlocks().Get(i);
83 HGraph* graph = builder.BuildGraph(*item);
84 ASSERT_NE(graph, nullptr);
86 graph->BuildDominatorTree();
87 graph->TransformToSSA();
88 ReNumberInstructions(graph);
91 for (size_t i = 0, e = graph->GetBlocks().Size(); i < e; ++i) {
92 for (HInstructionIterator it(graph->GetBlocks().Get(i)->GetPhis()); !it.Done(); it.Advance()) {
97 SsaPrettyPrinter printer(graph);