Searched refs:DebugFlag (Results 1 – 6 of 6) sorted by relevance
35 bool llvm::DebugFlag; // DebugFlag - Exported boolean set by the -debug option member in llvm41 cl::location(DebugFlag));59 DebugFlag |= !Val.empty(); in operator =()108 (!EnableDebugBuffering || !DebugFlag) ? 0 : DebugBufferSize) { in dbgs()109 if (EnableDebugBuffering && DebugFlag && DebugBufferSize != 0) in dbgs()
44 extern bool DebugFlag;68 do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType(TYPE)) { X; } \
881 // DebugFlag.h - Get access to the '-debug' command line option884 // DebugFlag - This boolean is set to true if the '-debug' command line option888 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 set902 the ``DebugFlag`` boolean when the option is set. To do this, we pass an908 bool DebugFlag; // the actual value910 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
306 disable it directly in gdb. Just use "``set DebugFlag=0``" or "``set307 DebugFlag=1``" from the gdb if the program is running. If the program hasn't
285 raw_ostream &DebugOut = DebugFlag ? dbgs() : nulls(); in DisassembleInputMachO2()
462 raw_ostream &DebugOut = DebugFlag ? dbgs() : nulls(); in DisassembleObject()