1#ifndef GDBSTUB_H
2#define GDBSTUB_H
3
4#define DEFAULT_GDBSTUB_PORT "1234"
5
6
7#define GDB_BREAKPOINT_SW 0
8#define GDB_BREAKPOINT_HW 1
9#define GDB_WATCHPOINT_WRITE 2
10#define GDB_WATCHPOINT_READ 3
11#define GDB_WATCHPOINT_ACCESS 4
12
13#ifdef NEED_CPU_H
14#include "cpu.h"
15
16typedef void (*gdb_syscall_complete_cb)(CPUState *cpu,
17 target_ulong ret, target_ulong err);
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36void gdb_do_syscall(gdb_syscall_complete_cb cb, const char *fmt, ...);
37
38
39
40
41
42
43
44
45
46void gdb_do_syscallv(gdb_syscall_complete_cb cb, const char *fmt, va_list va);
47int use_gdb_syscalls(void);
48void gdb_set_stop_cpu(CPUState *cpu);
49void gdb_exit(CPUArchState *, int);
50#ifdef CONFIG_USER_ONLY
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66int gdb_handlesig(CPUState *, int);
67void gdb_signalled(CPUArchState *, int);
68void gdbserver_fork(CPUState *);
69#endif
70
71typedef int (*gdb_get_reg_cb)(CPUArchState *env, GByteArray *buf, int reg);
72typedef int (*gdb_set_reg_cb)(CPUArchState *env, uint8_t *buf, int reg);
73void gdb_register_coprocessor(CPUState *cpu,
74 gdb_get_reg_cb get_reg, gdb_set_reg_cb set_reg,
75 int num_regs, const char *xml, int g_pos);
76
77
78
79
80
81
82
83static inline int gdb_get_reg8(GByteArray *buf, uint8_t val)
84{
85 g_byte_array_append(buf, &val, 1);
86 return 1;
87}
88
89static inline int gdb_get_reg16(GByteArray *buf, uint16_t val)
90{
91 uint16_t to_word = tswap16(val);
92 g_byte_array_append(buf, (uint8_t *) &to_word, 2);
93 return 2;
94}
95
96static inline int gdb_get_reg32(GByteArray *buf, uint32_t val)
97{
98 uint32_t to_long = tswap32(val);
99 g_byte_array_append(buf, (uint8_t *) &to_long, 4);
100 return 4;
101}
102
103static inline int gdb_get_reg64(GByteArray *buf, uint64_t val)
104{
105 uint64_t to_quad = tswap64(val);
106 g_byte_array_append(buf, (uint8_t *) &to_quad, 8);
107 return 8;
108}
109
110static inline int gdb_get_reg128(GByteArray *buf, uint64_t val_hi,
111 uint64_t val_lo)
112{
113 uint64_t to_quad;
114#ifdef TARGET_WORDS_BIGENDIAN
115 to_quad = tswap64(val_hi);
116 g_byte_array_append(buf, (uint8_t *) &to_quad, 8);
117 to_quad = tswap64(val_lo);
118 g_byte_array_append(buf, (uint8_t *) &to_quad, 8);
119#else
120 to_quad = tswap64(val_lo);
121 g_byte_array_append(buf, (uint8_t *) &to_quad, 8);
122 to_quad = tswap64(val_hi);
123 g_byte_array_append(buf, (uint8_t *) &to_quad, 8);
124#endif
125 return 16;
126}
127
128static inline int gdb_get_float32(GByteArray *array, float32 val)
129{
130 uint8_t buf[sizeof(CPU_FloatU)];
131
132 stfl_p(buf, val);
133 g_byte_array_append(array, buf, sizeof(buf));
134
135 return sizeof(buf);
136}
137
138static inline int gdb_get_float64(GByteArray *array, float64 val)
139{
140 uint8_t buf[sizeof(CPU_DoubleU)];
141
142 stfq_p(buf, val);
143 g_byte_array_append(array, buf, sizeof(buf));
144
145 return sizeof(buf);
146}
147
148static inline int gdb_get_zeroes(GByteArray *array, size_t len)
149{
150 guint oldlen = array->len;
151 g_byte_array_set_size(array, oldlen + len);
152 memset(array->data + oldlen, 0, len);
153
154 return len;
155}
156
157
158
159
160
161
162
163
164
165static inline uint8_t * gdb_get_reg_ptr(GByteArray *buf, int len)
166{
167 return buf->data + buf->len - len;
168}
169
170#if TARGET_LONG_BITS == 64
171#define gdb_get_regl(buf, val) gdb_get_reg64(buf, val)
172#define ldtul_p(addr) ldq_p(addr)
173#else
174#define gdb_get_regl(buf, val) gdb_get_reg32(buf, val)
175#define ldtul_p(addr) ldl_p(addr)
176#endif
177
178#endif
179
180
181
182
183
184
185
186
187
188int gdbserver_start(const char *port_or_device);
189
190void gdbserver_cleanup(void);
191
192
193
194
195
196
197
198extern bool gdb_has_xml;
199
200
201extern const char *const xml_builtin[][2];
202
203#endif
204