MLIR 24.0.0git
SCFToControlFlow.cpp
Go to the documentation of this file.
1//===- SCFToControlFlow.cpp - SCF to CF conversion ------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file implements a pass to convert scf.for, scf.if and loop.terminator
10// ops into standard CFG ops.
11//
12//===----------------------------------------------------------------------===//
13
15
21#include "mlir/IR/Builders.h"
22#include "mlir/IR/MLIRContext.h"
26
27namespace mlir {
28#define GEN_PASS_DEF_SCFTOCONTROLFLOWPASS
29#include "mlir/Conversion/Passes.h.inc"
30} // namespace mlir
31
32using namespace mlir;
33using namespace mlir::scf;
34
35namespace {
36
37struct SCFToControlFlowPass
38 : public impl::SCFToControlFlowPassBase<SCFToControlFlowPass> {
39 using Base::Base;
40 void runOnOperation() override;
41};
42
43// Create a CFG subgraph for the loop around its body blocks (if the body
44// contained other loops, they have been already lowered to a flow of blocks).
45// Maintain the invariants that a CFG subgraph created for any loop has a single
46// entry and a single exit, and that the entry/exit blocks are respectively
47// first/last blocks in the parent region. The original loop operation is
48// replaced by the initialization operations that set up the initial value of
49// the loop induction variable (%iv) and computes the loop bounds that are loop-
50// invariant for affine loops. The operations following the original scf.for
51// are split out into a separate continuation (exit) block. A condition block is
52// created before the continuation block. It checks the exit condition of the
53// loop and branches either to the continuation block, or to the first block of
54// the body. The condition block takes as arguments the values of the induction
55// variable followed by loop-carried values. Since it dominates both the body
56// blocks and the continuation block, loop-carried values are visible in all of
57// those blocks. Induction variable modification is appended to the last block
58// of the body (which is the exit block from the body subgraph thanks to the
59// invariant we maintain) along with a branch that loops back to the condition
60// block. Loop-carried values are the loop terminator operands, which are
61// forwarded to the branch.
62//
63// +---------------------------------+
64// | <code before the ForOp> |
65// | <definitions of %init...> |
66// | <compute initial %iv value> |
67// | cf.br cond(%iv, %init...) |
68// +---------------------------------+
69// |
70// -------| |
71// | v v
72// | +--------------------------------+
73// | | cond(%iv, %init...): |
74// | | <compare %iv to upper bound> |
75// | | cf.cond_br %r, body, end |
76// | +--------------------------------+
77// | | |
78// | | -------------|
79// | v |
80// | +--------------------------------+ |
81// | | body-first: | |
82// | | <%init visible by dominance> | |
83// | | <body contents> | |
84// | +--------------------------------+ |
85// | | |
86// | ... |
87// | | |
88// | +--------------------------------+ |
89// | | body-last: | |
90// | | <body contents> | |
91// | | <operands of yield = %yields>| |
92// | | %new_iv =<add step to %iv> | |
93// | | cf.br cond(%new_iv, %yields) | |
94// | +--------------------------------+ |
95// | | |
96// |----------- |--------------------
97// v
98// +--------------------------------+
99// | end: |
100// | <code after the ForOp> |
101// | <%init visible by dominance> |
102// +--------------------------------+
103//
104struct ForLowering : public OpRewritePattern<ForOp> {
105 using OpRewritePattern<ForOp>::OpRewritePattern;
106
107 LogicalResult matchAndRewrite(ForOp forOp,
108 PatternRewriter &rewriter) const override;
109};
110
111// Create a CFG subgraph for the scf.if operation (including its "then" and
112// optional "else" operation blocks). We maintain the invariants that the
113// subgraph has a single entry and a single exit point, and that the entry/exit
114// blocks are respectively the first/last block of the enclosing region. The
115// operations following the scf.if are split into a continuation (subgraph
116// exit) block. The condition is lowered to a chain of blocks that implement the
117// short-circuit scheme. The "scf.if" operation is replaced with a conditional
118// branch to either the first block of the "then" region, or to the first block
119// of the "else" region. In these blocks, "scf.yield" is unconditional branches
120// to the post-dominating block. When the "scf.if" does not return values, the
121// post-dominating block is the same as the continuation block. When it returns
122// values, the post-dominating block is a new block with arguments that
123// correspond to the values returned by the "scf.if" that unconditionally
124// branches to the continuation block. This allows block arguments to dominate
125// any uses of the hitherto "scf.if" results that they replaced. (Inserting a
126// new block allows us to avoid modifying the argument list of an existing
127// block, which is illegal in a conversion pattern). When the "else" region is
128// empty, which is only allowed for "scf.if"s that don't return values, the
129// condition branches directly to the continuation block.
130//
131// CFG for a scf.if with else and without results.
132//
133// +--------------------------------+
134// | <code before the IfOp> |
135// | cf.cond_br %cond, %then, %else |
136// +--------------------------------+
137// | |
138// | --------------|
139// v |
140// +--------------------------------+ |
141// | then: | |
142// | <then contents> | |
143// | cf.br continue | |
144// +--------------------------------+ |
145// | |
146// |---------- |-------------
147// | V
148// | +--------------------------------+
149// | | else: |
150// | | <else contents> |
151// | | cf.br continue |
152// | +--------------------------------+
153// | |
154// ------| |
155// v v
156// +--------------------------------+
157// | continue: |
158// | <code after the IfOp> |
159// +--------------------------------+
160//
161// CFG for a scf.if with results.
162//
163// +--------------------------------+
164// | <code before the IfOp> |
165// | cf.cond_br %cond, %then, %else |
166// +--------------------------------+
167// | |
168// | --------------|
169// v |
170// +--------------------------------+ |
171// | then: | |
172// | <then contents> | |
173// | cf.br dom(%args...) | |
174// +--------------------------------+ |
175// | |
176// |---------- |-------------
177// | V
178// | +--------------------------------+
179// | | else: |
180// | | <else contents> |
181// | | cf.br dom(%args...) |
182// | +--------------------------------+
183// | |
184// ------| |
185// v v
186// +--------------------------------+
187// | dom(%args...): |
188// | cf.br continue |
189// +--------------------------------+
190// |
191// v
192// +--------------------------------+
193// | continue: |
194// | <code after the IfOp> |
195// +--------------------------------+
196//
197struct IfLowering : public OpRewritePattern<IfOp> {
198 using OpRewritePattern<IfOp>::OpRewritePattern;
199
200 LogicalResult matchAndRewrite(IfOp ifOp,
201 PatternRewriter &rewriter) const override;
202};
203
204struct ExecuteRegionLowering : public OpRewritePattern<ExecuteRegionOp> {
205 using OpRewritePattern<ExecuteRegionOp>::OpRewritePattern;
206
207 LogicalResult matchAndRewrite(ExecuteRegionOp op,
208 PatternRewriter &rewriter) const override;
209};
210
211struct ParallelLowering : public OpRewritePattern<mlir::scf::ParallelOp> {
212 using OpRewritePattern<mlir::scf::ParallelOp>::OpRewritePattern;
213
214 LogicalResult matchAndRewrite(mlir::scf::ParallelOp parallelOp,
215 PatternRewriter &rewriter) const override;
216};
217
218/// Create a CFG subgraph for this loop construct. The regions of the loop need
219/// not be a single block anymore (for example, if other SCF constructs that
220/// they contain have been already converted to CFG), but need to be single-exit
221/// from the last block of each region. The operations following the original
222/// WhileOp are split into a new continuation block. Both regions of the WhileOp
223/// are inlined, and their terminators are rewritten to organize the control
224/// flow implementing the loop as follows.
225///
226/// +---------------------------------+
227/// | <code before the WhileOp> |
228/// | cf.br ^before(%operands...) |
229/// +---------------------------------+
230/// |
231/// -------| |
232/// | v v
233/// | +--------------------------------+
234/// | | ^before(%bargs...): |
235/// | | %vals... = <some payload> |
236/// | +--------------------------------+
237/// | |
238/// | ...
239/// | |
240/// | +--------------------------------+
241/// | | ^before-last:
242/// | | %cond = <compute condition> |
243/// | | cf.cond_br %cond, |
244/// | | ^after(%vals...), ^cont |
245/// | +--------------------------------+
246/// | | |
247/// | | -------------|
248/// | v |
249/// | +--------------------------------+ |
250/// | | ^after(%aargs...): | |
251/// | | <body contents> | |
252/// | +--------------------------------+ |
253/// | | |
254/// | ... |
255/// | | |
256/// | +--------------------------------+ |
257/// | | ^after-last: | |
258/// | | %yields... = <some payload> | |
259/// | | cf.br ^before(%yields...) | |
260/// | +--------------------------------+ |
261/// | | |
262/// |----------- |--------------------
263/// v
264/// +--------------------------------+
265/// | ^cont: |
266/// | <code after the WhileOp> |
267/// | <%vals from 'before' region |
268/// | visible by dominance> |
269/// +--------------------------------+
270///
271/// Values are communicated between ex-regions (the groups of blocks that used
272/// to form a region before inlining) through block arguments of their
273/// entry blocks, which are visible in all other dominated blocks. Similarly,
274/// the results of the WhileOp are defined in the 'before' region, which is
275/// required to have a single existing block, and are therefore accessible in
276/// the continuation block due to dominance.
277struct WhileLowering : public OpRewritePattern<WhileOp> {
278 using OpRewritePattern<WhileOp>::OpRewritePattern;
279
280 LogicalResult matchAndRewrite(WhileOp whileOp,
281 PatternRewriter &rewriter) const override;
282};
283
284/// Optimized version of the above for the case of the "after" region merely
285/// forwarding its arguments back to the "before" region (i.e., a "do-while"
286/// loop). This avoid inlining the "after" region completely and branches back
287/// to the "before" entry instead.
288struct DoWhileLowering : public OpRewritePattern<WhileOp> {
289 using OpRewritePattern<WhileOp>::OpRewritePattern;
290
291 LogicalResult matchAndRewrite(WhileOp whileOp,
292 PatternRewriter &rewriter) const override;
293};
294
295/// Lower an `scf.index_switch` operation to a `cf.switch` operation.
296struct IndexSwitchLowering : public OpRewritePattern<IndexSwitchOp> {
298
299 LogicalResult matchAndRewrite(IndexSwitchOp op,
300 PatternRewriter &rewriter) const override;
301};
302
303/// Lower an `scf.forall` operation to an `scf.parallel` op, assuming that it
304/// has no shared outputs. Ops with shared outputs should be bufferized first.
305/// Specialized lowerings for `scf.forall` (e.g., for GPUs) exist in other
306/// dialects/passes.
307struct ForallLowering : public OpRewritePattern<mlir::scf::ForallOp> {
308 using OpRewritePattern<mlir::scf::ForallOp>::OpRewritePattern;
309
310 LogicalResult matchAndRewrite(mlir::scf::ForallOp forallOp,
311 PatternRewriter &rewriter) const override;
312};
313
314} // namespace
315
316static void copyLLVMDialectAttrs(Operation *from, Operation *to) {
318 llvm::copy_if(from->getDiscardableAttrs(), std::back_inserter(llvmAttrs),
319 [](auto attr) {
320 return isa<LLVM::LLVMDialect>(attr.getValue().getDialect());
321 });
322 to->setDiscardableAttrs(llvmAttrs);
323}
324
325static void propagateLoopAttrs(Operation *scfOp, Operation *brOp) {
326 // Let the CondBranchOp carry the LLVM attributes from the ForOp, such as the
327 // llvm.loop_annotation attribute.
328 // LLVM requires the loop metadata to be attached on the "latch" block. Which
329 // is the back-edge to the header block (conditionBlock)
330 copyLLVMDialectAttrs(scfOp, brOp);
331}
332
333LogicalResult ForLowering::matchAndRewrite(ForOp forOp,
334 PatternRewriter &rewriter) const {
335 Location loc = forOp.getLoc();
336
337 // Start by splitting the block containing the 'scf.for' into two parts.
338 // The part before will get the init code, the part after will be the end
339 // point.
340 auto *initBlock = rewriter.getInsertionBlock();
341 auto initPosition = rewriter.getInsertionPoint();
342 auto *endBlock = rewriter.splitBlock(initBlock, initPosition);
343
344 // Use the first block of the loop body as the condition block since it is the
345 // block that has the induction variable and loop-carried values as arguments.
346 // Split out all operations from the first block into a new block. Move all
347 // body blocks from the loop body region to the region containing the loop.
348 auto *conditionBlock = &forOp.getRegion().front();
349 auto *firstBodyBlock =
350 rewriter.splitBlock(conditionBlock, conditionBlock->begin());
351 auto *lastBodyBlock = &forOp.getRegion().back();
352 rewriter.inlineRegionBefore(forOp.getRegion(), endBlock);
353 auto iv = conditionBlock->getArgument(0);
354
355 // Append the induction variable stepping logic to the last body block and
356 // branch back to the condition block. Loop-carried values are taken from
357 // operands of the loop terminator.
358 Operation *terminator = lastBodyBlock->getTerminator();
359 rewriter.setInsertionPointToEnd(lastBodyBlock);
360 auto step = forOp.getStep();
361 auto stepped = arith::AddIOp::create(rewriter, loc, iv, step).getResult();
362 if (!stepped)
363 return failure();
364
365 SmallVector<Value, 8> loopCarried;
366 loopCarried.push_back(stepped);
367 loopCarried.append(terminator->operand_begin(), terminator->operand_end());
368 auto branchOp =
369 cf::BranchOp::create(rewriter, loc, conditionBlock, loopCarried);
370
371 propagateLoopAttrs(forOp, branchOp);
372 rewriter.eraseOp(terminator);
373
374 // Compute loop bounds before branching to the condition.
375 rewriter.setInsertionPointToEnd(initBlock);
376 Value lowerBound = forOp.getLowerBound();
377 Value upperBound = forOp.getUpperBound();
378 if (!lowerBound || !upperBound)
379 return failure();
380
381 // The initial values of loop-carried values is obtained from the operands
382 // of the loop operation.
383 SmallVector<Value, 8> destOperands;
384 destOperands.push_back(lowerBound);
385 llvm::append_range(destOperands, forOp.getInitArgs());
386 cf::BranchOp::create(rewriter, loc, conditionBlock, destOperands);
387
388 // With the body block done, we can fill in the condition block.
389 rewriter.setInsertionPointToEnd(conditionBlock);
390 arith::CmpIPredicate predicate = forOp.getUnsignedCmp()
391 ? arith::CmpIPredicate::ult
392 : arith::CmpIPredicate::slt;
393 auto comparison =
394 arith::CmpIOp::create(rewriter, loc, predicate, iv, upperBound);
395
396 cf::CondBranchOp::create(rewriter, loc, comparison, firstBodyBlock,
397 ArrayRef<Value>(), endBlock, ArrayRef<Value>());
398
399 // The result of the loop operation is the values of the condition block
400 // arguments except the induction variable on the last iteration.
401 rewriter.replaceOp(forOp, conditionBlock->getArguments().drop_front());
402 return success();
403}
404
405LogicalResult IfLowering::matchAndRewrite(IfOp ifOp,
406 PatternRewriter &rewriter) const {
407 auto loc = ifOp.getLoc();
408
409 // Start by splitting the block containing the 'scf.if' into two parts.
410 // The part before will contain the condition, the part after will be the
411 // continuation point.
412 auto *condBlock = rewriter.getInsertionBlock();
413 auto opPosition = rewriter.getInsertionPoint();
414 auto *remainingOpsBlock = rewriter.splitBlock(condBlock, opPosition);
415 Block *continueBlock;
416 if (ifOp.getNumResults() == 0) {
417 continueBlock = remainingOpsBlock;
418 } else {
419 continueBlock =
420 rewriter.createBlock(remainingOpsBlock, ifOp.getResultTypes(),
421 SmallVector<Location>(ifOp.getNumResults(), loc));
422 cf::BranchOp::create(rewriter, loc, remainingOpsBlock);
423 }
424
425 // Move blocks from the "then" region to the region containing 'scf.if',
426 // place it before the continuation block, and branch to it.
427 auto &thenRegion = ifOp.getThenRegion();
428 auto *thenBlock = &thenRegion.front();
429 Operation *thenTerminator = thenRegion.back().getTerminator();
430 ValueRange thenTerminatorOperands = thenTerminator->getOperands();
431 rewriter.setInsertionPointToEnd(&thenRegion.back());
432 cf::BranchOp::create(rewriter, loc, continueBlock, thenTerminatorOperands);
433 rewriter.eraseOp(thenTerminator);
434 rewriter.inlineRegionBefore(thenRegion, continueBlock);
435
436 // Move blocks from the "else" region (if present) to the region containing
437 // 'scf.if', place it before the continuation block and branch to it. It
438 // will be placed after the "then" regions.
439 auto *elseBlock = continueBlock;
440 auto &elseRegion = ifOp.getElseRegion();
441 if (!elseRegion.empty()) {
442 elseBlock = &elseRegion.front();
443 Operation *elseTerminator = elseRegion.back().getTerminator();
444 ValueRange elseTerminatorOperands = elseTerminator->getOperands();
445 rewriter.setInsertionPointToEnd(&elseRegion.back());
446 cf::BranchOp::create(rewriter, loc, continueBlock, elseTerminatorOperands);
447 rewriter.eraseOp(elseTerminator);
448 rewriter.inlineRegionBefore(elseRegion, continueBlock);
449 }
450
451 rewriter.setInsertionPointToEnd(condBlock);
452 cf::CondBranchOp::create(rewriter, loc, ifOp.getCondition(), thenBlock,
453 /*trueArgs=*/ArrayRef<Value>(), elseBlock,
454 /*falseArgs=*/ArrayRef<Value>());
455
456 // Ok, we're done!
457 rewriter.replaceOp(ifOp, continueBlock->getArguments());
458 return success();
459}
460
461LogicalResult
462ExecuteRegionLowering::matchAndRewrite(ExecuteRegionOp op,
463 PatternRewriter &rewriter) const {
464 auto loc = op.getLoc();
465
466 auto *condBlock = rewriter.getInsertionBlock();
467 auto opPosition = rewriter.getInsertionPoint();
468 auto *remainingOpsBlock = rewriter.splitBlock(condBlock, opPosition);
469
470 auto &region = op.getRegion();
471 rewriter.setInsertionPointToEnd(condBlock);
472 cf::BranchOp::create(rewriter, loc, &region.front());
473
474 for (Block &block : region) {
475 if (auto terminator = dyn_cast<scf::YieldOp>(block.getTerminator())) {
476 ValueRange terminatorOperands = terminator->getOperands();
477 rewriter.setInsertionPointToEnd(&block);
478 cf::BranchOp::create(rewriter, loc, remainingOpsBlock,
479 terminatorOperands);
480 rewriter.eraseOp(terminator);
481 }
482 }
483
484 rewriter.inlineRegionBefore(region, remainingOpsBlock);
485
486 SmallVector<Value> vals;
487 SmallVector<Location> argLocs(op.getNumResults(), op->getLoc());
488 for (auto arg :
489 remainingOpsBlock->addArguments(op->getResultTypes(), argLocs))
490 vals.push_back(arg);
491 rewriter.replaceOp(op, vals);
492 return success();
493}
494
495LogicalResult
496ParallelLowering::matchAndRewrite(ParallelOp parallelOp,
497 PatternRewriter &rewriter) const {
498 Location loc = parallelOp.getLoc();
499 auto reductionOp = dyn_cast<ReduceOp>(parallelOp.getBody()->getTerminator());
500 if (!reductionOp) {
501 return failure();
502 }
503
504 // For a parallel loop, we essentially need to create an n-dimensional loop
505 // nest. We do this by translating to scf.for ops and have those lowered in
506 // a further rewrite. If a parallel loop contains reductions (and thus returns
507 // values), forward the initial values for the reductions down the loop
508 // hierarchy and bubble up the results by modifying the "yield" terminator.
509 SmallVector<Value, 4> iterArgs = llvm::to_vector<4>(parallelOp.getInitVals());
510 SmallVector<Value, 4> ivs;
511 ivs.reserve(parallelOp.getNumLoops());
512 bool first = true;
513 SmallVector<Value, 4> loopResults(iterArgs);
514 ForOp innermostForOp;
515 for (auto [iv, lower, upper, step] :
516 llvm::zip(parallelOp.getInductionVars(), parallelOp.getLowerBound(),
517 parallelOp.getUpperBound(), parallelOp.getStep())) {
518 ForOp forOp = ForOp::create(rewriter, loc, lower, upper, step, iterArgs);
519 innermostForOp = forOp;
520 ivs.push_back(forOp.getInductionVar());
521 auto iterRange = forOp.getRegionIterArgs();
522 iterArgs.assign(iterRange.begin(), iterRange.end());
523
524 if (first) {
525 // Store the results of the outermost loop that will be used to replace
526 // the results of the parallel loop when it is fully rewritten.
527 loopResults.assign(forOp.result_begin(), forOp.result_end());
528 first = false;
529 } else if (!forOp.getResults().empty()) {
530 // A loop is constructed with an empty "yield" terminator if there are
531 // no results.
532 rewriter.setInsertionPointToEnd(rewriter.getInsertionBlock());
533 scf::YieldOp::create(rewriter, loc, forOp.getResults());
534 }
535
536 rewriter.setInsertionPointToStart(forOp.getBody());
537 }
538
539 // Serializing into the for nest would drop attributes such as
540 // llvm.loop_annotation. The loop above emits one scf.for per dimension, so
541 // the attributes go to the innermost one, which runs the body.
542 if (innermostForOp)
543 copyLLVMDialectAttrs(parallelOp, innermostForOp);
544
545 // First, merge reduction blocks into the main region.
546 SmallVector<Value> yieldOperands;
547 yieldOperands.reserve(parallelOp.getNumResults());
548 for (int64_t i = 0, e = parallelOp.getNumResults(); i < e; ++i) {
549 Block &reductionBody = reductionOp.getReductions()[i].front();
550 Value arg = iterArgs[yieldOperands.size()];
551 yieldOperands.push_back(
552 cast<ReduceReturnOp>(reductionBody.getTerminator()).getResult());
553 rewriter.eraseOp(reductionBody.getTerminator());
554 rewriter.inlineBlockBefore(&reductionBody, reductionOp,
555 {arg, reductionOp.getOperands()[i]});
556 }
557 rewriter.eraseOp(reductionOp);
558
559 // Then merge the loop body without the terminator.
560 Block *newBody = rewriter.getInsertionBlock();
561 if (newBody->empty())
562 rewriter.mergeBlocks(parallelOp.getBody(), newBody, ivs);
563 else
564 rewriter.inlineBlockBefore(parallelOp.getBody(), newBody->getTerminator(),
565 ivs);
566
567 // Finally, create the terminator if required (for loops with no results, it
568 // has been already created in loop construction).
569 if (!yieldOperands.empty()) {
570 rewriter.setInsertionPointToEnd(rewriter.getInsertionBlock());
571 scf::YieldOp::create(rewriter, loc, yieldOperands);
572 }
573
574 rewriter.replaceOp(parallelOp, loopResults);
575
576 return success();
577}
578
579LogicalResult WhileLowering::matchAndRewrite(WhileOp whileOp,
580 PatternRewriter &rewriter) const {
581 OpBuilder::InsertionGuard guard(rewriter);
582 Location loc = whileOp.getLoc();
583
584 // Split the current block before the WhileOp to create the inlining point.
585 Block *currentBlock = rewriter.getInsertionBlock();
586 Block *continuation =
587 rewriter.splitBlock(currentBlock, rewriter.getInsertionPoint());
588
589 // Inline both regions.
590 Block *after = whileOp.getAfterBody();
591 Block *before = whileOp.getBeforeBody();
592 rewriter.inlineRegionBefore(whileOp.getAfter(), continuation);
593 rewriter.inlineRegionBefore(whileOp.getBefore(), after);
594
595 // Branch to the "before" region.
596 rewriter.setInsertionPointToEnd(currentBlock);
597 cf::BranchOp::create(rewriter, loc, before, whileOp.getInits());
598
599 // Replace terminators with branches. Assuming bodies are SESE, which holds
600 // given only the patterns from this file, we only need to look at the last
601 // block. This should be reconsidered if we allow break/continue in SCF.
602 rewriter.setInsertionPointToEnd(before);
603 auto condOp = cast<ConditionOp>(before->getTerminator());
604 SmallVector<Value> args = llvm::to_vector(condOp.getArgs());
605 rewriter.replaceOpWithNewOp<cf::CondBranchOp>(condOp, condOp.getCondition(),
606 after, condOp.getArgs(),
607 continuation, ValueRange());
608
609 rewriter.setInsertionPointToEnd(after);
610 auto yieldOp = cast<scf::YieldOp>(after->getTerminator());
611 auto latch = rewriter.replaceOpWithNewOp<cf::BranchOp>(yieldOp, before,
612 yieldOp.getResults());
613
614 propagateLoopAttrs(whileOp, latch);
615 // Replace the op with values "yielded" from the "before" region, which are
616 // visible by dominance.
617 rewriter.replaceOp(whileOp, args);
618
619 return success();
620}
621
622LogicalResult
623DoWhileLowering::matchAndRewrite(WhileOp whileOp,
624 PatternRewriter &rewriter) const {
625 Block &afterBlock = *whileOp.getAfterBody();
626 if (!llvm::hasSingleElement(afterBlock))
627 return rewriter.notifyMatchFailure(whileOp,
628 "do-while simplification applicable "
629 "only if 'after' region has no payload");
630
631 auto yield = dyn_cast<scf::YieldOp>(&afterBlock.front());
632 if (!yield || yield.getResults() != afterBlock.getArguments())
633 return rewriter.notifyMatchFailure(whileOp,
634 "do-while simplification applicable "
635 "only to forwarding 'after' regions");
636
637 // Split the current block before the WhileOp to create the inlining point.
638 OpBuilder::InsertionGuard guard(rewriter);
639 Block *currentBlock = rewriter.getInsertionBlock();
640 Block *continuation =
641 rewriter.splitBlock(currentBlock, rewriter.getInsertionPoint());
642
643 // Only the "before" region should be inlined.
644 Block *before = whileOp.getBeforeBody();
645 rewriter.inlineRegionBefore(whileOp.getBefore(), continuation);
646
647 // Branch to the "before" region.
648 rewriter.setInsertionPointToEnd(currentBlock);
649 cf::BranchOp::create(rewriter, whileOp.getLoc(), before, whileOp.getInits());
650
651 // Loop around the "before" region based on condition.
652 rewriter.setInsertionPointToEnd(before);
653 auto condOp = cast<ConditionOp>(before->getTerminator());
654 auto latch = cf::CondBranchOp::create(
655 rewriter, condOp.getLoc(), condOp.getCondition(), before,
656 condOp.getArgs(), continuation, ValueRange());
657
658 propagateLoopAttrs(whileOp, latch);
659 // Replace the op with values "yielded" from the "before" region, which are
660 // visible by dominance.
661 rewriter.replaceOp(whileOp, condOp.getArgs());
662
663 // Erase the condition op.
664 rewriter.eraseOp(condOp);
665 return success();
666}
667
668LogicalResult
669IndexSwitchLowering::matchAndRewrite(IndexSwitchOp op,
670 PatternRewriter &rewriter) const {
671 // Split the block at the op.
672 Block *condBlock = rewriter.getInsertionBlock();
673 Block *continueBlock = rewriter.splitBlock(condBlock, Block::iterator(op));
674
675 // Create the arguments on the continue block with which to replace the
676 // results of the op.
677 SmallVector<Value> results;
678 results.reserve(op.getNumResults());
679 for (Type resultType : op.getResultTypes())
680 results.push_back(continueBlock->addArgument(resultType, op.getLoc()));
681
682 // Handle the regions.
683 auto convertRegion = [&](Region &region) -> FailureOr<Block *> {
684 Block *block = &region.front();
685
686 // Convert the yield terminator to a branch to the continue block.
687 auto yield = cast<scf::YieldOp>(block->getTerminator());
688 rewriter.setInsertionPoint(yield);
689 rewriter.replaceOpWithNewOp<cf::BranchOp>(yield, continueBlock,
690 yield.getOperands());
691
692 // Inline the region.
693 rewriter.inlineRegionBefore(region, continueBlock);
694 return block;
695 };
696
697 // Convert the case regions.
698 SmallVector<Block *> caseSuccessors;
699 SmallVector<APInt> caseValues;
700 caseSuccessors.reserve(op.getCases().size());
701 caseValues.reserve(op.getCases().size());
702 for (auto [region, value] : llvm::zip(op.getCaseRegions(), op.getCases())) {
703 FailureOr<Block *> block = convertRegion(region);
704 if (failed(block))
705 return failure();
706 caseSuccessors.push_back(*block);
707 caseValues.push_back(APInt(64, value));
708 }
709
710 // Convert the default region.
711 FailureOr<Block *> defaultBlock = convertRegion(op.getDefaultRegion());
712 if (failed(defaultBlock))
713 return failure();
714
715 // Create the switch.
716 rewriter.setInsertionPointToEnd(condBlock);
717 SmallVector<ValueRange> caseOperands(caseSuccessors.size(), {});
718
719 // Cast switch index to i64 to avoid truncation for large case values.
720 Value caseValue = arith::IndexCastOp::create(
721 rewriter, op.getLoc(), rewriter.getI64Type(), op.getArg());
722
723 cf::SwitchOp::create(rewriter, op.getLoc(), caseValue, *defaultBlock,
724 ValueRange(), caseValues, caseSuccessors, caseOperands);
725 rewriter.replaceOp(op, continueBlock->getArguments());
726 return success();
727}
728
729LogicalResult ForallLowering::matchAndRewrite(ForallOp forallOp,
730 PatternRewriter &rewriter) const {
731 return scf::forallToParallelLoop(rewriter, forallOp);
732}
733
735 RewritePatternSet &patterns) {
736 patterns.add<ForallLowering, ForLowering, IfLowering, ParallelLowering,
737 WhileLowering, ExecuteRegionLowering, IndexSwitchLowering>(
738 patterns.getContext());
739 patterns.add<DoWhileLowering>(patterns.getContext(), /*benefit=*/2);
740}
741
742void SCFToControlFlowPass::runOnOperation() {
743 RewritePatternSet patterns(&getContext());
745
746 // Configure conversion to lower out SCF operations.
748 target.addIllegalOp<scf::ForallOp, scf::ForOp, scf::IfOp, scf::IndexSwitchOp,
749 scf::ParallelOp, scf::WhileOp, scf::ExecuteRegionOp>();
750 target.markUnknownOpDynamicallyLegal([](Operation *) { return true; });
751 ConversionConfig config;
752 config.allowPatternRollback = allowPatternRollback;
753 if (failed(applyPartialConversion(getOperation(), target, std::move(patterns),
754 config)))
755 signalPassFailure();
756}
return success()
b getContext())
static void propagateLoopAttrs(Operation *scfOp, Operation *brOp)
static void copyLLVMDialectAttrs(Operation *from, Operation *to)
OpListType::iterator iterator
Definition Block.h:164
bool empty()
Definition Block.h:172
Operation & front()
Definition Block.h:177
Operation & back()
Definition Block.h:176
Operation * getTerminator()
Get the terminator operation of this block.
Definition Block.cpp:249
BlockArgument addArgument(Type type, Location loc)
Add one value to the argument list.
Definition Block.cpp:158
BlockArgListType getArguments()
Definition Block.h:111
IntegerType getI64Type()
Definition Builders.cpp:73
Block::iterator getInsertionPoint() const
Returns the current insertion point of the builder.
Definition Builders.h:448
Block * createBlock(Region *parent, Region::iterator insertPt={}, TypeRange argTypes={}, ArrayRef< Location > locs={})
Add new block with 'argTypes' arguments and set the insertion point to the end of it.
Definition Builders.cpp:439
void setInsertionPointToStart(Block *block)
Sets the insertion point to the start of the specified block.
Definition Builders.h:434
void setInsertionPoint(Block *block, Block::iterator insertPoint)
Set the insertion point to the specified location.
Definition Builders.h:401
void setInsertionPointToEnd(Block *block)
Sets the insertion point to the end of the specified block.
Definition Builders.h:439
Block * getInsertionBlock() const
Return the block the current insertion point belongs to.
Definition Builders.h:445
Operation is the basic unit of execution within MLIR.
Definition Operation.h:87
operand_iterator operand_begin()
Definition Operation.h:399
operand_iterator operand_end()
Definition Operation.h:400
auto getDiscardableAttrs()
Return a range of all of discardable attributes on this operation.
Definition Operation.h:538
operand_range getOperands()
Returns an iterator on the underlying Value's.
Definition Operation.h:403
void setDiscardableAttrs(DictionaryAttr newAttrs)
Set the discardable attribute dictionary on this operation.
Definition Operation.h:575
A special type of RewriterBase that coordinates the application of a rewrite pattern on the current I...
MLIRContext * getContext() const
RewritePatternSet & add(ConstructorArg &&arg, ConstructorArgs &&...args)
Add an instance of each of the pattern types 'Ts' to the pattern list with the given arguments.
Block * splitBlock(Block *block, Block::iterator before)
Split the operations starting at "before" (inclusive) out of the given block into a new block,...
virtual void replaceOp(Operation *op, ValueRange newValues)
Replace the results of the given (original) operation with the specified list of values (replacements...
virtual void eraseOp(Operation *op)
This method erases an operation that is known to have no uses.
virtual void inlineBlockBefore(Block *source, Block *dest, Block::iterator before, ValueRange argValues={})
Inline the operations of block 'source' into block 'dest' before the given position.
void mergeBlocks(Block *source, Block *dest, ValueRange argValues={})
Inline the operations of block 'source' into the end of block 'dest'.
std::enable_if_t<!std::is_convertible< CallbackT, Twine >::value, LogicalResult > notifyMatchFailure(Location loc, CallbackT &&reasonCallback)
Used to notify the listener that the IR failed to be rewritten because of a match failure,...
void inlineRegionBefore(Region &region, Region &parent, Region::iterator before)
Move the blocks that belong to "region" before the given position in another region "parent".
OpTy replaceOpWithNewOp(Operation *op, Args &&...args)
Replace the results of the given (original) op with a new op that is created without verification (re...
detail::InFlightRemark failed(Location loc, RemarkOpts opts)
Report an optimization remark that failed.
Definition Remarks.h:732
LogicalResult forallToParallelLoop(RewriterBase &rewriter, ForallOp forallOp, ParallelOp *result=nullptr)
Try converting scf.forall into an scf.parallel loop.
Include the generated interface declarations.
void populateSCFToControlFlowConversionPatterns(RewritePatternSet &patterns)
Collect a set of patterns to convert SCF operations to CFG branch-based operations within the Control...
LogicalResult matchAndRewrite(WhileOp whileOp, OpAdaptor adaptor, ConversionPatternRewriter &rewriter) const override
OpRewritePattern is a wrapper around RewritePattern that allows for matching and rewriting against an...
OpRewritePattern(MLIRContext *context, PatternBenefit benefit=1, ArrayRef< StringRef > generatedNames={})