* config/irix3.mh (NATDEPFILES): nat-mips.o => mips-nat.o.
[deliverable/binutils-gdb.git] / gdb / utils.c
1 /* General utility routines for GDB, the GNU debugger.
2 Copyright 1986, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program 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
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20 #include "defs.h"
21 #if !defined(__GO32__)
22 #include <sys/ioctl.h>
23 #include <sys/param.h>
24 #include <pwd.h>
25 #endif
26 #include <varargs.h>
27 #include <ctype.h>
28 #include <string.h>
29
30 #include "signals.h"
31 #include "gdbcmd.h"
32 #include "terminal.h"
33 #include "bfd.h"
34 #include "target.h"
35 #include "demangle.h"
36
37 /* Prototypes for local functions */
38
39 #if !defined (NO_MALLOC_CHECK)
40
41 static void
42 malloc_botch PARAMS ((void));
43
44 #endif /* NO_MALLOC_CHECK */
45
46 static void
47 fatal_dump_core (); /* Can't prototype with <varargs.h> usage... */
48
49 static void
50 prompt_for_continue PARAMS ((void));
51
52 static void
53 set_width_command PARAMS ((char *, int, struct cmd_list_element *));
54
55 /* If this definition isn't overridden by the header files, assume
56 that isatty and fileno exist on this system. */
57 #ifndef ISATTY
58 #define ISATTY(FP) (isatty (fileno (FP)))
59 #endif
60
61 /* Chain of cleanup actions established with make_cleanup,
62 to be executed if an error happens. */
63
64 static struct cleanup *cleanup_chain;
65
66 /* Nonzero means a quit has been requested. */
67
68 int quit_flag;
69
70 /* Nonzero means quit immediately if Control-C is typed now,
71 rather than waiting until QUIT is executed. */
72
73 int immediate_quit;
74
75 /* Nonzero means that encoded C++ names should be printed out in their
76 C++ form rather than raw. */
77
78 int demangle = 1;
79
80 /* Nonzero means that encoded C++ names should be printed out in their
81 C++ form even in assembler language displays. If this is set, but
82 DEMANGLE is zero, names are printed raw, i.e. DEMANGLE controls. */
83
84 int asm_demangle = 0;
85
86 /* Nonzero means that strings with character values >0x7F should be printed
87 as octal escapes. Zero means just print the value (e.g. it's an
88 international character, and the terminal or window can cope.) */
89
90 int sevenbit_strings = 0;
91
92 /* String to be printed before error messages, if any. */
93
94 char *error_pre_print;
95 char *warning_pre_print = "\nwarning: ";
96 \f
97 /* Add a new cleanup to the cleanup_chain,
98 and return the previous chain pointer
99 to be passed later to do_cleanups or discard_cleanups.
100 Args are FUNCTION to clean up with, and ARG to pass to it. */
101
102 struct cleanup *
103 make_cleanup (function, arg)
104 void (*function) PARAMS ((PTR));
105 PTR arg;
106 {
107 register struct cleanup *new
108 = (struct cleanup *) xmalloc (sizeof (struct cleanup));
109 register struct cleanup *old_chain = cleanup_chain;
110
111 new->next = cleanup_chain;
112 new->function = function;
113 new->arg = arg;
114 cleanup_chain = new;
115
116 return old_chain;
117 }
118
119 /* Discard cleanups and do the actions they describe
120 until we get back to the point OLD_CHAIN in the cleanup_chain. */
121
122 void
123 do_cleanups (old_chain)
124 register struct cleanup *old_chain;
125 {
126 register struct cleanup *ptr;
127 while ((ptr = cleanup_chain) != old_chain)
128 {
129 cleanup_chain = ptr->next; /* Do this first incase recursion */
130 (*ptr->function) (ptr->arg);
131 free (ptr);
132 }
133 }
134
135 /* Discard cleanups, not doing the actions they describe,
136 until we get back to the point OLD_CHAIN in the cleanup_chain. */
137
138 void
139 discard_cleanups (old_chain)
140 register struct cleanup *old_chain;
141 {
142 register struct cleanup *ptr;
143 while ((ptr = cleanup_chain) != old_chain)
144 {
145 cleanup_chain = ptr->next;
146 free ((PTR)ptr);
147 }
148 }
149
150 /* Set the cleanup_chain to 0, and return the old cleanup chain. */
151 struct cleanup *
152 save_cleanups ()
153 {
154 struct cleanup *old_chain = cleanup_chain;
155
156 cleanup_chain = 0;
157 return old_chain;
158 }
159
160 /* Restore the cleanup chain from a previously saved chain. */
161 void
162 restore_cleanups (chain)
163 struct cleanup *chain;
164 {
165 cleanup_chain = chain;
166 }
167
168 /* This function is useful for cleanups.
169 Do
170
171 foo = xmalloc (...);
172 old_chain = make_cleanup (free_current_contents, &foo);
173
174 to arrange to free the object thus allocated. */
175
176 void
177 free_current_contents (location)
178 char **location;
179 {
180 free (*location);
181 }
182
183 /* Provide a known function that does nothing, to use as a base for
184 for a possibly long chain of cleanups. This is useful where we
185 use the cleanup chain for handling normal cleanups as well as dealing
186 with cleanups that need to be done as a result of a call to error().
187 In such cases, we may not be certain where the first cleanup is, unless
188 we have a do-nothing one to always use as the base. */
189
190 /* ARGSUSED */
191 void
192 null_cleanup (arg)
193 char **arg;
194 {
195 }
196
197 \f
198 /* Provide a hook for modules wishing to print their own warning messages
199 to set up the terminal state in a compatible way, without them having
200 to import all the target_<...> macros. */
201
202 void
203 warning_setup ()
204 {
205 target_terminal_ours ();
206 wrap_here(""); /* Force out any buffered output */
207 fflush (stdout);
208 }
209
210 /* Print a warning message.
211 The first argument STRING is the warning message, used as a fprintf string,
212 and the remaining args are passed as arguments to it.
213 The primary difference between warnings and errors is that a warning
214 does not force the return to command level. */
215
216 /* VARARGS */
217 void
218 warning (va_alist)
219 va_dcl
220 {
221 va_list args;
222 char *string;
223
224 va_start (args);
225 target_terminal_ours ();
226 wrap_here(""); /* Force out any buffered output */
227 fflush (stdout);
228 if (warning_pre_print)
229 fprintf (stderr, warning_pre_print);
230 string = va_arg (args, char *);
231 vfprintf (stderr, string, args);
232 fprintf (stderr, "\n");
233 va_end (args);
234 }
235
236 /* Print an error message and return to command level.
237 The first argument STRING is the error message, used as a fprintf string,
238 and the remaining args are passed as arguments to it. */
239
240 /* VARARGS */
241 NORETURN void
242 error (va_alist)
243 va_dcl
244 {
245 va_list args;
246 char *string;
247
248 va_start (args);
249 target_terminal_ours ();
250 wrap_here(""); /* Force out any buffered output */
251 fflush (stdout);
252 if (error_pre_print)
253 fprintf_filtered (stderr, error_pre_print);
254 string = va_arg (args, char *);
255 vfprintf_filtered (stderr, string, args);
256 fprintf_filtered (stderr, "\n");
257 va_end (args);
258 return_to_top_level ();
259 }
260
261 /* Print an error message and exit reporting failure.
262 This is for a error that we cannot continue from.
263 The arguments are printed a la printf.
264
265 This function cannot be declared volatile (NORETURN) in an
266 ANSI environment because exit() is not declared volatile. */
267
268 /* VARARGS */
269 NORETURN void
270 fatal (va_alist)
271 va_dcl
272 {
273 va_list args;
274 char *string;
275
276 va_start (args);
277 string = va_arg (args, char *);
278 fprintf (stderr, "\ngdb: ");
279 vfprintf (stderr, string, args);
280 fprintf (stderr, "\n");
281 va_end (args);
282 exit (1);
283 }
284
285 /* Print an error message and exit, dumping core.
286 The arguments are printed a la printf (). */
287
288 /* VARARGS */
289 static void
290 fatal_dump_core (va_alist)
291 va_dcl
292 {
293 va_list args;
294 char *string;
295
296 va_start (args);
297 string = va_arg (args, char *);
298 /* "internal error" is always correct, since GDB should never dump
299 core, no matter what the input. */
300 fprintf (stderr, "\ngdb internal error: ");
301 vfprintf (stderr, string, args);
302 fprintf (stderr, "\n");
303 va_end (args);
304
305 signal (SIGQUIT, SIG_DFL);
306 kill (getpid (), SIGQUIT);
307 /* We should never get here, but just in case... */
308 exit (1);
309 }
310
311 /* The strerror() function can return NULL for errno values that are
312 out of range. Provide a "safe" version that always returns a
313 printable string. */
314
315 char *
316 safe_strerror (errnum)
317 int errnum;
318 {
319 char *msg;
320 static char buf[32];
321
322 if ((msg = strerror (errnum)) == NULL)
323 {
324 sprintf (buf, "(undocumented errno %d)", errnum);
325 msg = buf;
326 }
327 return (msg);
328 }
329
330 /* The strsignal() function can return NULL for signal values that are
331 out of range. Provide a "safe" version that always returns a
332 printable string. */
333
334 char *
335 safe_strsignal (signo)
336 int signo;
337 {
338 char *msg;
339 static char buf[32];
340
341 if ((msg = strsignal (signo)) == NULL)
342 {
343 sprintf (buf, "(undocumented signal %d)", signo);
344 msg = buf;
345 }
346 return (msg);
347 }
348
349
350 /* Print the system error message for errno, and also mention STRING
351 as the file name for which the error was encountered.
352 Then return to command level. */
353
354 void
355 perror_with_name (string)
356 char *string;
357 {
358 char *err;
359 char *combined;
360
361 err = safe_strerror (errno);
362 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
363 strcpy (combined, string);
364 strcat (combined, ": ");
365 strcat (combined, err);
366
367 /* I understand setting these is a matter of taste. Still, some people
368 may clear errno but not know about bfd_error. Doing this here is not
369 unreasonable. */
370 bfd_error = no_error;
371 errno = 0;
372
373 error ("%s.", combined);
374 }
375
376 /* Print the system error message for ERRCODE, and also mention STRING
377 as the file name for which the error was encountered. */
378
379 void
380 print_sys_errmsg (string, errcode)
381 char *string;
382 int errcode;
383 {
384 char *err;
385 char *combined;
386
387 err = safe_strerror (errcode);
388 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
389 strcpy (combined, string);
390 strcat (combined, ": ");
391 strcat (combined, err);
392
393 fprintf (stderr, "%s.\n", combined);
394 }
395
396 /* Control C eventually causes this to be called, at a convenient time. */
397
398 void
399 quit ()
400 {
401 target_terminal_ours ();
402 wrap_here ((char *)0); /* Force out any pending output */
403 #if !defined(__GO32__)
404 #ifdef HAVE_TERMIO
405 ioctl (fileno (stdout), TCFLSH, 1);
406 #else /* not HAVE_TERMIO */
407 ioctl (fileno (stdout), TIOCFLUSH, 0);
408 #endif /* not HAVE_TERMIO */
409 #ifdef TIOCGPGRP
410 error ("Quit");
411 #else
412 error ("Quit (expect signal %d when inferior is resumed)", SIGINT);
413 #endif /* TIOCGPGRP */
414 #endif
415 }
416
417 /* Control C comes here */
418
419 void
420 request_quit (signo)
421 int signo;
422 {
423 quit_flag = 1;
424
425 #ifdef USG
426 /* Restore the signal handler. */
427 signal (signo, request_quit);
428 #endif
429
430 if (immediate_quit)
431 quit ();
432 }
433
434 \f
435 /* Memory management stuff (malloc friends). */
436
437 #if defined (NO_MMALLOC)
438
439 PTR
440 mmalloc (md, size)
441 PTR md;
442 long size;
443 {
444 return (malloc (size));
445 }
446
447 PTR
448 mrealloc (md, ptr, size)
449 PTR md;
450 PTR ptr;
451 long size;
452 {
453 if (ptr == 0) /* Guard against old realloc's */
454 return malloc (size);
455 else
456 return realloc (ptr, size);
457 }
458
459 void
460 mfree (md, ptr)
461 PTR md;
462 PTR ptr;
463 {
464 free (ptr);
465 }
466
467 #endif /* NO_MMALLOC */
468
469 #if defined (NO_MMALLOC) || defined (NO_MMALLOC_CHECK)
470
471 void
472 init_malloc (md)
473 PTR md;
474 {
475 }
476
477 #else /* have mmalloc and want corruption checking */
478
479 static void
480 malloc_botch ()
481 {
482 fatal_dump_core ("Memory corruption");
483 }
484
485 /* Attempt to install hooks in mmalloc/mrealloc/mfree for the heap specified
486 by MD, to detect memory corruption. Note that MD may be NULL to specify
487 the default heap that grows via sbrk.
488
489 Note that for freshly created regions, we must call mmcheck prior to any
490 mallocs in the region. Otherwise, any region which was allocated prior to
491 installing the checking hooks, which is later reallocated or freed, will
492 fail the checks! The mmcheck function only allows initial hooks to be
493 installed before the first mmalloc. However, anytime after we have called
494 mmcheck the first time to install the checking hooks, we can call it again
495 to update the function pointer to the memory corruption handler.
496
497 Returns zero on failure, non-zero on success. */
498
499 void
500 init_malloc (md)
501 PTR md;
502 {
503 if (!mmcheck (md, malloc_botch))
504 {
505 warning ("internal error: failed to install memory consistency checks");
506 }
507
508 mmtrace ();
509 }
510
511 #endif /* Have mmalloc and want corruption checking */
512
513 /* Called when a memory allocation fails, with the number of bytes of
514 memory requested in SIZE. */
515
516 NORETURN void
517 nomem (size)
518 long size;
519 {
520 if (size > 0)
521 {
522 fatal ("virtual memory exhausted: can't allocate %ld bytes.", size);
523 }
524 else
525 {
526 fatal ("virtual memory exhausted.");
527 }
528 }
529
530 /* Like mmalloc but get error if no storage available, and protect against
531 the caller wanting to allocate zero bytes. Whether to return NULL for
532 a zero byte request, or translate the request into a request for one
533 byte of zero'd storage, is a religious issue. */
534
535 PTR
536 xmmalloc (md, size)
537 PTR md;
538 long size;
539 {
540 register PTR val;
541
542 if (size == 0)
543 {
544 val = NULL;
545 }
546 else if ((val = mmalloc (md, size)) == NULL)
547 {
548 nomem (size);
549 }
550 return (val);
551 }
552
553 /* Like mrealloc but get error if no storage available. */
554
555 PTR
556 xmrealloc (md, ptr, size)
557 PTR md;
558 PTR ptr;
559 long size;
560 {
561 register PTR val;
562
563 if (ptr != NULL)
564 {
565 val = mrealloc (md, ptr, size);
566 }
567 else
568 {
569 val = mmalloc (md, size);
570 }
571 if (val == NULL)
572 {
573 nomem (size);
574 }
575 return (val);
576 }
577
578 /* Like malloc but get error if no storage available, and protect against
579 the caller wanting to allocate zero bytes. */
580
581 PTR
582 xmalloc (size)
583 long size;
584 {
585 return (xmmalloc ((void *) NULL, size));
586 }
587
588 /* Like mrealloc but get error if no storage available. */
589
590 PTR
591 xrealloc (ptr, size)
592 PTR ptr;
593 long size;
594 {
595 return (xmrealloc ((void *) NULL, ptr, size));
596 }
597
598 \f
599 /* My replacement for the read system call.
600 Used like `read' but keeps going if `read' returns too soon. */
601
602 int
603 myread (desc, addr, len)
604 int desc;
605 char *addr;
606 int len;
607 {
608 register int val;
609 int orglen = len;
610
611 while (len > 0)
612 {
613 val = read (desc, addr, len);
614 if (val < 0)
615 return val;
616 if (val == 0)
617 return orglen - len;
618 len -= val;
619 addr += val;
620 }
621 return orglen;
622 }
623 \f
624 /* Make a copy of the string at PTR with SIZE characters
625 (and add a null character at the end in the copy).
626 Uses malloc to get the space. Returns the address of the copy. */
627
628 char *
629 savestring (ptr, size)
630 const char *ptr;
631 int size;
632 {
633 register char *p = (char *) xmalloc (size + 1);
634 memcpy (p, ptr, size);
635 p[size] = 0;
636 return p;
637 }
638
639 char *
640 msavestring (md, ptr, size)
641 void *md;
642 const char *ptr;
643 int size;
644 {
645 register char *p = (char *) xmmalloc (md, size + 1);
646 memcpy (p, ptr, size);
647 p[size] = 0;
648 return p;
649 }
650
651 /* The "const" is so it compiles under DGUX (which prototypes strsave
652 in <string.h>. FIXME: This should be named "xstrsave", shouldn't it?
653 Doesn't real strsave return NULL if out of memory? */
654 char *
655 strsave (ptr)
656 const char *ptr;
657 {
658 return savestring (ptr, strlen (ptr));
659 }
660
661 char *
662 mstrsave (md, ptr)
663 void *md;
664 const char *ptr;
665 {
666 return (msavestring (md, ptr, strlen (ptr)));
667 }
668
669 void
670 print_spaces (n, file)
671 register int n;
672 register FILE *file;
673 {
674 while (n-- > 0)
675 fputc (' ', file);
676 }
677
678 /* Ask user a y-or-n question and return 1 iff answer is yes.
679 Takes three args which are given to printf to print the question.
680 The first, a control string, should end in "? ".
681 It should not say how to answer, because we do that. */
682
683 /* VARARGS */
684 int
685 query (va_alist)
686 va_dcl
687 {
688 va_list args;
689 char *ctlstr;
690 register int answer;
691 register int ans2;
692
693 /* Automatically answer "yes" if input is not from a terminal. */
694 if (!input_from_terminal_p ())
695 return 1;
696
697 while (1)
698 {
699 wrap_here (""); /* Flush any buffered output */
700 fflush (stdout);
701 va_start (args);
702 ctlstr = va_arg (args, char *);
703 vfprintf_filtered (stdout, ctlstr, args);
704 va_end (args);
705 printf_filtered ("(y or n) ");
706 fflush (stdout);
707 answer = fgetc (stdin);
708 clearerr (stdin); /* in case of C-d */
709 if (answer == EOF) /* C-d */
710 return 1;
711 if (answer != '\n') /* Eat rest of input line, to EOF or newline */
712 do
713 {
714 ans2 = fgetc (stdin);
715 clearerr (stdin);
716 }
717 while (ans2 != EOF && ans2 != '\n');
718 if (answer >= 'a')
719 answer -= 040;
720 if (answer == 'Y')
721 return 1;
722 if (answer == 'N')
723 return 0;
724 printf_filtered ("Please answer y or n.\n");
725 }
726 }
727
728 \f
729 /* Parse a C escape sequence. STRING_PTR points to a variable
730 containing a pointer to the string to parse. That pointer
731 should point to the character after the \. That pointer
732 is updated past the characters we use. The value of the
733 escape sequence is returned.
734
735 A negative value means the sequence \ newline was seen,
736 which is supposed to be equivalent to nothing at all.
737
738 If \ is followed by a null character, we return a negative
739 value and leave the string pointer pointing at the null character.
740
741 If \ is followed by 000, we return 0 and leave the string pointer
742 after the zeros. A value of 0 does not mean end of string. */
743
744 int
745 parse_escape (string_ptr)
746 char **string_ptr;
747 {
748 register int c = *(*string_ptr)++;
749 switch (c)
750 {
751 case 'a':
752 return 007; /* Bell (alert) char */
753 case 'b':
754 return '\b';
755 case 'e': /* Escape character */
756 return 033;
757 case 'f':
758 return '\f';
759 case 'n':
760 return '\n';
761 case 'r':
762 return '\r';
763 case 't':
764 return '\t';
765 case 'v':
766 return '\v';
767 case '\n':
768 return -2;
769 case 0:
770 (*string_ptr)--;
771 return 0;
772 case '^':
773 c = *(*string_ptr)++;
774 if (c == '\\')
775 c = parse_escape (string_ptr);
776 if (c == '?')
777 return 0177;
778 return (c & 0200) | (c & 037);
779
780 case '0':
781 case '1':
782 case '2':
783 case '3':
784 case '4':
785 case '5':
786 case '6':
787 case '7':
788 {
789 register int i = c - '0';
790 register int count = 0;
791 while (++count < 3)
792 {
793 if ((c = *(*string_ptr)++) >= '0' && c <= '7')
794 {
795 i *= 8;
796 i += c - '0';
797 }
798 else
799 {
800 (*string_ptr)--;
801 break;
802 }
803 }
804 return i;
805 }
806 default:
807 return c;
808 }
809 }
810 \f
811 /* Print the character C on STREAM as part of the contents
812 of a literal string whose delimiter is QUOTER. */
813
814 void
815 printchar (c, stream, quoter)
816 register int c;
817 FILE *stream;
818 int quoter;
819 {
820
821 c &= 0xFF; /* Avoid sign bit follies */
822
823 if ( c < 0x20 || /* Low control chars */
824 (c >= 0x7F && c < 0xA0) || /* DEL, High controls */
825 (sevenbit_strings && c >= 0x80)) { /* high order bit set */
826 switch (c)
827 {
828 case '\n':
829 fputs_filtered ("\\n", stream);
830 break;
831 case '\b':
832 fputs_filtered ("\\b", stream);
833 break;
834 case '\t':
835 fputs_filtered ("\\t", stream);
836 break;
837 case '\f':
838 fputs_filtered ("\\f", stream);
839 break;
840 case '\r':
841 fputs_filtered ("\\r", stream);
842 break;
843 case '\033':
844 fputs_filtered ("\\e", stream);
845 break;
846 case '\007':
847 fputs_filtered ("\\a", stream);
848 break;
849 default:
850 fprintf_filtered (stream, "\\%.3o", (unsigned int) c);
851 break;
852 }
853 } else {
854 if (c == '\\' || c == quoter)
855 fputs_filtered ("\\", stream);
856 fprintf_filtered (stream, "%c", c);
857 }
858 }
859 \f
860 /* Number of lines per page or UINT_MAX if paging is disabled. */
861 static unsigned int lines_per_page;
862 /* Number of chars per line or UNIT_MAX is line folding is disabled. */
863 static unsigned int chars_per_line;
864 /* Current count of lines printed on this page, chars on this line. */
865 static unsigned int lines_printed, chars_printed;
866
867 /* Buffer and start column of buffered text, for doing smarter word-
868 wrapping. When someone calls wrap_here(), we start buffering output
869 that comes through fputs_filtered(). If we see a newline, we just
870 spit it out and forget about the wrap_here(). If we see another
871 wrap_here(), we spit it out and remember the newer one. If we see
872 the end of the line, we spit out a newline, the indent, and then
873 the buffered output.
874
875 wrap_column is the column number on the screen where wrap_buffer begins.
876 When wrap_column is zero, wrapping is not in effect.
877 wrap_buffer is malloc'd with chars_per_line+2 bytes.
878 When wrap_buffer[0] is null, the buffer is empty.
879 wrap_pointer points into it at the next character to fill.
880 wrap_indent is the string that should be used as indentation if the
881 wrap occurs. */
882
883 static char *wrap_buffer, *wrap_pointer, *wrap_indent;
884 static int wrap_column;
885
886 /* ARGSUSED */
887 static void
888 set_width_command (args, from_tty, c)
889 char *args;
890 int from_tty;
891 struct cmd_list_element *c;
892 {
893 if (!wrap_buffer)
894 {
895 wrap_buffer = (char *) xmalloc (chars_per_line + 2);
896 wrap_buffer[0] = '\0';
897 }
898 else
899 wrap_buffer = (char *) xrealloc (wrap_buffer, chars_per_line + 2);
900 wrap_pointer = wrap_buffer; /* Start it at the beginning */
901 }
902
903 /* Wait, so the user can read what's on the screen. Prompt the user
904 to continue by pressing RETURN. */
905
906 static void
907 prompt_for_continue ()
908 {
909 char *ignore;
910
911 /* We must do this *before* we call gdb_readline, else it will eventually
912 call us -- thinking that we're trying to print beyond the end of the
913 screen. */
914 reinitialize_more_filter ();
915
916 immediate_quit++;
917 ignore = gdb_readline ("---Type <return> to continue---");
918 if (ignore)
919 free (ignore);
920 immediate_quit--;
921
922 /* Now we have to do this again, so that GDB will know that it doesn't
923 need to save the ---Type <return>--- line at the top of the screen. */
924 reinitialize_more_filter ();
925
926 dont_repeat (); /* Forget prev cmd -- CR won't repeat it. */
927 }
928
929 /* Reinitialize filter; ie. tell it to reset to original values. */
930
931 void
932 reinitialize_more_filter ()
933 {
934 lines_printed = 0;
935 chars_printed = 0;
936 }
937
938 /* Indicate that if the next sequence of characters overflows the line,
939 a newline should be inserted here rather than when it hits the end.
940 If INDENT is nonzero, it is a string to be printed to indent the
941 wrapped part on the next line. INDENT must remain accessible until
942 the next call to wrap_here() or until a newline is printed through
943 fputs_filtered().
944
945 If the line is already overfull, we immediately print a newline and
946 the indentation, and disable further wrapping.
947
948 If we don't know the width of lines, but we know the page height,
949 we must not wrap words, but should still keep track of newlines
950 that were explicitly printed.
951
952 INDENT should not contain tabs, as that
953 will mess up the char count on the next line. FIXME. */
954
955 void
956 wrap_here(indent)
957 char *indent;
958 {
959 if (wrap_buffer[0])
960 {
961 *wrap_pointer = '\0';
962 fputs (wrap_buffer, stdout);
963 }
964 wrap_pointer = wrap_buffer;
965 wrap_buffer[0] = '\0';
966 if (chars_per_line == UINT_MAX) /* No line overflow checking */
967 {
968 wrap_column = 0;
969 }
970 else if (chars_printed >= chars_per_line)
971 {
972 puts_filtered ("\n");
973 puts_filtered (indent);
974 wrap_column = 0;
975 }
976 else
977 {
978 wrap_column = chars_printed;
979 wrap_indent = indent;
980 }
981 }
982
983 /* Like fputs but pause after every screenful, and can wrap at points
984 other than the final character of a line.
985 Unlike fputs, fputs_filtered does not return a value.
986 It is OK for LINEBUFFER to be NULL, in which case just don't print
987 anything.
988
989 Note that a longjmp to top level may occur in this routine
990 (since prompt_for_continue may do so) so this routine should not be
991 called when cleanups are not in place. */
992
993 void
994 fputs_filtered (linebuffer, stream)
995 const char *linebuffer;
996 FILE *stream;
997 {
998 const char *lineptr;
999
1000 if (linebuffer == 0)
1001 return;
1002
1003 /* Don't do any filtering if it is disabled. */
1004 if (stream != stdout
1005 || (lines_per_page == UINT_MAX && chars_per_line == UINT_MAX))
1006 {
1007 fputs (linebuffer, stream);
1008 return;
1009 }
1010
1011 /* Go through and output each character. Show line extension
1012 when this is necessary; prompt user for new page when this is
1013 necessary. */
1014
1015 lineptr = linebuffer;
1016 while (*lineptr)
1017 {
1018 /* Possible new page. */
1019 if (lines_printed >= lines_per_page - 1)
1020 prompt_for_continue ();
1021
1022 while (*lineptr && *lineptr != '\n')
1023 {
1024 /* Print a single line. */
1025 if (*lineptr == '\t')
1026 {
1027 if (wrap_column)
1028 *wrap_pointer++ = '\t';
1029 else
1030 putc ('\t', stream);
1031 /* Shifting right by 3 produces the number of tab stops
1032 we have already passed, and then adding one and
1033 shifting left 3 advances to the next tab stop. */
1034 chars_printed = ((chars_printed >> 3) + 1) << 3;
1035 lineptr++;
1036 }
1037 else
1038 {
1039 if (wrap_column)
1040 *wrap_pointer++ = *lineptr;
1041 else
1042 putc (*lineptr, stream);
1043 chars_printed++;
1044 lineptr++;
1045 }
1046
1047 if (chars_printed >= chars_per_line)
1048 {
1049 unsigned int save_chars = chars_printed;
1050
1051 chars_printed = 0;
1052 lines_printed++;
1053 /* If we aren't actually wrapping, don't output newline --
1054 if chars_per_line is right, we probably just overflowed
1055 anyway; if it's wrong, let us keep going. */
1056 if (wrap_column)
1057 putc ('\n', stream);
1058
1059 /* Possible new page. */
1060 if (lines_printed >= lines_per_page - 1)
1061 prompt_for_continue ();
1062
1063 /* Now output indentation and wrapped string */
1064 if (wrap_column)
1065 {
1066 if (wrap_indent)
1067 fputs (wrap_indent, stream);
1068 *wrap_pointer = '\0'; /* Null-terminate saved stuff */
1069 fputs (wrap_buffer, stream); /* and eject it */
1070 /* FIXME, this strlen is what prevents wrap_indent from
1071 containing tabs. However, if we recurse to print it
1072 and count its chars, we risk trouble if wrap_indent is
1073 longer than (the user settable) chars_per_line.
1074 Note also that this can set chars_printed > chars_per_line
1075 if we are printing a long string. */
1076 chars_printed = strlen (wrap_indent)
1077 + (save_chars - wrap_column);
1078 wrap_pointer = wrap_buffer; /* Reset buffer */
1079 wrap_buffer[0] = '\0';
1080 wrap_column = 0; /* And disable fancy wrap */
1081 }
1082 }
1083 }
1084
1085 if (*lineptr == '\n')
1086 {
1087 chars_printed = 0;
1088 wrap_here ((char *)0); /* Spit out chars, cancel further wraps */
1089 lines_printed++;
1090 putc ('\n', stream);
1091 lineptr++;
1092 }
1093 }
1094 }
1095
1096
1097 /* fputs_demangled is a variant of fputs_filtered that
1098 demangles g++ names.*/
1099
1100 void
1101 fputs_demangled (linebuffer, stream, arg_mode)
1102 char *linebuffer;
1103 FILE *stream;
1104 int arg_mode;
1105 {
1106 #define SYMBOL_MAX 1024
1107
1108 #define SYMBOL_CHAR(c) (isascii(c) \
1109 && (isalnum(c) || (c) == '_' || (c) == CPLUS_MARKER))
1110
1111 char buf[SYMBOL_MAX+1];
1112 # define DMSLOP 5 /* How much room to leave in buf */
1113 char *p;
1114
1115 if (linebuffer == NULL)
1116 return;
1117
1118 /* If user wants to see raw output, no problem. */
1119 if (!demangle) {
1120 fputs_filtered (linebuffer, stream);
1121 return;
1122 }
1123
1124 p = linebuffer;
1125
1126 while ( *p != (char) 0 ) {
1127 int i = 0;
1128
1129 /* collect non-interesting characters into buf */
1130 while (*p != (char) 0 && !SYMBOL_CHAR(*p) && i < (int)sizeof(buf)-DMSLOP ) {
1131 buf[i++] = *p;
1132 p++;
1133 }
1134 if (i > 0) {
1135 /* output the non-interesting characters without demangling */
1136 buf[i] = (char) 0;
1137 fputs_filtered(buf, stream);
1138 i = 0; /* reset buf */
1139 }
1140
1141 /* and now the interesting characters */
1142 while (i < SYMBOL_MAX
1143 && *p != (char) 0
1144 && SYMBOL_CHAR(*p)
1145 && i < (int)sizeof(buf) - DMSLOP) {
1146 buf[i++] = *p;
1147 p++;
1148 }
1149 buf[i] = (char) 0;
1150 if (i > 0) {
1151 char * result;
1152
1153 if ( (result = cplus_demangle(buf, arg_mode)) != NULL ) {
1154 fputs_filtered(result, stream);
1155 free(result);
1156 }
1157 else {
1158 fputs_filtered(buf, stream);
1159 }
1160 }
1161 }
1162 }
1163
1164 /* Print a variable number of ARGS using format FORMAT. If this
1165 information is going to put the amount written (since the last call
1166 to REINITIALIZE_MORE_FILTER or the last page break) over the page size,
1167 print out a pause message and do a gdb_readline to get the users
1168 permision to continue.
1169
1170 Unlike fprintf, this function does not return a value.
1171
1172 We implement three variants, vfprintf (takes a vararg list and stream),
1173 fprintf (takes a stream to write on), and printf (the usual).
1174
1175 Note that this routine has a restriction that the length of the
1176 final output line must be less than 255 characters *or* it must be
1177 less than twice the size of the format string. This is a very
1178 arbitrary restriction, but it is an internal restriction, so I'll
1179 put it in. This means that the %s format specifier is almost
1180 useless; unless the caller can GUARANTEE that the string is short
1181 enough, fputs_filtered should be used instead.
1182
1183 Note also that a longjmp to top level may occur in this routine
1184 (since prompt_for_continue may do so) so this routine should not be
1185 called when cleanups are not in place. */
1186
1187 #define MIN_LINEBUF 255
1188
1189 void
1190 vfprintf_filtered (stream, format, args)
1191 FILE *stream;
1192 char *format;
1193 va_list args;
1194 {
1195 char line_buf[MIN_LINEBUF+10];
1196 char *linebuffer = line_buf;
1197 int format_length;
1198
1199 format_length = strlen (format);
1200
1201 /* Reallocate buffer to a larger size if this is necessary. */
1202 if (format_length * 2 > MIN_LINEBUF)
1203 {
1204 linebuffer = alloca (10 + format_length * 2);
1205 }
1206
1207 /* This won't blow up if the restrictions described above are
1208 followed. */
1209 vsprintf (linebuffer, format, args);
1210
1211 fputs_filtered (linebuffer, stream);
1212 }
1213
1214 /* VARARGS */
1215 void
1216 fprintf_filtered (va_alist)
1217 va_dcl
1218 {
1219 va_list args;
1220 FILE *stream;
1221 char *format;
1222
1223 va_start (args);
1224 stream = va_arg (args, FILE *);
1225 format = va_arg (args, char *);
1226
1227 /* This won't blow up if the restrictions described above are
1228 followed. */
1229 vfprintf_filtered (stream, format, args);
1230 va_end (args);
1231 }
1232
1233 /* Like fprintf_filtered, but prints it's result indent.
1234 Called as fprintfi_filtered (spaces, format, arg1, arg2, ...); */
1235
1236 /* VARARGS */
1237 void
1238 fprintfi_filtered (va_alist)
1239 va_dcl
1240 {
1241 va_list args;
1242 int spaces;
1243 FILE *stream;
1244 char *format;
1245
1246 va_start (args);
1247 spaces = va_arg (args, int);
1248 stream = va_arg (args, FILE *);
1249 format = va_arg (args, char *);
1250 print_spaces_filtered (spaces, stream);
1251
1252 /* This won't blow up if the restrictions described above are
1253 followed. */
1254 vfprintf_filtered (stream, format, args);
1255 va_end (args);
1256 }
1257
1258 /* VARARGS */
1259 void
1260 printf_filtered (va_alist)
1261 va_dcl
1262 {
1263 va_list args;
1264 char *format;
1265
1266 va_start (args);
1267 format = va_arg (args, char *);
1268
1269 vfprintf_filtered (stdout, format, args);
1270 va_end (args);
1271 }
1272
1273 /* Like printf_filtered, but prints it's result indented.
1274 Called as printfi_filtered (spaces, format, arg1, arg2, ...); */
1275
1276 /* VARARGS */
1277 void
1278 printfi_filtered (va_alist)
1279 va_dcl
1280 {
1281 va_list args;
1282 int spaces;
1283 char *format;
1284
1285 va_start (args);
1286 spaces = va_arg (args, int);
1287 format = va_arg (args, char *);
1288 print_spaces_filtered (spaces, stdout);
1289 vfprintf_filtered (stdout, format, args);
1290 va_end (args);
1291 }
1292
1293 /* Easy */
1294
1295 void
1296 puts_filtered (string)
1297 char *string;
1298 {
1299 fputs_filtered (string, stdout);
1300 }
1301
1302 /* Return a pointer to N spaces and a null. The pointer is good
1303 until the next call to here. */
1304 char *
1305 n_spaces (n)
1306 int n;
1307 {
1308 register char *t;
1309 static char *spaces;
1310 static int max_spaces;
1311
1312 if (n > max_spaces)
1313 {
1314 if (spaces)
1315 free (spaces);
1316 spaces = (char *) xmalloc (n+1);
1317 for (t = spaces+n; t != spaces;)
1318 *--t = ' ';
1319 spaces[n] = '\0';
1320 max_spaces = n;
1321 }
1322
1323 return spaces + max_spaces - n;
1324 }
1325
1326 /* Print N spaces. */
1327 void
1328 print_spaces_filtered (n, stream)
1329 int n;
1330 FILE *stream;
1331 {
1332 fputs_filtered (n_spaces (n), stream);
1333 }
1334 \f
1335 /* C++ demangler stuff. */
1336
1337 /* Make a copy of a symbol, applying C++ demangling if demangling is enabled
1338 and a demangled version exists. Note that the value returned from
1339 cplus_demangle is already allocated in malloc'd memory. */
1340
1341 char *
1342 strdup_demangled (name)
1343 const char *name;
1344 {
1345 char *demangled = NULL;
1346
1347 if (demangle)
1348 {
1349 demangled = cplus_demangle (name, DMGL_PARAMS | DMGL_ANSI);
1350 }
1351 return ((demangled != NULL) ? demangled : strdup (name));
1352 }
1353
1354
1355 /* Print NAME on STREAM, demangling if necessary. */
1356 void
1357 fprint_symbol (stream, name)
1358 FILE *stream;
1359 char *name;
1360 {
1361 char *demangled;
1362 if ((!demangle)
1363 || NULL == (demangled = cplus_demangle (name, DMGL_PARAMS | DMGL_ANSI)))
1364 fputs_filtered (name, stream);
1365 else
1366 {
1367 fputs_filtered (demangled, stream);
1368 free (demangled);
1369 }
1370 }
1371
1372 /* Do a strcmp() type operation on STRING1 and STRING2, ignoring any
1373 differences in whitespace. Returns 0 if they match, non-zero if they
1374 don't (slightly different than strcmp()'s range of return values).
1375
1376 As an extra hack, string1=="FOO(ARGS)" matches string2=="FOO".
1377 This "feature" is useful for demangle_and_match(), which is used
1378 when searching for matching C++ function names (such as if the
1379 user types 'break FOO', where FOO is a mangled C++ function). */
1380
1381 static int
1382 strcmp_iw (string1, string2)
1383 const char *string1;
1384 const char *string2;
1385 {
1386 while ((*string1 != '\0') && (*string2 != '\0'))
1387 {
1388 while (isspace (*string1))
1389 {
1390 string1++;
1391 }
1392 while (isspace (*string2))
1393 {
1394 string2++;
1395 }
1396 if (*string1 != *string2)
1397 {
1398 break;
1399 }
1400 if (*string1 != '\0')
1401 {
1402 string1++;
1403 string2++;
1404 }
1405 }
1406 return (*string1 != '\0' && *string1 != '(') || (*string2 != '\0');
1407 }
1408
1409 /* Demangle NAME and compare the result with LOOKFOR, ignoring any differences
1410 in whitespace.
1411
1412 If a match is found, returns a pointer to the demangled version of NAME
1413 in malloc'd memory, which needs to be freed by the caller after use.
1414 If a match is not found, returns NULL.
1415
1416 OPTIONS is a flags word that controls the demangling process and is just
1417 passed on to the demangler.
1418
1419 When the caller sees a non-NULL result, it knows that NAME is the mangled
1420 equivalent of LOOKFOR, and it can use either NAME, the "official demangled"
1421 version of NAME (the return value) or the "unofficial demangled" version
1422 of NAME (LOOKFOR, which it already knows). */
1423
1424 char *
1425 demangle_and_match (name, lookfor, options)
1426 const char *name;
1427 const char *lookfor;
1428 int options;
1429 {
1430 char *demangled;
1431
1432 if ((demangled = cplus_demangle (name, options)) != NULL)
1433 {
1434 if (strcmp_iw (demangled, lookfor) != 0)
1435 {
1436 free (demangled);
1437 demangled = NULL;
1438 }
1439 }
1440 return (demangled);
1441 }
1442
1443 \f
1444 void
1445 _initialize_utils ()
1446 {
1447 struct cmd_list_element *c;
1448
1449 c = add_set_cmd ("width", class_support, var_uinteger,
1450 (char *)&chars_per_line,
1451 "Set number of characters gdb thinks are in a line.",
1452 &setlist);
1453 add_show_from_set (c, &showlist);
1454 c->function.sfunc = set_width_command;
1455
1456 add_show_from_set
1457 (add_set_cmd ("height", class_support,
1458 var_uinteger, (char *)&lines_per_page,
1459 "Set number of lines gdb thinks are in a page.", &setlist),
1460 &showlist);
1461
1462 /* These defaults will be used if we are unable to get the correct
1463 values from termcap. */
1464 #if defined(__GO32__)
1465 lines_per_page = ScreenRows();
1466 chars_per_line = ScreenCols();
1467 #else
1468 lines_per_page = 24;
1469 chars_per_line = 80;
1470 /* Initialize the screen height and width from termcap. */
1471 {
1472 char *termtype = getenv ("TERM");
1473
1474 /* Positive means success, nonpositive means failure. */
1475 int status;
1476
1477 /* 2048 is large enough for all known terminals, according to the
1478 GNU termcap manual. */
1479 char term_buffer[2048];
1480
1481 if (termtype)
1482 {
1483 status = tgetent (term_buffer, termtype);
1484 if (status > 0)
1485 {
1486 int val;
1487
1488 val = tgetnum ("li");
1489 if (val >= 0)
1490 lines_per_page = val;
1491 else
1492 /* The number of lines per page is not mentioned
1493 in the terminal description. This probably means
1494 that paging is not useful (e.g. emacs shell window),
1495 so disable paging. */
1496 lines_per_page = UINT_MAX;
1497
1498 val = tgetnum ("co");
1499 if (val >= 0)
1500 chars_per_line = val;
1501 }
1502 }
1503 }
1504
1505 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1506
1507 /* If there is a better way to determine the window size, use it. */
1508 SIGWINCH_HANDLER ();
1509 #endif
1510 #endif
1511 /* If the output is not a terminal, don't paginate it. */
1512 if (!ISATTY (stdout))
1513 lines_per_page = UINT_MAX;
1514
1515 set_width_command ((char *)NULL, 0, c);
1516
1517 add_show_from_set
1518 (add_set_cmd ("demangle", class_support, var_boolean,
1519 (char *)&demangle,
1520 "Set demangling of encoded C++ names when displaying symbols.",
1521 &setprintlist),
1522 &showprintlist);
1523
1524 add_show_from_set
1525 (add_set_cmd ("sevenbit-strings", class_support, var_boolean,
1526 (char *)&sevenbit_strings,
1527 "Set printing of 8-bit characters in strings as \\nnn.",
1528 &setprintlist),
1529 &showprintlist);
1530
1531 add_show_from_set
1532 (add_set_cmd ("asm-demangle", class_support, var_boolean,
1533 (char *)&asm_demangle,
1534 "Set demangling of C++ names in disassembly listings.",
1535 &setprintlist),
1536 &showprintlist);
1537 }
1538
1539 /* Machine specific function to handle SIGWINCH signal. */
1540
1541 #ifdef SIGWINCH_HANDLER_BODY
1542 SIGWINCH_HANDLER_BODY
1543 #endif
This page took 0.06019 seconds and 4 git commands to generate.