blob: 29eda26c6896b6d9ee90527b4b0d0a2e835351fb [file] [log] [blame]
Chris Lattner038e05a2003-08-01 22:15:41 +00001//===-- Debug.cpp - An easy way to add debug output to your code ----------===//
Misha Brukmanf976c852005-04-21 22:55:34 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanf976c852005-04-21 22:55:34 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner038e05a2003-08-01 22:15:41 +00009//
10// This file implements a handle way of adding debugging information to your
11// code, without it being enabled all of the time, and without having to add
12// command line options to enable it.
13//
14// In particular, just wrap your code with the DEBUG() macro, and it will be
15// enabled automatically if you specify '-debug' on the command-line.
16// Alternatively, you can also use the SET_DEBUG_TYPE("foo") macro to specify
17// that your debug code belongs to class "foo". Then, on the command line, you
18// can specify '-debug-only=foo' to enable JUST the debug information for the
19// foo class.
20//
21// When compiling in release mode, the -debug-* options and all code in DEBUG()
22// statements disappears, so it does not effect the runtime of the code.
23//
24//===----------------------------------------------------------------------===//
25
Reid Spencer551ccae2004-09-01 22:55:40 +000026#include "llvm/Support/CommandLine.h"
Bill Wendlingab41c3e2006-11-17 09:54:47 +000027#include "llvm/Support/Debug.h"
Chris Lattner2cdd21c2003-12-14 21:35:53 +000028using namespace llvm;
Chris Lattner038e05a2003-08-01 22:15:41 +000029
Chris Lattner2cdd21c2003-12-14 21:35:53 +000030bool llvm::DebugFlag; // DebugFlag - Exported boolean set by the -debug option
Chris Lattner038e05a2003-08-01 22:15:41 +000031
32namespace {
33#ifndef NDEBUG
34 // -debug - Command line option to enable the DEBUG statements in the passes.
35 // This flag may only be enabled in debug builds.
36 cl::opt<bool, true>
37 Debug("debug", cl::desc("Enable debug output"), cl::Hidden,
38 cl::location(DebugFlag));
39
40 std::string CurrentDebugType;
41 struct DebugOnlyOpt {
42 void operator=(const std::string &Val) const {
43 DebugFlag |= !Val.empty();
44 CurrentDebugType = Val;
45 }
46 } DebugOnlyOptLoc;
47
48 cl::opt<DebugOnlyOpt, true, cl::parser<std::string> >
49 DebugOnly("debug-only", cl::desc("Enable a specific type of debug output"),
50 cl::Hidden, cl::value_desc("debug string"),
51 cl::location(DebugOnlyOptLoc), cl::ValueRequired);
52#endif
53}
54
55// isCurrentDebugType - Return true if the specified string is the debug type
56// specified on the command line, or if none was specified on the command line
57// with the -debug-only=X option.
58//
Chris Lattner2cdd21c2003-12-14 21:35:53 +000059bool llvm::isCurrentDebugType(const char *DebugType) {
Chris Lattner33fbad72003-08-12 20:46:50 +000060#ifndef NDEBUG
Chris Lattner038e05a2003-08-01 22:15:41 +000061 return CurrentDebugType.empty() || DebugType == CurrentDebugType;
Chris Lattner33fbad72003-08-12 20:46:50 +000062#else
63 return false;
64#endif
Chris Lattner038e05a2003-08-01 22:15:41 +000065}
Bill Wendling1ea783f2006-11-17 00:49:12 +000066
67// getErrorOutputStream - Returns the error output stream (std::cerr). This
68// places the std::c* I/O streams into one .cpp file and relieves the whole
69// program from having to have hundreds of static c'tor/d'tors for them.
70//
Bill Wendling5c7e3262006-12-17 05:15:13 +000071OStream &llvm::getErrorOutputStream(const char *DebugType) {
Bill Wendlingfcf17a32007-01-03 22:37:27 +000072 static OStream cnoout(0);
Bill Wendling1ea783f2006-11-17 00:49:12 +000073 if (DebugFlag && isCurrentDebugType(DebugType))
Bill Wendlinge8156192006-12-07 01:30:32 +000074 return cerr;
Bill Wendling1ea783f2006-11-17 00:49:12 +000075 else
Bill Wendlingfcf17a32007-01-03 22:37:27 +000076 return cnoout;
Bill Wendling1ea783f2006-11-17 00:49:12 +000077}