Home
last modified time | relevance | path

Searched refs:outer_graph (Results 1 – 3 of 3) sorted by relevance

/art/compiler/optimizing/
Dinliner.h33 HInliner(HGraph* outer_graph,
39 : HOptimization(outer_graph, true, kInlinerPassName, stats), in HOptimization() argument
Dnodes.cc1224 void HGraph::InlineInto(HGraph* outer_graph, HInvoke* invoke) { in InlineInto() argument
1250 ArenaAllocator* allocator = outer_graph->GetArena(); in InlineInto()
1310 while (outer_graph->reverse_post_order_.Get(index_of_at) != at) { in InlineInto()
1313 MakeRoomFor(&outer_graph->reverse_post_order_, blocks_added, index_of_at); in InlineInto()
1323 current->SetGraph(outer_graph); in InlineInto()
1324 outer_graph->AddBlock(current); in InlineInto()
1325 outer_graph->reverse_post_order_.Put(++index_of_at, current); in InlineInto()
1336 to->SetGraph(outer_graph); in InlineInto()
1337 outer_graph->AddBlock(to); in InlineInto()
1338 outer_graph->reverse_post_order_.Put(++index_of_at, to); in InlineInto()
[all …]
Dnodes.h186 void InlineInto(HGraph* outer_graph, HInvoke* invoke);