Home
last modified time | relevance | path

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

/external/llvm/lib/Support/
DDebug.cpp35 bool llvm::DebugFlag; // DebugFlag - Exported boolean set by the -debug option member in llvm
41 cl::location(DebugFlag));
59 DebugFlag |= !Val.empty(); in operator =()
108 (!EnableDebugBuffering || !DebugFlag) ? 0 : DebugBufferSize) { in dbgs()
109 if (EnableDebugBuffering && DebugFlag && DebugBufferSize != 0) in dbgs()
/external/llvm/include/llvm/Support/
DDebug.h44 extern bool DebugFlag;
68 do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType(TYPE)) { X; } \
/external/llvm/docs/
DCommandLine.rst881 // DebugFlag.h - Get access to the '-debug' command line option
884 // DebugFlag - This boolean is set to true if the '-debug' command line option
888 extern bool DebugFlag;
897 #define DEBUG(X) do { if (DebugFlag) { X; } } while (0)
901 ``DebugFlag`` explicitly if they want to. Now we just need to be able to set
902 the ``DebugFlag`` boolean when the option is set. To do this, we pass an
908 bool DebugFlag; // the actual value
910 Debug("debug", cl::desc("Enable debug output"), cl::Hidden, cl::location(DebugFlag));
915 attribute, so that ``DebugFlag`` is automatically set.
1729 library. Examples of this include the ``llvm::DebugFlag`` exported by the
DProgrammersManual.rst306 disable it directly in gdb. Just use "``set DebugFlag=0``" or "``set
307 DebugFlag=1``" from the gdb if the program is running. If the program hasn't
/external/llvm/tools/llvm-objdump/
DMachODump.cpp285 raw_ostream &DebugOut = DebugFlag ? dbgs() : nulls(); in DisassembleInputMachO2()
Dllvm-objdump.cpp462 raw_ostream &DebugOut = DebugFlag ? dbgs() : nulls(); in DisassembleObject()