2005-04-17 21:16:13 +02:00
|
|
|
#ifndef GDBSTUB_H
|
|
|
|
#define GDBSTUB_H
|
|
|
|
|
2007-02-22 02:48:01 +01:00
|
|
|
#define DEFAULT_GDBSTUB_PORT "1234"
|
2005-04-17 21:16:13 +02:00
|
|
|
|
2009-03-12 21:12:48 +01:00
|
|
|
/* GDB breakpoint/watchpoint types */
|
|
|
|
#define GDB_BREAKPOINT_SW 0
|
|
|
|
#define GDB_BREAKPOINT_HW 1
|
|
|
|
#define GDB_WATCHPOINT_WRITE 2
|
|
|
|
#define GDB_WATCHPOINT_READ 3
|
|
|
|
#define GDB_WATCHPOINT_ACCESS 4
|
|
|
|
|
2010-03-29 21:23:47 +02:00
|
|
|
#ifdef NEED_CPU_H
|
2012-03-14 01:38:32 +01:00
|
|
|
typedef void (*gdb_syscall_complete_cb)(CPUArchState *env,
|
2007-01-28 04:10:55 +01:00
|
|
|
target_ulong ret, target_ulong err);
|
|
|
|
|
2008-09-14 08:45:34 +02:00
|
|
|
void gdb_do_syscall(gdb_syscall_complete_cb cb, const char *fmt, ...);
|
2007-01-28 04:10:55 +01:00
|
|
|
int use_gdb_syscalls(void);
|
2012-03-14 01:38:32 +01:00
|
|
|
void gdb_set_stop_cpu(CPUArchState *env);
|
|
|
|
void gdb_exit(CPUArchState *, int);
|
2005-04-17 21:16:13 +02:00
|
|
|
#ifdef CONFIG_USER_ONLY
|
2008-12-18 23:44:13 +01:00
|
|
|
int gdb_queuesig (void);
|
2012-03-14 01:38:32 +01:00
|
|
|
int gdb_handlesig (CPUArchState *, int);
|
|
|
|
void gdb_signalled(CPUArchState *, int);
|
|
|
|
void gdbserver_fork(CPUArchState *);
|
2007-01-28 02:53:16 +01:00
|
|
|
#endif
|
2008-10-11 19:55:29 +02:00
|
|
|
/* Get or set a register. Returns the size of the register. */
|
2012-03-14 01:38:32 +01:00
|
|
|
typedef int (*gdb_reg_cb)(CPUArchState *env, uint8_t *buf, int reg);
|
|
|
|
void gdb_register_coprocessor(CPUArchState *env,
|
2008-10-11 19:55:29 +02:00
|
|
|
gdb_reg_cb get_reg, gdb_reg_cb set_reg,
|
|
|
|
int num_regs, const char *xml, int g_pos);
|
2005-04-17 21:16:13 +02:00
|
|
|
|
2012-05-07 06:10:05 +02:00
|
|
|
static inline int cpu_index(CPUArchState *env)
|
|
|
|
{
|
|
|
|
#if defined(CONFIG_USER_ONLY) && defined(CONFIG_USE_NPTL)
|
|
|
|
return env->host_tid;
|
|
|
|
#else
|
|
|
|
return env->cpu_index + 1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2005-04-17 21:16:13 +02:00
|
|
|
#endif
|
2010-03-29 21:23:47 +02:00
|
|
|
|
|
|
|
#ifdef CONFIG_USER_ONLY
|
|
|
|
int gdbserver_start(int);
|
|
|
|
#else
|
|
|
|
int gdbserver_start(const char *port);
|
|
|
|
#endif
|
|
|
|
|
2011-01-20 21:54:21 +01:00
|
|
|
/* in gdbstub-xml.c, generated by scripts/feature_to_c.sh */
|
2010-09-18 09:02:16 +02:00
|
|
|
extern const char *const xml_builtin[][2];
|
|
|
|
|
2010-03-29 21:23:47 +02:00
|
|
|
#endif
|