Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dcode_sinking.cc203 HBasicBlock* target_block = finder.Get(); in FindIdealPosition() local
204 if (target_block == nullptr) { in FindIdealPosition()
210 while (target_block->IsInLoop()) { in FindIdealPosition()
211 if (!post_dominated.IsBitSet(target_block->GetDominator()->GetBlockId())) { in FindIdealPosition()
214 target_block = target_block->GetDominator(); in FindIdealPosition()
215 DCHECK(target_block != nullptr); in FindIdealPosition()
219 if (instruction->CanThrow() && target_block->GetTryCatchInformation() != nullptr) { in FindIdealPosition()
227 if (use.GetUser()->GetBlock() == target_block && in FindIdealPosition()
234 if (user->GetBlock() == target_block && in FindIdealPosition()
241 insert_pos = target_block->GetLastInstruction(); in FindIdealPosition()