Home
last modified time | relevance | path

Searched refs:DebugFlag (Results 1 – 16 of 16) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Support/
H A DDebug.cpp45 bool DebugFlag = false; variable
88 cl::Hidden, cl::location(DebugFlag)); in call()
117 DebugFlag = true; in operator =()
170 (!EnableDebugBuffering || !DebugFlag) ? 0 : *DebugBufferSize) { in dbgs()
171 if (EnableDebugBuffering && DebugFlag && *DebugBufferSize != 0) in dbgs()
/llvm-project-15.0.7/mlir/lib/CAPI/Debug/
H A DDebug.cpp16 void mlirEnableGlobalDebug(bool enable) { llvm::DebugFlag = enable; } in mlirEnableGlobalDebug()
18 bool mlirIsGlobalDebugEnabled() { return llvm::DebugFlag; } in mlirIsGlobalDebugEnabled()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DDebug.h65 do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType(TYPE)) { X; } \
79 extern bool DebugFlag;
/llvm-project-15.0.7/llvm/unittests/Support/
H A DDebugTest.cpp22 llvm::DebugFlag = true; in TEST()
/llvm-project-15.0.7/llvm/tools/llvm-jitlink/llvm-jitlink-executor/
H A Dllvm-jitlink-executor.cpp130 DebugFlag = true; in main()
/llvm-project-15.0.7/mlir/lib/Dialect/Affine/Transforms/
H A DLoopTiling.cpp174 if (llvm::DebugFlag) { in runOnOperation()
/llvm-project-15.0.7/bolt/lib/Passes/
H A DReorderFunctions.cpp143 if (!DebugFlag || !isCurrentDebugType("hfsort")) in reorder()
153 (DebugFlag && isCurrentDebugType("hfsort") && opts::Verbosity > 0); in reorder()
H A DRegAnalysis.cpp67 if (!DebugFlag || !isCurrentDebugType(DEBUG_TYPE)) in RegAnalysis()
H A DBinaryFunctionCallGraph.cpp260 bool PrintInfo = DebugFlag && isCurrentDebugType("callgraph"); in buildCallGraph()
/llvm-project-15.0.7/llvm/lib/Target/CSKY/MCTargetDesc/
H A DCSKYInstPrinter.cpp64 DebugFlag = true; in applyTargetSpecificCLOption()
/llvm-project-15.0.7/llvm/docs/
H A DCommandLine.rst877 // DebugFlag.h - Get access to the '-debug' command line option
880 // DebugFlag - This boolean is set to true if the '-debug' command line option
884 extern bool DebugFlag;
893 #define LLVM_DEBUG(X) do { if (DebugFlag) { X; } } while (0)
897 ``DebugFlag`` explicitly if they want to. Now we just need to be able to set
898 the ``DebugFlag`` boolean when the option is set. To do this, we pass an
904 bool DebugFlag; // the actual value
906 Debug("debug", cl::desc("Enable debug output"), cl::Hidden, cl::location(DebugFlag));
911 attribute, so that ``DebugFlag`` is automatically set.
1739 library. Examples of this include the ``llvm::DebugFlag`` exported by the
H A DProgrammersManual.rst1175 disable it directly in gdb. Just use "``set DebugFlag=0``" or "``set
1176 DebugFlag=1``" from the gdb if the program is running. If the program hasn't
/llvm-project-15.0.7/llvm/tools/llvm-ml/
H A Dllvm-ml.cpp250 DebugFlag = true; in main()
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/
H A DHexagonGenInsert.cpp85 return DebugFlag && isCurrentDebugType(DEBUG_TYPE); in isDebug()
H A DHexagonConstPropagation.cpp2798 bool Debugging = DebugFlag && isCurrentDebugType(DEBUG_TYPE); in rewriteHexConstDefs()
/llvm-project-15.0.7/mlir/lib/Dialect/Affine/Utils/
H A DLoopUtils.cpp2541 if (llvm::DebugFlag && (forOp = dyn_cast<AffineForOp>(&*begin))) { in affineDataCopyGenerate()