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