Provide dbgs(), a circular-buffering debug output stream. By default it

simply passes output to errs().  If -debug-buffer-size=N is set N > 0,
dbgs() buffers its output until program termination and dumps the last N
characters sent to it.  This is handy when debugging very large inputs.

llvm-svn: 92002
This commit is contained in:
David Greene 2009-12-23 16:39:06 +00:00
parent 7ffbb50edf
commit 64506db8e8
2 changed files with 73 additions and 4 deletions

View File

@ -28,6 +28,8 @@
namespace llvm { namespace llvm {
class raw_ostream;
/// DEBUG_TYPE macro - Files can specify a DEBUG_TYPE as a string, which causes /// DEBUG_TYPE macro - Files can specify a DEBUG_TYPE as a string, which causes
/// all of their DEBUG statements to be activatable with -debug-only=thatstring. /// all of their DEBUG statements to be activatable with -debug-only=thatstring.
#ifndef DEBUG_TYPE #ifndef DEBUG_TYPE
@ -58,7 +60,7 @@ void SetCurrentDebugType(const char *Type);
/// this is a debug build, then the code specified as the option to the macro /// this is a debug build, then the code specified as the option to the macro
/// will be executed. Otherwise it will not be. Example: /// will be executed. Otherwise it will not be. Example:
/// ///
/// DEBUG_WITH_TYPE("bitset", errs() << "Bitset contains: " << Bitset << "\n"); /// DEBUG_WITH_TYPE("bitset", dbgs() << "Bitset contains: " << Bitset << "\n");
/// ///
/// This will emit the debug information if -debug is present, and -debug-only /// This will emit the debug information if -debug is present, and -debug-only
/// is not specified, or is specified as "bitset". /// is not specified, or is specified as "bitset".
@ -72,15 +74,28 @@ void SetCurrentDebugType(const char *Type);
#define DEBUG_WITH_TYPE(TYPE, X) do { } while (0) #define DEBUG_WITH_TYPE(TYPE, X) do { } while (0)
#endif #endif
/// EnableDebugBuffering - This defaults to false. If true, the debug
/// stream will install signal handlers to dump any buffered debug
/// output. It allows clients to selectively allow the debug stream
/// to install signal handlers if they are certain there will be no
/// conflict.
///
extern bool EnableDebugBuffering;
/// dbgs() - This returns a reference to a raw_ostream for debugging
/// messages. If debugging is disabled it returns dbgs(). Use it
/// like: dbgs() << "foo" << "bar";
raw_ostream &dbgs();
// DEBUG macro - This macro should be used by passes to emit debug information. // DEBUG macro - This macro should be used by passes to emit debug information.
// In the '-debug' option is specified on the commandline, and if this is a // In the '-debug' option is specified on the commandline, and if this is a
// debug build, then the code specified as the option to the macro will be // debug build, then the code specified as the option to the macro will be
// executed. Otherwise it will not be. Example: // executed. Otherwise it will not be. Example:
// //
// DEBUG(errs() << "Bitset contains: " << Bitset << "\n"); // DEBUG(dbgs() << "Bitset contains: " << Bitset << "\n");
// //
#define DEBUG(X) DEBUG_WITH_TYPE(DEBUG_TYPE, X) #define DEBUG(X) DEBUG_WITH_TYPE(DEBUG_TYPE, X)
} // End llvm namespace } // End llvm namespace
#endif #endif

View File

@ -25,6 +25,9 @@
#include "llvm/Support/CommandLine.h" #include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h" #include "llvm/Support/Debug.h"
#include "llvm/Support/circular_raw_ostream.h"
#include "llvm/System/Signals.h"
using namespace llvm; using namespace llvm;
// All Debug.h functionality is a no-op in NDEBUG mode. // All Debug.h functionality is a no-op in NDEBUG mode.
@ -37,6 +40,16 @@ static cl::opt<bool, true>
Debug("debug", cl::desc("Enable debug output"), cl::Hidden, Debug("debug", cl::desc("Enable debug output"), cl::Hidden,
cl::location(DebugFlag)); cl::location(DebugFlag));
// -debug-buffer-size - Buffer the last N characters of debug output
//until program termination.
static cl::opt<unsigned>
DebugBufferSize("debug-buffer-size",
cl::desc("Buffer the last N characters of debug output"
"until program termination. "
"[default 0 -- immediate print-out]"),
cl::Hidden,
cl::init(0));
static std::string CurrentDebugType; static std::string CurrentDebugType;
static struct DebugOnlyOpt { static struct DebugOnlyOpt {
void operator=(const std::string &Val) const { void operator=(const std::string &Val) const {
@ -50,6 +63,18 @@ DebugOnly("debug-only", cl::desc("Enable a specific type of debug output"),
cl::Hidden, cl::value_desc("debug string"), cl::Hidden, cl::value_desc("debug string"),
cl::location(DebugOnlyOptLoc), cl::ValueRequired); cl::location(DebugOnlyOptLoc), cl::ValueRequired);
// Signal handlers - dump debug output on termination.
static void debug_user_sig_handler(void *Cookie)
{
// This is a bit sneaky. Since this is under #ifndef NDEBUG, we
// know that debug mode is enabled and dbgs() really is a
// circular_raw_ostream. If NDEBUG is defined, then dbgs() ==
// errs() but this will never be invoked.
llvm::circular_raw_ostream *dbgout =
static_cast<llvm::circular_raw_ostream *>(&llvm::dbgs());
dbgout->flushBufferWithBanner();
}
// isCurrentDebugType - Return true if the specified string is the debug type // isCurrentDebugType - Return true if the specified string is the debug type
// specified on the command line, or if none was specified on the command line // specified on the command line, or if none was specified on the command line
// with the -debug-only=X option. // with the -debug-only=X option.
@ -66,9 +91,38 @@ void llvm::SetCurrentDebugType(const char *Type) {
CurrentDebugType = Type; CurrentDebugType = Type;
} }
/// dbgs - Return a circular-buffered debug stream.
raw_ostream &llvm::dbgs() {
// Do one-time initialization in a thread-safe way.
static struct dbgstream {
circular_raw_ostream strm;
dbgstream() :
strm(errs(), "*** Debug Log Output ***\n",
(!EnableDebugBuffering || !DebugFlag) ? 0 : DebugBufferSize) {
if (EnableDebugBuffering && DebugFlag && DebugBufferSize != 0)
// TODO: Add a handler for SIGUSER1-type signals so the user can
// force a debug dump.
sys::AddSignalHandler(&debug_user_sig_handler, 0);
// Otherwise we've already set the debug stream buffer size to
// zero, disabling buffering.
}
} thestrm;
return thestrm.strm;
}
#else #else
// Avoid "has no symbols" warning. // Avoid "has no symbols" warning.
namespace llvm { namespace llvm {
int Debug_dummy = 0; /// dbgs - Return dbgs().
raw_ostream &dbgs() {
return dbgs();
}
} }
#endif #endif
/// EnableDebugBuffering - Turn on signal handler installation.
///
bool llvm::EnableDebugBuffering = false;