-
Notifications
You must be signed in to change notification settings - Fork 13.3k
/
Copy pathCompositePass.cpp
105 lines (83 loc) · 3.08 KB
/
CompositePass.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
//===- CompositePass.cpp - Composite pass code ----------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// CompositePass allows to run set of passes until fixed point is reached.
//
//===----------------------------------------------------------------------===//
#include "mlir/Transforms/Passes.h"
#include "mlir/Pass/Pass.h"
#include "mlir/Pass/PassManager.h"
namespace mlir {
#define GEN_PASS_DEF_COMPOSITEFIXEDPOINTPASS
#include "mlir/Transforms/Passes.h.inc"
} // namespace mlir
using namespace mlir;
namespace {
struct CompositeFixedPointPass final
: public impl::CompositeFixedPointPassBase<CompositeFixedPointPass> {
using CompositeFixedPointPassBase::CompositeFixedPointPassBase;
CompositeFixedPointPass(
std::string name_, llvm::function_ref<void(OpPassManager &)> populateFunc,
int maxIterations) {
name = std::move(name_);
maxIter = maxIterations;
populateFunc(dynamicPM);
llvm::raw_string_ostream os(pipelineStr);
dynamicPM.printAsTextualPipeline(os);
}
LogicalResult initializeOptions(
StringRef options,
function_ref<LogicalResult(const Twine &)> errorHandler) override {
if (failed(CompositeFixedPointPassBase::initializeOptions(options,
errorHandler)))
return failure();
if (failed(parsePassPipeline(pipelineStr, dynamicPM)))
return errorHandler("Failed to parse composite pass pipeline");
return success();
}
LogicalResult initialize(MLIRContext *context) override {
if (maxIter <= 0)
return emitError(UnknownLoc::get(context))
<< "Invalid maxIterations value: " << maxIter << "\n";
return success();
}
void getDependentDialects(DialectRegistry ®istry) const override {
dynamicPM.getDependentDialects(registry);
}
void runOnOperation() override {
auto op = getOperation();
OperationFingerPrint fp(op);
int currentIter = 0;
int maxIterVal = maxIter;
while (true) {
if (failed(runPipeline(dynamicPM, op)))
return signalPassFailure();
if (currentIter++ >= maxIterVal) {
op->emitWarning("Composite pass \"" + llvm::Twine(name) +
"\"+ didn't converge in " + llvm::Twine(maxIterVal) +
" iterations");
break;
}
OperationFingerPrint newFp(op);
if (newFp == fp)
break;
fp = newFp;
}
}
protected:
llvm::StringRef getName() const override { return name; }
private:
OpPassManager dynamicPM;
};
} // namespace
std::unique_ptr<Pass> mlir::createCompositeFixedPointPass(
std::string name, llvm::function_ref<void(OpPassManager &)> populateFunc,
int maxIterations) {
return std::make_unique<CompositeFixedPointPass>(std::move(name),
populateFunc, maxIterations);
}