Searched refs:dominator (Results 1 - 3 of 3) sorted by relevance

/art/tools/ahat/src/
H A DAhatSnapshot.java53 // Collection of objects whose immediate dominator is the SENTINEL_ROOT.
90 Instance dominator = inst.getImmediateDominator();
91 if (dominator != null) {
94 if (dominator == Snapshot.SENTINEL_ROOT) {
104 List<Instance> instances = mDominated.get(dominator);
107 mDominated.put(dominator, instances);
163 * Returns a collection of instances whose immediate dominator is the
/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 62 milliseconds