Home | History | Annotate | Download | only in src

Lines Matching refs:dominator

217   HBasicBlock* current = other->dominator();
220 current = current->dominator();
285 } else if (other->dominator() != NULL) {
291 first = first->dominator();
293 second = second->dominator();
471 // Check that entry block dominator is NULL.
472 ASSERT(entry_block_->dominator() == NULL);
477 if (block->dominator() == NULL) {
478 // Only start block may have no dominator assigned to.
481 // Assert that block is unreachable if dominator must not be visited.
484 block->dominator());
1209 // For each loop block walk the dominator tree from the backwards branch to
1217 HBasicBlock* dominator = back_edge;
1219 while (dominator != block && !back_edge_dominated_by_call) {
1220 HInstruction* instr = dominator->first();
1228 dominator = dominator->dominator();
1409 pred = pred->dominator();
1460 // No need to copy the map for the last child in the dominator tree.
5857 if (current->dominator() != NULL) {
5858 PrintBlockProperty("dominator", current->dominator()->block_id());