6759344ce4da876730afd660ab31c7fa65e2aa56
[bertos.git] / cfg / debug.h
1 /*!
2  * \file
3  * <!--
4  * Copyright 2003, 2004, 2005 Develer S.r.l. (http://www.develer.com/)
5  * This file is part of DevLib - See README.devlib for information.
6  * -->
7  *
8  * \brief Simple debug facilities for hosted and embedded C/C++ applications.
9  *
10  * Debug output goes to stderr in hosted applications.
11  * Freestanding (AKA embedded) applications use \c drv/kdebug.c to output
12  * diagnostic messages to a serial terminal or a JTAG debugger.
13  *
14  * \version $Id$
15  * \author Bernardo Innocenti <bernie@develer.com>
16  */
17
18 /*#*
19  *#* $Log$
20  *#* Revision 1.6  2006/02/17 22:28:37  bernie
21  *#* Support TRACE() and TRACEMSG() on hosted targets.
22  *#*
23  *#* Revision 1.5  2005/11/04 16:09:03  bernie
24  *#* Doxygen workaround.
25  *#*
26  *#* Revision 1.4  2005/07/03 15:18:52  bernie
27  *#* Typo.
28  *#*
29  *#* Revision 1.3  2005/06/27 21:23:55  bernie
30  *#* Rename cfg/config.h to appconfig.h.
31  *#*
32  *#* Revision 1.2  2005/04/11 19:10:27  bernie
33  *#* Include top-level headers from cfg/ subdir.
34  *#*
35  *#* Revision 1.1  2005/04/11 19:04:13  bernie
36  *#* Move top-level headers to cfg/ subdir.
37  *#*
38  *#* Revision 1.13  2005/03/01 23:23:58  bernie
39  *#* Provide defaults for CONFIG_KDEBUG_DISABLE_TRACE and CONFIG_KDEBUG_ASSERT_NO_TEXT.
40  *#*
41  *#* Revision 1.12  2005/02/18 11:18:33  bernie
42  *#* Fixes for Harvard processors from project_ks.
43  *#*
44  *#* Revision 1.11  2005/02/16 20:29:48  bernie
45  *#* TRACE(), TRACEMSG(): Reduce code and data footprint.
46  *#*
47  *#* Revision 1.10  2005/02/09 21:50:28  bernie
48  *#* Declare dummy ASSERT* macros as ((void)0) to work around a warning I can't remember any more.
49  *#*
50  *#* Revision 1.9  2005/01/25 08:36:40  bernie
51  *#* kputnum(): Export.
52  *#*
53  *#* Revision 1.8  2005/01/11 18:08:08  aleph
54  *#* Add empty kdump definition for debug off
55  *#*
56  *#* Revision 1.7  2004/12/31 17:43:09  bernie
57  *#* Use UNUSED_ARG instead of obsolete UNUSED macro.
58  *#*
59  *#* Revision 1.6  2004/12/08 08:52:00  bernie
60  *#* Save some more RAM on AVR.
61  *#*/
62 #ifndef DEVLIB_DEBUG_H
63 #define DEVLIB_DEBUG_H
64
65 /*
66  * Try to guess whether we're running in a hosted or embedded environment.
67  */
68 #ifndef OS_HOSTED
69         #if defined(__unix__) || defined(_WIN32)
70                 #define OS_HOSTED  1
71         #else
72                 #define OS_HOSTED  0
73         #endif
74 #endif /* !OS_HOSTED */
75
76 #if OS_HOSTED
77         /*
78          * For now, avoid dependency on compiler.h
79          */
80         #ifndef FORMAT
81         #define FORMAT(x,y,z) /* nothing */
82         #endif
83         #ifndef INLINE
84         #define INLINE static inline
85         #endif
86         #ifndef UNUSED_ARG
87         #ifdef __cplusplus
88                 #define UNUSED_ARG(type,name) type
89         #else
90                 #define UNUSED_ARG(type,name) type name
91         #endif
92         #endif
93 #else /* !OS_HOSTED */
94         #include <cfg/compiler.h>
95 #endif /* !OS_HOSTED */
96
97
98 /*
99  * Defaults for rarely used config stuff.
100  */
101 #ifndef CONFIG_KDEBUG_DISABLE_TRACE
102 #define CONFIG_KDEBUG_DISABLE_TRACE  0
103 #endif
104
105 #ifndef CONFIG_KDEBUG_ASSERT_NO_TEXT
106 #define CONFIG_KDEBUG_ASSERT_NO_TEXT  0
107 #endif
108
109
110 /*!
111  * \def _DEBUG
112  *
113  * This preprocessor symbol is defined only in debug builds.
114  *
115  * The build infrastructure must arrange for _DEBUG to
116  * be predefined for all source files being compiled.
117  *
118  * This is compatible with the Microsoft convention for
119  * the default Debug and Release targets.
120  */
121 #ifdef _DEBUG
122
123         // STLport specific: enable extra checks
124         #define __STL_DEBUG 1
125
126         // MSVC specific: Enable memory allocation debug
127         #if defined(_MSC_VER)
128                 #include <crtdbg.h>
129         #endif
130
131         /*
132          * On UNIX systems the extabilished practice is to define
133          * NDEBUG for release builds and nothing for debug builds.
134          */
135         #ifdef NDEBUG
136         #undef NDEBUG
137         #endif
138
139         /*!
140          * This macro duplicates the old MSVC trick of redefining
141          * THIS_FILE locally to avoid the overhead of many duplicate
142          * strings in ASSERT().
143          */
144         #ifndef THIS_FILE
145                 #define THIS_FILE  __FILE__
146         #endif
147
148         /*!
149          * This macro can be used to conditionally exclude one or more
150          * statements conditioned on \c _DEBUG, avoiding the clutter
151          * of ifdef/endif pairs.
152          *
153          * \code
154          *     struct FooBar
155          *     {
156          *         int foo;
157          *         bool bar;
158          *         DB(int ref_count;) // Track number of users
159          *
160          *         void release()
161          *         {
162          *             DB(--ref_count;)
163          *         }
164          *     };
165          * \endcode
166          */
167         #define DB(x) x
168
169         #if OS_HOSTED
170                 #include <stdio.h>
171                 #include <stdarg.h>
172
173                 INLINE void kdbg_init(void) { /* nop */ }
174                 INLINE void kputchar(char c)
175                 {
176                         putc(c, stderr);
177                 }
178                 INLINE void kputs(const char *str)
179                 {
180                         fputs(str, stderr);
181                 }
182                 /* G++ can't inline functions with variable arguments... */
183                 #define kprintf(fmt, ...) fprintf(stderr, fmt, ## __VA_ARGS__)
184                 #define kvprintf(fmt, ap) vfprintf(stderr, fmt, ap)
185                 void kdump(const void *buf, size_t len); /* UNIMPLEMENTED */
186
187                 #ifndef ASSERT
188                         #include <assert.h>
189                         #define ASSERT(x) assert(x)
190                 #endif /* ASSERT */
191                 #define ASSERT2(x, help)  ASSERT(help && x)
192
193                 /*!
194                  * Check that the given pointer is not NULL or pointing to raw memory.
195                  *
196                  * The assumption here is that valid pointers never point to low
197                  * memory regions.  This helps catching pointers taken from
198                  * struct/class memebers when the struct pointer was NULL.
199                  */
200                 #define ASSERT_VALID_PTR(p)  ASSERT((unsigned long)(p) > 0x200)
201
202                 #define ASSERT_VALID_PTR_OR_NULL(p)  ASSERT((((p) == NULL) || ((unsigned long)(p) >= 0x200)))
203
204                 #if !CONFIG_KDEBUG_DISABLE_TRACE
205                         #define TRACE  kporintf("%s()\n", __func__)
206                         #define TRACEMSG(msg,...) kprintf("%s(): " msg, __func__, ## __VA_ARGS__)
207                 #else
208                         #define TRACE  do {} while(0)
209                         #define TRACEMSG(...)  do {} while(0)
210                 #endif
211
212         #else /* !OS_HOSTED */
213
214                 #include <appconfig.h>  /* CONFIG_KDEBUG_ASSERT_NO_TEXT */
215                 #include <cfg/cpu.h>  /* CPU_HARVARD */
216
217                 /* These are implemented in drv/kdebug.c */
218                 void kdbg_init(void);
219                 void kputchar(char c);
220                 int kputnum(int num);
221                 void kdump(const void *buf, size_t len);
222                 void __init_wall(long *wall, int size);
223
224                 #if CPU_HARVARD
225                         #include <mware/pgm.h>
226                         void kputs_P(const char *PROGMEM str);
227                         void kprintf_P(const char *PROGMEM fmt, ...) FORMAT(__printf__, 1, 2);
228                         int __assert_P(const char *PROGMEM cond, const char *PROGMEM file, int line);
229                         void __trace_P(const char *func);
230                         void __tracemsg_P(const char *func, const char *PROGMEM fmt, ...);
231                         int __invalid_ptr_P(void *p, const char *PROGMEM name, const char *PROGMEM file, int line);
232                         int __check_wall_P(long *wall, int size, const char * PGM_ATTR name, const char * PGM_ATTR file, int line);
233                         #define kputs(str)  kputs_P(PSTR(str))
234                         #define kprintf(fmt, ...)  kprintf_P(PSTR(fmt) ,## __VA_ARGS__)
235                         #define __assert(cond, file, line)  __assert_P(PSTR(cond), PSTR(file), (line))
236                         #define __trace(func)  __trace_P(func)
237                         #define __tracemsg(func, fmt, ...)  __tracemsg_P(func, PSTR(fmt), ## __VA_ARGS__)
238                         #define __invalid_ptr(p, name, file, line)  __invalid_ptr_P((p), PSTR(name), PSTR(file), (line))
239                         #define __check_wall(wall, size, name, file, line)  __check_wall_P(wall, size, PSTR(name), PSTR(file), (line))
240                 #else /* !CPU_HARVARD */
241                         void kputs(const char *str);
242                         void kprintf(const char *fmt, ...) FORMAT(__printf__, 1, 2);
243                         int __assert(const char *cond, const char *file, int line);
244                         void __trace(const char *func);
245                         void __tracemsg(const char *func, const char *fmt, ...) FORMAT(__printf__, 2, 3);
246                         int __invalid_ptr(void *p, const char *name, const char *file, int line);
247                         int __check_wall(long *wall, int size, const char *name, const char *file, int line);
248                 #endif /* !CPU_HARVARD */
249
250                 #if !CONFIG_KDEBUG_ASSERT_NO_TEXT
251                         #define ASSERT(x)         ((void)(LIKELY(x) ? 0 : __assert(#x, THIS_FILE, __LINE__)))
252                         #define ASSERT2(x, help)  ((void)(LIKELY(x) ? 0 : __assert(help " (" #x ")", THIS_FILE, __LINE__)))
253                 #else
254                         #define ASSERT(x)         ((void)(LIKELY(x) ? 0 : __assert("", THIS_FILE, __LINE__)))
255                         #define ASSERT2(x, help)  ((void)ASSERT(x))
256                 #endif
257
258                 #define ASSERT_VALID_PTR(p)         ((void)(LIKELY((p) >= 0x200) ? 0 : __invalid_ptr(p, #p, THIS_FILE, __LINE__)))
259                 #define ASSERT_VALID_PTR_OR_NULL(p) ((void)(LIKELY((p == NULL) || ((p) >= 0x200)) ? 0 : __invalid_ptr((p), #p, THIS_FILE, __LINE__)))
260
261                 #if !CONFIG_KDEBUG_DISABLE_TRACE
262                         #define TRACE  __trace(__func__)
263                         #define TRACEMSG(msg,...) __tracemsg(__func__, msg, ## __VA_ARGS__)
264                 #else
265                         #define TRACE  do {} while(0)
266                         #define TRACEMSG(...)  do {} while(0)
267                 #endif
268
269         #endif /* !OS_HOSTED */
270
271         /*!
272          * \name Walls to detect data corruption
273          * \{
274          */
275         #define WALL_SIZE                    8
276         #define WALL_VALUE                   (long)0xABADCAFEL
277         #define DECLARE_WALL(name,size)      long name[(size) / sizeof(long)];
278         #define FWD_DECLARE_WALL(name,size)  extern long name[(size) / sizeof(long)];
279         #define INIT_WALL(name)              __init_wall((name), countof(name))
280         #define CHECK_WALL(name)             __check_wall((name), countof(name), #name, THIS_FILE, __LINE__)
281         /*\}*/
282
283         /*!
284          * Check that the given pointer actually points to an object
285          * of the specified type.
286          */
287         #define ASSERT_VALID_OBJ(_t, _o) do { \
288                 ASSERT_VALID_PTR((_o)); \
289                 ASSERT(dynamic_cast<_t>((_o)) != NULL); \
290         }
291
292         /*!
293          * \name Debug object creation and destruction.
294          *
295          * These macros help track some kinds of leaks in C++ programs.
296          * Usage is as follows:
297          *
298          * \code
299          *   class Foo
300          *   {
301          *       DECLARE_INSTANCE_TRACKING(Foo)
302          *
303          *       Foo()
304          *       {
305          *           NEW_INSTANCE(Foo);
306          *           // ...
307          *       }
308          *
309          *       ~Foo()
310          *       {
311          *           DELETE_INSTANCE(Foo);
312          *           // ...
313          *       }
314          *   };
315          *
316          *   // Put this in the implementation file of the class
317          *   IMPLEMENT_INSTANCE_TRACKING(Foo)
318          *
319          *   // Client code
320          *   int main(void)
321          *   {
322          *        Foo *foo = new Foo;
323          *        cout << GET_INSTANCE_COUNT(Foo) << endl; // prints "1"
324          *        delete foo;
325          *        ASSERT_ZERO_INSTANCES(Foo); // OK
326          *   }
327          * \endcode
328          * \{
329          */
330         #define NEW_INSTANCE(CLASS)                do { ++CLASS::__instances } while (0)
331         #define DELETE_INSTANCE(CLASS)             do { --CLASS::__instances } while (0)
332         #define ASSERT_ZERO_INSTANCES(CLASS)       ASSERT(CLASS::__instances == 0)
333         #define GET_INSTANCE_COUNT(CLASS)          (CLASS::__instances)
334         #define DECLARE_INSTANCE_TRACKING(CLASS)   static int __instances
335         #define IMPLEMENT_INSTANCE_TRACKING(CLASS) int CLASS::__instances = 0
336         /*\}*/
337
338 #else /* !_DEBUG */
339
340         /*
341          * On UNIX systems the extabilished practice is to define
342          * NDEBUG for release builds and nothing for debug builds.
343          */
344         #ifndef NDEBUG
345         #define NDEBUG 1
346         #endif
347
348         #define DB(x)  /* nothing */
349         #ifndef ASSERT
350                 #define ASSERT(x)  ((void)0)
351         #endif /* ASSERT */
352         #define ASSERT2(x, help)             ((void)0)
353         #define ASSERT_VALID_PTR(p)          ((void)0)
354         #define ASSERT_VALID_PTR_OR_NULL(p)  ((void)0)
355         #define ASSERT_VALID_OBJ(_t, _o)     ((void)0)
356         #define TRACE                        do {} while (0)
357         #define TRACEMSG(x,...)              do {} while (0)
358
359         #define DECLARE_WALL(name, size)     /* nothing */
360         #define FWD_DECLARE_WALL(name, size) /* nothing */
361         #define INIT_WALL(name)              do {} while (0)
362         #define CHECK_WALL(name)             do {} while (0)
363
364         #define NEW_INSTANCE(CLASS)                do {} while (0)
365         #define DELETE_INSTANCE(CLASS)             do {} while (0)
366         #define ASSERT_ZERO_INSTANCES(CLASS)       do {} while (0)
367         #define GET_INSTANCE_COUNT(CLASS)          ERROR_ONLY_FOR_DEBUG
368         #define DECLARE_INSTANCE_TRACKING(CLASS)
369         #define IMPLEMENT_INSTANCE_TRACKING(CLASS)
370
371         INLINE void kdbg_init(void) { /* nop */ }
372         INLINE void kputchar(UNUSED_ARG(char, c)) { /* nop */ }
373         INLINE int kputnum(UNUSED_ARG(int, num)) { return 0; }
374         INLINE void kputs(UNUSED_ARG(const char *, str)) { /* nop */ }
375         INLINE void kdump(UNUSED_ARG(const void *, buf), UNUSED_ARG(size_t, len)) { /* nop */ }
376
377         #ifdef __cplusplus
378                 /* G++ can't inline functions with variable arguments... */
379                 #define kprintf(fmt,...) do { (void)(fmt); } while(0)
380         #else
381                 /* ...but GCC can. */
382                 INLINE void kprintf(UNUSED_ARG(const char *, fmt), ...) { /* nop */ }
383         #endif
384
385 #endif /* _DEBUG */
386
387 #endif /* DEVLIB_DEBUG_H */