Searched refs:shouldPrintAfterPass (Results 1 – 11 of 11) sorted by relevance
/external/llvm-project/mlir/lib/Pass/ |
D | IRPrinting.cpp | 213 std::function<bool(Pass *, Operation *)> shouldPrintAfterPass, in BasicIRPrinterConfig() 219 shouldPrintAfterPass(shouldPrintAfterPass), out(out) { in BasicIRPrinterConfig() 220 assert((shouldPrintBeforePass || shouldPrintAfterPass) && in BasicIRPrinterConfig() 232 if (shouldPrintAfterPass && shouldPrintAfterPass(pass, operation)) in printAfterIfEnabled() 238 std::function<bool(Pass *, Operation *)> shouldPrintAfterPass; member 259 std::function<bool(Pass *, Operation *)> shouldPrintAfterPass, in enableIRPrinting() argument 263 std::move(shouldPrintBeforePass), std::move(shouldPrintAfterPass), in enableIRPrinting()
|
D | PassManagerOptions.cpp | 101 std::function<bool(Pass *, Operation *)> shouldPrintAfterPass; in addPrinterInstrumentation() local 119 shouldPrintAfterPass = [](Pass *, Operation *) { return true; }; in addPrinterInstrumentation() 123 shouldPrintAfterPass = [&](Pass *pass, Operation *) { in addPrinterInstrumentation() 130 if (!shouldPrintBeforePass && !shouldPrintAfterPass) in addPrinterInstrumentation() 134 pm.enableIRPrinting(shouldPrintBeforePass, shouldPrintAfterPass, in addPrinterInstrumentation()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Passes/ |
D | StandardInstrumentations.cpp | 175 if (StoreModuleDesc && llvm::shouldPrintAfterPass(PassID)) in printBeforePass() 190 if (!llvm::shouldPrintAfterPass(PassID)) in printAfterPass() 201 if (!StoreModuleDesc || !llvm::shouldPrintAfterPass(PassID)) in printAfterPassInvalidated() 225 StoreModuleDesc = llvm::forcePrintModuleIR() && llvm::shouldPrintAfterPass(); in registerCallbacks() 230 if (llvm::shouldPrintAfterPass()) { in registerCallbacks()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | IRPrintingPasses.h | 67 extern bool shouldPrintAfterPass(); 68 extern bool shouldPrintAfterPass(StringRef);
|
/external/llvm-project/llvm/include/llvm/IR/ |
D | PrintPasses.h | 25 bool shouldPrintAfterPass(StringRef PassID);
|
/external/llvm-project/llvm/lib/IR/ |
D | PrintPasses.cpp | 69 bool llvm::shouldPrintAfterPass(StringRef PassID) { in shouldPrintAfterPass() function in llvm
|
D | LegacyPassManager.cpp | 753 if (PI && !PI->isAnalysis() && shouldPrintAfterPass(PI->getPassArgument())) { in schedulePass()
|
/external/llvm-project/llvm/lib/Passes/ |
D | StandardInstrumentations.cpp | 484 if (StoreModuleDesc && shouldPrintAfterPass(PassID)) in printBeforePass() 499 if (!shouldPrintAfterPass(PassID)) in printAfterPass() 511 if (!StoreModuleDesc || !shouldPrintAfterPass(PassName)) in printAfterPassInvalidated() 543 bool PrintIRInstrumentation::shouldPrintAfterPass(StringRef PassID) { in shouldPrintAfterPass() function in PrintIRInstrumentation
|
/external/llvm-project/mlir/include/mlir/Pass/ |
D | PassManager.h | 276 std::function<bool(Pass *, Operation *)> shouldPrintAfterPass =
|
/external/llvm-project/llvm/include/llvm/Passes/ |
D | StandardInstrumentations.h | 51 bool shouldPrintAfterPass(StringRef PassID);
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | LegacyPassManager.cpp | 107 bool llvm::shouldPrintAfterPass() { in shouldPrintAfterPass() function in llvm 126 bool llvm::shouldPrintAfterPass(StringRef PassID) { in shouldPrintAfterPass() function in llvm 743 if (PI && !PI->isAnalysis() && shouldPrintAfterPass(PI->getPassArgument())) { in schedulePass()
|