2 * Copyright (c) 2002-2004 The Regents of The University of Michigan
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 * Copyright (c) 1990, 1993
31 * The Regents of the University of California. All rights reserved.
33 * This software was developed by the Computer Systems Engineering group
34 * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
35 * contributed to Berkeley.
37 * All advertising materials mentioning features or use of this software
38 * must display the following acknowledgement:
39 * This product includes software developed by the University of
40 * California, Lawrence Berkeley Laboratories.
42 * Redistribution and use in source and binary forms, with or without
43 * modification, are permitted provided that the following conditions
45 * 1. Redistributions of source code must retain the above copyright
46 * notice, this list of conditions and the following disclaimer.
47 * 2. Redistributions in binary form must reproduce the above copyright
48 * notice, this list of conditions and the following disclaimer in the
49 * documentation and/or other materials provided with the distribution.
50 * 3. All advertising materials mentioning features or use of this software
51 * must display the following acknowledgement:
52 * This product includes software developed by the University of
53 * California, Berkeley and its contributors.
54 * 4. Neither the name of the University nor the names of its contributors
55 * may be used to endorse or promote products derived from this software
56 * without specific prior written permission.
58 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
59 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
60 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
61 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
62 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
63 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
64 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
65 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
66 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
67 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
70 * @(#)kgdb_stub.c 8.4 (Berkeley) 1/12/94
74 * Copyright (c) 2001 The NetBSD Foundation, Inc.
75 * All rights reserved.
77 * This code is derived from software contributed to The NetBSD Foundation
80 * Redistribution and use in source and binary forms, with or without
81 * modification, are permitted provided that the following conditions
83 * 1. Redistributions of source code must retain the above copyright
84 * notice, this list of conditions and the following disclaimer.
85 * 2. Redistributions in binary form must reproduce the above copyright
86 * notice, this list of conditions and the following disclaimer in the
87 * documentation and/or other materials provided with the distribution.
88 * 3. All advertising materials mentioning features or use of this software
89 * must display the following acknowledgement:
90 * This product includes software developed by the NetBSD
91 * Foundation, Inc. and its contributors.
92 * 4. Neither the name of The NetBSD Foundation nor the names of its
93 * contributors may be used to endorse or promote products derived
94 * from this software without specific prior written permission.
96 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
97 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
98 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
99 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
100 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
101 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
102 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
103 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
104 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
105 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
106 * POSSIBILITY OF SUCH DAMAGE.
110 * $NetBSD: kgdb_stub.c,v 1.8 2001/07/07 22:58:00 wdk Exp $
114 * "Stub" to allow remote cpu to debug over a serial line using gdb.
117 #include <sys/signal.h>
124 #include "cpu/exec_context.hh"
125 #include "base/intmath.hh"
126 #include "base/kgdb.h"
128 #include "mem/functional_mem/physical_memory.hh"
129 #include "base/remote_gdb.hh"
130 #include "base/socket.hh"
131 #include "base/trace.hh"
132 #include "targetarch/vtophys.hh"
133 #include "sim/system.hh"
134 #include "cpu/static_inst.hh"
139 RemoteGDB
*theDebugger
= NULL
;
145 theDebugger
->trap(ALPHA_KENTRY_IF
);
149 ///////////////////////////////////////////////////////////
154 GDBListener::Event::Event(GDBListener
*l
, int fd
, int e
)
155 : PollEvent(fd
, e
), listener(l
)
159 GDBListener::Event::process(int revent
)
164 GDBListener::GDBListener(RemoteGDB
*g
, int p
)
165 : event(NULL
), gdb(g
), port(p
)
168 GDBListener::~GDBListener()
177 return gdb
->name() + ".listener";
181 GDBListener::listen()
183 while (!listener
.listen(port
, true)) {
184 DPRINTF(GDBMisc
, "Can't bind port %d\n", port
);
188 cerr
<< "Listening for remote gdb connection on port " << port
<< endl
;
189 event
= new Event(this, listener
.getfd(), POLLIN
);
190 pollQueue
.schedule(event
);
194 GDBListener::accept()
196 if (!listener
.islistening())
197 panic("GDBListener::accept(): cannot accept if we're not listening!");
199 int sfd
= listener
.accept(true);
202 if (gdb
->isattached())
209 ///////////////////////////////////////////////////////////
215 void mem2hex(void *, const void *, int);
216 const char *hex2mem(void *, const char *, int);
217 Addr
hex2i(const char **);
219 RemoteGDB::Event::Event(RemoteGDB
*g
, int fd
, int e
)
220 : PollEvent(fd
, e
), gdb(g
)
224 RemoteGDB::Event::process(int revent
)
227 gdb
->trap(ALPHA_KENTRY_IF
);
228 else if (revent
& POLLNVAL
)
232 RemoteGDB::RemoteGDB(System
*_system
, ExecContext
*c
)
233 : event(NULL
), fd(-1), active(false), attached(false),
234 system(_system
), pmem(_system
->physmem
), context(c
)
236 memset(gdbregs
, 0, sizeof(gdbregs
));
239 RemoteGDB::~RemoteGDB()
248 return system
->name() + ".remote_gdb";
252 RemoteGDB::isattached()
256 RemoteGDB::attach(int f
)
260 event
= new Event(this, fd
, POLLIN
);
261 pollQueue
.schedule(event
);
264 DPRINTFN("remote gdb attached\n");
277 pollQueue
.remove(event
);
278 DPRINTFN("remote gdb detached\n");
282 gdb_command(char cmd
)
285 case KGDB_SIGNAL
: return "KGDB_SIGNAL";
286 case KGDB_SET_BAUD
: return "KGDB_SET_BAUD";
287 case KGDB_SET_BREAK
: return "KGDB_SET_BREAK";
288 case KGDB_CONT
: return "KGDB_CONT";
289 case KGDB_ASYNC_CONT
: return "KGDB_ASYNC_CONT";
290 case KGDB_DEBUG
: return "KGDB_DEBUG";
291 case KGDB_DETACH
: return "KGDB_DETACH";
292 case KGDB_REG_R
: return "KGDB_REG_R";
293 case KGDB_REG_W
: return "KGDB_REG_W";
294 case KGDB_SET_THREAD
: return "KGDB_SET_THREAD";
295 case KGDB_CYCLE_STEP
: return "KGDB_CYCLE_STEP";
296 case KGDB_SIG_CYCLE_STEP
: return "KGDB_SIG_CYCLE_STEP";
297 case KGDB_KILL
: return "KGDB_KILL";
298 case KGDB_MEM_W
: return "KGDB_MEM_W";
299 case KGDB_MEM_R
: return "KGDB_MEM_R";
300 case KGDB_SET_REG
: return "KGDB_SET_REG";
301 case KGDB_READ_REG
: return "KGDB_READ_REG";
302 case KGDB_QUERY_VAR
: return "KGDB_QUERY_VAR";
303 case KGDB_SET_VAR
: return "KGDB_SET_VAR";
304 case KGDB_RESET
: return "KGDB_RESET";
305 case KGDB_STEP
: return "KGDB_STEP";
306 case KGDB_ASYNC_STEP
: return "KGDB_ASYNC_STEP";
307 case KGDB_THREAD_ALIVE
: return "KGDB_THREAD_ALIVE";
308 case KGDB_TARGET_EXIT
: return "KGDB_TARGET_EXIT";
309 case KGDB_BINARY_DLOAD
: return "KGDB_BINARY_DLOAD";
310 case KGDB_CLR_HW_BKPT
: return "KGDB_CLR_HW_BKPT";
311 case KGDB_SET_HW_BKPT
: return "KGDB_SET_HW_BKPT";
312 case KGDB_START
: return "KGDB_START";
313 case KGDB_END
: return "KGDB_END";
314 case KGDB_GOODP
: return "KGDB_GOODP";
315 case KGDB_BADP
: return "KGDB_BADP";
316 default: return "KGDB_UNKNOWN";
320 ///////////////////////////////////////////////////////////
323 // Determine if the mapping at va..(va+len) is valid.
326 RemoteGDB::acc(Addr va
, size_t len
)
331 va
= alpha_trunc_page(va
);
332 last_va
= alpha_round_page(va
+ len
);
335 if (va
>= ALPHA_K0SEG_BASE
&& va
< ALPHA_K1SEG_BASE
) {
336 if (va
< (ALPHA_K0SEG_BASE
+ pmem
->size())) {
337 DPRINTF(GDBAcc
, "acc: Mapping is valid K0SEG <= "
338 "%#x < K0SEG + size\n", va
);
341 DPRINTF(GDBAcc
, "acc: Mapping invalid %#x > K0SEG + size\n",
348 * This code says that all accesses to palcode (instruction and data)
349 * are valid since there isn't a va->pa mapping because palcode is
350 * accessed physically. At some point this should probably be cleaned up
351 * but there is no easy way to do it.
354 if (PC_PAL(va
) || va
< 0x10000)
357 Addr ptbr
= context
->regs
.ipr
[AlphaISA::IPR_PALtemp20
];
358 pte
= kernel_pte_lookup(pmem
, ptbr
, va
);
359 if (!pte
|| !entry_valid(pmem
->phys_read_qword(pte
))) {
360 DPRINTF(GDBAcc
, "acc: %#x pte is invalid\n", va
);
364 } while (va
< last_va
);
366 DPRINTF(GDBAcc
, "acc: %#x mapping is valid\n", va
);
370 ///////////////////////////////////////////////////////////
373 // Translate a trap number into a Unix-compatible signal number.
374 // (GDB only understands Unix signal numbers.)
377 RemoteGDB::signal(int type
)
380 case ALPHA_KENTRY_INT
:
383 case ALPHA_KENTRY_UNA
:
386 case ALPHA_KENTRY_ARITH
:
389 case ALPHA_KENTRY_IF
:
392 case ALPHA_KENTRY_MM
:
396 panic("unknown signal type");
401 ///////////////////////////////////////////////////////////
402 // RemoteGDB::getregs
404 // Translate the kernel debugger register format into
405 // the GDB register format.
409 memset(gdbregs
, 0, sizeof(gdbregs
));
410 memcpy(&gdbregs
[KGDB_REG_V0
], context
->regs
.intRegFile
, 32 * sizeof(uint64_t));
412 memcpy(&gdbregs
[KGDB_REG_F0
], context
->regs
.floatRegFile
.q
,
413 32 * sizeof(uint64_t));
415 gdbregs
[KGDB_REG_PC
] = context
->regs
.pc
;
418 ///////////////////////////////////////////////////////////
419 // RemoteGDB::setregs
421 // Translate the GDB register format into the kernel
422 // debugger register format.
427 memcpy(context
->regs
.intRegFile
, &gdbregs
[KGDB_REG_V0
],
428 32 * sizeof(uint64_t));
430 memcpy(context
->regs
.floatRegFile
.q
, &gdbregs
[KGDB_REG_F0
],
431 32 * sizeof(uint64_t));
433 context
->regs
.pc
= gdbregs
[KGDB_REG_PC
];
437 RemoteGDB::setTempBreakpoint(TempBreakpoint
&bkpt
, Addr addr
)
439 DPRINTF(GDBMisc
, "setTempBreakpoint: addr=%#x\n", addr
);
442 insertHardBreak(addr
, 4);
446 RemoteGDB::clearTempBreakpoint(TempBreakpoint
&bkpt
)
448 DPRINTF(GDBMisc
, "setTempBreakpoint: addr=%#x\n",
452 removeHardBreak(bkpt
.address
, 4);
457 RemoteGDB::clearSingleStep()
459 DPRINTF(GDBMisc
, "clearSingleStep bt_addr=%#x nt_addr=%#x\n",
460 takenBkpt
.address
, notTakenBkpt
.address
);
462 if (takenBkpt
.address
!= 0)
463 clearTempBreakpoint(takenBkpt
);
465 if (notTakenBkpt
.address
!= 0)
466 clearTempBreakpoint(notTakenBkpt
);
470 RemoteGDB::setSingleStep()
472 Addr pc
= context
->regs
.pc
;
476 npc
= pc
+ sizeof(MachInst
);
478 // User was stopped at pc, e.g. the instruction at pc was not
480 MachInst inst
= read
<MachInst
>(pc
);
481 StaticInstPtr
<TheISA
> si(inst
);
482 if (si
->hasBranchTarget(pc
, context
, bpc
)) {
483 // Don't bother setting a breakpoint on the taken branch if it
484 // is the same as the next pc
489 DPRINTF(GDBMisc
, "setSingleStep bt_addr=%#x nt_addr=%#x\n",
490 takenBkpt
.address
, notTakenBkpt
.address
);
492 setTempBreakpoint(notTakenBkpt
, npc
);
495 setTempBreakpoint(takenBkpt
, bpc
);
498 /////////////////////////
511 RemoteGDB::putbyte(uint8_t b
)
516 // Send a packet to gdb
518 RemoteGDB::send(const char *bp
)
523 DPRINTF(GDBSend
, "send: %s\n", bp
);
528 for (csum
= 0; (c
= *p
); p
++) {
533 putbyte(i2digit(csum
>> 4));
534 putbyte(i2digit(csum
));
535 } while ((c
= getbyte() & 0x7f) == KGDB_BADP
);
538 // Receive a packet from gdb
540 RemoteGDB::recv(char *bp
, int maxlen
)
549 while ((c
= getbyte()) != KGDB_START
)
552 while ((c
= getbyte()) != KGDB_END
&& len
< maxlen
) {
566 csum
-= digit2i(getbyte()) * 16;
567 csum
-= digit2i(getbyte());
576 bcopy(bp
+ 3, bp
, len
);
583 DPRINTF(GDBRecv
, "recv: %s: %s\n", gdb_command(*bp
), bp
);
588 // Read bytes from kernel address space for debugger.
590 RemoteGDB::read(Addr vaddr
, size_t size
, char *data
)
592 static Addr lastaddr
= 0;
593 static size_t lastsize
= 0;
598 DPRINTF(GDBRead
, "read: reading memory location zero!\n");
599 vaddr
= lastaddr
+ lastsize
;
602 DPRINTF(GDBRead
, "read: addr=%#x, size=%d", vaddr
, size
);
611 size_t count
= min((Addr
)size
,
612 VMPageSize
- (vaddr
& (VMPageSize
- 1)));
614 maddr
= vtomem(context
, vaddr
, count
);
615 memcpy(data
, maddr
, count
);
621 while (size
>= VMPageSize
) {
622 maddr
= vtomem(context
, vaddr
, count
);
623 memcpy(data
, maddr
, VMPageSize
);
631 maddr
= vtomem(context
, vaddr
, count
);
632 memcpy(data
, maddr
, size
);
636 if (DTRACE(GDBRead
)) {
637 if (DTRACE(GDBExtra
)) {
640 DPRINTFNR(": %s\n", buf
);
649 // Write bytes to kernel address space for debugger.
651 RemoteGDB::write(Addr vaddr
, size_t size
, const char *data
)
653 static Addr lastaddr
= 0;
654 static size_t lastsize
= 0;
659 DPRINTF(GDBWrite
, "write: writing memory location zero!\n");
660 vaddr
= lastaddr
+ lastsize
;
663 if (DTRACE(GDBWrite
)) {
664 DPRINTFN("write: addr=%#x, size=%d", vaddr
, size
);
665 if (DTRACE(GDBExtra
)) {
667 mem2hex(buf
, data
, size
);
668 DPRINTFNR(": %s\n", buf
);
676 size_t count
= min((Addr
)size
,
677 VMPageSize
- (vaddr
& (VMPageSize
- 1)));
679 maddr
= vtomem(context
, vaddr
, count
);
680 memcpy(maddr
, data
, count
);
686 while (size
>= VMPageSize
) {
687 maddr
= vtomem(context
, vaddr
, count
);
688 memcpy(maddr
, data
, VMPageSize
);
696 maddr
= vtomem(context
, vaddr
, count
);
697 memcpy(maddr
, data
, size
);
708 PCEventQueue
*RemoteGDB::getPcEventQueue()
710 return &system
->pcEventQueue
;
714 RemoteGDB::HardBreakpoint::HardBreakpoint(RemoteGDB
*_gdb
, Addr pc
)
715 : PCEvent(_gdb
->getPcEventQueue(), "HardBreakpoint Event", pc
),
716 gdb(_gdb
), refcount(0)
718 DPRINTF(GDBMisc
, "creating hardware breakpoint at %#x\n", evpc
);
723 RemoteGDB::HardBreakpoint::process(ExecContext
*xc
)
725 DPRINTF(GDBMisc
, "handling hardware breakpoint at %#x\n", pc());
727 if (xc
== gdb
->context
)
728 gdb
->trap(ALPHA_KENTRY_INT
);
732 RemoteGDB::insertSoftBreak(Addr addr
, size_t len
)
734 if (len
!= sizeof(MachInst
))
735 panic("invalid length\n");
737 return insertHardBreak(addr
, len
);
741 RemoteGDB::removeSoftBreak(Addr addr
, size_t len
)
743 if (len
!= sizeof(MachInst
))
744 panic("invalid length\n");
746 return removeHardBreak(addr
, len
);
750 RemoteGDB::insertHardBreak(Addr addr
, size_t len
)
752 if (len
!= sizeof(MachInst
))
753 panic("invalid length\n");
755 DPRINTF(GDBMisc
, "inserting hardware breakpoint at %#x\n", addr
);
757 HardBreakpoint
*&bkpt
= hardBreakMap
[addr
];
759 bkpt
= new HardBreakpoint(this, addr
);
767 RemoteGDB::removeHardBreak(Addr addr
, size_t len
)
769 if (len
!= sizeof(MachInst
))
770 panic("invalid length\n");
772 DPRINTF(GDBMisc
, "removing hardware breakpoint at %#x\n", addr
);
774 break_iter_t i
= hardBreakMap
.find(addr
);
775 if (i
== hardBreakMap
.end())
778 HardBreakpoint
*hbp
= (*i
).second
;
779 if (--hbp
->refcount
== 0) {
781 hardBreakMap
.erase(i
);
791 case '0': return "software breakpoint";
792 case '1': return "hardware breakpoint";
793 case '2': return "write watchpoint";
794 case '3': return "read watchpoint";
795 case '4': return "access watchpoint";
796 default: return "unknown breakpoint/watchpoint";
800 // This function does all command processing for interfacing to a
801 // remote gdb. Note that the error codes are ignored by gdb at
802 // present, but might eventually become meaningful. (XXX) It might
803 // makes sense to use POSIX errno values, because that is what the
804 // gdb/remote.c functions want to return.
806 RemoteGDB::trap(int type
)
810 char data
[KGDB_BUFLEN
+ 1];
811 char buffer
[sizeof(gdbregs
) * 2 + 256];
812 char temp
[KGDB_BUFLEN
];
814 char command
, subcmd
;
821 DPRINTF(GDBMisc
, "trap: PC=%#x NPC=%#x\n",
822 context
->regs
.pc
, context
->regs
.npc
);
827 * The first entry to this function is normally through
828 * a breakpoint trap in kgdb_connect(), in which case we
829 * must advance past the breakpoint because gdb will not.
831 * On the first entry here, we expect that gdb is not yet
832 * listening to us, so just enter the interaction loop.
833 * After the debugger is "active" (connected) it will be
834 * waiting for a "signaled" message from us.
839 // Tell remote host that an exception has occurred.
840 sprintf((char *)buffer
, "S%02x", signal(type
));
843 // Stick frame regs into our reg cache.
847 datalen
= recv(data
, sizeof(data
));
848 data
[sizeof(data
) - 1] = 0; // Sentinel
855 // if this command came from a running gdb, answer it --
856 // the other guy has no way of knowing if we're in or out
857 // of this loop when he issues a "remote-signal".
858 sprintf((char *)buffer
, "S%02x", signal(type
));
863 if (2 * sizeof(gdbregs
) > sizeof(buffer
))
864 panic("buffer too small");
866 mem2hex(buffer
, gdbregs
, sizeof(gdbregs
));
871 p
= hex2mem(gdbregs
, p
, sizeof(gdbregs
));
872 if (p
== NULL
|| *p
!= '\0')
887 if (val
< 0 && val
>= KGDB_NUMREGS
) {
892 gdbregs
[val
] = hex2i(&p
);
910 if (len
> sizeof(buffer
)) {
914 if (!acc(val
, len
)) {
919 if (read(val
, (size_t)len
, (char *)buffer
)) {
920 mem2hex(temp
, buffer
, len
);
938 if (len
> datalen
- (p
- data
)) {
942 p
= hex2mem(buffer
, p
, sizeof(buffer
));
947 if (!acc(val
, len
)) {
951 if (write(val
, (size_t)len
, (char *)buffer
))
957 case KGDB_SET_THREAD
:
973 case KGDB_ASYNC_CONT
:
977 context
->regs
.pc
= val
;
978 context
->regs
.npc
= val
+ sizeof(MachInst
);
984 if (p
- data
< datalen
) {
986 context
->regs
.pc
= val
;
987 context
->regs
.npc
= val
+ sizeof(MachInst
);
992 case KGDB_ASYNC_STEP
:
996 context
->regs
.pc
= val
;
997 context
->regs
.npc
= val
+ sizeof(MachInst
);
1003 if (p
- data
< datalen
) {
1005 context
->regs
.pc
= val
;
1006 context
->regs
.npc
= val
+ sizeof(MachInst
);
1011 case KGDB_CLR_HW_BKPT
:
1013 if (*p
++ != ',') send("E0D");
1015 if (*p
++ != ',') send("E0D");
1018 DPRINTF(GDBMisc
, "clear %s, addr=%#x, len=%d\n",
1019 break_type(subcmd
), val
, len
);
1024 case '0': // software breakpoint
1025 ret
= removeSoftBreak(val
, len
);
1028 case '1': // hardware breakpoint
1029 ret
= removeHardBreak(val
, len
);
1032 case '2': // write watchpoint
1033 case '3': // read watchpoint
1034 case '4': // access watchpoint
1040 send(ret
? "OK" : "E0C");
1043 case KGDB_SET_HW_BKPT
:
1045 if (*p
++ != ',') send("E0D");
1047 if (*p
++ != ',') send("E0D");
1050 DPRINTF(GDBMisc
, "set %s, addr=%#x, len=%d\n",
1051 break_type(subcmd
), val
, len
);
1056 case '0': // software breakpoint
1057 ret
= insertSoftBreak(val
, len
);
1060 case '1': // hardware breakpoint
1061 ret
= insertHardBreak(val
, len
);
1064 case '2': // write watchpoint
1065 case '3': // read watchpoint
1066 case '4': // access watchpoint
1072 send(ret
? "OK" : "E0C");
1075 case KGDB_QUERY_VAR
:
1076 var
= string(p
, datalen
- 1);
1084 case KGDB_SET_BREAK
:
1086 case KGDB_CYCLE_STEP
:
1087 case KGDB_SIG_CYCLE_STEP
:
1091 case KGDB_THREAD_ALIVE
:
1092 case KGDB_TARGET_EXIT
:
1093 case KGDB_BINARY_DLOAD
:
1094 // Unsupported command
1095 DPRINTF(GDBMisc
, "Unsupported command: %s\n",
1096 gdb_command(command
));
1097 DDUMP(GDBMisc
, (uint8_t *)data
, datalen
);
1103 DPRINTF(GDBMisc
, "Unknown command: %c(%#x)\n",
1116 // Convert a hex digit into an integer.
1117 // This returns -1 if the argument passed is no valid hex digit.
1121 if (c
>= '0' && c
<= '9')
1123 else if (c
>= 'a' && c
<= 'f')
1124 return (c
- 'a' + 10);
1125 else if (c
>= 'A' && c
<= 'F')
1127 return (c
- 'A' + 10);
1132 // Convert the low 4 bits of an integer into an hex digit.
1136 return ("0123456789abcdef"[n
& 0x0f]);
1139 // Convert a byte array into an hex string.
1141 mem2hex(void *vdst
, const void *vsrc
, int len
)
1143 char *dst
= (char *)vdst
;
1144 const char *src
= (const char *)vsrc
;
1147 *dst
++ = i2digit(*src
>> 4);
1148 *dst
++ = i2digit(*src
++);
1153 // Convert an hex string into a byte array.
1154 // This returns a pointer to the character following the last valid
1155 // hex digit. If the string ends in the middle of a byte, NULL is
1158 hex2mem(void *vdst
, const char *src
, int maxlen
)
1160 char *dst
= (char *)vdst
;
1163 while (*src
&& maxlen
--) {
1164 msb
= digit2i(*src
++);
1167 lsb
= digit2i(*src
++);
1170 *dst
++ = (msb
<< 4) | lsb
;
1175 // Convert an hex string into an integer.
1176 // This returns a pointer to the character following the last valid
1179 hex2i(const char **srcp
)
1181 const char *src
= *srcp
;
1185 while ((nibble
= digit2i(*src
)) >= 0) {