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 ----------===// |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by the LLVM research group and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 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 | |
| 26 | #include "Support/Statistic.h" |
| 27 | #include "Support/CommandLine.h" |
| 28 | |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 29 | namespace llvm { |
| 30 | |
Chris Lattner | 038e05a | 2003-08-01 22:15:41 +0000 | [diff] [blame] | 31 | bool DebugFlag; // DebugFlag - Exported boolean set by the -debug option |
| 32 | |
| 33 | namespace { |
| 34 | #ifndef NDEBUG |
| 35 | // -debug - Command line option to enable the DEBUG statements in the passes. |
| 36 | // This flag may only be enabled in debug builds. |
| 37 | cl::opt<bool, true> |
| 38 | Debug("debug", cl::desc("Enable debug output"), cl::Hidden, |
| 39 | cl::location(DebugFlag)); |
| 40 | |
| 41 | std::string CurrentDebugType; |
| 42 | struct DebugOnlyOpt { |
| 43 | void operator=(const std::string &Val) const { |
| 44 | DebugFlag |= !Val.empty(); |
| 45 | CurrentDebugType = Val; |
| 46 | } |
| 47 | } DebugOnlyOptLoc; |
| 48 | |
| 49 | cl::opt<DebugOnlyOpt, true, cl::parser<std::string> > |
| 50 | DebugOnly("debug-only", cl::desc("Enable a specific type of debug output"), |
| 51 | cl::Hidden, cl::value_desc("debug string"), |
| 52 | cl::location(DebugOnlyOptLoc), cl::ValueRequired); |
| 53 | #endif |
| 54 | } |
| 55 | |
| 56 | // isCurrentDebugType - Return true if the specified string is the debug type |
| 57 | // specified on the command line, or if none was specified on the command line |
| 58 | // with the -debug-only=X option. |
| 59 | // |
| 60 | bool isCurrentDebugType(const char *DebugType) { |
Chris Lattner | 33fbad7 | 2003-08-12 20:46:50 +0000 | [diff] [blame] | 61 | #ifndef NDEBUG |
Chris Lattner | 038e05a | 2003-08-01 22:15:41 +0000 | [diff] [blame] | 62 | return CurrentDebugType.empty() || DebugType == CurrentDebugType; |
Chris Lattner | 33fbad7 | 2003-08-12 20:46:50 +0000 | [diff] [blame] | 63 | #else |
| 64 | return false; |
| 65 | #endif |
Chris Lattner | 038e05a | 2003-08-01 22:15:41 +0000 | [diff] [blame] | 66 | } |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 67 | |
| 68 | } // End llvm namespace |