Lines Matching refs:entry_block_
73 visited->SetBit(entry_block_->GetBlockId()); in FindBackEdges()
74 visiting.SetBit(entry_block_->GetBlockId()); in FindBackEdges()
75 worklist.push_back(entry_block_); in FindBackEdges()
270 reverse_post_order_.push_back(entry_block_); in ComputeDominanceInformation()
284 worklist.push_back(entry_block_); in ComputeDominanceInformation()
642 HInstruction* gota = entry_block_->GetLastInstruction(); in InsertConstant()
653 entry_block_->AddInstruction(constant); in InsertConstant()
655 entry_block_->InsertInstructionBefore(constant, insert_before); in InsertConstant()
682 entry_block_->GetDexPc()); in GetCurrentMethod()
683 if (entry_block_->GetFirstInstruction() == nullptr) { in GetCurrentMethod()
684 entry_block_->AddInstruction(cached_current_method_); in GetCurrentMethod()
686 entry_block_->InsertInstructionBefore( in GetCurrentMethod()
687 cached_current_method_, entry_block_->GetFirstInstruction()); in GetCurrentMethod()
2495 HBasicBlock* first = entry_block_->GetSuccessors()[0]; in InlineInto()
2526 if (current != exit_block_ && current != entry_block_ && current != first) { in InlineInto()
2611 for (HInstructionIterator it(entry_block_->GetInstructions()); !it.Done(); it.Advance()) { in InlineInto()
2642 entry_block_->RemoveInstruction(current); in InlineInto()
2648 DCHECK_EQ(entry_block_, return_value->GetBlock()); in InlineInto()