Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dinliner.cc1076 HGraph* callee_graph = new (graph_->GetArena()) HGraph( in TryBuildAndInlineHelper() local
1086 callee_graph->SetArtMethod(resolved_method); in TryBuildAndInlineHelper()
1094 HGraphBuilder builder(callee_graph, in TryBuildAndInlineHelper()
1111 if (!RegisterAllocator::CanAllocateRegistersFor(*callee_graph, in TryBuildAndInlineHelper()
1119 for (HInstructionIterator instructions(callee_graph->GetEntryBlock()->GetInstructions()); in TryBuildAndInlineHelper()
1126 current->ReplaceWith(callee_graph->GetNullConstant()); in TryBuildAndInlineHelper()
1128 current->ReplaceWith(callee_graph->GetIntConstant(argument->AsIntConstant()->GetValue())); in TryBuildAndInlineHelper()
1130 current->ReplaceWith(callee_graph->GetLongConstant(argument->AsLongConstant()->GetValue())); in TryBuildAndInlineHelper()
1133 callee_graph->GetFloatConstant(argument->AsFloatConstant()->GetValue())); in TryBuildAndInlineHelper()
1136 callee_graph->GetDoubleConstant(argument->AsDoubleConstant()->GetValue())); in TryBuildAndInlineHelper()
[all …]
Dinliner.h81 size_t RunOptimizations(HGraph* callee_graph,