Lines Matching defs:continuation
52 // are split out into a separate continuation (exit) block. A condition block is
53 // created before the continuation block. It checks the exit condition of the
54 // loop and branches either to the continuation block, or to the first block of
57 // blocks and the continuation block, loop-carried values are visible in all of
116 // operations following the scf.if are split into a continuation (subgraph
122 // post-dominating block is the same as the continuation block. When it returns
125 // branches to the continuation block. This allows block arguments to dominate
130 // condition branches directly to the continuation block.
223 /// WhileOp are split into a new continuation block. Both regions of the WhileOp
277 /// the continuation block due to dominance.
398 // continuation point.
413 // place it before the continuation block, and branch to it.
424 // 'scf.if', place it before the continuation block and branch to it. It
564 Block *continuation =
570 rewriter.inlineRegionBefore(whileOp.getAfter(), continuation);
584 continuation, ValueRange());
616 Block *continuation =
621 rewriter.inlineRegionBefore(whileOp.getBefore(), continuation);
632 continuation, ValueRange());