Lines Matching refs:DomB
698 BasicBlock *DomB = cast<BasicBlock>(*I); in nearest_common_dominatee() local
703 if (DT->dominates(B, DomB)) in nearest_common_dominatee()
705 if (!DT->dominates(DomB, B)) in nearest_common_dominatee()
707 DomB = B; in nearest_common_dominatee()
709 return DomB; in nearest_common_dominatee()
789 BasicBlock *DomB = nearest_common_dominator(DT, Bs); in recalculatePlacement() local
790 if (!DomB) in recalculatePlacement()
794 if (IdxI && !DT->dominates(IdxI->getParent(), DomB)) in recalculatePlacement()
798 while (is_empty(DomB)) { in recalculatePlacement()
799 DomTreeNode *N = (*DT)[DomB]->getIDom(); in recalculatePlacement()
802 DomB = N->getBlock(); in recalculatePlacement()
806 Loc[Node] = DomB; in recalculatePlacement()
807 return DomB; in recalculatePlacement()