Lines Matching defs:operation
56 out << " ('" << op->getName() << "' operation";
62 // Find the top-level operation.
148 /// of 'operation' should be dumped *before* the pass 'pass' has been
152 Pass *pass, Operation *operation, PrintCallbackFn printCallback) {
157 /// of 'operation' should be dumped *after* the pass 'pass' has been
161 Pass *pass, Operation *operation, PrintCallbackFn printCallback) {
186 void printBeforeIfEnabled(Pass *pass, Operation *operation,
188 if (shouldPrintBeforePass && shouldPrintBeforePass(pass, operation))
192 void printAfterIfEnabled(Pass *pass, Operation *operation,
194 if (shouldPrintAfterPass && shouldPrintAfterPass(pass, operation))
309 void printBeforeIfEnabled(Pass *pass, Operation *operation,
311 if (!shouldPrintBeforePass || !shouldPrintBeforePass(pass, operation))
314 operation, pass->getArgument(), treeDir, counters);
321 void printAfterIfEnabled(Pass *pass, Operation *operation,
323 if (!shouldPrintAfterPass || !shouldPrintAfterPass(pass, operation))
326 operation, pass->getArgument(), treeDir, counters);