1 /* General utility routines for GDB, the GNU debugger.
3 Copyright (C) 1986-2013 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 #include "dyn-string.h"
22 #include "gdb_assert.h"
24 #include "gdb_string.h"
26 #include "event-top.h"
27 #include "exceptions.h"
28 #include "gdbthread.h"
31 #ifdef HAVE_SYS_RESOURCE_H
32 #include <sys/resource.h>
33 #endif /* HAVE_SYS_RESOURCE_H */
36 #include "tui/tui.h" /* For tui_get_command_dimension. */
43 /* SunOS's curses.h has a '#define reg register' in it. Thank you Sun. */
49 #include "timeval-utils.h"
54 #include "gdb-demangle.h"
55 #include "expression.h"
59 #include "filenames.h"
61 #include "gdb_obstack.h"
67 #include "inferior.h" /* for signed_pointer_to_address */
69 #include "gdb_curses.h"
71 #include "readline/readline.h"
76 #include "gdb_usleep.h"
78 #include "gdb_regex.h"
81 extern PTR malloc (); /* ARI: PTR */
83 #if !HAVE_DECL_REALLOC
84 extern PTR realloc (); /* ARI: PTR */
90 void (*deprecated_error_begin_hook) (void);
92 /* Prototypes for local functions */
94 static void vfprintf_maybe_filtered (struct ui_file *, const char *,
95 va_list, int) ATTRIBUTE_PRINTF (2, 0);
97 static void fputs_maybe_filtered (const char *, struct ui_file *, int);
99 static void prompt_for_continue (void);
101 static void set_screen_size (void);
102 static void set_width (void);
104 /* Time spent in prompt_for_continue in the currently executing command
105 waiting for user to respond.
106 Initialized in make_command_stats_cleanup.
107 Modified in prompt_for_continue and defaulted_query.
108 Used in report_command_stats. */
110 static struct timeval prompt_for_continue_wait_time;
112 /* A flag indicating whether to timestamp debugging messages. */
114 static int debug_timestamp = 0;
116 /* Nonzero if we have job control. */
121 /* Nonzero means a quit has been requested. */
124 #endif /* HAVE_PYTHON */
126 /* Nonzero means quit immediately if Control-C is typed now, rather
127 than waiting until QUIT is executed. Be careful in setting this;
128 code which executes with immediate_quit set has to be very careful
129 about being able to deal with being interrupted at any time. It is
130 almost always better to use QUIT; the only exception I can think of
131 is being able to quit out of a system call (using EINTR loses if
132 the SIGINT happens between the previous QUIT and the system call).
133 To immediately quit in the case in which a SIGINT happens between
134 the previous QUIT and setting immediate_quit (desirable anytime we
135 expect to block), call QUIT after setting immediate_quit. */
141 /* Clear the quit flag. */
144 clear_quit_flag (void)
149 /* Set the quit flag. */
157 /* Return true if the quit flag has been set, false otherwise. */
160 check_quit_flag (void)
162 /* This is written in a particular way to avoid races. */
172 #endif /* HAVE_PYTHON */
174 /* Nonzero means that strings with character values >0x7F should be printed
175 as octal escapes. Zero means just print the value (e.g. it's an
176 international character, and the terminal or window can cope.) */
178 int sevenbit_strings = 0;
180 show_sevenbit_strings (struct ui_file *file, int from_tty,
181 struct cmd_list_element *c, const char *value)
183 fprintf_filtered (file, _("Printing of 8-bit characters "
184 "in strings as \\nnn is %s.\n"),
188 /* String to be printed before error messages, if any. */
190 char *error_pre_print;
192 /* String to be printed before quit messages, if any. */
194 char *quit_pre_print;
196 /* String to be printed before warning messages, if any. */
198 char *warning_pre_print = "\nwarning: ";
200 int pagination_enabled = 1;
202 show_pagination_enabled (struct ui_file *file, int from_tty,
203 struct cmd_list_element *c, const char *value)
205 fprintf_filtered (file, _("State of pagination is %s.\n"), value);
209 /* Cleanup utilities.
211 These are not defined in cleanups.c (nor declared in cleanups.h)
212 because while they use the "cleanup API" they are not part of the
216 do_freeargv (void *arg)
218 freeargv ((char **) arg);
222 make_cleanup_freeargv (char **arg)
224 return make_cleanup (do_freeargv, arg);
228 do_dyn_string_delete (void *arg)
230 dyn_string_delete ((dyn_string_t) arg);
234 make_cleanup_dyn_string_delete (dyn_string_t arg)
236 return make_cleanup (do_dyn_string_delete, arg);
240 do_bfd_close_cleanup (void *arg)
246 make_cleanup_bfd_unref (bfd *abfd)
248 return make_cleanup (do_bfd_close_cleanup, abfd);
252 do_close_cleanup (void *arg)
260 make_cleanup_close (int fd)
262 int *saved_fd = xmalloc (sizeof (fd));
265 return make_cleanup_dtor (do_close_cleanup, saved_fd, xfree);
268 /* Helper function which does the work for make_cleanup_fclose. */
271 do_fclose_cleanup (void *arg)
278 /* Return a new cleanup that closes FILE. */
281 make_cleanup_fclose (FILE *file)
283 return make_cleanup (do_fclose_cleanup, file);
286 /* Helper function which does the work for make_cleanup_obstack_free. */
289 do_obstack_free (void *arg)
291 struct obstack *ob = arg;
293 obstack_free (ob, NULL);
296 /* Return a new cleanup that frees OBSTACK. */
299 make_cleanup_obstack_free (struct obstack *obstack)
301 return make_cleanup (do_obstack_free, obstack);
305 do_ui_file_delete (void *arg)
307 ui_file_delete (arg);
311 make_cleanup_ui_file_delete (struct ui_file *arg)
313 return make_cleanup (do_ui_file_delete, arg);
316 /* Helper function for make_cleanup_ui_out_redirect_pop. */
319 do_ui_out_redirect_pop (void *arg)
321 struct ui_out *uiout = arg;
323 if (ui_out_redirect (uiout, NULL) < 0)
324 warning (_("Cannot restore redirection of the current output protocol"));
327 /* Return a new cleanup that pops the last redirection by ui_out_redirect
328 with NULL parameter. */
331 make_cleanup_ui_out_redirect_pop (struct ui_out *uiout)
333 return make_cleanup (do_ui_out_redirect_pop, uiout);
337 do_free_section_addr_info (void *arg)
339 free_section_addr_info (arg);
343 make_cleanup_free_section_addr_info (struct section_addr_info *addrs)
345 return make_cleanup (do_free_section_addr_info, addrs);
348 struct restore_integer_closure
355 restore_integer (void *p)
357 struct restore_integer_closure *closure = p;
359 *(closure->variable) = closure->value;
362 /* Remember the current value of *VARIABLE and make it restored when
363 the cleanup is run. */
366 make_cleanup_restore_integer (int *variable)
368 struct restore_integer_closure *c =
369 xmalloc (sizeof (struct restore_integer_closure));
371 c->variable = variable;
372 c->value = *variable;
374 return make_cleanup_dtor (restore_integer, (void *) c, xfree);
377 /* Remember the current value of *VARIABLE and make it restored when
378 the cleanup is run. */
381 make_cleanup_restore_uinteger (unsigned int *variable)
383 return make_cleanup_restore_integer ((int *) variable);
386 /* Helper for make_cleanup_unpush_target. */
389 do_unpush_target (void *arg)
391 struct target_ops *ops = arg;
396 /* Return a new cleanup that unpushes OPS. */
399 make_cleanup_unpush_target (struct target_ops *ops)
401 return make_cleanup (do_unpush_target, ops);
404 /* Helper for make_cleanup_htab_delete compile time checking the types. */
407 do_htab_delete_cleanup (void *htab_voidp)
409 htab_t htab = htab_voidp;
414 /* Return a new cleanup that deletes HTAB. */
417 make_cleanup_htab_delete (htab_t htab)
419 return make_cleanup (do_htab_delete_cleanup, htab);
422 struct restore_ui_file_closure
424 struct ui_file **variable;
425 struct ui_file *value;
429 do_restore_ui_file (void *p)
431 struct restore_ui_file_closure *closure = p;
433 *(closure->variable) = closure->value;
436 /* Remember the current value of *VARIABLE and make it restored when
437 the cleanup is run. */
440 make_cleanup_restore_ui_file (struct ui_file **variable)
442 struct restore_ui_file_closure *c = XNEW (struct restore_ui_file_closure);
444 c->variable = variable;
445 c->value = *variable;
447 return make_cleanup_dtor (do_restore_ui_file, (void *) c, xfree);
450 /* Helper for make_cleanup_value_free_to_mark. */
453 do_value_free_to_mark (void *value)
455 value_free_to_mark ((struct value *) value);
458 /* Free all values allocated since MARK was obtained by value_mark
459 (except for those released) when the cleanup is run. */
462 make_cleanup_value_free_to_mark (struct value *mark)
464 return make_cleanup (do_value_free_to_mark, mark);
467 /* Helper for make_cleanup_value_free. */
470 do_value_free (void *value)
478 make_cleanup_value_free (struct value *value)
480 return make_cleanup (do_value_free, value);
483 /* Helper for make_cleanup_free_so. */
486 do_free_so (void *arg)
488 struct so_list *so = arg;
493 /* Make cleanup handler calling free_so for SO. */
496 make_cleanup_free_so (struct so_list *so)
498 return make_cleanup (do_free_so, so);
501 /* Helper for make_cleanup_restore_current_language. */
504 do_restore_current_language (void *p)
506 enum language saved_lang = (uintptr_t) p;
508 set_language (saved_lang);
511 /* Remember the current value of CURRENT_LANGUAGE and make it restored when
512 the cleanup is run. */
515 make_cleanup_restore_current_language (void)
517 enum language saved_lang = current_language->la_language;
519 return make_cleanup (do_restore_current_language,
520 (void *) (uintptr_t) saved_lang);
523 /* This function is useful for cleanups.
527 old_chain = make_cleanup (free_current_contents, &foo);
529 to arrange to free the object thus allocated. */
532 free_current_contents (void *ptr)
534 void **location = ptr;
536 if (location == NULL)
537 internal_error (__FILE__, __LINE__,
538 _("free_current_contents: NULL pointer"));
539 if (*location != NULL)
548 /* Print a warning message. The first argument STRING is the warning
549 message, used as an fprintf format string, the second is the
550 va_list of arguments for that string. A warning is unfiltered (not
551 paginated) so that the user does not need to page through each
552 screen full of warnings when there are lots of them. */
555 vwarning (const char *string, va_list args)
557 if (deprecated_warning_hook)
558 (*deprecated_warning_hook) (string, args);
561 target_terminal_ours ();
562 wrap_here (""); /* Force out any buffered output. */
563 gdb_flush (gdb_stdout);
564 if (warning_pre_print)
565 fputs_unfiltered (warning_pre_print, gdb_stderr);
566 vfprintf_unfiltered (gdb_stderr, string, args);
567 fprintf_unfiltered (gdb_stderr, "\n");
572 /* Print a warning message.
573 The first argument STRING is the warning message, used as a fprintf string,
574 and the remaining args are passed as arguments to it.
575 The primary difference between warnings and errors is that a warning
576 does not force the return to command level. */
579 warning (const char *string, ...)
583 va_start (args, string);
584 vwarning (string, args);
588 /* Print an error message and return to command level.
589 The first argument STRING is the error message, used as a fprintf string,
590 and the remaining args are passed as arguments to it. */
593 verror (const char *string, va_list args)
595 throw_verror (GENERIC_ERROR, string, args);
599 error (const char *string, ...)
603 va_start (args, string);
604 throw_verror (GENERIC_ERROR, string, args);
608 /* Print an error message and quit.
609 The first argument STRING is the error message, used as a fprintf string,
610 and the remaining args are passed as arguments to it. */
613 vfatal (const char *string, va_list args)
615 throw_vfatal (string, args);
619 fatal (const char *string, ...)
623 va_start (args, string);
624 throw_vfatal (string, args);
629 error_stream (struct ui_file *stream)
631 char *message = ui_file_xstrdup (stream, NULL);
633 make_cleanup (xfree, message);
634 error (("%s"), message);
637 /* Dump core trying to increase the core soft limit to hard limit first. */
642 #ifdef HAVE_SETRLIMIT
643 struct rlimit rlim = { RLIM_INFINITY, RLIM_INFINITY };
645 setrlimit (RLIMIT_CORE, &rlim);
646 #endif /* HAVE_SETRLIMIT */
648 abort (); /* NOTE: GDB has only three calls to abort(). */
651 /* Check whether GDB will be able to dump core using the dump_core
655 can_dump_core (const char *reason)
657 #ifdef HAVE_GETRLIMIT
660 /* Be quiet and assume we can dump if an error is returned. */
661 if (getrlimit (RLIMIT_CORE, &rlim) != 0)
664 if (rlim.rlim_max == 0)
666 fprintf_unfiltered (gdb_stderr,
667 _("%s\nUnable to dump core, use `ulimit -c"
668 " unlimited' before executing GDB next time.\n"),
672 #endif /* HAVE_GETRLIMIT */
677 /* Allow the user to configure the debugger behavior with respect to
678 what to do when an internal problem is detected. */
680 const char internal_problem_ask[] = "ask";
681 const char internal_problem_yes[] = "yes";
682 const char internal_problem_no[] = "no";
683 static const char *const internal_problem_modes[] =
685 internal_problem_ask,
686 internal_problem_yes,
691 /* Print a message reporting an internal error/warning. Ask the user
692 if they want to continue, dump core, or just exit. Return
693 something to indicate a quit. */
695 struct internal_problem
698 const char *should_quit;
699 const char *should_dump_core;
702 /* Report a problem, internal to GDB, to the user. Once the problem
703 has been reported, and assuming GDB didn't quit, the caller can
704 either allow execution to resume or throw an error. */
706 static void ATTRIBUTE_PRINTF (4, 0)
707 internal_vproblem (struct internal_problem *problem,
708 const char *file, int line, const char *fmt, va_list ap)
714 struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
716 /* Don't allow infinite error/warning recursion. */
718 static char msg[] = "Recursive internal problem.\n";
727 fputs_unfiltered (msg, gdb_stderr);
728 abort (); /* NOTE: GDB has only three calls to abort(). */
731 /* Newer GLIBC versions put the warn_unused_result attribute
732 on write, but this is one of those rare cases where
733 ignoring the return value is correct. Casting to (void)
734 does not fix this problem. This is the solution suggested
735 at http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25509. */
736 if (write (STDERR_FILENO, msg, sizeof (msg)) != sizeof (msg))
737 abort (); /* NOTE: GDB has only three calls to abort(). */
742 /* Try to get the message out and at the start of a new line. */
743 target_terminal_ours ();
746 /* Create a string containing the full error/warning message. Need
747 to call query with this full string, as otherwize the reason
748 (error/warning) and question become separated. Format using a
749 style similar to a compiler error message. Include extra detail
750 so that the user knows that they are living on the edge. */
754 msg = xstrvprintf (fmt, ap);
755 reason = xstrprintf ("%s:%d: %s: %s\n"
756 "A problem internal to GDB has been detected,\n"
757 "further debugging may prove unreliable.",
758 file, line, problem->name, msg);
760 make_cleanup (xfree, reason);
763 if (problem->should_quit == internal_problem_ask)
765 /* Default (yes/batch case) is to quit GDB. When in batch mode
766 this lessens the likelihood of GDB going into an infinite
770 /* Emit the message and quit. */
771 fputs_unfiltered (reason, gdb_stderr);
772 fputs_unfiltered ("\n", gdb_stderr);
776 quit_p = query (_("%s\nQuit this debugging session? "), reason);
778 else if (problem->should_quit == internal_problem_yes)
780 else if (problem->should_quit == internal_problem_no)
783 internal_error (__FILE__, __LINE__, _("bad switch"));
785 if (problem->should_dump_core == internal_problem_ask)
787 if (!can_dump_core (reason))
791 /* Default (yes/batch case) is to dump core. This leaves a GDB
792 `dropping' so that it is easier to see that something went
794 dump_core_p = query (_("%s\nCreate a core file of GDB? "), reason);
797 else if (problem->should_dump_core == internal_problem_yes)
798 dump_core_p = can_dump_core (reason);
799 else if (problem->should_dump_core == internal_problem_no)
802 internal_error (__FILE__, __LINE__, _("bad switch"));
815 #ifdef HAVE_WORKING_FORK
823 do_cleanups (cleanup);
826 static struct internal_problem internal_error_problem = {
827 "internal-error", internal_problem_ask, internal_problem_ask
831 internal_verror (const char *file, int line, const char *fmt, va_list ap)
833 internal_vproblem (&internal_error_problem, file, line, fmt, ap);
834 deprecated_throw_reason (RETURN_ERROR);
838 internal_error (const char *file, int line, const char *string, ...)
842 va_start (ap, string);
843 internal_verror (file, line, string, ap);
847 static struct internal_problem internal_warning_problem = {
848 "internal-warning", internal_problem_ask, internal_problem_ask
852 internal_vwarning (const char *file, int line, const char *fmt, va_list ap)
854 internal_vproblem (&internal_warning_problem, file, line, fmt, ap);
858 internal_warning (const char *file, int line, const char *string, ...)
862 va_start (ap, string);
863 internal_vwarning (file, line, string, ap);
867 /* Dummy functions to keep add_prefix_cmd happy. */
870 set_internal_problem_cmd (char *args, int from_tty)
875 show_internal_problem_cmd (char *args, int from_tty)
879 /* When GDB reports an internal problem (error or warning) it gives
880 the user the opportunity to quit GDB and/or create a core file of
881 the current debug session. This function registers a few commands
882 that make it possible to specify that GDB should always or never
883 quit or create a core file, without asking. The commands look
886 maint set PROBLEM-NAME quit ask|yes|no
887 maint show PROBLEM-NAME quit
888 maint set PROBLEM-NAME corefile ask|yes|no
889 maint show PROBLEM-NAME corefile
891 Where PROBLEM-NAME is currently "internal-error" or
892 "internal-warning". */
895 add_internal_problem_command (struct internal_problem *problem)
897 struct cmd_list_element **set_cmd_list;
898 struct cmd_list_element **show_cmd_list;
902 set_cmd_list = xmalloc (sizeof (*set_cmd_list));
903 show_cmd_list = xmalloc (sizeof (*set_cmd_list));
904 *set_cmd_list = NULL;
905 *show_cmd_list = NULL;
907 set_doc = xstrprintf (_("Configure what GDB does when %s is detected."),
910 show_doc = xstrprintf (_("Show what GDB does when %s is detected."),
913 add_prefix_cmd ((char*) problem->name,
914 class_maintenance, set_internal_problem_cmd, set_doc,
916 concat ("maintenance set ", problem->name, " ",
918 0/*allow-unknown*/, &maintenance_set_cmdlist);
920 add_prefix_cmd ((char*) problem->name,
921 class_maintenance, show_internal_problem_cmd, show_doc,
923 concat ("maintenance show ", problem->name, " ",
925 0/*allow-unknown*/, &maintenance_show_cmdlist);
927 set_doc = xstrprintf (_("Set whether GDB should quit "
928 "when an %s is detected"),
930 show_doc = xstrprintf (_("Show whether GDB will quit "
931 "when an %s is detected"),
933 add_setshow_enum_cmd ("quit", class_maintenance,
934 internal_problem_modes,
935 &problem->should_quit,
947 set_doc = xstrprintf (_("Set whether GDB should create a core "
948 "file of GDB when %s is detected"),
950 show_doc = xstrprintf (_("Show whether GDB will create a core "
951 "file of GDB when %s is detected"),
953 add_setshow_enum_cmd ("corefile", class_maintenance,
954 internal_problem_modes,
955 &problem->should_dump_core,
968 /* Print the system error message for errno, and also mention STRING
969 as the file name for which the error was encountered. Use ERRCODE
970 for the thrown exception. Then return to command level. */
973 throw_perror_with_name (enum errors errcode, const char *string)
978 err = safe_strerror (errno);
979 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
980 strcpy (combined, string);
981 strcat (combined, ": ");
982 strcat (combined, err);
984 /* I understand setting these is a matter of taste. Still, some people
985 may clear errno but not know about bfd_error. Doing this here is not
987 bfd_set_error (bfd_error_no_error);
990 throw_error (errcode, _("%s."), combined);
993 /* See throw_perror_with_name, ERRCODE defaults here to GENERIC_ERROR. */
996 perror_with_name (const char *string)
998 throw_perror_with_name (GENERIC_ERROR, string);
1001 /* Print the system error message for ERRCODE, and also mention STRING
1002 as the file name for which the error was encountered. */
1005 print_sys_errmsg (const char *string, int errcode)
1010 err = safe_strerror (errcode);
1011 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
1012 strcpy (combined, string);
1013 strcat (combined, ": ");
1014 strcat (combined, err);
1016 /* We want anything which was printed on stdout to come out first, before
1018 gdb_flush (gdb_stdout);
1019 fprintf_unfiltered (gdb_stderr, "%s.\n", combined);
1022 /* Control C eventually causes this to be called, at a convenient time. */
1028 /* No steenking SIGINT will ever be coming our way when the
1029 program is resumed. Don't lie. */
1033 /* If there is no terminal switching for this target, then we can't
1034 possibly get screwed by the lack of job control. */
1035 || current_target.to_terminal_ours == NULL)
1038 fatal ("Quit (expect signal SIGINT when the program is resumed)");
1043 /* Called when a memory allocation fails, with the number of bytes of
1044 memory requested in SIZE. */
1047 malloc_failure (long size)
1051 internal_error (__FILE__, __LINE__,
1052 _("virtual memory exhausted: can't allocate %ld bytes."),
1057 internal_error (__FILE__, __LINE__, _("virtual memory exhausted."));
1061 /* My replacement for the read system call.
1062 Used like `read' but keeps going if `read' returns too soon. */
1065 myread (int desc, char *addr, int len)
1072 val = read (desc, addr, len);
1076 return orglen - len;
1084 print_spaces (int n, struct ui_file *file)
1086 fputs_unfiltered (n_spaces (n), file);
1089 /* Print a host address. */
1092 gdb_print_host_address (const void *addr, struct ui_file *stream)
1094 fprintf_filtered (stream, "%s", host_address_to_string (addr));
1098 /* A cleanup function that calls regfree. */
1101 do_regfree_cleanup (void *r)
1106 /* Create a new cleanup that frees the compiled regular expression R. */
1109 make_regfree_cleanup (regex_t *r)
1111 return make_cleanup (do_regfree_cleanup, r);
1114 /* Return an xmalloc'd error message resulting from a regular
1115 expression compilation failure. */
1118 get_regcomp_error (int code, regex_t *rx)
1120 size_t length = regerror (code, rx, NULL, 0);
1121 char *result = xmalloc (length);
1123 regerror (code, rx, result, length);
1127 /* Compile a regexp and throw an exception on error. This returns a
1128 cleanup to free the resulting pattern on success. RX must not be
1132 compile_rx_or_error (regex_t *pattern, const char *rx, const char *message)
1136 gdb_assert (rx != NULL);
1138 code = regcomp (pattern, rx, REG_NOSUB);
1141 char *err = get_regcomp_error (code, pattern);
1143 make_cleanup (xfree, err);
1144 error (("%s: %s"), message, err);
1147 return make_regfree_cleanup (pattern);
1152 /* This function supports the query, nquery, and yquery functions.
1153 Ask user a y-or-n question and return 0 if answer is no, 1 if
1154 answer is yes, or default the answer to the specified default
1155 (for yquery or nquery). DEFCHAR may be 'y' or 'n' to provide a
1156 default answer, or '\0' for no default.
1157 CTLSTR is the control string and should end in "? ". It should
1158 not say how to answer, because we do that.
1159 ARGS are the arguments passed along with the CTLSTR argument to
1162 static int ATTRIBUTE_PRINTF (1, 0)
1163 defaulted_query (const char *ctlstr, const char defchar, va_list args)
1169 char def_answer, not_def_answer;
1170 char *y_string, *n_string, *question;
1171 /* Used to add duration we waited for user to respond to
1172 prompt_for_continue_wait_time. */
1173 struct timeval prompt_started, prompt_ended, prompt_delta;
1175 /* Set up according to which answer is the default. */
1176 if (defchar == '\0')
1180 not_def_answer = 'N';
1184 else if (defchar == 'y')
1188 not_def_answer = 'N';
1196 not_def_answer = 'Y';
1201 /* Automatically answer the default value if the user did not want
1202 prompts or the command was issued with the server prefix. */
1203 if (!confirm || server_command)
1206 /* If input isn't coming from the user directly, just say what
1207 question we're asking, and then answer the default automatically. This
1208 way, important error messages don't get lost when talking to GDB
1210 if (! input_from_terminal_p ())
1213 vfprintf_filtered (gdb_stdout, ctlstr, args);
1215 printf_filtered (_("(%s or %s) [answered %c; "
1216 "input not from terminal]\n"),
1217 y_string, n_string, def_answer);
1218 gdb_flush (gdb_stdout);
1223 if (deprecated_query_hook)
1225 return deprecated_query_hook (ctlstr, args);
1228 /* Format the question outside of the loop, to avoid reusing args. */
1229 question = xstrvprintf (ctlstr, args);
1231 /* Used for calculating time spend waiting for user. */
1232 gettimeofday (&prompt_started, NULL);
1236 wrap_here (""); /* Flush any buffered output. */
1237 gdb_flush (gdb_stdout);
1239 if (annotation_level > 1)
1240 printf_filtered (("\n\032\032pre-query\n"));
1242 fputs_filtered (question, gdb_stdout);
1243 printf_filtered (_("(%s or %s) "), y_string, n_string);
1245 if (annotation_level > 1)
1246 printf_filtered (("\n\032\032query\n"));
1249 gdb_flush (gdb_stdout);
1251 answer = fgetc (stdin);
1253 /* We expect fgetc to block until a character is read. But
1254 this may not be the case if the terminal was opened with
1255 the NONBLOCK flag. In that case, if there is nothing to
1256 read on stdin, fgetc returns EOF, but also sets the error
1257 condition flag on stdin and errno to EAGAIN. With a true
1258 EOF, stdin's error condition flag is not set.
1260 A situation where this behavior was observed is a pseudo
1262 while (answer == EOF && ferror (stdin) && errno == EAGAIN)
1264 /* Not a real EOF. Wait a little while and try again until
1265 we read something. */
1268 answer = fgetc (stdin);
1271 clearerr (stdin); /* in case of C-d */
1272 if (answer == EOF) /* C-d */
1274 printf_filtered ("EOF [assumed %c]\n", def_answer);
1278 /* Eat rest of input line, to EOF or newline. */
1282 ans2 = fgetc (stdin);
1285 while (ans2 != EOF && ans2 != '\n' && ans2 != '\r');
1289 /* Check answer. For the non-default, the user must specify
1290 the non-default explicitly. */
1291 if (answer == not_def_answer)
1293 retval = !def_value;
1296 /* Otherwise, if a default was specified, the user may either
1297 specify the required input or have it default by entering
1299 if (answer == def_answer
1300 || (defchar != '\0' &&
1301 (answer == '\n' || answer == '\r' || answer == EOF)))
1306 /* Invalid entries are not defaulted and require another selection. */
1307 printf_filtered (_("Please answer %s or %s.\n"),
1308 y_string, n_string);
1311 /* Add time spend in this routine to prompt_for_continue_wait_time. */
1312 gettimeofday (&prompt_ended, NULL);
1313 timeval_sub (&prompt_delta, &prompt_ended, &prompt_started);
1314 timeval_add (&prompt_for_continue_wait_time,
1315 &prompt_for_continue_wait_time, &prompt_delta);
1318 if (annotation_level > 1)
1319 printf_filtered (("\n\032\032post-query\n"));
1324 /* Ask user a y-or-n question and return 0 if answer is no, 1 if
1325 answer is yes, or 0 if answer is defaulted.
1326 Takes three args which are given to printf to print the question.
1327 The first, a control string, should end in "? ".
1328 It should not say how to answer, because we do that. */
1331 nquery (const char *ctlstr, ...)
1336 va_start (args, ctlstr);
1337 ret = defaulted_query (ctlstr, 'n', args);
1342 /* Ask user a y-or-n question and return 0 if answer is no, 1 if
1343 answer is yes, or 1 if answer is defaulted.
1344 Takes three args which are given to printf to print the question.
1345 The first, a control string, should end in "? ".
1346 It should not say how to answer, because we do that. */
1349 yquery (const char *ctlstr, ...)
1354 va_start (args, ctlstr);
1355 ret = defaulted_query (ctlstr, 'y', args);
1360 /* Ask user a y-or-n question and return 1 iff answer is yes.
1361 Takes three args which are given to printf to print the question.
1362 The first, a control string, should end in "? ".
1363 It should not say how to answer, because we do that. */
1366 query (const char *ctlstr, ...)
1371 va_start (args, ctlstr);
1372 ret = defaulted_query (ctlstr, '\0', args);
1377 /* A helper for parse_escape that converts a host character to a
1378 target character. C is the host character. If conversion is
1379 possible, then the target character is stored in *TARGET_C and the
1380 function returns 1. Otherwise, the function returns 0. */
1383 host_char_to_target (struct gdbarch *gdbarch, int c, int *target_c)
1385 struct obstack host_data;
1387 struct cleanup *cleanups;
1390 obstack_init (&host_data);
1391 cleanups = make_cleanup_obstack_free (&host_data);
1393 convert_between_encodings (target_charset (gdbarch), host_charset (),
1394 (gdb_byte *) &the_char, 1, 1,
1395 &host_data, translit_none);
1397 if (obstack_object_size (&host_data) == 1)
1400 *target_c = *(char *) obstack_base (&host_data);
1403 do_cleanups (cleanups);
1407 /* Parse a C escape sequence. STRING_PTR points to a variable
1408 containing a pointer to the string to parse. That pointer
1409 should point to the character after the \. That pointer
1410 is updated past the characters we use. The value of the
1411 escape sequence is returned.
1413 A negative value means the sequence \ newline was seen,
1414 which is supposed to be equivalent to nothing at all.
1416 If \ is followed by a null character, we return a negative
1417 value and leave the string pointer pointing at the null character.
1419 If \ is followed by 000, we return 0 and leave the string pointer
1420 after the zeros. A value of 0 does not mean end of string. */
1423 parse_escape (struct gdbarch *gdbarch, char **string_ptr)
1425 int target_char = -2; /* Initialize to avoid GCC warnings. */
1426 int c = *(*string_ptr)++;
1445 int i = host_hex_value (c);
1450 if (isdigit (c) && c != '8' && c != '9')
1454 i += host_hex_value (c);
1490 if (!host_char_to_target (gdbarch, c, &target_char))
1491 error (_("The escape sequence `\\%c' is equivalent to plain `%c',"
1492 " which has no equivalent\nin the `%s' character set."),
1493 c, c, target_charset (gdbarch));
1497 /* Print the character C on STREAM as part of the contents of a literal
1498 string whose delimiter is QUOTER. Note that this routine should only
1499 be call for printing things which are independent of the language
1500 of the program being debugged. */
1503 printchar (int c, void (*do_fputs) (const char *, struct ui_file *),
1504 void (*do_fprintf) (struct ui_file *, const char *, ...)
1505 ATTRIBUTE_FPTR_PRINTF_2, struct ui_file *stream, int quoter)
1507 c &= 0xFF; /* Avoid sign bit follies */
1509 if (c < 0x20 || /* Low control chars */
1510 (c >= 0x7F && c < 0xA0) || /* DEL, High controls */
1511 (sevenbit_strings && c >= 0x80))
1512 { /* high order bit set */
1516 do_fputs ("\\n", stream);
1519 do_fputs ("\\b", stream);
1522 do_fputs ("\\t", stream);
1525 do_fputs ("\\f", stream);
1528 do_fputs ("\\r", stream);
1531 do_fputs ("\\e", stream);
1534 do_fputs ("\\a", stream);
1537 do_fprintf (stream, "\\%.3o", (unsigned int) c);
1543 if (c == '\\' || c == quoter)
1544 do_fputs ("\\", stream);
1545 do_fprintf (stream, "%c", c);
1549 /* Print the character C on STREAM as part of the contents of a
1550 literal string whose delimiter is QUOTER. Note that these routines
1551 should only be call for printing things which are independent of
1552 the language of the program being debugged. */
1555 fputstr_filtered (const char *str, int quoter, struct ui_file *stream)
1558 printchar (*str++, fputs_filtered, fprintf_filtered, stream, quoter);
1562 fputstr_unfiltered (const char *str, int quoter, struct ui_file *stream)
1565 printchar (*str++, fputs_unfiltered, fprintf_unfiltered, stream, quoter);
1569 fputstrn_filtered (const char *str, int n, int quoter,
1570 struct ui_file *stream)
1574 for (i = 0; i < n; i++)
1575 printchar (str[i], fputs_filtered, fprintf_filtered, stream, quoter);
1579 fputstrn_unfiltered (const char *str, int n, int quoter,
1580 struct ui_file *stream)
1584 for (i = 0; i < n; i++)
1585 printchar (str[i], fputs_unfiltered, fprintf_unfiltered, stream, quoter);
1589 /* Number of lines per page or UINT_MAX if paging is disabled. */
1590 static unsigned int lines_per_page;
1592 show_lines_per_page (struct ui_file *file, int from_tty,
1593 struct cmd_list_element *c, const char *value)
1595 fprintf_filtered (file,
1596 _("Number of lines gdb thinks are in a page is %s.\n"),
1600 /* Number of chars per line or UINT_MAX if line folding is disabled. */
1601 static unsigned int chars_per_line;
1603 show_chars_per_line (struct ui_file *file, int from_tty,
1604 struct cmd_list_element *c, const char *value)
1606 fprintf_filtered (file,
1607 _("Number of characters gdb thinks "
1608 "are in a line is %s.\n"),
1612 /* Current count of lines printed on this page, chars on this line. */
1613 static unsigned int lines_printed, chars_printed;
1615 /* Buffer and start column of buffered text, for doing smarter word-
1616 wrapping. When someone calls wrap_here(), we start buffering output
1617 that comes through fputs_filtered(). If we see a newline, we just
1618 spit it out and forget about the wrap_here(). If we see another
1619 wrap_here(), we spit it out and remember the newer one. If we see
1620 the end of the line, we spit out a newline, the indent, and then
1621 the buffered output. */
1623 /* Malloc'd buffer with chars_per_line+2 bytes. Contains characters which
1624 are waiting to be output (they have already been counted in chars_printed).
1625 When wrap_buffer[0] is null, the buffer is empty. */
1626 static char *wrap_buffer;
1628 /* Pointer in wrap_buffer to the next character to fill. */
1629 static char *wrap_pointer;
1631 /* String to indent by if the wrap occurs. Must not be NULL if wrap_column
1633 static char *wrap_indent;
1635 /* Column number on the screen where wrap_buffer begins, or 0 if wrapping
1636 is not in effect. */
1637 static int wrap_column;
1640 /* Inialize the number of lines per page and chars per line. */
1643 init_page_info (void)
1647 lines_per_page = UINT_MAX;
1648 chars_per_line = UINT_MAX;
1652 if (!tui_get_command_dimension (&chars_per_line, &lines_per_page))
1657 #if defined(__GO32__)
1658 rows = ScreenRows ();
1659 cols = ScreenCols ();
1660 lines_per_page = rows;
1661 chars_per_line = cols;
1663 /* Make sure Readline has initialized its terminal settings. */
1664 rl_reset_terminal (NULL);
1666 /* Get the screen size from Readline. */
1667 rl_get_screen_size (&rows, &cols);
1668 lines_per_page = rows;
1669 chars_per_line = cols;
1671 /* Readline should have fetched the termcap entry for us. */
1672 if (tgetnum ("li") < 0 || getenv ("EMACS"))
1674 /* The number of lines per page is not mentioned in the
1675 terminal description. This probably means that paging is
1676 not useful (e.g. emacs shell window), so disable paging. */
1677 lines_per_page = UINT_MAX;
1680 /* If the output is not a terminal, don't paginate it. */
1681 if (!ui_file_isatty (gdb_stdout))
1682 lines_per_page = UINT_MAX;
1690 /* Helper for make_cleanup_restore_page_info. */
1693 do_restore_page_info_cleanup (void *arg)
1699 /* Provide cleanup for restoring the terminal size. */
1702 make_cleanup_restore_page_info (void)
1704 struct cleanup *back_to;
1706 back_to = make_cleanup (do_restore_page_info_cleanup, NULL);
1707 make_cleanup_restore_uinteger (&lines_per_page);
1708 make_cleanup_restore_uinteger (&chars_per_line);
1713 /* Temporarily set BATCH_FLAG and the associated unlimited terminal size.
1714 Provide cleanup for restoring the original state. */
1717 set_batch_flag_and_make_cleanup_restore_page_info (void)
1719 struct cleanup *back_to = make_cleanup_restore_page_info ();
1721 make_cleanup_restore_integer (&batch_flag);
1728 /* Set the screen size based on LINES_PER_PAGE and CHARS_PER_LINE. */
1731 set_screen_size (void)
1733 int rows = lines_per_page;
1734 int cols = chars_per_line;
1742 /* Update Readline's idea of the terminal size. */
1743 rl_set_screen_size (rows, cols);
1746 /* Reinitialize WRAP_BUFFER according to the current value of
1752 if (chars_per_line == 0)
1757 wrap_buffer = (char *) xmalloc (chars_per_line + 2);
1758 wrap_buffer[0] = '\0';
1761 wrap_buffer = (char *) xrealloc (wrap_buffer, chars_per_line + 2);
1762 wrap_pointer = wrap_buffer; /* Start it at the beginning. */
1766 set_width_command (char *args, int from_tty, struct cmd_list_element *c)
1773 set_height_command (char *args, int from_tty, struct cmd_list_element *c)
1778 /* Wait, so the user can read what's on the screen. Prompt the user
1779 to continue by pressing RETURN. */
1782 prompt_for_continue (void)
1785 char cont_prompt[120];
1786 /* Used to add duration we waited for user to respond to
1787 prompt_for_continue_wait_time. */
1788 struct timeval prompt_started, prompt_ended, prompt_delta;
1790 gettimeofday (&prompt_started, NULL);
1792 if (annotation_level > 1)
1793 printf_unfiltered (("\n\032\032pre-prompt-for-continue\n"));
1795 strcpy (cont_prompt,
1796 "---Type <return> to continue, or q <return> to quit---");
1797 if (annotation_level > 1)
1798 strcat (cont_prompt, "\n\032\032prompt-for-continue\n");
1800 /* We must do this *before* we call gdb_readline, else it will eventually
1801 call us -- thinking that we're trying to print beyond the end of the
1803 reinitialize_more_filter ();
1807 /* On a real operating system, the user can quit with SIGINT.
1810 'q' is provided on all systems so users don't have to change habits
1811 from system to system, and because telling them what to do in
1812 the prompt is more user-friendly than expecting them to think of
1814 /* Call readline, not gdb_readline, because GO32 readline handles control-C
1815 whereas control-C to gdb_readline will cause the user to get dumped
1817 ignore = gdb_readline_wrapper (cont_prompt);
1819 /* Add time spend in this routine to prompt_for_continue_wait_time. */
1820 gettimeofday (&prompt_ended, NULL);
1821 timeval_sub (&prompt_delta, &prompt_ended, &prompt_started);
1822 timeval_add (&prompt_for_continue_wait_time,
1823 &prompt_for_continue_wait_time, &prompt_delta);
1825 if (annotation_level > 1)
1826 printf_unfiltered (("\n\032\032post-prompt-for-continue\n"));
1832 while (*p == ' ' || *p == '\t')
1840 /* Now we have to do this again, so that GDB will know that it doesn't
1841 need to save the ---Type <return>--- line at the top of the screen. */
1842 reinitialize_more_filter ();
1844 dont_repeat (); /* Forget prev cmd -- CR won't repeat it. */
1847 /* Initalize timer to keep track of how long we waited for the user. */
1850 reset_prompt_for_continue_wait_time (void)
1852 static const struct timeval zero_timeval = { 0 };
1854 prompt_for_continue_wait_time = zero_timeval;
1857 /* Fetch the cumulative time spent in prompt_for_continue. */
1860 get_prompt_for_continue_wait_time (void)
1862 return prompt_for_continue_wait_time;
1865 /* Reinitialize filter; ie. tell it to reset to original values. */
1868 reinitialize_more_filter (void)
1874 /* Indicate that if the next sequence of characters overflows the line,
1875 a newline should be inserted here rather than when it hits the end.
1876 If INDENT is non-null, it is a string to be printed to indent the
1877 wrapped part on the next line. INDENT must remain accessible until
1878 the next call to wrap_here() or until a newline is printed through
1881 If the line is already overfull, we immediately print a newline and
1882 the indentation, and disable further wrapping.
1884 If we don't know the width of lines, but we know the page height,
1885 we must not wrap words, but should still keep track of newlines
1886 that were explicitly printed.
1888 INDENT should not contain tabs, as that will mess up the char count
1889 on the next line. FIXME.
1891 This routine is guaranteed to force out any output which has been
1892 squirreled away in the wrap_buffer, so wrap_here ((char *)0) can be
1893 used to force out output from the wrap_buffer. */
1896 wrap_here (char *indent)
1898 /* This should have been allocated, but be paranoid anyway. */
1900 internal_error (__FILE__, __LINE__,
1901 _("failed internal consistency check"));
1905 *wrap_pointer = '\0';
1906 fputs_unfiltered (wrap_buffer, gdb_stdout);
1908 wrap_pointer = wrap_buffer;
1909 wrap_buffer[0] = '\0';
1910 if (chars_per_line == UINT_MAX) /* No line overflow checking. */
1914 else if (chars_printed >= chars_per_line)
1916 puts_filtered ("\n");
1918 puts_filtered (indent);
1923 wrap_column = chars_printed;
1927 wrap_indent = indent;
1931 /* Print input string to gdb_stdout, filtered, with wrap,
1932 arranging strings in columns of n chars. String can be
1933 right or left justified in the column. Never prints
1934 trailing spaces. String should never be longer than
1935 width. FIXME: this could be useful for the EXAMINE
1936 command, which currently doesn't tabulate very well. */
1939 puts_filtered_tabular (char *string, int width, int right)
1945 gdb_assert (chars_per_line > 0);
1946 if (chars_per_line == UINT_MAX)
1948 fputs_filtered (string, gdb_stdout);
1949 fputs_filtered ("\n", gdb_stdout);
1953 if (((chars_printed - 1) / width + 2) * width >= chars_per_line)
1954 fputs_filtered ("\n", gdb_stdout);
1956 if (width >= chars_per_line)
1957 width = chars_per_line - 1;
1959 stringlen = strlen (string);
1961 if (chars_printed > 0)
1962 spaces = width - (chars_printed - 1) % width - 1;
1964 spaces += width - stringlen;
1966 spacebuf = alloca (spaces + 1);
1967 spacebuf[spaces] = '\0';
1969 spacebuf[spaces] = ' ';
1971 fputs_filtered (spacebuf, gdb_stdout);
1972 fputs_filtered (string, gdb_stdout);
1976 /* Ensure that whatever gets printed next, using the filtered output
1977 commands, starts at the beginning of the line. I.e. if there is
1978 any pending output for the current line, flush it and start a new
1979 line. Otherwise do nothing. */
1984 if (chars_printed > 0)
1986 puts_filtered ("\n");
1991 /* Like fputs but if FILTER is true, pause after every screenful.
1993 Regardless of FILTER can wrap at points other than the final
1994 character of a line.
1996 Unlike fputs, fputs_maybe_filtered does not return a value.
1997 It is OK for LINEBUFFER to be NULL, in which case just don't print
2000 Note that a longjmp to top level may occur in this routine (only if
2001 FILTER is true) (since prompt_for_continue may do so) so this
2002 routine should not be called when cleanups are not in place. */
2005 fputs_maybe_filtered (const char *linebuffer, struct ui_file *stream,
2008 const char *lineptr;
2010 if (linebuffer == 0)
2013 /* Don't do any filtering if it is disabled. */
2014 if (stream != gdb_stdout
2015 || !pagination_enabled
2017 || (lines_per_page == UINT_MAX && chars_per_line == UINT_MAX)
2018 || top_level_interpreter () == NULL
2019 || ui_out_is_mi_like_p (interp_ui_out (top_level_interpreter ())))
2021 fputs_unfiltered (linebuffer, stream);
2025 /* Go through and output each character. Show line extension
2026 when this is necessary; prompt user for new page when this is
2029 lineptr = linebuffer;
2032 /* Possible new page. */
2033 if (filter && (lines_printed >= lines_per_page - 1))
2034 prompt_for_continue ();
2036 while (*lineptr && *lineptr != '\n')
2038 /* Print a single line. */
2039 if (*lineptr == '\t')
2042 *wrap_pointer++ = '\t';
2044 fputc_unfiltered ('\t', stream);
2045 /* Shifting right by 3 produces the number of tab stops
2046 we have already passed, and then adding one and
2047 shifting left 3 advances to the next tab stop. */
2048 chars_printed = ((chars_printed >> 3) + 1) << 3;
2054 *wrap_pointer++ = *lineptr;
2056 fputc_unfiltered (*lineptr, stream);
2061 if (chars_printed >= chars_per_line)
2063 unsigned int save_chars = chars_printed;
2067 /* If we aren't actually wrapping, don't output newline --
2068 if chars_per_line is right, we probably just overflowed
2069 anyway; if it's wrong, let us keep going. */
2071 fputc_unfiltered ('\n', stream);
2073 /* Possible new page. */
2074 if (lines_printed >= lines_per_page - 1)
2075 prompt_for_continue ();
2077 /* Now output indentation and wrapped string. */
2080 fputs_unfiltered (wrap_indent, stream);
2081 *wrap_pointer = '\0'; /* Null-terminate saved stuff, */
2082 fputs_unfiltered (wrap_buffer, stream); /* and eject it. */
2083 /* FIXME, this strlen is what prevents wrap_indent from
2084 containing tabs. However, if we recurse to print it
2085 and count its chars, we risk trouble if wrap_indent is
2086 longer than (the user settable) chars_per_line.
2087 Note also that this can set chars_printed > chars_per_line
2088 if we are printing a long string. */
2089 chars_printed = strlen (wrap_indent)
2090 + (save_chars - wrap_column);
2091 wrap_pointer = wrap_buffer; /* Reset buffer */
2092 wrap_buffer[0] = '\0';
2093 wrap_column = 0; /* And disable fancy wrap */
2098 if (*lineptr == '\n')
2101 wrap_here ((char *) 0); /* Spit out chars, cancel
2104 fputc_unfiltered ('\n', stream);
2111 fputs_filtered (const char *linebuffer, struct ui_file *stream)
2113 fputs_maybe_filtered (linebuffer, stream, 1);
2117 putchar_unfiltered (int c)
2121 ui_file_write (gdb_stdout, &buf, 1);
2125 /* Write character C to gdb_stdout using GDB's paging mechanism and return C.
2126 May return nonlocally. */
2129 putchar_filtered (int c)
2131 return fputc_filtered (c, gdb_stdout);
2135 fputc_unfiltered (int c, struct ui_file *stream)
2139 ui_file_write (stream, &buf, 1);
2144 fputc_filtered (int c, struct ui_file *stream)
2150 fputs_filtered (buf, stream);
2154 /* puts_debug is like fputs_unfiltered, except it prints special
2155 characters in printable fashion. */
2158 puts_debug (char *prefix, char *string, char *suffix)
2162 /* Print prefix and suffix after each line. */
2163 static int new_line = 1;
2164 static int return_p = 0;
2165 static char *prev_prefix = "";
2166 static char *prev_suffix = "";
2168 if (*string == '\n')
2171 /* If the prefix is changing, print the previous suffix, a new line,
2172 and the new prefix. */
2173 if ((return_p || (strcmp (prev_prefix, prefix) != 0)) && !new_line)
2175 fputs_unfiltered (prev_suffix, gdb_stdlog);
2176 fputs_unfiltered ("\n", gdb_stdlog);
2177 fputs_unfiltered (prefix, gdb_stdlog);
2180 /* Print prefix if we printed a newline during the previous call. */
2184 fputs_unfiltered (prefix, gdb_stdlog);
2187 prev_prefix = prefix;
2188 prev_suffix = suffix;
2190 /* Output characters in a printable format. */
2191 while ((ch = *string++) != '\0')
2197 fputc_unfiltered (ch, gdb_stdlog);
2200 fprintf_unfiltered (gdb_stdlog, "\\x%02x", ch & 0xff);
2204 fputs_unfiltered ("\\\\", gdb_stdlog);
2207 fputs_unfiltered ("\\b", gdb_stdlog);
2210 fputs_unfiltered ("\\f", gdb_stdlog);
2214 fputs_unfiltered ("\\n", gdb_stdlog);
2217 fputs_unfiltered ("\\r", gdb_stdlog);
2220 fputs_unfiltered ("\\t", gdb_stdlog);
2223 fputs_unfiltered ("\\v", gdb_stdlog);
2227 return_p = ch == '\r';
2230 /* Print suffix if we printed a newline. */
2233 fputs_unfiltered (suffix, gdb_stdlog);
2234 fputs_unfiltered ("\n", gdb_stdlog);
2239 /* Print a variable number of ARGS using format FORMAT. If this
2240 information is going to put the amount written (since the last call
2241 to REINITIALIZE_MORE_FILTER or the last page break) over the page size,
2242 call prompt_for_continue to get the users permision to continue.
2244 Unlike fprintf, this function does not return a value.
2246 We implement three variants, vfprintf (takes a vararg list and stream),
2247 fprintf (takes a stream to write on), and printf (the usual).
2249 Note also that a longjmp to top level may occur in this routine
2250 (since prompt_for_continue may do so) so this routine should not be
2251 called when cleanups are not in place. */
2254 vfprintf_maybe_filtered (struct ui_file *stream, const char *format,
2255 va_list args, int filter)
2258 struct cleanup *old_cleanups;
2260 linebuffer = xstrvprintf (format, args);
2261 old_cleanups = make_cleanup (xfree, linebuffer);
2262 fputs_maybe_filtered (linebuffer, stream, filter);
2263 do_cleanups (old_cleanups);
2268 vfprintf_filtered (struct ui_file *stream, const char *format, va_list args)
2270 vfprintf_maybe_filtered (stream, format, args, 1);
2274 vfprintf_unfiltered (struct ui_file *stream, const char *format, va_list args)
2277 struct cleanup *old_cleanups;
2279 linebuffer = xstrvprintf (format, args);
2280 old_cleanups = make_cleanup (xfree, linebuffer);
2281 if (debug_timestamp && stream == gdb_stdlog)
2287 gettimeofday (&tm, NULL);
2289 len = strlen (linebuffer);
2290 need_nl = (len > 0 && linebuffer[len - 1] != '\n');
2292 timestamp = xstrprintf ("%ld:%ld %s%s",
2293 (long) tm.tv_sec, (long) tm.tv_usec,
2295 need_nl ? "\n": "");
2296 make_cleanup (xfree, timestamp);
2297 fputs_unfiltered (timestamp, stream);
2300 fputs_unfiltered (linebuffer, stream);
2301 do_cleanups (old_cleanups);
2305 vprintf_filtered (const char *format, va_list args)
2307 vfprintf_maybe_filtered (gdb_stdout, format, args, 1);
2311 vprintf_unfiltered (const char *format, va_list args)
2313 vfprintf_unfiltered (gdb_stdout, format, args);
2317 fprintf_filtered (struct ui_file *stream, const char *format, ...)
2321 va_start (args, format);
2322 vfprintf_filtered (stream, format, args);
2327 fprintf_unfiltered (struct ui_file *stream, const char *format, ...)
2331 va_start (args, format);
2332 vfprintf_unfiltered (stream, format, args);
2336 /* Like fprintf_filtered, but prints its result indented.
2337 Called as fprintfi_filtered (spaces, stream, format, ...); */
2340 fprintfi_filtered (int spaces, struct ui_file *stream, const char *format,
2345 va_start (args, format);
2346 print_spaces_filtered (spaces, stream);
2348 vfprintf_filtered (stream, format, args);
2354 printf_filtered (const char *format, ...)
2358 va_start (args, format);
2359 vfprintf_filtered (gdb_stdout, format, args);
2365 printf_unfiltered (const char *format, ...)
2369 va_start (args, format);
2370 vfprintf_unfiltered (gdb_stdout, format, args);
2374 /* Like printf_filtered, but prints it's result indented.
2375 Called as printfi_filtered (spaces, format, ...); */
2378 printfi_filtered (int spaces, const char *format, ...)
2382 va_start (args, format);
2383 print_spaces_filtered (spaces, gdb_stdout);
2384 vfprintf_filtered (gdb_stdout, format, args);
2388 /* Easy -- but watch out!
2390 This routine is *not* a replacement for puts()! puts() appends a newline.
2391 This one doesn't, and had better not! */
2394 puts_filtered (const char *string)
2396 fputs_filtered (string, gdb_stdout);
2400 puts_unfiltered (const char *string)
2402 fputs_unfiltered (string, gdb_stdout);
2405 /* Return a pointer to N spaces and a null. The pointer is good
2406 until the next call to here. */
2411 static char *spaces = 0;
2412 static int max_spaces = -1;
2418 spaces = (char *) xmalloc (n + 1);
2419 for (t = spaces + n; t != spaces;)
2425 return spaces + max_spaces - n;
2428 /* Print N spaces. */
2430 print_spaces_filtered (int n, struct ui_file *stream)
2432 fputs_filtered (n_spaces (n), stream);
2435 /* C++/ObjC demangler stuff. */
2437 /* fprintf_symbol_filtered attempts to demangle NAME, a symbol in language
2438 LANG, using demangling args ARG_MODE, and print it filtered to STREAM.
2439 If the name is not mangled, or the language for the name is unknown, or
2440 demangling is off, the name is printed in its "raw" form. */
2443 fprintf_symbol_filtered (struct ui_file *stream, const char *name,
2444 enum language lang, int arg_mode)
2450 /* If user wants to see raw output, no problem. */
2453 fputs_filtered (name, stream);
2457 demangled = language_demangle (language_def (lang), name, arg_mode);
2458 fputs_filtered (demangled ? demangled : name, stream);
2459 if (demangled != NULL)
2467 /* Do a strcmp() type operation on STRING1 and STRING2, ignoring any
2468 differences in whitespace. Returns 0 if they match, non-zero if they
2469 don't (slightly different than strcmp()'s range of return values).
2471 As an extra hack, string1=="FOO(ARGS)" matches string2=="FOO".
2472 This "feature" is useful when searching for matching C++ function names
2473 (such as if the user types 'break FOO', where FOO is a mangled C++
2477 strcmp_iw (const char *string1, const char *string2)
2479 while ((*string1 != '\0') && (*string2 != '\0'))
2481 while (isspace (*string1))
2485 while (isspace (*string2))
2489 if (case_sensitivity == case_sensitive_on && *string1 != *string2)
2491 if (case_sensitivity == case_sensitive_off
2492 && (tolower ((unsigned char) *string1)
2493 != tolower ((unsigned char) *string2)))
2495 if (*string1 != '\0')
2501 return (*string1 != '\0' && *string1 != '(') || (*string2 != '\0');
2504 /* This is like strcmp except that it ignores whitespace and treats
2505 '(' as the first non-NULL character in terms of ordering. Like
2506 strcmp (and unlike strcmp_iw), it returns negative if STRING1 <
2507 STRING2, 0 if STRING2 = STRING2, and positive if STRING1 > STRING2
2508 according to that ordering.
2510 If a list is sorted according to this function and if you want to
2511 find names in the list that match some fixed NAME according to
2512 strcmp_iw(LIST_ELT, NAME), then the place to start looking is right
2513 where this function would put NAME.
2515 This function must be neutral to the CASE_SENSITIVITY setting as the user
2516 may choose it during later lookup. Therefore this function always sorts
2517 primarily case-insensitively and secondarily case-sensitively.
2519 Here are some examples of why using strcmp to sort is a bad idea:
2523 Say your partial symtab contains: "foo<char *>", "goo". Then, if
2524 we try to do a search for "foo<char*>", strcmp will locate this
2525 after "foo<char *>" and before "goo". Then lookup_partial_symbol
2526 will start looking at strings beginning with "goo", and will never
2527 see the correct match of "foo<char *>".
2529 Parenthesis example:
2531 In practice, this is less like to be an issue, but I'll give it a
2532 shot. Let's assume that '$' is a legitimate character to occur in
2533 symbols. (Which may well even be the case on some systems.) Then
2534 say that the partial symbol table contains "foo$" and "foo(int)".
2535 strcmp will put them in this order, since '$' < '('. Now, if the
2536 user searches for "foo", then strcmp will sort "foo" before "foo$".
2537 Then lookup_partial_symbol will notice that strcmp_iw("foo$",
2538 "foo") is false, so it won't proceed to the actual match of
2539 "foo(int)" with "foo". */
2542 strcmp_iw_ordered (const char *string1, const char *string2)
2544 const char *saved_string1 = string1, *saved_string2 = string2;
2545 enum case_sensitivity case_pass = case_sensitive_off;
2549 /* C1 and C2 are valid only if *string1 != '\0' && *string2 != '\0'.
2550 Provide stub characters if we are already at the end of one of the
2552 char c1 = 'X', c2 = 'X';
2554 while (*string1 != '\0' && *string2 != '\0')
2556 while (isspace (*string1))
2558 while (isspace (*string2))
2563 case case_sensitive_off:
2564 c1 = tolower ((unsigned char) *string1);
2565 c2 = tolower ((unsigned char) *string2);
2567 case case_sensitive_on:
2575 if (*string1 != '\0')
2584 /* Characters are non-equal unless they're both '\0'; we want to
2585 make sure we get the comparison right according to our
2586 comparison in the cases where one of them is '\0' or '('. */
2588 if (*string2 == '\0')
2593 if (*string2 == '\0')
2598 if (*string2 == '\0' || *string2 == '(')
2607 if (case_pass == case_sensitive_on)
2610 /* Otherwise the strings were equal in case insensitive way, make
2611 a more fine grained comparison in a case sensitive way. */
2613 case_pass = case_sensitive_on;
2614 string1 = saved_string1;
2615 string2 = saved_string2;
2619 /* A simple comparison function with opposite semantics to strcmp. */
2622 streq (const char *lhs, const char *rhs)
2624 return !strcmp (lhs, rhs);
2630 ** Answer whether string_to_compare is a full or partial match to
2631 ** template_string. The partial match must be in sequence starting
2635 subset_compare (char *string_to_compare, char *template_string)
2639 if (template_string != (char *) NULL && string_to_compare != (char *) NULL
2640 && strlen (string_to_compare) <= strlen (template_string))
2643 (template_string, string_to_compare, strlen (string_to_compare)) == 0);
2650 pagination_on_command (char *arg, int from_tty)
2652 pagination_enabled = 1;
2656 pagination_off_command (char *arg, int from_tty)
2658 pagination_enabled = 0;
2662 show_debug_timestamp (struct ui_file *file, int from_tty,
2663 struct cmd_list_element *c, const char *value)
2665 fprintf_filtered (file, _("Timestamping debugging messages is %s.\n"),
2671 initialize_utils (void)
2673 add_setshow_uinteger_cmd ("width", class_support, &chars_per_line, _("\
2674 Set number of characters where GDB should wrap lines of its output."), _("\
2675 Show number of characters where GDB should wrap lines of its output."), _("\
2676 This affects where GDB wraps its output to fit the screen width.\n\
2677 Setting this to \"unlimited\" or zero prevents GDB from wrapping its output."),
2679 show_chars_per_line,
2680 &setlist, &showlist);
2682 add_setshow_uinteger_cmd ("height", class_support, &lines_per_page, _("\
2683 Set number of lines in a page for GDB output pagination."), _("\
2684 Show number of lines in a page for GDB output pagination."), _("\
2685 This affects the number of lines after which GDB will pause\n\
2686 its output and ask you whether to continue.\n\
2687 Setting this to \"unlimited\" or zero causes GDB never pause during output."),
2689 show_lines_per_page,
2690 &setlist, &showlist);
2694 add_setshow_boolean_cmd ("pagination", class_support,
2695 &pagination_enabled, _("\
2696 Set state of GDB output pagination."), _("\
2697 Show state of GDB output pagination."), _("\
2698 When pagination is ON, GDB pauses at end of each screenful of\n\
2699 its output and asks you whether to continue.\n\
2700 Turning pagination off is an alternative to \"set height unlimited\"."),
2702 show_pagination_enabled,
2703 &setlist, &showlist);
2707 add_com ("am", class_support, pagination_on_command,
2708 _("Enable pagination"));
2709 add_com ("sm", class_support, pagination_off_command,
2710 _("Disable pagination"));
2713 add_setshow_boolean_cmd ("sevenbit-strings", class_support,
2714 &sevenbit_strings, _("\
2715 Set printing of 8-bit characters in strings as \\nnn."), _("\
2716 Show printing of 8-bit characters in strings as \\nnn."), NULL,
2718 show_sevenbit_strings,
2719 &setprintlist, &showprintlist);
2721 add_setshow_boolean_cmd ("timestamp", class_maintenance,
2722 &debug_timestamp, _("\
2723 Set timestamping of debugging messages."), _("\
2724 Show timestamping of debugging messages."), _("\
2725 When set, debugging messages will be marked with seconds and microseconds."),
2727 show_debug_timestamp,
2728 &setdebuglist, &showdebuglist);
2731 /* Print routines to handle variable size regs, etc. */
2732 /* Temporary storage using circular buffer. */
2738 static char buf[NUMCELLS][CELLSIZE];
2739 static int cell = 0;
2741 if (++cell >= NUMCELLS)
2747 paddress (struct gdbarch *gdbarch, CORE_ADDR addr)
2749 /* Truncate address to the size of a target address, avoiding shifts
2750 larger or equal than the width of a CORE_ADDR. The local
2751 variable ADDR_BIT stops the compiler reporting a shift overflow
2752 when it won't occur. */
2753 /* NOTE: This assumes that the significant address information is
2754 kept in the least significant bits of ADDR - the upper bits were
2755 either zero or sign extended. Should gdbarch_address_to_pointer or
2756 some ADDRESS_TO_PRINTABLE() be used to do the conversion? */
2758 int addr_bit = gdbarch_addr_bit (gdbarch);
2760 if (addr_bit < (sizeof (CORE_ADDR) * HOST_CHAR_BIT))
2761 addr &= ((CORE_ADDR) 1 << addr_bit) - 1;
2762 return hex_string (addr);
2765 /* This function is described in "defs.h". */
2768 print_core_address (struct gdbarch *gdbarch, CORE_ADDR address)
2770 int addr_bit = gdbarch_addr_bit (gdbarch);
2772 if (addr_bit < (sizeof (CORE_ADDR) * HOST_CHAR_BIT))
2773 address &= ((CORE_ADDR) 1 << addr_bit) - 1;
2775 /* FIXME: cagney/2002-05-03: Need local_address_string() function
2776 that returns the language localized string formatted to a width
2777 based on gdbarch_addr_bit. */
2779 return hex_string_custom (address, 8);
2781 return hex_string_custom (address, 16);
2784 /* Callback hash_f for htab_create_alloc or htab_create_alloc_ex. */
2787 core_addr_hash (const void *ap)
2789 const CORE_ADDR *addrp = ap;
2794 /* Callback eq_f for htab_create_alloc or htab_create_alloc_ex. */
2797 core_addr_eq (const void *ap, const void *bp)
2799 const CORE_ADDR *addr_ap = ap;
2800 const CORE_ADDR *addr_bp = bp;
2802 return *addr_ap == *addr_bp;
2806 decimal2str (char *sign, ULONGEST addr, int width)
2808 /* Steal code from valprint.c:print_decimal(). Should this worry
2809 about the real size of addr as the above does? */
2810 unsigned long temp[3];
2811 char *str = get_cell ();
2816 temp[i] = addr % (1000 * 1000 * 1000);
2817 addr /= (1000 * 1000 * 1000);
2821 while (addr != 0 && i < (sizeof (temp) / sizeof (temp[0])));
2830 xsnprintf (str, CELLSIZE, "%s%0*lu", sign, width, temp[0]);
2833 xsnprintf (str, CELLSIZE, "%s%0*lu%09lu", sign, width,
2837 xsnprintf (str, CELLSIZE, "%s%0*lu%09lu%09lu", sign, width,
2838 temp[2], temp[1], temp[0]);
2841 internal_error (__FILE__, __LINE__,
2842 _("failed internal consistency check"));
2849 octal2str (ULONGEST addr, int width)
2851 unsigned long temp[3];
2852 char *str = get_cell ();
2857 temp[i] = addr % (0100000 * 0100000);
2858 addr /= (0100000 * 0100000);
2862 while (addr != 0 && i < (sizeof (temp) / sizeof (temp[0])));
2872 xsnprintf (str, CELLSIZE, "%*o", width, 0);
2874 xsnprintf (str, CELLSIZE, "0%0*lo", width, temp[0]);
2877 xsnprintf (str, CELLSIZE, "0%0*lo%010lo", width, temp[1], temp[0]);
2880 xsnprintf (str, CELLSIZE, "0%0*lo%010lo%010lo", width,
2881 temp[2], temp[1], temp[0]);
2884 internal_error (__FILE__, __LINE__,
2885 _("failed internal consistency check"));
2892 pulongest (ULONGEST u)
2894 return decimal2str ("", u, 0);
2898 plongest (LONGEST l)
2901 return decimal2str ("-", -l, 0);
2903 return decimal2str ("", l, 0);
2906 /* Eliminate warning from compiler on 32-bit systems. */
2907 static int thirty_two = 32;
2910 phex (ULONGEST l, int sizeof_l)
2918 xsnprintf (str, CELLSIZE, "%08lx%08lx",
2919 (unsigned long) (l >> thirty_two),
2920 (unsigned long) (l & 0xffffffff));
2924 xsnprintf (str, CELLSIZE, "%08lx", (unsigned long) l);
2928 xsnprintf (str, CELLSIZE, "%04x", (unsigned short) (l & 0xffff));
2931 str = phex (l, sizeof (l));
2939 phex_nz (ULONGEST l, int sizeof_l)
2947 unsigned long high = (unsigned long) (l >> thirty_two);
2951 xsnprintf (str, CELLSIZE, "%lx",
2952 (unsigned long) (l & 0xffffffff));
2954 xsnprintf (str, CELLSIZE, "%lx%08lx", high,
2955 (unsigned long) (l & 0xffffffff));
2960 xsnprintf (str, CELLSIZE, "%lx", (unsigned long) l);
2964 xsnprintf (str, CELLSIZE, "%x", (unsigned short) (l & 0xffff));
2967 str = phex_nz (l, sizeof (l));
2974 /* Converts a LONGEST to a C-format hexadecimal literal and stores it
2975 in a static string. Returns a pointer to this string. */
2977 hex_string (LONGEST num)
2979 char *result = get_cell ();
2981 xsnprintf (result, CELLSIZE, "0x%s", phex_nz (num, sizeof (num)));
2985 /* Converts a LONGEST number to a C-format hexadecimal literal and
2986 stores it in a static string. Returns a pointer to this string
2987 that is valid until the next call. The number is padded on the
2988 left with 0s to at least WIDTH characters. */
2990 hex_string_custom (LONGEST num, int width)
2992 char *result = get_cell ();
2993 char *result_end = result + CELLSIZE - 1;
2994 const char *hex = phex_nz (num, sizeof (num));
2995 int hex_len = strlen (hex);
2997 if (hex_len > width)
2999 if (width + 2 >= CELLSIZE)
3000 internal_error (__FILE__, __LINE__, _("\
3001 hex_string_custom: insufficient space to store result"));
3003 strcpy (result_end - width - 2, "0x");
3004 memset (result_end - width, '0', width);
3005 strcpy (result_end - hex_len, hex);
3006 return result_end - width - 2;
3009 /* Convert VAL to a numeral in the given radix. For
3010 * radix 10, IS_SIGNED may be true, indicating a signed quantity;
3011 * otherwise VAL is interpreted as unsigned. If WIDTH is supplied,
3012 * it is the minimum width (0-padded if needed). USE_C_FORMAT means
3013 * to use C format in all cases. If it is false, then 'x'
3014 * and 'o' formats do not include a prefix (0x or leading 0). */
3017 int_string (LONGEST val, int radix, int is_signed, int width,
3027 result = hex_string (val);
3029 result = hex_string_custom (val, width);
3036 if (is_signed && val < 0)
3037 return decimal2str ("-", -val, width);
3039 return decimal2str ("", val, width);
3043 char *result = octal2str (val, width);
3045 if (use_c_format || val == 0)
3051 internal_error (__FILE__, __LINE__,
3052 _("failed internal consistency check"));
3056 /* Convert a CORE_ADDR into a string. */
3058 core_addr_to_string (const CORE_ADDR addr)
3060 char *str = get_cell ();
3063 strcat (str, phex (addr, sizeof (addr)));
3068 core_addr_to_string_nz (const CORE_ADDR addr)
3070 char *str = get_cell ();
3073 strcat (str, phex_nz (addr, sizeof (addr)));
3077 /* Convert a string back into a CORE_ADDR. */
3079 string_to_core_addr (const char *my_string)
3083 if (my_string[0] == '0' && tolower (my_string[1]) == 'x')
3085 /* Assume that it is in hex. */
3088 for (i = 2; my_string[i] != '\0'; i++)
3090 if (isdigit (my_string[i]))
3091 addr = (my_string[i] - '0') + (addr * 16);
3092 else if (isxdigit (my_string[i]))
3093 addr = (tolower (my_string[i]) - 'a' + 0xa) + (addr * 16);
3095 error (_("invalid hex \"%s\""), my_string);
3100 /* Assume that it is in decimal. */
3103 for (i = 0; my_string[i] != '\0'; i++)
3105 if (isdigit (my_string[i]))
3106 addr = (my_string[i] - '0') + (addr * 10);
3108 error (_("invalid decimal \"%s\""), my_string);
3116 host_address_to_string (const void *addr)
3118 char *str = get_cell ();
3120 xsnprintf (str, CELLSIZE, "0x%s", phex_nz ((uintptr_t) addr, sizeof (addr)));
3125 gdb_realpath (const char *filename)
3127 /* Method 1: The system has a compile time upper bound on a filename
3128 path. Use that and realpath() to canonicalize the name. This is
3129 the most common case. Note that, if there isn't a compile time
3130 upper bound, you want to avoid realpath() at all costs. */
3131 #if defined (HAVE_REALPATH) && defined (PATH_MAX)
3134 const char *rp = realpath (filename, buf);
3138 return xstrdup (rp);
3140 #endif /* HAVE_REALPATH */
3142 /* Method 2: The host system (i.e., GNU) has the function
3143 canonicalize_file_name() which malloc's a chunk of memory and
3144 returns that, use that. */
3145 #if defined(HAVE_CANONICALIZE_FILE_NAME)
3147 char *rp = canonicalize_file_name (filename);
3150 return xstrdup (filename);
3156 /* FIXME: cagney/2002-11-13:
3158 Method 2a: Use realpath() with a NULL buffer. Some systems, due
3159 to the problems described in method 3, have modified their
3160 realpath() implementation so that it will allocate a buffer when
3161 NULL is passed in. Before this can be used, though, some sort of
3162 configure time test would need to be added. Otherwize the code
3163 will likely core dump. */
3165 /* Method 3: Now we're getting desperate! The system doesn't have a
3166 compile time buffer size and no alternative function. Query the
3167 OS, using pathconf(), for the buffer limit. Care is needed
3168 though, some systems do not limit PATH_MAX (return -1 for
3169 pathconf()) making it impossible to pass a correctly sized buffer
3170 to realpath() (it could always overflow). On those systems, we
3172 #if defined (HAVE_REALPATH) && defined (_PC_PATH_MAX) && defined(HAVE_ALLOCA)
3174 /* Find out the max path size. */
3175 long path_max = pathconf ("/", _PC_PATH_MAX);
3179 /* PATH_MAX is bounded. */
3180 char *buf = alloca (path_max);
3181 char *rp = realpath (filename, buf);
3183 return xstrdup (rp ? rp : filename);
3188 /* The MS Windows method. If we don't have realpath, we assume we
3189 don't have symlinks and just canonicalize to a Windows absolute
3190 path. GetFullPath converts ../ and ./ in relative paths to
3191 absolute paths, filling in current drive if one is not given
3192 or using the current directory of a specified drive (eg, "E:foo").
3193 It also converts all forward slashes to back slashes. */
3194 /* The file system is case-insensitive but case-preserving.
3195 So we do not lowercase the path. Otherwise, we might not
3196 be able to display the original casing in a given path. */
3197 #if defined (_WIN32)
3200 DWORD len = GetFullPathName (filename, MAX_PATH, buf, NULL);
3202 if (len > 0 && len < MAX_PATH)
3203 return xstrdup (buf);
3207 /* This system is a lost cause, just dup the buffer. */
3208 return xstrdup (filename);
3212 align_up (ULONGEST v, int n)
3214 /* Check that N is really a power of two. */
3215 gdb_assert (n && (n & (n-1)) == 0);
3216 return (v + n - 1) & -n;
3220 align_down (ULONGEST v, int n)
3222 /* Check that N is really a power of two. */
3223 gdb_assert (n && (n & (n-1)) == 0);
3230 gdb_sign_extend (LONGEST value, int bit)
3232 gdb_assert (bit >= 1 && bit <= 8 * sizeof (LONGEST));
3234 if (((value >> (bit - 1)) & 1) != 0)
3236 LONGEST signbit = ((LONGEST) 1) << (bit - 1);
3238 value = (value ^ signbit) - signbit;
3244 /* Allocation function for the libiberty hash table which uses an
3245 obstack. The obstack is passed as DATA. */
3248 hashtab_obstack_allocate (void *data, size_t size, size_t count)
3250 unsigned int total = size * count;
3251 void *ptr = obstack_alloc ((struct obstack *) data, total);
3253 memset (ptr, 0, total);
3257 /* Trivial deallocation function for the libiberty splay tree and hash
3258 table - don't deallocate anything. Rely on later deletion of the
3259 obstack. DATA will be the obstack, although it is not needed
3263 dummy_obstack_deallocate (void *object, void *data)
3268 /* The bit offset of the highest byte in a ULONGEST, for overflow
3271 #define HIGH_BYTE_POSN ((sizeof (ULONGEST) - 1) * HOST_CHAR_BIT)
3273 /* True (non-zero) iff DIGIT is a valid digit in radix BASE,
3274 where 2 <= BASE <= 36. */
3277 is_digit_in_base (unsigned char digit, int base)
3279 if (!isalnum (digit))
3282 return (isdigit (digit) && digit < base + '0');
3284 return (isdigit (digit) || tolower (digit) < base - 10 + 'a');
3288 digit_to_int (unsigned char c)
3293 return tolower (c) - 'a' + 10;
3296 /* As for strtoul, but for ULONGEST results. */
3299 strtoulst (const char *num, const char **trailer, int base)
3301 unsigned int high_part;
3306 /* Skip leading whitespace. */
3307 while (isspace (num[i]))
3310 /* Handle prefixes. */
3313 else if (num[i] == '-')
3319 if (base == 0 || base == 16)
3321 if (num[i] == '0' && (num[i + 1] == 'x' || num[i + 1] == 'X'))
3329 if (base == 0 && num[i] == '0')
3335 if (base < 2 || base > 36)
3341 result = high_part = 0;
3342 for (; is_digit_in_base (num[i], base); i += 1)
3344 result = result * base + digit_to_int (num[i]);
3345 high_part = high_part * base + (unsigned int) (result >> HIGH_BYTE_POSN);
3346 result &= ((ULONGEST) 1 << HIGH_BYTE_POSN) - 1;
3347 if (high_part > 0xff)
3350 result = ~ (ULONGEST) 0;
3357 if (trailer != NULL)
3360 result = result + ((ULONGEST) high_part << HIGH_BYTE_POSN);
3367 /* Simple, portable version of dirname that does not modify its
3371 ldirname (const char *filename)
3373 const char *base = lbasename (filename);
3376 while (base > filename && IS_DIR_SEPARATOR (base[-1]))
3379 if (base == filename)
3382 dirname = xmalloc (base - filename + 2);
3383 memcpy (dirname, filename, base - filename);
3385 /* On DOS based file systems, convert "d:foo" to "d:.", so that we
3386 create "d:./bar" later instead of the (different) "d:/bar". */
3387 if (base - filename == 2 && IS_ABSOLUTE_PATH (base)
3388 && !IS_DIR_SEPARATOR (filename[0]))
3389 dirname[base++ - filename] = '.';
3391 dirname[base - filename] = '\0';
3395 /* Call libiberty's buildargv, and return the result.
3396 If buildargv fails due to out-of-memory, call nomem.
3397 Therefore, the returned value is guaranteed to be non-NULL,
3398 unless the parameter itself is NULL. */
3401 gdb_buildargv (const char *s)
3403 char **argv = buildargv (s);
3405 if (s != NULL && argv == NULL)
3411 compare_positive_ints (const void *ap, const void *bp)
3413 /* Because we know we're comparing two ints which are positive,
3414 there's no danger of overflow here. */
3415 return * (int *) ap - * (int *) bp;
3418 /* String compare function for qsort. */
3421 compare_strings (const void *arg1, const void *arg2)
3423 const char **s1 = (const char **) arg1;
3424 const char **s2 = (const char **) arg2;
3426 return strcmp (*s1, *s2);
3429 #define AMBIGUOUS_MESS1 ".\nMatching formats:"
3430 #define AMBIGUOUS_MESS2 \
3431 ".\nUse \"set gnutarget format-name\" to specify the format."
3434 gdb_bfd_errmsg (bfd_error_type error_tag, char **matching)
3440 /* Check if errmsg just need simple return. */
3441 if (error_tag != bfd_error_file_ambiguously_recognized || matching == NULL)
3442 return bfd_errmsg (error_tag);
3444 ret_len = strlen (bfd_errmsg (error_tag)) + strlen (AMBIGUOUS_MESS1)
3445 + strlen (AMBIGUOUS_MESS2);
3446 for (p = matching; *p; p++)
3447 ret_len += strlen (*p) + 1;
3448 ret = xmalloc (ret_len + 1);
3450 make_cleanup (xfree, ret);
3452 strcpy (retp, bfd_errmsg (error_tag));
3453 retp += strlen (retp);
3455 strcpy (retp, AMBIGUOUS_MESS1);
3456 retp += strlen (retp);
3458 for (p = matching; *p; p++)
3460 sprintf (retp, " %s", *p);
3461 retp += strlen (retp);
3465 strcpy (retp, AMBIGUOUS_MESS2);
3470 /* Return ARGS parsed as a valid pid, or throw an error. */
3473 parse_pid_to_attach (char *args)
3479 error_no_arg (_("process-id to attach"));
3482 pid = strtoul (args, &dummy, 0);
3483 /* Some targets don't set errno on errors, grrr! */
3484 if ((pid == 0 && dummy == args) || dummy != &args[strlen (args)])
3485 error (_("Illegal process-id: %s."), args);
3490 /* Helper for make_bpstat_clear_actions_cleanup. */
3493 do_bpstat_clear_actions_cleanup (void *unused)
3495 bpstat_clear_actions ();
3498 /* Call bpstat_clear_actions for the case an exception is throw. You should
3499 discard_cleanups if no exception is caught. */
3502 make_bpstat_clear_actions_cleanup (void)
3504 return make_cleanup (do_bpstat_clear_actions_cleanup, NULL);
3507 /* Check for GCC >= 4.x according to the symtab->producer string. Return minor
3508 version (x) of 4.x in such case. If it is not GCC or it is GCC older than
3509 4.x return -1. If it is GCC 5.x or higher return INT_MAX. */
3512 producer_is_gcc_ge_4 (const char *producer)
3517 if (producer == NULL)
3519 /* For unknown compilers expect their behavior is not compliant. For GCC
3520 this case can also happen for -gdwarf-4 type units supported since
3526 /* Skip any identifier after "GNU " - such as "C++" or "Java". */
3528 if (strncmp (producer, "GNU ", strlen ("GNU ")) != 0)
3530 /* For non-GCC compilers expect their behavior is not compliant. */
3534 cs = &producer[strlen ("GNU ")];
3535 while (*cs && !isdigit (*cs))
3537 if (sscanf (cs, "%d.%d", &major, &minor) != 2)
3539 /* Not recognized as GCC. */
3551 /* Helper for make_cleanup_free_char_ptr_vec. */
3554 do_free_char_ptr_vec (void *arg)
3556 VEC (char_ptr) *char_ptr_vec = arg;
3558 free_char_ptr_vec (char_ptr_vec);
3561 /* Make cleanup handler calling xfree for each element of CHAR_PTR_VEC and
3562 final VEC_free for CHAR_PTR_VEC itself.
3564 You must not modify CHAR_PTR_VEC after this cleanup registration as the
3565 CHAR_PTR_VEC base address may change on its updates. Contrary to VEC_free
3566 this function does not (cannot) clear the pointer. */
3569 make_cleanup_free_char_ptr_vec (VEC (char_ptr) *char_ptr_vec)
3571 return make_cleanup (do_free_char_ptr_vec, char_ptr_vec);
3574 /* Substitute all occurences of string FROM by string TO in *STRINGP. *STRINGP
3575 must come from xrealloc-compatible allocator and it may be updated. FROM
3576 needs to be delimited by IS_DIR_SEPARATOR or DIRNAME_SEPARATOR (or be
3577 located at the start or end of *STRINGP. */
3580 substitute_path_component (char **stringp, const char *from, const char *to)
3582 char *string = *stringp, *s;
3583 const size_t from_len = strlen (from);
3584 const size_t to_len = strlen (to);
3588 s = strstr (s, from);
3592 if ((s == string || IS_DIR_SEPARATOR (s[-1])
3593 || s[-1] == DIRNAME_SEPARATOR)
3594 && (s[from_len] == '\0' || IS_DIR_SEPARATOR (s[from_len])
3595 || s[from_len] == DIRNAME_SEPARATOR))
3599 string_new = xrealloc (string, (strlen (string) + to_len + 1));
3601 /* Relocate the current S pointer. */
3602 s = s - string + string_new;
3603 string = string_new;
3605 /* Replace from by to. */
3606 memmove (&s[to_len], &s[from_len], strlen (&s[from_len]) + 1);
3607 memcpy (s, to, to_len);
3622 /* SIGALRM handler for waitpid_with_timeout. */
3625 sigalrm_handler (int signo)
3627 /* Nothing to do. */
3632 /* Wrapper to wait for child PID to die with TIMEOUT.
3633 TIMEOUT is the time to stop waiting in seconds.
3634 If TIMEOUT is zero, pass WNOHANG to waitpid.
3635 Returns PID if it was successfully waited for, otherwise -1.
3637 Timeouts are currently implemented with alarm and SIGALRM.
3638 If the host does not support them, this waits "forever".
3639 It would be odd though for a host to have waitpid and not SIGALRM. */
3642 wait_to_die_with_timeout (pid_t pid, int *status, int timeout)
3644 pid_t waitpid_result;
3646 gdb_assert (pid > 0);
3647 gdb_assert (timeout >= 0);
3652 #if defined (HAVE_SIGACTION) && defined (SA_RESTART)
3653 struct sigaction sa, old_sa;
3655 sa.sa_handler = sigalrm_handler;
3656 sigemptyset (&sa.sa_mask);
3658 sigaction (SIGALRM, &sa, &old_sa);
3662 ofunc = (void (*)()) signal (SIGALRM, sigalrm_handler);
3668 waitpid_result = waitpid (pid, status, 0);
3672 #if defined (HAVE_SIGACTION) && defined (SA_RESTART)
3673 sigaction (SIGALRM, &old_sa, NULL);
3675 signal (SIGALRM, ofunc);
3680 waitpid_result = waitpid (pid, status, WNOHANG);
3682 if (waitpid_result == pid)
3688 #endif /* HAVE_WAITPID */
3690 /* Provide fnmatch compatible function for FNM_FILE_NAME matching of host files.
3691 Both FNM_FILE_NAME and FNM_NOESCAPE must be set in FLAGS.
3693 It handles correctly HAVE_DOS_BASED_FILE_SYSTEM and
3694 HAVE_CASE_INSENSITIVE_FILE_SYSTEM. */
3697 gdb_filename_fnmatch (const char *pattern, const char *string, int flags)
3699 gdb_assert ((flags & FNM_FILE_NAME) != 0);
3701 /* It is unclear how '\' escaping vs. directory separator should coexist. */
3702 gdb_assert ((flags & FNM_NOESCAPE) != 0);
3704 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
3706 char *pattern_slash, *string_slash;
3708 /* Replace '\' by '/' in both strings. */
3710 pattern_slash = alloca (strlen (pattern) + 1);
3711 strcpy (pattern_slash, pattern);
3712 pattern = pattern_slash;
3713 for (; *pattern_slash != 0; pattern_slash++)
3714 if (IS_DIR_SEPARATOR (*pattern_slash))
3715 *pattern_slash = '/';
3717 string_slash = alloca (strlen (string) + 1);
3718 strcpy (string_slash, string);
3719 string = string_slash;
3720 for (; *string_slash != 0; string_slash++)
3721 if (IS_DIR_SEPARATOR (*string_slash))
3722 *string_slash = '/';
3724 #endif /* HAVE_DOS_BASED_FILE_SYSTEM */
3726 #ifdef HAVE_CASE_INSENSITIVE_FILE_SYSTEM
3727 flags |= FNM_CASEFOLD;
3728 #endif /* HAVE_CASE_INSENSITIVE_FILE_SYSTEM */
3730 return fnmatch (pattern, string, flags);
3733 /* Provide a prototype to silence -Wmissing-prototypes. */
3734 extern initialize_file_ftype _initialize_utils;
3737 _initialize_utils (void)
3739 add_internal_problem_command (&internal_error_problem);
3740 add_internal_problem_command (&internal_warning_problem);