Lines Matching refs:DomB
690 BasicBlock *DomB = cast<BasicBlock>(*I); in nearest_common_dominatee() local
695 if (DT->dominates(B, DomB)) in nearest_common_dominatee()
697 if (!DT->dominates(DomB, B)) in nearest_common_dominatee()
699 DomB = B; in nearest_common_dominatee()
701 return DomB; in nearest_common_dominatee()
783 BasicBlock *DomB = nearest_common_dominator(DT, Bs); in recalculatePlacement() local
784 if (!DomB) in recalculatePlacement()
788 if (IdxI && !DT->dominates(IdxI->getParent(), DomB)) in recalculatePlacement()
792 while (is_empty(DomB)) { in recalculatePlacement()
793 DomTreeNode *N = (*DT)[DomB]->getIDom(); in recalculatePlacement()
796 DomB = N->getBlock(); in recalculatePlacement()
800 Loc[Node] = DomB; in recalculatePlacement()
801 return DomB; in recalculatePlacement()