Lines Matching refs:graph_

35   if (graph_->GetExitBlock() == nullptr) {  in Run()
46 HBasicBlock* exit = graph_->GetExitBlock(); in UncommonBranchSinking()
332 ScopedArenaAllocator allocator(graph_->GetArenaStack()); in SinkCodeToUncommonBranch()
334 size_t number_of_instructions = graph_->GetCurrentInstructionId(); in SinkCodeToUncommonBranch()
338 ArenaBitVector post_dominated(&allocator, graph_->GetBlocks().size(), /* expandable= */ false); in SinkCodeToUncommonBranch()
346 for (HBasicBlock* block : graph_->GetPostOrder()) { in SinkCodeToUncommonBranch()
352 DCHECK_NE(block, graph_->GetExitBlock()) in SinkCodeToUncommonBranch()
402 for (size_t i = 0, e = graph_->GetBlocks().size(); i < e; ++i) { in SinkCodeToUncommonBranch()
404 finder.Update(graph_->GetBlocks()[i]); in SinkCodeToUncommonBranch()
405 AddInputs(graph_->GetBlocks()[i], processed_instructions, post_dominated, &worklist); in SinkCodeToUncommonBranch()
414 graph_->GetBlocks().size(), in SinkCodeToUncommonBranch()
454 if (graph_->IsDebuggable() || in SinkCodeToUncommonBranch()
457 (user->IsSuspendCheck() && graph_->IsCompilingOsr())) { in SinkCodeToUncommonBranch()
503 for (HBasicBlock* block : graph_->GetPostOrder()) { in SinkCodeToUncommonBranch()
525 graph_->Dump(ss, nullptr); in SinkCodeToUncommonBranch()
581 HBasicBlock* exit = graph_->GetExitBlock(); in ReturnSinking()
603 HBasicBlock* new_block = new (graph_->GetAllocator()) HBasicBlock(graph_, exit->GetDexPc()); in ReturnSinking()
617 new_phi = new (graph_->GetAllocator()) HPhi(graph_->GetAllocator(), in ReturnSinking()
625 new (graph_->GetAllocator()) HGoto(ret->GetDexPc())); in ReturnSinking()
629 new_block->AddInstruction(new (graph_->GetAllocator()) HReturn(new_phi, exit->GetDexPc())); in ReturnSinking()
640 new (graph_->GetAllocator()) HGoto(ret->GetDexPc())); in ReturnSinking()
644 new_block->AddInstruction(new (graph_->GetAllocator()) HReturnVoid(exit->GetDexPc())); in ReturnSinking()
648 graph_->AddBlock(new_block); in ReturnSinking()
651 graph_->ClearDominanceInformation(); in ReturnSinking()
652 graph_->ComputeDominanceInformation(); in ReturnSinking()