Patches from lvaro Lopes <alvieboy@alvie.com> to fix usage
[zpugcc.git] / toolchain / gcc / libgloss / debug.c
blob3b1c8ff9b7d538512db6b3e9623fc61120a2bf48
1 /*
2 * Copyright (c) 1995, 1996 Cygnus Support
4 * The authors hereby grant permission to use, copy, modify, distribute,
5 * and license this software and its documentation for any purpose, provided
6 * that existing copyright notices are retained in all copies and that this
7 * notice is included verbatim in any distributions. No written agreement,
8 * license, or royalty fee is required for any of the authorized uses.
9 * Modifications to this software may be copyrighted by their authors
10 * and need not follow the licensing terms described here, provided that
11 * the new terms are clearly indicated on the first page of each file where
12 * they apply.
16 * A debug packet whose contents are <data> looks like:
18 * $ <data> # CSUM1 CSUM2
20 * <data> must be ASCII alphanumeric and cannot include characters
21 * '$' or '#'. If <data> starts with two characters followed by
22 * ':', then the existing stubs interpret this as a sequence number.
24 * CSUM1 and CSUM2 are ascii hex representation of an 8-bit
25 * checksum of <data>, the most significant nibble is sent first.
26 * the hex digits 0-9,a-f are used.
28 * We respond with:
30 * + - if CSUM is correct and ready for next packet
31 * - - if CSUM is incorrect
33 * <data> is as follows:
34 * Most values are encoded in ascii hex digits.
37 #include "debug.h"
38 #include <signal.h>
41 * buffers that hold the packets while they're being constructed.
43 char packet_in_buf[BUFMAX];
44 char packet_out_buf[BUFMAX];
45 int packet_index;
48 * indicate to caller of mem2hex or hex2mem that there has been an error.
49 * 0 means ok, 1 means error
51 volatile int mem_err = 0;
54 * 1 means print debugging messages from the target, 0 means be quiet. This is
55 * changed by gdb_debug().
57 int remote_debug = 0;
60 * indicate whether the debug vectors ahave been initialized
61 * 0 means not yet, 1 means yep, it's ready.
63 int initialized = 0;
66 * These variables are instantialted in the GDB stub code.
69 /* this is a list of signal to exception mappings. */
70 extern struct trap_info hard_trap_info[];
72 /* this is a memory fault exception handler, used by mem2hex & hex2mem */
73 extern void set_mem_fault_trap();
76 * print debugging messages. This uses print, rather than one of the
77 * stdio routines, cause if there are stack or memory problems, the
78 * stdio routines don't work.
79 * params are the debug level, and the string to print
80 * it doesn't return anything.
82 void
83 debuglog(int level, char *msg)
85 char *p;
86 unsigned char buf[BUFMAX];
87 char newmsg[BUFMAX];
88 int i;
90 if (level > remote_debug)
91 return;
93 if ((level <0) || (level > 100)) {
94 print ("ERROR: debug print level out of range");
95 return;
98 /* convert some characters so it'll look right in the log */
99 p = newmsg;
100 for (i = 0 ; msg[i] != '\0'; i++) {
101 if (i > BUFMAX)
102 print ("\r\nERROR: Debug message too long\r\n");
103 switch (msg[i]) {
104 case '\n': /* newlines */
105 *p++ = '\\';
106 *p++ = 'n';
107 continue;
108 case '\r': /* carriage returns */
109 *p++ = '\\';
110 *p++ = 'r';
111 continue;
112 case '\033': /* escape */
113 *p++ = '\\';
114 *p++ = 'e';
115 continue;
116 case '\t': /* tab */
117 *p++ = '\\';
118 *p++ = 't';
119 continue;
120 case '\b': /* backspace */
121 *p++ = '\\';
122 *p++ = 'b';
123 continue;
124 default: /* no change */
125 *p++ = msg[i];
128 if (msg[i] < 26) { /* modify control characters */
129 *p++ = '^';
130 *p++ = msg[i] + 'A';
131 continue;
133 if (msg[i] >= 127) { /* modify control characters */
134 *p++ = '!';
135 *p++ = msg[i] + 'A';
136 continue;
139 *p = '\0'; /* terminate the string */
140 print (newmsg);
141 print ("\r\n");
145 * convert an ascii hex digit to a number.
146 * param is hex digit.
147 * returns a decimal digit.
150 hex2digit (int digit)
152 if (digit == 0)
153 return 0;
155 if (digit >= '0' && digit <= '9')
156 return digit - '0';
157 if (digit >= 'a' && digit <= 'f')
158 return digit - 'a' + 10;
159 if (digit >= 'A' && digit <= 'F')
160 return digit - 'A' + 10;
162 /* shouldn't ever get this far */
163 return ERROR;
167 * convert number NIB to a hex digit.
168 * param is a decimal digit.
169 * returns a hex digit.
171 char
172 digit2hex(int digit)
174 if (digit < 10)
175 return '0' + digit;
176 else
177 return 'a' + digit - 10;
181 * Convert the memory pointed to by mem into hex, placing result in buf.
182 * Return a pointer to the last char put in buf (null), in case of mem fault,
183 * return 0.
184 * If MAY_FAULT is non-zero, then we will handle memory faults by returning
185 * a 0, else treat a fault like any other fault in the stub.
187 unsigned char *
188 mem2hex(unsigned char *mem, unsigned char *buf, int count, int may_fault)
190 unsigned char ch;
192 DEBUG (1, "In mem2hex");
194 set_mem_fault_trap(MAY_FAULT);
196 while (count-- > 0) {
197 ch = *mem++;
198 if (mem_err) {
199 DEBUG (1, "memory fault in mem2hex");
200 return 0;
202 *buf++ = digit2hex(ch >> 4);
203 *buf++ = digit2hex(ch & 0xf);
206 *buf = 0;
208 set_mem_fault_trap(OK);
210 return buf;
214 * Convert the hex array pointed to by buf into binary to be placed in mem
215 * return a pointer to the character AFTER the last byte written
217 unsigned char *
218 hex2mem(unsigned char *buf, unsigned char *mem, int count, int may_fault)
220 int i;
221 unsigned char ch;
223 DEBUG (1, "In hex2mem");
225 set_mem_fault_trap(may_fault);
227 for (i=0; i<count; i++) {
228 ch = hex2digit(*buf++) << 4;
229 ch |= hex2digit(*buf++);
230 *mem++ = ch;
231 if (mem_err)
232 return 0;
235 set_mem_fault_trap(0);
237 return mem;
241 * while we find nice hex chars, build an int.
242 * param is a pointer to the string.
243 * returns the int in the param field, and the number of chars processed.
246 hex2int (char **ptr, int *intValue)
248 int numChars = 0;
249 int hexValue;
251 *intValue = 0;
253 while (**ptr)
255 hexValue = hex2digit(**ptr);
256 if (hexValue < 0)
257 break;
259 *intValue = (*intValue << 4) | hexValue;
260 numChars ++;
261 (*ptr)++;
263 return (numChars);
267 * Scan for the sequence $<data>#<checksum>
269 void
270 getpacket(unsigned char *buffer)
272 unsigned char checksum;
273 unsigned char xmitcsum;
274 int i;
275 int count;
276 unsigned char ch;
278 do {
279 /* wait around for the start character, ignore all other characters */
280 while ((ch = (inbyte() & 0x7f)) != '$') ;
282 checksum = 0;
283 xmitcsum = -1;
285 count = 0;
287 /* now, read until a # or end of buffer is found */
288 while (count < BUFMAX) {
289 ch = inbyte() & 0x7f;
290 if (ch == '#')
291 break;
292 checksum = checksum + ch;
293 buffer[count] = ch;
294 count = count + 1;
297 if (count >= BUFMAX)
298 continue;
300 buffer[count] = 0;
302 if (ch == '#') {
303 xmitcsum = hex2digit(inbyte() & 0x7f) << 4;
304 xmitcsum |= hex2digit(inbyte() & 0x7f);
305 #if 1
306 /* Humans shouldn't have to figure out checksums to type to it. */
307 outbyte ('+');
308 return;
309 #endif
310 if (checksum != xmitcsum)
311 outbyte('-'); /* failed checksum */
312 else {
313 outbyte('+'); /* successful transfer */
314 /* if a sequence char is present, reply the sequence ID */
315 if (buffer[2] == ':') {
316 outbyte(buffer[0]);
317 outbyte(buffer[1]);
318 /* remove sequence chars from buffer */
319 count = strlen(buffer);
320 for (i=3; i <= count; i++)
321 buffer[i-3] = buffer[i];
326 while (checksum != xmitcsum);
330 * Send the packet in buffer.
332 void
333 putpacket(unsigned char *buffer)
335 unsigned char checksum;
336 int count;
337 unsigned char ch;
339 /* $<packet info>#<checksum>. */
340 do {
341 outbyte('$');
342 checksum = 0;
343 count = 0;
345 while (ch = buffer[count]) {
346 if (! outbyte(ch))
347 return;
348 checksum += ch;
349 count += 1;
352 outbyte('#');
353 outbyte(digit2hex(checksum >> 4));
354 outbyte(digit2hex(checksum & 0xf));
357 while ((inbyte() & 0x7f) != '+');
363 void
364 gdb_event_loop(int sigval, unsigned long *registers)
366 int addr;
367 int length;
368 unsigned char *ptr;
369 ptr = packet_out_buf;
371 DEBUG (1, "In gdb_event_loop");
373 while (1) {
374 packet_out_buf[0] = 0;
376 getpacket(packet_in_buf);
377 ptr = &packet_in_buf[1];
379 switch (packet_in_buf[0]) {
380 case '?': /* get the last known signal */
381 gdb_last_signal(sigval);
382 break;
384 case 'd': /* toggle debug messages from the stub */
385 gdb_toggle();
386 break;
388 case 'g': /* return the value of the CPU registers */
389 target_read_registers(registers);
390 break;
392 case 'G': /* set the value of the CPU registers - return OK */
393 target_write_registers(registers);
394 break;
396 case 'm': /* mAA..AA,LLLL Read LLLL bytes at address AA..AA */
397 /* Try to read %x,%x. */
398 if (hex2int((char **)&ptr, &addr)
399 && *ptr++ == ','
400 && hex2int((char **)&ptr, &length)) {
401 gdb_read_memory(addr, length);
402 } else {
403 make_return_packet(1);
405 break;
407 case 'M': /* MAA..AA,LLLL: Write LLLL bytes at address AA.AA return OK */
408 /* Try to read '%x,%x:'. */
409 if (hex2int((char **)&ptr, &addr)
410 && *ptr++ == ','
411 && hex2int((char **)&ptr, &length)
412 && *ptr++ == ':') {
413 gdb_write_memory (addr, length, ptr);
414 } else {
415 make_return_packet(2);
417 break;
419 case 'c': /* cAA..AA Continue at address AA..AA(optional) */
420 /* try to read optional parameter, pc unchanged if no parm */
421 if (hex2int((char **)&ptr, &addr)) {
422 write_pc(registers, addr);
426 * we need to flush the instruction cache here, as we may have
427 * deposited a breakpoint, and the icache probably has no way of
428 * knowing that a data ref to some location may have changed
429 * something that is in the instruction cache.
432 flush_i_cache();
433 /* by returning, we pick up execution where we left off */
434 return;
436 /* kill the program */
437 case 'k' :
438 gdb_kill();
439 break;
440 case 'r': /* Reset */
441 target_reset();
442 break;
443 } /* switch */
445 /* reply to the request */
446 putpacket(packet_out_buf);
448 DEBUG (1, "Leaving handle_exception()");
451 /* Convert the hardware trap type code to a unix signal number. */
454 computeSignal(int tt)
456 struct trap_info *ht;
458 for (ht = hard_trap_info; ht->tt && ht->signo; ht++)
459 if (ht->tt == tt)
460 return ht->signo;
462 return SIGHUP; /* default for things we don't know about */
466 * Set up exception handlers for tracing and breakpoints
468 void
469 set_debug_traps()
471 struct trap_info *ht;
473 DEBUG (1, "Entering set_debug_traps()");
475 if (hard_trap_info->tt == 0) {
476 print ("ERROR: ARG#$@%^&*!! no hard trap info!!\r\n");
479 for (ht = hard_trap_info; ht->tt && ht->signo; ht++) {
480 exception_handler(ht->tt, (unsigned long)default_trap_hook);
483 /* In case GDB is started before us, ack any packets (presumably
484 "$?#xx") sitting there. */
486 outbyte ('+');
487 initialized = 1;
489 DEBUG (1, "Leaving set_debug_traps()");
493 * make a return packet.
494 * param is the value to return.
495 * 0 = OK, any other value is converted to a two digit hex number.
496 * returns a string or "OK" or "ENN", where NN is the error number. Each N
497 * is an ASCII encoded hex digit.
499 char *
500 make_return_packet(int val)
502 if (val == 0) {
503 packet_out_buf[0] = 'O';
504 packet_out_buf[1] = 'K';
505 packet_out_buf[2] = 0;
506 } else {
507 packet_out_buf[0] = 'E';
508 packet_out_buf[1] = digit2hex((val >> 4) & 0xf);
509 packet_out_buf[2] = digit2hex(val & 0xf);
510 packet_out_buf[3] = 0;
512 return(packet_out_buf);
516 * g - read registers.
517 * no params.
518 * returns a vector of words, size is NUM_REGS.
520 char *
521 gdb_read_registers()
526 * G - write registers.
527 * param is a vector of words, size is NUM_REGS.
528 * returns an OK or an error number.
530 char *
531 gdb_write_registers(char *regs)
536 * m - read memory.
537 * params are the address to start the read at and the number of
538 * bytes to read.
539 * returns a vector of nbytes or an error number.
540 * Can be fewer bytes than requested if able to read only part of the
541 * data.
543 char *
544 gdb_read_memory(long addr, int nbytes)
546 if (mem2hex((char *)addr, packet_out_buf, nbytes, MAY_FAULT))
547 return(packet_out_buf);
548 else {
549 return(make_return_packet(3));
554 * M write memory
555 * params are the address to start writing to, the number of
556 * bytes to write, and the new values of the bytes.
557 * returns an OK or an error number.
559 char *
560 gdb_write_memory(long addr, int nbytes, char *mem)
562 if (hex2mem(mem, (char *)addr, nbytes, MAY_FAULT))
563 return(make_return_packet(OK));
564 else {
565 return(make_return_packet(3));
570 * c - continue at address.
571 * param is the address to start at, and an optional signal. If
572 * sig is zero, then ignore it.
573 * returns an OK or an error number.
575 char *
576 gdb_continue(int sig, long addr)
581 * s - step instruction(s)
582 * param is the address to start at, and an optional signal. If
583 * sig is zero, then ignore it.
584 * returns an OK or an error number.
586 char *
587 gdb_step(int sig, long addr)
592 * k - kill program.
593 * no params.
594 * returns an OK or an error number.
596 char *
597 gdb_kill()
599 /* generically, we can't do anything for this command */
600 return(make_return_packet(OK));
604 * ? - last signal.
605 * no params.
606 * returns the last signal number.
608 char *
609 gdb_last_signal(int val)
611 DEBUG (1, "Entering gdb_last_signal()");
613 packet_out_buf[0] = 'S';
614 packet_out_buf[1] = digit2hex(val >> 4);
615 packet_out_buf[2] = digit2hex(val & 0xf);
616 packet_out_buf[3] = 0;
618 DEBUG (1, "Leaving gdb_last_signal()");
619 return (packet_out_buf);
623 * b - change baud rate.
624 * param is the new baudrate
625 * returns the baud rate.
627 char *
628 gdb_baudrate(int baud)
630 /* generically, we can't do anything for this command */
631 return(make_return_packet(OK));
635 * T - dump state.
636 * no params.
637 * returns the signal number, the registers, the thread ID, and
638 * possible extensions in a vector that looks like:
639 * TAAn...:r...;n...:r...;n...:r...; where:
640 * AA = signal number
641 * n... = register number (hex)
642 * r... = register contents
643 * n... = `thread'
644 * r... = thread process ID. This is a hex integer.
645 * n... = other string not starting with valid hex digit.
646 * gdb should ignore this n,r pair and go on to
647 * the next. This way we can extend the protocol.
649 char *
650 gdb_dump_state()
655 * D - host requests a detach
656 * no params.
657 * returns either a S, T, W, or X command.
658 * returns an OK or an error number.
660 char *
661 gdb_detach()
666 * H - set thread.
667 * params are the command to execute and the thread ID.
668 * cmd = 'c' for thread used in step and continue;
669 * cmd = 'g' for thread used in other operations.
670 * tid = -1 for all threads.
671 * tid = zero, pick a thread,any thread.
672 * returns an OK or an error number.
674 char *
675 gdb_set_thread(int cmd, int tid)
677 /* generically, we can't do anything for this command */
678 return(make_return_packet(OK));
682 * p - read one register.
683 * param is the register number.
684 * returns the register value or ENN.
686 char *
687 gdb_read_reg(int reg)
689 /* generically, we can't do anything for this command */
690 return(make_return_packet(OK));
694 * P - write one register.
695 * params are the register number, and it's new value.
696 * returns the register value or ENN.
698 char *
699 gdb_write_reg(int reg, long val)
701 /* generically, we can't do anything for this command */
703 return(make_return_packet(OK));
707 * W - process exited.
708 * no params.
709 * returns the exit status.
711 char *
712 gdb_exited()
714 /* generically, we can't do anything for this command */
715 return(make_return_packet(OK));
719 * X - process terminated.
720 * no params.
721 * returns the last signal.
723 char *
724 gdb_terminated()
729 * O - hex encoding.
730 * params are a vector of bytes, and the number of bytes to encode.
731 * returns a vector of ASCII encoded hex numbers.
733 char *
734 gdb_hex(char *str, int nbytes)
739 * A - tread alive request.
740 * param is the thread ID.
741 * returns an OK or an error number.
743 char *
744 gdb_thread_alive(int tid)
746 /* generically, we can't do anything for this command */
747 return(make_return_packet(OK));
751 * ! - extended protocol.
752 * no params.
753 * returns an OK or an error number.
755 char *
756 gdb_extended()
758 /* generically, we can't do anything for this command */
759 return(make_return_packet(OK));
763 * d - toggle gdb stub diagnostics.
764 * no params.
765 * returns an OK or an error number.
767 char *
768 gdb_debug()
770 if (remote_debug > 0)
771 remote_debug = 0;
772 else
773 remote_debug = 1;
775 return(make_return_packet(OK));
779 * d - toggle gdb stub.
780 * no params.
781 * returns an OK or an error number.
783 char *
784 gdb_toggle()
786 static int level = 0;
788 if (remote_debug) {
789 level = remote_debug;
790 remote_debug = 0;
791 } else {
792 remote_debug = level;
795 return(make_return_packet(OK));
799 * r - reset target
800 * no params.
801 * returns an OK or an error number.
803 char *
804 gdb_reset()
806 /* generically, we can't do anything for this command */
807 return(make_return_packet(OK));
811 * t - search backwards.
812 * params are the address to start searching from, a pattern to match, and
813 * the mask to use.
814 * FIXME: not entirely sure what this is supposed to return.
816 char *
817 gdb_search(long addr, long pat, long mask)
819 /* generically, we can't do anything for this command */
820 return(make_return_packet(OK));
824 * q - general get query.
825 * param is a string, that's the query to be executed.
826 * FIXME: not entirely sure what this is supposed to return.
828 char *
829 gdb_get_query(char *query)
831 /* generically, we can't do anything for this command */
832 return(make_return_packet(OK));
836 * Q - general set query
837 * param is a string, that's the query to be executed.
838 * FIXME: not entirely sure what this means.
839 * returns an OK or an error number.
841 char *
842 gdb_set(char *query)
844 /* generically, we can't do anything for this command */
845 return(make_return_packet(OK));