CIRCT  19.0.0git
Passes.h
Go to the documentation of this file.
1 //===- Passes.h - Pass Entrypoints ------------------------------*- C++ -*-===//
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 header file defines prototypes for CIRCT transformation passes.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef CIRCT_TRANSFORMS_PASSES_H
14 #define CIRCT_TRANSFORMS_PASSES_H
15 
17 #include "mlir/IR/BuiltinOps.h"
18 #include "mlir/Pass/Pass.h"
19 #include <limits>
20 
21 namespace circt {
22 
23 //===----------------------------------------------------------------------===//
24 // Passes
25 //===----------------------------------------------------------------------===//
26 
27 #define GEN_PASS_DECL
28 #include "circt/Transforms/Passes.h.inc"
29 
30 std::unique_ptr<mlir::Pass> createMapArithToCombPass();
31 std::unique_ptr<mlir::Pass> createFlattenMemRefPass();
32 std::unique_ptr<mlir::Pass> createFlattenMemRefCallsPass();
33 std::unique_ptr<mlir::Pass> createStripDebugInfoWithPredPass(
34  const std::function<bool(mlir::Location)> &pred);
35 std::unique_ptr<mlir::Pass> createMaximizeSSAPass();
36 std::unique_ptr<mlir::Pass> createInsertMergeBlocksPass();
37 
38 //===----------------------------------------------------------------------===//
39 // Utility functions.
40 //===----------------------------------------------------------------------===//
41 
42 // Returns true if the provided memref is considered unidimensional (having a
43 // shape of size 1).
44 bool isUniDimensional(mlir::MemRefType memref);
45 
46 // Returns true if the region is into maximal SSA form i.e., if all the values
47 // within the region are in maximal SSA form.
48 bool isRegionSSAMaximized(Region &region);
49 
50 /// Strategy class to control the behavior of SSA maximization. The class
51 /// exposes overridable filter functions to dynamically select which blocks,
52 /// block arguments, operations, and operation results should be put into
53 /// maximal SSA form. All filter functions should return true whenever the
54 /// entity they operate on should be considered for SSA maximization. By
55 /// default, all filter functions always return true.
57 public:
58  /// Determines whether a block should have the values it defines (i.e., block
59  /// arguments and operation results within the block) SSA maximized.
60  virtual bool maximizeBlock(Block *block);
61  /// Determines whether a block argument should be SSA maximized.
62  virtual bool maximizeArgument(BlockArgument arg);
63  /// Determines whether an operation should have its results SSA maximized.
64  virtual bool maximizeOp(Operation *op);
65  /// Determines whether an operation's result should be SSA maximized.
66  virtual bool maximizeResult(OpResult res);
67 
68  virtual ~SSAMaximizationStrategy() = default;
69 };
70 
71 /// Converts a single value within a function into maximal SSA form. This
72 /// removes any implicit dataflow of this specific value within the enclosing
73 /// function. The function adds new block arguments wherever necessary to carry
74 /// the value explicitly between blocks.
75 /// Succeeds when it was possible to convert the value into maximal SSA form.
76 LogicalResult maximizeSSA(Value value, PatternRewriter &rewriter);
77 
78 /// Considers all of an operation's results for SSA maximization, following a
79 /// provided strategy. This removes any implicit dataflow of the selected
80 /// operation's results within the enclosing function. The function adds new
81 /// block arguments wherever necessary to carry the results explicitly between
82 /// blocks. Succeeds when it was possible to convert the selected operation's
83 /// results into maximal SSA form.
84 LogicalResult maximizeSSA(Operation *op, SSAMaximizationStrategy &strategy,
85  PatternRewriter &rewriter);
86 
87 /// Considers all values defined by a block (i.e., block arguments and operation
88 /// results within the block) for SSA maximization, following a provided
89 /// strategy. This removes any implicit dataflow of the selected values within
90 /// the enclosing function. The function adds new block arguments wherever
91 /// necessary to carry the values explicitly between blocks. Succeeds when it
92 /// was possible to convert the selected values defined by the block into
93 /// maximal SSA form.
94 LogicalResult maximizeSSA(Block *block, SSAMaximizationStrategy &strategy,
95  PatternRewriter &rewriter);
96 
97 /// Considers all blocks within a region for SSA maximization, following a
98 /// provided strategy. This removes any implicit dataflow of the values defined
99 /// by selected blocks within the region. The function adds new block arguments
100 /// wherever necessary to carry the region's values explicitly between blocks.
101 /// Succeeds when it was possible to convert all of the values defined by
102 /// selected blocks into maximal SSA form.
103 LogicalResult maximizeSSA(Region &region, SSAMaximizationStrategy &strategy,
104  PatternRewriter &rewriter);
105 
106 /// Manually run merge block insertion on a region.
107 ///
108 /// This transformation does treat loops like a single block and thus does not
109 /// affect them.
110 LogicalResult insertMergeBlocks(mlir::Region &r,
111  mlir::ConversionPatternRewriter &rewriter);
112 
113 //===----------------------------------------------------------------------===//
114 // Registration
115 //===----------------------------------------------------------------------===//
116 
117 /// Generate the code for registering passes.
118 #define GEN_PASS_REGISTRATION
119 #include "circt/Transforms/Passes.h.inc"
120 
121 } // namespace circt
122 
123 #endif // CIRCT_TRANSFORMS_PASSES_H
Strategy strategy
Strategy class to control the behavior of SSA maximization.
Definition: Passes.h:56
virtual bool maximizeResult(OpResult res)
Determines whether an operation's result should be SSA maximized.
Definition: MaximizeSSA.cpp:81
virtual ~SSAMaximizationStrategy()=default
virtual bool maximizeArgument(BlockArgument arg)
Determines whether a block argument should be SSA maximized.
Definition: MaximizeSSA.cpp:77
virtual bool maximizeBlock(Block *block)
Determines whether a block should have the values it defines (i.e., block arguments and operation res...
Definition: MaximizeSSA.cpp:74
virtual bool maximizeOp(Operation *op)
Determines whether an operation should have its results SSA maximized.
Definition: MaximizeSSA.cpp:80
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.
Definition: DebugAnalysis.h:21
std::unique_ptr< mlir::Pass > createMaximizeSSAPass()
std::unique_ptr< mlir::Pass > createInsertMergeBlocksPass()
std::unique_ptr< mlir::Pass > createMapArithToCombPass()
mlir::LogicalResult insertMergeBlocks(mlir::Region &r, mlir::ConversionPatternRewriter &rewriter)
Insert additional blocks that serve as counterparts to the blocks that diverged the control flow.
LogicalResult maximizeSSA(Value value, PatternRewriter &rewriter)
Converts a single value within a function into maximal SSA form.
Definition: MaximizeSSA.cpp:85
std::unique_ptr< mlir::Pass > createFlattenMemRefPass()
bool isUniDimensional(mlir::MemRefType memref)
bool isRegionSSAMaximized(Region &region)
Definition: MaximizeSSA.cpp:61
std::unique_ptr< mlir::Pass > createFlattenMemRefCallsPass()
std::unique_ptr< mlir::Pass > createStripDebugInfoWithPredPass(const std::function< bool(mlir::Location)> &pred)
Creates a pass to strip debug information from a function.