Home
last modified time | relevance | path

Searched refs:DebugLogging (Results 1 – 6 of 6) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Passes/
H A DPassBuilderBindings.cpp29 bool DebugLogging = false, bool VerifyEach = false, in LLVMPassBuilderOptions() argument
31 : DebugLogging(DebugLogging), VerifyEach(VerifyEach), PTO(PTO) {} in LLVMPassBuilderOptions()
33 bool DebugLogging; member in llvm::LLVMPassBuilderOptions
51 bool Debug = PassOpts->DebugLogging; in DEFINE_SIMPLE_CONVERSION_FUNCTIONS()
92 LLVMBool DebugLogging) { in LLVMPassBuilderOptionsSetDebugLogging() argument
93 unwrap(Options)->DebugLogging = DebugLogging; in LLVMPassBuilderOptionsSetDebugLogging()
H A DStandardInstrumentations.cpp804 if (!ShouldRun && DebugLogging) { in shouldRun()
1142 if (DebugLogging) in registerCallbacks()
1156 if (DebugLogging) in registerCallbacks()
2094 LLVMContext &Context, bool DebugLogging, bool VerifyEach, in StandardInstrumentations() argument
2096 : PrintPass(DebugLogging, PrintPassOpts), in StandardInstrumentations()
2097 OptNone(DebugLogging), in StandardInstrumentations()
2105 Verify(DebugLogging), VerifyEach(VerifyEach) {} in StandardInstrumentations()
/openbsd-src/gnu/llvm/llvm/include/llvm/Passes/
H A DStandardInstrumentations.h69 OptNoneInstrumentation(bool DebugLogging) : DebugLogging(DebugLogging) {} in OptNoneInstrumentation() argument
73 bool DebugLogging;
431 bool DebugLogging; variable
434 VerifyInstrumentation(bool DebugLogging) : DebugLogging(DebugLogging) {} in VerifyInstrumentation() argument
571 StandardInstrumentations(LLVMContext &Context, bool DebugLogging,
/openbsd-src/gnu/llvm/llvm/tools/opt/
H A DNewPMDriver.cpp68 enum class DebugLogging { None, Normal, Verbose, Quiet }; enum
70 static cl::opt<DebugLogging> DebugPM(
73 cl::init(DebugLogging::None),
75 clEnumValN(DebugLogging::Normal, "", ""),
76 clEnumValN(DebugLogging::Quiet, "quiet",
79 DebugLogging::Verbose, "verbose",
390 PrintPassOpts.Verbose = DebugPM == DebugLogging::Verbose; in runPassPipeline()
391 PrintPassOpts.SkipAnalyses = DebugPM == DebugLogging::Quiet; in runPassPipeline()
392 StandardInstrumentations SI(M.getContext(), DebugPM != DebugLogging::None, in runPassPipeline()
/openbsd-src/gnu/llvm/llvm/include/llvm-c/Transforms/
H A DPassBuilder.h73 LLVMBool DebugLogging);
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DMachinePassManager.h137 MachineFunctionPassManager(bool DebugLogging = false,