Lines Matching defs:DomB
697 BasicBlock *DomB = cast<BasicBlock>(*I);
702 if (DT->dominates(B, DomB))
704 if (!DT->dominates(DomB, B))
706 DomB = B;
708 return DomB;
788 BasicBlock *DomB = nearest_common_dominator(DT, Bs);
789 if (!DomB)
793 if (IdxI && !DT->dominates(IdxI->getParent(), DomB))
797 while (is_empty(DomB)) {
798 DomTreeNode *N = (*DT)[DomB]->getIDom();
801 DomB = N->getBlock();
804 // Otherwise, DomB is fine. Update the location map.
805 Loc[Node] = DomB;
806 return DomB;