Home
last modified time | relevance | path

Searched refs:shouldPrintBeforePass (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Pass/
H A DIRPrinting.cpp223 std::function<bool(Pass *, Operation *)> shouldPrintBeforePass, in BasicIRPrinterConfig()
230 shouldPrintBeforePass(std::move(shouldPrintBeforePass)), in BasicIRPrinterConfig()
232 assert((this->shouldPrintBeforePass || this->shouldPrintAfterPass) && in BasicIRPrinterConfig()
238 if (shouldPrintBeforePass && shouldPrintBeforePass(pass, operation)) in printBeforeIfEnabled()
249 std::function<bool(Pass *, Operation *)> shouldPrintBeforePass; member
270 std::function<bool(Pass *, Operation *)> shouldPrintBeforePass, in enableIRPrinting() argument
276 std::move(shouldPrintBeforePass), std::move(shouldPrintAfterPass), in enableIRPrinting()
H A DPassManagerOptions.cpp88 std::function<bool(Pass *, Operation *)> shouldPrintBeforePass; in addPrinterInstrumentation() local
94 shouldPrintBeforePass = [](Pass *, Operation *) { return true; }; in addPrinterInstrumentation()
98 shouldPrintBeforePass = [&](Pass *pass, Operation *) { in addPrinterInstrumentation()
119 if (!shouldPrintBeforePass && !shouldPrintAfterPass) in addPrinterInstrumentation()
123 pm.enableIRPrinting(shouldPrintBeforePass, shouldPrintAfterPass, in addPrinterInstrumentation()
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DPrintPasses.h39 bool shouldPrintBeforePass(StringRef PassID);
/llvm-project-15.0.7/llvm/lib/IR/
H A DPrintPasses.cpp109 bool llvm::shouldPrintBeforePass(StringRef PassID) { in shouldPrintBeforePass() function in llvm
H A DLegacyPassManager.cpp742 if (PI && !PI->isAnalysis() && shouldPrintBeforePass(PI->getPassArgument())) { in schedulePass()
/llvm-project-15.0.7/mlir/include/mlir/Pass/
H A DPassManager.h369 std::function<bool(Pass *, Operation *)> shouldPrintBeforePass =
/llvm-project-15.0.7/llvm/include/llvm/Passes/
H A DStandardInstrumentations.h52 bool shouldPrintBeforePass(StringRef PassID);
/llvm-project-15.0.7/llvm/lib/Passes/
H A DStandardInstrumentations.cpp729 if (!shouldPrintBeforePass(PassID)) in printBeforePass()
784 bool PrintIRInstrumentation::shouldPrintBeforePass(StringRef PassID) { in shouldPrintBeforePass() function in PrintIRInstrumentation