MLIR 23.0.0git
GreedyPatternRewriteDriver.h
Go to the documentation of this file.
1//===- GreedyPatternRewriteDriver.h - Greedy Pattern Driver -----*- 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 file declares methods for applying a set of patterns greedily, choosing
10// the patterns with the highest local benefit, until a fixed point is reached.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef MLIR_TRANSFORMS_GREEDYPATTERNREWRITEDRIVER_H_
15#define MLIR_TRANSFORMS_GREEDYPATTERNREWRITEDRIVER_H_
16
18
19namespace mlir {
20
21/// This enum controls which ops are put on the worklist during a greedy
22/// pattern rewrite.
24 /// No restrictions wrt. which ops are processed.
26 /// Only pre-existing and newly created ops are processed.
28 /// Only pre-existing ops are processed.
30};
31
33 /// Disable region control-flow simplification.
35 /// Run the normal simplification (e.g. dead args elimination).
37 /// Run extra simplificiations (e.g. block merging), these can be
38 /// more costly or have some tradeoffs associated.
40};
41
42/// This class allows control over how the GreedyPatternRewriteDriver works.
44public:
45 /// This specifies the order of initial traversal that populates the rewriters
46 /// worklist. When set to true, it walks the operations top-down, which is
47 /// generally more efficient in compile time. When set to false, its initial
48 /// traversal of the region tree is bottom up on each block, which may match
49 /// larger patterns when given an ambiguous pattern set.
50 ///
51 /// Note: Only applicable when simplifying entire regions.
52 bool getUseTopDownTraversal() const { return useTopDownTraversal; }
54 useTopDownTraversal = use;
55 return *this;
56 }
57
58 /// Perform control flow optimizations to the region tree after applying all
59 /// patterns.
60 ///
61 /// Note: Only applicable when simplifying entire regions.
63 return regionSimplificationLevel;
64 }
67 regionSimplificationLevel = level;
68 return *this;
69 }
70
71 /// This specifies the maximum number of times the rewriter will iterate
72 /// between applying patterns and simplifying regions. Use `kNoLimit` to
73 /// disable this iteration limit.
74 ///
75 /// Note: Only applicable when simplifying entire regions.
76 int64_t getMaxIterations() const { return maxIterations; }
78 maxIterations = iterations;
79 return *this;
80 }
81
82 /// This specifies the maximum number of rewrites within an iteration. Use
83 /// `kNoLimit` to disable this limit.
84 int64_t getMaxNumRewrites() const { return maxNumRewrites; }
86 maxNumRewrites = limit;
87 return *this;
88 }
89
90 static constexpr int64_t kNoLimit = -1;
91
92 /// Only ops within the scope are added to the worklist. If no scope is
93 /// specified, the closest enclosing region around the initial list of ops
94 /// (or the specified region, depending on which greedy rewrite entry point
95 /// is used) is used as a scope.
96 Region *getScope() const { return scope; }
98 this->scope = scope;
99 return *this;
100 }
101
102 /// Strict mode can restrict the ops that are added to the worklist during
103 /// the rewrite.
104 ///
105 /// * GreedyRewriteStrictness::AnyOp: No ops are excluded.
106 /// * GreedyRewriteStrictness::ExistingAndNewOps: Only pre-existing ops (that
107 /// were on the worklist at the very beginning) and newly created ops are
108 /// enqueued. All other ops are excluded.
109 /// * GreedyRewriteStrictness::ExistingOps: Only pre-existing ops (that were
110 /// were on the worklist at the very beginning) enqueued. All other ops are
111 /// excluded.
112 GreedyRewriteStrictness getStrictness() const { return strictness; }
114 strictness = mode;
115 return *this;
116 }
117
118 /// An optional listener that should be notified about IR modifications.
119 RewriterBase::Listener *getListener() const { return listener; }
121 this->listener = listener;
122 return *this;
123 }
124
125 /// Whether this should fold while greedily rewriting.
126 bool isFoldingEnabled() const { return fold; }
127 GreedyRewriteConfig &enableFolding(bool enable = true) {
128 fold = enable;
129 return *this;
130 }
131
132 /// If set to "true", constants are CSE'd (even across multiple regions that
133 /// are in a parent-ancestor relationship).
134 bool isConstantCSEEnabled() const { return cseConstants; }
136 cseConstants = enable;
137 return *this;
138 }
139
140private:
141 Region *scope = nullptr;
142 bool useTopDownTraversal = false;
143 GreedySimplifyRegionLevel regionSimplificationLevel =
145 int64_t maxIterations = 10;
146 int64_t maxNumRewrites = kNoLimit;
148 RewriterBase::Listener *listener = nullptr;
149 bool fold = true;
150 bool cseConstants = true;
151};
152
153//===----------------------------------------------------------------------===//
154// applyPatternsGreedily
155//===----------------------------------------------------------------------===//
156
157/// Rewrite ops in the given region, which must be isolated from above, by
158/// repeatedly applying the highest benefit patterns in a greedy worklist
159/// driven manner until a fixpoint is reached.
160///
161/// The greedy rewrite may prematurely stop after a maximum number of
162/// iterations, which can be configured in the configuration parameter.
163///
164/// Also performs simple dead-code elimination before attempting to match any of
165/// the provided patterns.
166///
167/// A region scope can be set in the configuration parameter. By default, the
168/// scope is set to the specified region. Only in-scope ops are added to the
169/// worklist and only in-scope ops are allowed to be modified by the patterns.
170///
171/// Returns "success" if the iterative process converged (i.e., fixpoint was
172/// reached) and no more patterns can be matched within the region. `changed`
173/// is set to "true" if the IR was modified at all.
174///
175/// Note: This method does not apply patterns to the region's parent operation.
176LogicalResult
177applyPatternsGreedily(Region &region, const FrozenRewritePatternSet &patterns,
178 GreedyRewriteConfig config = GreedyRewriteConfig(),
179 bool *changed = nullptr);
180/// Rewrite ops nested under the given operation, which must be isolated from
181/// above, by repeatedly applying the highest benefit patterns in a greedy
182/// worklist driven manner until a fixpoint is reached.
183///
184/// The greedy rewrite may prematurely stop after a maximum number of
185/// iterations, which can be configured in the configuration parameter.
186///
187/// Also performs simple dead-code elimination before attempting to match any of
188/// the provided patterns.
189///
190/// This overload runs a separate greedy rewrite for each region of the
191/// specified op. A region scope can be set in the configuration parameter. By
192/// default, the scope is set to the region of the current greedy rewrite. Only
193/// in-scope ops are added to the worklist and only in-scope ops and the
194/// specified op itself are allowed to be modified by the patterns.
195///
196/// Note: The specified op may be modified, but it may not be removed by the
197/// patterns.
198///
199/// Returns "success" if the iterative process converged (i.e., fixpoint was
200/// reached) and no more patterns can be matched within the region. `changed`
201/// is set to "true" if the IR was modified at all.
202///
203/// Note: This method does not apply patterns to the given operation itself.
204inline LogicalResult
207 bool *changed = nullptr) {
208 bool anyRegionChanged = false;
209 bool failed = false;
210 for (Region &region : op->getRegions()) {
211 bool regionChanged;
212 failed |= applyPatternsGreedily(region, patterns, config, &regionChanged)
213 .failed();
214 anyRegionChanged |= regionChanged;
215 }
216 if (changed)
217 *changed = anyRegionChanged;
218 return failure(failed);
219}
220/// Rewrite the specified ops by repeatedly applying the highest benefit
221/// patterns in a greedy worklist driven manner until a fixpoint is reached.
222///
223/// The greedy rewrite may prematurely stop after a maximum number of
224/// iterations, which can be configured in the configuration parameter.
225///
226/// Also performs simple dead-code elimination before attempting to match any of
227/// the provided patterns.
228///
229/// Newly created ops and other pre-existing ops that use results of rewritten
230/// ops or supply operands to such ops are also processed, unless such ops are
231/// excluded via `config.strictMode`. Any other ops remain unmodified (i.e.,
232/// regardless of `strictMode`).
233///
234/// In addition to strictness, a region scope can be specified. Only ops within
235/// the scope are simplified. This is similar to `applyPatternsGreedily`,
236/// where only ops within the given region/op are simplified by default. If no
237/// scope is specified, it is assumed to be the first common enclosing region of
238/// the given ops.
239///
240/// Note that ops in `ops` could be erased as result of folding, becoming dead,
241/// or via pattern rewrites. If more far reaching simplification is desired,
242/// `applyPatternsGreedily` should be used.
243///
244/// Returns "success" if the iterative process converged (i.e., fixpoint was
245/// reached) and no more patterns can be matched. `changed` is set to "true" if
246/// the IR was modified at all. `allOpsErased` is set to "true" if all ops in
247/// `ops` were erased.
248LogicalResult
249applyOpPatternsGreedily(ArrayRef<Operation *> ops,
250 const FrozenRewritePatternSet &patterns,
251 GreedyRewriteConfig config = GreedyRewriteConfig(),
252 bool *changed = nullptr, bool *allErased = nullptr);
253} // namespace mlir
254
255#endif // MLIR_TRANSFORMS_GREEDYPATTERNREWRITEDRIVER_H_
This class represents a frozen set of patterns that can be processed by a pattern applicator.
This class allows control over how the GreedyPatternRewriteDriver works.
static constexpr int64_t kNoLimit
bool isFoldingEnabled() const
Whether this should fold while greedily rewriting.
GreedyRewriteConfig & setRegionSimplificationLevel(GreedySimplifyRegionLevel level)
RewriterBase::Listener * getListener() const
An optional listener that should be notified about IR modifications.
bool isConstantCSEEnabled() const
If set to "true", constants are CSE'd (even across multiple regions that are in a parent-ancestor rel...
Region * getScope() const
Only ops within the scope are added to the worklist.
GreedyRewriteConfig & enableConstantCSE(bool enable=true)
GreedyRewriteStrictness getStrictness() const
Strict mode can restrict the ops that are added to the worklist during the rewrite.
bool getUseTopDownTraversal() const
This specifies the order of initial traversal that populates the rewriters worklist.
GreedyRewriteConfig & enableFolding(bool enable=true)
GreedyRewriteConfig & setScope(Region *scope)
GreedyRewriteConfig & setListener(RewriterBase::Listener *listener)
int64_t getMaxNumRewrites() const
This specifies the maximum number of rewrites within an iteration.
GreedyRewriteConfig & setMaxIterations(int64_t iterations)
GreedyRewriteConfig & setMaxNumRewrites(int64_t limit)
int64_t getMaxIterations() const
This specifies the maximum number of times the rewriter will iterate between applying patterns and si...
GreedyRewriteConfig & setUseTopDownTraversal(bool use=true)
GreedySimplifyRegionLevel getRegionSimplificationLevel() const
Perform control flow optimizations to the region tree after applying all patterns.
GreedyRewriteConfig & setStrictness(GreedyRewriteStrictness mode)
Operation is the basic unit of execution within MLIR.
Definition Operation.h:88
MutableArrayRef< Region > getRegions()
Returns the regions held by this operation.
Definition Operation.h:706
This class contains a list of basic blocks and a link to the parent operation it is attached to.
Definition Region.h:26
Include the generated interface declarations.
@ Aggressive
Run extra simplificiations (e.g.
@ Normal
Run the normal simplification (e.g. dead args elimination).
@ Disabled
Disable region control-flow simplification.
LogicalResult applyPatternsGreedily(Region &region, const FrozenRewritePatternSet &patterns, GreedyRewriteConfig config=GreedyRewriteConfig(), bool *changed=nullptr)
Rewrite ops in the given region, which must be isolated from above, by repeatedly applying the highes...
LogicalResult applyOpPatternsGreedily(ArrayRef< Operation * > ops, const FrozenRewritePatternSet &patterns, GreedyRewriteConfig config=GreedyRewriteConfig(), bool *changed=nullptr, bool *allErased=nullptr)
Rewrite the specified ops by repeatedly applying the highest benefit patterns in a greedy worklist dr...
GreedyRewriteStrictness
This enum controls which ops are put on the worklist during a greedy pattern rewrite.
@ ExistingOps
Only pre-existing ops are processed.
@ ExistingAndNewOps
Only pre-existing and newly created ops are processed.
@ AnyOp
No restrictions wrt. which ops are processed.