17905da65SAmit Sabne //===- LoopInvariantCodeMotion.cpp - Code to perform loop fusion-----------===//
27905da65SAmit Sabne //
330857107SMehdi Amini // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
456222a06SMehdi Amini // See https://llvm.org/LICENSE.txt for license information.
556222a06SMehdi Amini // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
67905da65SAmit Sabne //
756222a06SMehdi Amini //===----------------------------------------------------------------------===//
87905da65SAmit Sabne //
97905da65SAmit Sabne // This file implements loop invariant code motion.
107905da65SAmit Sabne //
117905da65SAmit Sabne //===----------------------------------------------------------------------===//
127905da65SAmit Sabne 
137905da65SAmit Sabne #include "mlir/Transforms/Passes.h"
14b843cc5dSStephan Herhut 
15b843cc5dSStephan Herhut #include "mlir/IR/Builders.h"
16b843cc5dSStephan Herhut #include "mlir/IR/Function.h"
1743959a25SRiver Riddle #include "mlir/Interfaces/LoopLikeInterface.h"
18153720a0SRiver Riddle #include "mlir/Interfaces/SideEffects.h"
19b843cc5dSStephan Herhut #include "mlir/Pass/Pass.h"
207a43da60SAmit Sabne #include "llvm/ADT/SmallPtrSet.h"
217905da65SAmit Sabne #include "llvm/Support/CommandLine.h"
227905da65SAmit Sabne #include "llvm/Support/Debug.h"
237905da65SAmit Sabne 
247905da65SAmit Sabne #define DEBUG_TYPE "licm"
257905da65SAmit Sabne 
267905da65SAmit Sabne using namespace mlir;
277905da65SAmit Sabne 
287905da65SAmit Sabne namespace {
297905da65SAmit Sabne /// Loop invariant code motion (LICM) pass.
30*80aca1eaSRiver Riddle struct LoopInvariantCodeMotion
31*80aca1eaSRiver Riddle     : public PassWrapper<LoopInvariantCodeMotion, OperationPass<>> {
329a277af2SRiver Riddle /// Include the generated pass utilities.
339a277af2SRiver Riddle #define GEN_PASS_LoopInvariantCodeMotion
349a277af2SRiver Riddle #include "mlir/Transforms/Passes.h.inc"
359a277af2SRiver Riddle 
36b843cc5dSStephan Herhut   void runOnOperation() override;
377905da65SAmit Sabne };
3843959a25SRiver Riddle } // end anonymous namespace
397905da65SAmit Sabne 
40b843cc5dSStephan Herhut // Checks whether the given op can be hoisted by checking that
41b843cc5dSStephan Herhut // - the op and any of its contained operations do not depend on SSA values
42b843cc5dSStephan Herhut //   defined inside of the loop (by means of calling definedOutside).
43b843cc5dSStephan Herhut // - the op has no side-effects. If sideEffecting is Never, sideeffects of this
44b843cc5dSStephan Herhut //   op and its nested ops are ignored.
45b843cc5dSStephan Herhut static bool canBeHoisted(Operation *op,
46b10c6625SRiver Riddle                          function_ref<bool(Value)> definedOutside) {
47b843cc5dSStephan Herhut   // Check that dependencies are defined outside of loop.
48b843cc5dSStephan Herhut   if (!llvm::all_of(op->getOperands(), definedOutside))
49b843cc5dSStephan Herhut     return false;
50b843cc5dSStephan Herhut   // Check whether this op is side-effect free. If we already know that there
51b843cc5dSStephan Herhut   // can be no side-effects because the surrounding op has claimed so, we can
52b843cc5dSStephan Herhut   // (and have to) skip this step.
53b10c6625SRiver Riddle   if (auto memInterface = dyn_cast<MemoryEffectOpInterface>(op)) {
54b10c6625SRiver Riddle     if (!memInterface.hasNoEffect())
55b10c6625SRiver Riddle       return false;
56b10c6625SRiver Riddle     // If the operation doesn't have side effects and it doesn't recursively
57b10c6625SRiver Riddle     // have side effects, it can always be hoisted.
58b10c6625SRiver Riddle     if (!op->hasTrait<OpTrait::HasRecursiveSideEffects>())
59b10c6625SRiver Riddle       return true;
60b10c6625SRiver Riddle 
610ddba0bdSRiver Riddle     // Otherwise, if the operation doesn't provide the memory effect interface
620ddba0bdSRiver Riddle     // and it doesn't have recursive side effects we treat it conservatively as
630ddba0bdSRiver Riddle     // side-effecting.
640ddba0bdSRiver Riddle   } else if (!op->hasTrait<OpTrait::HasRecursiveSideEffects>()) {
650ddba0bdSRiver Riddle     return false;
660ddba0bdSRiver Riddle   }
670ddba0bdSRiver Riddle 
68b843cc5dSStephan Herhut   // Recurse into the regions for this op and check whether the contained ops
69b843cc5dSStephan Herhut   // can be hoisted.
70b843cc5dSStephan Herhut   for (auto &region : op->getRegions()) {
71b843cc5dSStephan Herhut     for (auto &block : region.getBlocks()) {
72b10c6625SRiver Riddle       for (auto &innerOp : block.without_terminator())
73b10c6625SRiver Riddle         if (!canBeHoisted(&innerOp, definedOutside))
747a43da60SAmit Sabne           return false;
757a43da60SAmit Sabne     }
767a43da60SAmit Sabne   }
777a43da60SAmit Sabne   return true;
787a43da60SAmit Sabne }
797a43da60SAmit Sabne 
80b10c6625SRiver Riddle static LogicalResult moveLoopInvariantCode(LoopLikeOpInterface looplike) {
81b843cc5dSStephan Herhut   auto &loopBody = looplike.getLoopBody();
827a43da60SAmit Sabne 
83b843cc5dSStephan Herhut   // We use two collections here as we need to preserve the order for insertion
84b843cc5dSStephan Herhut   // and this is easiest.
85b843cc5dSStephan Herhut   SmallPtrSet<Operation *, 8> willBeMovedSet;
867905da65SAmit Sabne   SmallVector<Operation *, 8> opsToMove;
877905da65SAmit Sabne 
88b843cc5dSStephan Herhut   // Helper to check whether an operation is loop invariant wrt. SSA properties.
89e62a6956SRiver Riddle   auto isDefinedOutsideOfBody = [&](Value value) {
902bdf33ccSRiver Riddle     auto definingOp = value.getDefiningOp();
91b843cc5dSStephan Herhut     return (definingOp && !!willBeMovedSet.count(definingOp)) ||
92b843cc5dSStephan Herhut            looplike.isDefinedOutsideOfLoop(value);
93b843cc5dSStephan Herhut   };
94b843cc5dSStephan Herhut 
95b843cc5dSStephan Herhut   // Do not use walk here, as we do not want to go into nested regions and hoist
96b843cc5dSStephan Herhut   // operations from there. These regions might have semantics unknown to this
97b843cc5dSStephan Herhut   // rewriting. If the nested regions are loops, they will have been processed.
98b843cc5dSStephan Herhut   for (auto &block : loopBody) {
99b843cc5dSStephan Herhut     for (auto &op : block.without_terminator()) {
100b10c6625SRiver Riddle       if (canBeHoisted(&op, isDefinedOutsideOfBody)) {
1017905da65SAmit Sabne         opsToMove.push_back(&op);
102b843cc5dSStephan Herhut         willBeMovedSet.insert(&op);
1037905da65SAmit Sabne       }
1047a43da60SAmit Sabne     }
1057a43da60SAmit Sabne   }
1067905da65SAmit Sabne 
107b843cc5dSStephan Herhut   // For all instructions that we found to be invariant, move outside of the
108b843cc5dSStephan Herhut   // loop.
109b843cc5dSStephan Herhut   auto result = looplike.moveOutOfLoop(opsToMove);
110b843cc5dSStephan Herhut   LLVM_DEBUG(looplike.print(llvm::dbgs() << "Modified loop\n"));
111b843cc5dSStephan Herhut   return result;
1127905da65SAmit Sabne }
1137905da65SAmit Sabne 
114b843cc5dSStephan Herhut void LoopInvariantCodeMotion::runOnOperation() {
1150134b5dfSChris Lattner   // Walk through all loops in a function in innermost-loop-first order. This
1160134b5dfSChris Lattner   // way, we first LICM from the inner loop, and place the ops in
1170134b5dfSChris Lattner   // the outer loop, which in turn can be further LICM'ed.
118b10c6625SRiver Riddle   getOperation()->walk([&](LoopLikeOpInterface loopLike) {
119b10c6625SRiver Riddle     LLVM_DEBUG(loopLike.print(llvm::dbgs() << "\nOriginal loop\n"));
120b10c6625SRiver Riddle     if (failed(moveLoopInvariantCode(loopLike)))
121b843cc5dSStephan Herhut       signalPassFailure();
1220134b5dfSChris Lattner   });
1237905da65SAmit Sabne }
1247905da65SAmit Sabne 
125b843cc5dSStephan Herhut std::unique_ptr<Pass> mlir::createLoopInvariantCodeMotionPass() {
126b843cc5dSStephan Herhut   return std::make_unique<LoopInvariantCodeMotion>();
127b843cc5dSStephan Herhut }
128