Lines Matching refs:entry_block_
81 visited->SetBit(entry_block_->GetBlockId()); in FindBackEdges()
82 visiting.SetBit(entry_block_->GetBlockId()); in FindBackEdges()
83 worklist.push_back(entry_block_); in FindBackEdges()
443 reverse_post_order_.push_back(entry_block_); in ComputeDominanceInformation()
457 worklist.push_back(entry_block_); in ComputeDominanceInformation()
815 HInstruction* gota = entry_block_->GetLastInstruction(); in InsertConstant()
826 entry_block_->AddInstruction(constant); in InsertConstant()
828 entry_block_->InsertInstructionBefore(constant, insert_before); in InsertConstant()
855 entry_block_->GetDexPc()); in GetCurrentMethod()
856 if (entry_block_->GetFirstInstruction() == nullptr) { in GetCurrentMethod()
857 entry_block_->AddInstruction(cached_current_method_); in GetCurrentMethod()
859 entry_block_->InsertInstructionBefore( in GetCurrentMethod()
860 cached_current_method_, entry_block_->GetFirstInstruction()); in GetCurrentMethod()
2770 HBasicBlock* first = entry_block_->GetSuccessors()[0]; in InlineInto()
2801 if (current != exit_block_ && current != entry_block_ && current != first) { in InlineInto()
2886 for (HInstructionIterator it(entry_block_->GetInstructions()); !it.Done(); it.Advance()) { in InlineInto()
2917 entry_block_->RemoveInstruction(current); in InlineInto()
2923 DCHECK_EQ(entry_block_, return_value->GetBlock()); in InlineInto()