1 /* General utility routines for GDB, the GNU debugger.
3 Copyright (C) 1986-2022 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/>. */
22 #include "gdbsupport/gdb_wait.h"
23 #include "event-top.h"
24 #include "gdbthread.h"
27 #ifdef HAVE_SYS_RESOURCE_H
28 #include <sys/resource.h>
29 #endif /* HAVE_SYS_RESOURCE_H */
32 #include "tui/tui.h" /* For tui_get_command_dimension. */
44 #include "gdb-demangle.h"
45 #include "expression.h"
49 #include "filenames.h"
51 #include "gdb_obstack.h"
57 #include "inferior.h" /* for signed_pointer_to_address */
59 #include "gdb_curses.h"
61 #include "readline/readline.h"
66 #include "gdb_regex.h"
67 #include "gdbsupport/job-control.h"
68 #include "gdbsupport/selftest.h"
69 #include "gdbsupport/gdb_optional.h"
70 #include "cp-support.h"
72 #include "gdbsupport/pathstuff.h"
73 #include "cli/cli-style.h"
74 #include "gdbsupport/scope-exit.h"
77 #include "gdbsupport/gdb-safe-ctype.h"
80 void (*deprecated_error_begin_hook
) (void);
82 /* Prototypes for local functions */
84 static void vfprintf_maybe_filtered (struct ui_file
*, const char *,
86 ATTRIBUTE_PRINTF (2, 0);
88 static void fputs_maybe_filtered (const char *, struct ui_file
*, int);
90 static void prompt_for_continue (void);
92 static void set_screen_size (void);
93 static void set_width (void);
95 /* Time spent in prompt_for_continue in the currently executing command
96 waiting for user to respond.
97 Initialized in make_command_stats_cleanup.
98 Modified in prompt_for_continue and defaulted_query.
99 Used in report_command_stats. */
101 static std::chrono::steady_clock::duration prompt_for_continue_wait_time
;
103 /* A flag indicating whether to timestamp debugging messages. */
105 static bool debug_timestamp
= false;
107 /* True means that strings with character values >0x7F should be printed
108 as octal escapes. False means just print the value (e.g. it's an
109 international character, and the terminal or window can cope.) */
111 bool sevenbit_strings
= false;
113 show_sevenbit_strings (struct ui_file
*file
, int from_tty
,
114 struct cmd_list_element
*c
, const char *value
)
116 fprintf_filtered (file
, _("Printing of 8-bit characters "
117 "in strings as \\nnn is %s.\n"),
121 /* String to be printed before warning messages, if any. */
123 const char *warning_pre_print
= "\nwarning: ";
125 bool pagination_enabled
= true;
127 show_pagination_enabled (struct ui_file
*file
, int from_tty
,
128 struct cmd_list_element
*c
, const char *value
)
130 fprintf_filtered (file
, _("State of pagination is %s.\n"), value
);
136 /* Print a warning message. The first argument STRING is the warning
137 message, used as an fprintf format string, the second is the
138 va_list of arguments for that string. A warning is unfiltered (not
139 paginated) so that the user does not need to page through each
140 screen full of warnings when there are lots of them. */
143 vwarning (const char *string
, va_list args
)
145 if (deprecated_warning_hook
)
146 (*deprecated_warning_hook
) (string
, args
);
149 gdb::optional
<target_terminal::scoped_restore_terminal_state
> term_state
;
150 if (target_supports_terminal_ours ())
152 term_state
.emplace ();
153 target_terminal::ours_for_output ();
155 if (filtered_printing_initialized ())
156 wrap_here (""); /* Force out any buffered output. */
157 gdb_flush (gdb_stdout
);
158 if (warning_pre_print
)
159 fputs_unfiltered (warning_pre_print
, gdb_stderr
);
160 vfprintf_unfiltered (gdb_stderr
, string
, args
);
161 fprintf_unfiltered (gdb_stderr
, "\n");
165 /* Print an error message and return to command level.
166 The first argument STRING is the error message, used as a fprintf string,
167 and the remaining args are passed as arguments to it. */
170 verror (const char *string
, va_list args
)
172 throw_verror (GENERIC_ERROR
, string
, args
);
176 error_stream (const string_file
&stream
)
178 error (("%s"), stream
.c_str ());
181 /* Emit a message and abort. */
183 static void ATTRIBUTE_NORETURN
184 abort_with_message (const char *msg
)
186 if (current_ui
== NULL
)
189 fputs_unfiltered (msg
, gdb_stderr
);
191 abort (); /* ARI: abort */
194 /* Dump core trying to increase the core soft limit to hard limit first. */
199 #ifdef HAVE_SETRLIMIT
200 struct rlimit rlim
= { (rlim_t
) RLIM_INFINITY
, (rlim_t
) RLIM_INFINITY
};
202 setrlimit (RLIMIT_CORE
, &rlim
);
203 #endif /* HAVE_SETRLIMIT */
205 /* Ensure that the SIGABRT we're about to raise will immediately cause
206 GDB to exit and dump core, we don't want to trigger GDB's printing of
207 a backtrace to the console here. */
208 signal (SIGABRT
, SIG_DFL
);
210 abort (); /* ARI: abort */
213 /* Check whether GDB will be able to dump core using the dump_core
214 function. Returns zero if GDB cannot or should not dump core.
215 If LIMIT_KIND is LIMIT_CUR the user's soft limit will be respected.
216 If LIMIT_KIND is LIMIT_MAX only the hard limit will be respected. */
219 can_dump_core (enum resource_limit_kind limit_kind
)
221 #ifdef HAVE_GETRLIMIT
224 /* Be quiet and assume we can dump if an error is returned. */
225 if (getrlimit (RLIMIT_CORE
, &rlim
) != 0)
231 if (rlim
.rlim_cur
== 0)
236 if (rlim
.rlim_max
== 0)
239 #endif /* HAVE_GETRLIMIT */
244 /* Print a warning that we cannot dump core. */
247 warn_cant_dump_core (const char *reason
)
249 fprintf_unfiltered (gdb_stderr
,
250 _("%s\nUnable to dump core, use `ulimit -c"
251 " unlimited' before executing GDB next time.\n"),
255 /* Check whether GDB will be able to dump core using the dump_core
256 function, and print a warning if we cannot. */
259 can_dump_core_warn (enum resource_limit_kind limit_kind
,
262 int core_dump_allowed
= can_dump_core (limit_kind
);
264 if (!core_dump_allowed
)
265 warn_cant_dump_core (reason
);
267 return core_dump_allowed
;
270 /* Allow the user to configure the debugger behavior with respect to
271 what to do when an internal problem is detected. */
273 const char internal_problem_ask
[] = "ask";
274 const char internal_problem_yes
[] = "yes";
275 const char internal_problem_no
[] = "no";
276 static const char *const internal_problem_modes
[] =
278 internal_problem_ask
,
279 internal_problem_yes
,
284 /* Data structure used to control how the internal_vproblem function
285 should behave. An instance of this structure is created for each
286 problem type that GDB supports. */
288 struct internal_problem
290 /* The name of this problem type. This must not contain white space as
291 this string is used to build command names. */
294 /* When this is true then a user command is created (based on NAME) that
295 allows the SHOULD_QUIT field to be modified, otherwise, SHOULD_QUIT
296 can't be changed from its default value by the user. */
297 bool user_settable_should_quit
;
299 /* Reference a value from internal_problem_modes to indicate if GDB
300 should quit when it hits a problem of this type. */
301 const char *should_quit
;
303 /* Like USER_SETTABLE_SHOULD_QUIT but for SHOULD_DUMP_CORE. */
304 bool user_settable_should_dump_core
;
306 /* Like SHOULD_QUIT, but whether GDB should dump core. */
307 const char *should_dump_core
;
309 /* Like USER_SETTABLE_SHOULD_QUIT but for SHOULD_PRINT_BACKTRACE. */
310 bool user_settable_should_print_backtrace
;
312 /* When this is true GDB will print a backtrace when a problem of this
313 type is encountered. */
314 bool should_print_backtrace
;
317 /* Report a problem, internal to GDB, to the user. Once the problem
318 has been reported, and assuming GDB didn't quit, the caller can
319 either allow execution to resume or throw an error. */
321 static void ATTRIBUTE_PRINTF (4, 0)
322 internal_vproblem (struct internal_problem
*problem
,
323 const char *file
, int line
, const char *fmt
, va_list ap
)
330 /* Don't allow infinite error/warning recursion. */
332 static const char msg
[] = "Recursive internal problem.\n";
341 abort_with_message (msg
);
344 /* Newer GLIBC versions put the warn_unused_result attribute
345 on write, but this is one of those rare cases where
346 ignoring the return value is correct. Casting to (void)
347 does not fix this problem. This is the solution suggested
348 at http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25509. */
349 if (write (STDERR_FILENO
, msg
, sizeof (msg
)) != sizeof (msg
))
350 abort (); /* ARI: abort */
355 /* Create a string containing the full error/warning message. Need
356 to call query with this full string, as otherwize the reason
357 (error/warning) and question become separated. Format using a
358 style similar to a compiler error message. Include extra detail
359 so that the user knows that they are living on the edge. */
361 std::string msg
= string_vprintf (fmt
, ap
);
362 reason
= string_printf ("%s:%d: %s: %s\n"
363 "A problem internal to GDB has been detected,\n"
364 "further debugging may prove unreliable.",
365 file
, line
, problem
->name
, msg
.c_str ());
368 /* Fall back to abort_with_message if gdb_stderr is not set up. */
369 if (current_ui
== NULL
)
371 fputs (reason
.c_str (), stderr
);
372 abort_with_message ("\n");
375 /* Try to get the message out and at the start of a new line. */
376 gdb::optional
<target_terminal::scoped_restore_terminal_state
> term_state
;
377 if (target_supports_terminal_ours ())
379 term_state
.emplace ();
380 target_terminal::ours_for_output ();
382 if (filtered_printing_initialized ())
385 /* Emit the message unless query will emit it below. */
386 if (problem
->should_quit
!= internal_problem_ask
388 || !filtered_printing_initialized ()
389 || problem
->should_print_backtrace
)
390 fprintf_unfiltered (gdb_stderr
, "%s\n", reason
.c_str ());
392 if (problem
->should_print_backtrace
)
393 gdb_internal_backtrace ();
395 if (problem
->should_quit
== internal_problem_ask
)
397 /* Default (yes/batch case) is to quit GDB. When in batch mode
398 this lessens the likelihood of GDB going into an infinite
400 if (!confirm
|| !filtered_printing_initialized ())
403 quit_p
= query (_("%s\nQuit this debugging session? "),
406 else if (problem
->should_quit
== internal_problem_yes
)
408 else if (problem
->should_quit
== internal_problem_no
)
411 internal_error (__FILE__
, __LINE__
, _("bad switch"));
413 fputs_unfiltered (_("\nThis is a bug, please report it."), gdb_stderr
);
414 if (REPORT_BUGS_TO
[0])
415 fprintf_unfiltered (gdb_stderr
, _(" For instructions, see:\n%s."),
417 fputs_unfiltered ("\n\n", gdb_stderr
);
419 if (problem
->should_dump_core
== internal_problem_ask
)
421 if (!can_dump_core_warn (LIMIT_MAX
, reason
.c_str ()))
423 else if (!filtered_printing_initialized ())
427 /* Default (yes/batch case) is to dump core. This leaves a GDB
428 `dropping' so that it is easier to see that something went
430 dump_core_p
= query (_("%s\nCreate a core file of GDB? "),
434 else if (problem
->should_dump_core
== internal_problem_yes
)
435 dump_core_p
= can_dump_core_warn (LIMIT_MAX
, reason
.c_str ());
436 else if (problem
->should_dump_core
== internal_problem_no
)
439 internal_error (__FILE__
, __LINE__
, _("bad switch"));
452 #ifdef HAVE_WORKING_FORK
462 static struct internal_problem internal_error_problem
= {
463 "internal-error", true, internal_problem_ask
, true, internal_problem_ask
,
464 true, GDB_PRINT_INTERNAL_BACKTRACE_INIT_ON
468 internal_verror (const char *file
, int line
, const char *fmt
, va_list ap
)
470 internal_vproblem (&internal_error_problem
, file
, line
, fmt
, ap
);
471 throw_quit (_("Command aborted."));
474 static struct internal_problem internal_warning_problem
= {
475 "internal-warning", true, internal_problem_ask
, true, internal_problem_ask
,
480 internal_vwarning (const char *file
, int line
, const char *fmt
, va_list ap
)
482 internal_vproblem (&internal_warning_problem
, file
, line
, fmt
, ap
);
485 static struct internal_problem demangler_warning_problem
= {
486 "demangler-warning", true, internal_problem_ask
, false, internal_problem_no
,
491 demangler_vwarning (const char *file
, int line
, const char *fmt
, va_list ap
)
493 internal_vproblem (&demangler_warning_problem
, file
, line
, fmt
, ap
);
497 demangler_warning (const char *file
, int line
, const char *string
, ...)
501 va_start (ap
, string
);
502 demangler_vwarning (file
, line
, string
, ap
);
506 /* When GDB reports an internal problem (error or warning) it gives
507 the user the opportunity to quit GDB and/or create a core file of
508 the current debug session. This function registers a few commands
509 that make it possible to specify that GDB should always or never
510 quit or create a core file, without asking. The commands look
513 maint set PROBLEM-NAME quit ask|yes|no
514 maint show PROBLEM-NAME quit
515 maint set PROBLEM-NAME corefile ask|yes|no
516 maint show PROBLEM-NAME corefile
518 Where PROBLEM-NAME is currently "internal-error" or
519 "internal-warning". */
522 add_internal_problem_command (struct internal_problem
*problem
)
524 struct cmd_list_element
**set_cmd_list
;
525 struct cmd_list_element
**show_cmd_list
;
527 set_cmd_list
= XNEW (struct cmd_list_element
*);
528 show_cmd_list
= XNEW (struct cmd_list_element
*);
529 *set_cmd_list
= NULL
;
530 *show_cmd_list
= NULL
;
532 /* The add_basic_prefix_cmd and add_show_prefix_cmd functions take
533 ownership of the string passed in, which is why we don't need to free
534 set_doc and show_doc in this function. */
536 = xstrprintf (_("Configure what GDB does when %s is detected."),
537 problem
->name
).release ();
539 = xstrprintf (_("Show what GDB does when %s is detected."),
540 problem
->name
).release ();
542 add_setshow_prefix_cmd (problem
->name
, class_maintenance
,
543 set_doc
, show_doc
, set_cmd_list
, show_cmd_list
,
544 &maintenance_set_cmdlist
, &maintenance_show_cmdlist
);
546 if (problem
->user_settable_should_quit
)
548 std::string set_quit_doc
549 = string_printf (_("Set whether GDB should quit when an %s is "
550 "detected."), problem
->name
);
551 std::string show_quit_doc
552 = string_printf (_("Show whether GDB will quit when an %s is "
553 "detected."), problem
->name
);
554 add_setshow_enum_cmd ("quit", class_maintenance
,
555 internal_problem_modes
,
556 &problem
->should_quit
,
557 set_quit_doc
.c_str (),
558 show_quit_doc
.c_str (),
566 if (problem
->user_settable_should_dump_core
)
568 std::string set_core_doc
569 = string_printf (_("Set whether GDB should create a core file of "
570 "GDB when %s is detected."), problem
->name
);
571 std::string show_core_doc
572 = string_printf (_("Show whether GDB will create a core file of "
573 "GDB when %s is detected."), problem
->name
);
574 add_setshow_enum_cmd ("corefile", class_maintenance
,
575 internal_problem_modes
,
576 &problem
->should_dump_core
,
577 set_core_doc
.c_str (),
578 show_core_doc
.c_str (),
586 if (problem
->user_settable_should_print_backtrace
)
588 std::string set_bt_doc
589 = string_printf (_("Set whether GDB should print a backtrace of "
590 "GDB when %s is detected."), problem
->name
);
591 std::string show_bt_doc
592 = string_printf (_("Show whether GDB will print a backtrace of "
593 "GDB when %s is detected."), problem
->name
);
594 add_setshow_boolean_cmd ("backtrace", class_maintenance
,
595 &problem
->should_print_backtrace
,
597 show_bt_doc
.c_str (),
599 gdb_internal_backtrace_set_cmd
,
606 /* Return a newly allocated string, containing the PREFIX followed
607 by the system error message for errno (separated by a colon). */
610 perror_string (const char *prefix
)
612 const char *err
= safe_strerror (errno
);
613 return std::string (prefix
) + ": " + err
;
616 /* Print the system error message for errno, and also mention STRING
617 as the file name for which the error was encountered. Use ERRCODE
618 for the thrown exception. Then return to command level. */
621 throw_perror_with_name (enum errors errcode
, const char *string
)
623 std::string combined
= perror_string (string
);
625 /* I understand setting these is a matter of taste. Still, some people
626 may clear errno but not know about bfd_error. Doing this here is not
628 bfd_set_error (bfd_error_no_error
);
631 throw_error (errcode
, _("%s."), combined
.c_str ());
634 /* See throw_perror_with_name, ERRCODE defaults here to GENERIC_ERROR. */
637 perror_with_name (const char *string
)
639 throw_perror_with_name (GENERIC_ERROR
, string
);
642 /* Same as perror_with_name except that it prints a warning instead
643 of throwing an error. */
646 perror_warning_with_name (const char *string
)
648 std::string combined
= perror_string (string
);
649 warning (_("%s"), combined
.c_str ());
652 /* Print the system error message for ERRCODE, and also mention STRING
653 as the file name for which the error was encountered. */
656 print_sys_errmsg (const char *string
, int errcode
)
658 const char *err
= safe_strerror (errcode
);
659 /* We want anything which was printed on stdout to come out first, before
661 gdb_flush (gdb_stdout
);
662 fprintf_unfiltered (gdb_stderr
, "%s: %s.\n", string
, err
);
665 /* Control C eventually causes this to be called, at a convenient time. */
670 if (sync_quit_force_run
)
672 sync_quit_force_run
= 0;
673 quit_force (NULL
, 0);
677 /* No steenking SIGINT will ever be coming our way when the
678 program is resumed. Don't lie. */
682 /* If there is no terminal switching for this target, then we can't
683 possibly get screwed by the lack of job control. */
684 || !target_supports_terminal_ours ())
687 throw_quit ("Quit (expect signal SIGINT when the program is resumed)");
696 if (sync_quit_force_run
)
703 /* Called when a memory allocation fails, with the number of bytes of
704 memory requested in SIZE. */
707 malloc_failure (long size
)
711 internal_error (__FILE__
, __LINE__
,
712 _("virtual memory exhausted: can't allocate %ld bytes."),
717 internal_error (__FILE__
, __LINE__
, _("virtual memory exhausted."));
721 /* See common/errors.h. */
726 gdb_stdout
->flush ();
727 gdb_stderr
->flush ();
730 /* My replacement for the read system call.
731 Used like `read' but keeps going if `read' returns too soon. */
734 myread (int desc
, char *addr
, int len
)
741 val
= read (desc
, addr
, len
);
755 uinteger_pow (ULONGEST v1
, LONGEST v2
)
760 error (_("Attempt to raise 0 to negative power."));
766 /* The Russian Peasant's Algorithm. */
784 /* An RAII class that sets up to handle input and then tears down
785 during destruction. */
787 class scoped_input_handler
791 scoped_input_handler ()
792 : m_quit_handler (&quit_handler
, default_quit_handler
),
795 target_terminal::ours ();
796 ui_register_input_event_handler (current_ui
);
797 if (current_ui
->prompt_state
== PROMPT_BLOCKED
)
801 ~scoped_input_handler ()
804 ui_unregister_input_event_handler (m_ui
);
807 DISABLE_COPY_AND_ASSIGN (scoped_input_handler
);
811 /* Save and restore the terminal state. */
812 target_terminal::scoped_restore_terminal_state m_term_state
;
814 /* Save and restore the quit handler. */
815 scoped_restore_tmpl
<quit_handler_ftype
*> m_quit_handler
;
817 /* The saved UI, if non-NULL. */
823 /* This function supports the query, nquery, and yquery functions.
824 Ask user a y-or-n question and return 0 if answer is no, 1 if
825 answer is yes, or default the answer to the specified default
826 (for yquery or nquery). DEFCHAR may be 'y' or 'n' to provide a
827 default answer, or '\0' for no default.
828 CTLSTR is the control string and should end in "? ". It should
829 not say how to answer, because we do that.
830 ARGS are the arguments passed along with the CTLSTR argument to
833 static int ATTRIBUTE_PRINTF (1, 0)
834 defaulted_query (const char *ctlstr
, const char defchar
, va_list args
)
838 char def_answer
, not_def_answer
;
839 const char *y_string
, *n_string
;
841 /* Set up according to which answer is the default. */
846 not_def_answer
= 'N';
850 else if (defchar
== 'y')
854 not_def_answer
= 'N';
862 not_def_answer
= 'Y';
867 /* Automatically answer the default value if the user did not want
868 prompts or the command was issued with the server prefix. */
869 if (!confirm
|| server_command
)
872 /* If input isn't coming from the user directly, just say what
873 question we're asking, and then answer the default automatically. This
874 way, important error messages don't get lost when talking to GDB
876 if (current_ui
->instream
!= current_ui
->stdin_stream
877 || !input_interactive_p (current_ui
)
878 /* Restrict queries to the main UI. */
879 || current_ui
!= main_ui
)
881 target_terminal::scoped_restore_terminal_state term_state
;
882 target_terminal::ours_for_output ();
884 vfprintf_filtered (gdb_stdout
, ctlstr
, args
);
886 printf_filtered (_("(%s or %s) [answered %c; "
887 "input not from terminal]\n"),
888 y_string
, n_string
, def_answer
);
893 if (deprecated_query_hook
)
895 target_terminal::scoped_restore_terminal_state term_state
;
896 return deprecated_query_hook (ctlstr
, args
);
899 /* Format the question outside of the loop, to avoid reusing args. */
900 std::string question
= string_vprintf (ctlstr
, args
);
902 = string_printf (_("%s%s(%s or %s) %s"),
903 annotation_level
> 1 ? "\n\032\032pre-query\n" : "",
904 question
.c_str (), y_string
, n_string
,
905 annotation_level
> 1 ? "\n\032\032query\n" : "");
907 /* Used to add duration we waited for user to respond to
908 prompt_for_continue_wait_time. */
909 using namespace std::chrono
;
910 steady_clock::time_point prompt_started
= steady_clock::now ();
912 scoped_input_handler prepare_input
;
916 char *response
, answer
;
918 gdb_flush (gdb_stdout
);
919 response
= gdb_readline_wrapper (prompt
.c_str ());
921 if (response
== NULL
) /* C-d */
923 printf_filtered ("EOF [assumed %c]\n", def_answer
);
928 answer
= response
[0];
933 /* Check answer. For the non-default, the user must specify
934 the non-default explicitly. */
935 if (answer
== not_def_answer
)
940 /* Otherwise, if a default was specified, the user may either
941 specify the required input or have it default by entering
943 if (answer
== def_answer
944 || (defchar
!= '\0' && answer
== '\0'))
949 /* Invalid entries are not defaulted and require another selection. */
950 printf_filtered (_("Please answer %s or %s.\n"),
954 /* Add time spend in this routine to prompt_for_continue_wait_time. */
955 prompt_for_continue_wait_time
+= steady_clock::now () - prompt_started
;
957 if (annotation_level
> 1)
958 printf_filtered (("\n\032\032post-query\n"));
963 /* Ask user a y-or-n question and return 0 if answer is no, 1 if
964 answer is yes, or 0 if answer is defaulted.
965 Takes three args which are given to printf to print the question.
966 The first, a control string, should end in "? ".
967 It should not say how to answer, because we do that. */
970 nquery (const char *ctlstr
, ...)
975 va_start (args
, ctlstr
);
976 ret
= defaulted_query (ctlstr
, 'n', args
);
981 /* Ask user a y-or-n question and return 0 if answer is no, 1 if
982 answer is yes, or 1 if answer is defaulted.
983 Takes three args which are given to printf to print the question.
984 The first, a control string, should end in "? ".
985 It should not say how to answer, because we do that. */
988 yquery (const char *ctlstr
, ...)
993 va_start (args
, ctlstr
);
994 ret
= defaulted_query (ctlstr
, 'y', args
);
999 /* Ask user a y-or-n question and return 1 iff answer is yes.
1000 Takes three args which are given to printf to print the question.
1001 The first, a control string, should end in "? ".
1002 It should not say how to answer, because we do that. */
1005 query (const char *ctlstr
, ...)
1010 va_start (args
, ctlstr
);
1011 ret
= defaulted_query (ctlstr
, '\0', args
);
1016 /* A helper for parse_escape that converts a host character to a
1017 target character. C is the host character. If conversion is
1018 possible, then the target character is stored in *TARGET_C and the
1019 function returns 1. Otherwise, the function returns 0. */
1022 host_char_to_target (struct gdbarch
*gdbarch
, int c
, int *target_c
)
1027 auto_obstack host_data
;
1029 convert_between_encodings (target_charset (gdbarch
), host_charset (),
1030 (gdb_byte
*) &the_char
, 1, 1,
1031 &host_data
, translit_none
);
1033 if (obstack_object_size (&host_data
) == 1)
1036 *target_c
= *(char *) obstack_base (&host_data
);
1042 /* Parse a C escape sequence. STRING_PTR points to a variable
1043 containing a pointer to the string to parse. That pointer
1044 should point to the character after the \. That pointer
1045 is updated past the characters we use. The value of the
1046 escape sequence is returned.
1048 A negative value means the sequence \ newline was seen,
1049 which is supposed to be equivalent to nothing at all.
1051 If \ is followed by a null character, we return a negative
1052 value and leave the string pointer pointing at the null character.
1054 If \ is followed by 000, we return 0 and leave the string pointer
1055 after the zeros. A value of 0 does not mean end of string. */
1058 parse_escape (struct gdbarch
*gdbarch
, const char **string_ptr
)
1060 int target_char
= -2; /* Initialize to avoid GCC warnings. */
1061 int c
= *(*string_ptr
)++;
1080 int i
= host_hex_value (c
);
1085 if (ISDIGIT (c
) && c
!= '8' && c
!= '9')
1089 i
+= host_hex_value (c
);
1125 if (!host_char_to_target (gdbarch
, c
, &target_char
))
1126 error (_("The escape sequence `\\%c' is equivalent to plain `%c',"
1127 " which has no equivalent\nin the `%s' character set."),
1128 c
, c
, target_charset (gdbarch
));
1132 /* Print the character C on STREAM as part of the contents of a literal
1133 string whose delimiter is QUOTER. Note that this routine should only
1134 be called for printing things which are independent of the language
1135 of the program being debugged.
1137 printchar will normally escape backslashes and instances of QUOTER. If
1138 QUOTER is 0, printchar won't escape backslashes or any quoting character.
1139 As a side effect, if you pass the backslash character as the QUOTER,
1140 printchar will escape backslashes as usual, but not any other quoting
1144 printchar (int c
, do_fputc_ftype do_fputc
, ui_file
*stream
, int quoter
)
1146 c
&= 0xFF; /* Avoid sign bit follies */
1148 if (c
< 0x20 || /* Low control chars */
1149 (c
>= 0x7F && c
< 0xA0) || /* DEL, High controls */
1150 (sevenbit_strings
&& c
>= 0x80))
1151 { /* high order bit set */
1152 do_fputc ('\\', stream
);
1157 do_fputc ('n', stream
);
1160 do_fputc ('b', stream
);
1163 do_fputc ('t', stream
);
1166 do_fputc ('f', stream
);
1169 do_fputc ('r', stream
);
1172 do_fputc ('e', stream
);
1175 do_fputc ('a', stream
);
1179 do_fputc ('0' + ((c
>> 6) & 0x7), stream
);
1180 do_fputc ('0' + ((c
>> 3) & 0x7), stream
);
1181 do_fputc ('0' + ((c
>> 0) & 0x7), stream
);
1188 if (quoter
!= 0 && (c
== '\\' || c
== quoter
))
1189 do_fputc ('\\', stream
);
1190 do_fputc (c
, stream
);
1194 /* Print the character C on STREAM as part of the contents of a
1195 literal string whose delimiter is QUOTER. Note that these routines
1196 should only be call for printing things which are independent of
1197 the language of the program being debugged. */
1200 fputstr_filtered (const char *str
, int quoter
, struct ui_file
*stream
)
1203 printchar (*str
++, fputc_filtered
, stream
, quoter
);
1207 fputstr_unfiltered (const char *str
, int quoter
, struct ui_file
*stream
)
1210 printchar (*str
++, fputc_unfiltered
, stream
, quoter
);
1214 fputstrn_filtered (const char *str
, int n
, int quoter
,
1215 struct ui_file
*stream
)
1217 for (int i
= 0; i
< n
; i
++)
1218 printchar (str
[i
], fputc_filtered
, stream
, quoter
);
1222 fputstrn_unfiltered (const char *str
, int n
, int quoter
,
1223 do_fputc_ftype do_fputc
, struct ui_file
*stream
)
1225 for (int i
= 0; i
< n
; i
++)
1226 printchar (str
[i
], do_fputc
, stream
, quoter
);
1230 /* Number of lines per page or UINT_MAX if paging is disabled. */
1231 static unsigned int lines_per_page
;
1233 show_lines_per_page (struct ui_file
*file
, int from_tty
,
1234 struct cmd_list_element
*c
, const char *value
)
1236 fprintf_filtered (file
,
1237 _("Number of lines gdb thinks are in a page is %s.\n"),
1241 /* Number of chars per line or UINT_MAX if line folding is disabled. */
1242 static unsigned int chars_per_line
;
1244 show_chars_per_line (struct ui_file
*file
, int from_tty
,
1245 struct cmd_list_element
*c
, const char *value
)
1247 fprintf_filtered (file
,
1248 _("Number of characters gdb thinks "
1249 "are in a line is %s.\n"),
1253 /* Current count of lines printed on this page, chars on this line. */
1254 static unsigned int lines_printed
, chars_printed
;
1256 /* True if pagination is disabled for just one command. */
1258 static bool pagination_disabled_for_command
;
1260 /* Buffer and start column of buffered text, for doing smarter word-
1261 wrapping. When someone calls wrap_here(), we start buffering output
1262 that comes through fputs_filtered(). If we see a newline, we just
1263 spit it out and forget about the wrap_here(). If we see another
1264 wrap_here(), we spit it out and remember the newer one. If we see
1265 the end of the line, we spit out a newline, the indent, and then
1266 the buffered output. */
1268 static bool filter_initialized
= false;
1270 /* Contains characters which are waiting to be output (they have
1271 already been counted in chars_printed). */
1272 static std::string wrap_buffer
;
1274 /* String to indent by if the wrap occurs. Must not be NULL if wrap_column
1276 static const char *wrap_indent
;
1278 /* Column number on the screen where wrap_buffer begins, or 0 if wrapping
1279 is not in effect. */
1280 static int wrap_column
;
1282 /* The style applied at the time that wrap_here was called. */
1283 static ui_file_style wrap_style
;
1286 /* Initialize the number of lines per page and chars per line. */
1289 init_page_info (void)
1293 lines_per_page
= UINT_MAX
;
1294 chars_per_line
= UINT_MAX
;
1298 if (!tui_get_command_dimension (&chars_per_line
, &lines_per_page
))
1303 #if defined(__GO32__)
1304 rows
= ScreenRows ();
1305 cols
= ScreenCols ();
1306 lines_per_page
= rows
;
1307 chars_per_line
= cols
;
1309 /* Make sure Readline has initialized its terminal settings. */
1310 rl_reset_terminal (NULL
);
1312 /* Get the screen size from Readline. */
1313 rl_get_screen_size (&rows
, &cols
);
1314 lines_per_page
= rows
;
1315 chars_per_line
= cols
;
1317 /* Readline should have fetched the termcap entry for us.
1318 Only try to use tgetnum function if rl_get_screen_size
1319 did not return a useful value. */
1320 if (((rows
<= 0) && (tgetnum ((char *) "li") < 0))
1321 /* Also disable paging if inside Emacs. $EMACS was used
1322 before Emacs v25.1, $INSIDE_EMACS is used since then. */
1323 || getenv ("EMACS") || getenv ("INSIDE_EMACS"))
1325 /* The number of lines per page is not mentioned in the terminal
1326 description or EMACS environment variable is set. This probably
1327 means that paging is not useful, so disable paging. */
1328 lines_per_page
= UINT_MAX
;
1331 /* If the output is not a terminal, don't paginate it. */
1332 if (!gdb_stdout
->isatty ())
1333 lines_per_page
= UINT_MAX
;
1337 /* We handle SIGWINCH ourselves. */
1338 rl_catch_sigwinch
= 0;
1344 /* Return nonzero if filtered printing is initialized. */
1346 filtered_printing_initialized (void)
1348 return filter_initialized
;
1351 set_batch_flag_and_restore_page_info::set_batch_flag_and_restore_page_info ()
1352 : m_save_lines_per_page (lines_per_page
),
1353 m_save_chars_per_line (chars_per_line
),
1354 m_save_batch_flag (batch_flag
)
1360 set_batch_flag_and_restore_page_info::~set_batch_flag_and_restore_page_info ()
1362 batch_flag
= m_save_batch_flag
;
1363 chars_per_line
= m_save_chars_per_line
;
1364 lines_per_page
= m_save_lines_per_page
;
1370 /* Set the screen size based on LINES_PER_PAGE and CHARS_PER_LINE. */
1373 set_screen_size (void)
1375 int rows
= lines_per_page
;
1376 int cols
= chars_per_line
;
1378 /* If we get 0 or negative ROWS or COLS, treat as "infinite" size.
1379 A negative number can be seen here with the "set width/height"
1380 commands and either:
1382 - the user specified "unlimited", which maps to UINT_MAX, or
1383 - the user specified some number between INT_MAX and UINT_MAX.
1385 Cap "infinity" to approximately sqrt(INT_MAX) so that we don't
1386 overflow in rl_set_screen_size, which multiplies rows and columns
1387 to compute the number of characters on the screen. */
1389 const int sqrt_int_max
= INT_MAX
>> (sizeof (int) * 8 / 2);
1391 if (rows
<= 0 || rows
> sqrt_int_max
)
1393 rows
= sqrt_int_max
;
1394 lines_per_page
= UINT_MAX
;
1397 if (cols
<= 0 || cols
> sqrt_int_max
)
1399 cols
= sqrt_int_max
;
1400 chars_per_line
= UINT_MAX
;
1403 /* Update Readline's idea of the terminal size. */
1404 rl_set_screen_size (rows
, cols
);
1407 /* Reinitialize WRAP_BUFFER. */
1412 if (chars_per_line
== 0)
1415 wrap_buffer
.clear ();
1416 filter_initialized
= true;
1420 set_width_command (const char *args
, int from_tty
, struct cmd_list_element
*c
)
1427 set_height_command (const char *args
, int from_tty
, struct cmd_list_element
*c
)
1435 set_screen_width_and_height (int width
, int height
)
1437 lines_per_page
= height
;
1438 chars_per_line
= width
;
1444 /* The currently applied style. */
1446 static ui_file_style applied_style
;
1448 /* Emit an ANSI style escape for STYLE. If STREAM is nullptr, emit to
1449 the wrap buffer; otherwise emit to STREAM. */
1452 emit_style_escape (const ui_file_style
&style
,
1453 struct ui_file
*stream
= nullptr)
1455 if (applied_style
!= style
)
1457 applied_style
= style
;
1459 if (stream
== nullptr)
1460 wrap_buffer
.append (style
.to_ansi ());
1462 stream
->puts (style
.to_ansi ().c_str ());
1466 /* Set the current output style. This will affect future uses of the
1467 _filtered output functions. */
1470 set_output_style (struct ui_file
*stream
, const ui_file_style
&style
)
1472 if (!stream
->can_emit_style_escape ())
1475 /* Note that we may not pass STREAM here, when we want to emit to
1476 the wrap buffer, not directly to STREAM. */
1477 if (stream
== gdb_stdout
)
1479 emit_style_escape (style
, stream
);
1485 reset_terminal_style (struct ui_file
*stream
)
1487 if (stream
->can_emit_style_escape ())
1489 /* Force the setting, regardless of what we think the setting
1490 might already be. */
1491 applied_style
= ui_file_style ();
1492 wrap_buffer
.append (applied_style
.to_ansi ());
1496 /* Wait, so the user can read what's on the screen. Prompt the user
1497 to continue by pressing RETURN. 'q' is also provided because
1498 telling users what to do in the prompt is more user-friendly than
1499 expecting them to think of Ctrl-C/SIGINT. */
1502 prompt_for_continue (void)
1504 char cont_prompt
[120];
1505 /* Used to add duration we waited for user to respond to
1506 prompt_for_continue_wait_time. */
1507 using namespace std::chrono
;
1508 steady_clock::time_point prompt_started
= steady_clock::now ();
1509 bool disable_pagination
= pagination_disabled_for_command
;
1511 /* Clear the current styling. */
1512 if (gdb_stdout
->can_emit_style_escape ())
1513 emit_style_escape (ui_file_style (), gdb_stdout
);
1515 if (annotation_level
> 1)
1516 printf_unfiltered (("\n\032\032pre-prompt-for-continue\n"));
1518 strcpy (cont_prompt
,
1519 "--Type <RET> for more, q to quit, "
1520 "c to continue without paging--");
1521 if (annotation_level
> 1)
1522 strcat (cont_prompt
, "\n\032\032prompt-for-continue\n");
1524 /* We must do this *before* we call gdb_readline_wrapper, else it
1525 will eventually call us -- thinking that we're trying to print
1526 beyond the end of the screen. */
1527 reinitialize_more_filter ();
1529 scoped_input_handler prepare_input
;
1531 /* Call gdb_readline_wrapper, not readline, in order to keep an
1532 event loop running. */
1533 gdb::unique_xmalloc_ptr
<char> ignore (gdb_readline_wrapper (cont_prompt
));
1535 /* Add time spend in this routine to prompt_for_continue_wait_time. */
1536 prompt_for_continue_wait_time
+= steady_clock::now () - prompt_started
;
1538 if (annotation_level
> 1)
1539 printf_unfiltered (("\n\032\032post-prompt-for-continue\n"));
1543 char *p
= ignore
.get ();
1545 while (*p
== ' ' || *p
== '\t')
1548 /* Do not call quit here; there is no possibility of SIGINT. */
1549 throw_quit ("Quit");
1551 disable_pagination
= true;
1554 /* Now we have to do this again, so that GDB will know that it doesn't
1555 need to save the ---Type <return>--- line at the top of the screen. */
1556 reinitialize_more_filter ();
1557 pagination_disabled_for_command
= disable_pagination
;
1559 dont_repeat (); /* Forget prev cmd -- CR won't repeat it. */
1562 /* Initialize timer to keep track of how long we waited for the user. */
1565 reset_prompt_for_continue_wait_time (void)
1567 using namespace std::chrono
;
1569 prompt_for_continue_wait_time
= steady_clock::duration::zero ();
1572 /* Fetch the cumulative time spent in prompt_for_continue. */
1574 std::chrono::steady_clock::duration
1575 get_prompt_for_continue_wait_time ()
1577 return prompt_for_continue_wait_time
;
1580 /* Reinitialize filter; ie. tell it to reset to original values. */
1583 reinitialize_more_filter (void)
1587 pagination_disabled_for_command
= false;
1590 /* Flush the wrap buffer to STREAM, if necessary. */
1593 flush_wrap_buffer (struct ui_file
*stream
)
1595 if (stream
== gdb_stdout
&& !wrap_buffer
.empty ())
1597 stream
->puts (wrap_buffer
.c_str ());
1598 wrap_buffer
.clear ();
1605 gdb_flush (struct ui_file
*stream
)
1607 flush_wrap_buffer (stream
);
1614 get_chars_per_line ()
1616 return chars_per_line
;
1619 /* Indicate that if the next sequence of characters overflows the line,
1620 a newline should be inserted here rather than when it hits the end.
1621 If INDENT is non-null, it is a string to be printed to indent the
1622 wrapped part on the next line. INDENT must remain accessible until
1623 the next call to wrap_here() or until a newline is printed through
1626 If the line is already overfull, we immediately print a newline and
1627 the indentation, and disable further wrapping.
1629 If we don't know the width of lines, but we know the page height,
1630 we must not wrap words, but should still keep track of newlines
1631 that were explicitly printed.
1633 INDENT should not contain tabs, as that will mess up the char count
1634 on the next line. FIXME.
1636 This routine is guaranteed to force out any output which has been
1637 squirreled away in the wrap_buffer, so wrap_here ((char *)0) can be
1638 used to force out output from the wrap_buffer. */
1641 wrap_here (const char *indent
)
1643 /* This should have been allocated, but be paranoid anyway. */
1644 gdb_assert (filter_initialized
);
1646 flush_wrap_buffer (gdb_stdout
);
1647 if (chars_per_line
== UINT_MAX
) /* No line overflow checking. */
1651 else if (chars_printed
>= chars_per_line
)
1653 puts_filtered ("\n");
1655 puts_filtered (indent
);
1660 wrap_column
= chars_printed
;
1664 wrap_indent
= indent
;
1665 wrap_style
= applied_style
;
1669 /* Print input string to gdb_stdout, filtered, with wrap,
1670 arranging strings in columns of n chars. String can be
1671 right or left justified in the column. Never prints
1672 trailing spaces. String should never be longer than
1673 width. FIXME: this could be useful for the EXAMINE
1674 command, which currently doesn't tabulate very well. */
1677 puts_filtered_tabular (char *string
, int width
, int right
)
1683 gdb_assert (chars_per_line
> 0);
1684 if (chars_per_line
== UINT_MAX
)
1686 fputs_filtered (string
, gdb_stdout
);
1687 fputs_filtered ("\n", gdb_stdout
);
1691 if (((chars_printed
- 1) / width
+ 2) * width
>= chars_per_line
)
1692 fputs_filtered ("\n", gdb_stdout
);
1694 if (width
>= chars_per_line
)
1695 width
= chars_per_line
- 1;
1697 stringlen
= strlen (string
);
1699 if (chars_printed
> 0)
1700 spaces
= width
- (chars_printed
- 1) % width
- 1;
1702 spaces
+= width
- stringlen
;
1704 spacebuf
= (char *) alloca (spaces
+ 1);
1705 spacebuf
[spaces
] = '\0';
1707 spacebuf
[spaces
] = ' ';
1709 fputs_filtered (spacebuf
, gdb_stdout
);
1710 fputs_filtered (string
, gdb_stdout
);
1714 /* Ensure that whatever gets printed next, using the filtered output
1715 commands, starts at the beginning of the line. I.e. if there is
1716 any pending output for the current line, flush it and start a new
1717 line. Otherwise do nothing. */
1722 if (chars_printed
> 0)
1724 puts_filtered ("\n");
1729 /* Like fputs but if FILTER is true, pause after every screenful.
1731 Regardless of FILTER can wrap at points other than the final
1732 character of a line.
1734 Unlike fputs, fputs_maybe_filtered does not return a value.
1735 It is OK for LINEBUFFER to be NULL, in which case just don't print
1738 Note that a longjmp to top level may occur in this routine (only if
1739 FILTER is true) (since prompt_for_continue may do so) so this
1740 routine should not be called when cleanups are not in place. */
1743 fputs_maybe_filtered (const char *linebuffer
, struct ui_file
*stream
,
1746 const char *lineptr
;
1748 if (linebuffer
== 0)
1751 /* Don't do any filtering if it is disabled. */
1752 if (!stream
->can_page ()
1753 || !pagination_enabled
1754 || pagination_disabled_for_command
1756 || (lines_per_page
== UINT_MAX
&& chars_per_line
== UINT_MAX
)
1757 || top_level_interpreter () == NULL
1758 || top_level_interpreter ()->interp_ui_out ()->is_mi_like_p ())
1760 flush_wrap_buffer (stream
);
1761 stream
->puts (linebuffer
);
1766 = make_scope_exit ([&] ()
1768 wrap_buffer
.clear ();
1773 /* Go through and output each character. Show line extension
1774 when this is necessary; prompt user for new page when this is
1777 lineptr
= linebuffer
;
1780 /* Possible new page. Note that PAGINATION_DISABLED_FOR_COMMAND
1781 might be set during this loop, so we must continue to check
1783 if (filter
&& (lines_printed
>= lines_per_page
- 1)
1784 && !pagination_disabled_for_command
)
1785 prompt_for_continue ();
1787 while (*lineptr
&& *lineptr
!= '\n')
1791 /* Print a single line. */
1792 if (*lineptr
== '\t')
1794 wrap_buffer
.push_back ('\t');
1795 /* Shifting right by 3 produces the number of tab stops
1796 we have already passed, and then adding one and
1797 shifting left 3 advances to the next tab stop. */
1798 chars_printed
= ((chars_printed
>> 3) + 1) << 3;
1801 else if (*lineptr
== '\033'
1802 && skip_ansi_escape (lineptr
, &skip_bytes
))
1804 wrap_buffer
.append (lineptr
, skip_bytes
);
1805 /* Note that we don't consider this a character, so we
1806 don't increment chars_printed here. */
1807 lineptr
+= skip_bytes
;
1809 else if (*lineptr
== '\r')
1811 wrap_buffer
.push_back (*lineptr
);
1817 wrap_buffer
.push_back (*lineptr
);
1822 if (chars_printed
>= chars_per_line
)
1824 unsigned int save_chars
= chars_printed
;
1826 /* If we change the style, below, we'll want to reset it
1827 before continuing to print. If there is no wrap
1828 column, then we'll only reset the style if the pager
1829 prompt is given; and to avoid emitting style
1830 sequences in the middle of a run of text, we track
1832 ui_file_style save_style
= applied_style
;
1833 bool did_paginate
= false;
1839 /* We are about to insert a newline at an historic
1840 location in the WRAP_BUFFER. Before we do we want to
1841 restore the default style. To know if we actually
1842 need to insert an escape sequence we must restore the
1843 current applied style to how it was at the WRAP_COLUMN
1845 applied_style
= wrap_style
;
1846 if (stream
->can_emit_style_escape ())
1847 emit_style_escape (ui_file_style (), stream
);
1848 /* If we aren't actually wrapping, don't output
1849 newline -- if chars_per_line is right, we
1850 probably just overflowed anyway; if it's wrong,
1851 let us keep going. */
1852 /* XXX: The ideal thing would be to call
1853 'stream->putc' here, but we can't because it
1854 currently calls 'fputc_unfiltered', which ends up
1855 calling us, which generates an infinite
1857 stream
->puts ("\n");
1860 flush_wrap_buffer (stream
);
1862 /* Possible new page. Note that
1863 PAGINATION_DISABLED_FOR_COMMAND might be set during
1864 this loop, so we must continue to check it here. */
1865 if (lines_printed
>= lines_per_page
- 1
1866 && !pagination_disabled_for_command
)
1868 prompt_for_continue ();
1869 did_paginate
= true;
1872 /* Now output indentation and wrapped string. */
1875 stream
->puts (wrap_indent
);
1877 /* Having finished inserting the wrapping we should
1878 restore the style as it was at the WRAP_COLUMN. */
1879 if (stream
->can_emit_style_escape ())
1880 emit_style_escape (wrap_style
, stream
);
1882 /* The WRAP_BUFFER will still contain content, and that
1883 content might set some alternative style. Restore
1884 APPLIED_STYLE as it was before we started wrapping,
1885 this reflects the current style for the last character
1887 applied_style
= save_style
;
1889 /* FIXME, this strlen is what prevents wrap_indent from
1890 containing tabs. However, if we recurse to print it
1891 and count its chars, we risk trouble if wrap_indent is
1892 longer than (the user settable) chars_per_line.
1893 Note also that this can set chars_printed > chars_per_line
1894 if we are printing a long string. */
1895 chars_printed
= strlen (wrap_indent
)
1896 + (save_chars
- wrap_column
);
1897 wrap_column
= 0; /* And disable fancy wrap */
1899 else if (did_paginate
&& stream
->can_emit_style_escape ())
1900 emit_style_escape (save_style
, stream
);
1904 if (*lineptr
== '\n')
1907 wrap_here ((char *) 0); /* Spit out chars, cancel
1910 /* XXX: The ideal thing would be to call
1911 'stream->putc' here, but we can't because it
1912 currently calls 'fputc_unfiltered', which ends up
1913 calling us, which generates an infinite
1915 stream
->puts ("\n");
1920 buffer_clearer
.release ();
1924 fputs_filtered (const char *linebuffer
, struct ui_file
*stream
)
1926 fputs_maybe_filtered (linebuffer
, stream
, 1);
1930 fputs_unfiltered (const char *linebuffer
, struct ui_file
*stream
)
1932 fputs_maybe_filtered (linebuffer
, stream
, 0);
1938 fputs_styled (const char *linebuffer
, const ui_file_style
&style
,
1939 struct ui_file
*stream
)
1941 set_output_style (stream
, style
);
1942 fputs_maybe_filtered (linebuffer
, stream
, 1);
1943 set_output_style (stream
, ui_file_style ());
1949 fputs_styled_unfiltered (const char *linebuffer
, const ui_file_style
&style
,
1950 struct ui_file
*stream
)
1952 set_output_style (stream
, style
);
1953 fputs_maybe_filtered (linebuffer
, stream
, 0);
1954 set_output_style (stream
, ui_file_style ());
1960 fputs_highlighted (const char *str
, const compiled_regex
&highlight
,
1961 struct ui_file
*stream
)
1965 while (*str
&& highlight
.exec (str
, 1, &pmatch
, 0) == 0)
1967 size_t n_highlight
= pmatch
.rm_eo
- pmatch
.rm_so
;
1969 /* Output the part before pmatch with current style. */
1970 while (pmatch
.rm_so
> 0)
1972 fputc_filtered (*str
, stream
);
1977 /* Output pmatch with the highlight style. */
1978 set_output_style (stream
, highlight_style
.style ());
1979 while (n_highlight
> 0)
1981 fputc_filtered (*str
, stream
);
1985 set_output_style (stream
, ui_file_style ());
1988 /* Output the trailing part of STR not matching HIGHLIGHT. */
1990 fputs_filtered (str
, stream
);
1994 putchar_unfiltered (int c
)
1996 return fputc_unfiltered (c
, gdb_stdout
);
1999 /* Write character C to gdb_stdout using GDB's paging mechanism and return C.
2000 May return nonlocally. */
2003 putchar_filtered (int c
)
2005 return fputc_filtered (c
, gdb_stdout
);
2009 fputc_unfiltered (int c
, struct ui_file
*stream
)
2015 fputs_unfiltered (buf
, stream
);
2020 fputc_filtered (int c
, struct ui_file
*stream
)
2026 fputs_filtered (buf
, stream
);
2030 /* Print a variable number of ARGS using format FORMAT. If this
2031 information is going to put the amount written (since the last call
2032 to REINITIALIZE_MORE_FILTER or the last page break) over the page size,
2033 call prompt_for_continue to get the users permission to continue.
2035 Unlike fprintf, this function does not return a value.
2037 We implement three variants, vfprintf (takes a vararg list and stream),
2038 fprintf (takes a stream to write on), and printf (the usual).
2040 Note also that this may throw a quit (since prompt_for_continue may
2044 vfprintf_maybe_filtered (struct ui_file
*stream
, const char *format
,
2045 va_list args
, bool filter
)
2047 ui_out_flags flags
= disallow_ui_out_field
;
2049 flags
|= unfiltered_output
;
2050 cli_ui_out (stream
, flags
).vmessage (applied_style
, format
, args
);
2055 vfprintf_filtered (struct ui_file
*stream
, const char *format
, va_list args
)
2057 vfprintf_maybe_filtered (stream
, format
, args
, true);
2061 vfprintf_unfiltered (struct ui_file
*stream
, const char *format
, va_list args
)
2063 if (debug_timestamp
&& stream
== gdb_stdlog
)
2065 static bool needs_timestamp
= true;
2067 /* Print timestamp if previous print ended with a \n. */
2068 if (needs_timestamp
)
2070 using namespace std::chrono
;
2072 steady_clock::time_point now
= steady_clock::now ();
2073 seconds s
= duration_cast
<seconds
> (now
.time_since_epoch ());
2074 microseconds us
= duration_cast
<microseconds
> (now
.time_since_epoch () - s
);
2075 std::string timestamp
= string_printf ("%ld.%06ld ",
2077 (long) us
.count ());
2078 fputs_unfiltered (timestamp
.c_str (), stream
);
2081 /* Print the message. */
2083 cli_ui_out (&sfile
, 0).vmessage (ui_file_style (), format
, args
);
2084 std::string linebuffer
= std::move (sfile
.string ());
2085 fputs_unfiltered (linebuffer
.c_str (), stream
);
2087 size_t len
= linebuffer
.length ();
2088 needs_timestamp
= (len
> 0 && linebuffer
[len
- 1] == '\n');
2091 vfprintf_maybe_filtered (stream
, format
, args
, false);
2095 vprintf_filtered (const char *format
, va_list args
)
2097 vfprintf_filtered (gdb_stdout
, format
, args
);
2101 vprintf_unfiltered (const char *format
, va_list args
)
2103 vfprintf_unfiltered (gdb_stdout
, format
, args
);
2107 fprintf_filtered (struct ui_file
*stream
, const char *format
, ...)
2111 va_start (args
, format
);
2112 vfprintf_filtered (stream
, format
, args
);
2117 fprintf_unfiltered (struct ui_file
*stream
, const char *format
, ...)
2121 va_start (args
, format
);
2122 vfprintf_unfiltered (stream
, format
, args
);
2129 fprintf_styled (struct ui_file
*stream
, const ui_file_style
&style
,
2130 const char *format
, ...)
2134 set_output_style (stream
, style
);
2135 va_start (args
, format
);
2136 vfprintf_filtered (stream
, format
, args
);
2138 set_output_style (stream
, ui_file_style ());
2144 vfprintf_styled (struct ui_file
*stream
, const ui_file_style
&style
,
2145 const char *format
, va_list args
)
2147 set_output_style (stream
, style
);
2148 vfprintf_filtered (stream
, format
, args
);
2149 set_output_style (stream
, ui_file_style ());
2155 vfprintf_styled_no_gdbfmt (struct ui_file
*stream
, const ui_file_style
&style
,
2156 bool filter
, const char *format
, va_list args
)
2158 std::string str
= string_vprintf (format
, args
);
2161 set_output_style (stream
, style
);
2162 fputs_maybe_filtered (str
.c_str (), stream
, filter
);
2163 set_output_style (stream
, ui_file_style ());
2168 printf_filtered (const char *format
, ...)
2172 va_start (args
, format
);
2173 vfprintf_filtered (gdb_stdout
, format
, args
);
2179 printf_unfiltered (const char *format
, ...)
2183 va_start (args
, format
);
2184 vfprintf_unfiltered (gdb_stdout
, format
, args
);
2188 /* Easy -- but watch out!
2190 This routine is *not* a replacement for puts()! puts() appends a newline.
2191 This one doesn't, and had better not! */
2194 puts_filtered (const char *string
)
2196 fputs_filtered (string
, gdb_stdout
);
2200 puts_unfiltered (const char *string
)
2202 fputs_unfiltered (string
, gdb_stdout
);
2205 /* Return a pointer to N spaces and a null. The pointer is good
2206 until the next call to here. */
2211 static char *spaces
= 0;
2212 static int max_spaces
= -1;
2217 spaces
= (char *) xmalloc (n
+ 1);
2218 for (t
= spaces
+ n
; t
!= spaces
;)
2224 return spaces
+ max_spaces
- n
;
2227 /* Print N spaces. */
2229 print_spaces_filtered (int n
, struct ui_file
*stream
)
2231 fputs_filtered (n_spaces (n
), stream
);
2234 /* C++/ObjC demangler stuff. */
2236 /* fprintf_symbol_filtered attempts to demangle NAME, a symbol in language
2237 LANG, using demangling args ARG_MODE, and print it filtered to STREAM.
2238 If the name is not mangled, or the language for the name is unknown, or
2239 demangling is off, the name is printed in its "raw" form. */
2242 fprintf_symbol_filtered (struct ui_file
*stream
, const char *name
,
2243 enum language lang
, int arg_mode
)
2247 /* If user wants to see raw output, no problem. */
2250 fputs_filtered (name
, stream
);
2254 gdb::unique_xmalloc_ptr
<char> demangled
2255 = language_demangle (language_def (lang
), name
, arg_mode
);
2256 fputs_filtered (demangled
? demangled
.get () : name
, stream
);
2261 /* True if CH is a character that can be part of a symbol name. I.e.,
2262 either a number, a letter, or a '_'. */
2265 valid_identifier_name_char (int ch
)
2267 return (ISALNUM (ch
) || ch
== '_');
2270 /* Skip to end of token, or to END, whatever comes first. Input is
2271 assumed to be a C++ operator name. */
2274 cp_skip_operator_token (const char *token
, const char *end
)
2276 const char *p
= token
;
2277 while (p
!= end
&& !ISSPACE (*p
) && *p
!= '(')
2279 if (valid_identifier_name_char (*p
))
2281 while (p
!= end
&& valid_identifier_name_char (*p
))
2287 /* Note, ordered such that among ops that share a prefix,
2288 longer comes first. This is so that the loop below can
2289 bail on first match. */
2290 static const char *ops
[] =
2296 "-=", "--", "->", "-",
2305 "<<=", "<=", "<<", "<",
2306 ">>=", ">=", ">>", ">",
2310 for (const char *op
: ops
)
2312 size_t oplen
= strlen (op
);
2313 size_t lencmp
= std::min
<size_t> (oplen
, end
- p
);
2315 if (strncmp (p
, op
, lencmp
) == 0)
2318 /* Some unidentified character. Return it. */
2326 /* Advance STRING1/STRING2 past whitespace. */
2329 skip_ws (const char *&string1
, const char *&string2
, const char *end_str2
)
2331 while (ISSPACE (*string1
))
2333 while (string2
< end_str2
&& ISSPACE (*string2
))
2337 /* True if STRING points at the start of a C++ operator name. START
2338 is the start of the string that STRING points to, hence when
2339 reading backwards, we must not read any character before START. */
2342 cp_is_operator (const char *string
, const char *start
)
2344 return ((string
== start
2345 || !valid_identifier_name_char (string
[-1]))
2346 && strncmp (string
, CP_OPERATOR_STR
, CP_OPERATOR_LEN
) == 0
2347 && !valid_identifier_name_char (string
[CP_OPERATOR_LEN
]));
2350 /* If *NAME points at an ABI tag, skip it and return true. Otherwise
2351 leave *NAME unmodified and return false. (see GCC's abi_tag
2352 attribute), such names are demangled as e.g.,
2353 "function[abi:cxx11]()". */
2356 skip_abi_tag (const char **name
)
2358 const char *p
= *name
;
2360 if (startswith (p
, "[abi:"))
2364 while (valid_identifier_name_char (*p
))
2380 strncmp_iw_with_mode (const char *string1
, const char *string2
,
2381 size_t string2_len
, strncmp_iw_mode mode
,
2382 enum language language
,
2383 completion_match_for_lcd
*match_for_lcd
)
2385 const char *string1_start
= string1
;
2386 const char *end_str2
= string2
+ string2_len
;
2387 bool skip_spaces
= true;
2388 bool have_colon_op
= (language
== language_cplus
2389 || language
== language_rust
2390 || language
== language_fortran
);
2395 || ((ISSPACE (*string1
) && !valid_identifier_name_char (*string2
))
2396 || (ISSPACE (*string2
) && !valid_identifier_name_char (*string1
))))
2398 skip_ws (string1
, string2
, end_str2
);
2399 skip_spaces
= false;
2402 /* Skip [abi:cxx11] tags in the symbol name if the lookup name
2403 doesn't include them. E.g.:
2405 string1: function[abi:cxx1](int)
2408 string1: function[abi:cxx1](int)
2409 string2: function(int)
2411 string1: Struct[abi:cxx1]::function()
2412 string2: Struct::function()
2414 string1: function(Struct[abi:cxx1], int)
2415 string2: function(Struct, int)
2417 if (string2
== end_str2
2418 || (*string2
!= '[' && !valid_identifier_name_char (*string2
)))
2420 const char *abi_start
= string1
;
2422 /* There can be more than one tag. */
2423 while (*string1
== '[' && skip_abi_tag (&string1
))
2426 if (match_for_lcd
!= NULL
&& abi_start
!= string1
)
2427 match_for_lcd
->mark_ignored_range (abi_start
, string1
);
2429 while (ISSPACE (*string1
))
2433 if (*string1
== '\0' || string2
== end_str2
)
2436 /* Handle the :: operator. */
2437 if (have_colon_op
&& string1
[0] == ':' && string1
[1] == ':')
2439 if (*string2
!= ':')
2445 if (string2
== end_str2
)
2448 if (*string2
!= ':')
2454 while (ISSPACE (*string1
))
2456 while (string2
< end_str2
&& ISSPACE (*string2
))
2461 /* Handle C++ user-defined operators. */
2462 else if (language
== language_cplus
2465 if (cp_is_operator (string1
, string1_start
))
2467 /* An operator name in STRING1. Check STRING2. */
2469 = std::min
<size_t> (CP_OPERATOR_LEN
, end_str2
- string2
);
2470 if (strncmp (string1
, string2
, cmplen
) != 0)
2476 if (string2
!= end_str2
)
2478 /* Check for "operatorX" in STRING2. */
2479 if (valid_identifier_name_char (*string2
))
2482 skip_ws (string1
, string2
, end_str2
);
2485 /* Handle operator(). */
2486 if (*string1
== '(')
2488 if (string2
== end_str2
)
2490 if (mode
== strncmp_iw_mode::NORMAL
)
2494 /* Don't break for the regular return at the
2495 bottom, because "operator" should not
2496 match "operator()", since this open
2497 parentheses is not the parameter list
2499 return *string1
!= '\0';
2503 if (*string1
!= *string2
)
2512 skip_ws (string1
, string2
, end_str2
);
2514 /* Skip to end of token, or to END, whatever comes
2516 const char *end_str1
= string1
+ strlen (string1
);
2517 const char *p1
= cp_skip_operator_token (string1
, end_str1
);
2518 const char *p2
= cp_skip_operator_token (string2
, end_str2
);
2520 cmplen
= std::min (p1
- string1
, p2
- string2
);
2523 if (strncmp (string1
, string2
, cmplen
) != 0)
2528 if (p1
- string1
!= p2
- string2
)
2530 if (strncmp (string1
, string2
, cmplen
) != 0)
2537 if (*string1
== '\0' || string2
== end_str2
)
2539 if (*string1
== '(' || *string2
== '(')
2547 if (case_sensitivity
== case_sensitive_on
&& *string1
!= *string2
)
2549 if (case_sensitivity
== case_sensitive_off
2550 && (TOLOWER ((unsigned char) *string1
)
2551 != TOLOWER ((unsigned char) *string2
)))
2554 /* If we see any non-whitespace, non-identifier-name character
2555 (any of "()<>*&" etc.), then skip spaces the next time
2557 if (!ISSPACE (*string1
) && !valid_identifier_name_char (*string1
))
2564 if (string2
== end_str2
)
2566 if (mode
== strncmp_iw_mode::NORMAL
)
2568 /* Strip abi tag markers from the matched symbol name.
2569 Usually the ABI marker will be found on function name
2570 (automatically added because the function returns an
2571 object marked with an ABI tag). However, it's also
2572 possible to see a marker in one of the function
2573 parameters, for example.
2575 string2 (lookup name):
2578 function(some_struct[abi:cxx11], int)
2580 and for completion LCD computation we want to say that
2582 function(some_struct, int)
2584 if (match_for_lcd
!= NULL
)
2586 while ((string1
= strstr (string1
, "[abi:")) != NULL
)
2588 const char *abi_start
= string1
;
2590 /* There can be more than one tag. */
2591 while (skip_abi_tag (&string1
) && *string1
== '[')
2594 if (abi_start
!= string1
)
2595 match_for_lcd
->mark_ignored_range (abi_start
, string1
);
2602 return (*string1
!= '\0' && *string1
!= '(');
2611 strncmp_iw (const char *string1
, const char *string2
, size_t string2_len
)
2613 return strncmp_iw_with_mode (string1
, string2
, string2_len
,
2614 strncmp_iw_mode::NORMAL
, language_minimal
);
2620 strcmp_iw (const char *string1
, const char *string2
)
2622 return strncmp_iw_with_mode (string1
, string2
, strlen (string2
),
2623 strncmp_iw_mode::MATCH_PARAMS
, language_minimal
);
2626 /* This is like strcmp except that it ignores whitespace and treats
2627 '(' as the first non-NULL character in terms of ordering. Like
2628 strcmp (and unlike strcmp_iw), it returns negative if STRING1 <
2629 STRING2, 0 if STRING2 = STRING2, and positive if STRING1 > STRING2
2630 according to that ordering.
2632 If a list is sorted according to this function and if you want to
2633 find names in the list that match some fixed NAME according to
2634 strcmp_iw(LIST_ELT, NAME), then the place to start looking is right
2635 where this function would put NAME.
2637 This function must be neutral to the CASE_SENSITIVITY setting as the user
2638 may choose it during later lookup. Therefore this function always sorts
2639 primarily case-insensitively and secondarily case-sensitively.
2641 Here are some examples of why using strcmp to sort is a bad idea:
2645 Say your partial symtab contains: "foo<char *>", "goo". Then, if
2646 we try to do a search for "foo<char*>", strcmp will locate this
2647 after "foo<char *>" and before "goo". Then lookup_partial_symbol
2648 will start looking at strings beginning with "goo", and will never
2649 see the correct match of "foo<char *>".
2651 Parenthesis example:
2653 In practice, this is less like to be an issue, but I'll give it a
2654 shot. Let's assume that '$' is a legitimate character to occur in
2655 symbols. (Which may well even be the case on some systems.) Then
2656 say that the partial symbol table contains "foo$" and "foo(int)".
2657 strcmp will put them in this order, since '$' < '('. Now, if the
2658 user searches for "foo", then strcmp will sort "foo" before "foo$".
2659 Then lookup_partial_symbol will notice that strcmp_iw("foo$",
2660 "foo") is false, so it won't proceed to the actual match of
2661 "foo(int)" with "foo". */
2664 strcmp_iw_ordered (const char *string1
, const char *string2
)
2666 const char *saved_string1
= string1
, *saved_string2
= string2
;
2667 enum case_sensitivity case_pass
= case_sensitive_off
;
2671 /* C1 and C2 are valid only if *string1 != '\0' && *string2 != '\0'.
2672 Provide stub characters if we are already at the end of one of the
2674 char c1
= 'X', c2
= 'X';
2676 while (*string1
!= '\0' && *string2
!= '\0')
2678 while (ISSPACE (*string1
))
2680 while (ISSPACE (*string2
))
2685 case case_sensitive_off
:
2686 c1
= TOLOWER ((unsigned char) *string1
);
2687 c2
= TOLOWER ((unsigned char) *string2
);
2689 case case_sensitive_on
:
2697 if (*string1
!= '\0')
2706 /* Characters are non-equal unless they're both '\0'; we want to
2707 make sure we get the comparison right according to our
2708 comparison in the cases where one of them is '\0' or '('. */
2710 if (*string2
== '\0')
2715 if (*string2
== '\0')
2720 if (*string2
== '\0' || *string2
== '(')
2729 if (case_pass
== case_sensitive_on
)
2732 /* Otherwise the strings were equal in case insensitive way, make
2733 a more fine grained comparison in a case sensitive way. */
2735 case_pass
= case_sensitive_on
;
2736 string1
= saved_string1
;
2737 string2
= saved_string2
;
2744 streq (const char *lhs
, const char *rhs
)
2746 return !strcmp (lhs
, rhs
);
2753 ** Answer whether string_to_compare is a full or partial match to
2754 ** template_string. The partial match must be in sequence starting
2758 subset_compare (const char *string_to_compare
, const char *template_string
)
2762 if (template_string
!= NULL
&& string_to_compare
!= NULL
2763 && strlen (string_to_compare
) <= strlen (template_string
))
2765 (startswith (template_string
, string_to_compare
));
2772 show_debug_timestamp (struct ui_file
*file
, int from_tty
,
2773 struct cmd_list_element
*c
, const char *value
)
2775 fprintf_filtered (file
, _("Timestamping debugging messages is %s.\n"),
2783 address_significant (gdbarch
*gdbarch
, CORE_ADDR addr
)
2785 /* Clear insignificant bits of a target address and sign extend resulting
2786 address, avoiding shifts larger or equal than the width of a CORE_ADDR.
2787 The local variable ADDR_BIT stops the compiler reporting a shift overflow
2788 when it won't occur. Skip updating of target address if current target
2789 has not set gdbarch significant_addr_bit. */
2790 int addr_bit
= gdbarch_significant_addr_bit (gdbarch
);
2792 if (addr_bit
&& (addr_bit
< (sizeof (CORE_ADDR
) * HOST_CHAR_BIT
)))
2794 CORE_ADDR sign
= (CORE_ADDR
) 1 << (addr_bit
- 1);
2795 addr
&= ((CORE_ADDR
) 1 << addr_bit
) - 1;
2796 addr
= (addr
^ sign
) - sign
;
2803 paddress (struct gdbarch
*gdbarch
, CORE_ADDR addr
)
2805 /* Truncate address to the size of a target address, avoiding shifts
2806 larger or equal than the width of a CORE_ADDR. The local
2807 variable ADDR_BIT stops the compiler reporting a shift overflow
2808 when it won't occur. */
2809 /* NOTE: This assumes that the significant address information is
2810 kept in the least significant bits of ADDR - the upper bits were
2811 either zero or sign extended. Should gdbarch_address_to_pointer or
2812 some ADDRESS_TO_PRINTABLE() be used to do the conversion? */
2814 int addr_bit
= gdbarch_addr_bit (gdbarch
);
2816 if (addr_bit
< (sizeof (CORE_ADDR
) * HOST_CHAR_BIT
))
2817 addr
&= ((CORE_ADDR
) 1 << addr_bit
) - 1;
2818 return hex_string (addr
);
2821 /* This function is described in "defs.h". */
2824 print_core_address (struct gdbarch
*gdbarch
, CORE_ADDR address
)
2826 int addr_bit
= gdbarch_addr_bit (gdbarch
);
2828 if (addr_bit
< (sizeof (CORE_ADDR
) * HOST_CHAR_BIT
))
2829 address
&= ((CORE_ADDR
) 1 << addr_bit
) - 1;
2831 /* FIXME: cagney/2002-05-03: Need local_address_string() function
2832 that returns the language localized string formatted to a width
2833 based on gdbarch_addr_bit. */
2835 return hex_string_custom (address
, 8);
2837 return hex_string_custom (address
, 16);
2840 /* Convert a string back into a CORE_ADDR. */
2842 string_to_core_addr (const char *my_string
)
2846 if (my_string
[0] == '0' && TOLOWER (my_string
[1]) == 'x')
2848 /* Assume that it is in hex. */
2851 for (i
= 2; my_string
[i
] != '\0'; i
++)
2853 if (ISDIGIT (my_string
[i
]))
2854 addr
= (my_string
[i
] - '0') + (addr
* 16);
2855 else if (ISXDIGIT (my_string
[i
]))
2856 addr
= (TOLOWER (my_string
[i
]) - 'a' + 0xa) + (addr
* 16);
2858 error (_("invalid hex \"%s\""), my_string
);
2863 /* Assume that it is in decimal. */
2866 for (i
= 0; my_string
[i
] != '\0'; i
++)
2868 if (ISDIGIT (my_string
[i
]))
2869 addr
= (my_string
[i
] - '0') + (addr
* 10);
2871 error (_("invalid decimal \"%s\""), my_string
);
2881 gdb_realpath_check_trailer (const char *input
, const char *trailer
)
2883 gdb::unique_xmalloc_ptr
<char> result
= gdb_realpath (input
);
2885 size_t len
= strlen (result
.get ());
2886 size_t trail_len
= strlen (trailer
);
2888 SELF_CHECK (len
>= trail_len
2889 && strcmp (result
.get () + len
- trail_len
, trailer
) == 0);
2893 gdb_realpath_tests ()
2895 /* A file which contains a directory prefix. */
2896 gdb_realpath_check_trailer ("./xfullpath.exp", "/xfullpath.exp");
2897 /* A file which contains a directory prefix. */
2898 gdb_realpath_check_trailer ("../../defs.h", "/defs.h");
2899 /* A one-character filename. */
2900 gdb_realpath_check_trailer ("./a", "/a");
2901 /* A file in the root directory. */
2902 gdb_realpath_check_trailer ("/root_file_which_should_exist",
2903 "/root_file_which_should_exist");
2904 /* A file which does not have a directory prefix. */
2905 gdb_realpath_check_trailer ("xfullpath.exp", "xfullpath.exp");
2906 /* A one-char filename without any directory prefix. */
2907 gdb_realpath_check_trailer ("a", "a");
2908 /* An empty filename. */
2909 gdb_realpath_check_trailer ("", "");
2912 /* Test the gdb_argv::as_array_view method. */
2915 gdb_argv_as_array_view_test ()
2920 gdb::array_view
<char *> view
= argv
.as_array_view ();
2922 SELF_CHECK (view
.data () == nullptr);
2923 SELF_CHECK (view
.size () == 0);
2926 gdb_argv
argv ("une bonne 50");
2928 gdb::array_view
<char *> view
= argv
.as_array_view ();
2930 SELF_CHECK (view
.size () == 3);
2931 SELF_CHECK (strcmp (view
[0], "une") == 0);
2932 SELF_CHECK (strcmp (view
[1], "bonne") == 0);
2933 SELF_CHECK (strcmp (view
[2], "50") == 0);
2937 #endif /* GDB_SELF_TEST */
2939 /* Allocation function for the libiberty hash table which uses an
2940 obstack. The obstack is passed as DATA. */
2943 hashtab_obstack_allocate (void *data
, size_t size
, size_t count
)
2945 size_t total
= size
* count
;
2946 void *ptr
= obstack_alloc ((struct obstack
*) data
, total
);
2948 memset (ptr
, 0, total
);
2952 /* Trivial deallocation function for the libiberty splay tree and hash
2953 table - don't deallocate anything. Rely on later deletion of the
2954 obstack. DATA will be the obstack, although it is not needed
2958 dummy_obstack_deallocate (void *object
, void *data
)
2963 /* Simple, portable version of dirname that does not modify its
2967 ldirname (const char *filename
)
2969 std::string dirname
;
2970 const char *base
= lbasename (filename
);
2972 while (base
> filename
&& IS_DIR_SEPARATOR (base
[-1]))
2975 if (base
== filename
)
2978 dirname
= std::string (filename
, base
- filename
);
2980 /* On DOS based file systems, convert "d:foo" to "d:.", so that we
2981 create "d:./bar" later instead of the (different) "d:/bar". */
2982 if (base
- filename
== 2 && IS_ABSOLUTE_PATH (base
)
2983 && !IS_DIR_SEPARATOR (filename
[0]))
2984 dirname
[base
++ - filename
] = '.';
2992 gdb_argv::reset (const char *s
)
2994 char **argv
= buildargv (s
);
3000 /* Return ARGS parsed as a valid pid, or throw an error. */
3003 parse_pid_to_attach (const char *args
)
3009 error_no_arg (_("process-id to attach"));
3011 dummy
= (char *) args
;
3012 pid
= strtoul (args
, &dummy
, 0);
3013 /* Some targets don't set errno on errors, grrr! */
3014 if ((pid
== 0 && dummy
== args
) || dummy
!= &args
[strlen (args
)])
3015 error (_("Illegal process-id: %s."), args
);
3020 /* Substitute all occurrences of string FROM by string TO in *STRINGP. *STRINGP
3021 must come from xrealloc-compatible allocator and it may be updated. FROM
3022 needs to be delimited by IS_DIR_SEPARATOR or DIRNAME_SEPARATOR (or be
3023 located at the start or end of *STRINGP. */
3026 substitute_path_component (char **stringp
, const char *from
, const char *to
)
3028 char *string
= *stringp
, *s
;
3029 const size_t from_len
= strlen (from
);
3030 const size_t to_len
= strlen (to
);
3034 s
= strstr (s
, from
);
3038 if ((s
== string
|| IS_DIR_SEPARATOR (s
[-1])
3039 || s
[-1] == DIRNAME_SEPARATOR
)
3040 && (s
[from_len
] == '\0' || IS_DIR_SEPARATOR (s
[from_len
])
3041 || s
[from_len
] == DIRNAME_SEPARATOR
))
3046 = (char *) xrealloc (string
, (strlen (string
) + to_len
+ 1));
3048 /* Relocate the current S pointer. */
3049 s
= s
- string
+ string_new
;
3050 string
= string_new
;
3052 /* Replace from by to. */
3053 memmove (&s
[to_len
], &s
[from_len
], strlen (&s
[from_len
]) + 1);
3054 memcpy (s
, to
, to_len
);
3069 /* SIGALRM handler for waitpid_with_timeout. */
3072 sigalrm_handler (int signo
)
3074 /* Nothing to do. */
3079 /* Wrapper to wait for child PID to die with TIMEOUT.
3080 TIMEOUT is the time to stop waiting in seconds.
3081 If TIMEOUT is zero, pass WNOHANG to waitpid.
3082 Returns PID if it was successfully waited for, otherwise -1.
3084 Timeouts are currently implemented with alarm and SIGALRM.
3085 If the host does not support them, this waits "forever".
3086 It would be odd though for a host to have waitpid and not SIGALRM. */
3089 wait_to_die_with_timeout (pid_t pid
, int *status
, int timeout
)
3091 pid_t waitpid_result
;
3093 gdb_assert (pid
> 0);
3094 gdb_assert (timeout
>= 0);
3099 #if defined (HAVE_SIGACTION) && defined (SA_RESTART)
3100 struct sigaction sa
, old_sa
;
3102 sa
.sa_handler
= sigalrm_handler
;
3103 sigemptyset (&sa
.sa_mask
);
3105 sigaction (SIGALRM
, &sa
, &old_sa
);
3109 ofunc
= signal (SIGALRM
, sigalrm_handler
);
3115 waitpid_result
= waitpid (pid
, status
, 0);
3119 #if defined (HAVE_SIGACTION) && defined (SA_RESTART)
3120 sigaction (SIGALRM
, &old_sa
, NULL
);
3122 signal (SIGALRM
, ofunc
);
3127 waitpid_result
= waitpid (pid
, status
, WNOHANG
);
3129 if (waitpid_result
== pid
)
3135 #endif /* HAVE_WAITPID */
3137 /* Provide fnmatch compatible function for FNM_FILE_NAME matching of host files.
3138 Both FNM_FILE_NAME and FNM_NOESCAPE must be set in FLAGS.
3140 It handles correctly HAVE_DOS_BASED_FILE_SYSTEM and
3141 HAVE_CASE_INSENSITIVE_FILE_SYSTEM. */
3144 gdb_filename_fnmatch (const char *pattern
, const char *string
, int flags
)
3146 gdb_assert ((flags
& FNM_FILE_NAME
) != 0);
3148 /* It is unclear how '\' escaping vs. directory separator should coexist. */
3149 gdb_assert ((flags
& FNM_NOESCAPE
) != 0);
3151 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
3153 char *pattern_slash
, *string_slash
;
3155 /* Replace '\' by '/' in both strings. */
3157 pattern_slash
= (char *) alloca (strlen (pattern
) + 1);
3158 strcpy (pattern_slash
, pattern
);
3159 pattern
= pattern_slash
;
3160 for (; *pattern_slash
!= 0; pattern_slash
++)
3161 if (IS_DIR_SEPARATOR (*pattern_slash
))
3162 *pattern_slash
= '/';
3164 string_slash
= (char *) alloca (strlen (string
) + 1);
3165 strcpy (string_slash
, string
);
3166 string
= string_slash
;
3167 for (; *string_slash
!= 0; string_slash
++)
3168 if (IS_DIR_SEPARATOR (*string_slash
))
3169 *string_slash
= '/';
3171 #endif /* HAVE_DOS_BASED_FILE_SYSTEM */
3173 #ifdef HAVE_CASE_INSENSITIVE_FILE_SYSTEM
3174 flags
|= FNM_CASEFOLD
;
3175 #endif /* HAVE_CASE_INSENSITIVE_FILE_SYSTEM */
3177 return fnmatch (pattern
, string
, flags
);
3180 /* Return the number of path elements in PATH.
3188 count_path_elements (const char *path
)
3191 const char *p
= path
;
3193 if (HAS_DRIVE_SPEC (p
))
3195 p
= STRIP_DRIVE_SPEC (p
);
3201 if (IS_DIR_SEPARATOR (*p
))
3206 /* Backup one if last character is /, unless it's the only one. */
3207 if (p
> path
+ 1 && IS_DIR_SEPARATOR (p
[-1]))
3210 /* Add one for the file name, if present. */
3211 if (p
> path
&& !IS_DIR_SEPARATOR (p
[-1]))
3217 /* Remove N leading path elements from PATH.
3218 N must be non-negative.
3219 If PATH has more than N path elements then return NULL.
3220 If PATH has exactly N path elements then return "".
3221 See count_path_elements for a description of how we do the counting. */
3224 strip_leading_path_elements (const char *path
, int n
)
3227 const char *p
= path
;
3229 gdb_assert (n
>= 0);
3234 if (HAS_DRIVE_SPEC (p
))
3236 p
= STRIP_DRIVE_SPEC (p
);
3242 while (*p
!= '\0' && !IS_DIR_SEPARATOR (*p
))
3260 copy_bitwise (gdb_byte
*dest
, ULONGEST dest_offset
,
3261 const gdb_byte
*source
, ULONGEST source_offset
,
3262 ULONGEST nbits
, int bits_big_endian
)
3264 unsigned int buf
, avail
;
3269 if (bits_big_endian
)
3271 /* Start from the end, then work backwards. */
3272 dest_offset
+= nbits
- 1;
3273 dest
+= dest_offset
/ 8;
3274 dest_offset
= 7 - dest_offset
% 8;
3275 source_offset
+= nbits
- 1;
3276 source
+= source_offset
/ 8;
3277 source_offset
= 7 - source_offset
% 8;
3281 dest
+= dest_offset
/ 8;
3283 source
+= source_offset
/ 8;
3287 /* Fill BUF with DEST_OFFSET bits from the destination and 8 -
3288 SOURCE_OFFSET bits from the source. */
3289 buf
= *(bits_big_endian
? source
-- : source
++) >> source_offset
;
3290 buf
<<= dest_offset
;
3291 buf
|= *dest
& ((1 << dest_offset
) - 1);
3293 /* NBITS: bits yet to be written; AVAIL: BUF's fill level. */
3294 nbits
+= dest_offset
;
3295 avail
= dest_offset
+ 8 - source_offset
;
3297 /* Flush 8 bits from BUF, if appropriate. */
3298 if (nbits
>= 8 && avail
>= 8)
3300 *(bits_big_endian
? dest
-- : dest
++) = buf
;
3306 /* Copy the middle part. */
3309 size_t len
= nbits
/ 8;
3311 /* Use a faster method for byte-aligned copies. */
3314 if (bits_big_endian
)
3318 memcpy (dest
+ 1, source
+ 1, len
);
3322 memcpy (dest
, source
, len
);
3331 buf
|= *(bits_big_endian
? source
-- : source
++) << avail
;
3332 *(bits_big_endian
? dest
-- : dest
++) = buf
;
3339 /* Write the last byte. */
3343 buf
|= *source
<< avail
;
3345 buf
&= (1 << nbits
) - 1;
3346 *dest
= (*dest
& (~0U << nbits
)) | buf
;
3350 void _initialize_utils ();
3352 _initialize_utils ()
3354 add_setshow_uinteger_cmd ("width", class_support
, &chars_per_line
, _("\
3355 Set number of characters where GDB should wrap lines of its output."), _("\
3356 Show number of characters where GDB should wrap lines of its output."), _("\
3357 This affects where GDB wraps its output to fit the screen width.\n\
3358 Setting this to \"unlimited\" or zero prevents GDB from wrapping its output."),
3360 show_chars_per_line
,
3361 &setlist
, &showlist
);
3363 add_setshow_uinteger_cmd ("height", class_support
, &lines_per_page
, _("\
3364 Set number of lines in a page for GDB output pagination."), _("\
3365 Show number of lines in a page for GDB output pagination."), _("\
3366 This affects the number of lines after which GDB will pause\n\
3367 its output and ask you whether to continue.\n\
3368 Setting this to \"unlimited\" or zero causes GDB never pause during output."),
3370 show_lines_per_page
,
3371 &setlist
, &showlist
);
3373 add_setshow_boolean_cmd ("pagination", class_support
,
3374 &pagination_enabled
, _("\
3375 Set state of GDB output pagination."), _("\
3376 Show state of GDB output pagination."), _("\
3377 When pagination is ON, GDB pauses at end of each screenful of\n\
3378 its output and asks you whether to continue.\n\
3379 Turning pagination off is an alternative to \"set height unlimited\"."),
3381 show_pagination_enabled
,
3382 &setlist
, &showlist
);
3384 add_setshow_boolean_cmd ("sevenbit-strings", class_support
,
3385 &sevenbit_strings
, _("\
3386 Set printing of 8-bit characters in strings as \\nnn."), _("\
3387 Show printing of 8-bit characters in strings as \\nnn."), NULL
,
3389 show_sevenbit_strings
,
3390 &setprintlist
, &showprintlist
);
3392 add_setshow_boolean_cmd ("timestamp", class_maintenance
,
3393 &debug_timestamp
, _("\
3394 Set timestamping of debugging messages."), _("\
3395 Show timestamping of debugging messages."), _("\
3396 When set, debugging messages will be marked with seconds and microseconds."),
3398 show_debug_timestamp
,
3399 &setdebuglist
, &showdebuglist
);
3401 add_internal_problem_command (&internal_error_problem
);
3402 add_internal_problem_command (&internal_warning_problem
);
3403 add_internal_problem_command (&demangler_warning_problem
);
3406 selftests::register_test ("gdb_realpath", gdb_realpath_tests
);
3407 selftests::register_test ("gdb_argv_array_view", gdb_argv_as_array_view_test
);