Lines Matching full:blk1
2229 BlockT *blk1 = *srcBlk->succ_begin();
2232 if (blk1 == blk2) {
2240 SHOWNEWBLK(blk1, "Removing redundant successor");
2241 srcBlk->removeSuccessor(blk1);
2573 CFGStructurizer<PassT>::findNearestCommonPostDom(BlockT *blk1, BlockT *blk2) {
2575 if (postDomTree->dominates(blk1, blk2)) {
2576 return blk1;
2578 if (postDomTree->dominates(blk2, blk1)) {
2582 DomTreeNodeT *node1 = postDomTree->getNode(blk1);
2586 if (node1 == NULL && blk1->succ_size() == 1) {
2587 return findNearestCommonPostDom(*blk1->succ_begin(), blk2);
2590 return findNearestCommonPostDom(blk1, *blk2->succ_begin());