1 /* General utility routines for GDB, the GNU debugger.
2 Copyright 1986, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
3 1996, 1997, 1998, 1999, 2000, 2001, 2002
4 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
24 #include "gdb_assert.h"
26 #include "gdb_string.h"
27 #include "event-top.h"
40 /* SunOS's curses.h has a '#define reg register' in it. Thank you Sun. */
51 #include "expression.h"
55 #include "inferior.h" /* for signed_pointer_to_address */
57 #include <sys/param.h> /* For MAXPATHLEN */
59 #include <readline/readline.h>
65 #ifdef NEED_DECLARATION_MALLOC
68 #ifdef NEED_DECLARATION_REALLOC
69 extern PTR realloc ();
71 #ifdef NEED_DECLARATION_FREE
76 #define XMALLOC(TYPE) ((TYPE*) xmalloc (sizeof (TYPE)))
78 /* readline defines this. */
81 void (*error_begin_hook) (void);
83 /* Holds the last error message issued by gdb */
85 static struct ui_file *gdb_lasterr;
87 /* Prototypes for local functions */
89 static void vfprintf_maybe_filtered (struct ui_file *, const char *,
92 static void fputs_maybe_filtered (const char *, struct ui_file *, int);
94 #if defined (USE_MMALLOC) && !defined (NO_MMCHECK)
95 static void malloc_botch (void);
98 static void prompt_for_continue (void);
100 static void set_width_command (char *, int, struct cmd_list_element *);
102 static void set_width (void);
104 /* Chain of cleanup actions established with make_cleanup,
105 to be executed if an error happens. */
107 static struct cleanup *cleanup_chain; /* cleaned up after a failed command */
108 static struct cleanup *final_cleanup_chain; /* cleaned up when gdb exits */
109 static struct cleanup *run_cleanup_chain; /* cleaned up on each 'run' */
110 static struct cleanup *exec_cleanup_chain; /* cleaned up on each execution command */
111 /* cleaned up on each error from within an execution command */
112 static struct cleanup *exec_error_cleanup_chain;
114 /* Pointer to what is left to do for an execution command after the
115 target stops. Used only in asynchronous mode, by targets that
116 support async execution. The finish and until commands use it. So
117 does the target extended-remote command. */
118 struct continuation *cmd_continuation;
119 struct continuation *intermediate_continuation;
121 /* Nonzero if we have job control. */
125 /* Nonzero means a quit has been requested. */
129 /* Nonzero means quit immediately if Control-C is typed now, rather
130 than waiting until QUIT is executed. Be careful in setting this;
131 code which executes with immediate_quit set has to be very careful
132 about being able to deal with being interrupted at any time. It is
133 almost always better to use QUIT; the only exception I can think of
134 is being able to quit out of a system call (using EINTR loses if
135 the SIGINT happens between the previous QUIT and the system call).
136 To immediately quit in the case in which a SIGINT happens between
137 the previous QUIT and setting immediate_quit (desirable anytime we
138 expect to block), call QUIT after setting immediate_quit. */
142 /* Nonzero means that encoded C++ names should be printed out in their
143 C++ form rather than raw. */
147 /* Nonzero means that encoded C++ names should be printed out in their
148 C++ form even in assembler language displays. If this is set, but
149 DEMANGLE is zero, names are printed raw, i.e. DEMANGLE controls. */
151 int asm_demangle = 0;
153 /* Nonzero means that strings with character values >0x7F should be printed
154 as octal escapes. Zero means just print the value (e.g. it's an
155 international character, and the terminal or window can cope.) */
157 int sevenbit_strings = 0;
159 /* String to be printed before error messages, if any. */
161 char *error_pre_print;
163 /* String to be printed before quit messages, if any. */
165 char *quit_pre_print;
167 /* String to be printed before warning messages, if any. */
169 char *warning_pre_print = "\nwarning: ";
171 int pagination_enabled = 1;
174 /* Add a new cleanup to the cleanup_chain,
175 and return the previous chain pointer
176 to be passed later to do_cleanups or discard_cleanups.
177 Args are FUNCTION to clean up with, and ARG to pass to it. */
180 make_cleanup (make_cleanup_ftype *function, void *arg)
182 return make_my_cleanup (&cleanup_chain, function, arg);
186 make_final_cleanup (make_cleanup_ftype *function, void *arg)
188 return make_my_cleanup (&final_cleanup_chain, function, arg);
192 make_run_cleanup (make_cleanup_ftype *function, void *arg)
194 return make_my_cleanup (&run_cleanup_chain, function, arg);
198 make_exec_cleanup (make_cleanup_ftype *function, void *arg)
200 return make_my_cleanup (&exec_cleanup_chain, function, arg);
204 make_exec_error_cleanup (make_cleanup_ftype *function, void *arg)
206 return make_my_cleanup (&exec_error_cleanup_chain, function, arg);
210 do_freeargv (void *arg)
212 freeargv ((char **) arg);
216 make_cleanup_freeargv (char **arg)
218 return make_my_cleanup (&cleanup_chain, do_freeargv, arg);
222 do_bfd_close_cleanup (void *arg)
228 make_cleanup_bfd_close (bfd *abfd)
230 return make_cleanup (do_bfd_close_cleanup, abfd);
234 do_close_cleanup (void *arg)
242 make_cleanup_close (int fd)
244 int *saved_fd = xmalloc (sizeof (fd));
246 return make_cleanup (do_close_cleanup, saved_fd);
250 do_ui_file_delete (void *arg)
252 ui_file_delete (arg);
256 make_cleanup_ui_file_delete (struct ui_file *arg)
258 return make_my_cleanup (&cleanup_chain, do_ui_file_delete, arg);
262 make_my_cleanup (struct cleanup **pmy_chain, make_cleanup_ftype *function,
265 register struct cleanup *new
266 = (struct cleanup *) xmalloc (sizeof (struct cleanup));
267 register struct cleanup *old_chain = *pmy_chain;
269 new->next = *pmy_chain;
270 new->function = function;
277 /* Discard cleanups and do the actions they describe
278 until we get back to the point OLD_CHAIN in the cleanup_chain. */
281 do_cleanups (register struct cleanup *old_chain)
283 do_my_cleanups (&cleanup_chain, old_chain);
287 do_final_cleanups (register struct cleanup *old_chain)
289 do_my_cleanups (&final_cleanup_chain, old_chain);
293 do_run_cleanups (register struct cleanup *old_chain)
295 do_my_cleanups (&run_cleanup_chain, old_chain);
299 do_exec_cleanups (register struct cleanup *old_chain)
301 do_my_cleanups (&exec_cleanup_chain, old_chain);
305 do_exec_error_cleanups (register struct cleanup *old_chain)
307 do_my_cleanups (&exec_error_cleanup_chain, old_chain);
311 do_my_cleanups (register struct cleanup **pmy_chain,
312 register struct cleanup *old_chain)
314 register struct cleanup *ptr;
315 while ((ptr = *pmy_chain) != old_chain)
317 *pmy_chain = ptr->next; /* Do this first incase recursion */
318 (*ptr->function) (ptr->arg);
323 /* Discard cleanups, not doing the actions they describe,
324 until we get back to the point OLD_CHAIN in the cleanup_chain. */
327 discard_cleanups (register struct cleanup *old_chain)
329 discard_my_cleanups (&cleanup_chain, old_chain);
333 discard_final_cleanups (register struct cleanup *old_chain)
335 discard_my_cleanups (&final_cleanup_chain, old_chain);
339 discard_exec_error_cleanups (register struct cleanup *old_chain)
341 discard_my_cleanups (&exec_error_cleanup_chain, old_chain);
345 discard_my_cleanups (register struct cleanup **pmy_chain,
346 register struct cleanup *old_chain)
348 register struct cleanup *ptr;
349 while ((ptr = *pmy_chain) != old_chain)
351 *pmy_chain = ptr->next;
356 /* Set the cleanup_chain to 0, and return the old cleanup chain. */
360 return save_my_cleanups (&cleanup_chain);
364 save_final_cleanups (void)
366 return save_my_cleanups (&final_cleanup_chain);
370 save_my_cleanups (struct cleanup **pmy_chain)
372 struct cleanup *old_chain = *pmy_chain;
378 /* Restore the cleanup chain from a previously saved chain. */
380 restore_cleanups (struct cleanup *chain)
382 restore_my_cleanups (&cleanup_chain, chain);
386 restore_final_cleanups (struct cleanup *chain)
388 restore_my_cleanups (&final_cleanup_chain, chain);
392 restore_my_cleanups (struct cleanup **pmy_chain, struct cleanup *chain)
397 /* This function is useful for cleanups.
401 old_chain = make_cleanup (free_current_contents, &foo);
403 to arrange to free the object thus allocated. */
406 free_current_contents (void *ptr)
408 void **location = ptr;
409 if (location == NULL)
410 internal_error (__FILE__, __LINE__,
411 "free_current_contents: NULL pointer");
412 if (*location != NULL)
419 /* Provide a known function that does nothing, to use as a base for
420 for a possibly long chain of cleanups. This is useful where we
421 use the cleanup chain for handling normal cleanups as well as dealing
422 with cleanups that need to be done as a result of a call to error().
423 In such cases, we may not be certain where the first cleanup is, unless
424 we have a do-nothing one to always use as the base. */
428 null_cleanup (void *arg)
432 /* Add a continuation to the continuation list, the global list
433 cmd_continuation. The new continuation will be added at the front.*/
435 add_continuation (void (*continuation_hook) (struct continuation_arg *),
436 struct continuation_arg *arg_list)
438 struct continuation *continuation_ptr;
440 continuation_ptr = (struct continuation *) xmalloc (sizeof (struct continuation));
441 continuation_ptr->continuation_hook = continuation_hook;
442 continuation_ptr->arg_list = arg_list;
443 continuation_ptr->next = cmd_continuation;
444 cmd_continuation = continuation_ptr;
447 /* Walk down the cmd_continuation list, and execute all the
448 continuations. There is a problem though. In some cases new
449 continuations may be added while we are in the middle of this
450 loop. If this happens they will be added in the front, and done
451 before we have a chance of exhausting those that were already
452 there. We need to then save the beginning of the list in a pointer
453 and do the continuations from there on, instead of using the
454 global beginning of list as our iteration pointer.*/
456 do_all_continuations (void)
458 struct continuation *continuation_ptr;
459 struct continuation *saved_continuation;
461 /* Copy the list header into another pointer, and set the global
462 list header to null, so that the global list can change as a side
463 effect of invoking the continuations and the processing of
464 the preexisting continuations will not be affected. */
465 continuation_ptr = cmd_continuation;
466 cmd_continuation = NULL;
468 /* Work now on the list we have set aside. */
469 while (continuation_ptr)
471 (continuation_ptr->continuation_hook) (continuation_ptr->arg_list);
472 saved_continuation = continuation_ptr;
473 continuation_ptr = continuation_ptr->next;
474 xfree (saved_continuation);
478 /* Walk down the cmd_continuation list, and get rid of all the
481 discard_all_continuations (void)
483 struct continuation *continuation_ptr;
485 while (cmd_continuation)
487 continuation_ptr = cmd_continuation;
488 cmd_continuation = continuation_ptr->next;
489 xfree (continuation_ptr);
493 /* Add a continuation to the continuation list, the global list
494 intermediate_continuation. The new continuation will be added at the front.*/
496 add_intermediate_continuation (void (*continuation_hook)
497 (struct continuation_arg *),
498 struct continuation_arg *arg_list)
500 struct continuation *continuation_ptr;
502 continuation_ptr = (struct continuation *) xmalloc (sizeof (struct continuation));
503 continuation_ptr->continuation_hook = continuation_hook;
504 continuation_ptr->arg_list = arg_list;
505 continuation_ptr->next = intermediate_continuation;
506 intermediate_continuation = continuation_ptr;
509 /* Walk down the cmd_continuation list, and execute all the
510 continuations. There is a problem though. In some cases new
511 continuations may be added while we are in the middle of this
512 loop. If this happens they will be added in the front, and done
513 before we have a chance of exhausting those that were already
514 there. We need to then save the beginning of the list in a pointer
515 and do the continuations from there on, instead of using the
516 global beginning of list as our iteration pointer.*/
518 do_all_intermediate_continuations (void)
520 struct continuation *continuation_ptr;
521 struct continuation *saved_continuation;
523 /* Copy the list header into another pointer, and set the global
524 list header to null, so that the global list can change as a side
525 effect of invoking the continuations and the processing of
526 the preexisting continuations will not be affected. */
527 continuation_ptr = intermediate_continuation;
528 intermediate_continuation = NULL;
530 /* Work now on the list we have set aside. */
531 while (continuation_ptr)
533 (continuation_ptr->continuation_hook) (continuation_ptr->arg_list);
534 saved_continuation = continuation_ptr;
535 continuation_ptr = continuation_ptr->next;
536 xfree (saved_continuation);
540 /* Walk down the cmd_continuation list, and get rid of all the
543 discard_all_intermediate_continuations (void)
545 struct continuation *continuation_ptr;
547 while (intermediate_continuation)
549 continuation_ptr = intermediate_continuation;
550 intermediate_continuation = continuation_ptr->next;
551 xfree (continuation_ptr);
557 /* Print a warning message. Way to use this is to call warning_begin,
558 output the warning message (use unfiltered output to gdb_stderr),
559 ending in a newline. There is not currently a warning_end that you
560 call afterwards, but such a thing might be added if it is useful
561 for a GUI to separate warning messages from other output.
563 FIXME: Why do warnings use unfiltered output and errors filtered?
564 Is this anything other than a historical accident? */
569 target_terminal_ours ();
570 wrap_here (""); /* Force out any buffered output */
571 gdb_flush (gdb_stdout);
572 if (warning_pre_print)
573 fprintf_unfiltered (gdb_stderr, warning_pre_print);
576 /* Print a warning message.
577 The first argument STRING is the warning message, used as a fprintf string,
578 and the remaining args are passed as arguments to it.
579 The primary difference between warnings and errors is that a warning
580 does not force the return to command level. */
583 warning (const char *string,...)
586 va_start (args, string);
588 (*warning_hook) (string, args);
592 vfprintf_unfiltered (gdb_stderr, string, args);
593 fprintf_unfiltered (gdb_stderr, "\n");
598 /* Start the printing of an error message. Way to use this is to call
599 this, output the error message (use filtered output to gdb_stderr
600 (FIXME: Some callers, like memory_error, use gdb_stdout)), ending
601 in a newline, and then call return_to_top_level (RETURN_ERROR).
602 error() provides a convenient way to do this for the special case
603 that the error message can be formatted with a single printf call,
604 but this is more general. */
608 if (error_begin_hook)
611 target_terminal_ours ();
612 wrap_here (""); /* Force out any buffered output */
613 gdb_flush (gdb_stdout);
615 annotate_error_begin ();
618 fprintf_filtered (gdb_stderr, error_pre_print);
621 /* Print an error message and return to command level.
622 The first argument STRING is the error message, used as a fprintf string,
623 and the remaining args are passed as arguments to it. */
626 verror (const char *string, va_list args)
629 struct cleanup *err_string_cleanup;
630 /* FIXME: cagney/1999-11-10: All error calls should come here.
631 Unfortunately some code uses the sequence: error_begin(); print
632 error message; return_to_top_level. That code should be
635 /* NOTE: It's tempting to just do the following...
636 vfprintf_filtered (gdb_stderr, string, args);
637 and then follow with a similar looking statement to cause the message
638 to also go to gdb_lasterr. But if we do this, we'll be traversing the
639 va_list twice which works on some platforms and fails miserably on
641 /* Save it as the last error */
642 ui_file_rewind (gdb_lasterr);
643 vfprintf_filtered (gdb_lasterr, string, args);
644 /* Retrieve the last error and print it to gdb_stderr */
645 err_string = error_last_message ();
646 err_string_cleanup = make_cleanup (xfree, err_string);
647 fputs_filtered (err_string, gdb_stderr);
648 fprintf_filtered (gdb_stderr, "\n");
649 do_cleanups (err_string_cleanup);
650 return_to_top_level (RETURN_ERROR);
654 error (const char *string,...)
657 va_start (args, string);
658 verror (string, args);
663 error_stream (struct ui_file *stream)
666 char *msg = ui_file_xstrdup (stream, &size);
667 make_cleanup (xfree, msg);
671 /* Get the last error message issued by gdb */
674 error_last_message (void)
677 return ui_file_xstrdup (gdb_lasterr, &len);
680 /* This is to be called by main() at the very beginning */
685 gdb_lasterr = mem_fileopen ();
688 /* Print a message reporting an internal error. Ask the user if they
689 want to continue, dump core, or just exit. */
692 internal_verror (const char *file, int line,
693 const char *fmt, va_list ap)
695 static char msg[] = "Internal GDB error: recursive internal error.\n";
696 static int dejavu = 0;
700 /* don't allow infinite error recursion. */
708 fputs_unfiltered (msg, gdb_stderr);
709 abort (); /* NOTE: GDB has only three calls to abort(). */
712 write (STDERR_FILENO, msg, sizeof (msg));
716 /* Try to get the message out */
717 target_terminal_ours ();
718 fprintf_unfiltered (gdb_stderr, "%s:%d: gdb-internal-error: ", file, line);
719 vfprintf_unfiltered (gdb_stderr, fmt, ap);
720 fputs_unfiltered ("\n", gdb_stderr);
722 /* Default (yes/batch case) is to quit GDB. When in batch mode this
723 lessens the likelhood of GDB going into an infinate loop. */
725 An internal GDB error was detected. This may make further\n\
726 debugging unreliable. Quit this debugging session? ");
728 /* Default (yes/batch case) is to dump core. This leaves a GDB
729 dropping so that it is easier to see that something went wrong to
731 dump_core_p = query ("\
732 Create a core file containing the current state of GDB? ");
737 abort (); /* NOTE: GDB has only three calls to abort(). */
746 abort (); /* NOTE: GDB has only three calls to abort(). */
751 return_to_top_level (RETURN_ERROR);
755 internal_error (const char *file, int line, const char *string, ...)
758 va_start (ap, string);
760 internal_verror (file, line, string, ap);
764 /* The strerror() function can return NULL for errno values that are
765 out of range. Provide a "safe" version that always returns a
769 safe_strerror (int errnum)
774 if ((msg = strerror (errnum)) == NULL)
776 sprintf (buf, "(undocumented errno %d)", errnum);
782 /* Print the system error message for errno, and also mention STRING
783 as the file name for which the error was encountered.
784 Then return to command level. */
787 perror_with_name (char *string)
792 err = safe_strerror (errno);
793 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
794 strcpy (combined, string);
795 strcat (combined, ": ");
796 strcat (combined, err);
798 /* I understand setting these is a matter of taste. Still, some people
799 may clear errno but not know about bfd_error. Doing this here is not
801 bfd_set_error (bfd_error_no_error);
804 error ("%s.", combined);
807 /* Print the system error message for ERRCODE, and also mention STRING
808 as the file name for which the error was encountered. */
811 print_sys_errmsg (char *string, int errcode)
816 err = safe_strerror (errcode);
817 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
818 strcpy (combined, string);
819 strcat (combined, ": ");
820 strcat (combined, err);
822 /* We want anything which was printed on stdout to come out first, before
824 gdb_flush (gdb_stdout);
825 fprintf_unfiltered (gdb_stderr, "%s.\n", combined);
828 /* Control C eventually causes this to be called, at a convenient time. */
833 struct serial *gdb_stdout_serial = serial_fdopen (1);
835 target_terminal_ours ();
837 /* We want all output to appear now, before we print "Quit". We
838 have 3 levels of buffering we have to flush (it's possible that
839 some of these should be changed to flush the lower-level ones
842 /* 1. The _filtered buffer. */
843 wrap_here ((char *) 0);
845 /* 2. The stdio buffer. */
846 gdb_flush (gdb_stdout);
847 gdb_flush (gdb_stderr);
849 /* 3. The system-level buffer. */
850 serial_drain_output (gdb_stdout_serial);
851 serial_un_fdopen (gdb_stdout_serial);
853 annotate_error_begin ();
855 /* Don't use *_filtered; we don't want to prompt the user to continue. */
857 fprintf_unfiltered (gdb_stderr, quit_pre_print);
860 /* No steenking SIGINT will ever be coming our way when the
861 program is resumed. Don't lie. */
862 fprintf_unfiltered (gdb_stderr, "Quit\n");
865 /* If there is no terminal switching for this target, then we can't
866 possibly get screwed by the lack of job control. */
867 || current_target.to_terminal_ours == NULL)
868 fprintf_unfiltered (gdb_stderr, "Quit\n");
870 fprintf_unfiltered (gdb_stderr,
871 "Quit (expect signal SIGINT when the program is resumed)\n");
873 return_to_top_level (RETURN_QUIT);
876 /* Control C comes here */
878 request_quit (int signo)
881 /* Restore the signal handler. Harmless with BSD-style signals, needed
882 for System V-style signals. So just always do it, rather than worrying
883 about USG defines and stuff like that. */
884 signal (signo, request_quit);
894 /* Memory management stuff (malloc friends). */
896 #if !defined (USE_MMALLOC)
898 /* NOTE: These must use PTR so that their definition matches the
899 declaration found in "mmalloc.h". */
902 mmalloc (void *md, size_t size)
904 return malloc (size); /* NOTE: GDB's only call to malloc() */
908 mrealloc (void *md, void *ptr, size_t size)
910 if (ptr == 0) /* Guard against old realloc's */
911 return mmalloc (md, size);
913 return realloc (ptr, size); /* NOTE: GDB's only call to ralloc() */
917 mcalloc (void *md, size_t number, size_t size)
919 return calloc (number, size); /* NOTE: GDB's only call to calloc() */
923 mfree (void *md, void *ptr)
925 free (ptr); /* NOTE: GDB's only call to free() */
928 #endif /* USE_MMALLOC */
930 #if !defined (USE_MMALLOC) || defined (NO_MMCHECK)
933 init_malloc (void *md)
937 #else /* Have mmalloc and want corruption checking */
942 fprintf_unfiltered (gdb_stderr, "Memory corruption\n");
943 internal_error (__FILE__, __LINE__, "failed internal consistency check");
946 /* Attempt to install hooks in mmalloc/mrealloc/mfree for the heap specified
947 by MD, to detect memory corruption. Note that MD may be NULL to specify
948 the default heap that grows via sbrk.
950 Note that for freshly created regions, we must call mmcheckf prior to any
951 mallocs in the region. Otherwise, any region which was allocated prior to
952 installing the checking hooks, which is later reallocated or freed, will
953 fail the checks! The mmcheck function only allows initial hooks to be
954 installed before the first mmalloc. However, anytime after we have called
955 mmcheck the first time to install the checking hooks, we can call it again
956 to update the function pointer to the memory corruption handler.
958 Returns zero on failure, non-zero on success. */
960 #ifndef MMCHECK_FORCE
961 #define MMCHECK_FORCE 0
965 init_malloc (void *md)
967 if (!mmcheckf (md, malloc_botch, MMCHECK_FORCE))
969 /* Don't use warning(), which relies on current_target being set
970 to something other than dummy_target, until after
971 initialize_all_files(). */
974 (gdb_stderr, "warning: failed to install memory consistency checks; ");
976 (gdb_stderr, "configuration should define NO_MMCHECK or MMCHECK_FORCE\n");
982 #endif /* Have mmalloc and want corruption checking */
984 /* Called when a memory allocation fails, with the number of bytes of
985 memory requested in SIZE. */
992 internal_error (__FILE__, __LINE__,
993 "virtual memory exhausted: can't allocate %ld bytes.", size);
997 internal_error (__FILE__, __LINE__,
998 "virtual memory exhausted.");
1002 /* The xmmalloc() family of memory management routines.
1004 These are are like the mmalloc() family except that they implement
1005 consistent semantics and guard against typical memory management
1006 problems: if a malloc fails, an internal error is thrown; if
1007 free(NULL) is called, it is ignored; if *alloc(0) is called, NULL
1010 All these routines are implemented using the mmalloc() family. */
1013 xmmalloc (void *md, size_t size)
1023 val = mmalloc (md, size);
1031 xmrealloc (void *md, void *ptr, size_t size)
1045 val = mrealloc (md, ptr, size);
1049 val = mmalloc (md, size);
1060 xmcalloc (void *md, size_t number, size_t size)
1063 if (number == 0 || size == 0)
1067 mem = mcalloc (md, number, size);
1069 nomem (number * size);
1075 xmfree (void *md, void *ptr)
1081 /* The xmalloc() (libiberty.h) family of memory management routines.
1083 These are like the ISO-C malloc() family except that they implement
1084 consistent semantics and guard against typical memory management
1085 problems. See xmmalloc() above for further information.
1087 All these routines are wrappers to the xmmalloc() family. */
1089 /* NOTE: These are declared using PTR to ensure consistency with
1090 "libiberty.h". xfree() is GDB local. */
1093 xmalloc (size_t size)
1095 return xmmalloc (NULL, size);
1099 xrealloc (PTR ptr, size_t size)
1101 return xmrealloc (NULL, ptr, size);
1105 xcalloc (size_t number, size_t size)
1107 return xmcalloc (NULL, number, size);
1117 /* Like asprintf/vasprintf but get an internal_error if the call
1121 xasprintf (char **ret, const char *format, ...)
1124 va_start (args, format);
1125 xvasprintf (ret, format, args);
1130 xvasprintf (char **ret, const char *format, va_list ap)
1132 int status = vasprintf (ret, format, ap);
1133 /* NULL could be returned due to a memory allocation problem; a
1134 badly format string; or something else. */
1136 internal_error (__FILE__, __LINE__,
1137 "vasprintf returned NULL buffer (errno %d)",
1139 /* A negative status with a non-NULL buffer shouldn't never
1140 happen. But to be sure. */
1142 internal_error (__FILE__, __LINE__,
1143 "vasprintf call failed (errno %d)",
1148 /* My replacement for the read system call.
1149 Used like `read' but keeps going if `read' returns too soon. */
1152 myread (int desc, char *addr, int len)
1159 val = read (desc, addr, len);
1163 return orglen - len;
1170 /* Make a copy of the string at PTR with SIZE characters
1171 (and add a null character at the end in the copy).
1172 Uses malloc to get the space. Returns the address of the copy. */
1175 savestring (const char *ptr, size_t size)
1177 register char *p = (char *) xmalloc (size + 1);
1178 memcpy (p, ptr, size);
1184 msavestring (void *md, const char *ptr, size_t size)
1186 register char *p = (char *) xmmalloc (md, size + 1);
1187 memcpy (p, ptr, size);
1193 mstrsave (void *md, const char *ptr)
1195 return (msavestring (md, ptr, strlen (ptr)));
1199 print_spaces (register int n, register struct ui_file *file)
1201 fputs_unfiltered (n_spaces (n), file);
1204 /* Print a host address. */
1207 gdb_print_host_address (void *addr, struct ui_file *stream)
1210 /* We could use the %p conversion specifier to fprintf if we had any
1211 way of knowing whether this host supports it. But the following
1212 should work on the Alpha and on 32 bit machines. */
1214 fprintf_filtered (stream, "0x%lx", (unsigned long) addr);
1217 /* Ask user a y-or-n question and return 1 iff answer is yes.
1218 Takes three args which are given to printf to print the question.
1219 The first, a control string, should end in "? ".
1220 It should not say how to answer, because we do that. */
1224 query (char *ctlstr,...)
1227 register int answer;
1231 va_start (args, ctlstr);
1235 return query_hook (ctlstr, args);
1238 /* Automatically answer "yes" if input is not from a terminal. */
1239 if (!input_from_terminal_p ())
1244 wrap_here (""); /* Flush any buffered output */
1245 gdb_flush (gdb_stdout);
1247 if (annotation_level > 1)
1248 printf_filtered ("\n\032\032pre-query\n");
1250 vfprintf_filtered (gdb_stdout, ctlstr, args);
1251 printf_filtered ("(y or n) ");
1253 if (annotation_level > 1)
1254 printf_filtered ("\n\032\032query\n");
1257 gdb_flush (gdb_stdout);
1259 answer = fgetc (stdin);
1260 clearerr (stdin); /* in case of C-d */
1261 if (answer == EOF) /* C-d */
1266 /* Eat rest of input line, to EOF or newline */
1270 ans2 = fgetc (stdin);
1273 while (ans2 != EOF && ans2 != '\n' && ans2 != '\r');
1287 printf_filtered ("Please answer y or n.\n");
1290 if (annotation_level > 1)
1291 printf_filtered ("\n\032\032post-query\n");
1296 /* Parse a C escape sequence. STRING_PTR points to a variable
1297 containing a pointer to the string to parse. That pointer
1298 should point to the character after the \. That pointer
1299 is updated past the characters we use. The value of the
1300 escape sequence is returned.
1302 A negative value means the sequence \ newline was seen,
1303 which is supposed to be equivalent to nothing at all.
1305 If \ is followed by a null character, we return a negative
1306 value and leave the string pointer pointing at the null character.
1308 If \ is followed by 000, we return 0 and leave the string pointer
1309 after the zeros. A value of 0 does not mean end of string. */
1312 parse_escape (char **string_ptr)
1314 register int c = *(*string_ptr)++;
1318 return 007; /* Bell (alert) char */
1321 case 'e': /* Escape character */
1339 c = *(*string_ptr)++;
1341 c = parse_escape (string_ptr);
1344 return (c & 0200) | (c & 037);
1355 register int i = c - '0';
1356 register int count = 0;
1359 if ((c = *(*string_ptr)++) >= '0' && c <= '7')
1377 /* Print the character C on STREAM as part of the contents of a literal
1378 string whose delimiter is QUOTER. Note that this routine should only
1379 be call for printing things which are independent of the language
1380 of the program being debugged. */
1383 printchar (int c, void (*do_fputs) (const char *, struct ui_file *),
1384 void (*do_fprintf) (struct ui_file *, const char *, ...),
1385 struct ui_file *stream, int quoter)
1388 c &= 0xFF; /* Avoid sign bit follies */
1390 if (c < 0x20 || /* Low control chars */
1391 (c >= 0x7F && c < 0xA0) || /* DEL, High controls */
1392 (sevenbit_strings && c >= 0x80))
1393 { /* high order bit set */
1397 do_fputs ("\\n", stream);
1400 do_fputs ("\\b", stream);
1403 do_fputs ("\\t", stream);
1406 do_fputs ("\\f", stream);
1409 do_fputs ("\\r", stream);
1412 do_fputs ("\\e", stream);
1415 do_fputs ("\\a", stream);
1418 do_fprintf (stream, "\\%.3o", (unsigned int) c);
1424 if (c == '\\' || c == quoter)
1425 do_fputs ("\\", stream);
1426 do_fprintf (stream, "%c", c);
1430 /* Print the character C on STREAM as part of the contents of a
1431 literal string whose delimiter is QUOTER. Note that these routines
1432 should only be call for printing things which are independent of
1433 the language of the program being debugged. */
1436 fputstr_filtered (const char *str, int quoter, struct ui_file *stream)
1439 printchar (*str++, fputs_filtered, fprintf_filtered, stream, quoter);
1443 fputstr_unfiltered (const char *str, int quoter, struct ui_file *stream)
1446 printchar (*str++, fputs_unfiltered, fprintf_unfiltered, stream, quoter);
1450 fputstrn_unfiltered (const char *str, int n, int quoter, struct ui_file *stream)
1453 for (i = 0; i < n; i++)
1454 printchar (str[i], fputs_unfiltered, fprintf_unfiltered, stream, quoter);
1459 /* Number of lines per page or UINT_MAX if paging is disabled. */
1460 static unsigned int lines_per_page;
1461 /* Number of chars per line or UINT_MAX if line folding is disabled. */
1462 static unsigned int chars_per_line;
1463 /* Current count of lines printed on this page, chars on this line. */
1464 static unsigned int lines_printed, chars_printed;
1466 /* Buffer and start column of buffered text, for doing smarter word-
1467 wrapping. When someone calls wrap_here(), we start buffering output
1468 that comes through fputs_filtered(). If we see a newline, we just
1469 spit it out and forget about the wrap_here(). If we see another
1470 wrap_here(), we spit it out and remember the newer one. If we see
1471 the end of the line, we spit out a newline, the indent, and then
1472 the buffered output. */
1474 /* Malloc'd buffer with chars_per_line+2 bytes. Contains characters which
1475 are waiting to be output (they have already been counted in chars_printed).
1476 When wrap_buffer[0] is null, the buffer is empty. */
1477 static char *wrap_buffer;
1479 /* Pointer in wrap_buffer to the next character to fill. */
1480 static char *wrap_pointer;
1482 /* String to indent by if the wrap occurs. Must not be NULL if wrap_column
1484 static char *wrap_indent;
1486 /* Column number on the screen where wrap_buffer begins, or 0 if wrapping
1487 is not in effect. */
1488 static int wrap_column;
1491 /* Inialize the lines and chars per page */
1493 init_page_info (void)
1496 if (!tui_get_command_dimension (&chars_per_line, &lines_per_page))
1499 /* These defaults will be used if we are unable to get the correct
1500 values from termcap. */
1501 #if defined(__GO32__)
1502 lines_per_page = ScreenRows ();
1503 chars_per_line = ScreenCols ();
1505 lines_per_page = 24;
1506 chars_per_line = 80;
1508 #if !defined (_WIN32)
1509 /* No termcap under MPW, although might be cool to do something
1510 by looking at worksheet or console window sizes. */
1511 /* Initialize the screen height and width from termcap. */
1513 char *termtype = getenv ("TERM");
1515 /* Positive means success, nonpositive means failure. */
1518 /* 2048 is large enough for all known terminals, according to the
1519 GNU termcap manual. */
1520 char term_buffer[2048];
1524 status = tgetent (term_buffer, termtype);
1528 int running_in_emacs = getenv ("EMACS") != NULL;
1530 val = tgetnum ("li");
1531 if (val >= 0 && !running_in_emacs)
1532 lines_per_page = val;
1534 /* The number of lines per page is not mentioned
1535 in the terminal description. This probably means
1536 that paging is not useful (e.g. emacs shell window),
1537 so disable paging. */
1538 lines_per_page = UINT_MAX;
1540 val = tgetnum ("co");
1542 chars_per_line = val;
1548 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1550 /* If there is a better way to determine the window size, use it. */
1551 SIGWINCH_HANDLER (SIGWINCH);
1554 /* If the output is not a terminal, don't paginate it. */
1555 if (!ui_file_isatty (gdb_stdout))
1556 lines_per_page = UINT_MAX;
1557 } /* the command_line_version */
1564 if (chars_per_line == 0)
1569 wrap_buffer = (char *) xmalloc (chars_per_line + 2);
1570 wrap_buffer[0] = '\0';
1573 wrap_buffer = (char *) xrealloc (wrap_buffer, chars_per_line + 2);
1574 wrap_pointer = wrap_buffer; /* Start it at the beginning */
1579 set_width_command (char *args, int from_tty, struct cmd_list_element *c)
1584 /* Wait, so the user can read what's on the screen. Prompt the user
1585 to continue by pressing RETURN. */
1588 prompt_for_continue (void)
1591 char cont_prompt[120];
1593 if (annotation_level > 1)
1594 printf_unfiltered ("\n\032\032pre-prompt-for-continue\n");
1596 strcpy (cont_prompt,
1597 "---Type <return> to continue, or q <return> to quit---");
1598 if (annotation_level > 1)
1599 strcat (cont_prompt, "\n\032\032prompt-for-continue\n");
1601 /* We must do this *before* we call gdb_readline, else it will eventually
1602 call us -- thinking that we're trying to print beyond the end of the
1604 reinitialize_more_filter ();
1607 /* On a real operating system, the user can quit with SIGINT.
1610 'q' is provided on all systems so users don't have to change habits
1611 from system to system, and because telling them what to do in
1612 the prompt is more user-friendly than expecting them to think of
1614 /* Call readline, not gdb_readline, because GO32 readline handles control-C
1615 whereas control-C to gdb_readline will cause the user to get dumped
1617 ignore = readline (cont_prompt);
1619 if (annotation_level > 1)
1620 printf_unfiltered ("\n\032\032post-prompt-for-continue\n");
1625 while (*p == ' ' || *p == '\t')
1630 request_quit (SIGINT);
1632 async_request_quit (0);
1638 /* Now we have to do this again, so that GDB will know that it doesn't
1639 need to save the ---Type <return>--- line at the top of the screen. */
1640 reinitialize_more_filter ();
1642 dont_repeat (); /* Forget prev cmd -- CR won't repeat it. */
1645 /* Reinitialize filter; ie. tell it to reset to original values. */
1648 reinitialize_more_filter (void)
1654 /* Indicate that if the next sequence of characters overflows the line,
1655 a newline should be inserted here rather than when it hits the end.
1656 If INDENT is non-null, it is a string to be printed to indent the
1657 wrapped part on the next line. INDENT must remain accessible until
1658 the next call to wrap_here() or until a newline is printed through
1661 If the line is already overfull, we immediately print a newline and
1662 the indentation, and disable further wrapping.
1664 If we don't know the width of lines, but we know the page height,
1665 we must not wrap words, but should still keep track of newlines
1666 that were explicitly printed.
1668 INDENT should not contain tabs, as that will mess up the char count
1669 on the next line. FIXME.
1671 This routine is guaranteed to force out any output which has been
1672 squirreled away in the wrap_buffer, so wrap_here ((char *)0) can be
1673 used to force out output from the wrap_buffer. */
1676 wrap_here (char *indent)
1678 /* This should have been allocated, but be paranoid anyway. */
1680 internal_error (__FILE__, __LINE__, "failed internal consistency check");
1684 *wrap_pointer = '\0';
1685 fputs_unfiltered (wrap_buffer, gdb_stdout);
1687 wrap_pointer = wrap_buffer;
1688 wrap_buffer[0] = '\0';
1689 if (chars_per_line == UINT_MAX) /* No line overflow checking */
1693 else if (chars_printed >= chars_per_line)
1695 puts_filtered ("\n");
1697 puts_filtered (indent);
1702 wrap_column = chars_printed;
1706 wrap_indent = indent;
1710 /* Ensure that whatever gets printed next, using the filtered output
1711 commands, starts at the beginning of the line. I.E. if there is
1712 any pending output for the current line, flush it and start a new
1713 line. Otherwise do nothing. */
1718 if (chars_printed > 0)
1720 puts_filtered ("\n");
1725 /* Like fputs but if FILTER is true, pause after every screenful.
1727 Regardless of FILTER can wrap at points other than the final
1728 character of a line.
1730 Unlike fputs, fputs_maybe_filtered does not return a value.
1731 It is OK for LINEBUFFER to be NULL, in which case just don't print
1734 Note that a longjmp to top level may occur in this routine (only if
1735 FILTER is true) (since prompt_for_continue may do so) so this
1736 routine should not be called when cleanups are not in place. */
1739 fputs_maybe_filtered (const char *linebuffer, struct ui_file *stream,
1742 const char *lineptr;
1744 if (linebuffer == 0)
1747 /* Don't do any filtering if it is disabled. */
1748 if ((stream != gdb_stdout) || !pagination_enabled
1749 || (lines_per_page == UINT_MAX && chars_per_line == UINT_MAX))
1751 fputs_unfiltered (linebuffer, stream);
1755 /* Go through and output each character. Show line extension
1756 when this is necessary; prompt user for new page when this is
1759 lineptr = linebuffer;
1762 /* Possible new page. */
1764 (lines_printed >= lines_per_page - 1))
1765 prompt_for_continue ();
1767 while (*lineptr && *lineptr != '\n')
1769 /* Print a single line. */
1770 if (*lineptr == '\t')
1773 *wrap_pointer++ = '\t';
1775 fputc_unfiltered ('\t', stream);
1776 /* Shifting right by 3 produces the number of tab stops
1777 we have already passed, and then adding one and
1778 shifting left 3 advances to the next tab stop. */
1779 chars_printed = ((chars_printed >> 3) + 1) << 3;
1785 *wrap_pointer++ = *lineptr;
1787 fputc_unfiltered (*lineptr, stream);
1792 if (chars_printed >= chars_per_line)
1794 unsigned int save_chars = chars_printed;
1798 /* If we aren't actually wrapping, don't output newline --
1799 if chars_per_line is right, we probably just overflowed
1800 anyway; if it's wrong, let us keep going. */
1802 fputc_unfiltered ('\n', stream);
1804 /* Possible new page. */
1805 if (lines_printed >= lines_per_page - 1)
1806 prompt_for_continue ();
1808 /* Now output indentation and wrapped string */
1811 fputs_unfiltered (wrap_indent, stream);
1812 *wrap_pointer = '\0'; /* Null-terminate saved stuff */
1813 fputs_unfiltered (wrap_buffer, stream); /* and eject it */
1814 /* FIXME, this strlen is what prevents wrap_indent from
1815 containing tabs. However, if we recurse to print it
1816 and count its chars, we risk trouble if wrap_indent is
1817 longer than (the user settable) chars_per_line.
1818 Note also that this can set chars_printed > chars_per_line
1819 if we are printing a long string. */
1820 chars_printed = strlen (wrap_indent)
1821 + (save_chars - wrap_column);
1822 wrap_pointer = wrap_buffer; /* Reset buffer */
1823 wrap_buffer[0] = '\0';
1824 wrap_column = 0; /* And disable fancy wrap */
1829 if (*lineptr == '\n')
1832 wrap_here ((char *) 0); /* Spit out chars, cancel further wraps */
1834 fputc_unfiltered ('\n', stream);
1841 fputs_filtered (const char *linebuffer, struct ui_file *stream)
1843 fputs_maybe_filtered (linebuffer, stream, 1);
1847 putchar_unfiltered (int c)
1850 ui_file_write (gdb_stdout, &buf, 1);
1854 /* Write character C to gdb_stdout using GDB's paging mechanism and return C.
1855 May return nonlocally. */
1858 putchar_filtered (int c)
1860 return fputc_filtered (c, gdb_stdout);
1864 fputc_unfiltered (int c, struct ui_file *stream)
1867 ui_file_write (stream, &buf, 1);
1872 fputc_filtered (int c, struct ui_file *stream)
1878 fputs_filtered (buf, stream);
1882 /* puts_debug is like fputs_unfiltered, except it prints special
1883 characters in printable fashion. */
1886 puts_debug (char *prefix, char *string, char *suffix)
1890 /* Print prefix and suffix after each line. */
1891 static int new_line = 1;
1892 static int return_p = 0;
1893 static char *prev_prefix = "";
1894 static char *prev_suffix = "";
1896 if (*string == '\n')
1899 /* If the prefix is changing, print the previous suffix, a new line,
1900 and the new prefix. */
1901 if ((return_p || (strcmp (prev_prefix, prefix) != 0)) && !new_line)
1903 fputs_unfiltered (prev_suffix, gdb_stdlog);
1904 fputs_unfiltered ("\n", gdb_stdlog);
1905 fputs_unfiltered (prefix, gdb_stdlog);
1908 /* Print prefix if we printed a newline during the previous call. */
1912 fputs_unfiltered (prefix, gdb_stdlog);
1915 prev_prefix = prefix;
1916 prev_suffix = suffix;
1918 /* Output characters in a printable format. */
1919 while ((ch = *string++) != '\0')
1925 fputc_unfiltered (ch, gdb_stdlog);
1928 fprintf_unfiltered (gdb_stdlog, "\\x%02x", ch & 0xff);
1932 fputs_unfiltered ("\\\\", gdb_stdlog);
1935 fputs_unfiltered ("\\b", gdb_stdlog);
1938 fputs_unfiltered ("\\f", gdb_stdlog);
1942 fputs_unfiltered ("\\n", gdb_stdlog);
1945 fputs_unfiltered ("\\r", gdb_stdlog);
1948 fputs_unfiltered ("\\t", gdb_stdlog);
1951 fputs_unfiltered ("\\v", gdb_stdlog);
1955 return_p = ch == '\r';
1958 /* Print suffix if we printed a newline. */
1961 fputs_unfiltered (suffix, gdb_stdlog);
1962 fputs_unfiltered ("\n", gdb_stdlog);
1967 /* Print a variable number of ARGS using format FORMAT. If this
1968 information is going to put the amount written (since the last call
1969 to REINITIALIZE_MORE_FILTER or the last page break) over the page size,
1970 call prompt_for_continue to get the users permision to continue.
1972 Unlike fprintf, this function does not return a value.
1974 We implement three variants, vfprintf (takes a vararg list and stream),
1975 fprintf (takes a stream to write on), and printf (the usual).
1977 Note also that a longjmp to top level may occur in this routine
1978 (since prompt_for_continue may do so) so this routine should not be
1979 called when cleanups are not in place. */
1982 vfprintf_maybe_filtered (struct ui_file *stream, const char *format,
1983 va_list args, int filter)
1986 struct cleanup *old_cleanups;
1988 xvasprintf (&linebuffer, format, args);
1989 old_cleanups = make_cleanup (xfree, linebuffer);
1990 fputs_maybe_filtered (linebuffer, stream, filter);
1991 do_cleanups (old_cleanups);
1996 vfprintf_filtered (struct ui_file *stream, const char *format, va_list args)
1998 vfprintf_maybe_filtered (stream, format, args, 1);
2002 vfprintf_unfiltered (struct ui_file *stream, const char *format, va_list args)
2005 struct cleanup *old_cleanups;
2007 xvasprintf (&linebuffer, format, args);
2008 old_cleanups = make_cleanup (xfree, linebuffer);
2009 fputs_unfiltered (linebuffer, stream);
2010 do_cleanups (old_cleanups);
2014 vprintf_filtered (const char *format, va_list args)
2016 vfprintf_maybe_filtered (gdb_stdout, format, args, 1);
2020 vprintf_unfiltered (const char *format, va_list args)
2022 vfprintf_unfiltered (gdb_stdout, format, args);
2026 fprintf_filtered (struct ui_file * stream, const char *format,...)
2029 va_start (args, format);
2030 vfprintf_filtered (stream, format, args);
2035 fprintf_unfiltered (struct ui_file * stream, const char *format,...)
2038 va_start (args, format);
2039 vfprintf_unfiltered (stream, format, args);
2043 /* Like fprintf_filtered, but prints its result indented.
2044 Called as fprintfi_filtered (spaces, stream, format, ...); */
2047 fprintfi_filtered (int spaces, struct ui_file * stream, const char *format,...)
2050 va_start (args, format);
2051 print_spaces_filtered (spaces, stream);
2053 vfprintf_filtered (stream, format, args);
2059 printf_filtered (const char *format,...)
2062 va_start (args, format);
2063 vfprintf_filtered (gdb_stdout, format, args);
2069 printf_unfiltered (const char *format,...)
2072 va_start (args, format);
2073 vfprintf_unfiltered (gdb_stdout, format, args);
2077 /* Like printf_filtered, but prints it's result indented.
2078 Called as printfi_filtered (spaces, format, ...); */
2081 printfi_filtered (int spaces, const char *format,...)
2084 va_start (args, format);
2085 print_spaces_filtered (spaces, gdb_stdout);
2086 vfprintf_filtered (gdb_stdout, format, args);
2090 /* Easy -- but watch out!
2092 This routine is *not* a replacement for puts()! puts() appends a newline.
2093 This one doesn't, and had better not! */
2096 puts_filtered (const char *string)
2098 fputs_filtered (string, gdb_stdout);
2102 puts_unfiltered (const char *string)
2104 fputs_unfiltered (string, gdb_stdout);
2107 /* Return a pointer to N spaces and a null. The pointer is good
2108 until the next call to here. */
2113 static char *spaces = 0;
2114 static int max_spaces = -1;
2120 spaces = (char *) xmalloc (n + 1);
2121 for (t = spaces + n; t != spaces;)
2127 return spaces + max_spaces - n;
2130 /* Print N spaces. */
2132 print_spaces_filtered (int n, struct ui_file *stream)
2134 fputs_filtered (n_spaces (n), stream);
2137 /* C++ demangler stuff. */
2139 /* fprintf_symbol_filtered attempts to demangle NAME, a symbol in language
2140 LANG, using demangling args ARG_MODE, and print it filtered to STREAM.
2141 If the name is not mangled, or the language for the name is unknown, or
2142 demangling is off, the name is printed in its "raw" form. */
2145 fprintf_symbol_filtered (struct ui_file *stream, char *name, enum language lang,
2152 /* If user wants to see raw output, no problem. */
2155 fputs_filtered (name, stream);
2161 case language_cplus:
2162 demangled = cplus_demangle (name, arg_mode);
2165 demangled = cplus_demangle (name, arg_mode | DMGL_JAVA);
2167 case language_chill:
2168 demangled = chill_demangle (name);
2174 fputs_filtered (demangled ? demangled : name, stream);
2175 if (demangled != NULL)
2183 /* Do a strcmp() type operation on STRING1 and STRING2, ignoring any
2184 differences in whitespace. Returns 0 if they match, non-zero if they
2185 don't (slightly different than strcmp()'s range of return values).
2187 As an extra hack, string1=="FOO(ARGS)" matches string2=="FOO".
2188 This "feature" is useful when searching for matching C++ function names
2189 (such as if the user types 'break FOO', where FOO is a mangled C++
2193 strcmp_iw (const char *string1, const char *string2)
2195 while ((*string1 != '\0') && (*string2 != '\0'))
2197 while (isspace (*string1))
2201 while (isspace (*string2))
2205 if (*string1 != *string2)
2209 if (*string1 != '\0')
2215 return (*string1 != '\0' && *string1 != '(') || (*string2 != '\0');
2221 ** Answer whether string_to_compare is a full or partial match to
2222 ** template_string. The partial match must be in sequence starting
2226 subset_compare (char *string_to_compare, char *template_string)
2229 if (template_string != (char *) NULL && string_to_compare != (char *) NULL &&
2230 strlen (string_to_compare) <= strlen (template_string))
2231 match = (strncmp (template_string,
2233 strlen (string_to_compare)) == 0);
2240 static void pagination_on_command (char *arg, int from_tty);
2242 pagination_on_command (char *arg, int from_tty)
2244 pagination_enabled = 1;
2247 static void pagination_on_command (char *arg, int from_tty);
2249 pagination_off_command (char *arg, int from_tty)
2251 pagination_enabled = 0;
2256 initialize_utils (void)
2258 struct cmd_list_element *c;
2260 c = add_set_cmd ("width", class_support, var_uinteger,
2261 (char *) &chars_per_line,
2262 "Set number of characters gdb thinks are in a line.",
2264 add_show_from_set (c, &showlist);
2265 c->function.sfunc = set_width_command;
2268 (add_set_cmd ("height", class_support,
2269 var_uinteger, (char *) &lines_per_page,
2270 "Set number of lines gdb thinks are in a page.", &setlist),
2275 /* If the output is not a terminal, don't paginate it. */
2276 if (!ui_file_isatty (gdb_stdout))
2277 lines_per_page = UINT_MAX;
2279 set_width_command ((char *) NULL, 0, c);
2282 (add_set_cmd ("demangle", class_support, var_boolean,
2284 "Set demangling of encoded C++ names when displaying symbols.",
2289 (add_set_cmd ("pagination", class_support,
2290 var_boolean, (char *) &pagination_enabled,
2291 "Set state of pagination.", &setlist),
2296 add_com ("am", class_support, pagination_on_command,
2297 "Enable pagination");
2298 add_com ("sm", class_support, pagination_off_command,
2299 "Disable pagination");
2303 (add_set_cmd ("sevenbit-strings", class_support, var_boolean,
2304 (char *) &sevenbit_strings,
2305 "Set printing of 8-bit characters in strings as \\nnn.",
2310 (add_set_cmd ("asm-demangle", class_support, var_boolean,
2311 (char *) &asm_demangle,
2312 "Set demangling of C++ names in disassembly listings.",
2317 /* Machine specific function to handle SIGWINCH signal. */
2319 #ifdef SIGWINCH_HANDLER_BODY
2320 SIGWINCH_HANDLER_BODY
2323 /* print routines to handle variable size regs, etc. */
2325 /* temporary storage using circular buffer */
2331 static char buf[NUMCELLS][CELLSIZE];
2332 static int cell = 0;
2333 if (++cell >= NUMCELLS)
2341 return (TARGET_ADDR_BIT / 8 * 2);
2345 paddr (CORE_ADDR addr)
2347 return phex (addr, TARGET_ADDR_BIT / 8);
2351 paddr_nz (CORE_ADDR addr)
2353 return phex_nz (addr, TARGET_ADDR_BIT / 8);
2357 decimal2str (char *paddr_str, char *sign, ULONGEST addr)
2359 /* steal code from valprint.c:print_decimal(). Should this worry
2360 about the real size of addr as the above does? */
2361 unsigned long temp[3];
2365 temp[i] = addr % (1000 * 1000 * 1000);
2366 addr /= (1000 * 1000 * 1000);
2369 while (addr != 0 && i < (sizeof (temp) / sizeof (temp[0])));
2373 sprintf (paddr_str, "%s%lu",
2377 sprintf (paddr_str, "%s%lu%09lu",
2378 sign, temp[1], temp[0]);
2381 sprintf (paddr_str, "%s%lu%09lu%09lu",
2382 sign, temp[2], temp[1], temp[0]);
2385 internal_error (__FILE__, __LINE__, "failed internal consistency check");
2390 paddr_u (CORE_ADDR addr)
2392 char *paddr_str = get_cell ();
2393 decimal2str (paddr_str, "", addr);
2398 paddr_d (LONGEST addr)
2400 char *paddr_str = get_cell ();
2402 decimal2str (paddr_str, "-", -addr);
2404 decimal2str (paddr_str, "", addr);
2408 /* eliminate warning from compiler on 32-bit systems */
2409 static int thirty_two = 32;
2412 phex (ULONGEST l, int sizeof_l)
2419 sprintf (str, "%08lx%08lx",
2420 (unsigned long) (l >> thirty_two),
2421 (unsigned long) (l & 0xffffffff));
2425 sprintf (str, "%08lx", (unsigned long) l);
2429 sprintf (str, "%04x", (unsigned short) (l & 0xffff));
2432 str = phex (l, sizeof (l));
2439 phex_nz (ULONGEST l, int sizeof_l)
2446 unsigned long high = (unsigned long) (l >> thirty_two);
2449 sprintf (str, "%lx", (unsigned long) (l & 0xffffffff));
2451 sprintf (str, "%lx%08lx",
2452 high, (unsigned long) (l & 0xffffffff));
2457 sprintf (str, "%lx", (unsigned long) l);
2461 sprintf (str, "%x", (unsigned short) (l & 0xffff));
2464 str = phex_nz (l, sizeof (l));
2471 /* Convert to / from the hosts pointer to GDB's internal CORE_ADDR
2472 using the target's conversion routines. */
2474 host_pointer_to_address (void *ptr)
2476 if (sizeof (ptr) != TYPE_LENGTH (builtin_type_void_data_ptr))
2477 internal_error (__FILE__, __LINE__,
2478 "core_addr_to_void_ptr: bad cast");
2479 return POINTER_TO_ADDRESS (builtin_type_void_data_ptr, &ptr);
2483 address_to_host_pointer (CORE_ADDR addr)
2486 if (sizeof (ptr) != TYPE_LENGTH (builtin_type_void_data_ptr))
2487 internal_error (__FILE__, __LINE__,
2488 "core_addr_to_void_ptr: bad cast");
2489 ADDRESS_TO_POINTER (builtin_type_void_data_ptr, &ptr, addr);
2493 /* Convert a CORE_ADDR into a string. */
2495 core_addr_to_string (const CORE_ADDR addr)
2497 char *str = get_cell ();
2499 strcat (str, phex_nz (addr, sizeof (addr)));
2503 /* Convert a string back into a CORE_ADDR. */
2505 string_to_core_addr (const char *my_string)
2508 if (my_string[0] == '0' && tolower (my_string[1]) == 'x')
2510 /* Assume that it is in decimal. */
2512 for (i = 2; my_string[i] != '\0'; i++)
2514 if (isdigit (my_string[i]))
2515 addr = (my_string[i] - '0') + (addr * 16);
2516 else if (isxdigit (my_string[i]))
2517 addr = (tolower (my_string[i]) - 'a' + 0xa) + (addr * 16);
2519 internal_error (__FILE__, __LINE__, "invalid hex");
2524 /* Assume that it is in decimal. */
2526 for (i = 0; my_string[i] != '\0'; i++)
2528 if (isdigit (my_string[i]))
2529 addr = (my_string[i] - '0') + (addr * 10);
2531 internal_error (__FILE__, __LINE__, "invalid decimal");
2538 gdb_realpath (const char *filename)
2540 #ifdef HAVE_REALPATH
2541 #if defined (PATH_MAX)
2543 #elif defined (MAXPATHLEN)
2544 char buf[MAXPATHLEN];
2546 #error "Neither PATH_MAX nor MAXPATHLEN defined"
2548 char *rp = realpath (filename, buf);
2549 return xstrdup (rp ? rp : filename);
2551 return xstrdup (filename);