1 /* General utility routines for GDB, the GNU debugger.
2 Copyright 1986, 1989, 1990, 1991, 1992, 1995 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21 #if !defined(__GO32__) && !defined(__WIN32__) && !defined(MPW)
22 #include <sys/ioctl.h>
23 #include <sys/param.h>
26 #ifdef ANSI_PROTOTYPES
32 #include "gdb_string.h"
43 #include "expression.h"
49 /* readline defines this. */
52 /* Prototypes for local functions */
54 #if defined (NO_MMALLOC) || defined (NO_MMALLOC_CHECK)
58 malloc_botch PARAMS ((void));
60 #endif /* NO_MMALLOC, etc */
63 fatal_dump_core PARAMS((char *, ...));
66 prompt_for_continue PARAMS ((void));
69 set_width_command PARAMS ((char *, int, struct cmd_list_element *));
71 /* If this definition isn't overridden by the header files, assume
72 that isatty and fileno exist on this system. */
74 #define ISATTY(FP) (isatty (fileno (FP)))
77 /* Chain of cleanup actions established with make_cleanup,
78 to be executed if an error happens. */
80 static struct cleanup *cleanup_chain;
82 /* Nonzero if we have job control. */
86 /* Nonzero means a quit has been requested. */
90 /* Nonzero means quit immediately if Control-C is typed now, rather
91 than waiting until QUIT is executed. Be careful in setting this;
92 code which executes with immediate_quit set has to be very careful
93 about being able to deal with being interrupted at any time. It is
94 almost always better to use QUIT; the only exception I can think of
95 is being able to quit out of a system call (using EINTR loses if
96 the SIGINT happens between the previous QUIT and the system call).
97 To immediately quit in the case in which a SIGINT happens between
98 the previous QUIT and setting immediate_quit (desirable anytime we
99 expect to block), call QUIT after setting immediate_quit. */
103 /* Nonzero means that encoded C++ names should be printed out in their
104 C++ form rather than raw. */
108 /* Nonzero means that encoded C++ names should be printed out in their
109 C++ form even in assembler language displays. If this is set, but
110 DEMANGLE is zero, names are printed raw, i.e. DEMANGLE controls. */
112 int asm_demangle = 0;
114 /* Nonzero means that strings with character values >0x7F should be printed
115 as octal escapes. Zero means just print the value (e.g. it's an
116 international character, and the terminal or window can cope.) */
118 int sevenbit_strings = 0;
120 /* String to be printed before error messages, if any. */
122 char *error_pre_print;
124 /* String to be printed before quit messages, if any. */
126 char *quit_pre_print;
128 /* String to be printed before warning messages, if any. */
130 char *warning_pre_print = "\nwarning: ";
132 /* Add a new cleanup to the cleanup_chain,
133 and return the previous chain pointer
134 to be passed later to do_cleanups or discard_cleanups.
135 Args are FUNCTION to clean up with, and ARG to pass to it. */
138 make_cleanup (function, arg)
139 void (*function) PARAMS ((PTR));
142 register struct cleanup *new
143 = (struct cleanup *) xmalloc (sizeof (struct cleanup));
144 register struct cleanup *old_chain = cleanup_chain;
146 new->next = cleanup_chain;
147 new->function = function;
154 /* Discard cleanups and do the actions they describe
155 until we get back to the point OLD_CHAIN in the cleanup_chain. */
158 do_cleanups (old_chain)
159 register struct cleanup *old_chain;
161 register struct cleanup *ptr;
162 while ((ptr = cleanup_chain) != old_chain)
164 cleanup_chain = ptr->next; /* Do this first incase recursion */
165 (*ptr->function) (ptr->arg);
170 /* Discard cleanups, not doing the actions they describe,
171 until we get back to the point OLD_CHAIN in the cleanup_chain. */
174 discard_cleanups (old_chain)
175 register struct cleanup *old_chain;
177 register struct cleanup *ptr;
178 while ((ptr = cleanup_chain) != old_chain)
180 cleanup_chain = ptr->next;
185 /* Set the cleanup_chain to 0, and return the old cleanup chain. */
189 struct cleanup *old_chain = cleanup_chain;
195 /* Restore the cleanup chain from a previously saved chain. */
197 restore_cleanups (chain)
198 struct cleanup *chain;
200 cleanup_chain = chain;
203 /* This function is useful for cleanups.
207 old_chain = make_cleanup (free_current_contents, &foo);
209 to arrange to free the object thus allocated. */
212 free_current_contents (location)
218 /* Provide a known function that does nothing, to use as a base for
219 for a possibly long chain of cleanups. This is useful where we
220 use the cleanup chain for handling normal cleanups as well as dealing
221 with cleanups that need to be done as a result of a call to error().
222 In such cases, we may not be certain where the first cleanup is, unless
223 we have a do-nothing one to always use as the base. */
233 /* Print a warning message. Way to use this is to call warning_begin,
234 output the warning message (use unfiltered output to gdb_stderr),
235 ending in a newline. There is not currently a warning_end that you
236 call afterwards, but such a thing might be added if it is useful
237 for a GUI to separate warning messages from other output.
239 FIXME: Why do warnings use unfiltered output and errors filtered?
240 Is this anything other than a historical accident? */
245 target_terminal_ours ();
246 wrap_here(""); /* Force out any buffered output */
247 gdb_flush (gdb_stdout);
248 if (warning_pre_print)
249 fprintf_unfiltered (gdb_stderr, warning_pre_print);
252 /* Print a warning message.
253 The first argument STRING is the warning message, used as a fprintf string,
254 and the remaining args are passed as arguments to it.
255 The primary difference between warnings and errors is that a warning
256 does not force the return to command level. */
260 #ifdef ANSI_PROTOTYPES
261 warning (char *string, ...)
268 #ifdef ANSI_PROTOTYPES
269 va_start (args, string);
274 string = va_arg (args, char *);
277 vfprintf_unfiltered (gdb_stderr, string, args);
278 fprintf_unfiltered (gdb_stderr, "\n");
282 /* Start the printing of an error message. Way to use this is to call
283 this, output the error message (use filtered output to gdb_stderr
284 (FIXME: Some callers, like memory_error, use gdb_stdout)), ending
285 in a newline, and then call return_to_top_level (RETURN_ERROR).
286 error() provides a convenient way to do this for the special case
287 that the error message can be formatted with a single printf call,
288 but this is more general. */
292 target_terminal_ours ();
293 wrap_here (""); /* Force out any buffered output */
294 gdb_flush (gdb_stdout);
296 annotate_error_begin ();
299 fprintf_filtered (gdb_stderr, error_pre_print);
302 /* Print an error message and return to command level.
303 The first argument STRING is the error message, used as a fprintf string,
304 and the remaining args are passed as arguments to it. */
306 #ifdef ANSI_PROTOTYPES
308 error (char *string, ...)
316 #ifdef ANSI_PROTOTYPES
317 va_start (args, string);
326 #ifdef ANSI_PROTOTYPES
327 vfprintf_filtered (gdb_stderr, string, args);
332 string1 = va_arg (args, char *);
333 vfprintf_filtered (gdb_stderr, string1, args);
336 fprintf_filtered (gdb_stderr, "\n");
338 return_to_top_level (RETURN_ERROR);
343 /* Print an error message and exit reporting failure.
344 This is for a error that we cannot continue from.
345 The arguments are printed a la printf.
347 This function cannot be declared volatile (NORETURN) in an
348 ANSI environment because exit() is not declared volatile. */
352 #ifdef ANSI_PROTOTYPES
353 fatal (char *string, ...)
360 #ifdef ANSI_PROTOTYPES
361 va_start (args, string);
365 string = va_arg (args, char *);
367 fprintf_unfiltered (gdb_stderr, "\ngdb: ");
368 vfprintf_unfiltered (gdb_stderr, string, args);
369 fprintf_unfiltered (gdb_stderr, "\n");
374 /* Print an error message and exit, dumping core.
375 The arguments are printed a la printf (). */
379 #ifdef ANSI_PROTOTYPES
380 fatal_dump_core (char *string, ...)
382 fatal_dump_core (va_alist)
387 #ifdef ANSI_PROTOTYPES
388 va_start (args, string);
393 string = va_arg (args, char *);
395 /* "internal error" is always correct, since GDB should never dump
396 core, no matter what the input. */
397 fprintf_unfiltered (gdb_stderr, "\ngdb internal error: ");
398 vfprintf_unfiltered (gdb_stderr, string, args);
399 fprintf_unfiltered (gdb_stderr, "\n");
402 signal (SIGQUIT, SIG_DFL);
403 kill (getpid (), SIGQUIT);
404 /* We should never get here, but just in case... */
408 /* The strerror() function can return NULL for errno values that are
409 out of range. Provide a "safe" version that always returns a
413 safe_strerror (errnum)
419 if ((msg = strerror (errnum)) == NULL)
421 sprintf (buf, "(undocumented errno %d)", errnum);
427 /* The strsignal() function can return NULL for signal values that are
428 out of range. Provide a "safe" version that always returns a
432 safe_strsignal (signo)
438 if ((msg = strsignal (signo)) == NULL)
440 sprintf (buf, "(undocumented signal %d)", signo);
447 /* Print the system error message for errno, and also mention STRING
448 as the file name for which the error was encountered.
449 Then return to command level. */
452 perror_with_name (string)
458 err = safe_strerror (errno);
459 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
460 strcpy (combined, string);
461 strcat (combined, ": ");
462 strcat (combined, err);
464 /* I understand setting these is a matter of taste. Still, some people
465 may clear errno but not know about bfd_error. Doing this here is not
467 bfd_set_error (bfd_error_no_error);
470 error ("%s.", combined);
473 /* Print the system error message for ERRCODE, and also mention STRING
474 as the file name for which the error was encountered. */
477 print_sys_errmsg (string, errcode)
484 err = safe_strerror (errcode);
485 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
486 strcpy (combined, string);
487 strcat (combined, ": ");
488 strcat (combined, err);
490 /* We want anything which was printed on stdout to come out first, before
492 gdb_flush (gdb_stdout);
493 fprintf_unfiltered (gdb_stderr, "%s.\n", combined);
496 /* Control C eventually causes this to be called, at a convenient time. */
501 serial_t gdb_stdout_serial = serial_fdopen (1);
503 target_terminal_ours ();
505 /* We want all output to appear now, before we print "Quit". We
506 have 3 levels of buffering we have to flush (it's possible that
507 some of these should be changed to flush the lower-level ones
510 /* 1. The _filtered buffer. */
511 wrap_here ((char *)0);
513 /* 2. The stdio buffer. */
514 gdb_flush (gdb_stdout);
515 gdb_flush (gdb_stderr);
517 /* 3. The system-level buffer. */
518 SERIAL_FLUSH_OUTPUT (gdb_stdout_serial);
519 SERIAL_UN_FDOPEN (gdb_stdout_serial);
521 annotate_error_begin ();
523 /* Don't use *_filtered; we don't want to prompt the user to continue. */
525 fprintf_unfiltered (gdb_stderr, quit_pre_print);
528 /* If there is no terminal switching for this target, then we can't
529 possibly get screwed by the lack of job control. */
530 || current_target.to_terminal_ours == NULL)
531 fprintf_unfiltered (gdb_stderr, "Quit\n");
533 fprintf_unfiltered (gdb_stderr,
534 "Quit (expect signal SIGINT when the program is resumed)\n");
535 return_to_top_level (RETURN_QUIT);
539 #if defined(__GO32__)||defined(WINGDB)
541 /* In the absence of signals, poll keyboard for a quit.
542 Called from #define QUIT pollquit() in xm-go32.h. */
560 /* We just ignore it */
561 fprintf_unfiltered (gdb_stderr, "CTRL-A to quit, CTRL-B to quit harder\n");
568 #if defined(__GO32__)||defined(WINGDB)
583 fprintf_unfiltered (gdb_stderr, "CTRL-A to quit, CTRL-B to quit harder\n");
590 /* Done by signals */
593 /* Control C comes here */
600 /* Restore the signal handler. Harmless with BSD-style signals, needed
601 for System V-style signals. So just always do it, rather than worrying
602 about USG defines and stuff like that. */
603 signal (signo, request_quit);
605 /* start-sanitize-gm */
608 #endif /* GENERAL_MAGIC */
609 /* end-sanitize-gm */
620 /* Memory management stuff (malloc friends). */
622 #if defined (NO_MMALLOC)
624 /* Make a substitute size_t for non-ANSI compilers. */
631 #define size_t unsigned int
641 return malloc (size);
645 mrealloc (md, ptr, size)
650 if (ptr == 0) /* Guard against old realloc's */
651 return malloc (size);
653 return realloc (ptr, size);
664 #endif /* NO_MMALLOC */
666 #if defined (NO_MMALLOC) || defined (NO_MMALLOC_CHECK)
674 #else /* have mmalloc and want corruption checking */
679 fatal_dump_core ("Memory corruption");
682 /* Attempt to install hooks in mmalloc/mrealloc/mfree for the heap specified
683 by MD, to detect memory corruption. Note that MD may be NULL to specify
684 the default heap that grows via sbrk.
686 Note that for freshly created regions, we must call mmcheck prior to any
687 mallocs in the region. Otherwise, any region which was allocated prior to
688 installing the checking hooks, which is later reallocated or freed, will
689 fail the checks! The mmcheck function only allows initial hooks to be
690 installed before the first mmalloc. However, anytime after we have called
691 mmcheck the first time to install the checking hooks, we can call it again
692 to update the function pointer to the memory corruption handler.
694 Returns zero on failure, non-zero on success. */
700 if (!mmcheck (md, malloc_botch))
702 warning ("internal error: failed to install memory consistency checks");
708 #endif /* Have mmalloc and want corruption checking */
710 /* Called when a memory allocation fails, with the number of bytes of
711 memory requested in SIZE. */
719 fatal ("virtual memory exhausted: can't allocate %ld bytes.", size);
723 fatal ("virtual memory exhausted.");
727 /* Like mmalloc but get error if no storage available, and protect against
728 the caller wanting to allocate zero bytes. Whether to return NULL for
729 a zero byte request, or translate the request into a request for one
730 byte of zero'd storage, is a religious issue. */
743 else if ((val = mmalloc (md, size)) == NULL)
750 /* Like mrealloc but get error if no storage available. */
753 xmrealloc (md, ptr, size)
762 val = mrealloc (md, ptr, size);
766 val = mmalloc (md, size);
775 /* Like malloc but get error if no storage available, and protect against
776 the caller wanting to allocate zero bytes. */
782 return (xmmalloc ((PTR) NULL, size));
785 /* Like mrealloc but get error if no storage available. */
792 return (xmrealloc ((PTR) NULL, ptr, size));
796 /* My replacement for the read system call.
797 Used like `read' but keeps going if `read' returns too soon. */
800 myread (desc, addr, len)
810 val = read (desc, addr, len);
821 /* Make a copy of the string at PTR with SIZE characters
822 (and add a null character at the end in the copy).
823 Uses malloc to get the space. Returns the address of the copy. */
826 savestring (ptr, size)
830 register char *p = (char *) xmalloc (size + 1);
831 memcpy (p, ptr, size);
837 msavestring (md, ptr, size)
842 register char *p = (char *) xmmalloc (md, size + 1);
843 memcpy (p, ptr, size);
848 /* The "const" is so it compiles under DGUX (which prototypes strsave
849 in <string.h>. FIXME: This should be named "xstrsave", shouldn't it?
850 Doesn't real strsave return NULL if out of memory? */
855 return savestring (ptr, strlen (ptr));
863 return (msavestring (md, ptr, strlen (ptr)));
867 print_spaces (n, file)
875 /* Print a host address. */
878 gdb_print_address (addr, stream)
883 /* We could use the %p conversion specifier to fprintf if we had any
884 way of knowing whether this host supports it. But the following
885 should work on the Alpha and on 32 bit machines. */
887 fprintf_filtered (stream, "0x%lx", (unsigned long)addr);
890 /* Ask user a y-or-n question and return 1 iff answer is yes.
891 Takes three args which are given to printf to print the question.
892 The first, a control string, should end in "? ".
893 It should not say how to answer, because we do that. */
897 #ifdef ANSI_PROTOTYPES
898 query (char *ctlstr, ...)
909 #ifdef ANSI_PROTOTYPES
910 va_start (args, ctlstr);
914 ctlstr = va_arg (args, char *);
919 return query_hook (ctlstr, args);
922 /* Automatically answer "yes" if input is not from a terminal. */
923 if (!input_from_terminal_p ())
926 /* FIXME Automatically answer "yes" if called from MacGDB. */
933 wrap_here (""); /* Flush any buffered output */
934 gdb_flush (gdb_stdout);
936 if (annotation_level > 1)
937 printf_filtered ("\n\032\032pre-query\n");
939 vfprintf_filtered (gdb_stdout, ctlstr, args);
940 printf_filtered ("(y or n) ");
942 if (annotation_level > 1)
943 printf_filtered ("\n\032\032query\n");
946 /* If not in MacGDB, move to a new line so the entered line doesn't
947 have a prompt on the front of it. */
949 fputs_unfiltered ("\n", gdb_stdout);
952 gdb_flush (gdb_stdout);
953 answer = fgetc (stdin);
954 clearerr (stdin); /* in case of C-d */
955 if (answer == EOF) /* C-d */
960 if (answer != '\n') /* Eat rest of input line, to EOF or newline */
963 ans2 = fgetc (stdin);
966 while (ans2 != EOF && ans2 != '\n');
979 printf_filtered ("Please answer y or n.\n");
982 if (annotation_level > 1)
983 printf_filtered ("\n\032\032post-query\n");
988 /* Parse a C escape sequence. STRING_PTR points to a variable
989 containing a pointer to the string to parse. That pointer
990 should point to the character after the \. That pointer
991 is updated past the characters we use. The value of the
992 escape sequence is returned.
994 A negative value means the sequence \ newline was seen,
995 which is supposed to be equivalent to nothing at all.
997 If \ is followed by a null character, we return a negative
998 value and leave the string pointer pointing at the null character.
1000 If \ is followed by 000, we return 0 and leave the string pointer
1001 after the zeros. A value of 0 does not mean end of string. */
1004 parse_escape (string_ptr)
1007 register int c = *(*string_ptr)++;
1011 return 007; /* Bell (alert) char */
1014 case 'e': /* Escape character */
1032 c = *(*string_ptr)++;
1034 c = parse_escape (string_ptr);
1037 return (c & 0200) | (c & 037);
1048 register int i = c - '0';
1049 register int count = 0;
1052 if ((c = *(*string_ptr)++) >= '0' && c <= '7')
1070 /* Print the character C on STREAM as part of the contents of a literal
1071 string whose delimiter is QUOTER. Note that this routine should only
1072 be call for printing things which are independent of the language
1073 of the program being debugged. */
1076 gdb_printchar (c, stream, quoter)
1082 c &= 0xFF; /* Avoid sign bit follies */
1084 if ( c < 0x20 || /* Low control chars */
1085 (c >= 0x7F && c < 0xA0) || /* DEL, High controls */
1086 (sevenbit_strings && c >= 0x80)) { /* high order bit set */
1090 fputs_filtered ("\\n", stream);
1093 fputs_filtered ("\\b", stream);
1096 fputs_filtered ("\\t", stream);
1099 fputs_filtered ("\\f", stream);
1102 fputs_filtered ("\\r", stream);
1105 fputs_filtered ("\\e", stream);
1108 fputs_filtered ("\\a", stream);
1111 fprintf_filtered (stream, "\\%.3o", (unsigned int) c);
1115 if (c == '\\' || c == quoter)
1116 fputs_filtered ("\\", stream);
1117 fprintf_filtered (stream, "%c", c);
1121 /* Number of lines per page or UINT_MAX if paging is disabled. */
1122 static unsigned int lines_per_page;
1123 /* Number of chars per line or UNIT_MAX is line folding is disabled. */
1124 static unsigned int chars_per_line;
1125 /* Current count of lines printed on this page, chars on this line. */
1126 static unsigned int lines_printed, chars_printed;
1128 /* Buffer and start column of buffered text, for doing smarter word-
1129 wrapping. When someone calls wrap_here(), we start buffering output
1130 that comes through fputs_filtered(). If we see a newline, we just
1131 spit it out and forget about the wrap_here(). If we see another
1132 wrap_here(), we spit it out and remember the newer one. If we see
1133 the end of the line, we spit out a newline, the indent, and then
1134 the buffered output. */
1136 /* Malloc'd buffer with chars_per_line+2 bytes. Contains characters which
1137 are waiting to be output (they have already been counted in chars_printed).
1138 When wrap_buffer[0] is null, the buffer is empty. */
1139 static char *wrap_buffer;
1141 /* Pointer in wrap_buffer to the next character to fill. */
1142 static char *wrap_pointer;
1144 /* String to indent by if the wrap occurs. Must not be NULL if wrap_column
1146 static char *wrap_indent;
1148 /* Column number on the screen where wrap_buffer begins, or 0 if wrapping
1149 is not in effect. */
1150 static int wrap_column;
1154 set_width_command (args, from_tty, c)
1157 struct cmd_list_element *c;
1161 wrap_buffer = (char *) xmalloc (chars_per_line + 2);
1162 wrap_buffer[0] = '\0';
1165 wrap_buffer = (char *) xrealloc (wrap_buffer, chars_per_line + 2);
1166 wrap_pointer = wrap_buffer; /* Start it at the beginning */
1169 /* Wait, so the user can read what's on the screen. Prompt the user
1170 to continue by pressing RETURN. */
1173 prompt_for_continue ()
1176 char cont_prompt[120];
1178 if (annotation_level > 1)
1179 printf_unfiltered ("\n\032\032pre-prompt-for-continue\n");
1181 strcpy (cont_prompt,
1182 "---Type <return> to continue, or q <return> to quit---");
1183 if (annotation_level > 1)
1184 strcat (cont_prompt, "\n\032\032prompt-for-continue\n");
1186 /* We must do this *before* we call gdb_readline, else it will eventually
1187 call us -- thinking that we're trying to print beyond the end of the
1189 reinitialize_more_filter ();
1192 /* On a real operating system, the user can quit with SIGINT.
1195 'q' is provided on all systems so users don't have to change habits
1196 from system to system, and because telling them what to do in
1197 the prompt is more user-friendly than expecting them to think of
1199 /* Call readline, not gdb_readline, because GO32 readline handles control-C
1200 whereas control-C to gdb_readline will cause the user to get dumped
1202 ignore = readline (cont_prompt);
1204 if (annotation_level > 1)
1205 printf_unfiltered ("\n\032\032post-prompt-for-continue\n");
1210 while (*p == ' ' || *p == '\t')
1213 request_quit (SIGINT);
1218 /* Now we have to do this again, so that GDB will know that it doesn't
1219 need to save the ---Type <return>--- line at the top of the screen. */
1220 reinitialize_more_filter ();
1222 dont_repeat (); /* Forget prev cmd -- CR won't repeat it. */
1225 /* Reinitialize filter; ie. tell it to reset to original values. */
1228 reinitialize_more_filter ()
1234 /* Indicate that if the next sequence of characters overflows the line,
1235 a newline should be inserted here rather than when it hits the end.
1236 If INDENT is non-null, it is a string to be printed to indent the
1237 wrapped part on the next line. INDENT must remain accessible until
1238 the next call to wrap_here() or until a newline is printed through
1241 If the line is already overfull, we immediately print a newline and
1242 the indentation, and disable further wrapping.
1244 If we don't know the width of lines, but we know the page height,
1245 we must not wrap words, but should still keep track of newlines
1246 that were explicitly printed.
1248 INDENT should not contain tabs, as that will mess up the char count
1249 on the next line. FIXME.
1251 This routine is guaranteed to force out any output which has been
1252 squirreled away in the wrap_buffer, so wrap_here ((char *)0) can be
1253 used to force out output from the wrap_buffer. */
1259 /* This should have been allocated, but be paranoid anyway. */
1265 *wrap_pointer = '\0';
1266 fputs_unfiltered (wrap_buffer, gdb_stdout);
1268 wrap_pointer = wrap_buffer;
1269 wrap_buffer[0] = '\0';
1270 if (chars_per_line == UINT_MAX) /* No line overflow checking */
1274 else if (chars_printed >= chars_per_line)
1276 puts_filtered ("\n");
1278 puts_filtered (indent);
1283 wrap_column = chars_printed;
1287 wrap_indent = indent;
1291 /* Ensure that whatever gets printed next, using the filtered output
1292 commands, starts at the beginning of the line. I.E. if there is
1293 any pending output for the current line, flush it and start a new
1294 line. Otherwise do nothing. */
1299 if (chars_printed > 0)
1301 puts_filtered ("\n");
1307 gdb_fopen (name, mode)
1311 return fopen (name, mode);
1320 flush_hook (stream);
1327 /* Like fputs but if FILTER is true, pause after every screenful.
1329 Regardless of FILTER can wrap at points other than the final
1330 character of a line.
1332 Unlike fputs, fputs_maybe_filtered does not return a value.
1333 It is OK for LINEBUFFER to be NULL, in which case just don't print
1336 Note that a longjmp to top level may occur in this routine (only if
1337 FILTER is true) (since prompt_for_continue may do so) so this
1338 routine should not be called when cleanups are not in place. */
1341 fputs_maybe_filtered (linebuffer, stream, filter)
1342 const char *linebuffer;
1346 const char *lineptr;
1348 if (linebuffer == 0)
1351 /* Don't do any filtering if it is disabled. */
1352 if (stream != gdb_stdout
1353 || (lines_per_page == UINT_MAX && chars_per_line == UINT_MAX))
1355 fputs_unfiltered (linebuffer, stream);
1359 /* Go through and output each character. Show line extension
1360 when this is necessary; prompt user for new page when this is
1363 lineptr = linebuffer;
1366 /* Possible new page. */
1368 (lines_printed >= lines_per_page - 1))
1369 prompt_for_continue ();
1371 while (*lineptr && *lineptr != '\n')
1373 /* Print a single line. */
1374 if (*lineptr == '\t')
1377 *wrap_pointer++ = '\t';
1379 fputc_unfiltered ('\t', stream);
1380 /* Shifting right by 3 produces the number of tab stops
1381 we have already passed, and then adding one and
1382 shifting left 3 advances to the next tab stop. */
1383 chars_printed = ((chars_printed >> 3) + 1) << 3;
1389 *wrap_pointer++ = *lineptr;
1391 fputc_unfiltered (*lineptr, stream);
1396 if (chars_printed >= chars_per_line)
1398 unsigned int save_chars = chars_printed;
1402 /* If we aren't actually wrapping, don't output newline --
1403 if chars_per_line is right, we probably just overflowed
1404 anyway; if it's wrong, let us keep going. */
1406 fputc_unfiltered ('\n', stream);
1408 /* Possible new page. */
1409 if (lines_printed >= lines_per_page - 1)
1410 prompt_for_continue ();
1412 /* Now output indentation and wrapped string */
1415 fputs_unfiltered (wrap_indent, stream);
1416 *wrap_pointer = '\0'; /* Null-terminate saved stuff */
1417 fputs_unfiltered (wrap_buffer, stream); /* and eject it */
1418 /* FIXME, this strlen is what prevents wrap_indent from
1419 containing tabs. However, if we recurse to print it
1420 and count its chars, we risk trouble if wrap_indent is
1421 longer than (the user settable) chars_per_line.
1422 Note also that this can set chars_printed > chars_per_line
1423 if we are printing a long string. */
1424 chars_printed = strlen (wrap_indent)
1425 + (save_chars - wrap_column);
1426 wrap_pointer = wrap_buffer; /* Reset buffer */
1427 wrap_buffer[0] = '\0';
1428 wrap_column = 0; /* And disable fancy wrap */
1433 if (*lineptr == '\n')
1436 wrap_here ((char *)0); /* Spit out chars, cancel further wraps */
1438 fputc_unfiltered ('\n', stream);
1445 fputs_filtered (linebuffer, stream)
1446 const char *linebuffer;
1449 fputs_maybe_filtered (linebuffer, stream, 1);
1453 putchar_unfiltered (c)
1460 fputs_unfiltered (buf, gdb_stdout);
1465 fputc_unfiltered (c, stream)
1473 fputs_unfiltered (buf, stream);
1478 /* Print a variable number of ARGS using format FORMAT. If this
1479 information is going to put the amount written (since the last call
1480 to REINITIALIZE_MORE_FILTER or the last page break) over the page size,
1481 call prompt_for_continue to get the users permision to continue.
1483 Unlike fprintf, this function does not return a value.
1485 We implement three variants, vfprintf (takes a vararg list and stream),
1486 fprintf (takes a stream to write on), and printf (the usual).
1488 Note also that a longjmp to top level may occur in this routine
1489 (since prompt_for_continue may do so) so this routine should not be
1490 called when cleanups are not in place. */
1493 vfprintf_maybe_filtered (stream, format, args, filter)
1500 struct cleanup *old_cleanups;
1502 vasprintf (&linebuffer, format, args);
1503 if (linebuffer == NULL)
1505 fputs_unfiltered ("\ngdb: virtual memory exhausted.\n", gdb_stderr);
1508 old_cleanups = make_cleanup (free, linebuffer);
1509 fputs_maybe_filtered (linebuffer, stream, filter);
1510 do_cleanups (old_cleanups);
1515 vfprintf_filtered (stream, format, args)
1520 vfprintf_maybe_filtered (stream, format, args, 1);
1524 vfprintf_unfiltered (stream, format, args)
1530 struct cleanup *old_cleanups;
1532 vasprintf (&linebuffer, format, args);
1533 if (linebuffer == NULL)
1535 fputs_unfiltered ("\ngdb: virtual memory exhausted.\n", gdb_stderr);
1538 old_cleanups = make_cleanup (free, linebuffer);
1539 fputs_unfiltered (linebuffer, stream);
1540 do_cleanups (old_cleanups);
1544 vprintf_filtered (format, args)
1548 vfprintf_maybe_filtered (gdb_stdout, format, args, 1);
1552 vprintf_unfiltered (format, args)
1556 vfprintf_unfiltered (gdb_stdout, format, args);
1561 #ifdef ANSI_PROTOTYPES
1562 fprintf_filtered (FILE *stream, const char *format, ...)
1564 fprintf_filtered (va_alist)
1569 #ifdef ANSI_PROTOTYPES
1570 va_start (args, format);
1576 stream = va_arg (args, FILE *);
1577 format = va_arg (args, char *);
1579 vfprintf_filtered (stream, format, args);
1585 #ifdef ANSI_PROTOTYPES
1586 fprintf_unfiltered (FILE *stream, const char *format, ...)
1588 fprintf_unfiltered (va_alist)
1593 #ifdef ANSI_PROTOTYPES
1594 va_start (args, format);
1600 stream = va_arg (args, FILE *);
1601 format = va_arg (args, char *);
1603 vfprintf_unfiltered (stream, format, args);
1607 /* Like fprintf_filtered, but prints its result indented.
1608 Called as fprintfi_filtered (spaces, stream, format, ...); */
1612 #ifdef ANSI_PROTOTYPES
1613 fprintfi_filtered (int spaces, FILE *stream, const char *format, ...)
1615 fprintfi_filtered (va_alist)
1620 #ifdef ANSI_PROTOTYPES
1621 va_start (args, format);
1628 spaces = va_arg (args, int);
1629 stream = va_arg (args, FILE *);
1630 format = va_arg (args, char *);
1632 print_spaces_filtered (spaces, stream);
1634 vfprintf_filtered (stream, format, args);
1641 #ifdef ANSI_PROTOTYPES
1642 printf_filtered (const char *format, ...)
1644 printf_filtered (va_alist)
1649 #ifdef ANSI_PROTOTYPES
1650 va_start (args, format);
1655 format = va_arg (args, char *);
1657 vfprintf_filtered (gdb_stdout, format, args);
1664 #ifdef ANSI_PROTOTYPES
1665 printf_unfiltered (const char *format, ...)
1667 printf_unfiltered (va_alist)
1672 #ifdef ANSI_PROTOTYPES
1673 va_start (args, format);
1678 format = va_arg (args, char *);
1680 vfprintf_unfiltered (gdb_stdout, format, args);
1684 /* Like printf_filtered, but prints it's result indented.
1685 Called as printfi_filtered (spaces, format, ...); */
1689 #ifdef ANSI_PROTOTYPES
1690 printfi_filtered (int spaces, const char *format, ...)
1692 printfi_filtered (va_alist)
1697 #ifdef ANSI_PROTOTYPES
1698 va_start (args, format);
1704 spaces = va_arg (args, int);
1705 format = va_arg (args, char *);
1707 print_spaces_filtered (spaces, gdb_stdout);
1708 vfprintf_filtered (gdb_stdout, format, args);
1712 /* Easy -- but watch out!
1714 This routine is *not* a replacement for puts()! puts() appends a newline.
1715 This one doesn't, and had better not! */
1718 puts_filtered (string)
1721 fputs_filtered (string, gdb_stdout);
1725 puts_unfiltered (string)
1728 fputs_unfiltered (string, gdb_stdout);
1731 /* Return a pointer to N spaces and a null. The pointer is good
1732 until the next call to here. */
1738 static char *spaces;
1739 static int max_spaces;
1745 spaces = (char *) xmalloc (n+1);
1746 for (t = spaces+n; t != spaces;)
1752 return spaces + max_spaces - n;
1755 /* Print N spaces. */
1757 print_spaces_filtered (n, stream)
1761 fputs_filtered (n_spaces (n), stream);
1764 /* C++ demangler stuff. */
1766 /* fprintf_symbol_filtered attempts to demangle NAME, a symbol in language
1767 LANG, using demangling args ARG_MODE, and print it filtered to STREAM.
1768 If the name is not mangled, or the language for the name is unknown, or
1769 demangling is off, the name is printed in its "raw" form. */
1772 fprintf_symbol_filtered (stream, name, lang, arg_mode)
1782 /* If user wants to see raw output, no problem. */
1785 fputs_filtered (name, stream);
1791 case language_cplus:
1792 demangled = cplus_demangle (name, arg_mode);
1794 case language_chill:
1795 demangled = chill_demangle (name);
1801 fputs_filtered (demangled ? demangled : name, stream);
1802 if (demangled != NULL)
1810 /* Do a strcmp() type operation on STRING1 and STRING2, ignoring any
1811 differences in whitespace. Returns 0 if they match, non-zero if they
1812 don't (slightly different than strcmp()'s range of return values).
1814 As an extra hack, string1=="FOO(ARGS)" matches string2=="FOO".
1815 This "feature" is useful when searching for matching C++ function names
1816 (such as if the user types 'break FOO', where FOO is a mangled C++
1820 strcmp_iw (string1, string2)
1821 const char *string1;
1822 const char *string2;
1824 while ((*string1 != '\0') && (*string2 != '\0'))
1826 while (isspace (*string1))
1830 while (isspace (*string2))
1834 if (*string1 != *string2)
1838 if (*string1 != '\0')
1844 return (*string1 != '\0' && *string1 != '(') || (*string2 != '\0');
1851 struct cmd_list_element *c;
1853 c = add_set_cmd ("width", class_support, var_uinteger,
1854 (char *)&chars_per_line,
1855 "Set number of characters gdb thinks are in a line.",
1857 add_show_from_set (c, &showlist);
1858 c->function.sfunc = set_width_command;
1861 (add_set_cmd ("height", class_support,
1862 var_uinteger, (char *)&lines_per_page,
1863 "Set number of lines gdb thinks are in a page.", &setlist),
1866 /* These defaults will be used if we are unable to get the correct
1867 values from termcap. */
1868 #if defined(__GO32__) || defined(__WIN32__)
1869 lines_per_page = ScreenRows();
1870 chars_per_line = ScreenCols();
1872 lines_per_page = 24;
1873 chars_per_line = 80;
1876 /* No termcap under MPW, although might be cool to do something
1877 by looking at worksheet or console window sizes. */
1878 /* Initialize the screen height and width from termcap. */
1880 char *termtype = getenv ("TERM");
1882 /* Positive means success, nonpositive means failure. */
1885 /* 2048 is large enough for all known terminals, according to the
1886 GNU termcap manual. */
1887 char term_buffer[2048];
1891 status = tgetent (term_buffer, termtype);
1896 val = tgetnum ("li");
1898 lines_per_page = val;
1900 /* The number of lines per page is not mentioned
1901 in the terminal description. This probably means
1902 that paging is not useful (e.g. emacs shell window),
1903 so disable paging. */
1904 lines_per_page = UINT_MAX;
1906 val = tgetnum ("co");
1908 chars_per_line = val;
1914 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1916 /* If there is a better way to determine the window size, use it. */
1917 SIGWINCH_HANDLER ();
1920 /* If the output is not a terminal, don't paginate it. */
1921 if (!ISATTY (gdb_stdout))
1922 lines_per_page = UINT_MAX;
1924 set_width_command ((char *)NULL, 0, c);
1927 (add_set_cmd ("demangle", class_support, var_boolean,
1929 "Set demangling of encoded C++ names when displaying symbols.",
1934 (add_set_cmd ("sevenbit-strings", class_support, var_boolean,
1935 (char *)&sevenbit_strings,
1936 "Set printing of 8-bit characters in strings as \\nnn.",
1941 (add_set_cmd ("asm-demangle", class_support, var_boolean,
1942 (char *)&asm_demangle,
1943 "Set demangling of C++ names in disassembly listings.",
1948 /* Machine specific function to handle SIGWINCH signal. */
1950 #ifdef SIGWINCH_HANDLER_BODY
1951 SIGWINCH_HANDLER_BODY
1954 #ifdef HAVE_LONG_DOUBLE
1955 /* Support for converting target fp numbers into host long double format. */
1957 /* XXX - This code should really be in libiberty/floatformat.c, however
1958 configuration issues with libiberty made this very difficult to do in the
1961 #include "floatformat.h"
1962 #include <math.h> /* ldexp */
1964 /* The odds that CHAR_BIT will be anything but 8 are low enough that I'm not
1965 going to bother with trying to muck around with whether it is defined in
1966 a system header, what we do if not, etc. */
1967 #define FLOATFORMAT_CHAR_BIT 8
1969 static unsigned long get_field PARAMS ((unsigned char *,
1970 enum floatformat_byteorders,
1975 /* Extract a field which starts at START and is LEN bytes long. DATA and
1976 TOTAL_LEN are the thing we are extracting it from, in byteorder ORDER. */
1977 static unsigned long
1978 get_field (data, order, total_len, start, len)
1979 unsigned char *data;
1980 enum floatformat_byteorders order;
1981 unsigned int total_len;
1985 unsigned long result;
1986 unsigned int cur_byte;
1989 /* Start at the least significant part of the field. */
1990 cur_byte = (start + len) / FLOATFORMAT_CHAR_BIT;
1991 if (order == floatformat_little)
1992 cur_byte = (total_len / FLOATFORMAT_CHAR_BIT) - cur_byte - 1;
1994 ((start + len) % FLOATFORMAT_CHAR_BIT) - FLOATFORMAT_CHAR_BIT;
1995 result = *(data + cur_byte) >> (-cur_bitshift);
1996 cur_bitshift += FLOATFORMAT_CHAR_BIT;
1997 if (order == floatformat_little)
2002 /* Move towards the most significant part of the field. */
2003 while (cur_bitshift < len)
2005 if (len - cur_bitshift < FLOATFORMAT_CHAR_BIT)
2006 /* This is the last byte; zero out the bits which are not part of
2009 (*(data + cur_byte) & ((1 << (len - cur_bitshift)) - 1))
2012 result |= *(data + cur_byte) << cur_bitshift;
2013 cur_bitshift += FLOATFORMAT_CHAR_BIT;
2014 if (order == floatformat_little)
2022 /* Convert from FMT to a long double.
2023 FROM is the address of the extended float.
2024 Store the long double in *TO. */
2027 floatformat_to_long_double (fmt, from, to)
2028 const struct floatformat *fmt;
2032 unsigned char *ufrom = (unsigned char *)from;
2036 unsigned int mant_bits, mant_off;
2038 int special_exponent; /* It's a NaN, denorm or zero */
2040 exponent = get_field (ufrom, fmt->byteorder, fmt->totalsize,
2041 fmt->exp_start, fmt->exp_len);
2042 /* Note that if exponent indicates a NaN, we can't really do anything useful
2043 (not knowing if the host has NaN's, or how to build one). So it will
2044 end up as an infinity or something close; that is OK. */
2046 mant_bits_left = fmt->man_len;
2047 mant_off = fmt->man_start;
2050 special_exponent = exponent == 0 || exponent == fmt->exp_nan;
2052 /* Don't bias zero's, denorms or NaNs. */
2053 if (!special_exponent)
2054 exponent -= fmt->exp_bias;
2056 /* Build the result algebraically. Might go infinite, underflow, etc;
2059 /* If this format uses a hidden bit, explicitly add it in now. Otherwise,
2060 increment the exponent by one to account for the integer bit. */
2062 if (!special_exponent)
2063 if (fmt->intbit == floatformat_intbit_no)
2064 dto = ldexp (1.0, exponent);
2068 while (mant_bits_left > 0)
2070 mant_bits = min (mant_bits_left, 32);
2072 mant = get_field (ufrom, fmt->byteorder, fmt->totalsize,
2073 mant_off, mant_bits);
2075 dto += ldexp ((double)mant, exponent - mant_bits);
2076 exponent -= mant_bits;
2077 mant_off += mant_bits;
2078 mant_bits_left -= mant_bits;
2081 /* Negate it if negative. */
2082 if (get_field (ufrom, fmt->byteorder, fmt->totalsize, fmt->sign_start, 1))
2087 static void put_field PARAMS ((unsigned char *, enum floatformat_byteorders,
2093 /* Set a field which starts at START and is LEN bytes long. DATA and
2094 TOTAL_LEN are the thing we are extracting it from, in byteorder ORDER. */
2096 put_field (data, order, total_len, start, len, stuff_to_put)
2097 unsigned char *data;
2098 enum floatformat_byteorders order;
2099 unsigned int total_len;
2102 unsigned long stuff_to_put;
2104 unsigned int cur_byte;
2107 /* Start at the least significant part of the field. */
2108 cur_byte = (start + len) / FLOATFORMAT_CHAR_BIT;
2109 if (order == floatformat_little)
2110 cur_byte = (total_len / FLOATFORMAT_CHAR_BIT) - cur_byte - 1;
2112 ((start + len) % FLOATFORMAT_CHAR_BIT) - FLOATFORMAT_CHAR_BIT;
2113 *(data + cur_byte) &=
2114 ~(((1 << ((start + len) % FLOATFORMAT_CHAR_BIT)) - 1) << (-cur_bitshift));
2115 *(data + cur_byte) |=
2116 (stuff_to_put & ((1 << FLOATFORMAT_CHAR_BIT) - 1)) << (-cur_bitshift);
2117 cur_bitshift += FLOATFORMAT_CHAR_BIT;
2118 if (order == floatformat_little)
2123 /* Move towards the most significant part of the field. */
2124 while (cur_bitshift < len)
2126 if (len - cur_bitshift < FLOATFORMAT_CHAR_BIT)
2128 /* This is the last byte. */
2129 *(data + cur_byte) &=
2130 ~((1 << (len - cur_bitshift)) - 1);
2131 *(data + cur_byte) |= (stuff_to_put >> cur_bitshift);
2134 *(data + cur_byte) = ((stuff_to_put >> cur_bitshift)
2135 & ((1 << FLOATFORMAT_CHAR_BIT) - 1));
2136 cur_bitshift += FLOATFORMAT_CHAR_BIT;
2137 if (order == floatformat_little)
2144 /* Return the fractional part of VALUE, and put the exponent of VALUE in *EPTR.
2145 The range of the returned value is >= 0.5 and < 1.0. This is equivalent to
2146 frexp, but operates on the long double data type. */
2148 static long double ldfrexp PARAMS ((long double value, int *eptr));
2151 ldfrexp (value, eptr)
2158 /* Unfortunately, there are no portable functions for extracting the exponent
2159 of a long double, so we have to do it iteratively by multiplying or dividing
2160 by two until the fraction is between 0.5 and 1.0. */
2168 if (value >= tmp) /* Value >= 1.0 */
2169 while (value >= tmp)
2174 else if (value != 0.0l) /* Value < 1.0 and > 0.0 */
2189 /* The converse: convert the long double *FROM to an extended float
2190 and store where TO points. Neither FROM nor TO have any alignment
2194 floatformat_from_long_double (fmt, from, to)
2195 CONST struct floatformat *fmt;
2202 unsigned int mant_bits, mant_off;
2204 unsigned char *uto = (unsigned char *)to;
2206 memcpy (&dfrom, from, sizeof (dfrom));
2207 memset (uto, 0, fmt->totalsize / FLOATFORMAT_CHAR_BIT);
2209 return; /* Result is zero */
2213 put_field (uto, fmt->byteorder, fmt->totalsize, fmt->exp_start,
2214 fmt->exp_len, fmt->exp_nan);
2215 /* Be sure it's not infinity, but NaN value is irrel */
2216 put_field (uto, fmt->byteorder, fmt->totalsize, fmt->man_start,
2221 /* If negative, set the sign bit. */
2224 put_field (uto, fmt->byteorder, fmt->totalsize, fmt->sign_start, 1, 1);
2228 /* How to tell an infinity from an ordinary number? FIXME-someday */
2230 mant = ldfrexp (dfrom, &exponent);
2231 put_field (uto, fmt->byteorder, fmt->totalsize, fmt->exp_start, fmt->exp_len,
2232 exponent + fmt->exp_bias - 1);
2234 mant_bits_left = fmt->man_len;
2235 mant_off = fmt->man_start;
2236 while (mant_bits_left > 0)
2238 unsigned long mant_long;
2239 mant_bits = mant_bits_left < 32 ? mant_bits_left : 32;
2241 mant *= 4294967296.0;
2242 mant_long = (unsigned long)mant;
2245 /* If the integer bit is implicit, then we need to discard it.
2246 If we are discarding a zero, we should be (but are not) creating
2247 a denormalized number which means adjusting the exponent
2249 if (mant_bits_left == fmt->man_len
2250 && fmt->intbit == floatformat_intbit_no)
2252 mant_long &= 0x7fffffff;
2255 else if (mant_bits < 32)
2257 /* The bits we want are in the most significant MANT_BITS bits of
2258 mant_long. Move them to the least significant. */
2259 mant_long >>= 32 - mant_bits;
2262 put_field (uto, fmt->byteorder, fmt->totalsize,
2263 mant_off, mant_bits, mant_long);
2264 mant_off += mant_bits;
2265 mant_bits_left -= mant_bits;
2269 #endif /* HAVE_LONG_DOUBLE */