Lines Matching refs:thenBlock
1293 return static_cast<bool>(ifOp.thenBlock()->findAncestorOpInBlock(*a)) != in insideMutuallyExclusiveBranches()
1294 static_cast<bool>(ifOp.thenBlock()->findAncestorOpInBlock(*b)); in insideMutuallyExclusiveBranches()
1464 Block *thenBlock = &getThenRegion().front(); in fold() local
1470 getThenRegion().getBlocks(), thenBlock); in fold()
1592 if (replacement.thenBlock()) in matchAndRewrite()
1593 rewriter.eraseBlock(replacement.thenBlock()); in matchAndRewrite()
1620 rewriter.setInsertionPointToEnd(replacement.thenBlock()); in matchAndRewrite()
1832 nextThen = nextIf.thenBlock(); in matchAndRewrite()
1840 nextElse = nextIf.thenBlock(); in matchAndRewrite()
1849 nextElse = nextIf.thenBlock(); in matchAndRewrite()
1894 rewriter.mergeBlocks(nextThen, combinedIf.thenBlock()); in matchAndRewrite()
1895 rewriter.setInsertionPointToEnd(combinedIf.thenBlock()); in matchAndRewrite()
1984 auto nestedOps = op.thenBlock()->without_terminator(); in matchAndRewrite()
2057 Block *newIfBlock = newIf.thenBlock(); in matchAndRewrite()
2062 rewriter.mergeBlocks(nestedIf.thenBlock(), newIfBlock); in matchAndRewrite()
2063 rewriter.setInsertionPointToEnd(newIf.thenBlock()); in matchAndRewrite()
2085 Block *IfOp::thenBlock() { return &getThenRegion().back(); } in thenBlock() function in IfOp
2086 YieldOp IfOp::thenYield() { return cast<YieldOp>(&thenBlock()->back()); } in thenYield()