blob: b5ec362244ae11ec9e117ef93fc6300563788802 [file] [log] [blame]
bellardb4608c02003-06-27 17:34:32 +00001/*
2 * gdb server stub
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard34751872005-07-02 14:31:34 +00004 * Copyright (c) 2003-2005 Fabrice Bellard
bellardb4608c02003-06-27 17:34:32 +00005 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library 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 GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
Blue Swirl8167ee82009-07-16 20:47:01 +000017 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
bellardb4608c02003-06-27 17:34:32 +000018 */
pbrook978efd62006-06-17 18:30:42 +000019#include "config.h"
pbrook56aebc82008-10-11 17:55:29 +000020#include "qemu-common.h"
bellard1fddef42005-04-17 19:16:13 +000021#ifdef CONFIG_USER_ONLY
22#include <stdlib.h>
23#include <stdio.h>
24#include <stdarg.h>
25#include <string.h>
26#include <errno.h>
27#include <unistd.h>
pbrook978efd62006-06-17 18:30:42 +000028#include <fcntl.h>
bellard1fddef42005-04-17 19:16:13 +000029
30#include "qemu.h"
31#else
aliguori8a34a0f2009-03-05 23:01:55 +000032#include "monitor.h"
pbrook87ecb682007-11-17 17:14:51 +000033#include "qemu-char.h"
34#include "sysemu.h"
35#include "gdbstub.h"
bellard1fddef42005-04-17 19:16:13 +000036#endif
bellard67b915a2004-03-31 23:37:16 +000037
pbrook56aebc82008-10-11 17:55:29 +000038#define MAX_PACKET_LENGTH 4096
39
Blue Swirl2b41f102011-06-19 20:38:22 +000040#include "cpu.h"
bellard8f447cc2006-06-14 15:21:14 +000041#include "qemu_socket.h"
aliguorie22a25c2009-03-12 20:12:48 +000042#include "kvm.h"
aurel32ca587a82008-12-18 22:44:13 +000043
Fabien Chouteau44520db2011-09-08 12:48:16 +020044#ifndef TARGET_CPU_MEMORY_RW_DEBUG
45static inline int target_memory_rw_debug(CPUState *env, target_ulong addr,
46 uint8_t *buf, int len, int is_write)
47{
48 return cpu_memory_rw_debug(env, addr, buf, len, is_write);
49}
50#else
51/* target_memory_rw_debug() defined in cpu.h */
52#endif
aurel32ca587a82008-12-18 22:44:13 +000053
54enum {
55 GDB_SIGNAL_0 = 0,
56 GDB_SIGNAL_INT = 2,
Jan Kiszka425189a2011-03-22 11:02:09 +010057 GDB_SIGNAL_QUIT = 3,
aurel32ca587a82008-12-18 22:44:13 +000058 GDB_SIGNAL_TRAP = 5,
Jan Kiszka425189a2011-03-22 11:02:09 +010059 GDB_SIGNAL_ABRT = 6,
60 GDB_SIGNAL_ALRM = 14,
61 GDB_SIGNAL_IO = 23,
62 GDB_SIGNAL_XCPU = 24,
aurel32ca587a82008-12-18 22:44:13 +000063 GDB_SIGNAL_UNKNOWN = 143
64};
65
66#ifdef CONFIG_USER_ONLY
67
68/* Map target signal numbers to GDB protocol signal numbers and vice
69 * versa. For user emulation's currently supported systems, we can
70 * assume most signals are defined.
71 */
72
73static int gdb_signal_table[] = {
74 0,
75 TARGET_SIGHUP,
76 TARGET_SIGINT,
77 TARGET_SIGQUIT,
78 TARGET_SIGILL,
79 TARGET_SIGTRAP,
80 TARGET_SIGABRT,
81 -1, /* SIGEMT */
82 TARGET_SIGFPE,
83 TARGET_SIGKILL,
84 TARGET_SIGBUS,
85 TARGET_SIGSEGV,
86 TARGET_SIGSYS,
87 TARGET_SIGPIPE,
88 TARGET_SIGALRM,
89 TARGET_SIGTERM,
90 TARGET_SIGURG,
91 TARGET_SIGSTOP,
92 TARGET_SIGTSTP,
93 TARGET_SIGCONT,
94 TARGET_SIGCHLD,
95 TARGET_SIGTTIN,
96 TARGET_SIGTTOU,
97 TARGET_SIGIO,
98 TARGET_SIGXCPU,
99 TARGET_SIGXFSZ,
100 TARGET_SIGVTALRM,
101 TARGET_SIGPROF,
102 TARGET_SIGWINCH,
103 -1, /* SIGLOST */
104 TARGET_SIGUSR1,
105 TARGET_SIGUSR2,
blueswir1c72d5bf2009-01-15 17:27:45 +0000106#ifdef TARGET_SIGPWR
aurel32ca587a82008-12-18 22:44:13 +0000107 TARGET_SIGPWR,
blueswir1c72d5bf2009-01-15 17:27:45 +0000108#else
109 -1,
110#endif
aurel32ca587a82008-12-18 22:44:13 +0000111 -1, /* SIGPOLL */
112 -1,
113 -1,
114 -1,
115 -1,
116 -1,
117 -1,
118 -1,
119 -1,
120 -1,
121 -1,
122 -1,
blueswir1c72d5bf2009-01-15 17:27:45 +0000123#ifdef __SIGRTMIN
aurel32ca587a82008-12-18 22:44:13 +0000124 __SIGRTMIN + 1,
125 __SIGRTMIN + 2,
126 __SIGRTMIN + 3,
127 __SIGRTMIN + 4,
128 __SIGRTMIN + 5,
129 __SIGRTMIN + 6,
130 __SIGRTMIN + 7,
131 __SIGRTMIN + 8,
132 __SIGRTMIN + 9,
133 __SIGRTMIN + 10,
134 __SIGRTMIN + 11,
135 __SIGRTMIN + 12,
136 __SIGRTMIN + 13,
137 __SIGRTMIN + 14,
138 __SIGRTMIN + 15,
139 __SIGRTMIN + 16,
140 __SIGRTMIN + 17,
141 __SIGRTMIN + 18,
142 __SIGRTMIN + 19,
143 __SIGRTMIN + 20,
144 __SIGRTMIN + 21,
145 __SIGRTMIN + 22,
146 __SIGRTMIN + 23,
147 __SIGRTMIN + 24,
148 __SIGRTMIN + 25,
149 __SIGRTMIN + 26,
150 __SIGRTMIN + 27,
151 __SIGRTMIN + 28,
152 __SIGRTMIN + 29,
153 __SIGRTMIN + 30,
154 __SIGRTMIN + 31,
155 -1, /* SIGCANCEL */
156 __SIGRTMIN,
157 __SIGRTMIN + 32,
158 __SIGRTMIN + 33,
159 __SIGRTMIN + 34,
160 __SIGRTMIN + 35,
161 __SIGRTMIN + 36,
162 __SIGRTMIN + 37,
163 __SIGRTMIN + 38,
164 __SIGRTMIN + 39,
165 __SIGRTMIN + 40,
166 __SIGRTMIN + 41,
167 __SIGRTMIN + 42,
168 __SIGRTMIN + 43,
169 __SIGRTMIN + 44,
170 __SIGRTMIN + 45,
171 __SIGRTMIN + 46,
172 __SIGRTMIN + 47,
173 __SIGRTMIN + 48,
174 __SIGRTMIN + 49,
175 __SIGRTMIN + 50,
176 __SIGRTMIN + 51,
177 __SIGRTMIN + 52,
178 __SIGRTMIN + 53,
179 __SIGRTMIN + 54,
180 __SIGRTMIN + 55,
181 __SIGRTMIN + 56,
182 __SIGRTMIN + 57,
183 __SIGRTMIN + 58,
184 __SIGRTMIN + 59,
185 __SIGRTMIN + 60,
186 __SIGRTMIN + 61,
187 __SIGRTMIN + 62,
188 __SIGRTMIN + 63,
189 __SIGRTMIN + 64,
190 __SIGRTMIN + 65,
191 __SIGRTMIN + 66,
192 __SIGRTMIN + 67,
193 __SIGRTMIN + 68,
194 __SIGRTMIN + 69,
195 __SIGRTMIN + 70,
196 __SIGRTMIN + 71,
197 __SIGRTMIN + 72,
198 __SIGRTMIN + 73,
199 __SIGRTMIN + 74,
200 __SIGRTMIN + 75,
201 __SIGRTMIN + 76,
202 __SIGRTMIN + 77,
203 __SIGRTMIN + 78,
204 __SIGRTMIN + 79,
205 __SIGRTMIN + 80,
206 __SIGRTMIN + 81,
207 __SIGRTMIN + 82,
208 __SIGRTMIN + 83,
209 __SIGRTMIN + 84,
210 __SIGRTMIN + 85,
211 __SIGRTMIN + 86,
212 __SIGRTMIN + 87,
213 __SIGRTMIN + 88,
214 __SIGRTMIN + 89,
215 __SIGRTMIN + 90,
216 __SIGRTMIN + 91,
217 __SIGRTMIN + 92,
218 __SIGRTMIN + 93,
219 __SIGRTMIN + 94,
220 __SIGRTMIN + 95,
221 -1, /* SIGINFO */
222 -1, /* UNKNOWN */
223 -1, /* DEFAULT */
224 -1,
225 -1,
226 -1,
227 -1,
228 -1,
229 -1
blueswir1c72d5bf2009-01-15 17:27:45 +0000230#endif
aurel32ca587a82008-12-18 22:44:13 +0000231};
bellard8f447cc2006-06-14 15:21:14 +0000232#else
aurel32ca587a82008-12-18 22:44:13 +0000233/* In system mode we only need SIGINT and SIGTRAP; other signals
234 are not yet supported. */
235
236enum {
237 TARGET_SIGINT = 2,
238 TARGET_SIGTRAP = 5
239};
240
241static int gdb_signal_table[] = {
242 -1,
243 -1,
244 TARGET_SIGINT,
245 -1,
246 -1,
247 TARGET_SIGTRAP
248};
bellard8f447cc2006-06-14 15:21:14 +0000249#endif
bellardb4608c02003-06-27 17:34:32 +0000250
aurel32ca587a82008-12-18 22:44:13 +0000251#ifdef CONFIG_USER_ONLY
252static int target_signal_to_gdb (int sig)
253{
254 int i;
255 for (i = 0; i < ARRAY_SIZE (gdb_signal_table); i++)
256 if (gdb_signal_table[i] == sig)
257 return i;
258 return GDB_SIGNAL_UNKNOWN;
259}
260#endif
261
262static int gdb_signal_to_target (int sig)
263{
264 if (sig < ARRAY_SIZE (gdb_signal_table))
265 return gdb_signal_table[sig];
266 else
267 return -1;
268}
269
bellard4abe6152003-07-26 18:01:58 +0000270//#define DEBUG_GDB
bellardb4608c02003-06-27 17:34:32 +0000271
pbrook56aebc82008-10-11 17:55:29 +0000272typedef struct GDBRegisterState {
273 int base_reg;
274 int num_regs;
275 gdb_reg_cb get_reg;
276 gdb_reg_cb set_reg;
277 const char *xml;
278 struct GDBRegisterState *next;
279} GDBRegisterState;
280
bellard858693c2004-03-31 18:52:07 +0000281enum RSState {
aliguori36556b22009-03-28 18:05:53 +0000282 RS_INACTIVE,
bellard858693c2004-03-31 18:52:07 +0000283 RS_IDLE,
284 RS_GETLINE,
285 RS_CHKSUM1,
286 RS_CHKSUM2,
pbrooka2d1eba2007-01-28 03:10:55 +0000287 RS_SYSCALL,
bellard858693c2004-03-31 18:52:07 +0000288};
bellard858693c2004-03-31 18:52:07 +0000289typedef struct GDBState {
aliguori880a7572008-11-18 20:30:24 +0000290 CPUState *c_cpu; /* current CPU for step/continue ops */
291 CPUState *g_cpu; /* current CPU for other ops */
292 CPUState *query_cpu; /* for q{f|s}ThreadInfo */
bellard41625032005-04-24 10:07:11 +0000293 enum RSState state; /* parsing state */
pbrook56aebc82008-10-11 17:55:29 +0000294 char line_buf[MAX_PACKET_LENGTH];
bellard858693c2004-03-31 18:52:07 +0000295 int line_buf_index;
296 int line_csum;
pbrook56aebc82008-10-11 17:55:29 +0000297 uint8_t last_packet[MAX_PACKET_LENGTH + 4];
pbrook4046d912007-01-28 01:53:16 +0000298 int last_packet_len;
edgar_igl1f487ee2008-05-17 22:20:53 +0000299 int signal;
bellard41625032005-04-24 10:07:11 +0000300#ifdef CONFIG_USER_ONLY
pbrook4046d912007-01-28 01:53:16 +0000301 int fd;
bellard41625032005-04-24 10:07:11 +0000302 int running_state;
pbrook4046d912007-01-28 01:53:16 +0000303#else
304 CharDriverState *chr;
aliguori8a34a0f2009-03-05 23:01:55 +0000305 CharDriverState *mon_chr;
bellard41625032005-04-24 10:07:11 +0000306#endif
bellard858693c2004-03-31 18:52:07 +0000307} GDBState;
bellardb4608c02003-06-27 17:34:32 +0000308
edgar_igl60897d32008-05-09 08:25:14 +0000309/* By default use no IRQs and no timers while single stepping so as to
310 * make single stepping like an ICE HW step.
311 */
312static int sstep_flags = SSTEP_ENABLE|SSTEP_NOIRQ|SSTEP_NOTIMER;
313
aliguori880a7572008-11-18 20:30:24 +0000314static GDBState *gdbserver_state;
315
pbrook56aebc82008-10-11 17:55:29 +0000316/* This is an ugly hack to cope with both new and old gdb.
317 If gdb sends qXfer:features:read then assume we're talking to a newish
318 gdb that understands target descriptions. */
319static int gdb_has_xml;
320
bellard1fddef42005-04-17 19:16:13 +0000321#ifdef CONFIG_USER_ONLY
pbrook4046d912007-01-28 01:53:16 +0000322/* XXX: This is not thread safe. Do we care? */
323static int gdbserver_fd = -1;
324
bellard858693c2004-03-31 18:52:07 +0000325static int get_char(GDBState *s)
bellardb4608c02003-06-27 17:34:32 +0000326{
327 uint8_t ch;
328 int ret;
329
330 for(;;) {
Blue Swirl00aa0042011-07-23 20:04:29 +0000331 ret = qemu_recv(s->fd, &ch, 1, 0);
bellardb4608c02003-06-27 17:34:32 +0000332 if (ret < 0) {
edgar_igl1f487ee2008-05-17 22:20:53 +0000333 if (errno == ECONNRESET)
334 s->fd = -1;
bellardb4608c02003-06-27 17:34:32 +0000335 if (errno != EINTR && errno != EAGAIN)
336 return -1;
337 } else if (ret == 0) {
edgar_igl1f487ee2008-05-17 22:20:53 +0000338 close(s->fd);
339 s->fd = -1;
bellardb4608c02003-06-27 17:34:32 +0000340 return -1;
341 } else {
342 break;
343 }
344 }
345 return ch;
346}
pbrook4046d912007-01-28 01:53:16 +0000347#endif
bellardb4608c02003-06-27 17:34:32 +0000348
pbrooka2d1eba2007-01-28 03:10:55 +0000349static gdb_syscall_complete_cb gdb_current_syscall_cb;
350
blueswir1654efcf2009-04-18 07:29:59 +0000351static enum {
pbrooka2d1eba2007-01-28 03:10:55 +0000352 GDB_SYS_UNKNOWN,
353 GDB_SYS_ENABLED,
354 GDB_SYS_DISABLED,
355} gdb_syscall_mode;
356
357/* If gdb is connected when the first semihosting syscall occurs then use
358 remote gdb syscalls. Otherwise use native file IO. */
359int use_gdb_syscalls(void)
360{
361 if (gdb_syscall_mode == GDB_SYS_UNKNOWN) {
aliguori880a7572008-11-18 20:30:24 +0000362 gdb_syscall_mode = (gdbserver_state ? GDB_SYS_ENABLED
363 : GDB_SYS_DISABLED);
pbrooka2d1eba2007-01-28 03:10:55 +0000364 }
365 return gdb_syscall_mode == GDB_SYS_ENABLED;
366}
367
edgar_iglba70a622008-03-14 06:10:42 +0000368/* Resume execution. */
369static inline void gdb_continue(GDBState *s)
370{
371#ifdef CONFIG_USER_ONLY
372 s->running_state = 1;
373#else
374 vm_start();
375#endif
376}
377
bellard858693c2004-03-31 18:52:07 +0000378static void put_buffer(GDBState *s, const uint8_t *buf, int len)
bellardb4608c02003-06-27 17:34:32 +0000379{
pbrook4046d912007-01-28 01:53:16 +0000380#ifdef CONFIG_USER_ONLY
bellardb4608c02003-06-27 17:34:32 +0000381 int ret;
382
383 while (len > 0) {
bellard8f447cc2006-06-14 15:21:14 +0000384 ret = send(s->fd, buf, len, 0);
bellardb4608c02003-06-27 17:34:32 +0000385 if (ret < 0) {
386 if (errno != EINTR && errno != EAGAIN)
387 return;
388 } else {
389 buf += ret;
390 len -= ret;
391 }
392 }
pbrook4046d912007-01-28 01:53:16 +0000393#else
Anthony Liguori2cc6e0a2011-08-15 11:17:28 -0500394 qemu_chr_fe_write(s->chr, buf, len);
pbrook4046d912007-01-28 01:53:16 +0000395#endif
bellardb4608c02003-06-27 17:34:32 +0000396}
397
398static inline int fromhex(int v)
399{
400 if (v >= '0' && v <= '9')
401 return v - '0';
402 else if (v >= 'A' && v <= 'F')
403 return v - 'A' + 10;
404 else if (v >= 'a' && v <= 'f')
405 return v - 'a' + 10;
406 else
407 return 0;
408}
409
410static inline int tohex(int v)
411{
412 if (v < 10)
413 return v + '0';
414 else
415 return v - 10 + 'a';
416}
417
418static void memtohex(char *buf, const uint8_t *mem, int len)
419{
420 int i, c;
421 char *q;
422 q = buf;
423 for(i = 0; i < len; i++) {
424 c = mem[i];
425 *q++ = tohex(c >> 4);
426 *q++ = tohex(c & 0xf);
427 }
428 *q = '\0';
429}
430
431static void hextomem(uint8_t *mem, const char *buf, int len)
432{
433 int i;
434
435 for(i = 0; i < len; i++) {
436 mem[i] = (fromhex(buf[0]) << 4) | fromhex(buf[1]);
437 buf += 2;
438 }
439}
440
bellardb4608c02003-06-27 17:34:32 +0000441/* return -1 if error, 0 if OK */
pbrook56aebc82008-10-11 17:55:29 +0000442static int put_packet_binary(GDBState *s, const char *buf, int len)
bellardb4608c02003-06-27 17:34:32 +0000443{
pbrook56aebc82008-10-11 17:55:29 +0000444 int csum, i;
ths60fe76f2007-12-16 03:02:09 +0000445 uint8_t *p;
bellardb4608c02003-06-27 17:34:32 +0000446
bellardb4608c02003-06-27 17:34:32 +0000447 for(;;) {
pbrook4046d912007-01-28 01:53:16 +0000448 p = s->last_packet;
449 *(p++) = '$';
pbrook4046d912007-01-28 01:53:16 +0000450 memcpy(p, buf, len);
451 p += len;
bellardb4608c02003-06-27 17:34:32 +0000452 csum = 0;
453 for(i = 0; i < len; i++) {
454 csum += buf[i];
455 }
pbrook4046d912007-01-28 01:53:16 +0000456 *(p++) = '#';
457 *(p++) = tohex((csum >> 4) & 0xf);
458 *(p++) = tohex((csum) & 0xf);
bellardb4608c02003-06-27 17:34:32 +0000459
pbrook4046d912007-01-28 01:53:16 +0000460 s->last_packet_len = p - s->last_packet;
thsffe8ab82007-12-16 03:16:05 +0000461 put_buffer(s, (uint8_t *)s->last_packet, s->last_packet_len);
bellardb4608c02003-06-27 17:34:32 +0000462
pbrook4046d912007-01-28 01:53:16 +0000463#ifdef CONFIG_USER_ONLY
464 i = get_char(s);
465 if (i < 0)
bellardb4608c02003-06-27 17:34:32 +0000466 return -1;
pbrook4046d912007-01-28 01:53:16 +0000467 if (i == '+')
bellardb4608c02003-06-27 17:34:32 +0000468 break;
pbrook4046d912007-01-28 01:53:16 +0000469#else
470 break;
471#endif
bellardb4608c02003-06-27 17:34:32 +0000472 }
473 return 0;
474}
475
pbrook56aebc82008-10-11 17:55:29 +0000476/* return -1 if error, 0 if OK */
477static int put_packet(GDBState *s, const char *buf)
478{
479#ifdef DEBUG_GDB
480 printf("reply='%s'\n", buf);
481#endif
482
483 return put_packet_binary(s, buf, strlen(buf));
484}
485
486/* The GDB remote protocol transfers values in target byte order. This means
487 we can use the raw memory access routines to access the value buffer.
488 Conveniently, these also handle the case where the buffer is mis-aligned.
489 */
490#define GET_REG8(val) do { \
491 stb_p(mem_buf, val); \
492 return 1; \
493 } while(0)
494#define GET_REG16(val) do { \
495 stw_p(mem_buf, val); \
496 return 2; \
497 } while(0)
498#define GET_REG32(val) do { \
499 stl_p(mem_buf, val); \
500 return 4; \
501 } while(0)
502#define GET_REG64(val) do { \
503 stq_p(mem_buf, val); \
504 return 8; \
505 } while(0)
506
507#if TARGET_LONG_BITS == 64
508#define GET_REGL(val) GET_REG64(val)
509#define ldtul_p(addr) ldq_p(addr)
510#else
511#define GET_REGL(val) GET_REG32(val)
512#define ldtul_p(addr) ldl_p(addr)
513#endif
514
edgar_iglfde3fd62008-05-09 08:50:01 +0000515#if defined(TARGET_I386)
balrog5ad265e2007-10-31 00:21:35 +0000516
517#ifdef TARGET_X86_64
pbrook56aebc82008-10-11 17:55:29 +0000518static const int gpr_map[16] = {
bellard79808572008-05-09 14:40:22 +0000519 R_EAX, R_EBX, R_ECX, R_EDX, R_ESI, R_EDI, R_EBP, R_ESP,
pbrook56aebc82008-10-11 17:55:29 +0000520 8, 9, 10, 11, 12, 13, 14, 15
bellard79808572008-05-09 14:40:22 +0000521};
bellard79808572008-05-09 14:40:22 +0000522#else
Jan Kiszka5f30fa12009-09-17 18:14:13 +0200523#define gpr_map gpr_map32
bellard79808572008-05-09 14:40:22 +0000524#endif
Jan Kiszka5f30fa12009-09-17 18:14:13 +0200525static const int gpr_map32[8] = { 0, 1, 2, 3, 4, 5, 6, 7 };
pbrook56aebc82008-10-11 17:55:29 +0000526
527#define NUM_CORE_REGS (CPU_NB_REGS * 2 + 25)
528
Jan Kiszkab1631e72009-06-27 09:53:51 +0200529#define IDX_IP_REG CPU_NB_REGS
530#define IDX_FLAGS_REG (IDX_IP_REG + 1)
531#define IDX_SEG_REGS (IDX_FLAGS_REG + 1)
532#define IDX_FP_REGS (IDX_SEG_REGS + 6)
533#define IDX_XMM_REGS (IDX_FP_REGS + 16)
534#define IDX_MXCSR_REG (IDX_XMM_REGS + CPU_NB_REGS)
535
Andreas Färberf3840912012-02-20 06:44:56 +0100536static int cpu_gdb_read_register(CPUX86State *env, uint8_t *mem_buf, int n)
pbrook56aebc82008-10-11 17:55:29 +0000537{
538 if (n < CPU_NB_REGS) {
Jan Kiszka5f30fa12009-09-17 18:14:13 +0200539 if (TARGET_LONG_BITS == 64 && env->hflags & HF_CS64_MASK) {
540 GET_REG64(env->regs[gpr_map[n]]);
541 } else if (n < CPU_NB_REGS32) {
542 GET_REG32(env->regs[gpr_map32[n]]);
543 }
Jan Kiszkab1631e72009-06-27 09:53:51 +0200544 } else if (n >= IDX_FP_REGS && n < IDX_FP_REGS + 8) {
pbrook56aebc82008-10-11 17:55:29 +0000545#ifdef USE_X86LDOUBLE
Jan Kiszkab1631e72009-06-27 09:53:51 +0200546 /* FIXME: byteswap float values - after fixing fpregs layout. */
547 memcpy(mem_buf, &env->fpregs[n - IDX_FP_REGS], 10);
pbrook56aebc82008-10-11 17:55:29 +0000548#else
549 memset(mem_buf, 0, 10);
550#endif
551 return 10;
Jan Kiszkab1631e72009-06-27 09:53:51 +0200552 } else if (n >= IDX_XMM_REGS && n < IDX_XMM_REGS + CPU_NB_REGS) {
553 n -= IDX_XMM_REGS;
Jan Kiszka5f30fa12009-09-17 18:14:13 +0200554 if (n < CPU_NB_REGS32 ||
555 (TARGET_LONG_BITS == 64 && env->hflags & HF_CS64_MASK)) {
556 stq_p(mem_buf, env->xmm_regs[n].XMM_Q(0));
557 stq_p(mem_buf + 8, env->xmm_regs[n].XMM_Q(1));
558 return 16;
559 }
pbrook56aebc82008-10-11 17:55:29 +0000560 } else {
pbrook56aebc82008-10-11 17:55:29 +0000561 switch (n) {
Jan Kiszka5f30fa12009-09-17 18:14:13 +0200562 case IDX_IP_REG:
563 if (TARGET_LONG_BITS == 64 && env->hflags & HF_CS64_MASK) {
564 GET_REG64(env->eip);
565 } else {
566 GET_REG32(env->eip);
567 }
Jan Kiszkab1631e72009-06-27 09:53:51 +0200568 case IDX_FLAGS_REG: GET_REG32(env->eflags);
569
570 case IDX_SEG_REGS: GET_REG32(env->segs[R_CS].selector);
571 case IDX_SEG_REGS + 1: GET_REG32(env->segs[R_SS].selector);
572 case IDX_SEG_REGS + 2: GET_REG32(env->segs[R_DS].selector);
573 case IDX_SEG_REGS + 3: GET_REG32(env->segs[R_ES].selector);
574 case IDX_SEG_REGS + 4: GET_REG32(env->segs[R_FS].selector);
575 case IDX_SEG_REGS + 5: GET_REG32(env->segs[R_GS].selector);
576
577 case IDX_FP_REGS + 8: GET_REG32(env->fpuc);
578 case IDX_FP_REGS + 9: GET_REG32((env->fpus & ~0x3800) |
579 (env->fpstt & 0x7) << 11);
580 case IDX_FP_REGS + 10: GET_REG32(0); /* ftag */
581 case IDX_FP_REGS + 11: GET_REG32(0); /* fiseg */
582 case IDX_FP_REGS + 12: GET_REG32(0); /* fioff */
583 case IDX_FP_REGS + 13: GET_REG32(0); /* foseg */
584 case IDX_FP_REGS + 14: GET_REG32(0); /* fooff */
585 case IDX_FP_REGS + 15: GET_REG32(0); /* fop */
586
587 case IDX_MXCSR_REG: GET_REG32(env->mxcsr);
pbrook56aebc82008-10-11 17:55:29 +0000588 }
bellard79808572008-05-09 14:40:22 +0000589 }
pbrook56aebc82008-10-11 17:55:29 +0000590 return 0;
bellard79808572008-05-09 14:40:22 +0000591}
592
Andreas Färberf3840912012-02-20 06:44:56 +0100593static int cpu_x86_gdb_load_seg(CPUX86State *env, int sreg, uint8_t *mem_buf)
Jan Kiszka84273172009-06-27 09:53:51 +0200594{
595 uint16_t selector = ldl_p(mem_buf);
596
597 if (selector != env->segs[sreg].selector) {
598#if defined(CONFIG_USER_ONLY)
599 cpu_x86_load_seg(env, sreg, selector);
600#else
601 unsigned int limit, flags;
602 target_ulong base;
603
604 if (!(env->cr[0] & CR0_PE_MASK) || (env->eflags & VM_MASK)) {
605 base = selector << 4;
606 limit = 0xffff;
607 flags = 0;
608 } else {
609 if (!cpu_x86_get_descr_debug(env, selector, &base, &limit, &flags))
610 return 4;
611 }
612 cpu_x86_load_seg_cache(env, sreg, selector, base, limit, flags);
613#endif
614 }
615 return 4;
616}
617
Andreas Färberf3840912012-02-20 06:44:56 +0100618static int cpu_gdb_write_register(CPUX86State *env, uint8_t *mem_buf, int n)
bellard79808572008-05-09 14:40:22 +0000619{
pbrook56aebc82008-10-11 17:55:29 +0000620 uint32_t tmp;
621
Jan Kiszkab1631e72009-06-27 09:53:51 +0200622 if (n < CPU_NB_REGS) {
Jan Kiszka5f30fa12009-09-17 18:14:13 +0200623 if (TARGET_LONG_BITS == 64 && env->hflags & HF_CS64_MASK) {
624 env->regs[gpr_map[n]] = ldtul_p(mem_buf);
625 return sizeof(target_ulong);
626 } else if (n < CPU_NB_REGS32) {
627 n = gpr_map32[n];
628 env->regs[n] &= ~0xffffffffUL;
629 env->regs[n] |= (uint32_t)ldl_p(mem_buf);
630 return 4;
631 }
Jan Kiszkab1631e72009-06-27 09:53:51 +0200632 } else if (n >= IDX_FP_REGS && n < IDX_FP_REGS + 8) {
pbrook56aebc82008-10-11 17:55:29 +0000633#ifdef USE_X86LDOUBLE
Jan Kiszkab1631e72009-06-27 09:53:51 +0200634 /* FIXME: byteswap float values - after fixing fpregs layout. */
635 memcpy(&env->fpregs[n - IDX_FP_REGS], mem_buf, 10);
pbrook56aebc82008-10-11 17:55:29 +0000636#endif
637 return 10;
Jan Kiszkab1631e72009-06-27 09:53:51 +0200638 } else if (n >= IDX_XMM_REGS && n < IDX_XMM_REGS + CPU_NB_REGS) {
639 n -= IDX_XMM_REGS;
Jan Kiszka5f30fa12009-09-17 18:14:13 +0200640 if (n < CPU_NB_REGS32 ||
641 (TARGET_LONG_BITS == 64 && env->hflags & HF_CS64_MASK)) {
642 env->xmm_regs[n].XMM_Q(0) = ldq_p(mem_buf);
643 env->xmm_regs[n].XMM_Q(1) = ldq_p(mem_buf + 8);
644 return 16;
645 }
pbrook56aebc82008-10-11 17:55:29 +0000646 } else {
Jan Kiszkab1631e72009-06-27 09:53:51 +0200647 switch (n) {
648 case IDX_IP_REG:
Jan Kiszka5f30fa12009-09-17 18:14:13 +0200649 if (TARGET_LONG_BITS == 64 && env->hflags & HF_CS64_MASK) {
650 env->eip = ldq_p(mem_buf);
651 return 8;
652 } else {
653 env->eip &= ~0xffffffffUL;
654 env->eip |= (uint32_t)ldl_p(mem_buf);
655 return 4;
656 }
Jan Kiszkab1631e72009-06-27 09:53:51 +0200657 case IDX_FLAGS_REG:
658 env->eflags = ldl_p(mem_buf);
659 return 4;
660
Jan Kiszka84273172009-06-27 09:53:51 +0200661 case IDX_SEG_REGS: return cpu_x86_gdb_load_seg(env, R_CS, mem_buf);
662 case IDX_SEG_REGS + 1: return cpu_x86_gdb_load_seg(env, R_SS, mem_buf);
663 case IDX_SEG_REGS + 2: return cpu_x86_gdb_load_seg(env, R_DS, mem_buf);
664 case IDX_SEG_REGS + 3: return cpu_x86_gdb_load_seg(env, R_ES, mem_buf);
665 case IDX_SEG_REGS + 4: return cpu_x86_gdb_load_seg(env, R_FS, mem_buf);
666 case IDX_SEG_REGS + 5: return cpu_x86_gdb_load_seg(env, R_GS, mem_buf);
Jan Kiszkab1631e72009-06-27 09:53:51 +0200667
668 case IDX_FP_REGS + 8:
669 env->fpuc = ldl_p(mem_buf);
670 return 4;
671 case IDX_FP_REGS + 9:
672 tmp = ldl_p(mem_buf);
673 env->fpstt = (tmp >> 11) & 7;
674 env->fpus = tmp & ~0x3800;
675 return 4;
676 case IDX_FP_REGS + 10: /* ftag */ return 4;
677 case IDX_FP_REGS + 11: /* fiseg */ return 4;
678 case IDX_FP_REGS + 12: /* fioff */ return 4;
679 case IDX_FP_REGS + 13: /* foseg */ return 4;
680 case IDX_FP_REGS + 14: /* fooff */ return 4;
681 case IDX_FP_REGS + 15: /* fop */ return 4;
682
683 case IDX_MXCSR_REG:
684 env->mxcsr = ldl_p(mem_buf);
685 return 4;
bellard79808572008-05-09 14:40:22 +0000686 }
bellard79808572008-05-09 14:40:22 +0000687 }
pbrook56aebc82008-10-11 17:55:29 +0000688 /* Unrecognised register. */
689 return 0;
bellard6da41ea2004-01-04 15:48:38 +0000690}
691
bellard9e62fd72004-01-05 22:49:06 +0000692#elif defined (TARGET_PPC)
pbrook56aebc82008-10-11 17:55:29 +0000693
aurel32e571cb42009-01-24 15:07:42 +0000694/* Old gdb always expects FP registers. Newer (xml-aware) gdb only
695 expects whatever the target description contains. Due to a
696 historical mishap the FP registers appear in between core integer
697 regs and PC, MSR, CR, and so forth. We hack round this by giving the
698 FP regs zero size when talking to a newer gdb. */
pbrook56aebc82008-10-11 17:55:29 +0000699#define NUM_CORE_REGS 71
aurel32e571cb42009-01-24 15:07:42 +0000700#if defined (TARGET_PPC64)
701#define GDB_CORE_XML "power64-core.xml"
702#else
703#define GDB_CORE_XML "power-core.xml"
704#endif
pbrook56aebc82008-10-11 17:55:29 +0000705
Andreas Färberf3840912012-02-20 06:44:56 +0100706static int cpu_gdb_read_register(CPUPPCState *env, uint8_t *mem_buf, int n)
bellard9e62fd72004-01-05 22:49:06 +0000707{
pbrook56aebc82008-10-11 17:55:29 +0000708 if (n < 32) {
709 /* gprs */
710 GET_REGL(env->gpr[n]);
711 } else if (n < 64) {
712 /* fprs */
aurel32e571cb42009-01-24 15:07:42 +0000713 if (gdb_has_xml)
714 return 0;
aurel328d4acf92008-11-30 16:23:18 +0000715 stfq_p(mem_buf, env->fpr[n-32]);
pbrook56aebc82008-10-11 17:55:29 +0000716 return 8;
717 } else {
718 switch (n) {
719 case 64: GET_REGL(env->nip);
720 case 65: GET_REGL(env->msr);
721 case 66:
722 {
723 uint32_t cr = 0;
724 int i;
725 for (i = 0; i < 8; i++)
726 cr |= env->crf[i] << (32 - ((i + 1) * 4));
727 GET_REG32(cr);
728 }
729 case 67: GET_REGL(env->lr);
730 case 68: GET_REGL(env->ctr);
aurel323d7b4172008-10-21 11:28:46 +0000731 case 69: GET_REGL(env->xer);
aurel32e571cb42009-01-24 15:07:42 +0000732 case 70:
733 {
734 if (gdb_has_xml)
735 return 0;
Fabien Chouteau5a576fb2011-09-01 04:56:00 +0000736 GET_REG32(env->fpscr);
aurel32e571cb42009-01-24 15:07:42 +0000737 }
pbrook56aebc82008-10-11 17:55:29 +0000738 }
bellard9e62fd72004-01-05 22:49:06 +0000739 }
pbrook56aebc82008-10-11 17:55:29 +0000740 return 0;
bellard9e62fd72004-01-05 22:49:06 +0000741}
742
Andreas Färberf3840912012-02-20 06:44:56 +0100743static int cpu_gdb_write_register(CPUPPCState *env, uint8_t *mem_buf, int n)
bellard9e62fd72004-01-05 22:49:06 +0000744{
pbrook56aebc82008-10-11 17:55:29 +0000745 if (n < 32) {
746 /* gprs */
747 env->gpr[n] = ldtul_p(mem_buf);
748 return sizeof(target_ulong);
749 } else if (n < 64) {
750 /* fprs */
aurel32e571cb42009-01-24 15:07:42 +0000751 if (gdb_has_xml)
752 return 0;
aurel328d4acf92008-11-30 16:23:18 +0000753 env->fpr[n-32] = ldfq_p(mem_buf);
pbrook56aebc82008-10-11 17:55:29 +0000754 return 8;
755 } else {
756 switch (n) {
757 case 64:
758 env->nip = ldtul_p(mem_buf);
759 return sizeof(target_ulong);
760 case 65:
761 ppc_store_msr(env, ldtul_p(mem_buf));
762 return sizeof(target_ulong);
763 case 66:
764 {
765 uint32_t cr = ldl_p(mem_buf);
766 int i;
767 for (i = 0; i < 8; i++)
768 env->crf[i] = (cr >> (32 - ((i + 1) * 4))) & 0xF;
769 return 4;
770 }
771 case 67:
772 env->lr = ldtul_p(mem_buf);
773 return sizeof(target_ulong);
774 case 68:
775 env->ctr = ldtul_p(mem_buf);
776 return sizeof(target_ulong);
777 case 69:
aurel323d7b4172008-10-21 11:28:46 +0000778 env->xer = ldtul_p(mem_buf);
779 return sizeof(target_ulong);
pbrook56aebc82008-10-11 17:55:29 +0000780 case 70:
781 /* fpscr */
aurel32e571cb42009-01-24 15:07:42 +0000782 if (gdb_has_xml)
783 return 0;
pbrook56aebc82008-10-11 17:55:29 +0000784 return 4;
785 }
bellard9e62fd72004-01-05 22:49:06 +0000786 }
pbrook56aebc82008-10-11 17:55:29 +0000787 return 0;
bellarde95c8d52004-09-30 22:22:08 +0000788}
pbrook56aebc82008-10-11 17:55:29 +0000789
bellarde95c8d52004-09-30 22:22:08 +0000790#elif defined (TARGET_SPARC)
bellarde95c8d52004-09-30 22:22:08 +0000791
pbrook56aebc82008-10-11 17:55:29 +0000792#if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
793#define NUM_CORE_REGS 86
794#else
blueswir15a377912009-01-13 16:28:01 +0000795#define NUM_CORE_REGS 72
pbrook56aebc82008-10-11 17:55:29 +0000796#endif
797
798#ifdef TARGET_ABI32
799#define GET_REGA(val) GET_REG32(val)
800#else
801#define GET_REGA(val) GET_REGL(val)
802#endif
803
Andreas Färberf3840912012-02-20 06:44:56 +0100804static int cpu_gdb_read_register(CPUSPARCState *env, uint8_t *mem_buf, int n)
pbrook56aebc82008-10-11 17:55:29 +0000805{
806 if (n < 8) {
807 /* g0..g7 */
808 GET_REGA(env->gregs[n]);
bellarde95c8d52004-09-30 22:22:08 +0000809 }
pbrook56aebc82008-10-11 17:55:29 +0000810 if (n < 32) {
811 /* register window */
812 GET_REGA(env->regwptr[n - 8]);
bellarde95c8d52004-09-30 22:22:08 +0000813 }
pbrook56aebc82008-10-11 17:55:29 +0000814#if defined(TARGET_ABI32) || !defined(TARGET_SPARC64)
815 if (n < 64) {
816 /* fprs */
Richard Henderson30038fd2011-10-17 10:42:49 -0700817 if (n & 1) {
818 GET_REG32(env->fpr[(n - 32) / 2].l.lower);
819 } else {
820 GET_REG32(env->fpr[(n - 32) / 2].l.upper);
821 }
bellarde95c8d52004-09-30 22:22:08 +0000822 }
823 /* Y, PSR, WIM, TBR, PC, NPC, FPSR, CPSR */
pbrook56aebc82008-10-11 17:55:29 +0000824 switch (n) {
825 case 64: GET_REGA(env->y);
Blue Swirl5a834bb2010-05-09 20:19:04 +0000826 case 65: GET_REGA(cpu_get_psr(env));
pbrook56aebc82008-10-11 17:55:29 +0000827 case 66: GET_REGA(env->wim);
828 case 67: GET_REGA(env->tbr);
829 case 68: GET_REGA(env->pc);
830 case 69: GET_REGA(env->npc);
831 case 70: GET_REGA(env->fsr);
832 case 71: GET_REGA(0); /* csr */
blueswir15a377912009-01-13 16:28:01 +0000833 default: GET_REGA(0);
bellard34751872005-07-02 14:31:34 +0000834 }
bellard34751872005-07-02 14:31:34 +0000835#else
pbrook56aebc82008-10-11 17:55:29 +0000836 if (n < 64) {
837 /* f0-f31 */
Richard Henderson30038fd2011-10-17 10:42:49 -0700838 if (n & 1) {
839 GET_REG32(env->fpr[(n - 32) / 2].l.lower);
840 } else {
841 GET_REG32(env->fpr[(n - 32) / 2].l.upper);
842 }
bellard34751872005-07-02 14:31:34 +0000843 }
pbrook56aebc82008-10-11 17:55:29 +0000844 if (n < 80) {
845 /* f32-f62 (double width, even numbers only) */
Richard Henderson30038fd2011-10-17 10:42:49 -0700846 GET_REG64(env->fpr[(n - 32) / 2].ll);
pbrook56aebc82008-10-11 17:55:29 +0000847 }
848 switch (n) {
849 case 80: GET_REGL(env->pc);
850 case 81: GET_REGL(env->npc);
Blue Swirl5a834bb2010-05-09 20:19:04 +0000851 case 82: GET_REGL((cpu_get_ccr(env) << 32) |
852 ((env->asi & 0xff) << 24) |
853 ((env->pstate & 0xfff) << 8) |
854 cpu_get_cwp64(env));
pbrook56aebc82008-10-11 17:55:29 +0000855 case 83: GET_REGL(env->fsr);
856 case 84: GET_REGL(env->fprs);
857 case 85: GET_REGL(env->y);
858 }
bellard34751872005-07-02 14:31:34 +0000859#endif
pbrook56aebc82008-10-11 17:55:29 +0000860 return 0;
bellarde95c8d52004-09-30 22:22:08 +0000861}
862
Andreas Färberf3840912012-02-20 06:44:56 +0100863static int cpu_gdb_write_register(CPUSPARCState *env, uint8_t *mem_buf, int n)
bellarde95c8d52004-09-30 22:22:08 +0000864{
pbrook56aebc82008-10-11 17:55:29 +0000865#if defined(TARGET_ABI32)
866 abi_ulong tmp;
867
868 tmp = ldl_p(mem_buf);
blueswir196d19122008-06-07 08:03:05 +0000869#else
pbrook56aebc82008-10-11 17:55:29 +0000870 target_ulong tmp;
871
872 tmp = ldtul_p(mem_buf);
blueswir196d19122008-06-07 08:03:05 +0000873#endif
bellarde95c8d52004-09-30 22:22:08 +0000874
pbrook56aebc82008-10-11 17:55:29 +0000875 if (n < 8) {
876 /* g0..g7 */
877 env->gregs[n] = tmp;
878 } else if (n < 32) {
879 /* register window */
880 env->regwptr[n - 8] = tmp;
bellarde95c8d52004-09-30 22:22:08 +0000881 }
pbrook56aebc82008-10-11 17:55:29 +0000882#if defined(TARGET_ABI32) || !defined(TARGET_SPARC64)
883 else if (n < 64) {
884 /* fprs */
Richard Henderson30038fd2011-10-17 10:42:49 -0700885 /* f0-f31 */
886 if (n & 1) {
887 env->fpr[(n - 32) / 2].l.lower = tmp;
888 } else {
889 env->fpr[(n - 32) / 2].l.upper = tmp;
890 }
pbrook56aebc82008-10-11 17:55:29 +0000891 } else {
892 /* Y, PSR, WIM, TBR, PC, NPC, FPSR, CPSR */
893 switch (n) {
894 case 64: env->y = tmp; break;
Blue Swirl5a834bb2010-05-09 20:19:04 +0000895 case 65: cpu_put_psr(env, tmp); break;
pbrook56aebc82008-10-11 17:55:29 +0000896 case 66: env->wim = tmp; break;
897 case 67: env->tbr = tmp; break;
898 case 68: env->pc = tmp; break;
899 case 69: env->npc = tmp; break;
900 case 70: env->fsr = tmp; break;
901 default: return 0;
902 }
bellarde95c8d52004-09-30 22:22:08 +0000903 }
pbrook56aebc82008-10-11 17:55:29 +0000904 return 4;
bellard34751872005-07-02 14:31:34 +0000905#else
pbrook56aebc82008-10-11 17:55:29 +0000906 else if (n < 64) {
907 /* f0-f31 */
Richard Henderson30038fd2011-10-17 10:42:49 -0700908 tmp = ldl_p(mem_buf);
909 if (n & 1) {
910 env->fpr[(n - 32) / 2].l.lower = tmp;
911 } else {
912 env->fpr[(n - 32) / 2].l.upper = tmp;
913 }
pbrook56aebc82008-10-11 17:55:29 +0000914 return 4;
915 } else if (n < 80) {
916 /* f32-f62 (double width, even numbers only) */
Richard Henderson30038fd2011-10-17 10:42:49 -0700917 env->fpr[(n - 32) / 2].ll = tmp;
pbrook56aebc82008-10-11 17:55:29 +0000918 } else {
919 switch (n) {
920 case 80: env->pc = tmp; break;
921 case 81: env->npc = tmp; break;
922 case 82:
Blue Swirl5a834bb2010-05-09 20:19:04 +0000923 cpu_put_ccr(env, tmp >> 32);
pbrook56aebc82008-10-11 17:55:29 +0000924 env->asi = (tmp >> 24) & 0xff;
925 env->pstate = (tmp >> 8) & 0xfff;
Blue Swirl5a834bb2010-05-09 20:19:04 +0000926 cpu_put_cwp64(env, tmp & 0xff);
pbrook56aebc82008-10-11 17:55:29 +0000927 break;
928 case 83: env->fsr = tmp; break;
929 case 84: env->fprs = tmp; break;
930 case 85: env->y = tmp; break;
931 default: return 0;
932 }
bellard34751872005-07-02 14:31:34 +0000933 }
pbrook56aebc82008-10-11 17:55:29 +0000934 return 8;
bellard34751872005-07-02 14:31:34 +0000935#endif
bellard9e62fd72004-01-05 22:49:06 +0000936}
bellard1fddef42005-04-17 19:16:13 +0000937#elif defined (TARGET_ARM)
pbrook56aebc82008-10-11 17:55:29 +0000938
939/* Old gdb always expect FPA registers. Newer (xml-aware) gdb only expect
940 whatever the target description contains. Due to a historical mishap
941 the FPA registers appear in between core integer regs and the CPSR.
942 We hack round this by giving the FPA regs zero size when talking to a
943 newer gdb. */
944#define NUM_CORE_REGS 26
945#define GDB_CORE_XML "arm-core.xml"
946
Andreas Färberf3840912012-02-20 06:44:56 +0100947static int cpu_gdb_read_register(CPUARMState *env, uint8_t *mem_buf, int n)
bellard1fddef42005-04-17 19:16:13 +0000948{
pbrook56aebc82008-10-11 17:55:29 +0000949 if (n < 16) {
950 /* Core integer register. */
951 GET_REG32(env->regs[n]);
952 }
953 if (n < 24) {
954 /* FPA registers. */
955 if (gdb_has_xml)
956 return 0;
957 memset(mem_buf, 0, 12);
958 return 12;
959 }
960 switch (n) {
961 case 24:
962 /* FPA status register. */
963 if (gdb_has_xml)
964 return 0;
965 GET_REG32(0);
966 case 25:
967 /* CPSR */
968 GET_REG32(cpsr_read(env));
969 }
970 /* Unknown register. */
971 return 0;
bellard1fddef42005-04-17 19:16:13 +0000972}
973
Andreas Färberf3840912012-02-20 06:44:56 +0100974static int cpu_gdb_write_register(CPUARMState *env, uint8_t *mem_buf, int n)
bellard1fddef42005-04-17 19:16:13 +0000975{
pbrook56aebc82008-10-11 17:55:29 +0000976 uint32_t tmp;
bellard1fddef42005-04-17 19:16:13 +0000977
pbrook56aebc82008-10-11 17:55:29 +0000978 tmp = ldl_p(mem_buf);
979
980 /* Mask out low bit of PC to workaround gdb bugs. This will probably
981 cause problems if we ever implement the Jazelle DBX extensions. */
982 if (n == 15)
983 tmp &= ~1;
984
985 if (n < 16) {
986 /* Core integer register. */
987 env->regs[n] = tmp;
988 return 4;
989 }
990 if (n < 24) { /* 16-23 */
991 /* FPA registers (ignored). */
992 if (gdb_has_xml)
993 return 0;
994 return 12;
995 }
996 switch (n) {
997 case 24:
998 /* FPA status register (ignored). */
999 if (gdb_has_xml)
1000 return 0;
1001 return 4;
1002 case 25:
1003 /* CPSR */
1004 cpsr_write (env, tmp, 0xffffffff);
1005 return 4;
1006 }
1007 /* Unknown register. */
1008 return 0;
bellard1fddef42005-04-17 19:16:13 +00001009}
pbrook56aebc82008-10-11 17:55:29 +00001010
pbrooke6e59062006-10-22 00:18:54 +00001011#elif defined (TARGET_M68K)
pbrook56aebc82008-10-11 17:55:29 +00001012
1013#define NUM_CORE_REGS 18
1014
1015#define GDB_CORE_XML "cf-core.xml"
1016
Andreas Färberf3840912012-02-20 06:44:56 +01001017static int cpu_gdb_read_register(CPUM68KState *env, uint8_t *mem_buf, int n)
pbrooke6e59062006-10-22 00:18:54 +00001018{
pbrook56aebc82008-10-11 17:55:29 +00001019 if (n < 8) {
1020 /* D0-D7 */
1021 GET_REG32(env->dregs[n]);
1022 } else if (n < 16) {
1023 /* A0-A7 */
1024 GET_REG32(env->aregs[n - 8]);
1025 } else {
1026 switch (n) {
1027 case 16: GET_REG32(env->sr);
1028 case 17: GET_REG32(env->pc);
1029 }
pbrooke6e59062006-10-22 00:18:54 +00001030 }
pbrook56aebc82008-10-11 17:55:29 +00001031 /* FP registers not included here because they vary between
1032 ColdFire and m68k. Use XML bits for these. */
1033 return 0;
pbrooke6e59062006-10-22 00:18:54 +00001034}
1035
Andreas Färberf3840912012-02-20 06:44:56 +01001036static int cpu_gdb_write_register(CPUM68KState *env, uint8_t *mem_buf, int n)
pbrooke6e59062006-10-22 00:18:54 +00001037{
pbrook56aebc82008-10-11 17:55:29 +00001038 uint32_t tmp;
pbrooke6e59062006-10-22 00:18:54 +00001039
pbrook56aebc82008-10-11 17:55:29 +00001040 tmp = ldl_p(mem_buf);
1041
1042 if (n < 8) {
1043 /* D0-D7 */
1044 env->dregs[n] = tmp;
Kazu Hiratab3d6b952010-01-14 09:08:00 -08001045 } else if (n < 16) {
pbrook56aebc82008-10-11 17:55:29 +00001046 /* A0-A7 */
1047 env->aregs[n - 8] = tmp;
1048 } else {
1049 switch (n) {
1050 case 16: env->sr = tmp; break;
1051 case 17: env->pc = tmp; break;
1052 default: return 0;
1053 }
pbrooke6e59062006-10-22 00:18:54 +00001054 }
pbrook56aebc82008-10-11 17:55:29 +00001055 return 4;
pbrooke6e59062006-10-22 00:18:54 +00001056}
bellard6f970bd2005-12-05 19:55:19 +00001057#elif defined (TARGET_MIPS)
pbrook56aebc82008-10-11 17:55:29 +00001058
1059#define NUM_CORE_REGS 73
1060
Andreas Färberf3840912012-02-20 06:44:56 +01001061static int cpu_gdb_read_register(CPUMIPSState *env, uint8_t *mem_buf, int n)
bellard6f970bd2005-12-05 19:55:19 +00001062{
pbrook56aebc82008-10-11 17:55:29 +00001063 if (n < 32) {
1064 GET_REGL(env->active_tc.gpr[n]);
1065 }
1066 if (env->CP0_Config1 & (1 << CP0C1_FP)) {
1067 if (n >= 38 && n < 70) {
ths7ac256b2007-10-25 21:30:37 +00001068 if (env->CP0_Status & (1 << CP0St_FR))
pbrook56aebc82008-10-11 17:55:29 +00001069 GET_REGL(env->active_fpu.fpr[n - 38].d);
ths7ac256b2007-10-25 21:30:37 +00001070 else
pbrook56aebc82008-10-11 17:55:29 +00001071 GET_REGL(env->active_fpu.fpr[n - 38].w[FP_ENDIAN_IDX]);
1072 }
1073 switch (n) {
1074 case 70: GET_REGL((int32_t)env->active_fpu.fcr31);
1075 case 71: GET_REGL((int32_t)env->active_fpu.fcr0);
1076 }
1077 }
1078 switch (n) {
1079 case 32: GET_REGL((int32_t)env->CP0_Status);
1080 case 33: GET_REGL(env->active_tc.LO[0]);
1081 case 34: GET_REGL(env->active_tc.HI[0]);
1082 case 35: GET_REGL(env->CP0_BadVAddr);
1083 case 36: GET_REGL((int32_t)env->CP0_Cause);
Nathan Froydff1d1972009-12-08 08:06:30 -08001084 case 37: GET_REGL(env->active_tc.PC | !!(env->hflags & MIPS_HFLAG_M16));
pbrook56aebc82008-10-11 17:55:29 +00001085 case 72: GET_REGL(0); /* fp */
1086 case 89: GET_REGL((int32_t)env->CP0_PRid);
1087 }
1088 if (n >= 73 && n <= 88) {
1089 /* 16 embedded regs. */
1090 GET_REGL(0);
1091 }
ths36d23952007-02-28 22:37:42 +00001092
pbrook56aebc82008-10-11 17:55:29 +00001093 return 0;
bellard6f970bd2005-12-05 19:55:19 +00001094}
1095
ths8e33c082006-12-11 19:22:27 +00001096/* convert MIPS rounding mode in FCR31 to IEEE library */
1097static unsigned int ieee_rm[] =
1098 {
1099 float_round_nearest_even,
1100 float_round_to_zero,
1101 float_round_up,
1102 float_round_down
1103 };
1104#define RESTORE_ROUNDING_MODE \
thsf01be152008-09-18 11:57:27 +00001105 set_float_rounding_mode(ieee_rm[env->active_fpu.fcr31 & 3], &env->active_fpu.fp_status)
ths8e33c082006-12-11 19:22:27 +00001106
Andreas Färberf3840912012-02-20 06:44:56 +01001107static int cpu_gdb_write_register(CPUMIPSState *env, uint8_t *mem_buf, int n)
bellard6f970bd2005-12-05 19:55:19 +00001108{
pbrook56aebc82008-10-11 17:55:29 +00001109 target_ulong tmp;
bellard6f970bd2005-12-05 19:55:19 +00001110
pbrook56aebc82008-10-11 17:55:29 +00001111 tmp = ldtul_p(mem_buf);
bellard6f970bd2005-12-05 19:55:19 +00001112
pbrook56aebc82008-10-11 17:55:29 +00001113 if (n < 32) {
1114 env->active_tc.gpr[n] = tmp;
1115 return sizeof(target_ulong);
1116 }
1117 if (env->CP0_Config1 & (1 << CP0C1_FP)
1118 && n >= 38 && n < 73) {
1119 if (n < 70) {
ths7ac256b2007-10-25 21:30:37 +00001120 if (env->CP0_Status & (1 << CP0St_FR))
pbrook56aebc82008-10-11 17:55:29 +00001121 env->active_fpu.fpr[n - 38].d = tmp;
ths7ac256b2007-10-25 21:30:37 +00001122 else
pbrook56aebc82008-10-11 17:55:29 +00001123 env->active_fpu.fpr[n - 38].w[FP_ENDIAN_IDX] = tmp;
1124 }
1125 switch (n) {
1126 case 70:
1127 env->active_fpu.fcr31 = tmp & 0xFF83FFFF;
1128 /* set rounding mode */
1129 RESTORE_ROUNDING_MODE;
pbrook56aebc82008-10-11 17:55:29 +00001130 break;
1131 case 71: env->active_fpu.fcr0 = tmp; break;
1132 }
1133 return sizeof(target_ulong);
1134 }
1135 switch (n) {
1136 case 32: env->CP0_Status = tmp; break;
1137 case 33: env->active_tc.LO[0] = tmp; break;
1138 case 34: env->active_tc.HI[0] = tmp; break;
1139 case 35: env->CP0_BadVAddr = tmp; break;
1140 case 36: env->CP0_Cause = tmp; break;
Nathan Froydff1d1972009-12-08 08:06:30 -08001141 case 37:
1142 env->active_tc.PC = tmp & ~(target_ulong)1;
1143 if (tmp & 1) {
1144 env->hflags |= MIPS_HFLAG_M16;
1145 } else {
1146 env->hflags &= ~(MIPS_HFLAG_M16);
1147 }
1148 break;
pbrook56aebc82008-10-11 17:55:29 +00001149 case 72: /* fp, ignored */ break;
1150 default:
1151 if (n > 89)
1152 return 0;
1153 /* Other registers are readonly. Ignore writes. */
1154 break;
1155 }
1156
1157 return sizeof(target_ulong);
bellard6f970bd2005-12-05 19:55:19 +00001158}
bellardfdf9b3e2006-04-27 21:07:38 +00001159#elif defined (TARGET_SH4)
ths6ef99fc2007-05-13 16:36:24 +00001160
1161/* Hint: Use "set architecture sh4" in GDB to see fpu registers */
pbrook56aebc82008-10-11 17:55:29 +00001162/* FIXME: We should use XML for this. */
ths6ef99fc2007-05-13 16:36:24 +00001163
pbrook56aebc82008-10-11 17:55:29 +00001164#define NUM_CORE_REGS 59
1165
Andreas Färberf3840912012-02-20 06:44:56 +01001166static int cpu_gdb_read_register(CPUSH4State *env, uint8_t *mem_buf, int n)
bellardfdf9b3e2006-04-27 21:07:38 +00001167{
pbrook56aebc82008-10-11 17:55:29 +00001168 if (n < 8) {
1169 if ((env->sr & (SR_MD | SR_RB)) == (SR_MD | SR_RB)) {
1170 GET_REGL(env->gregs[n + 16]);
1171 } else {
1172 GET_REGL(env->gregs[n]);
1173 }
1174 } else if (n < 16) {
takasi-y@ops.dti.ne.jpe192a452010-02-18 00:53:29 +09001175 GET_REGL(env->gregs[n]);
pbrook56aebc82008-10-11 17:55:29 +00001176 } else if (n >= 25 && n < 41) {
1177 GET_REGL(env->fregs[(n - 25) + ((env->fpscr & FPSCR_FR) ? 16 : 0)]);
1178 } else if (n >= 43 && n < 51) {
1179 GET_REGL(env->gregs[n - 43]);
1180 } else if (n >= 51 && n < 59) {
1181 GET_REGL(env->gregs[n - (51 - 16)]);
1182 }
1183 switch (n) {
1184 case 16: GET_REGL(env->pc);
1185 case 17: GET_REGL(env->pr);
1186 case 18: GET_REGL(env->gbr);
1187 case 19: GET_REGL(env->vbr);
1188 case 20: GET_REGL(env->mach);
1189 case 21: GET_REGL(env->macl);
1190 case 22: GET_REGL(env->sr);
1191 case 23: GET_REGL(env->fpul);
1192 case 24: GET_REGL(env->fpscr);
1193 case 41: GET_REGL(env->ssr);
1194 case 42: GET_REGL(env->spc);
1195 }
bellardfdf9b3e2006-04-27 21:07:38 +00001196
pbrook56aebc82008-10-11 17:55:29 +00001197 return 0;
bellardfdf9b3e2006-04-27 21:07:38 +00001198}
1199
Andreas Färberf3840912012-02-20 06:44:56 +01001200static int cpu_gdb_write_register(CPUSH4State *env, uint8_t *mem_buf, int n)
bellardfdf9b3e2006-04-27 21:07:38 +00001201{
pbrook56aebc82008-10-11 17:55:29 +00001202 uint32_t tmp;
bellardfdf9b3e2006-04-27 21:07:38 +00001203
pbrook56aebc82008-10-11 17:55:29 +00001204 tmp = ldl_p(mem_buf);
1205
1206 if (n < 8) {
1207 if ((env->sr & (SR_MD | SR_RB)) == (SR_MD | SR_RB)) {
1208 env->gregs[n + 16] = tmp;
1209 } else {
1210 env->gregs[n] = tmp;
1211 }
1212 return 4;
1213 } else if (n < 16) {
takasi-y@ops.dti.ne.jpe192a452010-02-18 00:53:29 +09001214 env->gregs[n] = tmp;
pbrook56aebc82008-10-11 17:55:29 +00001215 return 4;
1216 } else if (n >= 25 && n < 41) {
1217 env->fregs[(n - 25) + ((env->fpscr & FPSCR_FR) ? 16 : 0)] = tmp;
takasi-y@ops.dti.ne.jpe192a452010-02-18 00:53:29 +09001218 return 4;
pbrook56aebc82008-10-11 17:55:29 +00001219 } else if (n >= 43 && n < 51) {
1220 env->gregs[n - 43] = tmp;
1221 return 4;
1222 } else if (n >= 51 && n < 59) {
1223 env->gregs[n - (51 - 16)] = tmp;
1224 return 4;
1225 }
1226 switch (n) {
takasi-y@ops.dti.ne.jpe192a452010-02-18 00:53:29 +09001227 case 16: env->pc = tmp; break;
1228 case 17: env->pr = tmp; break;
1229 case 18: env->gbr = tmp; break;
1230 case 19: env->vbr = tmp; break;
1231 case 20: env->mach = tmp; break;
1232 case 21: env->macl = tmp; break;
1233 case 22: env->sr = tmp; break;
1234 case 23: env->fpul = tmp; break;
1235 case 24: env->fpscr = tmp; break;
1236 case 41: env->ssr = tmp; break;
1237 case 42: env->spc = tmp; break;
pbrook56aebc82008-10-11 17:55:29 +00001238 default: return 0;
1239 }
1240
1241 return 4;
bellardfdf9b3e2006-04-27 21:07:38 +00001242}
Edgar E. Iglesiasd74d6a92009-05-20 20:16:31 +02001243#elif defined (TARGET_MICROBLAZE)
1244
1245#define NUM_CORE_REGS (32 + 5)
1246
Andreas Färberf3840912012-02-20 06:44:56 +01001247static int cpu_gdb_read_register(CPUMBState *env, uint8_t *mem_buf, int n)
Edgar E. Iglesiasd74d6a92009-05-20 20:16:31 +02001248{
1249 if (n < 32) {
1250 GET_REG32(env->regs[n]);
1251 } else {
1252 GET_REG32(env->sregs[n - 32]);
1253 }
1254 return 0;
1255}
1256
Andreas Färberf3840912012-02-20 06:44:56 +01001257static int cpu_gdb_write_register(CPUMBState *env, uint8_t *mem_buf, int n)
Edgar E. Iglesiasd74d6a92009-05-20 20:16:31 +02001258{
1259 uint32_t tmp;
1260
1261 if (n > NUM_CORE_REGS)
1262 return 0;
1263
1264 tmp = ldl_p(mem_buf);
1265
1266 if (n < 32) {
1267 env->regs[n] = tmp;
1268 } else {
1269 env->sregs[n - 32] = tmp;
1270 }
1271 return 4;
1272}
thsf1ccf902007-10-08 13:16:14 +00001273#elif defined (TARGET_CRIS)
1274
pbrook56aebc82008-10-11 17:55:29 +00001275#define NUM_CORE_REGS 49
1276
Edgar E. Iglesias4a0b59f2010-02-20 19:51:56 +01001277static int
Andreas Färberf3840912012-02-20 06:44:56 +01001278read_register_crisv10(CPUCRISState *env, uint8_t *mem_buf, int n)
Edgar E. Iglesias4a0b59f2010-02-20 19:51:56 +01001279{
1280 if (n < 15) {
1281 GET_REG32(env->regs[n]);
1282 }
1283
1284 if (n == 15) {
1285 GET_REG32(env->pc);
1286 }
1287
1288 if (n < 32) {
1289 switch (n) {
1290 case 16:
1291 GET_REG8(env->pregs[n - 16]);
1292 break;
1293 case 17:
1294 GET_REG8(env->pregs[n - 16]);
1295 break;
1296 case 20:
1297 case 21:
1298 GET_REG16(env->pregs[n - 16]);
1299 break;
1300 default:
1301 if (n >= 23) {
1302 GET_REG32(env->pregs[n - 16]);
1303 }
1304 break;
1305 }
1306 }
1307 return 0;
1308}
1309
Andreas Färberf3840912012-02-20 06:44:56 +01001310static int cpu_gdb_read_register(CPUCRISState *env, uint8_t *mem_buf, int n)
thsf1ccf902007-10-08 13:16:14 +00001311{
pbrook56aebc82008-10-11 17:55:29 +00001312 uint8_t srs;
1313
Edgar E. Iglesias4a0b59f2010-02-20 19:51:56 +01001314 if (env->pregs[PR_VR] < 32)
1315 return read_register_crisv10(env, mem_buf, n);
1316
pbrook56aebc82008-10-11 17:55:29 +00001317 srs = env->pregs[PR_SRS];
1318 if (n < 16) {
1319 GET_REG32(env->regs[n]);
1320 }
1321
1322 if (n >= 21 && n < 32) {
1323 GET_REG32(env->pregs[n - 16]);
1324 }
1325 if (n >= 33 && n < 49) {
1326 GET_REG32(env->sregs[srs][n - 33]);
1327 }
1328 switch (n) {
1329 case 16: GET_REG8(env->pregs[0]);
1330 case 17: GET_REG8(env->pregs[1]);
1331 case 18: GET_REG32(env->pregs[2]);
1332 case 19: GET_REG8(srs);
1333 case 20: GET_REG16(env->pregs[4]);
1334 case 32: GET_REG32(env->pc);
1335 }
1336
1337 return 0;
thsf1ccf902007-10-08 13:16:14 +00001338}
1339
Andreas Färberf3840912012-02-20 06:44:56 +01001340static int cpu_gdb_write_register(CPUCRISState *env, uint8_t *mem_buf, int n)
thsf1ccf902007-10-08 13:16:14 +00001341{
pbrook56aebc82008-10-11 17:55:29 +00001342 uint32_t tmp;
thsf1ccf902007-10-08 13:16:14 +00001343
pbrook56aebc82008-10-11 17:55:29 +00001344 if (n > 49)
1345 return 0;
thsf1ccf902007-10-08 13:16:14 +00001346
pbrook56aebc82008-10-11 17:55:29 +00001347 tmp = ldl_p(mem_buf);
thsf1ccf902007-10-08 13:16:14 +00001348
pbrook56aebc82008-10-11 17:55:29 +00001349 if (n < 16) {
1350 env->regs[n] = tmp;
1351 }
thsf1ccf902007-10-08 13:16:14 +00001352
edgar_igld7b69672008-10-11 19:32:21 +00001353 if (n >= 21 && n < 32) {
1354 env->pregs[n - 16] = tmp;
1355 }
1356
1357 /* FIXME: Should support function regs be writable? */
pbrook56aebc82008-10-11 17:55:29 +00001358 switch (n) {
1359 case 16: return 1;
1360 case 17: return 1;
edgar_igld7b69672008-10-11 19:32:21 +00001361 case 18: env->pregs[PR_PID] = tmp; break;
pbrook56aebc82008-10-11 17:55:29 +00001362 case 19: return 1;
1363 case 20: return 2;
1364 case 32: env->pc = tmp; break;
1365 }
thsf1ccf902007-10-08 13:16:14 +00001366
pbrook56aebc82008-10-11 17:55:29 +00001367 return 4;
thsf1ccf902007-10-08 13:16:14 +00001368}
aurel3219bf5172008-12-07 23:26:32 +00001369#elif defined (TARGET_ALPHA)
1370
Richard Henderson7c5a90d2009-12-31 11:54:01 -08001371#define NUM_CORE_REGS 67
aurel3219bf5172008-12-07 23:26:32 +00001372
Andreas Färberf3840912012-02-20 06:44:56 +01001373static int cpu_gdb_read_register(CPUAlphaState *env, uint8_t *mem_buf, int n)
aurel3219bf5172008-12-07 23:26:32 +00001374{
Richard Henderson7c5a90d2009-12-31 11:54:01 -08001375 uint64_t val;
1376 CPU_DoubleU d;
aurel3219bf5172008-12-07 23:26:32 +00001377
Richard Henderson7c5a90d2009-12-31 11:54:01 -08001378 switch (n) {
1379 case 0 ... 30:
1380 val = env->ir[n];
1381 break;
1382 case 32 ... 62:
1383 d.d = env->fir[n - 32];
1384 val = d.ll;
1385 break;
1386 case 63:
1387 val = cpu_alpha_load_fpcr(env);
1388 break;
1389 case 64:
1390 val = env->pc;
1391 break;
1392 case 66:
1393 val = env->unique;
1394 break;
1395 case 31:
1396 case 65:
1397 /* 31 really is the zero register; 65 is unassigned in the
1398 gdb protocol, but is still required to occupy 8 bytes. */
1399 val = 0;
1400 break;
1401 default:
1402 return 0;
aurel3219bf5172008-12-07 23:26:32 +00001403 }
Richard Henderson7c5a90d2009-12-31 11:54:01 -08001404 GET_REGL(val);
aurel3219bf5172008-12-07 23:26:32 +00001405}
1406
Andreas Färberf3840912012-02-20 06:44:56 +01001407static int cpu_gdb_write_register(CPUAlphaState *env, uint8_t *mem_buf, int n)
aurel3219bf5172008-12-07 23:26:32 +00001408{
Richard Henderson7c5a90d2009-12-31 11:54:01 -08001409 target_ulong tmp = ldtul_p(mem_buf);
1410 CPU_DoubleU d;
aurel3219bf5172008-12-07 23:26:32 +00001411
Richard Henderson7c5a90d2009-12-31 11:54:01 -08001412 switch (n) {
1413 case 0 ... 30:
aurel3219bf5172008-12-07 23:26:32 +00001414 env->ir[n] = tmp;
Richard Henderson7c5a90d2009-12-31 11:54:01 -08001415 break;
1416 case 32 ... 62:
1417 d.ll = tmp;
1418 env->fir[n - 32] = d.d;
1419 break;
1420 case 63:
1421 cpu_alpha_store_fpcr(env, tmp);
1422 break;
1423 case 64:
1424 env->pc = tmp;
1425 break;
1426 case 66:
1427 env->unique = tmp;
1428 break;
1429 case 31:
1430 case 65:
1431 /* 31 really is the zero register; 65 is unassigned in the
1432 gdb protocol, but is still required to occupy 8 bytes. */
1433 break;
1434 default:
1435 return 0;
aurel3219bf5172008-12-07 23:26:32 +00001436 }
aurel3219bf5172008-12-07 23:26:32 +00001437 return 8;
1438}
Alexander Grafafcb0e42009-12-05 12:44:29 +01001439#elif defined (TARGET_S390X)
1440
1441#define NUM_CORE_REGS S390_NUM_TOTAL_REGS
1442
Andreas Färberf3840912012-02-20 06:44:56 +01001443static int cpu_gdb_read_register(CPUS390XState *env, uint8_t *mem_buf, int n)
Alexander Grafafcb0e42009-12-05 12:44:29 +01001444{
1445 switch (n) {
1446 case S390_PSWM_REGNUM: GET_REGL(env->psw.mask); break;
1447 case S390_PSWA_REGNUM: GET_REGL(env->psw.addr); break;
1448 case S390_R0_REGNUM ... S390_R15_REGNUM:
1449 GET_REGL(env->regs[n-S390_R0_REGNUM]); break;
1450 case S390_A0_REGNUM ... S390_A15_REGNUM:
1451 GET_REG32(env->aregs[n-S390_A0_REGNUM]); break;
1452 case S390_FPC_REGNUM: GET_REG32(env->fpc); break;
1453 case S390_F0_REGNUM ... S390_F15_REGNUM:
1454 /* XXX */
1455 break;
1456 case S390_PC_REGNUM: GET_REGL(env->psw.addr); break;
Alexander Graf59467ba2011-03-23 10:58:07 +01001457 case S390_CC_REGNUM:
1458 env->cc_op = calc_cc(env, env->cc_op, env->cc_src, env->cc_dst,
1459 env->cc_vr);
1460 GET_REG32(env->cc_op);
1461 break;
Alexander Grafafcb0e42009-12-05 12:44:29 +01001462 }
1463
1464 return 0;
1465}
1466
Andreas Färberf3840912012-02-20 06:44:56 +01001467static int cpu_gdb_write_register(CPUS390XState *env, uint8_t *mem_buf, int n)
Alexander Grafafcb0e42009-12-05 12:44:29 +01001468{
1469 target_ulong tmpl;
1470 uint32_t tmp32;
1471 int r = 8;
1472 tmpl = ldtul_p(mem_buf);
1473 tmp32 = ldl_p(mem_buf);
1474
1475 switch (n) {
1476 case S390_PSWM_REGNUM: env->psw.mask = tmpl; break;
1477 case S390_PSWA_REGNUM: env->psw.addr = tmpl; break;
1478 case S390_R0_REGNUM ... S390_R15_REGNUM:
1479 env->regs[n-S390_R0_REGNUM] = tmpl; break;
1480 case S390_A0_REGNUM ... S390_A15_REGNUM:
1481 env->aregs[n-S390_A0_REGNUM] = tmp32; r=4; break;
1482 case S390_FPC_REGNUM: env->fpc = tmp32; r=4; break;
1483 case S390_F0_REGNUM ... S390_F15_REGNUM:
1484 /* XXX */
1485 break;
1486 case S390_PC_REGNUM: env->psw.addr = tmpl; break;
Alexander Graf59467ba2011-03-23 10:58:07 +01001487 case S390_CC_REGNUM: env->cc_op = tmp32; r=4; break;
Alexander Grafafcb0e42009-12-05 12:44:29 +01001488 }
1489
1490 return r;
1491}
Michael Walle0c45d3d2011-02-17 23:45:06 +01001492#elif defined (TARGET_LM32)
1493
1494#include "hw/lm32_pic.h"
1495#define NUM_CORE_REGS (32 + 7)
1496
Andreas Färberf3840912012-02-20 06:44:56 +01001497static int cpu_gdb_read_register(CPULM32State *env, uint8_t *mem_buf, int n)
Michael Walle0c45d3d2011-02-17 23:45:06 +01001498{
1499 if (n < 32) {
1500 GET_REG32(env->regs[n]);
1501 } else {
1502 switch (n) {
1503 case 32:
1504 GET_REG32(env->pc);
1505 break;
1506 /* FIXME: put in right exception ID */
1507 case 33:
1508 GET_REG32(0);
1509 break;
1510 case 34:
1511 GET_REG32(env->eba);
1512 break;
1513 case 35:
1514 GET_REG32(env->deba);
1515 break;
1516 case 36:
1517 GET_REG32(env->ie);
1518 break;
1519 case 37:
1520 GET_REG32(lm32_pic_get_im(env->pic_state));
1521 break;
1522 case 38:
1523 GET_REG32(lm32_pic_get_ip(env->pic_state));
1524 break;
1525 }
1526 }
1527 return 0;
1528}
1529
Andreas Färberf3840912012-02-20 06:44:56 +01001530static int cpu_gdb_write_register(CPULM32State *env, uint8_t *mem_buf, int n)
Michael Walle0c45d3d2011-02-17 23:45:06 +01001531{
1532 uint32_t tmp;
1533
1534 if (n > NUM_CORE_REGS) {
1535 return 0;
1536 }
1537
1538 tmp = ldl_p(mem_buf);
1539
1540 if (n < 32) {
1541 env->regs[n] = tmp;
1542 } else {
1543 switch (n) {
1544 case 32:
1545 env->pc = tmp;
1546 break;
1547 case 34:
1548 env->eba = tmp;
1549 break;
1550 case 35:
1551 env->deba = tmp;
1552 break;
1553 case 36:
1554 env->ie = tmp;
1555 break;
1556 case 37:
1557 lm32_pic_set_im(env->pic_state, tmp);
1558 break;
1559 case 38:
1560 lm32_pic_set_ip(env->pic_state, tmp);
1561 break;
1562 }
1563 }
1564 return 4;
1565}
Max Filippovccfcaba2011-09-06 03:55:52 +04001566#elif defined(TARGET_XTENSA)
1567
1568/* Use num_core_regs to see only non-privileged registers in an unmodified gdb.
1569 * Use num_regs to see all registers. gdb modification is required for that:
1570 * reset bit 0 in the 'flags' field of the registers definitions in the
1571 * gdb/xtensa-config.c inside gdb source tree or inside gdb overlay.
1572 */
1573#define NUM_CORE_REGS (env->config->gdb_regmap.num_regs)
1574#define num_g_regs NUM_CORE_REGS
1575
Andreas Färberf3840912012-02-20 06:44:56 +01001576static int cpu_gdb_read_register(CPUXtensaState *env, uint8_t *mem_buf, int n)
Max Filippovccfcaba2011-09-06 03:55:52 +04001577{
1578 const XtensaGdbReg *reg = env->config->gdb_regmap.reg + n;
1579
1580 if (n < 0 || n >= env->config->gdb_regmap.num_regs) {
1581 return 0;
1582 }
1583
1584 switch (reg->type) {
1585 case 9: /*pc*/
1586 GET_REG32(env->pc);
1587 break;
1588
1589 case 1: /*ar*/
1590 xtensa_sync_phys_from_window(env);
1591 GET_REG32(env->phys_regs[(reg->targno & 0xff) % env->config->nareg]);
1592 break;
1593
1594 case 2: /*SR*/
1595 GET_REG32(env->sregs[reg->targno & 0xff]);
1596 break;
1597
1598 case 3: /*UR*/
1599 GET_REG32(env->uregs[reg->targno & 0xff]);
1600 break;
1601
1602 case 8: /*a*/
1603 GET_REG32(env->regs[reg->targno & 0x0f]);
1604 break;
1605
1606 default:
1607 qemu_log("%s from reg %d of unsupported type %d\n",
1608 __func__, n, reg->type);
1609 return 0;
1610 }
1611}
1612
Andreas Färberf3840912012-02-20 06:44:56 +01001613static int cpu_gdb_write_register(CPUXtensaState *env, uint8_t *mem_buf, int n)
Max Filippovccfcaba2011-09-06 03:55:52 +04001614{
1615 uint32_t tmp;
1616 const XtensaGdbReg *reg = env->config->gdb_regmap.reg + n;
1617
1618 if (n < 0 || n >= env->config->gdb_regmap.num_regs) {
1619 return 0;
1620 }
1621
1622 tmp = ldl_p(mem_buf);
1623
1624 switch (reg->type) {
1625 case 9: /*pc*/
1626 env->pc = tmp;
1627 break;
1628
1629 case 1: /*ar*/
1630 env->phys_regs[(reg->targno & 0xff) % env->config->nareg] = tmp;
1631 xtensa_sync_window_from_phys(env);
1632 break;
1633
1634 case 2: /*SR*/
1635 env->sregs[reg->targno & 0xff] = tmp;
1636 break;
1637
1638 case 3: /*UR*/
1639 env->uregs[reg->targno & 0xff] = tmp;
1640 break;
1641
1642 case 8: /*a*/
1643 env->regs[reg->targno & 0x0f] = tmp;
1644 break;
1645
1646 default:
1647 qemu_log("%s to reg %d of unsupported type %d\n",
1648 __func__, n, reg->type);
1649 return 0;
1650 }
1651
1652 return 4;
1653}
bellard1fddef42005-04-17 19:16:13 +00001654#else
pbrook56aebc82008-10-11 17:55:29 +00001655
1656#define NUM_CORE_REGS 0
1657
1658static int cpu_gdb_read_register(CPUState *env, uint8_t *mem_buf, int n)
bellard6da41ea2004-01-04 15:48:38 +00001659{
1660 return 0;
1661}
1662
pbrook56aebc82008-10-11 17:55:29 +00001663static int cpu_gdb_write_register(CPUState *env, uint8_t *mem_buf, int n)
bellard6da41ea2004-01-04 15:48:38 +00001664{
pbrook56aebc82008-10-11 17:55:29 +00001665 return 0;
bellard6da41ea2004-01-04 15:48:38 +00001666}
1667
1668#endif
bellardb4608c02003-06-27 17:34:32 +00001669
Max Filippovccfcaba2011-09-06 03:55:52 +04001670#if !defined(TARGET_XTENSA)
pbrook56aebc82008-10-11 17:55:29 +00001671static int num_g_regs = NUM_CORE_REGS;
Max Filippovccfcaba2011-09-06 03:55:52 +04001672#endif
pbrook56aebc82008-10-11 17:55:29 +00001673
1674#ifdef GDB_CORE_XML
1675/* Encode data using the encoding for 'x' packets. */
1676static int memtox(char *buf, const char *mem, int len)
1677{
1678 char *p = buf;
1679 char c;
1680
1681 while (len--) {
1682 c = *(mem++);
1683 switch (c) {
1684 case '#': case '$': case '*': case '}':
1685 *(p++) = '}';
1686 *(p++) = c ^ 0x20;
1687 break;
1688 default:
1689 *(p++) = c;
1690 break;
1691 }
1692 }
1693 return p - buf;
1694}
1695
aurel323faf7782008-12-07 23:26:17 +00001696static const char *get_feature_xml(const char *p, const char **newp)
pbrook56aebc82008-10-11 17:55:29 +00001697{
pbrook56aebc82008-10-11 17:55:29 +00001698 size_t len;
1699 int i;
1700 const char *name;
1701 static char target_xml[1024];
1702
1703 len = 0;
1704 while (p[len] && p[len] != ':')
1705 len++;
1706 *newp = p + len;
1707
1708 name = NULL;
1709 if (strncmp(p, "target.xml", len) == 0) {
1710 /* Generate the XML description for this CPU. */
1711 if (!target_xml[0]) {
1712 GDBRegisterState *r;
1713
blueswir15b3715b2008-10-25 11:18:12 +00001714 snprintf(target_xml, sizeof(target_xml),
1715 "<?xml version=\"1.0\"?>"
1716 "<!DOCTYPE target SYSTEM \"gdb-target.dtd\">"
1717 "<target>"
1718 "<xi:include href=\"%s\"/>",
1719 GDB_CORE_XML);
pbrook56aebc82008-10-11 17:55:29 +00001720
aliguori880a7572008-11-18 20:30:24 +00001721 for (r = first_cpu->gdb_regs; r; r = r->next) {
blueswir12dc766d2009-04-13 16:06:19 +00001722 pstrcat(target_xml, sizeof(target_xml), "<xi:include href=\"");
1723 pstrcat(target_xml, sizeof(target_xml), r->xml);
1724 pstrcat(target_xml, sizeof(target_xml), "\"/>");
pbrook56aebc82008-10-11 17:55:29 +00001725 }
blueswir12dc766d2009-04-13 16:06:19 +00001726 pstrcat(target_xml, sizeof(target_xml), "</target>");
pbrook56aebc82008-10-11 17:55:29 +00001727 }
1728 return target_xml;
1729 }
1730 for (i = 0; ; i++) {
1731 name = xml_builtin[i][0];
1732 if (!name || (strncmp(name, p, len) == 0 && strlen(name) == len))
1733 break;
1734 }
1735 return name ? xml_builtin[i][1] : NULL;
1736}
1737#endif
1738
1739static int gdb_read_register(CPUState *env, uint8_t *mem_buf, int reg)
1740{
1741 GDBRegisterState *r;
1742
1743 if (reg < NUM_CORE_REGS)
1744 return cpu_gdb_read_register(env, mem_buf, reg);
1745
1746 for (r = env->gdb_regs; r; r = r->next) {
1747 if (r->base_reg <= reg && reg < r->base_reg + r->num_regs) {
1748 return r->get_reg(env, mem_buf, reg - r->base_reg);
1749 }
1750 }
1751 return 0;
1752}
1753
1754static int gdb_write_register(CPUState *env, uint8_t *mem_buf, int reg)
1755{
1756 GDBRegisterState *r;
1757
1758 if (reg < NUM_CORE_REGS)
1759 return cpu_gdb_write_register(env, mem_buf, reg);
1760
1761 for (r = env->gdb_regs; r; r = r->next) {
1762 if (r->base_reg <= reg && reg < r->base_reg + r->num_regs) {
1763 return r->set_reg(env, mem_buf, reg - r->base_reg);
1764 }
1765 }
1766 return 0;
1767}
1768
Max Filippovccfcaba2011-09-06 03:55:52 +04001769#if !defined(TARGET_XTENSA)
pbrook56aebc82008-10-11 17:55:29 +00001770/* Register a supplemental set of CPU registers. If g_pos is nonzero it
1771 specifies the first register number and these registers are included in
1772 a standard "g" packet. Direction is relative to gdb, i.e. get_reg is
1773 gdb reading a CPU register, and set_reg is gdb modifying a CPU register.
1774 */
1775
1776void gdb_register_coprocessor(CPUState * env,
1777 gdb_reg_cb get_reg, gdb_reg_cb set_reg,
1778 int num_regs, const char *xml, int g_pos)
1779{
1780 GDBRegisterState *s;
1781 GDBRegisterState **p;
1782 static int last_reg = NUM_CORE_REGS;
1783
pbrook56aebc82008-10-11 17:55:29 +00001784 p = &env->gdb_regs;
1785 while (*p) {
1786 /* Check for duplicates. */
1787 if (strcmp((*p)->xml, xml) == 0)
1788 return;
1789 p = &(*p)->next;
1790 }
Stefan Weil9643c252011-10-18 22:25:38 +02001791
1792 s = g_new0(GDBRegisterState, 1);
1793 s->base_reg = last_reg;
1794 s->num_regs = num_regs;
1795 s->get_reg = get_reg;
1796 s->set_reg = set_reg;
1797 s->xml = xml;
1798
pbrook56aebc82008-10-11 17:55:29 +00001799 /* Add to end of list. */
1800 last_reg += num_regs;
1801 *p = s;
1802 if (g_pos) {
1803 if (g_pos != s->base_reg) {
1804 fprintf(stderr, "Error: Bad gdb register numbering for '%s'\n"
1805 "Expected %d got %d\n", xml, g_pos, s->base_reg);
1806 } else {
1807 num_g_regs = last_reg;
1808 }
1809 }
1810}
Max Filippovccfcaba2011-09-06 03:55:52 +04001811#endif
pbrook56aebc82008-10-11 17:55:29 +00001812
aliguoria1d1bb32008-11-18 20:07:32 +00001813#ifndef CONFIG_USER_ONLY
1814static const int xlat_gdb_type[] = {
1815 [GDB_WATCHPOINT_WRITE] = BP_GDB | BP_MEM_WRITE,
1816 [GDB_WATCHPOINT_READ] = BP_GDB | BP_MEM_READ,
1817 [GDB_WATCHPOINT_ACCESS] = BP_GDB | BP_MEM_ACCESS,
1818};
1819#endif
1820
aliguori880a7572008-11-18 20:30:24 +00001821static int gdb_breakpoint_insert(target_ulong addr, target_ulong len, int type)
aliguoria1d1bb32008-11-18 20:07:32 +00001822{
aliguori880a7572008-11-18 20:30:24 +00001823 CPUState *env;
1824 int err = 0;
1825
aliguorie22a25c2009-03-12 20:12:48 +00001826 if (kvm_enabled())
1827 return kvm_insert_breakpoint(gdbserver_state->c_cpu, addr, len, type);
1828
aliguoria1d1bb32008-11-18 20:07:32 +00001829 switch (type) {
1830 case GDB_BREAKPOINT_SW:
1831 case GDB_BREAKPOINT_HW:
aliguori880a7572008-11-18 20:30:24 +00001832 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1833 err = cpu_breakpoint_insert(env, addr, BP_GDB, NULL);
1834 if (err)
1835 break;
1836 }
1837 return err;
aliguoria1d1bb32008-11-18 20:07:32 +00001838#ifndef CONFIG_USER_ONLY
1839 case GDB_WATCHPOINT_WRITE:
1840 case GDB_WATCHPOINT_READ:
1841 case GDB_WATCHPOINT_ACCESS:
aliguori880a7572008-11-18 20:30:24 +00001842 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1843 err = cpu_watchpoint_insert(env, addr, len, xlat_gdb_type[type],
1844 NULL);
1845 if (err)
1846 break;
1847 }
1848 return err;
aliguoria1d1bb32008-11-18 20:07:32 +00001849#endif
1850 default:
1851 return -ENOSYS;
1852 }
1853}
1854
aliguori880a7572008-11-18 20:30:24 +00001855static int gdb_breakpoint_remove(target_ulong addr, target_ulong len, int type)
aliguoria1d1bb32008-11-18 20:07:32 +00001856{
aliguori880a7572008-11-18 20:30:24 +00001857 CPUState *env;
1858 int err = 0;
1859
aliguorie22a25c2009-03-12 20:12:48 +00001860 if (kvm_enabled())
1861 return kvm_remove_breakpoint(gdbserver_state->c_cpu, addr, len, type);
1862
aliguoria1d1bb32008-11-18 20:07:32 +00001863 switch (type) {
1864 case GDB_BREAKPOINT_SW:
1865 case GDB_BREAKPOINT_HW:
aliguori880a7572008-11-18 20:30:24 +00001866 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1867 err = cpu_breakpoint_remove(env, addr, BP_GDB);
1868 if (err)
1869 break;
1870 }
1871 return err;
aliguoria1d1bb32008-11-18 20:07:32 +00001872#ifndef CONFIG_USER_ONLY
1873 case GDB_WATCHPOINT_WRITE:
1874 case GDB_WATCHPOINT_READ:
1875 case GDB_WATCHPOINT_ACCESS:
aliguori880a7572008-11-18 20:30:24 +00001876 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1877 err = cpu_watchpoint_remove(env, addr, len, xlat_gdb_type[type]);
1878 if (err)
1879 break;
1880 }
1881 return err;
aliguoria1d1bb32008-11-18 20:07:32 +00001882#endif
1883 default:
1884 return -ENOSYS;
1885 }
1886}
1887
aliguori880a7572008-11-18 20:30:24 +00001888static void gdb_breakpoint_remove_all(void)
aliguoria1d1bb32008-11-18 20:07:32 +00001889{
aliguori880a7572008-11-18 20:30:24 +00001890 CPUState *env;
1891
aliguorie22a25c2009-03-12 20:12:48 +00001892 if (kvm_enabled()) {
1893 kvm_remove_all_breakpoints(gdbserver_state->c_cpu);
1894 return;
1895 }
1896
aliguori880a7572008-11-18 20:30:24 +00001897 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1898 cpu_breakpoint_remove_all(env, BP_GDB);
aliguoria1d1bb32008-11-18 20:07:32 +00001899#ifndef CONFIG_USER_ONLY
aliguori880a7572008-11-18 20:30:24 +00001900 cpu_watchpoint_remove_all(env, BP_GDB);
aliguoria1d1bb32008-11-18 20:07:32 +00001901#endif
aliguori880a7572008-11-18 20:30:24 +00001902 }
aliguoria1d1bb32008-11-18 20:07:32 +00001903}
1904
aurel32fab9d282009-04-08 21:29:37 +00001905static void gdb_set_cpu_pc(GDBState *s, target_ulong pc)
1906{
1907#if defined(TARGET_I386)
Avi Kivity4c0960c2009-08-17 23:19:53 +03001908 cpu_synchronize_state(s->c_cpu);
aurel32fab9d282009-04-08 21:29:37 +00001909 s->c_cpu->eip = pc;
aurel32fab9d282009-04-08 21:29:37 +00001910#elif defined (TARGET_PPC)
1911 s->c_cpu->nip = pc;
1912#elif defined (TARGET_SPARC)
1913 s->c_cpu->pc = pc;
1914 s->c_cpu->npc = pc + 4;
1915#elif defined (TARGET_ARM)
1916 s->c_cpu->regs[15] = pc;
1917#elif defined (TARGET_SH4)
1918 s->c_cpu->pc = pc;
1919#elif defined (TARGET_MIPS)
Nathan Froydff1d1972009-12-08 08:06:30 -08001920 s->c_cpu->active_tc.PC = pc & ~(target_ulong)1;
1921 if (pc & 1) {
1922 s->c_cpu->hflags |= MIPS_HFLAG_M16;
1923 } else {
1924 s->c_cpu->hflags &= ~(MIPS_HFLAG_M16);
1925 }
Edgar E. Iglesiasd74d6a92009-05-20 20:16:31 +02001926#elif defined (TARGET_MICROBLAZE)
1927 s->c_cpu->sregs[SR_PC] = pc;
aurel32fab9d282009-04-08 21:29:37 +00001928#elif defined (TARGET_CRIS)
1929 s->c_cpu->pc = pc;
1930#elif defined (TARGET_ALPHA)
1931 s->c_cpu->pc = pc;
Alexander Grafafcb0e42009-12-05 12:44:29 +01001932#elif defined (TARGET_S390X)
1933 cpu_synchronize_state(s->c_cpu);
1934 s->c_cpu->psw.addr = pc;
Michael Walle0c45d3d2011-02-17 23:45:06 +01001935#elif defined (TARGET_LM32)
1936 s->c_cpu->pc = pc;
Max Filippovccfcaba2011-09-06 03:55:52 +04001937#elif defined(TARGET_XTENSA)
1938 s->c_cpu->pc = pc;
aurel32fab9d282009-04-08 21:29:37 +00001939#endif
1940}
1941
Nathan Froyd1e9fa732009-06-03 11:33:08 -07001942static inline int gdb_id(CPUState *env)
1943{
Juan Quintela2f7bb872009-07-27 16:13:24 +02001944#if defined(CONFIG_USER_ONLY) && defined(CONFIG_USE_NPTL)
Nathan Froyd1e9fa732009-06-03 11:33:08 -07001945 return env->host_tid;
1946#else
1947 return env->cpu_index + 1;
1948#endif
1949}
1950
1951static CPUState *find_cpu(uint32_t thread_id)
1952{
1953 CPUState *env;
1954
1955 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1956 if (gdb_id(env) == thread_id) {
1957 return env;
1958 }
1959 }
1960
1961 return NULL;
1962}
1963
aliguori880a7572008-11-18 20:30:24 +00001964static int gdb_handle_packet(GDBState *s, const char *line_buf)
bellardb4608c02003-06-27 17:34:32 +00001965{
aliguori880a7572008-11-18 20:30:24 +00001966 CPUState *env;
bellardb4608c02003-06-27 17:34:32 +00001967 const char *p;
Nathan Froyd1e9fa732009-06-03 11:33:08 -07001968 uint32_t thread;
1969 int ch, reg_size, type, res;
pbrook56aebc82008-10-11 17:55:29 +00001970 char buf[MAX_PACKET_LENGTH];
1971 uint8_t mem_buf[MAX_PACKET_LENGTH];
1972 uint8_t *registers;
bellard9d9754a2006-06-25 15:32:37 +00001973 target_ulong addr, len;
ths3b46e622007-09-17 08:09:54 +00001974
bellard858693c2004-03-31 18:52:07 +00001975#ifdef DEBUG_GDB
1976 printf("command='%s'\n", line_buf);
bellard4c3a88a2003-07-26 12:06:08 +00001977#endif
bellard858693c2004-03-31 18:52:07 +00001978 p = line_buf;
1979 ch = *p++;
1980 switch(ch) {
1981 case '?':
bellard1fddef42005-04-17 19:16:13 +00001982 /* TODO: Make this return the correct value for user-mode. */
aurel32ca587a82008-12-18 22:44:13 +00001983 snprintf(buf, sizeof(buf), "T%02xthread:%02x;", GDB_SIGNAL_TRAP,
Nathan Froyd1e9fa732009-06-03 11:33:08 -07001984 gdb_id(s->c_cpu));
bellard858693c2004-03-31 18:52:07 +00001985 put_packet(s, buf);
edgar_igl7d03f822008-05-17 18:58:29 +00001986 /* Remove all the breakpoints when this query is issued,
1987 * because gdb is doing and initial connect and the state
1988 * should be cleaned up.
1989 */
aliguori880a7572008-11-18 20:30:24 +00001990 gdb_breakpoint_remove_all();
bellard858693c2004-03-31 18:52:07 +00001991 break;
1992 case 'c':
1993 if (*p != '\0') {
bellard9d9754a2006-06-25 15:32:37 +00001994 addr = strtoull(p, (char **)&p, 16);
aurel32fab9d282009-04-08 21:29:37 +00001995 gdb_set_cpu_pc(s, addr);
bellard858693c2004-03-31 18:52:07 +00001996 }
aurel32ca587a82008-12-18 22:44:13 +00001997 s->signal = 0;
edgar_iglba70a622008-03-14 06:10:42 +00001998 gdb_continue(s);
bellard41625032005-04-24 10:07:11 +00001999 return RS_IDLE;
edgar_igl1f487ee2008-05-17 22:20:53 +00002000 case 'C':
aurel32ca587a82008-12-18 22:44:13 +00002001 s->signal = gdb_signal_to_target (strtoul(p, (char **)&p, 16));
2002 if (s->signal == -1)
2003 s->signal = 0;
edgar_igl1f487ee2008-05-17 22:20:53 +00002004 gdb_continue(s);
2005 return RS_IDLE;
Jan Kiszkadd32aa12009-06-27 09:53:51 +02002006 case 'v':
2007 if (strncmp(p, "Cont", 4) == 0) {
2008 int res_signal, res_thread;
2009
2010 p += 4;
2011 if (*p == '?') {
2012 put_packet(s, "vCont;c;C;s;S");
2013 break;
2014 }
2015 res = 0;
2016 res_signal = 0;
2017 res_thread = 0;
2018 while (*p) {
2019 int action, signal;
2020
2021 if (*p++ != ';') {
2022 res = 0;
2023 break;
2024 }
2025 action = *p++;
2026 signal = 0;
2027 if (action == 'C' || action == 'S') {
2028 signal = strtoul(p, (char **)&p, 16);
2029 } else if (action != 'c' && action != 's') {
2030 res = 0;
2031 break;
2032 }
2033 thread = 0;
2034 if (*p == ':') {
2035 thread = strtoull(p+1, (char **)&p, 16);
2036 }
2037 action = tolower(action);
2038 if (res == 0 || (res == 'c' && action == 's')) {
2039 res = action;
2040 res_signal = signal;
2041 res_thread = thread;
2042 }
2043 }
2044 if (res) {
2045 if (res_thread != -1 && res_thread != 0) {
2046 env = find_cpu(res_thread);
2047 if (env == NULL) {
2048 put_packet(s, "E22");
2049 break;
2050 }
2051 s->c_cpu = env;
2052 }
2053 if (res == 's') {
2054 cpu_single_step(s->c_cpu, sstep_flags);
2055 }
2056 s->signal = res_signal;
2057 gdb_continue(s);
2058 return RS_IDLE;
2059 }
2060 break;
2061 } else {
2062 goto unknown_command;
2063 }
edgar_igl7d03f822008-05-17 18:58:29 +00002064 case 'k':
Jan Kiszka00e94db2012-03-06 18:32:35 +01002065#ifdef CONFIG_USER_ONLY
edgar_igl7d03f822008-05-17 18:58:29 +00002066 /* Kill the target */
2067 fprintf(stderr, "\nQEMU: Terminated via GDBstub\n");
2068 exit(0);
Jan Kiszka00e94db2012-03-06 18:32:35 +01002069#endif
edgar_igl7d03f822008-05-17 18:58:29 +00002070 case 'D':
2071 /* Detach packet */
aliguori880a7572008-11-18 20:30:24 +00002072 gdb_breakpoint_remove_all();
Daniel Gutson7ea06da2010-02-26 14:13:50 -03002073 gdb_syscall_mode = GDB_SYS_DISABLED;
edgar_igl7d03f822008-05-17 18:58:29 +00002074 gdb_continue(s);
2075 put_packet(s, "OK");
2076 break;
bellard858693c2004-03-31 18:52:07 +00002077 case 's':
2078 if (*p != '\0') {
ths8fac5802007-07-12 10:05:07 +00002079 addr = strtoull(p, (char **)&p, 16);
aurel32fab9d282009-04-08 21:29:37 +00002080 gdb_set_cpu_pc(s, addr);
bellard858693c2004-03-31 18:52:07 +00002081 }
aliguori880a7572008-11-18 20:30:24 +00002082 cpu_single_step(s->c_cpu, sstep_flags);
edgar_iglba70a622008-03-14 06:10:42 +00002083 gdb_continue(s);
bellard41625032005-04-24 10:07:11 +00002084 return RS_IDLE;
pbrooka2d1eba2007-01-28 03:10:55 +00002085 case 'F':
2086 {
2087 target_ulong ret;
2088 target_ulong err;
2089
2090 ret = strtoull(p, (char **)&p, 16);
2091 if (*p == ',') {
2092 p++;
2093 err = strtoull(p, (char **)&p, 16);
2094 } else {
2095 err = 0;
2096 }
2097 if (*p == ',')
2098 p++;
2099 type = *p;
2100 if (gdb_current_syscall_cb)
aliguori880a7572008-11-18 20:30:24 +00002101 gdb_current_syscall_cb(s->c_cpu, ret, err);
pbrooka2d1eba2007-01-28 03:10:55 +00002102 if (type == 'C') {
2103 put_packet(s, "T02");
2104 } else {
edgar_iglba70a622008-03-14 06:10:42 +00002105 gdb_continue(s);
pbrooka2d1eba2007-01-28 03:10:55 +00002106 }
2107 }
2108 break;
bellard858693c2004-03-31 18:52:07 +00002109 case 'g':
Avi Kivity4c0960c2009-08-17 23:19:53 +03002110 cpu_synchronize_state(s->g_cpu);
Max Filippovccfcaba2011-09-06 03:55:52 +04002111 env = s->g_cpu;
pbrook56aebc82008-10-11 17:55:29 +00002112 len = 0;
2113 for (addr = 0; addr < num_g_regs; addr++) {
aliguori880a7572008-11-18 20:30:24 +00002114 reg_size = gdb_read_register(s->g_cpu, mem_buf + len, addr);
pbrook56aebc82008-10-11 17:55:29 +00002115 len += reg_size;
2116 }
2117 memtohex(buf, mem_buf, len);
bellard858693c2004-03-31 18:52:07 +00002118 put_packet(s, buf);
2119 break;
2120 case 'G':
Avi Kivity4c0960c2009-08-17 23:19:53 +03002121 cpu_synchronize_state(s->g_cpu);
Max Filippovccfcaba2011-09-06 03:55:52 +04002122 env = s->g_cpu;
pbrook56aebc82008-10-11 17:55:29 +00002123 registers = mem_buf;
bellard858693c2004-03-31 18:52:07 +00002124 len = strlen(p) / 2;
2125 hextomem((uint8_t *)registers, p, len);
pbrook56aebc82008-10-11 17:55:29 +00002126 for (addr = 0; addr < num_g_regs && len > 0; addr++) {
aliguori880a7572008-11-18 20:30:24 +00002127 reg_size = gdb_write_register(s->g_cpu, registers, addr);
pbrook56aebc82008-10-11 17:55:29 +00002128 len -= reg_size;
2129 registers += reg_size;
2130 }
bellard858693c2004-03-31 18:52:07 +00002131 put_packet(s, "OK");
2132 break;
2133 case 'm':
bellard9d9754a2006-06-25 15:32:37 +00002134 addr = strtoull(p, (char **)&p, 16);
bellard858693c2004-03-31 18:52:07 +00002135 if (*p == ',')
2136 p++;
bellard9d9754a2006-06-25 15:32:37 +00002137 len = strtoull(p, NULL, 16);
Fabien Chouteau44520db2011-09-08 12:48:16 +02002138 if (target_memory_rw_debug(s->g_cpu, addr, mem_buf, len, 0) != 0) {
bellard6f970bd2005-12-05 19:55:19 +00002139 put_packet (s, "E14");
2140 } else {
2141 memtohex(buf, mem_buf, len);
2142 put_packet(s, buf);
2143 }
bellard858693c2004-03-31 18:52:07 +00002144 break;
2145 case 'M':
bellard9d9754a2006-06-25 15:32:37 +00002146 addr = strtoull(p, (char **)&p, 16);
bellard858693c2004-03-31 18:52:07 +00002147 if (*p == ',')
2148 p++;
bellard9d9754a2006-06-25 15:32:37 +00002149 len = strtoull(p, (char **)&p, 16);
bellardb328f872005-01-17 22:03:16 +00002150 if (*p == ':')
bellard858693c2004-03-31 18:52:07 +00002151 p++;
2152 hextomem(mem_buf, p, len);
Fabien Chouteau44520db2011-09-08 12:48:16 +02002153 if (target_memory_rw_debug(s->g_cpu, addr, mem_buf, len, 1) != 0) {
bellard905f20b2005-04-26 21:09:55 +00002154 put_packet(s, "E14");
Fabien Chouteau44520db2011-09-08 12:48:16 +02002155 } else {
bellard858693c2004-03-31 18:52:07 +00002156 put_packet(s, "OK");
Fabien Chouteau44520db2011-09-08 12:48:16 +02002157 }
bellard858693c2004-03-31 18:52:07 +00002158 break;
pbrook56aebc82008-10-11 17:55:29 +00002159 case 'p':
2160 /* Older gdb are really dumb, and don't use 'g' if 'p' is avaialable.
2161 This works, but can be very slow. Anything new enough to
2162 understand XML also knows how to use this properly. */
2163 if (!gdb_has_xml)
2164 goto unknown_command;
2165 addr = strtoull(p, (char **)&p, 16);
aliguori880a7572008-11-18 20:30:24 +00002166 reg_size = gdb_read_register(s->g_cpu, mem_buf, addr);
pbrook56aebc82008-10-11 17:55:29 +00002167 if (reg_size) {
2168 memtohex(buf, mem_buf, reg_size);
2169 put_packet(s, buf);
2170 } else {
2171 put_packet(s, "E14");
2172 }
2173 break;
2174 case 'P':
2175 if (!gdb_has_xml)
2176 goto unknown_command;
2177 addr = strtoull(p, (char **)&p, 16);
2178 if (*p == '=')
2179 p++;
2180 reg_size = strlen(p) / 2;
2181 hextomem(mem_buf, p, reg_size);
aliguori880a7572008-11-18 20:30:24 +00002182 gdb_write_register(s->g_cpu, mem_buf, addr);
pbrook56aebc82008-10-11 17:55:29 +00002183 put_packet(s, "OK");
2184 break;
bellard858693c2004-03-31 18:52:07 +00002185 case 'Z':
bellard858693c2004-03-31 18:52:07 +00002186 case 'z':
2187 type = strtoul(p, (char **)&p, 16);
2188 if (*p == ',')
2189 p++;
bellard9d9754a2006-06-25 15:32:37 +00002190 addr = strtoull(p, (char **)&p, 16);
bellard858693c2004-03-31 18:52:07 +00002191 if (*p == ',')
2192 p++;
bellard9d9754a2006-06-25 15:32:37 +00002193 len = strtoull(p, (char **)&p, 16);
aliguoria1d1bb32008-11-18 20:07:32 +00002194 if (ch == 'Z')
aliguori880a7572008-11-18 20:30:24 +00002195 res = gdb_breakpoint_insert(addr, len, type);
aliguoria1d1bb32008-11-18 20:07:32 +00002196 else
aliguori880a7572008-11-18 20:30:24 +00002197 res = gdb_breakpoint_remove(addr, len, type);
aliguoria1d1bb32008-11-18 20:07:32 +00002198 if (res >= 0)
2199 put_packet(s, "OK");
2200 else if (res == -ENOSYS)
pbrook0f459d12008-06-09 00:20:13 +00002201 put_packet(s, "");
aliguoria1d1bb32008-11-18 20:07:32 +00002202 else
2203 put_packet(s, "E22");
bellard858693c2004-03-31 18:52:07 +00002204 break;
aliguori880a7572008-11-18 20:30:24 +00002205 case 'H':
2206 type = *p++;
2207 thread = strtoull(p, (char **)&p, 16);
2208 if (thread == -1 || thread == 0) {
2209 put_packet(s, "OK");
2210 break;
2211 }
Nathan Froyd1e9fa732009-06-03 11:33:08 -07002212 env = find_cpu(thread);
aliguori880a7572008-11-18 20:30:24 +00002213 if (env == NULL) {
2214 put_packet(s, "E22");
2215 break;
2216 }
2217 switch (type) {
2218 case 'c':
2219 s->c_cpu = env;
2220 put_packet(s, "OK");
2221 break;
2222 case 'g':
2223 s->g_cpu = env;
2224 put_packet(s, "OK");
2225 break;
2226 default:
2227 put_packet(s, "E22");
2228 break;
2229 }
2230 break;
2231 case 'T':
2232 thread = strtoull(p, (char **)&p, 16);
Nathan Froyd1e9fa732009-06-03 11:33:08 -07002233 env = find_cpu(thread);
2234
2235 if (env != NULL) {
2236 put_packet(s, "OK");
2237 } else {
aliguori880a7572008-11-18 20:30:24 +00002238 put_packet(s, "E22");
Nathan Froyd1e9fa732009-06-03 11:33:08 -07002239 }
aliguori880a7572008-11-18 20:30:24 +00002240 break;
pbrook978efd62006-06-17 18:30:42 +00002241 case 'q':
edgar_igl60897d32008-05-09 08:25:14 +00002242 case 'Q':
2243 /* parse any 'q' packets here */
2244 if (!strcmp(p,"qemu.sstepbits")) {
2245 /* Query Breakpoint bit definitions */
blueswir1363a37d2008-08-21 17:58:08 +00002246 snprintf(buf, sizeof(buf), "ENABLE=%x,NOIRQ=%x,NOTIMER=%x",
2247 SSTEP_ENABLE,
2248 SSTEP_NOIRQ,
2249 SSTEP_NOTIMER);
edgar_igl60897d32008-05-09 08:25:14 +00002250 put_packet(s, buf);
2251 break;
2252 } else if (strncmp(p,"qemu.sstep",10) == 0) {
2253 /* Display or change the sstep_flags */
2254 p += 10;
2255 if (*p != '=') {
2256 /* Display current setting */
blueswir1363a37d2008-08-21 17:58:08 +00002257 snprintf(buf, sizeof(buf), "0x%x", sstep_flags);
edgar_igl60897d32008-05-09 08:25:14 +00002258 put_packet(s, buf);
2259 break;
2260 }
2261 p++;
2262 type = strtoul(p, (char **)&p, 16);
2263 sstep_flags = type;
2264 put_packet(s, "OK");
2265 break;
aliguori880a7572008-11-18 20:30:24 +00002266 } else if (strcmp(p,"C") == 0) {
2267 /* "Current thread" remains vague in the spec, so always return
2268 * the first CPU (gdb returns the first thread). */
2269 put_packet(s, "QC1");
2270 break;
2271 } else if (strcmp(p,"fThreadInfo") == 0) {
2272 s->query_cpu = first_cpu;
2273 goto report_cpuinfo;
2274 } else if (strcmp(p,"sThreadInfo") == 0) {
2275 report_cpuinfo:
2276 if (s->query_cpu) {
Nathan Froyd1e9fa732009-06-03 11:33:08 -07002277 snprintf(buf, sizeof(buf), "m%x", gdb_id(s->query_cpu));
aliguori880a7572008-11-18 20:30:24 +00002278 put_packet(s, buf);
2279 s->query_cpu = s->query_cpu->next_cpu;
2280 } else
2281 put_packet(s, "l");
2282 break;
2283 } else if (strncmp(p,"ThreadExtraInfo,", 16) == 0) {
2284 thread = strtoull(p+16, (char **)&p, 16);
Nathan Froyd1e9fa732009-06-03 11:33:08 -07002285 env = find_cpu(thread);
2286 if (env != NULL) {
Avi Kivity4c0960c2009-08-17 23:19:53 +03002287 cpu_synchronize_state(env);
Nathan Froyd1e9fa732009-06-03 11:33:08 -07002288 len = snprintf((char *)mem_buf, sizeof(mem_buf),
2289 "CPU#%d [%s]", env->cpu_index,
2290 env->halted ? "halted " : "running");
2291 memtohex(buf, mem_buf, len);
2292 put_packet(s, buf);
2293 }
aliguori880a7572008-11-18 20:30:24 +00002294 break;
edgar_igl60897d32008-05-09 08:25:14 +00002295 }
blueswir10b8a9882009-03-07 10:51:36 +00002296#ifdef CONFIG_USER_ONLY
edgar_igl60897d32008-05-09 08:25:14 +00002297 else if (strncmp(p, "Offsets", 7) == 0) {
aliguori880a7572008-11-18 20:30:24 +00002298 TaskState *ts = s->c_cpu->opaque;
pbrook978efd62006-06-17 18:30:42 +00002299
blueswir1363a37d2008-08-21 17:58:08 +00002300 snprintf(buf, sizeof(buf),
2301 "Text=" TARGET_ABI_FMT_lx ";Data=" TARGET_ABI_FMT_lx
2302 ";Bss=" TARGET_ABI_FMT_lx,
2303 ts->info->code_offset,
2304 ts->info->data_offset,
2305 ts->info->data_offset);
pbrook978efd62006-06-17 18:30:42 +00002306 put_packet(s, buf);
2307 break;
2308 }
blueswir10b8a9882009-03-07 10:51:36 +00002309#else /* !CONFIG_USER_ONLY */
aliguori8a34a0f2009-03-05 23:01:55 +00002310 else if (strncmp(p, "Rcmd,", 5) == 0) {
2311 int len = strlen(p + 5);
2312
2313 if ((len % 2) != 0) {
2314 put_packet(s, "E01");
2315 break;
2316 }
2317 hextomem(mem_buf, p + 5, len);
2318 len = len / 2;
2319 mem_buf[len++] = 0;
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05002320 qemu_chr_be_write(s->mon_chr, mem_buf, len);
aliguori8a34a0f2009-03-05 23:01:55 +00002321 put_packet(s, "OK");
2322 break;
2323 }
blueswir10b8a9882009-03-07 10:51:36 +00002324#endif /* !CONFIG_USER_ONLY */
pbrook56aebc82008-10-11 17:55:29 +00002325 if (strncmp(p, "Supported", 9) == 0) {
blueswir15b3715b2008-10-25 11:18:12 +00002326 snprintf(buf, sizeof(buf), "PacketSize=%x", MAX_PACKET_LENGTH);
pbrook56aebc82008-10-11 17:55:29 +00002327#ifdef GDB_CORE_XML
blueswir12dc766d2009-04-13 16:06:19 +00002328 pstrcat(buf, sizeof(buf), ";qXfer:features:read+");
pbrook56aebc82008-10-11 17:55:29 +00002329#endif
2330 put_packet(s, buf);
2331 break;
2332 }
2333#ifdef GDB_CORE_XML
2334 if (strncmp(p, "Xfer:features:read:", 19) == 0) {
2335 const char *xml;
2336 target_ulong total_len;
2337
2338 gdb_has_xml = 1;
2339 p += 19;
aliguori880a7572008-11-18 20:30:24 +00002340 xml = get_feature_xml(p, &p);
pbrook56aebc82008-10-11 17:55:29 +00002341 if (!xml) {
blueswir15b3715b2008-10-25 11:18:12 +00002342 snprintf(buf, sizeof(buf), "E00");
pbrook56aebc82008-10-11 17:55:29 +00002343 put_packet(s, buf);
2344 break;
2345 }
2346
2347 if (*p == ':')
2348 p++;
2349 addr = strtoul(p, (char **)&p, 16);
2350 if (*p == ',')
2351 p++;
2352 len = strtoul(p, (char **)&p, 16);
2353
2354 total_len = strlen(xml);
2355 if (addr > total_len) {
blueswir15b3715b2008-10-25 11:18:12 +00002356 snprintf(buf, sizeof(buf), "E00");
pbrook56aebc82008-10-11 17:55:29 +00002357 put_packet(s, buf);
2358 break;
2359 }
2360 if (len > (MAX_PACKET_LENGTH - 5) / 2)
2361 len = (MAX_PACKET_LENGTH - 5) / 2;
2362 if (len < total_len - addr) {
2363 buf[0] = 'm';
2364 len = memtox(buf + 1, xml + addr, len);
2365 } else {
2366 buf[0] = 'l';
2367 len = memtox(buf + 1, xml + addr, total_len - addr);
2368 }
2369 put_packet_binary(s, buf, len + 1);
2370 break;
2371 }
2372#endif
2373 /* Unrecognised 'q' command. */
2374 goto unknown_command;
2375
bellard858693c2004-03-31 18:52:07 +00002376 default:
pbrook56aebc82008-10-11 17:55:29 +00002377 unknown_command:
bellard858693c2004-03-31 18:52:07 +00002378 /* put empty packet */
2379 buf[0] = '\0';
2380 put_packet(s, buf);
2381 break;
2382 }
2383 return RS_IDLE;
2384}
2385
aliguori880a7572008-11-18 20:30:24 +00002386void gdb_set_stop_cpu(CPUState *env)
2387{
2388 gdbserver_state->c_cpu = env;
2389 gdbserver_state->g_cpu = env;
2390}
2391
bellard1fddef42005-04-17 19:16:13 +00002392#ifndef CONFIG_USER_ONLY
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03002393static void gdb_vm_state_change(void *opaque, int running, RunState state)
bellard858693c2004-03-31 18:52:07 +00002394{
aliguori880a7572008-11-18 20:30:24 +00002395 GDBState *s = gdbserver_state;
2396 CPUState *env = s->c_cpu;
bellard858693c2004-03-31 18:52:07 +00002397 char buf[256];
aliguorid6fc1b32008-11-18 19:55:44 +00002398 const char *type;
bellard858693c2004-03-31 18:52:07 +00002399 int ret;
2400
Jan Kiszka425189a2011-03-22 11:02:09 +01002401 if (running || s->state == RS_INACTIVE || s->state == RS_SYSCALL) {
pbrooka2d1eba2007-01-28 03:10:55 +00002402 return;
Jan Kiszkae07bbac2011-02-09 16:29:40 +01002403 }
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03002404 switch (state) {
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002405 case RUN_STATE_DEBUG:
aliguori880a7572008-11-18 20:30:24 +00002406 if (env->watchpoint_hit) {
2407 switch (env->watchpoint_hit->flags & BP_MEM_ACCESS) {
aliguoria1d1bb32008-11-18 20:07:32 +00002408 case BP_MEM_READ:
aliguorid6fc1b32008-11-18 19:55:44 +00002409 type = "r";
2410 break;
aliguoria1d1bb32008-11-18 20:07:32 +00002411 case BP_MEM_ACCESS:
aliguorid6fc1b32008-11-18 19:55:44 +00002412 type = "a";
2413 break;
2414 default:
2415 type = "";
2416 break;
2417 }
aliguori880a7572008-11-18 20:30:24 +00002418 snprintf(buf, sizeof(buf),
2419 "T%02xthread:%02x;%swatch:" TARGET_FMT_lx ";",
Nathan Froyd1e9fa732009-06-03 11:33:08 -07002420 GDB_SIGNAL_TRAP, gdb_id(env), type,
aliguori880a7572008-11-18 20:30:24 +00002421 env->watchpoint_hit->vaddr);
aliguori880a7572008-11-18 20:30:24 +00002422 env->watchpoint_hit = NULL;
Jan Kiszka425189a2011-03-22 11:02:09 +01002423 goto send_packet;
pbrook6658ffb2007-03-16 23:58:11 +00002424 }
Jan Kiszka425189a2011-03-22 11:02:09 +01002425 tb_flush(env);
aurel32ca587a82008-12-18 22:44:13 +00002426 ret = GDB_SIGNAL_TRAP;
Jan Kiszka425189a2011-03-22 11:02:09 +01002427 break;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002428 case RUN_STATE_PAUSED:
aliguori9781e042009-01-22 17:15:29 +00002429 ret = GDB_SIGNAL_INT;
Jan Kiszka425189a2011-03-22 11:02:09 +01002430 break;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002431 case RUN_STATE_SHUTDOWN:
Jan Kiszka425189a2011-03-22 11:02:09 +01002432 ret = GDB_SIGNAL_QUIT;
2433 break;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002434 case RUN_STATE_IO_ERROR:
Jan Kiszka425189a2011-03-22 11:02:09 +01002435 ret = GDB_SIGNAL_IO;
2436 break;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002437 case RUN_STATE_WATCHDOG:
Jan Kiszka425189a2011-03-22 11:02:09 +01002438 ret = GDB_SIGNAL_ALRM;
2439 break;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002440 case RUN_STATE_INTERNAL_ERROR:
Jan Kiszka425189a2011-03-22 11:02:09 +01002441 ret = GDB_SIGNAL_ABRT;
2442 break;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002443 case RUN_STATE_SAVE_VM:
2444 case RUN_STATE_RESTORE_VM:
Jan Kiszka425189a2011-03-22 11:02:09 +01002445 return;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002446 case RUN_STATE_FINISH_MIGRATE:
Jan Kiszka425189a2011-03-22 11:02:09 +01002447 ret = GDB_SIGNAL_XCPU;
2448 break;
2449 default:
2450 ret = GDB_SIGNAL_UNKNOWN;
2451 break;
bellardbbeb7b52006-04-23 18:42:15 +00002452 }
Nathan Froyd1e9fa732009-06-03 11:33:08 -07002453 snprintf(buf, sizeof(buf), "T%02xthread:%02x;", ret, gdb_id(env));
Jan Kiszka425189a2011-03-22 11:02:09 +01002454
2455send_packet:
bellard858693c2004-03-31 18:52:07 +00002456 put_packet(s, buf);
Jan Kiszka425189a2011-03-22 11:02:09 +01002457
2458 /* disable single step if it was enabled */
2459 cpu_single_step(env, 0);
bellard858693c2004-03-31 18:52:07 +00002460}
bellard1fddef42005-04-17 19:16:13 +00002461#endif
bellard858693c2004-03-31 18:52:07 +00002462
pbrooka2d1eba2007-01-28 03:10:55 +00002463/* Send a gdb syscall request.
2464 This accepts limited printf-style format specifiers, specifically:
pbrooka87295e2007-05-26 15:09:38 +00002465 %x - target_ulong argument printed in hex.
2466 %lx - 64-bit argument printed in hex.
2467 %s - string pointer (target_ulong) and length (int) pair. */
blueswir17ccfb2e2008-09-14 06:45:34 +00002468void gdb_do_syscall(gdb_syscall_complete_cb cb, const char *fmt, ...)
pbrooka2d1eba2007-01-28 03:10:55 +00002469{
2470 va_list va;
2471 char buf[256];
2472 char *p;
2473 target_ulong addr;
pbrooka87295e2007-05-26 15:09:38 +00002474 uint64_t i64;
pbrooka2d1eba2007-01-28 03:10:55 +00002475 GDBState *s;
2476
aliguori880a7572008-11-18 20:30:24 +00002477 s = gdbserver_state;
pbrooka2d1eba2007-01-28 03:10:55 +00002478 if (!s)
2479 return;
2480 gdb_current_syscall_cb = cb;
2481 s->state = RS_SYSCALL;
2482#ifndef CONFIG_USER_ONLY
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002483 vm_stop(RUN_STATE_DEBUG);
pbrooka2d1eba2007-01-28 03:10:55 +00002484#endif
2485 s->state = RS_IDLE;
2486 va_start(va, fmt);
2487 p = buf;
2488 *(p++) = 'F';
2489 while (*fmt) {
2490 if (*fmt == '%') {
2491 fmt++;
2492 switch (*fmt++) {
2493 case 'x':
2494 addr = va_arg(va, target_ulong);
blueswir1363a37d2008-08-21 17:58:08 +00002495 p += snprintf(p, &buf[sizeof(buf)] - p, TARGET_FMT_lx, addr);
pbrooka2d1eba2007-01-28 03:10:55 +00002496 break;
pbrooka87295e2007-05-26 15:09:38 +00002497 case 'l':
2498 if (*(fmt++) != 'x')
2499 goto bad_format;
2500 i64 = va_arg(va, uint64_t);
blueswir1363a37d2008-08-21 17:58:08 +00002501 p += snprintf(p, &buf[sizeof(buf)] - p, "%" PRIx64, i64);
pbrooka87295e2007-05-26 15:09:38 +00002502 break;
pbrooka2d1eba2007-01-28 03:10:55 +00002503 case 's':
2504 addr = va_arg(va, target_ulong);
blueswir1363a37d2008-08-21 17:58:08 +00002505 p += snprintf(p, &buf[sizeof(buf)] - p, TARGET_FMT_lx "/%x",
2506 addr, va_arg(va, int));
pbrooka2d1eba2007-01-28 03:10:55 +00002507 break;
2508 default:
pbrooka87295e2007-05-26 15:09:38 +00002509 bad_format:
pbrooka2d1eba2007-01-28 03:10:55 +00002510 fprintf(stderr, "gdbstub: Bad syscall format string '%s'\n",
2511 fmt - 1);
2512 break;
2513 }
2514 } else {
2515 *(p++) = *(fmt++);
2516 }
2517 }
pbrook8a93e022007-08-06 13:19:15 +00002518 *p = 0;
pbrooka2d1eba2007-01-28 03:10:55 +00002519 va_end(va);
2520 put_packet(s, buf);
2521#ifdef CONFIG_USER_ONLY
aliguori880a7572008-11-18 20:30:24 +00002522 gdb_handlesig(s->c_cpu, 0);
pbrooka2d1eba2007-01-28 03:10:55 +00002523#else
aurel323098dba2009-03-07 21:28:24 +00002524 cpu_exit(s->c_cpu);
pbrooka2d1eba2007-01-28 03:10:55 +00002525#endif
2526}
2527
bellard6a00d602005-11-21 23:25:50 +00002528static void gdb_read_byte(GDBState *s, int ch)
bellard858693c2004-03-31 18:52:07 +00002529{
2530 int i, csum;
ths60fe76f2007-12-16 03:02:09 +00002531 uint8_t reply;
bellard858693c2004-03-31 18:52:07 +00002532
bellard1fddef42005-04-17 19:16:13 +00002533#ifndef CONFIG_USER_ONLY
pbrook4046d912007-01-28 01:53:16 +00002534 if (s->last_packet_len) {
2535 /* Waiting for a response to the last packet. If we see the start
2536 of a new command then abandon the previous response. */
2537 if (ch == '-') {
2538#ifdef DEBUG_GDB
2539 printf("Got NACK, retransmitting\n");
2540#endif
thsffe8ab82007-12-16 03:16:05 +00002541 put_buffer(s, (uint8_t *)s->last_packet, s->last_packet_len);
pbrook4046d912007-01-28 01:53:16 +00002542 }
2543#ifdef DEBUG_GDB
2544 else if (ch == '+')
2545 printf("Got ACK\n");
2546 else
2547 printf("Got '%c' when expecting ACK/NACK\n", ch);
2548#endif
2549 if (ch == '+' || ch == '$')
2550 s->last_packet_len = 0;
2551 if (ch != '$')
2552 return;
2553 }
Luiz Capitulino13548692011-07-29 15:36:43 -03002554 if (runstate_is_running()) {
bellard858693c2004-03-31 18:52:07 +00002555 /* when the CPU is running, we cannot do anything except stop
2556 it when receiving a char */
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002557 vm_stop(RUN_STATE_PAUSED);
ths5fafdf22007-09-16 21:08:06 +00002558 } else
bellard1fddef42005-04-17 19:16:13 +00002559#endif
bellard41625032005-04-24 10:07:11 +00002560 {
bellard858693c2004-03-31 18:52:07 +00002561 switch(s->state) {
2562 case RS_IDLE:
2563 if (ch == '$') {
2564 s->line_buf_index = 0;
2565 s->state = RS_GETLINE;
bellard4c3a88a2003-07-26 12:06:08 +00002566 }
2567 break;
bellard858693c2004-03-31 18:52:07 +00002568 case RS_GETLINE:
2569 if (ch == '#') {
2570 s->state = RS_CHKSUM1;
2571 } else if (s->line_buf_index >= sizeof(s->line_buf) - 1) {
2572 s->state = RS_IDLE;
2573 } else {
2574 s->line_buf[s->line_buf_index++] = ch;
2575 }
2576 break;
2577 case RS_CHKSUM1:
2578 s->line_buf[s->line_buf_index] = '\0';
2579 s->line_csum = fromhex(ch) << 4;
2580 s->state = RS_CHKSUM2;
2581 break;
2582 case RS_CHKSUM2:
2583 s->line_csum |= fromhex(ch);
2584 csum = 0;
2585 for(i = 0; i < s->line_buf_index; i++) {
2586 csum += s->line_buf[i];
2587 }
2588 if (s->line_csum != (csum & 0xff)) {
ths60fe76f2007-12-16 03:02:09 +00002589 reply = '-';
2590 put_buffer(s, &reply, 1);
bellard858693c2004-03-31 18:52:07 +00002591 s->state = RS_IDLE;
2592 } else {
ths60fe76f2007-12-16 03:02:09 +00002593 reply = '+';
2594 put_buffer(s, &reply, 1);
aliguori880a7572008-11-18 20:30:24 +00002595 s->state = gdb_handle_packet(s, s->line_buf);
bellard858693c2004-03-31 18:52:07 +00002596 }
bellardb4608c02003-06-27 17:34:32 +00002597 break;
pbrooka2d1eba2007-01-28 03:10:55 +00002598 default:
2599 abort();
bellardb4608c02003-06-27 17:34:32 +00002600 }
2601 }
bellard858693c2004-03-31 18:52:07 +00002602}
2603
Paul Brook0e1c9c52010-06-16 13:03:51 +01002604/* Tell the remote gdb that the process has exited. */
2605void gdb_exit(CPUState *env, int code)
2606{
2607 GDBState *s;
2608 char buf[4];
2609
2610 s = gdbserver_state;
2611 if (!s) {
2612 return;
2613 }
2614#ifdef CONFIG_USER_ONLY
2615 if (gdbserver_fd < 0 || s->fd < 0) {
2616 return;
2617 }
2618#endif
2619
2620 snprintf(buf, sizeof(buf), "W%02x", (uint8_t)code);
2621 put_packet(s, buf);
Fabien Chouteaue2af15b2011-01-13 12:46:57 +01002622
2623#ifndef CONFIG_USER_ONLY
2624 if (s->chr) {
Anthony Liguori70f24fb2011-08-15 11:17:38 -05002625 qemu_chr_delete(s->chr);
Fabien Chouteaue2af15b2011-01-13 12:46:57 +01002626 }
2627#endif
Paul Brook0e1c9c52010-06-16 13:03:51 +01002628}
2629
bellard1fddef42005-04-17 19:16:13 +00002630#ifdef CONFIG_USER_ONLY
2631int
aurel32ca587a82008-12-18 22:44:13 +00002632gdb_queuesig (void)
2633{
2634 GDBState *s;
2635
2636 s = gdbserver_state;
2637
2638 if (gdbserver_fd < 0 || s->fd < 0)
2639 return 0;
2640 else
2641 return 1;
2642}
2643
2644int
bellard1fddef42005-04-17 19:16:13 +00002645gdb_handlesig (CPUState *env, int sig)
2646{
2647 GDBState *s;
2648 char buf[256];
2649 int n;
2650
aliguori880a7572008-11-18 20:30:24 +00002651 s = gdbserver_state;
edgar_igl1f487ee2008-05-17 22:20:53 +00002652 if (gdbserver_fd < 0 || s->fd < 0)
2653 return sig;
bellard1fddef42005-04-17 19:16:13 +00002654
2655 /* disable single step if it was enabled */
2656 cpu_single_step(env, 0);
2657 tb_flush(env);
2658
2659 if (sig != 0)
2660 {
aurel32ca587a82008-12-18 22:44:13 +00002661 snprintf(buf, sizeof(buf), "S%02x", target_signal_to_gdb (sig));
bellard1fddef42005-04-17 19:16:13 +00002662 put_packet(s, buf);
2663 }
edgar_igl1f487ee2008-05-17 22:20:53 +00002664 /* put_packet() might have detected that the peer terminated the
2665 connection. */
2666 if (s->fd < 0)
2667 return sig;
bellard1fddef42005-04-17 19:16:13 +00002668
bellard1fddef42005-04-17 19:16:13 +00002669 sig = 0;
2670 s->state = RS_IDLE;
bellard41625032005-04-24 10:07:11 +00002671 s->running_state = 0;
2672 while (s->running_state == 0) {
bellard1fddef42005-04-17 19:16:13 +00002673 n = read (s->fd, buf, 256);
2674 if (n > 0)
2675 {
2676 int i;
2677
2678 for (i = 0; i < n; i++)
bellard6a00d602005-11-21 23:25:50 +00002679 gdb_read_byte (s, buf[i]);
bellard1fddef42005-04-17 19:16:13 +00002680 }
2681 else if (n == 0 || errno != EAGAIN)
2682 {
Stefan Weile7d81002011-12-10 00:19:46 +01002683 /* XXX: Connection closed. Should probably wait for another
bellard1fddef42005-04-17 19:16:13 +00002684 connection before continuing. */
2685 return sig;
2686 }
bellard41625032005-04-24 10:07:11 +00002687 }
edgar_igl1f487ee2008-05-17 22:20:53 +00002688 sig = s->signal;
2689 s->signal = 0;
bellard1fddef42005-04-17 19:16:13 +00002690 return sig;
2691}
bellarde9009672005-04-26 20:42:36 +00002692
aurel32ca587a82008-12-18 22:44:13 +00002693/* Tell the remote gdb that the process has exited due to SIG. */
2694void gdb_signalled(CPUState *env, int sig)
2695{
2696 GDBState *s;
2697 char buf[4];
2698
2699 s = gdbserver_state;
2700 if (gdbserver_fd < 0 || s->fd < 0)
2701 return;
2702
2703 snprintf(buf, sizeof(buf), "X%02x", target_signal_to_gdb (sig));
2704 put_packet(s, buf);
2705}
bellard1fddef42005-04-17 19:16:13 +00002706
aliguori880a7572008-11-18 20:30:24 +00002707static void gdb_accept(void)
bellard858693c2004-03-31 18:52:07 +00002708{
2709 GDBState *s;
2710 struct sockaddr_in sockaddr;
2711 socklen_t len;
2712 int val, fd;
2713
2714 for(;;) {
2715 len = sizeof(sockaddr);
2716 fd = accept(gdbserver_fd, (struct sockaddr *)&sockaddr, &len);
2717 if (fd < 0 && errno != EINTR) {
2718 perror("accept");
2719 return;
2720 } else if (fd >= 0) {
Kevin Wolf40ff6d72009-12-02 12:24:42 +01002721#ifndef _WIN32
2722 fcntl(fd, F_SETFD, FD_CLOEXEC);
2723#endif
bellard858693c2004-03-31 18:52:07 +00002724 break;
2725 }
2726 }
2727
2728 /* set short latency */
2729 val = 1;
bellard8f447cc2006-06-14 15:21:14 +00002730 setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (char *)&val, sizeof(val));
ths3b46e622007-09-17 08:09:54 +00002731
Anthony Liguori7267c092011-08-20 22:09:37 -05002732 s = g_malloc0(sizeof(GDBState));
aliguori880a7572008-11-18 20:30:24 +00002733 s->c_cpu = first_cpu;
2734 s->g_cpu = first_cpu;
bellard858693c2004-03-31 18:52:07 +00002735 s->fd = fd;
pbrook56aebc82008-10-11 17:55:29 +00002736 gdb_has_xml = 0;
bellard858693c2004-03-31 18:52:07 +00002737
aliguori880a7572008-11-18 20:30:24 +00002738 gdbserver_state = s;
pbrooka2d1eba2007-01-28 03:10:55 +00002739
bellard858693c2004-03-31 18:52:07 +00002740 fcntl(fd, F_SETFL, O_NONBLOCK);
bellard858693c2004-03-31 18:52:07 +00002741}
2742
2743static int gdbserver_open(int port)
2744{
2745 struct sockaddr_in sockaddr;
2746 int fd, val, ret;
2747
2748 fd = socket(PF_INET, SOCK_STREAM, 0);
2749 if (fd < 0) {
2750 perror("socket");
2751 return -1;
2752 }
Kevin Wolf40ff6d72009-12-02 12:24:42 +01002753#ifndef _WIN32
2754 fcntl(fd, F_SETFD, FD_CLOEXEC);
2755#endif
bellard858693c2004-03-31 18:52:07 +00002756
2757 /* allow fast reuse */
2758 val = 1;
bellard8f447cc2006-06-14 15:21:14 +00002759 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (char *)&val, sizeof(val));
bellard858693c2004-03-31 18:52:07 +00002760
2761 sockaddr.sin_family = AF_INET;
2762 sockaddr.sin_port = htons(port);
2763 sockaddr.sin_addr.s_addr = 0;
2764 ret = bind(fd, (struct sockaddr *)&sockaddr, sizeof(sockaddr));
2765 if (ret < 0) {
2766 perror("bind");
Peter Maydellbb161722011-12-24 23:37:24 +00002767 close(fd);
bellard858693c2004-03-31 18:52:07 +00002768 return -1;
2769 }
2770 ret = listen(fd, 0);
2771 if (ret < 0) {
2772 perror("listen");
Peter Maydellbb161722011-12-24 23:37:24 +00002773 close(fd);
bellard858693c2004-03-31 18:52:07 +00002774 return -1;
2775 }
bellard858693c2004-03-31 18:52:07 +00002776 return fd;
2777}
2778
2779int gdbserver_start(int port)
2780{
2781 gdbserver_fd = gdbserver_open(port);
2782 if (gdbserver_fd < 0)
2783 return -1;
2784 /* accept connections */
aliguori880a7572008-11-18 20:30:24 +00002785 gdb_accept();
bellardb4608c02003-06-27 17:34:32 +00002786 return 0;
2787}
aurel322b1319c2008-12-18 22:44:04 +00002788
2789/* Disable gdb stub for child processes. */
2790void gdbserver_fork(CPUState *env)
2791{
2792 GDBState *s = gdbserver_state;
edgar_igl9f6164d2009-01-07 10:22:28 +00002793 if (gdbserver_fd < 0 || s->fd < 0)
aurel322b1319c2008-12-18 22:44:04 +00002794 return;
2795 close(s->fd);
2796 s->fd = -1;
2797 cpu_breakpoint_remove_all(env, BP_GDB);
2798 cpu_watchpoint_remove_all(env, BP_GDB);
2799}
pbrook4046d912007-01-28 01:53:16 +00002800#else
thsaa1f17c2007-07-11 22:48:58 +00002801static int gdb_chr_can_receive(void *opaque)
pbrook4046d912007-01-28 01:53:16 +00002802{
pbrook56aebc82008-10-11 17:55:29 +00002803 /* We can handle an arbitrarily large amount of data.
2804 Pick the maximum packet size, which is as good as anything. */
2805 return MAX_PACKET_LENGTH;
pbrook4046d912007-01-28 01:53:16 +00002806}
2807
thsaa1f17c2007-07-11 22:48:58 +00002808static void gdb_chr_receive(void *opaque, const uint8_t *buf, int size)
pbrook4046d912007-01-28 01:53:16 +00002809{
pbrook4046d912007-01-28 01:53:16 +00002810 int i;
2811
2812 for (i = 0; i < size; i++) {
aliguori880a7572008-11-18 20:30:24 +00002813 gdb_read_byte(gdbserver_state, buf[i]);
pbrook4046d912007-01-28 01:53:16 +00002814 }
2815}
2816
2817static void gdb_chr_event(void *opaque, int event)
2818{
2819 switch (event) {
Amit Shahb6b8df52009-10-07 18:31:16 +05302820 case CHR_EVENT_OPENED:
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002821 vm_stop(RUN_STATE_PAUSED);
pbrook56aebc82008-10-11 17:55:29 +00002822 gdb_has_xml = 0;
pbrook4046d912007-01-28 01:53:16 +00002823 break;
2824 default:
2825 break;
2826 }
2827}
2828
aliguori8a34a0f2009-03-05 23:01:55 +00002829static void gdb_monitor_output(GDBState *s, const char *msg, int len)
2830{
2831 char buf[MAX_PACKET_LENGTH];
2832
2833 buf[0] = 'O';
2834 if (len > (MAX_PACKET_LENGTH/2) - 1)
2835 len = (MAX_PACKET_LENGTH/2) - 1;
2836 memtohex(buf + 1, (uint8_t *)msg, len);
2837 put_packet(s, buf);
2838}
2839
2840static int gdb_monitor_write(CharDriverState *chr, const uint8_t *buf, int len)
2841{
2842 const char *p = (const char *)buf;
2843 int max_sz;
2844
2845 max_sz = (sizeof(gdbserver_state->last_packet) - 2) / 2;
2846 for (;;) {
2847 if (len <= max_sz) {
2848 gdb_monitor_output(gdbserver_state, p, len);
2849 break;
2850 }
2851 gdb_monitor_output(gdbserver_state, p, max_sz);
2852 p += max_sz;
2853 len -= max_sz;
2854 }
2855 return len;
2856}
2857
aliguori59030a82009-04-05 18:43:41 +00002858#ifndef _WIN32
2859static void gdb_sigterm_handler(int signal)
2860{
Luiz Capitulino13548692011-07-29 15:36:43 -03002861 if (runstate_is_running()) {
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002862 vm_stop(RUN_STATE_PAUSED);
Jan Kiszkae07bbac2011-02-09 16:29:40 +01002863 }
aliguori59030a82009-04-05 18:43:41 +00002864}
2865#endif
2866
2867int gdbserver_start(const char *device)
pbrook4046d912007-01-28 01:53:16 +00002868{
2869 GDBState *s;
aliguori59030a82009-04-05 18:43:41 +00002870 char gdbstub_device_name[128];
aliguori36556b22009-03-28 18:05:53 +00002871 CharDriverState *chr = NULL;
2872 CharDriverState *mon_chr;
pbrook4046d912007-01-28 01:53:16 +00002873
aliguori59030a82009-04-05 18:43:41 +00002874 if (!device)
2875 return -1;
2876 if (strcmp(device, "none") != 0) {
2877 if (strstart(device, "tcp:", NULL)) {
2878 /* enforce required TCP attributes */
2879 snprintf(gdbstub_device_name, sizeof(gdbstub_device_name),
2880 "%s,nowait,nodelay,server", device);
2881 device = gdbstub_device_name;
aliguori36556b22009-03-28 18:05:53 +00002882 }
aliguori59030a82009-04-05 18:43:41 +00002883#ifndef _WIN32
2884 else if (strcmp(device, "stdio") == 0) {
2885 struct sigaction act;
pbrookcfc34752007-02-22 01:48:01 +00002886
aliguori59030a82009-04-05 18:43:41 +00002887 memset(&act, 0, sizeof(act));
2888 act.sa_handler = gdb_sigterm_handler;
2889 sigaction(SIGINT, &act, NULL);
2890 }
2891#endif
Anthony Liguori27143a42011-08-15 11:17:36 -05002892 chr = qemu_chr_new("gdb", device, NULL);
aliguori36556b22009-03-28 18:05:53 +00002893 if (!chr)
2894 return -1;
2895
2896 qemu_chr_add_handlers(chr, gdb_chr_can_receive, gdb_chr_receive,
2897 gdb_chr_event, NULL);
pbrookcfc34752007-02-22 01:48:01 +00002898 }
2899
aliguori36556b22009-03-28 18:05:53 +00002900 s = gdbserver_state;
2901 if (!s) {
Anthony Liguori7267c092011-08-20 22:09:37 -05002902 s = g_malloc0(sizeof(GDBState));
aliguori36556b22009-03-28 18:05:53 +00002903 gdbserver_state = s;
pbrook4046d912007-01-28 01:53:16 +00002904
aliguori36556b22009-03-28 18:05:53 +00002905 qemu_add_vm_change_state_handler(gdb_vm_state_change, NULL);
2906
2907 /* Initialize a monitor terminal for gdb */
Anthony Liguori7267c092011-08-20 22:09:37 -05002908 mon_chr = g_malloc0(sizeof(*mon_chr));
aliguori36556b22009-03-28 18:05:53 +00002909 mon_chr->chr_write = gdb_monitor_write;
2910 monitor_init(mon_chr, 0);
2911 } else {
2912 if (s->chr)
Anthony Liguori70f24fb2011-08-15 11:17:38 -05002913 qemu_chr_delete(s->chr);
aliguori36556b22009-03-28 18:05:53 +00002914 mon_chr = s->mon_chr;
2915 memset(s, 0, sizeof(GDBState));
2916 }
aliguori880a7572008-11-18 20:30:24 +00002917 s->c_cpu = first_cpu;
2918 s->g_cpu = first_cpu;
pbrook4046d912007-01-28 01:53:16 +00002919 s->chr = chr;
aliguori36556b22009-03-28 18:05:53 +00002920 s->state = chr ? RS_IDLE : RS_INACTIVE;
2921 s->mon_chr = mon_chr;
aliguori8a34a0f2009-03-05 23:01:55 +00002922
pbrook4046d912007-01-28 01:53:16 +00002923 return 0;
2924}
2925#endif