2003-08-01 22:15:41 +00:00
|
|
|
//===-- Debug.cpp - An easy way to add debug output to your code ----------===//
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2003-08-01 22:15:41 +00:00
|
|
|
//
|
|
|
|
// This file implements a handle way of adding debugging information to your
|
|
|
|
// code, without it being enabled all of the time, and without having to add
|
|
|
|
// command line options to enable it.
|
|
|
|
//
|
|
|
|
// In particular, just wrap your code with the DEBUG() macro, and it will be
|
|
|
|
// enabled automatically if you specify '-debug' on the command-line.
|
|
|
|
// Alternatively, you can also use the SET_DEBUG_TYPE("foo") macro to specify
|
|
|
|
// that your debug code belongs to class "foo". Then, on the command line, you
|
|
|
|
// can specify '-debug-only=foo' to enable JUST the debug information for the
|
|
|
|
// foo class.
|
|
|
|
//
|
|
|
|
// When compiling in release mode, the -debug-* options and all code in DEBUG()
|
|
|
|
// statements disappears, so it does not effect the runtime of the code.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2006-11-17 09:54:47 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
2003-12-14 21:35:53 +00:00
|
|
|
using namespace llvm;
|
2003-08-01 22:15:41 +00:00
|
|
|
|
2003-12-14 21:35:53 +00:00
|
|
|
bool llvm::DebugFlag; // DebugFlag - Exported boolean set by the -debug option
|
2003-08-01 22:15:41 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
#ifndef NDEBUG
|
|
|
|
// -debug - Command line option to enable the DEBUG statements in the passes.
|
|
|
|
// This flag may only be enabled in debug builds.
|
2008-04-23 23:15:23 +00:00
|
|
|
static cl::opt<bool, true>
|
2003-08-01 22:15:41 +00:00
|
|
|
Debug("debug", cl::desc("Enable debug output"), cl::Hidden,
|
|
|
|
cl::location(DebugFlag));
|
|
|
|
|
2008-04-23 23:15:23 +00:00
|
|
|
static std::string CurrentDebugType;
|
|
|
|
static struct DebugOnlyOpt {
|
2003-08-01 22:15:41 +00:00
|
|
|
void operator=(const std::string &Val) const {
|
|
|
|
DebugFlag |= !Val.empty();
|
|
|
|
CurrentDebugType = Val;
|
|
|
|
}
|
|
|
|
} DebugOnlyOptLoc;
|
|
|
|
|
2008-04-23 23:15:23 +00:00
|
|
|
static cl::opt<DebugOnlyOpt, true, cl::parser<std::string> >
|
2003-08-01 22:15:41 +00:00
|
|
|
DebugOnly("debug-only", cl::desc("Enable a specific type of debug output"),
|
|
|
|
cl::Hidden, cl::value_desc("debug string"),
|
|
|
|
cl::location(DebugOnlyOptLoc), cl::ValueRequired);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
|
|
|
// with the -debug-only=X option.
|
|
|
|
//
|
2003-12-14 21:35:53 +00:00
|
|
|
bool llvm::isCurrentDebugType(const char *DebugType) {
|
2003-08-12 20:46:50 +00:00
|
|
|
#ifndef NDEBUG
|
2003-08-01 22:15:41 +00:00
|
|
|
return CurrentDebugType.empty() || DebugType == CurrentDebugType;
|
2003-08-12 20:46:50 +00:00
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
2003-08-01 22:15:41 +00:00
|
|
|
}
|
2006-11-17 00:49:12 +00:00
|
|
|
|
|
|
|
// getErrorOutputStream - Returns the error output stream (std::cerr). This
|
|
|
|
// places the std::c* I/O streams into one .cpp file and relieves the whole
|
|
|
|
// program from having to have hundreds of static c'tor/d'tors for them.
|
|
|
|
//
|
2006-12-17 05:15:13 +00:00
|
|
|
OStream &llvm::getErrorOutputStream(const char *DebugType) {
|
2007-01-03 22:37:27 +00:00
|
|
|
static OStream cnoout(0);
|
2006-11-17 00:49:12 +00:00
|
|
|
if (DebugFlag && isCurrentDebugType(DebugType))
|
2006-12-07 01:30:32 +00:00
|
|
|
return cerr;
|
2006-11-17 00:49:12 +00:00
|
|
|
else
|
2007-01-03 22:37:27 +00:00
|
|
|
return cnoout;
|
2006-11-17 00:49:12 +00:00
|
|
|
}
|