1 /* General utility routines for GDB, the GNU debugger.
2 Copyright 1986, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
4 This file is part of GDB.
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.
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.
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. */
21 #if !defined(__GO32__)
22 #include <sys/ioctl.h>
23 #include <sys/param.h>
36 #include "expression.h"
42 /* readline defines this. */
45 /* Prototypes for local functions */
47 #if defined (NO_MMALLOC) || defined (NO_MMALLOC_CHECK)
51 malloc_botch PARAMS ((void));
53 #endif /* NO_MMALLOC, etc */
56 fatal_dump_core (); /* Can't prototype with <varargs.h> usage... */
59 prompt_for_continue PARAMS ((void));
62 set_width_command PARAMS ((char *, int, struct cmd_list_element *));
64 /* If this definition isn't overridden by the header files, assume
65 that isatty and fileno exist on this system. */
67 #define ISATTY(FP) (isatty (fileno (FP)))
70 /* Chain of cleanup actions established with make_cleanup,
71 to be executed if an error happens. */
73 static struct cleanup *cleanup_chain;
75 /* Nonzero if we have job control. */
79 /* Nonzero means a quit has been requested. */
83 /* Nonzero means quit immediately if Control-C is typed now, rather
84 than waiting until QUIT is executed. Be careful in setting this;
85 code which executes with immediate_quit set has to be very careful
86 about being able to deal with being interrupted at any time. It is
87 almost always better to use QUIT; the only exception I can think of
88 is being able to quit out of a system call (using EINTR loses if
89 the SIGINT happens between the previous QUIT and the system call).
90 To immediately quit in the case in which a SIGINT happens between
91 the previous QUIT and setting immediate_quit (desirable anytime we
92 expect to block), call QUIT after setting immediate_quit. */
96 /* Nonzero means that encoded C++ names should be printed out in their
97 C++ form rather than raw. */
101 /* Nonzero means that encoded C++ names should be printed out in their
102 C++ form even in assembler language displays. If this is set, but
103 DEMANGLE is zero, names are printed raw, i.e. DEMANGLE controls. */
105 int asm_demangle = 0;
107 /* Nonzero means that strings with character values >0x7F should be printed
108 as octal escapes. Zero means just print the value (e.g. it's an
109 international character, and the terminal or window can cope.) */
111 int sevenbit_strings = 0;
113 /* String to be printed before error messages, if any. */
115 char *error_pre_print;
116 char *warning_pre_print = "\nwarning: ";
118 /* Add a new cleanup to the cleanup_chain,
119 and return the previous chain pointer
120 to be passed later to do_cleanups or discard_cleanups.
121 Args are FUNCTION to clean up with, and ARG to pass to it. */
124 make_cleanup (function, arg)
125 void (*function) PARAMS ((PTR));
128 register struct cleanup *new
129 = (struct cleanup *) xmalloc (sizeof (struct cleanup));
130 register struct cleanup *old_chain = cleanup_chain;
132 new->next = cleanup_chain;
133 new->function = function;
140 /* Discard cleanups and do the actions they describe
141 until we get back to the point OLD_CHAIN in the cleanup_chain. */
144 do_cleanups (old_chain)
145 register struct cleanup *old_chain;
147 register struct cleanup *ptr;
148 while ((ptr = cleanup_chain) != old_chain)
150 cleanup_chain = ptr->next; /* Do this first incase recursion */
151 (*ptr->function) (ptr->arg);
156 /* Discard cleanups, not doing the actions they describe,
157 until we get back to the point OLD_CHAIN in the cleanup_chain. */
160 discard_cleanups (old_chain)
161 register struct cleanup *old_chain;
163 register struct cleanup *ptr;
164 while ((ptr = cleanup_chain) != old_chain)
166 cleanup_chain = ptr->next;
171 /* Set the cleanup_chain to 0, and return the old cleanup chain. */
175 struct cleanup *old_chain = cleanup_chain;
181 /* Restore the cleanup chain from a previously saved chain. */
183 restore_cleanups (chain)
184 struct cleanup *chain;
186 cleanup_chain = chain;
189 /* This function is useful for cleanups.
193 old_chain = make_cleanup (free_current_contents, &foo);
195 to arrange to free the object thus allocated. */
198 free_current_contents (location)
204 /* Provide a known function that does nothing, to use as a base for
205 for a possibly long chain of cleanups. This is useful where we
206 use the cleanup chain for handling normal cleanups as well as dealing
207 with cleanups that need to be done as a result of a call to error().
208 In such cases, we may not be certain where the first cleanup is, unless
209 we have a do-nothing one to always use as the base. */
219 /* Provide a hook for modules wishing to print their own warning messages
220 to set up the terminal state in a compatible way, without them having
221 to import all the target_<...> macros. */
226 target_terminal_ours ();
227 wrap_here(""); /* Force out any buffered output */
228 gdb_flush (gdb_stdout);
231 /* Print a warning message.
232 The first argument STRING is the warning message, used as a fprintf string,
233 and the remaining args are passed as arguments to it.
234 The primary difference between warnings and errors is that a warning
235 does not force the return to command level. */
246 target_terminal_ours ();
247 wrap_here(""); /* Force out any buffered output */
248 gdb_flush (gdb_stdout);
249 if (warning_pre_print)
250 fprintf_unfiltered (gdb_stderr, warning_pre_print);
251 string = va_arg (args, char *);
252 vfprintf_unfiltered (gdb_stderr, string, args);
253 fprintf_unfiltered (gdb_stderr, "\n");
257 /* Start the printing of an error message. Way to use this is to call
258 this, output the error message (use filtered output), and then call
259 return_to_top_level (RETURN_ERROR). error() provides a convenient way to
260 do this for the special case that the error message can be formatted with
261 a single printf call, but this is more general. */
265 target_terminal_ours ();
266 wrap_here (""); /* Force out any buffered output */
267 gdb_flush (gdb_stdout);
269 annotate_error_begin ();
272 fprintf_filtered (gdb_stderr, error_pre_print);
275 /* Print an error message and return to command level.
276 The first argument STRING is the error message, used as a fprintf string,
277 and the remaining args are passed as arguments to it. */
289 string = va_arg (args, char *);
290 vfprintf_filtered (gdb_stderr, string, args);
291 fprintf_filtered (gdb_stderr, "\n");
293 return_to_top_level (RETURN_ERROR);
296 /* Print an error message and exit reporting failure.
297 This is for a error that we cannot continue from.
298 The arguments are printed a la printf.
300 This function cannot be declared volatile (NORETURN) in an
301 ANSI environment because exit() is not declared volatile. */
312 string = va_arg (args, char *);
313 fprintf_unfiltered (gdb_stderr, "\ngdb: ");
314 vfprintf_unfiltered (gdb_stderr, string, args);
315 fprintf_unfiltered (gdb_stderr, "\n");
320 /* Print an error message and exit, dumping core.
321 The arguments are printed a la printf (). */
325 fatal_dump_core (va_alist)
332 string = va_arg (args, char *);
333 /* "internal error" is always correct, since GDB should never dump
334 core, no matter what the input. */
335 fprintf_unfiltered (gdb_stderr, "\ngdb internal error: ");
336 vfprintf_unfiltered (gdb_stderr, string, args);
337 fprintf_unfiltered (gdb_stderr, "\n");
340 signal (SIGQUIT, SIG_DFL);
341 kill (getpid (), SIGQUIT);
342 /* We should never get here, but just in case... */
346 /* The strerror() function can return NULL for errno values that are
347 out of range. Provide a "safe" version that always returns a
351 safe_strerror (errnum)
357 if ((msg = strerror (errnum)) == NULL)
359 sprintf (buf, "(undocumented errno %d)", errnum);
365 /* The strsignal() function can return NULL for signal values that are
366 out of range. Provide a "safe" version that always returns a
370 safe_strsignal (signo)
376 if ((msg = strsignal (signo)) == NULL)
378 sprintf (buf, "(undocumented signal %d)", signo);
385 /* Print the system error message for errno, and also mention STRING
386 as the file name for which the error was encountered.
387 Then return to command level. */
390 perror_with_name (string)
396 err = safe_strerror (errno);
397 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
398 strcpy (combined, string);
399 strcat (combined, ": ");
400 strcat (combined, err);
402 /* I understand setting these is a matter of taste. Still, some people
403 may clear errno but not know about bfd_error. Doing this here is not
405 bfd_set_error (bfd_error_no_error);
408 error ("%s.", combined);
411 /* Print the system error message for ERRCODE, and also mention STRING
412 as the file name for which the error was encountered. */
415 print_sys_errmsg (string, errcode)
422 err = safe_strerror (errcode);
423 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
424 strcpy (combined, string);
425 strcat (combined, ": ");
426 strcat (combined, err);
428 /* We want anything which was printed on stdout to come out first, before
430 gdb_flush (gdb_stdout);
431 fprintf_unfiltered (gdb_stderr, "%s.\n", combined);
434 /* Control C eventually causes this to be called, at a convenient time. */
439 serial_t gdb_stdout_serial = serial_fdopen (1);
441 target_terminal_ours ();
443 /* We want all output to appear now, before we print "Quit". We
444 have 3 levels of buffering we have to flush (it's possible that
445 some of these should be changed to flush the lower-level ones
448 /* 1. The _filtered buffer. */
449 wrap_here ((char *)0);
451 /* 2. The stdio buffer. */
452 gdb_flush (gdb_stdout);
453 gdb_flush (gdb_stderr);
455 /* 3. The system-level buffer. */
456 SERIAL_FLUSH_OUTPUT (gdb_stdout_serial);
457 SERIAL_UN_FDOPEN (gdb_stdout_serial);
459 annotate_error_begin ();
461 /* Don't use *_filtered; we don't want to prompt the user to continue. */
463 fprintf_unfiltered (gdb_stderr, error_pre_print);
466 /* If there is no terminal switching for this target, then we can't
467 possibly get screwed by the lack of job control. */
468 || current_target.to_terminal_ours == NULL)
469 fprintf_unfiltered (gdb_stderr, "Quit\n");
471 fprintf_unfiltered (gdb_stderr,
472 "Quit (expect signal SIGINT when the program is resumed)\n");
473 return_to_top_level (RETURN_QUIT);
479 /* In the absence of signals, poll keyboard for a quit.
480 Called from #define QUIT pollquit() in xm-go32.h. */
498 /* We just ignore it */
499 fprintf_unfiltered (gdb_stderr, "CTRL-A to quit, CTRL-B to quit harder\n");
521 fprintf_unfiltered (gdb_stderr, "CTRL-A to quit, CTRL-B to quit harder\n");
528 /* Done by signals */
531 /* Control C comes here */
539 /* Restore the signal handler. Harmless with BSD-style signals, needed
540 for System V-style signals. So just always do it, rather than worrying
541 about USG defines and stuff like that. */
542 signal (signo, request_quit);
553 /* Memory management stuff (malloc friends). */
555 #if defined (NO_MMALLOC)
562 return (malloc (size));
566 mrealloc (md, ptr, size)
571 if (ptr == 0) /* Guard against old realloc's */
572 return malloc (size);
574 return realloc (ptr, size);
585 #endif /* NO_MMALLOC */
587 #if defined (NO_MMALLOC) || defined (NO_MMALLOC_CHECK)
595 #else /* have mmalloc and want corruption checking */
600 fatal_dump_core ("Memory corruption");
603 /* Attempt to install hooks in mmalloc/mrealloc/mfree for the heap specified
604 by MD, to detect memory corruption. Note that MD may be NULL to specify
605 the default heap that grows via sbrk.
607 Note that for freshly created regions, we must call mmcheck prior to any
608 mallocs in the region. Otherwise, any region which was allocated prior to
609 installing the checking hooks, which is later reallocated or freed, will
610 fail the checks! The mmcheck function only allows initial hooks to be
611 installed before the first mmalloc. However, anytime after we have called
612 mmcheck the first time to install the checking hooks, we can call it again
613 to update the function pointer to the memory corruption handler.
615 Returns zero on failure, non-zero on success. */
621 if (!mmcheck (md, malloc_botch))
623 warning ("internal error: failed to install memory consistency checks");
629 #endif /* Have mmalloc and want corruption checking */
631 /* Called when a memory allocation fails, with the number of bytes of
632 memory requested in SIZE. */
640 fatal ("virtual memory exhausted: can't allocate %ld bytes.", size);
644 fatal ("virtual memory exhausted.");
648 /* Like mmalloc but get error if no storage available, and protect against
649 the caller wanting to allocate zero bytes. Whether to return NULL for
650 a zero byte request, or translate the request into a request for one
651 byte of zero'd storage, is a religious issue. */
664 else if ((val = mmalloc (md, size)) == NULL)
671 /* Like mrealloc but get error if no storage available. */
674 xmrealloc (md, ptr, size)
683 val = mrealloc (md, ptr, size);
687 val = mmalloc (md, size);
696 /* Like malloc but get error if no storage available, and protect against
697 the caller wanting to allocate zero bytes. */
703 return (xmmalloc ((PTR) NULL, size));
706 /* Like mrealloc but get error if no storage available. */
713 return (xmrealloc ((PTR) NULL, ptr, size));
717 /* My replacement for the read system call.
718 Used like `read' but keeps going if `read' returns too soon. */
721 myread (desc, addr, len)
731 val = read (desc, addr, len);
742 /* Make a copy of the string at PTR with SIZE characters
743 (and add a null character at the end in the copy).
744 Uses malloc to get the space. Returns the address of the copy. */
747 savestring (ptr, size)
751 register char *p = (char *) xmalloc (size + 1);
752 memcpy (p, ptr, size);
758 msavestring (md, ptr, size)
763 register char *p = (char *) xmmalloc (md, size + 1);
764 memcpy (p, ptr, size);
769 /* The "const" is so it compiles under DGUX (which prototypes strsave
770 in <string.h>. FIXME: This should be named "xstrsave", shouldn't it?
771 Doesn't real strsave return NULL if out of memory? */
776 return savestring (ptr, strlen (ptr));
784 return (msavestring (md, ptr, strlen (ptr)));
788 print_spaces (n, file)
796 /* Print a host address. */
799 gdb_print_address (addr, stream)
804 /* We could use the %p conversion specifier to fprintf if we had any
805 way of knowing whether this host supports it. But the following
806 should work on the Alpha and on 32 bit machines. */
808 fprintf_filtered (stream, "0x%lx", (unsigned long)addr);
811 /* Ask user a y-or-n question and return 1 iff answer is yes.
812 Takes three args which are given to printf to print the question.
813 The first, a control string, should end in "? ".
814 It should not say how to answer, because we do that. */
827 /* Automatically answer "yes" if input is not from a terminal. */
828 if (!input_from_terminal_p ())
830 /* start-sanitize-mpw */
832 /* Automatically answer "yes" if called from MacGDB. */
836 /* end-sanitize-mpw */
840 wrap_here (""); /* Flush any buffered output */
841 gdb_flush (gdb_stdout);
843 if (annotation_level > 1)
844 printf_filtered ("\n\032\032pre-query\n");
847 ctlstr = va_arg (args, char *);
848 vfprintf_filtered (gdb_stdout, ctlstr, args);
850 printf_filtered ("(y or n) ");
852 if (annotation_level > 1)
853 printf_filtered ("\n\032\032query\n");
855 /* start-sanitize-mpw */
857 /* If not in MacGDB, move to a new line so the entered line doesn't
858 have a prompt on the front of it. */
860 fputs_unfiltered ("\n", gdb_stdout);
862 /* end-sanitize-mpw */
863 gdb_flush (gdb_stdout);
864 answer = fgetc (stdin);
865 clearerr (stdin); /* in case of C-d */
866 if (answer == EOF) /* C-d */
871 if (answer != '\n') /* Eat rest of input line, to EOF or newline */
874 ans2 = fgetc (stdin);
877 while (ans2 != EOF && ans2 != '\n');
890 printf_filtered ("Please answer y or n.\n");
893 if (annotation_level > 1)
894 printf_filtered ("\n\032\032post-query\n");
899 /* Parse a C escape sequence. STRING_PTR points to a variable
900 containing a pointer to the string to parse. That pointer
901 should point to the character after the \. That pointer
902 is updated past the characters we use. The value of the
903 escape sequence is returned.
905 A negative value means the sequence \ newline was seen,
906 which is supposed to be equivalent to nothing at all.
908 If \ is followed by a null character, we return a negative
909 value and leave the string pointer pointing at the null character.
911 If \ is followed by 000, we return 0 and leave the string pointer
912 after the zeros. A value of 0 does not mean end of string. */
915 parse_escape (string_ptr)
918 register int c = *(*string_ptr)++;
922 return 007; /* Bell (alert) char */
925 case 'e': /* Escape character */
943 c = *(*string_ptr)++;
945 c = parse_escape (string_ptr);
948 return (c & 0200) | (c & 037);
959 register int i = c - '0';
960 register int count = 0;
963 if ((c = *(*string_ptr)++) >= '0' && c <= '7')
981 /* Print the character C on STREAM as part of the contents of a literal
982 string whose delimiter is QUOTER. Note that this routine should only
983 be call for printing things which are independent of the language
984 of the program being debugged. */
987 gdb_printchar (c, stream, quoter)
993 c &= 0xFF; /* Avoid sign bit follies */
995 if ( c < 0x20 || /* Low control chars */
996 (c >= 0x7F && c < 0xA0) || /* DEL, High controls */
997 (sevenbit_strings && c >= 0x80)) { /* high order bit set */
1001 fputs_filtered ("\\n", stream);
1004 fputs_filtered ("\\b", stream);
1007 fputs_filtered ("\\t", stream);
1010 fputs_filtered ("\\f", stream);
1013 fputs_filtered ("\\r", stream);
1016 fputs_filtered ("\\e", stream);
1019 fputs_filtered ("\\a", stream);
1022 fprintf_filtered (stream, "\\%.3o", (unsigned int) c);
1026 if (c == '\\' || c == quoter)
1027 fputs_filtered ("\\", stream);
1028 fprintf_filtered (stream, "%c", c);
1032 /* Number of lines per page or UINT_MAX if paging is disabled. */
1033 static unsigned int lines_per_page;
1034 /* Number of chars per line or UNIT_MAX is line folding is disabled. */
1035 static unsigned int chars_per_line;
1036 /* Current count of lines printed on this page, chars on this line. */
1037 static unsigned int lines_printed, chars_printed;
1039 /* Buffer and start column of buffered text, for doing smarter word-
1040 wrapping. When someone calls wrap_here(), we start buffering output
1041 that comes through fputs_filtered(). If we see a newline, we just
1042 spit it out and forget about the wrap_here(). If we see another
1043 wrap_here(), we spit it out and remember the newer one. If we see
1044 the end of the line, we spit out a newline, the indent, and then
1045 the buffered output. */
1047 /* Malloc'd buffer with chars_per_line+2 bytes. Contains characters which
1048 are waiting to be output (they have already been counted in chars_printed).
1049 When wrap_buffer[0] is null, the buffer is empty. */
1050 static char *wrap_buffer;
1052 /* Pointer in wrap_buffer to the next character to fill. */
1053 static char *wrap_pointer;
1055 /* String to indent by if the wrap occurs. Must not be NULL if wrap_column
1057 static char *wrap_indent;
1059 /* Column number on the screen where wrap_buffer begins, or 0 if wrapping
1060 is not in effect. */
1061 static int wrap_column;
1065 set_width_command (args, from_tty, c)
1068 struct cmd_list_element *c;
1072 wrap_buffer = (char *) xmalloc (chars_per_line + 2);
1073 wrap_buffer[0] = '\0';
1076 wrap_buffer = (char *) xrealloc (wrap_buffer, chars_per_line + 2);
1077 wrap_pointer = wrap_buffer; /* Start it at the beginning */
1080 /* Wait, so the user can read what's on the screen. Prompt the user
1081 to continue by pressing RETURN. */
1084 prompt_for_continue ()
1087 char cont_prompt[120];
1089 if (annotation_level > 1)
1090 printf_unfiltered ("\n\032\032pre-prompt-for-continue\n");
1092 strcpy (cont_prompt,
1093 "---Type <return> to continue, or q <return> to quit---");
1094 if (annotation_level > 1)
1095 strcat (cont_prompt, "\n\032\032prompt-for-continue\n");
1097 /* We must do this *before* we call gdb_readline, else it will eventually
1098 call us -- thinking that we're trying to print beyond the end of the
1100 reinitialize_more_filter ();
1103 /* On a real operating system, the user can quit with SIGINT.
1106 'q' is provided on all systems so users don't have to change habits
1107 from system to system, and because telling them what to do in
1108 the prompt is more user-friendly than expecting them to think of
1110 /* Call readline, not gdb_readline, because GO32 readline handles control-C
1111 whereas control-C to gdb_readline will cause the user to get dumped
1113 ignore = readline (cont_prompt);
1115 if (annotation_level > 1)
1116 printf_unfiltered ("\n\032\032post-prompt-for-continue\n");
1121 while (*p == ' ' || *p == '\t')
1124 request_quit (SIGINT);
1129 /* Now we have to do this again, so that GDB will know that it doesn't
1130 need to save the ---Type <return>--- line at the top of the screen. */
1131 reinitialize_more_filter ();
1133 dont_repeat (); /* Forget prev cmd -- CR won't repeat it. */
1136 /* Reinitialize filter; ie. tell it to reset to original values. */
1139 reinitialize_more_filter ()
1145 /* Indicate that if the next sequence of characters overflows the line,
1146 a newline should be inserted here rather than when it hits the end.
1147 If INDENT is non-null, it is a string to be printed to indent the
1148 wrapped part on the next line. INDENT must remain accessible until
1149 the next call to wrap_here() or until a newline is printed through
1152 If the line is already overfull, we immediately print a newline and
1153 the indentation, and disable further wrapping.
1155 If we don't know the width of lines, but we know the page height,
1156 we must not wrap words, but should still keep track of newlines
1157 that were explicitly printed.
1159 INDENT should not contain tabs, as that will mess up the char count
1160 on the next line. FIXME.
1162 This routine is guaranteed to force out any output which has been
1163 squirreled away in the wrap_buffer, so wrap_here ((char *)0) can be
1164 used to force out output from the wrap_buffer. */
1170 /* This should have been allocated, but be paranoid anyway. */
1176 *wrap_pointer = '\0';
1177 fputs_unfiltered (wrap_buffer, gdb_stdout);
1179 wrap_pointer = wrap_buffer;
1180 wrap_buffer[0] = '\0';
1181 if (chars_per_line == UINT_MAX) /* No line overflow checking */
1185 else if (chars_printed >= chars_per_line)
1187 puts_filtered ("\n");
1189 puts_filtered (indent);
1194 wrap_column = chars_printed;
1198 wrap_indent = indent;
1202 /* Ensure that whatever gets printed next, using the filtered output
1203 commands, starts at the beginning of the line. I.E. if there is
1204 any pending output for the current line, flush it and start a new
1205 line. Otherwise do nothing. */
1210 if (chars_printed > 0)
1212 puts_filtered ("\n");
1218 gdb_fopen (name, mode)
1222 return fopen (name, mode);
1232 /* Like fputs but if FILTER is true, pause after every screenful.
1234 Regardless of FILTER can wrap at points other than the final
1235 character of a line.
1237 Unlike fputs, fputs_maybe_filtered does not return a value.
1238 It is OK for LINEBUFFER to be NULL, in which case just don't print
1241 Note that a longjmp to top level may occur in this routine (only if
1242 FILTER is true) (since prompt_for_continue may do so) so this
1243 routine should not be called when cleanups are not in place. */
1246 fputs_maybe_filtered (linebuffer, stream, filter)
1247 const char *linebuffer;
1251 const char *lineptr;
1253 if (linebuffer == 0)
1256 /* Don't do any filtering if it is disabled. */
1257 if (stream != gdb_stdout
1258 || (lines_per_page == UINT_MAX && chars_per_line == UINT_MAX))
1260 fputs_unfiltered (linebuffer, stream);
1264 /* Go through and output each character. Show line extension
1265 when this is necessary; prompt user for new page when this is
1268 lineptr = linebuffer;
1271 /* Possible new page. */
1273 (lines_printed >= lines_per_page - 1))
1274 prompt_for_continue ();
1276 while (*lineptr && *lineptr != '\n')
1278 /* Print a single line. */
1279 if (*lineptr == '\t')
1282 *wrap_pointer++ = '\t';
1284 fputc_unfiltered ('\t', stream);
1285 /* Shifting right by 3 produces the number of tab stops
1286 we have already passed, and then adding one and
1287 shifting left 3 advances to the next tab stop. */
1288 chars_printed = ((chars_printed >> 3) + 1) << 3;
1294 *wrap_pointer++ = *lineptr;
1296 fputc_unfiltered (*lineptr, stream);
1301 if (chars_printed >= chars_per_line)
1303 unsigned int save_chars = chars_printed;
1307 /* If we aren't actually wrapping, don't output newline --
1308 if chars_per_line is right, we probably just overflowed
1309 anyway; if it's wrong, let us keep going. */
1311 fputc_unfiltered ('\n', stream);
1313 /* Possible new page. */
1314 if (lines_printed >= lines_per_page - 1)
1315 prompt_for_continue ();
1317 /* Now output indentation and wrapped string */
1320 fputs_unfiltered (wrap_indent, stream);
1321 *wrap_pointer = '\0'; /* Null-terminate saved stuff */
1322 fputs_unfiltered (wrap_buffer, stream); /* and eject it */
1323 /* FIXME, this strlen is what prevents wrap_indent from
1324 containing tabs. However, if we recurse to print it
1325 and count its chars, we risk trouble if wrap_indent is
1326 longer than (the user settable) chars_per_line.
1327 Note also that this can set chars_printed > chars_per_line
1328 if we are printing a long string. */
1329 chars_printed = strlen (wrap_indent)
1330 + (save_chars - wrap_column);
1331 wrap_pointer = wrap_buffer; /* Reset buffer */
1332 wrap_buffer[0] = '\0';
1333 wrap_column = 0; /* And disable fancy wrap */
1338 if (*lineptr == '\n')
1341 wrap_here ((char *)0); /* Spit out chars, cancel further wraps */
1343 fputc_unfiltered ('\n', stream);
1350 fputs_filtered (linebuffer, stream)
1351 const char *linebuffer;
1354 fputs_maybe_filtered (linebuffer, stream, 1);
1364 fputs_unfiltered (buf, gdb_stdout);
1368 fputc_unfiltered (c, stream)
1375 fputs_unfiltered (buf, stream);
1379 /* Print a variable number of ARGS using format FORMAT. If this
1380 information is going to put the amount written (since the last call
1381 to REINITIALIZE_MORE_FILTER or the last page break) over the page size,
1382 call prompt_for_continue to get the users permision to continue.
1384 Unlike fprintf, this function does not return a value.
1386 We implement three variants, vfprintf (takes a vararg list and stream),
1387 fprintf (takes a stream to write on), and printf (the usual).
1389 Note also that a longjmp to top level may occur in this routine
1390 (since prompt_for_continue may do so) so this routine should not be
1391 called when cleanups are not in place. */
1394 vfprintf_maybe_filtered (stream, format, args, filter)
1401 struct cleanup *old_cleanups;
1403 vasprintf (&linebuffer, format, args);
1404 if (linebuffer == NULL)
1406 fputs_unfiltered ("\ngdb: virtual memory exhausted.\n", gdb_stderr);
1409 old_cleanups = make_cleanup (free, linebuffer);
1410 fputs_maybe_filtered (linebuffer, stream, filter);
1411 do_cleanups (old_cleanups);
1416 vfprintf_filtered (stream, format, args)
1421 vfprintf_maybe_filtered (stream, format, args, 1);
1425 vfprintf_unfiltered (stream, format, args)
1431 struct cleanup *old_cleanups;
1433 vasprintf (&linebuffer, format, args);
1434 if (linebuffer == NULL)
1436 fputs_unfiltered ("\ngdb: virtual memory exhausted.\n", gdb_stderr);
1439 old_cleanups = make_cleanup (free, linebuffer);
1440 fputs_unfiltered (linebuffer, stream);
1441 do_cleanups (old_cleanups);
1445 vprintf_filtered (format, args)
1449 vfprintf_maybe_filtered (gdb_stdout, format, args, 1);
1453 vprintf_unfiltered (format, args)
1457 vfprintf_unfiltered (gdb_stdout, format, args);
1462 fprintf_filtered (va_alist)
1470 stream = va_arg (args, FILE *);
1471 format = va_arg (args, char *);
1473 vfprintf_filtered (stream, format, args);
1479 fprintf_unfiltered (va_alist)
1487 stream = va_arg (args, FILE *);
1488 format = va_arg (args, char *);
1490 vfprintf_unfiltered (stream, format, args);
1494 /* Like fprintf_filtered, but prints its result indented.
1495 Called as fprintfi_filtered (spaces, stream, format, ...); */
1499 fprintfi_filtered (va_alist)
1508 spaces = va_arg (args, int);
1509 stream = va_arg (args, FILE *);
1510 format = va_arg (args, char *);
1511 print_spaces_filtered (spaces, stream);
1513 vfprintf_filtered (stream, format, args);
1520 printf_filtered (va_alist)
1527 format = va_arg (args, char *);
1529 vfprintf_filtered (gdb_stdout, format, args);
1536 printf_unfiltered (va_alist)
1543 format = va_arg (args, char *);
1545 vfprintf_unfiltered (gdb_stdout, format, args);
1549 /* Like printf_filtered, but prints it's result indented.
1550 Called as printfi_filtered (spaces, format, ...); */
1554 printfi_filtered (va_alist)
1562 spaces = va_arg (args, int);
1563 format = va_arg (args, char *);
1564 print_spaces_filtered (spaces, gdb_stdout);
1565 vfprintf_filtered (gdb_stdout, format, args);
1569 /* Easy -- but watch out!
1571 This routine is *not* a replacement for puts()! puts() appends a newline.
1572 This one doesn't, and had better not! */
1575 puts_filtered (string)
1578 fputs_filtered (string, gdb_stdout);
1582 puts_unfiltered (string)
1585 fputs_unfiltered (string, gdb_stdout);
1588 /* Return a pointer to N spaces and a null. The pointer is good
1589 until the next call to here. */
1595 static char *spaces;
1596 static int max_spaces;
1602 spaces = (char *) xmalloc (n+1);
1603 for (t = spaces+n; t != spaces;)
1609 return spaces + max_spaces - n;
1612 /* Print N spaces. */
1614 print_spaces_filtered (n, stream)
1618 fputs_filtered (n_spaces (n), stream);
1621 /* C++ demangler stuff. */
1623 /* fprintf_symbol_filtered attempts to demangle NAME, a symbol in language
1624 LANG, using demangling args ARG_MODE, and print it filtered to STREAM.
1625 If the name is not mangled, or the language for the name is unknown, or
1626 demangling is off, the name is printed in its "raw" form. */
1629 fprintf_symbol_filtered (stream, name, lang, arg_mode)
1639 /* If user wants to see raw output, no problem. */
1642 fputs_filtered (name, stream);
1648 case language_cplus:
1649 demangled = cplus_demangle (name, arg_mode);
1651 case language_chill:
1652 demangled = chill_demangle (name);
1658 fputs_filtered (demangled ? demangled : name, stream);
1659 if (demangled != NULL)
1667 /* Do a strcmp() type operation on STRING1 and STRING2, ignoring any
1668 differences in whitespace. Returns 0 if they match, non-zero if they
1669 don't (slightly different than strcmp()'s range of return values).
1671 As an extra hack, string1=="FOO(ARGS)" matches string2=="FOO".
1672 This "feature" is useful when searching for matching C++ function names
1673 (such as if the user types 'break FOO', where FOO is a mangled C++
1677 strcmp_iw (string1, string2)
1678 const char *string1;
1679 const char *string2;
1681 while ((*string1 != '\0') && (*string2 != '\0'))
1683 while (isspace (*string1))
1687 while (isspace (*string2))
1691 if (*string1 != *string2)
1695 if (*string1 != '\0')
1701 return (*string1 != '\0' && *string1 != '(') || (*string2 != '\0');
1706 _initialize_utils ()
1708 struct cmd_list_element *c;
1710 c = add_set_cmd ("width", class_support, var_uinteger,
1711 (char *)&chars_per_line,
1712 "Set number of characters gdb thinks are in a line.",
1714 add_show_from_set (c, &showlist);
1715 c->function.sfunc = set_width_command;
1718 (add_set_cmd ("height", class_support,
1719 var_uinteger, (char *)&lines_per_page,
1720 "Set number of lines gdb thinks are in a page.", &setlist),
1723 /* These defaults will be used if we are unable to get the correct
1724 values from termcap. */
1725 #if defined(__GO32__)
1726 lines_per_page = ScreenRows();
1727 chars_per_line = ScreenCols();
1729 lines_per_page = 24;
1730 chars_per_line = 80;
1731 /* start-sanitize-mpw */
1733 /* No termcap under MPW, although might be cool to do something
1734 by looking at worksheet or console window sizes. */
1735 /* end-sanitize-mpw */
1736 /* Initialize the screen height and width from termcap. */
1738 char *termtype = getenv ("TERM");
1740 /* Positive means success, nonpositive means failure. */
1743 /* 2048 is large enough for all known terminals, according to the
1744 GNU termcap manual. */
1745 char term_buffer[2048];
1749 status = tgetent (term_buffer, termtype);
1754 val = tgetnum ("li");
1756 lines_per_page = val;
1758 /* The number of lines per page is not mentioned
1759 in the terminal description. This probably means
1760 that paging is not useful (e.g. emacs shell window),
1761 so disable paging. */
1762 lines_per_page = UINT_MAX;
1764 val = tgetnum ("co");
1766 chars_per_line = val;
1770 /* start-sanitize-mpw */
1772 /* end-sanitize-mpw */
1774 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1776 /* If there is a better way to determine the window size, use it. */
1777 SIGWINCH_HANDLER ();
1780 /* If the output is not a terminal, don't paginate it. */
1781 if (!ISATTY (gdb_stdout))
1782 lines_per_page = UINT_MAX;
1784 set_width_command ((char *)NULL, 0, c);
1787 (add_set_cmd ("demangle", class_support, var_boolean,
1789 "Set demangling of encoded C++ names when displaying symbols.",
1794 (add_set_cmd ("sevenbit-strings", class_support, var_boolean,
1795 (char *)&sevenbit_strings,
1796 "Set printing of 8-bit characters in strings as \\nnn.",
1801 (add_set_cmd ("asm-demangle", class_support, var_boolean,
1802 (char *)&asm_demangle,
1803 "Set demangling of C++ names in disassembly listings.",
1808 /* Machine specific function to handle SIGWINCH signal. */
1810 #ifdef SIGWINCH_HANDLER_BODY
1811 SIGWINCH_HANDLER_BODY