Searched defs:dominator (Results 1 - 2 of 2) sorted by relevance

/art/compiler/optimizing/
H A Dgvn.cc397 // are allocated and populated by the dominator, and updated by all blocks
398 // in the path from the dominator to the block.
429 HBasicBlock* dominator = block->GetDominator(); local
430 ValueSet* dominator_set = FindSetFor(dominator);
432 if (dominator->GetSuccessors().size() == 1) {
433 // `block` is a direct successor of its dominator. No need to clone the
434 // dominator's set, `block` can take over its ownership including its buckets.
435 DCHECK_EQ(dominator->GetSingleSuccessor(), block);
436 AbandonSetFor(dominator);
H A Dnodes.h886 void SetDominator(HBasicBlock* dominator) { dominator_ = dominator; } argument
1038 // Disconnects `this` from all its predecessors, successors and dominator,
1954 // to the end of the out-of-loop common dominator of the user's blocks.
6364 // Visit the graph following dominator tree reverse post-order.

Completed in 71 milliseconds