@@ -141,7 +141,8 @@ void IRPrinterInstrumentation::runBeforePass(Pass *pass, Operation *op) {
141
141
142
142
config->printBeforeIfEnabled (pass, op, [&](raw_ostream &out) {
143
143
out << formatv (" // *** IR Dump Before {0} ***" , pass->getName ());
144
- printIR (op, config->shouldPrintAtModuleScope (), out, OpPrintingFlags ());
144
+ printIR (op, config->shouldPrintAtModuleScope (), out,
145
+ config->getOpPrintingFlags ());
145
146
out << " \n\n " ;
146
147
});
147
148
}
@@ -165,7 +166,8 @@ void IRPrinterInstrumentation::runAfterPass(Pass *pass, Operation *op) {
165
166
166
167
config->printAfterIfEnabled (pass, op, [&](raw_ostream &out) {
167
168
out << formatv (" // *** IR Dump After {0} ***" , pass->getName ());
168
- printIR (op, config->shouldPrintAtModuleScope (), out, OpPrintingFlags ());
169
+ printIR (op, config->shouldPrintAtModuleScope (), out,
170
+ config->getOpPrintingFlags ());
169
171
out << " \n\n " ;
170
172
});
171
173
}
@@ -190,9 +192,11 @@ void IRPrinterInstrumentation::runAfterPassFailed(Pass *pass, Operation *op) {
190
192
191
193
// / Initialize the configuration.
192
194
PassManager::IRPrinterConfig::IRPrinterConfig (bool printModuleScope,
193
- bool printAfterOnlyOnChange)
195
+ bool printAfterOnlyOnChange,
196
+ OpPrintingFlags opPrintingFlags)
194
197
: printModuleScope(printModuleScope),
195
- printAfterOnlyOnChange(printAfterOnlyOnChange) {}
198
+ printAfterOnlyOnChange(printAfterOnlyOnChange),
199
+ opPrintingFlags(opPrintingFlags) {}
196
200
PassManager::IRPrinterConfig::~IRPrinterConfig () {}
197
201
198
202
// / A hook that may be overridden by a derived config that checks if the IR
@@ -223,8 +227,10 @@ struct BasicIRPrinterConfig : public PassManager::IRPrinterConfig {
223
227
BasicIRPrinterConfig (
224
228
std::function<bool (Pass *, Operation *)> shouldPrintBeforePass,
225
229
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),
228
234
shouldPrintBeforePass (shouldPrintBeforePass),
229
235
shouldPrintAfterPass(shouldPrintAfterPass), out(out) {
230
236
assert ((shouldPrintBeforePass || shouldPrintAfterPass) &&
@@ -267,8 +273,9 @@ void PassManager::enableIRPrinting(std::unique_ptr<IRPrinterConfig> config) {
267
273
void PassManager::enableIRPrinting (
268
274
std::function<bool (Pass *, Operation *)> shouldPrintBeforePass,
269
275
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) {
271
278
enableIRPrinting (std::make_unique<BasicIRPrinterConfig>(
272
279
std::move (shouldPrintBeforePass), std::move (shouldPrintAfterPass),
273
- printModuleScope, printAfterOnlyOnChange, out));
280
+ printModuleScope, printAfterOnlyOnChange, opPrintingFlags, out));
274
281
}
0 commit comments