• Home
  • Raw
  • Download

Lines Matching refs:callee_graph

1076   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()
1146 RunOptimizations(callee_graph, code_item, dex_compilation_unit); in TryBuildAndInlineHelper()
1152 HBasicBlock* exit_block = callee_graph->GetExitBlock(); in TryBuildAndInlineHelper()
1172 HReversePostOrderIterator it(*callee_graph); in TryBuildAndInlineHelper()
1264 const int32_t callee_instruction_counter = callee_graph->GetCurrentInstructionId(); in TryBuildAndInlineHelper()
1266 *return_replacement = callee_graph->InlineInto(graph_, invoke_instruction); in TryBuildAndInlineHelper()
1268 DCHECK_EQ(callee_instruction_counter, callee_graph->GetCurrentInstructionId()) in TryBuildAndInlineHelper()
1274 size_t HInliner::RunOptimizations(HGraph* callee_graph, in RunOptimizations() argument
1279 HDeadCodeElimination dce(callee_graph, stats_); in RunOptimizations()
1280 HConstantFolding fold(callee_graph); in RunOptimizations()
1281 HSharpening sharpening(callee_graph, codegen_, dex_compilation_unit, compiler_driver_); in RunOptimizations()
1282 InstructionSimplifier simplify(callee_graph, stats_); in RunOptimizations()
1283 IntrinsicsRecognizer intrinsics(callee_graph, compiler_driver_, stats_); in RunOptimizations()
1300 HInliner inliner(callee_graph, in RunOptimizations()