2002-07-09 16:24:59 +04:00
|
|
|
/*
|
2008-01-31 15:25:43 +03:00
|
|
|
* Copyright 2002-2008, Axel Dörfler, axeld@pinc-software.de
|
2005-05-29 17:01:38 +04:00
|
|
|
* Distributed under the terms of the Haiku License.
|
|
|
|
*
|
|
|
|
* Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
|
|
* Distributed under the terms of the NewOS License.
|
|
|
|
*/
|
2002-07-09 16:24:59 +04:00
|
|
|
#ifndef _KERNEL_DEBUG_H
|
|
|
|
#define _KERNEL_DEBUG_H
|
|
|
|
|
2003-05-03 20:03:26 +04:00
|
|
|
|
2007-10-04 02:14:53 +04:00
|
|
|
#include <KernelExport.h>
|
2008-01-31 15:25:43 +03:00
|
|
|
#include <module.h>
|
|
|
|
|
2003-05-03 20:03:26 +04:00
|
|
|
|
2007-07-23 04:59:30 +04:00
|
|
|
#define KDEBUG 1
|
2003-11-11 07:01:31 +03:00
|
|
|
|
2005-05-29 17:01:38 +04:00
|
|
|
#if DEBUG
|
2008-08-12 21:09:42 +04:00
|
|
|
/*
|
|
|
|
* The kernel debug level.
|
2007-06-21 09:37:46 +04:00
|
|
|
* Level 1 is usual asserts, > 1 should be used for very expensive runtime checks
|
|
|
|
*/
|
2008-01-31 15:25:43 +03:00
|
|
|
# define KDEBUG 1
|
2007-06-21 09:37:46 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define ASSERT_ALWAYS(x) \
|
|
|
|
do { if (!(x)) { panic("ASSERT FAILED (%s:%d): %s\n", __FILE__, __LINE__, #x); } } while (0)
|
|
|
|
|
2007-08-06 21:35:57 +04:00
|
|
|
#define ASSERT_ALWAYS_PRINT(x, format...) \
|
|
|
|
do { \
|
|
|
|
if (!(x)) { \
|
2007-10-04 02:14:53 +04:00
|
|
|
dprintf_no_syslog(format); \
|
2007-08-06 21:35:57 +04:00
|
|
|
panic("ASSERT FAILED (%s:%d): %s\n", __FILE__, __LINE__, #x); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
2007-06-21 09:37:46 +04:00
|
|
|
#if KDEBUG
|
2007-08-06 21:35:57 +04:00
|
|
|
# define ASSERT(x) ASSERT_ALWAYS(x)
|
|
|
|
# define ASSERT_PRINT(x, format...) ASSERT_ALWAYS_PRINT(x, format)
|
2008-08-12 21:09:42 +04:00
|
|
|
#else
|
2007-08-06 21:35:57 +04:00
|
|
|
# define ASSERT(x) do { } while(0)
|
|
|
|
# define ASSERT_PRINT(x, format...) do { } while(0)
|
2002-07-09 16:24:59 +04:00
|
|
|
#endif
|
2002-07-18 22:45:07 +04:00
|
|
|
|
2008-07-18 06:05:27 +04:00
|
|
|
#if KDEBUG
|
|
|
|
# define KDEBUG_ONLY(x) x
|
|
|
|
#else
|
|
|
|
# define KDEBUG_ONLY(x) /* nothing */
|
|
|
|
#endif
|
|
|
|
|
2008-06-01 06:25:00 +04:00
|
|
|
// command return value
|
|
|
|
#define B_KDEBUG_ERROR 4
|
|
|
|
|
|
|
|
// command flags
|
2008-01-22 02:25:34 +03:00
|
|
|
#define B_KDEBUG_DONT_PARSE_ARGUMENTS (0x01)
|
2008-06-01 06:25:00 +04:00
|
|
|
#define B_KDEBUG_PIPE_FINAL_RERUN (0x02)
|
2008-01-22 02:25:34 +03:00
|
|
|
|
2008-01-31 15:25:43 +03:00
|
|
|
struct debugger_module_info {
|
|
|
|
module_info info;
|
|
|
|
|
|
|
|
void (*enter_debugger)(void);
|
|
|
|
void (*exit_debugger)(void);
|
2008-02-22 01:41:49 +03:00
|
|
|
|
|
|
|
// io hooks
|
|
|
|
int (*debugger_puts)(const char *str, int32 length);
|
|
|
|
int (*debugger_getchar)(void);
|
|
|
|
// TODO: add hooks for tunnelling gdb ?
|
2008-01-31 15:25:43 +03:00
|
|
|
};
|
|
|
|
|
2004-05-18 13:42:13 +04:00
|
|
|
extern int dbg_register_file[B_MAX_CPU_COUNT][14];
|
2005-05-29 17:01:38 +04:00
|
|
|
|
2008-08-12 21:09:42 +04:00
|
|
|
typedef struct debug_page_fault_info {
|
|
|
|
addr_t fault_address;
|
|
|
|
addr_t pc;
|
|
|
|
uint32 flags;
|
|
|
|
} debug_page_fault_info;
|
|
|
|
|
|
|
|
// debug_page_fault_info::flags
|
|
|
|
#define DEBUG_PAGE_FAULT_WRITE 0x01 /* write fault */
|
|
|
|
#define DEBUG_PAGE_FAULT_NO_INFO 0x02 /* fault address and read/write
|
|
|
|
unknown */
|
|
|
|
|
|
|
|
|
2003-11-14 01:07:36 +03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2007-06-21 09:37:46 +04:00
|
|
|
struct kernel_args;
|
|
|
|
|
2004-10-21 05:41:29 +04:00
|
|
|
extern status_t debug_init(struct kernel_args *args);
|
|
|
|
extern status_t debug_init_post_vm(struct kernel_args *args);
|
2005-12-13 03:06:52 +03:00
|
|
|
extern status_t debug_init_post_modules(struct kernel_args *args);
|
2005-05-29 17:01:38 +04:00
|
|
|
extern void debug_early_boot_message(const char *string);
|
2006-04-04 00:48:30 +04:00
|
|
|
extern void debug_puts(const char *s, int32 length);
|
2005-08-22 03:27:51 +04:00
|
|
|
extern bool debug_debugger_running(void);
|
2008-03-20 14:10:17 +03:00
|
|
|
extern bool debug_screen_output_enabled(void);
|
2006-01-25 19:12:10 +03:00
|
|
|
extern void debug_stop_screen_debug_output(void);
|
2008-08-12 21:09:42 +04:00
|
|
|
extern void debug_set_page_fault_info(addr_t faultAddress, addr_t pc,
|
|
|
|
uint32 flags);
|
|
|
|
extern debug_page_fault_info* debug_get_page_fault_info();
|
2003-11-14 01:07:36 +03:00
|
|
|
|
2008-01-21 03:15:33 +03:00
|
|
|
extern void kputs(const char *string);
|
2008-06-01 06:25:00 +04:00
|
|
|
extern void kputs_unfiltered(const char *string);
|
|
|
|
extern void kprintf_unfiltered(const char *format, ...)
|
|
|
|
__attribute__ ((format (__printf__, 1, 2)));
|
2007-10-04 02:14:53 +04:00
|
|
|
extern void dprintf_no_syslog(const char *format, ...)
|
|
|
|
__attribute__ ((format (__printf__, 1, 2)));
|
|
|
|
|
2008-01-16 03:01:20 +03:00
|
|
|
extern bool is_debug_variable_defined(const char* variableName);
|
|
|
|
extern bool set_debug_variable(const char* variableName, uint64 value);
|
|
|
|
extern uint64 get_debug_variable(const char* variableName,
|
|
|
|
uint64 defaultValue);
|
2008-01-17 00:50:59 +03:00
|
|
|
extern bool unset_debug_variable(const char* variableName);
|
|
|
|
extern void unset_all_debug_variables();
|
2008-01-16 03:01:20 +03:00
|
|
|
|
|
|
|
extern bool evaluate_debug_expression(const char* expression,
|
|
|
|
uint64* result, bool silent);
|
|
|
|
extern int evaluate_debug_command(const char* command);
|
|
|
|
|
2008-01-17 02:41:20 +03:00
|
|
|
extern status_t add_debugger_command_etc(const char* name,
|
|
|
|
debugger_command_hook func, const char* description,
|
|
|
|
const char* usage, uint32 flags);
|
|
|
|
extern status_t add_debugger_command_alias(const char* newName,
|
|
|
|
const char* oldName, const char* description);
|
|
|
|
extern bool print_debugger_command_usage(const char* command);
|
|
|
|
|
2008-07-23 20:08:16 +04:00
|
|
|
extern void debug_set_demangle_hook(const char *(*hook)(const char *));
|
|
|
|
extern const char *debug_demangle(const char *);
|
|
|
|
|
2008-08-12 21:09:42 +04:00
|
|
|
extern void _user_debug_output(const char *userString);
|
|
|
|
|
2003-11-14 01:07:36 +03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-07-18 22:45:07 +04:00
|
|
|
#endif /* _KERNEL_DEBUG_H */
|