Home
last modified time | relevance | path

Searched refs:callee_graph (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dinliner.cc1749 HGraph* callee_graph = new (graph_->GetAllocator()) HGraph( in TryBuildAndInlineHelper() local
1759 callee_graph->SetArtMethod(resolved_method); in TryBuildAndInlineHelper()
1774 HGraphBuilder builder(callee_graph, in TryBuildAndInlineHelper()
1791 if (!RegisterAllocator::CanAllocateRegistersFor(*callee_graph, in TryBuildAndInlineHelper()
1801 for (HInstructionIterator instructions(callee_graph->GetEntryBlock()->GetInstructions()); in TryBuildAndInlineHelper()
1808 current->ReplaceWith(callee_graph->GetNullConstant()); in TryBuildAndInlineHelper()
1810 current->ReplaceWith(callee_graph->GetIntConstant(argument->AsIntConstant()->GetValue())); in TryBuildAndInlineHelper()
1812 current->ReplaceWith(callee_graph->GetLongConstant(argument->AsLongConstant()->GetValue())); in TryBuildAndInlineHelper()
1815 callee_graph->GetFloatConstant(argument->AsFloatConstant()->GetValue())); in TryBuildAndInlineHelper()
1818 callee_graph->GetDoubleConstant(argument->AsDoubleConstant()->GetValue())); in TryBuildAndInlineHelper()
[all …]
Dinliner.h103 void RunOptimizations(HGraph* callee_graph,