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.
8 * \brief Simple debug facilities for hosted and embedded C/C++ applications.
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.
15 * \author Bernardo Innocenti <bernie@develer.com>
20 *#* Revision 1.13 2006/03/22 13:34:34 bernie
23 *#* Revision 1.12 2006/03/22 09:48:23 bernie
26 *#* Revision 1.11 2006/02/23 11:17:16 bernie
27 *#* Documentation fixes.
29 *#* Revision 1.10 2006/02/23 09:10:10 bernie
30 *#* Add even more code duplication until we properly refactor debug.h.
32 *#* Revision 1.9 2006/02/23 08:40:33 bernie
33 *#* TRACEMSG() support for compilers with no variadic macros.
35 *#* Revision 1.8 2006/02/23 08:33:04 bernie
36 *#* Fix for compilers without variadic macros support.
38 *#* Revision 1.7 2006/02/20 02:01:56 bernie
39 *#* Depend on cfg/os.h.
41 *#* Revision 1.6 2006/02/17 22:28:37 bernie
42 *#* Support TRACE() and TRACEMSG() on hosted targets.
44 *#* Revision 1.5 2005/11/04 16:09:03 bernie
45 *#* Doxygen workaround.
47 *#* Revision 1.4 2005/07/03 15:18:52 bernie
50 *#* Revision 1.3 2005/06/27 21:23:55 bernie
51 *#* Rename cfg/config.h to appconfig.h.
53 *#* Revision 1.2 2005/04/11 19:10:27 bernie
54 *#* Include top-level headers from cfg/ subdir.
56 *#* Revision 1.1 2005/04/11 19:04:13 bernie
57 *#* Move top-level headers to cfg/ subdir.
59 *#* Revision 1.13 2005/03/01 23:23:58 bernie
60 *#* Provide defaults for CONFIG_KDEBUG_DISABLE_TRACE and CONFIG_KDEBUG_ASSERT_NO_TEXT.
62 *#* Revision 1.12 2005/02/18 11:18:33 bernie
63 *#* Fixes for Harvard processors from project_ks.
65 *#* Revision 1.11 2005/02/16 20:29:48 bernie
66 *#* TRACE(), TRACEMSG(): Reduce code and data footprint.
68 *#* Revision 1.10 2005/02/09 21:50:28 bernie
69 *#* Declare dummy ASSERT* macros as ((void)0) to work around a warning I can't remember any more.
71 *#* Revision 1.9 2005/01/25 08:36:40 bernie
72 *#* kputnum(): Export.
74 *#* Revision 1.8 2005/01/11 18:08:08 aleph
75 *#* Add empty kdump definition for debug off
77 *#* Revision 1.7 2004/12/31 17:43:09 bernie
78 *#* Use UNUSED_ARG instead of obsolete UNUSED macro.
80 *#* Revision 1.6 2004/12/08 08:52:00 bernie
81 *#* Save some more RAM on AVR.
83 #ifndef DEVLIB_DEBUG_H
84 #define DEVLIB_DEBUG_H
87 #include <cfg/compiler.h>
91 * Defaults for rarely used config stuff.
93 #ifndef CONFIG_KDEBUG_DISABLE_TRACE
94 #define CONFIG_KDEBUG_DISABLE_TRACE 0
97 #ifndef CONFIG_KDEBUG_ASSERT_NO_TEXT
98 #define CONFIG_KDEBUG_ASSERT_NO_TEXT 0
101 #if defined(__doxygen__)
103 * Preprocessor symbol defined only for debug builds.
105 * The build infrastructure must arrange for _DEBUG to
106 * be predefined for all the source files being compiled.
108 * This is compatible with the MSVC convention for the
109 * default Debug and Release project targets.
116 // STLport specific: enable extra checks
117 #define __STL_DEBUG 1
119 // MSVC specific: Enable memory allocation debug
120 #if defined(_MSC_VER)
125 * On UNIX systems the extabilished practice is to define
126 * NDEBUG for release builds and nothing for debug builds.
133 * This macro duplicates the old MSVC trick of redefining
134 * THIS_FILE locally to avoid the overhead of many duplicate
135 * strings in ASSERT().
138 #define THIS_FILE __FILE__
142 * This macro can be used to conditionally exclude one or more
143 * statements conditioned on \c _DEBUG, avoiding the clutter
144 * of ifdef/endif pairs.
151 * DB(int ref_count;) // Track number of users
166 INLINE void kdbg_init(void) { /* nop */ }
167 INLINE void kputchar(char c)
171 INLINE void kputs(const char *str)
175 #if COMPILER_VARIADIC_MACROS
176 /* G++ can't inline functions with variable arguments... */
177 #define kprintf(fmt, ...) fprintf(stderr, fmt, ## __VA_ARGS__)
179 #define kvprintf(fmt, ap) vfprintf(stderr, fmt, ap)
180 INLINE int kprintf(const char *fmt, ...)
186 result = kvprintf(fmt, ap);
192 void kdump(const void *buf, size_t len); /* UNIMPLEMENTED */
196 #define ASSERT(x) assert(x)
198 #define ASSERT2(x, help) ASSERT(help && x)
201 * Check that the given pointer is either NULL or pointing to valid memory.
203 * The assumption here is that valid pointers never point to low
204 * memory regions. This helps catching pointers taken from
205 * struct/class memebers when the struct pointer was NULL.
207 #define ASSERT_VALID_PTR(p) ASSERT((unsigned long)(p) > 0x200)
210 * Check that the given pointer is not pointing to invalid memory.
212 * \see ASSERT_VALID_PTR()
214 #define ASSERT_VALID_PTR_OR_NULL(p) ASSERT((((p) == NULL) || ((unsigned long)(p) >= 0x200)))
216 #if !CONFIG_KDEBUG_DISABLE_TRACE
217 #define TRACE kprintf("%s()\n", __func__)
218 #if COMPILER_VARIADIC_MACROS
219 #define TRACEMSG(msg,...) kprintf("%s(): " msg, __func__, ## __VA_ARGS__)
221 INLINE void TRACEMSG(const char *fmt, ...)
225 kprintf("%s(): ", __func__);
231 #define TRACE do {} while(0)
232 #define TRACEMSG(...) do {} while(0)
235 #else /* !OS_HOSTED */
237 #include <appconfig.h> /* CONFIG_KDEBUG_ASSERT_NO_TEXT */
238 #include <cfg/cpu.h> /* CPU_HARVARD */
240 /* These are implemented in drv/kdebug.c */
241 void kdbg_init(void);
242 void kputchar(char c);
243 int kputnum(int num);
244 void kdump(const void *buf, size_t len);
245 void __init_wall(long *wall, int size);
248 #include <mware/pgm.h>
249 void kputs_P(const char *PROGMEM str);
250 void kprintf_P(const char *PROGMEM fmt, ...) FORMAT(__printf__, 1, 2);
251 int __assert_P(const char *PROGMEM cond, const char *PROGMEM file, int line);
252 void __trace_P(const char *func);
253 void __tracemsg_P(const char *func, const char *PROGMEM fmt, ...);
254 int __invalid_ptr_P(void *p, const char *PROGMEM name, const char *PROGMEM file, int line);
255 int __check_wall_P(long *wall, int size, const char * PGM_ATTR name, const char * PGM_ATTR file, int line);
256 #define kputs(str) kputs_P(PSTR(str))
257 #define kprintf(fmt, ...) kprintf_P(PSTR(fmt) ,## __VA_ARGS__)
258 #define __assert(cond, file, line) __assert_P(PSTR(cond), PSTR(file), (line))
259 #define __trace(func) __trace_P(func)
260 #define __tracemsg(func, fmt, ...) __tracemsg_P(func, PSTR(fmt), ## __VA_ARGS__)
261 #define __invalid_ptr(p, name, file, line) __invalid_ptr_P((p), PSTR(name), PSTR(file), (line))
262 #define __check_wall(wall, size, name, file, line) __check_wall_P(wall, size, PSTR(name), PSTR(file), (line))
263 #else /* !CPU_HARVARD */
264 void kputs(const char *str);
265 void kprintf(const char *fmt, ...) FORMAT(__printf__, 1, 2);
266 int __assert(const char *cond, const char *file, int line);
267 void __trace(const char *func);
268 void __tracemsg(const char *func, const char *fmt, ...) FORMAT(__printf__, 2, 3);
269 int __invalid_ptr(void *p, const char *name, const char *file, int line);
270 int __check_wall(long *wall, int size, const char *name, const char *file, int line);
271 #endif /* !CPU_HARVARD */
273 #if !CONFIG_KDEBUG_ASSERT_NO_TEXT
274 #define ASSERT(x) ((void)(LIKELY(x) ? 0 : __assert(#x, THIS_FILE, __LINE__)))
275 #define ASSERT2(x, help) ((void)(LIKELY(x) ? 0 : __assert(help " (" #x ")", THIS_FILE, __LINE__)))
277 #define ASSERT(x) ((void)(LIKELY(x) ? 0 : __assert("", THIS_FILE, __LINE__)))
278 #define ASSERT2(x, help) ((void)ASSERT(x))
281 #define ASSERT_VALID_PTR(p) ((void)(LIKELY((p) >= 0x200) ? 0 : __invalid_ptr(p, #p, THIS_FILE, __LINE__)))
282 #define ASSERT_VALID_PTR_OR_NULL(p) ((void)(LIKELY((p == NULL) || ((p) >= 0x200)) ? 0 : __invalid_ptr((p), #p, THIS_FILE, __LINE__)))
284 #if !CONFIG_KDEBUG_DISABLE_TRACE
285 #define TRACE __trace(__func__)
286 #define TRACEMSG(msg,...) __tracemsg(__func__, msg, ## __VA_ARGS__)
288 #define TRACE do {} while(0)
289 #define TRACEMSG(...) do {} while(0)
292 #endif /* !OS_HOSTED */
295 * \name Walls to detect data corruption
299 #define WALL_VALUE (long)0xABADCAFEL
300 #define DECLARE_WALL(name,size) long name[(size) / sizeof(long)];
301 #define FWD_DECLARE_WALL(name,size) extern long name[(size) / sizeof(long)];
302 #define INIT_WALL(name) __init_wall((name), countof(name))
303 #define CHECK_WALL(name) __check_wall((name), countof(name), #name, THIS_FILE, __LINE__)
307 * Check that the given pointer actually points to an object
308 * of the specified type.
310 #define ASSERT_VALID_OBJ(_t, _o) do { \
311 ASSERT_VALID_PTR((_o)); \
312 ASSERT(dynamic_cast<_t>((_o)) != NULL); \
316 * \name Debug object creation and destruction.
318 * These macros help track some kinds of leaks in C++ programs.
319 * Usage is as follows:
324 * DECLARE_INSTANCE_TRACKING(Foo)
334 * DELETE_INSTANCE(Foo);
339 * // Put this in the implementation file of the class
340 * IMPLEMENT_INSTANCE_TRACKING(Foo)
345 * Foo *foo = new Foo;
346 * cout << GET_INSTANCE_COUNT(Foo) << endl; // prints "1"
348 * ASSERT_ZERO_INSTANCES(Foo); // OK
353 #define NEW_INSTANCE(CLASS) do { ++CLASS::__instances } while (0)
354 #define DELETE_INSTANCE(CLASS) do { --CLASS::__instances } while (0)
355 #define ASSERT_ZERO_INSTANCES(CLASS) ASSERT(CLASS::__instances == 0)
356 #define GET_INSTANCE_COUNT(CLASS) (CLASS::__instances)
357 #define DECLARE_INSTANCE_TRACKING(CLASS) static int __instances
358 #define IMPLEMENT_INSTANCE_TRACKING(CLASS) int CLASS::__instances = 0
364 * On UNIX systems the extabilished practice is to define
365 * NDEBUG for release builds and nothing for debug builds.
371 #define DB(x) /* nothing */
373 #define ASSERT(x) ((void)0)
375 #define ASSERT2(x, help) ((void)0)
376 #define ASSERT_VALID_PTR(p) ((void)0)
377 #define ASSERT_VALID_PTR_OR_NULL(p) ((void)0)
378 #define ASSERT_VALID_OBJ(_t, _o) ((void)0)
379 #define TRACE do {} while (0)
380 #if COMPILER_VARIADIC_MACROS
381 #define TRACEMSG(x, ...) do {} while (0)
383 INLINE void TRACEMSG(UNUSED_ARG(const char *, msg), ...)
389 #define DECLARE_WALL(name, size) /* nothing */
390 #define FWD_DECLARE_WALL(name, size) /* nothing */
391 #define INIT_WALL(name) do {} while (0)
392 #define CHECK_WALL(name) do {} while (0)
394 #define NEW_INSTANCE(CLASS) do {} while (0)
395 #define DELETE_INSTANCE(CLASS) do {} while (0)
396 #define ASSERT_ZERO_INSTANCES(CLASS) do {} while (0)
397 #define GET_INSTANCE_COUNT(CLASS) ERROR_ONLY_FOR_DEBUG
398 #define DECLARE_INSTANCE_TRACKING(CLASS)
399 #define IMPLEMENT_INSTANCE_TRACKING(CLASS)
401 INLINE void kdbg_init(void) { /* nop */ }
402 INLINE void kputchar(UNUSED_ARG(char, c)) { /* nop */ }
403 INLINE int kputnum(UNUSED_ARG(int, num)) { return 0; }
404 INLINE void kputs(UNUSED_ARG(const char *, str)) { /* nop */ }
405 INLINE void kdump(UNUSED_ARG(const void *, buf), UNUSED_ARG(size_t, len)) { /* nop */ }
407 #if defined(__cplusplus) && COMPILER_VARIADIC_MACROS
408 /* G++ can't inline functions with variable arguments... */
409 #define kprintf(fmt,...) do { (void)(fmt); } while(0)
411 /* ...but GCC can. */
412 INLINE void kprintf(UNUSED_ARG(const char *, fmt), ...) { /* nop */ }
417 #endif /* DEVLIB_DEBUG_H */