Home | History | Annotate | Download | only in optimizing

Lines Matching refs:graph

33   HGraph* graph = builder.BuildGraph(*item);
34 graph->BuildDominatorTree();
35 graph->TransformToSSA();
36 graph->FindNaturalLoops();
37 return graph;
45 * Which becomes the following graph (numbered by lifetime position):
59 HGraph* graph = BuildGraph(data, &allocator);
61 CodeGenerator* codegen = CodeGenerator::Create(&allocator, graph, InstructionSet::kX86);
62 SsaLivenessAnalysis liveness(*graph, codegen);
70 HBasicBlock* block = graph->GetBlocks().Get(1);
85 * Which becomes the following graph (numbered by lifetime position):
106 HGraph* graph = BuildGraph(data, &allocator);
107 CodeGenerator* codegen = CodeGenerator::Create(&allocator, graph, InstructionSet::kX86);
108 SsaLivenessAnalysis liveness(*graph, codegen);
116 HBasicBlock* block = graph->GetBlocks().Get(3);
132 * Which becomes the following graph (numbered by lifetime position):
155 HGraph* graph = BuildGraph(data, &allocator);
156 CodeGenerator* codegen = CodeGenerator::Create(&allocator, graph, InstructionSet::kX86);
157 SsaLivenessAnalysis liveness(*graph, codegen);
202 * Which becomes the following graph (numbered by lifetime position):
231 HGraph* graph = BuildGraph(data, &allocator);
232 CodeGenerator* codegen = CodeGenerator::Create(&allocator, graph, InstructionSet::kX86);
233 SsaLivenessAnalysis liveness(*graph, codegen);