Lines Matching refs:dominator
217 HBasicBlock* current = other->dominator();
220 current = current->dominator();
296 } else if (other->dominator() != NULL) {
302 first = first->dominator();
304 second = second->dominator();
349 // dominator information about the current loop that's being processed,
540 // Check that entry block dominator is NULL.
541 ASSERT(entry_block_->dominator() == NULL);
546 if (block->dominator() == NULL) {
547 // Only start block may have no dominator assigned to.
550 // Assert that block is unreachable if dominator must not be visited.
553 block->dominator());
1336 // For each loop block walk the dominator tree from the backwards branch to
1344 HBasicBlock* dominator = back_edge;
1346 HInstruction* instr = dominator->first();
1356 if (dominator == block) break;
1358 // Move up the dominator tree.
1359 dominator = dominator->dominator();
1428 HBasicBlock* dominator,
1455 // Used when collecting side effects on paths from dominator to
1644 HBasicBlock* dominator, HBasicBlock* dominated) {
1648 if (dominator->block_id() < block->block_id() &&
1656 dominator, block));
1706 // No need to copy the map for the last child in the dominator tree.
7931 if (current->dominator() != NULL) {
7932 PrintBlockProperty("dominator", current->dominator()->block_id());