Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dinliner.cc1808 HGraph* callee_graph = new (graph_->GetAllocator()) HGraph( in TryBuildAndInlineHelper() local
1819 callee_graph->SetArtMethod(resolved_method); in TryBuildAndInlineHelper()
1834 HGraphBuilder builder(callee_graph, in TryBuildAndInlineHelper()
1851 *callee_graph, codegen_->GetCompilerOptions().GetInstructionSet())) { in TryBuildAndInlineHelper()
1860 for (HInstructionIterator instructions(callee_graph->GetEntryBlock()->GetInstructions()); in TryBuildAndInlineHelper()
1867 current->ReplaceWith(callee_graph->GetNullConstant()); in TryBuildAndInlineHelper()
1869 current->ReplaceWith(callee_graph->GetIntConstant(argument->AsIntConstant()->GetValue())); in TryBuildAndInlineHelper()
1871 current->ReplaceWith(callee_graph->GetLongConstant(argument->AsLongConstant()->GetValue())); in TryBuildAndInlineHelper()
1874 callee_graph->GetFloatConstant(argument->AsFloatConstant()->GetValue())); in TryBuildAndInlineHelper()
1877 callee_graph->GetDoubleConstant(argument->AsDoubleConstant()->GetValue())); in TryBuildAndInlineHelper()
[all …]
Dinliner.h100 void RunOptimizations(HGraph* callee_graph,