Searched defs:target_block (Results 1 - 2 of 2) sorted by path

/art/compiler/optimizing/
H A Dcode_sinking.cc202 HBasicBlock* target_block = finder.Get(); local
203 if (target_block == nullptr) {
209 while (target_block->IsInLoop()) {
210 if (!post_dominated.IsBitSet(target_block->GetDominator()->GetBlockId())) {
213 target_block = target_block->GetDominator();
214 DCHECK(target_block != nullptr);
218 if (instruction->CanThrow() && target_block->GetTryCatchInformation() != nullptr) {
226 if (use.GetUser()->GetBlock() == target_block &&
233 if (user->GetBlock() == target_block
[all...]
H A Dnodes.cc1753 HBasicBlock* target_block = uses_it->GetUser()->GetBlock(); local
1755 while (uses_it != uses_end && uses_it->GetUser()->GetBlock() == target_block) {
1760 CommonDominator finder(target_block);
1764 target_block = finder.Get();
1765 DCHECK(target_block != nullptr);
1768 while (target_block->IsInLoop()) {
1769 target_block = target_block->GetDominator();
1770 DCHECK(target_block != nullptr);
1776 if (use.GetUser()->GetBlock() == target_block
[all...]

Completed in 50 milliseconds