Skip to content

Commit 86ae0dd

Browse files
committed
[MLIR] Add OpPrintingFlags to IRPrinterConfig.
- This will enable tweaking IR printing options when enabling printing (for ex, tweak elideLargeElementsAttrs to create smaller IR logs) Differential Revision: https://reviews.llvm.org/D83930
1 parent 1d3f61f commit 86ae0dd

File tree

2 files changed

+31
-11
lines changed

2 files changed

+31
-11
lines changed

mlir/include/mlir/Pass/PassManager.h

+16-3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#ifndef MLIR_PASS_PASSMANAGER_H
1010
#define MLIR_PASS_PASSMANAGER_H
1111

12+
#include "mlir/IR/OperationSupport.h"
1213
#include "mlir/Support/LogicalResult.h"
1314
#include "llvm/ADT/Optional.h"
1415
#include "llvm/ADT/SmallVector.h"
@@ -172,8 +173,11 @@ class PassManager : public OpPassManager {
172173
/// pass, in the case of a non-failure, we should first check if any
173174
/// potential mutations were made. This allows for reducing the number of
174175
/// logs that don't contain meaningful changes.
175-
explicit IRPrinterConfig(bool printModuleScope = false,
176-
bool printAfterOnlyOnChange = false);
176+
/// * 'opPrintingFlags' sets up the printing flags to use when printing the
177+
/// IR.
178+
explicit IRPrinterConfig(
179+
bool printModuleScope = false, bool printAfterOnlyOnChange = false,
180+
OpPrintingFlags opPrintingFlags = OpPrintingFlags());
177181
virtual ~IRPrinterConfig();
178182

179183
/// A hook that may be overridden by a derived config that checks if the IR
@@ -197,13 +201,19 @@ class PassManager : public OpPassManager {
197201
/// "changed".
198202
bool shouldPrintAfterOnlyOnChange() const { return printAfterOnlyOnChange; }
199203

204+
/// Returns the printing flags to be used to print the IR.
205+
OpPrintingFlags getOpPrintingFlags() const { return opPrintingFlags; }
206+
200207
private:
201208
/// A flag that indicates if the IR should be printed at module scope.
202209
bool printModuleScope;
203210

204211
/// A flag that indicates that the IR after a pass should only be printed if
205212
/// a change is detected.
206213
bool printAfterOnlyOnChange;
214+
215+
/// Flags to control printing behavior.
216+
OpPrintingFlags opPrintingFlags;
207217
};
208218

209219
/// Add an instrumentation to print the IR before and after pass execution,
@@ -220,14 +230,17 @@ class PassManager : public OpPassManager {
220230
/// * 'printAfterOnlyOnChange' signals that when printing the IR after a
221231
/// pass, in the case of a non-failure, we should first check if any
222232
/// potential mutations were made.
233+
/// * 'opPrintingFlags' sets up the printing flags to use when printing the
234+
/// IR.
223235
/// * 'out' corresponds to the stream to output the printed IR to.
224236
void enableIRPrinting(
225237
std::function<bool(Pass *, Operation *)> shouldPrintBeforePass =
226238
[](Pass *, Operation *) { return true; },
227239
std::function<bool(Pass *, Operation *)> shouldPrintAfterPass =
228240
[](Pass *, Operation *) { return true; },
229241
bool printModuleScope = true, bool printAfterOnlyOnChange = true,
230-
raw_ostream &out = llvm::errs());
242+
raw_ostream &out = llvm::errs(),
243+
OpPrintingFlags opPrintingFlags = OpPrintingFlags());
231244

232245
//===--------------------------------------------------------------------===//
233246
// Pass Timing

mlir/lib/Pass/IRPrinting.cpp

+15-8
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,8 @@ void IRPrinterInstrumentation::runBeforePass(Pass *pass, Operation *op) {
141141

142142
config->printBeforeIfEnabled(pass, op, [&](raw_ostream &out) {
143143
out << formatv("// *** IR Dump Before {0} ***", pass->getName());
144-
printIR(op, config->shouldPrintAtModuleScope(), out, OpPrintingFlags());
144+
printIR(op, config->shouldPrintAtModuleScope(), out,
145+
config->getOpPrintingFlags());
145146
out << "\n\n";
146147
});
147148
}
@@ -165,7 +166,8 @@ void IRPrinterInstrumentation::runAfterPass(Pass *pass, Operation *op) {
165166

166167
config->printAfterIfEnabled(pass, op, [&](raw_ostream &out) {
167168
out << formatv("// *** IR Dump After {0} ***", pass->getName());
168-
printIR(op, config->shouldPrintAtModuleScope(), out, OpPrintingFlags());
169+
printIR(op, config->shouldPrintAtModuleScope(), out,
170+
config->getOpPrintingFlags());
169171
out << "\n\n";
170172
});
171173
}
@@ -190,9 +192,11 @@ void IRPrinterInstrumentation::runAfterPassFailed(Pass *pass, Operation *op) {
190192

191193
/// Initialize the configuration.
192194
PassManager::IRPrinterConfig::IRPrinterConfig(bool printModuleScope,
193-
bool printAfterOnlyOnChange)
195+
bool printAfterOnlyOnChange,
196+
OpPrintingFlags opPrintingFlags)
194197
: printModuleScope(printModuleScope),
195-
printAfterOnlyOnChange(printAfterOnlyOnChange) {}
198+
printAfterOnlyOnChange(printAfterOnlyOnChange),
199+
opPrintingFlags(opPrintingFlags) {}
196200
PassManager::IRPrinterConfig::~IRPrinterConfig() {}
197201

198202
/// A hook that may be overridden by a derived config that checks if the IR
@@ -223,8 +227,10 @@ struct BasicIRPrinterConfig : public PassManager::IRPrinterConfig {
223227
BasicIRPrinterConfig(
224228
std::function<bool(Pass *, Operation *)> shouldPrintBeforePass,
225229
std::function<bool(Pass *, Operation *)> shouldPrintAfterPass,
226-
bool printModuleScope, bool printAfterOnlyOnChange, raw_ostream &out)
227-
: IRPrinterConfig(printModuleScope, printAfterOnlyOnChange),
230+
bool printModuleScope, bool printAfterOnlyOnChange,
231+
OpPrintingFlags opPrintingFlags, raw_ostream &out)
232+
: IRPrinterConfig(printModuleScope, printAfterOnlyOnChange,
233+
opPrintingFlags),
228234
shouldPrintBeforePass(shouldPrintBeforePass),
229235
shouldPrintAfterPass(shouldPrintAfterPass), out(out) {
230236
assert((shouldPrintBeforePass || shouldPrintAfterPass) &&
@@ -267,8 +273,9 @@ void PassManager::enableIRPrinting(std::unique_ptr<IRPrinterConfig> config) {
267273
void PassManager::enableIRPrinting(
268274
std::function<bool(Pass *, Operation *)> shouldPrintBeforePass,
269275
std::function<bool(Pass *, Operation *)> shouldPrintAfterPass,
270-
bool printModuleScope, bool printAfterOnlyOnChange, raw_ostream &out) {
276+
bool printModuleScope, bool printAfterOnlyOnChange, raw_ostream &out,
277+
OpPrintingFlags opPrintingFlags) {
271278
enableIRPrinting(std::make_unique<BasicIRPrinterConfig>(
272279
std::move(shouldPrintBeforePass), std::move(shouldPrintAfterPass),
273-
printModuleScope, printAfterOnlyOnChange, out));
280+
printModuleScope, printAfterOnlyOnChange, opPrintingFlags, out));
274281
}

0 commit comments

Comments
 (0)