4 * This file is part of BeRTOS.
6 * Bertos is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * As a special exception, you may use this file as part of a free software
21 * library without restriction. Specifically, if other files instantiate
22 * templates or use macros or inline functions from this file, or you compile
23 * this file and link it with other files to produce an executable, this
24 * file does not by itself cause the resulting executable to be covered by
25 * the GNU General Public License. This exception does not however
26 * invalidate any other reasons why the executable file might be covered by
27 * the GNU General Public License.
29 * Copyright 2003, 2004, 2005 Develer S.r.l. (http://www.develer.com/)
33 * \brief Simple debug facilities for hosted and embedded C/C++ applications.
35 * Debug output goes to stderr in hosted applications.
36 * Freestanding (AKA embedded) applications use \c drv/kdebug.c to output
37 * diagnostic messages to a serial terminal or a JTAG debugger.
40 * \author Bernie Innocenti <bernie@codewiz.org>
42 * $WIZ$ module_name = "debug"
43 * $WIZ$ module_configuration = "bertos/cfg/cfg_debug.h"
45 * $WIZ$ module_depends = "formatwr"
46 * $WIZ$ module_supports = "not atmega103"
49 #ifndef BERTOS_DEBUG_H
50 #define BERTOS_DEBUG_H
53 #include <cfg/compiler.h>
57 * Defaults for rarely used config stuff.
59 #ifndef CONFIG_KDEBUG_DISABLE_TRACE
60 #define CONFIG_KDEBUG_DISABLE_TRACE 0
63 #ifndef CONFIG_KDEBUG_ASSERT_NO_TEXT
64 #define CONFIG_KDEBUG_ASSERT_NO_TEXT 0
67 #if defined(__doxygen__)
69 * Preprocessor symbol defined only for debug builds.
71 * The build infrastructure must arrange for _DEBUG to
72 * be predefined for all the source files being compiled.
74 * This is compatible with the MSVC convention for the
75 * default Debug and Release project targets.
81 // STLport specific: enable extra checks
84 // MSVC specific: Enable memory allocation debug
90 * On UNIX systems the extabilished practice is to define
91 * NDEBUG for release builds and nothing for debug builds.
98 * This macro duplicates the old MSVC trick of redefining
99 * THIS_FILE locally to avoid the overhead of many duplicate
100 * strings in ASSERT().
103 #define THIS_FILE __FILE__
107 * This macro can be used to conditionally exclude one or more
108 * statements conditioned on \c _DEBUG, avoiding the clutter
109 * of ifdef/endif pairs.
116 * DB(int ref_count;) // Track number of users
127 #include "cfg/cfg_debug.h" /* CONFIG_KDEBUG_ASSERT_NO_TEXT */
128 #include <cpu/attr.h> /* CPU_HARVARD */
130 /* These are implemented in drv/kdebug.c */
131 void kdbg_init(void);
132 void kputchar(char c);
133 int kputnum(int num);
134 void kdump(const void *buf, size_t len);
135 void __init_wall(long *wall, int size);
139 void kputs_P(const char *PROGMEM str);
140 void kprintf_P(const char *PROGMEM fmt, ...) FORMAT(__printf__, 1, 2);
141 int __bassert_P(const char *PROGMEM cond, const char *PROGMEM file, int line);
142 void __trace_P(const char *func);
143 void __tracemsg_P(const char *func, const char *PROGMEM fmt, ...);
144 int __invalid_ptr_P(void *p, const char *PROGMEM name, const char *PROGMEM file, int line);
145 int __check_wall_P(long *wall, int size, const char * PGM_ATTR name, const char * PGM_ATTR file, int line);
146 #define kputs(str) kputs_P(PSTR(str))
147 #define kprintf(fmt, ...) kprintf_P(PSTR(fmt) ,## __VA_ARGS__)
148 #define __bassert(cond, file, line) __bassert_P(PSTR(cond), PSTR(file), (line))
149 #define __trace(func) __trace_P(func)
150 #define __tracemsg(func, fmt, ...) __tracemsg_P(func, PSTR(fmt), ## __VA_ARGS__)
151 #define __invalid_ptr(p, name, file, line) __invalid_ptr_P((p), PSTR(name), PSTR(file), (line))
152 #define __check_wall(wall, size, name, file, line) __check_wall_P(wall, size, PSTR(name), PSTR(file), (line))
153 #else /* !CPU_HARVARD */
154 void kputs(const char *str);
155 void kprintf(const char *fmt, ...) FORMAT(__printf__, 1, 2);
156 int __bassert(const char *cond, const char *file, int line);
157 void __trace(const char *func);
158 void __tracemsg(const char *func, const char *fmt, ...) FORMAT(__printf__, 2, 3);
159 int __invalid_ptr(void *p, const char *name, const char *file, int line);
160 int __check_wall(long *wall, int size, const char *name, const char *file, int line);
161 #endif /* !CPU_HARVARD */
163 #if !CONFIG_KDEBUG_ASSERT_NO_TEXT
164 #define ASSERT(x) ((void)(LIKELY(x) ? 0 : __bassert(#x, THIS_FILE, __LINE__)))
165 #define ASSERT2(x, help) ((void)(LIKELY(x) ? 0 : __bassert(help " (" #x ")", THIS_FILE, __LINE__)))
167 #define ASSERT(x) ((void)(LIKELY(x) ? 0 : __bassert("", THIS_FILE, __LINE__)))
168 #define ASSERT2(x, help) ((void)ASSERT(x))
172 * Check that the given pointer is either NULL or pointing to valid memory.
174 * The assumption here is that valid pointers never point to low
175 * memory regions. This helps catching pointers taken from
176 * struct/class memebers when the struct pointer was NULL.
178 * \see ASSERT_VALID_PTR_OR_NULL()
180 #define ASSERT_VALID_PTR(p) ((void)(LIKELY((void *)(p) >= (void *)CPU_RAM_START) \
181 ? 0 : __invalid_ptr(p, #p, THIS_FILE, __LINE__)))
184 * Check that the given pointer is not pointing to invalid memory.
186 * \note The check for invalid memory is architecture specific and
187 * conservative. The current implementation only checks against
190 * \see ASSERT_VALID_PTR()
192 #define ASSERT_VALID_PTR_OR_NULL(p) ((void)(LIKELY((p == NULL) \
193 || ((void *)(p) >= (void *)CPU_RAM_START)) \
194 ? 0 : __invalid_ptr((p), #p, THIS_FILE, __LINE__)))
196 #if !CONFIG_KDEBUG_DISABLE_TRACE
197 #define TRACE __trace(__func__)
198 #define TRACEMSG(msg,...) __tracemsg(__func__, msg, ## __VA_ARGS__)
200 #define TRACE do {} while(0)
201 #define TRACEMSG(...) do {} while(0)
206 * \name Walls to detect data corruption
210 #define WALL_VALUE (long)0xABADCAFEL
211 #define DECLARE_WALL(name,size) long name[(size) / sizeof(long)];
212 #define FWD_DECLARE_WALL(name,size) extern long name[(size) / sizeof(long)];
213 #define INIT_WALL(name) __init_wall((name), countof(name))
214 #define CHECK_WALL(name) __check_wall((name), countof(name), #name, THIS_FILE, __LINE__)
218 * Check that the given pointer actually points to an object
219 * of the specified type.
221 #define ASSERT_VALID_OBJ(_t, _o) do { \
222 ASSERT_VALID_PTR((_o)); \
223 ASSERT(dynamic_cast<_t>((_o)) != NULL); \
227 * \name Debug object creation and destruction.
229 * These macros help track some kinds of leaks in C++ programs.
230 * Usage is as follows:
235 * DECLARE_INSTANCE_TRACKING(Foo)
245 * DELETE_INSTANCE(Foo);
250 * // Put this in the implementation file of the class
251 * IMPLEMENT_INSTANCE_TRACKING(Foo)
256 * Foo *foo = new Foo;
257 * cout << GET_INSTANCE_COUNT(Foo) << endl; // prints "1"
259 * ASSERT_ZERO_INSTANCES(Foo); // OK
264 #define NEW_INSTANCE(CLASS) do { ++CLASS::__instances } while (0)
265 #define DELETE_INSTANCE(CLASS) do { --CLASS::__instances } while (0)
266 #define ASSERT_ZERO_INSTANCES(CLASS) ASSERT(CLASS::__instances == 0)
267 #define GET_INSTANCE_COUNT(CLASS) (CLASS::__instances)
268 #define DECLARE_INSTANCE_TRACKING(CLASS) static int __instances
269 #define IMPLEMENT_INSTANCE_TRACKING(CLASS) int CLASS::__instances = 0
275 * On UNIX systems the extabilished practice is to define
276 * NDEBUG for release builds and nothing for debug builds.
282 #define DB(x) /* nothing */
284 #define ASSERT(x) ((void)0)
286 #define ASSERT2(x, help) ((void)0)
287 #define ASSERT_VALID_PTR(p) ((void)0)
288 #define ASSERT_VALID_PTR_OR_NULL(p) ((void)0)
289 #define ASSERT_VALID_OBJ(_t, _o) ((void)0)
290 #define TRACE do {} while (0)
291 #if COMPILER_VARIADIC_MACROS
292 #define TRACEMSG(x, ...) do {} while (0)
294 INLINE void TRACEMSG(UNUSED_ARG(const char *, msg), ...)
300 #define DECLARE_WALL(name, size) /* nothing */
301 #define FWD_DECLARE_WALL(name, size) /* nothing */
302 #define INIT_WALL(name) do {} while (0)
303 #define CHECK_WALL(name) do {} while (0)
305 #define NEW_INSTANCE(CLASS) do {} while (0)
306 #define DELETE_INSTANCE(CLASS) do {} while (0)
307 #define ASSERT_ZERO_INSTANCES(CLASS) do {} while (0)
308 #define GET_INSTANCE_COUNT(CLASS) ERROR_ONLY_FOR_DEBUG
309 #define DECLARE_INSTANCE_TRACKING(CLASS)
310 #define IMPLEMENT_INSTANCE_TRACKING(CLASS)
312 INLINE void kdbg_init(void) { /* nop */ }
313 INLINE void kputchar(UNUSED_ARG(char, c)) { /* nop */ }
314 INLINE int kputnum(UNUSED_ARG(int, num)) { return 0; }
315 INLINE void kputs(UNUSED_ARG(const char *, str)) { /* nop */ }
316 INLINE void kdump(UNUSED_ARG(const void *, buf), UNUSED_ARG(size_t, len)) { /* nop */ }
318 #if defined(__cplusplus) && COMPILER_VARIADIC_MACROS
319 /* G++ can't inline functions with variable arguments... */
320 #define kprintf(fmt,...) do { (void)(fmt); } while(0)
322 /* ...but GCC can. */
323 INLINE void kprintf(UNUSED_ARG(const char *, fmt), ...) { /* nop */ }
328 #endif /* BERTOS_DEBUG_H */