CIRCT 22.0.0git
Loading...
Searching...
No Matches
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/Dialect/Affine/IR/AffineOps.h"
18#include "mlir/IR/BuiltinOps.h"
19#include "mlir/Pass/Pass.h"
20#include <limits>
21
22namespace circt {
23
24//===----------------------------------------------------------------------===//
25// Passes
26//===----------------------------------------------------------------------===//
27
28#define GEN_PASS_DECL
29
31 // Specify the format for op count data emission
34 JSON
35};
36
37#include "circt/Transforms/Passes.h.inc"
38
39void populateArithToCombPatterns(mlir::RewritePatternSet &patterns,
40 TypeConverter &typeConverter);
41
42std::unique_ptr<mlir::Pass> createMapArithToCombPass();
43std::unique_ptr<mlir::Pass> createConvertIndexToUIntPass();
44std::unique_ptr<mlir::Pass> createFlattenMemRefPass();
45std::unique_ptr<mlir::Pass> createFlattenMemRefCallsPass();
46std::unique_ptr<mlir::Pass> createStripDebugInfoWithPredPass(
47 const std::function<bool(mlir::Location)> &pred);
48std::unique_ptr<mlir::Pass> createMaximizeSSAPass();
49std::unique_ptr<mlir::Pass> createInsertMergeBlocksPass();
50std::unique_ptr<mlir::Pass> createPrintOpCountPass();
51std::unique_ptr<mlir::Pass>
52createMemoryBankingPass(ArrayRef<unsigned> bankingFactors = {},
53 ArrayRef<unsigned> bankingDimensions = {});
54std::unique_ptr<mlir::Pass> createIndexSwitchToIfPass();
55std::unique_ptr<mlir::Pass> createHierarchicalRunner(
56 const std::string &topName,
57 llvm::function_ref<void(mlir::OpPassManager &)> pipeline,
58 bool includeBoundInstances = false);
59
60//===----------------------------------------------------------------------===//
61// Utility functions.
62//===----------------------------------------------------------------------===//
63
64// Returns true if the provided memref is considered unidimensional (having a
65// shape of size 1).
66bool isUniDimensional(mlir::MemRefType memref);
67
68// Returns true if the region is into maximal SSA form i.e., if all the values
69// within the region are in maximal SSA form.
70bool isRegionSSAMaximized(Region &region);
71
72/// Strategy class to control the behavior of SSA maximization. The class
73/// exposes overridable filter functions to dynamically select which blocks,
74/// block arguments, operations, and operation results should be put into
75/// maximal SSA form. All filter functions should return true whenever the
76/// entity they operate on should be considered for SSA maximization. By
77/// default, all filter functions always return true.
79public:
80 /// Determines whether a block should have the values it defines (i.e., block
81 /// arguments and operation results within the block) SSA maximized.
82 virtual bool maximizeBlock(Block *block);
83 /// Determines whether a block argument should be SSA maximized.
84 virtual bool maximizeArgument(BlockArgument arg);
85 /// Determines whether an operation should have its results SSA maximized.
86 virtual bool maximizeOp(Operation *op);
87 /// Determines whether an operation's result should be SSA maximized.
88 virtual bool maximizeResult(OpResult res);
89
90 virtual ~SSAMaximizationStrategy() = default;
91};
92
93/// Converts a single value within a function into maximal SSA form. This
94/// removes any implicit dataflow of this specific value within the enclosing
95/// function. The function adds new block arguments wherever necessary to carry
96/// the value explicitly between blocks.
97/// Succeeds when it was possible to convert the value into maximal SSA form.
98LogicalResult maximizeSSA(Value value, PatternRewriter &rewriter);
99
100/// Considers all of an operation's results for SSA maximization, following a
101/// provided strategy. This removes any implicit dataflow of the selected
102/// operation's results within the enclosing function. The function adds new
103/// block arguments wherever necessary to carry the results explicitly between
104/// blocks. Succeeds when it was possible to convert the selected operation's
105/// results into maximal SSA form.
106LogicalResult maximizeSSA(Operation *op, SSAMaximizationStrategy &strategy,
107 PatternRewriter &rewriter);
108
109/// Considers all values defined by a block (i.e., block arguments and operation
110/// results within the block) for SSA maximization, following a provided
111/// strategy. This removes any implicit dataflow of the selected values within
112/// the enclosing function. The function adds new block arguments wherever
113/// necessary to carry the values explicitly between blocks. Succeeds when it
114/// was possible to convert the selected values defined by the block into
115/// maximal SSA form.
116LogicalResult maximizeSSA(Block *block, SSAMaximizationStrategy &strategy,
117 PatternRewriter &rewriter);
118
119/// Considers all blocks within a region for SSA maximization, following a
120/// provided strategy. This removes any implicit dataflow of the values defined
121/// by selected blocks within the region. The function adds new block arguments
122/// wherever necessary to carry the region's values explicitly between blocks.
123/// Succeeds when it was possible to convert all of the values defined by
124/// selected blocks into maximal SSA form.
125LogicalResult maximizeSSA(Region &region, SSAMaximizationStrategy &strategy,
126 PatternRewriter &rewriter);
127
128/// Manually run merge block insertion on a region.
129///
130/// This transformation does treat loops like a single block and thus does not
131/// affect them.
132LogicalResult insertMergeBlocks(mlir::Region &r,
133 mlir::ConversionPatternRewriter &rewriter);
134
135//===----------------------------------------------------------------------===//
136// Registration
137//===----------------------------------------------------------------------===//
138
139/// Generate the code for registering passes.
140#define GEN_PASS_REGISTRATION
141#include "circt/Transforms/Passes.h.inc"
142
143} // namespace circt
144
145#endif // CIRCT_TRANSFORMS_PASSES_H
Strategy strategy
Strategy class to control the behavior of SSA maximization.
Definition Passes.h:78
virtual bool maximizeResult(OpResult res)
Determines whether an operation's result should be SSA maximized.
virtual ~SSAMaximizationStrategy()=default
virtual bool maximizeArgument(BlockArgument arg)
Determines whether a block argument should be SSA maximized.
virtual bool maximizeBlock(Block *block)
Determines whether a block should have the values it defines (i.e., block arguments and operation res...
virtual bool maximizeOp(Operation *op)
Determines whether an operation should have its results SSA maximized.
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.
std::unique_ptr< mlir::Pass > createMaximizeSSAPass()
std::unique_ptr< mlir::Pass > createPrintOpCountPass()
std::unique_ptr< mlir::Pass > createHierarchicalRunner(const std::string &topName, llvm::function_ref< void(mlir::OpPassManager &)> pipeline, bool includeBoundInstances=false)
std::unique_ptr< mlir::Pass > createInsertMergeBlocksPass()
std::unique_ptr< mlir::Pass > createIndexSwitchToIfPass()
std::unique_ptr< mlir::Pass > createMemoryBankingPass(ArrayRef< unsigned > bankingFactors={}, ArrayRef< unsigned > bankingDimensions={})
void populateArithToCombPatterns(mlir::RewritePatternSet &patterns, TypeConverter &typeConverter)
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.
std::unique_ptr< mlir::Pass > createFlattenMemRefPass()
OpCountEmissionFormat
Definition Passes.h:30
bool isUniDimensional(mlir::MemRefType memref)
std::unique_ptr< mlir::Pass > createConvertIndexToUIntPass()
bool isRegionSSAMaximized(Region &region)
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.