Chris Lattner | 038e05a | 2003-08-01 22:15:41 +0000 | [diff] [blame] | 1 | //===-- Debug.cpp - An easy way to add debug output to your code ----------===// |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 038e05a | 2003-08-01 22:15:41 +0000 | [diff] [blame] | 9 | // |
| 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 Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 26 | #include "llvm/Support/CommandLine.h" |
Bill Wendling | ab41c3e | 2006-11-17 09:54:47 +0000 | [diff] [blame] | 27 | #include "llvm/Support/Debug.h" |
Chris Lattner | 2cdd21c | 2003-12-14 21:35:53 +0000 | [diff] [blame] | 28 | using namespace llvm; |
Chris Lattner | 038e05a | 2003-08-01 22:15:41 +0000 | [diff] [blame] | 29 | |
Daniel Dunbar | 43ed267 | 2009-08-23 08:50:52 +0000 | [diff] [blame^] | 30 | // All Debug.h functionality is a no-op in NDEBUG mode. |
| 31 | #ifndef NDEBUG |
Chris Lattner | 2cdd21c | 2003-12-14 21:35:53 +0000 | [diff] [blame] | 32 | bool llvm::DebugFlag; // DebugFlag - Exported boolean set by the -debug option |
Chris Lattner | 038e05a | 2003-08-01 22:15:41 +0000 | [diff] [blame] | 33 | |
Chris Lattner | a36b81d | 2009-08-23 07:05:39 +0000 | [diff] [blame] | 34 | // -debug - Command line option to enable the DEBUG statements in the passes. |
| 35 | // This flag may only be enabled in debug builds. |
| 36 | static cl::opt<bool, true> |
| 37 | Debug("debug", cl::desc("Enable debug output"), cl::Hidden, |
| 38 | cl::location(DebugFlag)); |
Chris Lattner | 038e05a | 2003-08-01 22:15:41 +0000 | [diff] [blame] | 39 | |
Chris Lattner | a36b81d | 2009-08-23 07:05:39 +0000 | [diff] [blame] | 40 | static std::string CurrentDebugType; |
| 41 | static struct DebugOnlyOpt { |
| 42 | void operator=(const std::string &Val) const { |
| 43 | DebugFlag |= !Val.empty(); |
| 44 | CurrentDebugType = Val; |
| 45 | } |
| 46 | } DebugOnlyOptLoc; |
Chris Lattner | 038e05a | 2003-08-01 22:15:41 +0000 | [diff] [blame] | 47 | |
Chris Lattner | a36b81d | 2009-08-23 07:05:39 +0000 | [diff] [blame] | 48 | static 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); |
Chris Lattner | 038e05a | 2003-08-01 22:15:41 +0000 | [diff] [blame] | 52 | |
| 53 | // isCurrentDebugType - Return true if the specified string is the debug type |
| 54 | // specified on the command line, or if none was specified on the command line |
| 55 | // with the -debug-only=X option. |
| 56 | // |
Chris Lattner | 2cdd21c | 2003-12-14 21:35:53 +0000 | [diff] [blame] | 57 | bool llvm::isCurrentDebugType(const char *DebugType) { |
Chris Lattner | 038e05a | 2003-08-01 22:15:41 +0000 | [diff] [blame] | 58 | return CurrentDebugType.empty() || DebugType == CurrentDebugType; |
Chris Lattner | 038e05a | 2003-08-01 22:15:41 +0000 | [diff] [blame] | 59 | } |
Daniel Dunbar | 43ed267 | 2009-08-23 08:50:52 +0000 | [diff] [blame^] | 60 | #else |
| 61 | // Avoid "has no symbols" warning. |
| 62 | int Debug_dummy = 0; |
| 63 | #endif |