]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/utils.c
Move gdb_argv to gdbsupport
[thirdparty/binutils-gdb.git] / gdb / utils.c
CommitLineData
c906108c 1/* General utility routines for GDB, the GNU debugger.
1bac305b 2
4a94e368 3 Copyright (C) 1986-2022 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
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
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
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.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c 19
4e8f7a8b 20#include "defs.h"
4e8f7a8b 21#include <ctype.h>
268a13a5 22#include "gdbsupport/gdb_wait.h"
4e8f7a8b 23#include "event-top.h"
95e54da7 24#include "gdbthread.h"
202cbf1c 25#include "fnmatch.h"
cbb099e8 26#include "gdb_bfd.h"
7991dee7
JK
27#ifdef HAVE_SYS_RESOURCE_H
28#include <sys/resource.h>
29#endif /* HAVE_SYS_RESOURCE_H */
4e8f7a8b 30
6a83354a
AC
31#ifdef TUI
32#include "tui/tui.h" /* For tui_get_command_dimension. */
33#endif
34
9d271fd8
AC
35#ifdef __GO32__
36#include <pc.h>
37#endif
38
042be3a9 39#include <signal.h>
c906108c
SS
40#include "gdbcmd.h"
41#include "serial.h"
42#include "bfd.h"
43#include "target.h"
50f182aa 44#include "gdb-demangle.h"
c906108c
SS
45#include "expression.h"
46#include "language.h"
234b45d4 47#include "charset.h"
c906108c 48#include "annotate.h"
303c8ebd 49#include "filenames.h"
7b90c3f9 50#include "symfile.h"
ae5a43e0 51#include "gdb_obstack.h"
9544c605 52#include "gdbcore.h"
698ba934 53#include "top.h"
7c953934 54#include "main.h"
cb08cc53 55#include "solist.h"
c906108c 56
8731e58e 57#include "inferior.h" /* for signed_pointer_to_address */
ac2e2ef7 58
3b78cdbb 59#include "gdb_curses.h"
020cc13c 60
dbda9972 61#include "readline/readline.h"
c906108c 62
dcb07cfa 63#include <chrono>
75feb17d 64
390a8aca 65#include "interps.h"
db1ff28b 66#include "gdb_regex.h"
268a13a5
TT
67#include "gdbsupport/job-control.h"
68#include "gdbsupport/selftest.h"
69#include "gdbsupport/gdb_optional.h"
0662b6a7
PA
70#include "cp-support.h"
71#include <algorithm>
268a13a5 72#include "gdbsupport/pathstuff.h"
cbe56571 73#include "cli/cli-style.h"
268a13a5 74#include "gdbsupport/scope-exit.h"
0d12e84c 75#include "gdbarch.h"
2a3c1174 76#include "cli-out.h"
51e2cfa2 77#include "gdbsupport/gdb-safe-ctype.h"
91f2597b 78#include "bt-utils.h"
7904e961 79#include "gdbsupport/buildargv.h"
8626589c 80
9a4105ab 81void (*deprecated_error_begin_hook) (void);
c906108c
SS
82
83/* Prototypes for local functions */
84
d9fcf2fb 85static void vfprintf_maybe_filtered (struct ui_file *, const char *,
ad15549d 86 va_list, bool)
2a3c1174 87 ATTRIBUTE_PRINTF (2, 0);
c906108c 88
d9fcf2fb 89static void fputs_maybe_filtered (const char *, struct ui_file *, int);
c906108c 90
a14ed312 91static void prompt_for_continue (void);
c906108c 92
eb0d3137 93static void set_screen_size (void);
a14ed312 94static void set_width (void);
c906108c 95
260c0b2a
DE
96/* Time spent in prompt_for_continue in the currently executing command
97 waiting for user to respond.
98 Initialized in make_command_stats_cleanup.
99 Modified in prompt_for_continue and defaulted_query.
100 Used in report_command_stats. */
101
dcb07cfa 102static std::chrono::steady_clock::duration prompt_for_continue_wait_time;
260c0b2a 103
75feb17d
DJ
104/* A flag indicating whether to timestamp debugging messages. */
105
491144b5 106static bool debug_timestamp = false;
75feb17d 107
491144b5
CB
108/* True means that strings with character values >0x7F should be printed
109 as octal escapes. False means just print the value (e.g. it's an
c906108c
SS
110 international character, and the terminal or window can cope.) */
111
491144b5 112bool sevenbit_strings = false;
920d2a44
AC
113static void
114show_sevenbit_strings (struct ui_file *file, int from_tty,
115 struct cmd_list_element *c, const char *value)
116{
3e43a32a
MS
117 fprintf_filtered (file, _("Printing of 8-bit characters "
118 "in strings as \\nnn is %s.\n"),
920d2a44
AC
119 value);
120}
c906108c 121
c906108c
SS
122/* String to be printed before warning messages, if any. */
123
69bbf465 124const char *warning_pre_print = "\nwarning: ";
c906108c 125
491144b5 126bool pagination_enabled = true;
920d2a44
AC
127static void
128show_pagination_enabled (struct ui_file *file, int from_tty,
129 struct cmd_list_element *c, const char *value)
130{
131 fprintf_filtered (file, _("State of pagination is %s.\n"), value);
132}
133
c906108c 134\f
c5aa993b 135
8731e58e 136
f5a96129
AC
137/* Print a warning message. The first argument STRING is the warning
138 message, used as an fprintf format string, the second is the
139 va_list of arguments for that string. A warning is unfiltered (not
140 paginated) so that the user does not need to page through each
141 screen full of warnings when there are lots of them. */
c906108c
SS
142
143void
f5a96129 144vwarning (const char *string, va_list args)
c906108c 145{
9a4105ab
AC
146 if (deprecated_warning_hook)
147 (*deprecated_warning_hook) (string, args);
f5a96129
AC
148 else
149 {
223ffa71 150 gdb::optional<target_terminal::scoped_restore_terminal_state> term_state;
0d2f5c07 151 if (target_supports_terminal_ours ())
c5ac1540 152 {
223ffa71
TT
153 term_state.emplace ();
154 target_terminal::ours_for_output ();
c5ac1540 155 }
0d2f5c07
GB
156 if (filtered_printing_initialized ())
157 wrap_here (""); /* Force out any buffered output. */
f5a96129
AC
158 gdb_flush (gdb_stdout);
159 if (warning_pre_print)
306d9ac5 160 fputs_unfiltered (warning_pre_print, gdb_stderr);
f5a96129
AC
161 vfprintf_unfiltered (gdb_stderr, string, args);
162 fprintf_unfiltered (gdb_stderr, "\n");
f5a96129 163 }
c906108c
SS
164}
165
c906108c
SS
166/* Print an error message and return to command level.
167 The first argument STRING is the error message, used as a fprintf string,
168 and the remaining args are passed as arguments to it. */
169
c25c4a8b 170void
4ce44c66
JM
171verror (const char *string, va_list args)
172{
6b1b7650 173 throw_verror (GENERIC_ERROR, string, args);
4ce44c66
JM
174}
175
c25c4a8b 176void
d7e74731 177error_stream (const string_file &stream)
2acceee2 178{
d7e74731 179 error (("%s"), stream.c_str ());
2acceee2 180}
c906108c 181
2437fd32
GB
182/* Emit a message and abort. */
183
184static void ATTRIBUTE_NORETURN
185abort_with_message (const char *msg)
186{
72542b8e 187 if (current_ui == NULL)
2437fd32
GB
188 fputs (msg, stderr);
189 else
190 fputs_unfiltered (msg, gdb_stderr);
191
036003a6 192 abort (); /* ARI: abort */
2437fd32
GB
193}
194
7991dee7
JK
195/* Dump core trying to increase the core soft limit to hard limit first. */
196
eae7090b 197void
7991dee7
JK
198dump_core (void)
199{
200#ifdef HAVE_SETRLIMIT
206c1947 201 struct rlimit rlim = { (rlim_t) RLIM_INFINITY, (rlim_t) RLIM_INFINITY };
7991dee7
JK
202
203 setrlimit (RLIMIT_CORE, &rlim);
204#endif /* HAVE_SETRLIMIT */
205
0e6e4b59
AB
206 /* Ensure that the SIGABRT we're about to raise will immediately cause
207 GDB to exit and dump core, we don't want to trigger GDB's printing of
208 a backtrace to the console here. */
209 signal (SIGABRT, SIG_DFL);
210
036003a6 211 abort (); /* ARI: abort */
7991dee7
JK
212}
213
3e43a32a 214/* Check whether GDB will be able to dump core using the dump_core
eae7090b
GB
215 function. Returns zero if GDB cannot or should not dump core.
216 If LIMIT_KIND is LIMIT_CUR the user's soft limit will be respected.
217 If LIMIT_KIND is LIMIT_MAX only the hard limit will be respected. */
7991dee7 218
eae7090b
GB
219int
220can_dump_core (enum resource_limit_kind limit_kind)
7991dee7
JK
221{
222#ifdef HAVE_GETRLIMIT
223 struct rlimit rlim;
224
225 /* Be quiet and assume we can dump if an error is returned. */
226 if (getrlimit (RLIMIT_CORE, &rlim) != 0)
227 return 1;
228
eae7090b 229 switch (limit_kind)
7991dee7 230 {
eae7090b
GB
231 case LIMIT_CUR:
232 if (rlim.rlim_cur == 0)
233 return 0;
565e0eda 234 /* Fall through. */
eae7090b
GB
235
236 case LIMIT_MAX:
237 if (rlim.rlim_max == 0)
238 return 0;
7991dee7
JK
239 }
240#endif /* HAVE_GETRLIMIT */
241
242 return 1;
243}
244
eae7090b
GB
245/* Print a warning that we cannot dump core. */
246
247void
248warn_cant_dump_core (const char *reason)
249{
250 fprintf_unfiltered (gdb_stderr,
251 _("%s\nUnable to dump core, use `ulimit -c"
252 " unlimited' before executing GDB next time.\n"),
253 reason);
254}
255
256/* Check whether GDB will be able to dump core using the dump_core
257 function, and print a warning if we cannot. */
258
259static int
260can_dump_core_warn (enum resource_limit_kind limit_kind,
261 const char *reason)
262{
263 int core_dump_allowed = can_dump_core (limit_kind);
264
265 if (!core_dump_allowed)
266 warn_cant_dump_core (reason);
267
268 return core_dump_allowed;
269}
270
3c16cced
PA
271/* Allow the user to configure the debugger behavior with respect to
272 what to do when an internal problem is detected. */
273
274const char internal_problem_ask[] = "ask";
275const char internal_problem_yes[] = "yes";
276const char internal_problem_no[] = "no";
40478521 277static const char *const internal_problem_modes[] =
3c16cced
PA
278{
279 internal_problem_ask,
280 internal_problem_yes,
281 internal_problem_no,
282 NULL
283};
3c16cced 284
90f4cc60
AB
285/* Data structure used to control how the internal_vproblem function
286 should behave. An instance of this structure is created for each
287 problem type that GDB supports. */
c906108c 288
dec43320 289struct internal_problem
c906108c 290{
90f4cc60
AB
291 /* The name of this problem type. This must not contain white space as
292 this string is used to build command names. */
dec43320 293 const char *name;
90f4cc60
AB
294
295 /* When this is true then a user command is created (based on NAME) that
296 allows the SHOULD_QUIT field to be modified, otherwise, SHOULD_QUIT
297 can't be changed from its default value by the user. */
298 bool user_settable_should_quit;
299
300 /* Reference a value from internal_problem_modes to indicate if GDB
301 should quit when it hits a problem of this type. */
3c16cced 302 const char *should_quit;
90f4cc60
AB
303
304 /* Like USER_SETTABLE_SHOULD_QUIT but for SHOULD_DUMP_CORE. */
305 bool user_settable_should_dump_core;
306
307 /* Like SHOULD_QUIT, but whether GDB should dump core. */
3c16cced 308 const char *should_dump_core;
91f2597b
AB
309
310 /* Like USER_SETTABLE_SHOULD_QUIT but for SHOULD_PRINT_BACKTRACE. */
311 bool user_settable_should_print_backtrace;
312
313 /* When this is true GDB will print a backtrace when a problem of this
314 type is encountered. */
315 bool should_print_backtrace;
dec43320
AC
316};
317
318/* Report a problem, internal to GDB, to the user. Once the problem
319 has been reported, and assuming GDB didn't quit, the caller can
320 either allow execution to resume or throw an error. */
321
a0b31db1 322static void ATTRIBUTE_PRINTF (4, 0)
dec43320 323internal_vproblem (struct internal_problem *problem,
8731e58e 324 const char *file, int line, const char *fmt, va_list ap)
dec43320 325{
dec43320 326 static int dejavu;
375fc983 327 int quit_p;
7be570e7 328 int dump_core_p;
e05550d7 329 std::string reason;
c906108c 330
dec43320 331 /* Don't allow infinite error/warning recursion. */
714b1282 332 {
02cf60c7 333 static const char msg[] = "Recursive internal problem.\n";
5d502164 334
714b1282
AC
335 switch (dejavu)
336 {
337 case 0:
338 dejavu = 1;
339 break;
340 case 1:
341 dejavu = 2;
2437fd32 342 abort_with_message (msg);
714b1282
AC
343 default:
344 dejavu = 3;
dda83cd7
SM
345 /* Newer GLIBC versions put the warn_unused_result attribute
346 on write, but this is one of those rare cases where
347 ignoring the return value is correct. Casting to (void)
348 does not fix this problem. This is the solution suggested
349 at http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25509. */
bf1d7d9c 350 if (write (STDERR_FILENO, msg, sizeof (msg)) != sizeof (msg))
dda83cd7 351 abort (); /* ARI: abort */
714b1282
AC
352 exit (1);
353 }
354 }
c906108c 355
714b1282
AC
356 /* Create a string containing the full error/warning message. Need
357 to call query with this full string, as otherwize the reason
358 (error/warning) and question become separated. Format using a
359 style similar to a compiler error message. Include extra detail
360 so that the user knows that they are living on the edge. */
361 {
f8bfbf22 362 std::string msg = string_vprintf (fmt, ap);
e05550d7
TT
363 reason = string_printf ("%s:%d: %s: %s\n"
364 "A problem internal to GDB has been detected,\n"
365 "further debugging may prove unreliable.",
366 file, line, problem->name, msg.c_str ());
714b1282 367 }
7be570e7 368
2437fd32 369 /* Fall back to abort_with_message if gdb_stderr is not set up. */
72542b8e 370 if (current_ui == NULL)
2437fd32 371 {
e05550d7 372 fputs (reason.c_str (), stderr);
2437fd32
GB
373 abort_with_message ("\n");
374 }
375
376 /* Try to get the message out and at the start of a new line. */
223ffa71 377 gdb::optional<target_terminal::scoped_restore_terminal_state> term_state;
2437fd32 378 if (target_supports_terminal_ours ())
c5ac1540 379 {
223ffa71
TT
380 term_state.emplace ();
381 target_terminal::ours_for_output ();
c5ac1540 382 }
2437fd32
GB
383 if (filtered_printing_initialized ())
384 begin_line ();
385
196a707b 386 /* Emit the message unless query will emit it below. */
2437fd32
GB
387 if (problem->should_quit != internal_problem_ask
388 || !confirm
91f2597b
AB
389 || !filtered_printing_initialized ()
390 || problem->should_print_backtrace)
e05550d7 391 fprintf_unfiltered (gdb_stderr, "%s\n", reason.c_str ());
196a707b 392
91f2597b
AB
393 if (problem->should_print_backtrace)
394 gdb_internal_backtrace ();
395
3c16cced 396 if (problem->should_quit == internal_problem_ask)
dec43320 397 {
dec43320 398 /* Default (yes/batch case) is to quit GDB. When in batch mode
3c16cced
PA
399 this lessens the likelihood of GDB going into an infinite
400 loop. */
2437fd32 401 if (!confirm || !filtered_printing_initialized ())
196a707b 402 quit_p = 1;
26bb68be 403 else
dda83cd7 404 quit_p = query (_("%s\nQuit this debugging session? "),
e05550d7 405 reason.c_str ());
dec43320 406 }
3c16cced
PA
407 else if (problem->should_quit == internal_problem_yes)
408 quit_p = 1;
409 else if (problem->should_quit == internal_problem_no)
410 quit_p = 0;
411 else
412 internal_error (__FILE__, __LINE__, _("bad switch"));
dec43320 413
add6c04d
GB
414 fputs_unfiltered (_("\nThis is a bug, please report it."), gdb_stderr);
415 if (REPORT_BUGS_TO[0])
416 fprintf_unfiltered (gdb_stderr, _(" For instructions, see:\n%s."),
417 REPORT_BUGS_TO);
418 fputs_unfiltered ("\n\n", gdb_stderr);
419
3c16cced 420 if (problem->should_dump_core == internal_problem_ask)
dec43320 421 {
e05550d7 422 if (!can_dump_core_warn (LIMIT_MAX, reason.c_str ()))
7991dee7 423 dump_core_p = 0;
2437fd32
GB
424 else if (!filtered_printing_initialized ())
425 dump_core_p = 1;
7991dee7
JK
426 else
427 {
428 /* Default (yes/batch case) is to dump core. This leaves a GDB
429 `dropping' so that it is easier to see that something went
430 wrong in GDB. */
e05550d7
TT
431 dump_core_p = query (_("%s\nCreate a core file of GDB? "),
432 reason.c_str ());
7991dee7 433 }
dec43320 434 }
3c16cced 435 else if (problem->should_dump_core == internal_problem_yes)
e05550d7 436 dump_core_p = can_dump_core_warn (LIMIT_MAX, reason.c_str ());
3c16cced
PA
437 else if (problem->should_dump_core == internal_problem_no)
438 dump_core_p = 0;
439 else
440 internal_error (__FILE__, __LINE__, _("bad switch"));
7be570e7 441
375fc983 442 if (quit_p)
7be570e7
JM
443 {
444 if (dump_core_p)
7991dee7 445 dump_core ();
375fc983
AC
446 else
447 exit (1);
7be570e7
JM
448 }
449 else
450 {
451 if (dump_core_p)
375fc983 452 {
9b265ec2 453#ifdef HAVE_WORKING_FORK
375fc983 454 if (fork () == 0)
7991dee7 455 dump_core ();
9b265ec2 456#endif
375fc983 457 }
7be570e7 458 }
96baa820
JM
459
460 dejavu = 0;
dec43320
AC
461}
462
463static struct internal_problem internal_error_problem = {
90f4cc60 464 "internal-error", true, internal_problem_ask, true, internal_problem_ask,
91f2597b 465 true, GDB_PRINT_INTERNAL_BACKTRACE_INIT_ON
dec43320
AC
466};
467
c25c4a8b 468void
8731e58e 469internal_verror (const char *file, int line, const char *fmt, va_list ap)
dec43320
AC
470{
471 internal_vproblem (&internal_error_problem, file, line, fmt, ap);
2c51604d 472 throw_quit (_("Command aborted."));
c906108c
SS
473}
474
dec43320 475static struct internal_problem internal_warning_problem = {
90f4cc60 476 "internal-warning", true, internal_problem_ask, true, internal_problem_ask,
91f2597b 477 true, false
dec43320
AC
478};
479
480void
8731e58e 481internal_vwarning (const char *file, int line, const char *fmt, va_list ap)
dec43320
AC
482{
483 internal_vproblem (&internal_warning_problem, file, line, fmt, ap);
484}
485
57fcfb1b 486static struct internal_problem demangler_warning_problem = {
90f4cc60 487 "demangler-warning", true, internal_problem_ask, false, internal_problem_no,
91f2597b 488 false, false
57fcfb1b
GB
489};
490
491void
492demangler_vwarning (const char *file, int line, const char *fmt, va_list ap)
493{
494 internal_vproblem (&demangler_warning_problem, file, line, fmt, ap);
495}
496
497void
498demangler_warning (const char *file, int line, const char *string, ...)
499{
500 va_list ap;
501
502 va_start (ap, string);
503 demangler_vwarning (file, line, string, ap);
504 va_end (ap);
505}
506
3c16cced
PA
507/* When GDB reports an internal problem (error or warning) it gives
508 the user the opportunity to quit GDB and/or create a core file of
509 the current debug session. This function registers a few commands
510 that make it possible to specify that GDB should always or never
511 quit or create a core file, without asking. The commands look
512 like:
513
514 maint set PROBLEM-NAME quit ask|yes|no
515 maint show PROBLEM-NAME quit
516 maint set PROBLEM-NAME corefile ask|yes|no
517 maint show PROBLEM-NAME corefile
518
519 Where PROBLEM-NAME is currently "internal-error" or
520 "internal-warning". */
521
522static void
523add_internal_problem_command (struct internal_problem *problem)
524{
525 struct cmd_list_element **set_cmd_list;
526 struct cmd_list_element **show_cmd_list;
3c16cced 527
8d749320
SM
528 set_cmd_list = XNEW (struct cmd_list_element *);
529 show_cmd_list = XNEW (struct cmd_list_element *);
3c16cced
PA
530 *set_cmd_list = NULL;
531 *show_cmd_list = NULL;
532
74765668
AB
533 /* The add_basic_prefix_cmd and add_show_prefix_cmd functions take
534 ownership of the string passed in, which is why we don't need to free
535 set_doc and show_doc in this function. */
536 const char *set_doc
537 = xstrprintf (_("Configure what GDB does when %s is detected."),
8579fd13 538 problem->name).release ();
74765668
AB
539 const char *show_doc
540 = xstrprintf (_("Show what GDB does when %s is detected."),
8579fd13 541 problem->name).release ();
3c16cced 542
f54bdb6d
SM
543 add_setshow_prefix_cmd (problem->name, class_maintenance,
544 set_doc, show_doc, set_cmd_list, show_cmd_list,
545 &maintenance_set_cmdlist, &maintenance_show_cmdlist);
3c16cced 546
57fcfb1b
GB
547 if (problem->user_settable_should_quit)
548 {
74765668
AB
549 std::string set_quit_doc
550 = string_printf (_("Set whether GDB should quit when an %s is "
551 "detected."), problem->name);
552 std::string show_quit_doc
553 = string_printf (_("Show whether GDB will quit when an %s is "
554 "detected."), problem->name);
57fcfb1b
GB
555 add_setshow_enum_cmd ("quit", class_maintenance,
556 internal_problem_modes,
557 &problem->should_quit,
74765668
AB
558 set_quit_doc.c_str (),
559 show_quit_doc.c_str (),
57fcfb1b
GB
560 NULL, /* help_doc */
561 NULL, /* setfunc */
562 NULL, /* showfunc */
563 set_cmd_list,
564 show_cmd_list);
57fcfb1b 565 }
1eefb858 566
57fcfb1b
GB
567 if (problem->user_settable_should_dump_core)
568 {
74765668
AB
569 std::string set_core_doc
570 = string_printf (_("Set whether GDB should create a core file of "
571 "GDB when %s is detected."), problem->name);
572 std::string show_core_doc
573 = string_printf (_("Show whether GDB will create a core file of "
574 "GDB when %s is detected."), problem->name);
57fcfb1b
GB
575 add_setshow_enum_cmd ("corefile", class_maintenance,
576 internal_problem_modes,
577 &problem->should_dump_core,
74765668
AB
578 set_core_doc.c_str (),
579 show_core_doc.c_str (),
57fcfb1b
GB
580 NULL, /* help_doc */
581 NULL, /* setfunc */
582 NULL, /* showfunc */
583 set_cmd_list,
584 show_cmd_list);
57fcfb1b 585 }
91f2597b
AB
586
587 if (problem->user_settable_should_print_backtrace)
588 {
589 std::string set_bt_doc
590 = string_printf (_("Set whether GDB should print a backtrace of "
591 "GDB when %s is detected."), problem->name);
592 std::string show_bt_doc
593 = string_printf (_("Show whether GDB will print a backtrace of "
594 "GDB when %s is detected."), problem->name);
595 add_setshow_boolean_cmd ("backtrace", class_maintenance,
596 &problem->should_print_backtrace,
597 set_bt_doc.c_str (),
598 show_bt_doc.c_str (),
599 NULL, /* help_doc */
600 gdb_internal_backtrace_set_cmd,
601 NULL, /* showfunc */
602 set_cmd_list,
603 show_cmd_list);
604 }
3c16cced
PA
605}
606
0cf4063e 607/* Return a newly allocated string, containing the PREFIX followed
18e9961f 608 by the system error message for errno (separated by a colon). */
0cf4063e 609
18e9961f 610static std::string
0cf4063e
JB
611perror_string (const char *prefix)
612{
b231e86a 613 const char *err = safe_strerror (errno);
18e9961f 614 return std::string (prefix) + ": " + err;
0cf4063e
JB
615}
616
c906108c 617/* Print the system error message for errno, and also mention STRING
598d3636
JK
618 as the file name for which the error was encountered. Use ERRCODE
619 for the thrown exception. Then return to command level. */
c906108c 620
c25c4a8b 621void
598d3636 622throw_perror_with_name (enum errors errcode, const char *string)
c906108c 623{
18e9961f 624 std::string combined = perror_string (string);
c906108c
SS
625
626 /* I understand setting these is a matter of taste. Still, some people
627 may clear errno but not know about bfd_error. Doing this here is not
581e13c1 628 unreasonable. */
c906108c
SS
629 bfd_set_error (bfd_error_no_error);
630 errno = 0;
631
18e9961f 632 throw_error (errcode, _("%s."), combined.c_str ());
598d3636
JK
633}
634
635/* See throw_perror_with_name, ERRCODE defaults here to GENERIC_ERROR. */
636
637void
638perror_with_name (const char *string)
639{
640 throw_perror_with_name (GENERIC_ERROR, string);
c906108c
SS
641}
642
7c647d61
JB
643/* Same as perror_with_name except that it prints a warning instead
644 of throwing an error. */
645
646void
647perror_warning_with_name (const char *string)
648{
18e9961f
TT
649 std::string combined = perror_string (string);
650 warning (_("%s"), combined.c_str ());
7c647d61
JB
651}
652
c906108c
SS
653/* Print the system error message for ERRCODE, and also mention STRING
654 as the file name for which the error was encountered. */
655
656void
6972bc8b 657print_sys_errmsg (const char *string, int errcode)
c906108c 658{
b231e86a 659 const char *err = safe_strerror (errcode);
c906108c
SS
660 /* We want anything which was printed on stdout to come out first, before
661 this message. */
662 gdb_flush (gdb_stdout);
5df96a4e 663 fprintf_unfiltered (gdb_stderr, "%s: %s.\n", string, err);
c906108c
SS
664}
665
666/* Control C eventually causes this to be called, at a convenient time. */
667
668void
fba45db2 669quit (void)
c906108c 670{
06c868a8
JK
671 if (sync_quit_force_run)
672 {
673 sync_quit_force_run = 0;
268a799a 674 quit_force (NULL, 0);
06c868a8
JK
675 }
676
7be570e7
JM
677#ifdef __MSDOS__
678 /* No steenking SIGINT will ever be coming our way when the
679 program is resumed. Don't lie. */
2c51604d 680 throw_quit ("Quit");
7be570e7 681#else
c906108c 682 if (job_control
8731e58e 683 /* If there is no terminal switching for this target, then we can't
dda83cd7 684 possibly get screwed by the lack of job control. */
b0ed115f 685 || !target_supports_terminal_ours ())
2c51604d 686 throw_quit ("Quit");
c906108c 687 else
2c51604d 688 throw_quit ("Quit (expect signal SIGINT when the program is resumed)");
7be570e7 689#endif
c906108c
SS
690}
691
abc56d60
PA
692/* See defs.h. */
693
694void
695maybe_quit (void)
696{
048094ac 697 if (sync_quit_force_run)
abc56d60 698 quit ();
048094ac
PA
699
700 quit_handler ();
abc56d60
PA
701}
702
c906108c 703\f
c906108c 704/* Called when a memory allocation fails, with the number of bytes of
581e13c1 705 memory requested in SIZE. */
c906108c 706
c25c4a8b 707void
d26e3629 708malloc_failure (long size)
c906108c
SS
709{
710 if (size > 0)
711 {
8e65ff28 712 internal_error (__FILE__, __LINE__,
e2e0b3e5 713 _("virtual memory exhausted: can't allocate %ld bytes."),
8731e58e 714 size);
c906108c
SS
715 }
716 else
717 {
e2e0b3e5 718 internal_error (__FILE__, __LINE__, _("virtual memory exhausted."));
c906108c
SS
719 }
720}
721
c1cd3163
TT
722/* See common/errors.h. */
723
724void
725flush_streams ()
726{
727 gdb_stdout->flush ();
728 gdb_stderr->flush ();
729}
730
c906108c
SS
731/* My replacement for the read system call.
732 Used like `read' but keeps going if `read' returns too soon. */
733
734int
fba45db2 735myread (int desc, char *addr, int len)
c906108c 736{
52f0bd74 737 int val;
c906108c
SS
738 int orglen = len;
739
740 while (len > 0)
741 {
742 val = read (desc, addr, len);
743 if (val < 0)
744 return val;
745 if (val == 0)
746 return orglen - len;
747 len -= val;
748 addr += val;
749 }
750 return orglen;
751}
d26e3629 752
e55c6530
JB
753/* See utils.h. */
754
755ULONGEST
756uinteger_pow (ULONGEST v1, LONGEST v2)
757{
758 if (v2 < 0)
759 {
760 if (v1 == 0)
761 error (_("Attempt to raise 0 to negative power."));
762 else
763 return 0;
764 }
765 else
766 {
767 /* The Russian Peasant's Algorithm. */
768 ULONGEST v;
769
770 v = 1;
771 for (;;)
772 {
773 if (v2 & 1L)
774 v *= v1;
775 v2 >>= 1;
776 if (v2 == 0)
777 return v;
778 v1 *= v1;
779 }
780 }
781}
782
c906108c 783\f
c5aa993b 784
223ffa71
TT
785/* An RAII class that sets up to handle input and then tears down
786 during destruction. */
3eb7562a 787
223ffa71 788class scoped_input_handler
3eb7562a 789{
223ffa71 790public:
3eb7562a 791
223ffa71 792 scoped_input_handler ()
c2f97536 793 : m_quit_handler (&quit_handler, default_quit_handler),
223ffa71
TT
794 m_ui (NULL)
795 {
796 target_terminal::ours ();
797 ui_register_input_event_handler (current_ui);
798 if (current_ui->prompt_state == PROMPT_BLOCKED)
799 m_ui = current_ui;
800 }
3eb7562a 801
223ffa71
TT
802 ~scoped_input_handler ()
803 {
804 if (m_ui != NULL)
805 ui_unregister_input_event_handler (m_ui);
806 }
3eb7562a 807
223ffa71 808 DISABLE_COPY_AND_ASSIGN (scoped_input_handler);
3eb7562a 809
223ffa71 810private:
3eb7562a 811
223ffa71
TT
812 /* Save and restore the terminal state. */
813 target_terminal::scoped_restore_terminal_state m_term_state;
3eb7562a 814
223ffa71 815 /* Save and restore the quit handler. */
c2f97536 816 scoped_restore_tmpl<quit_handler_ftype *> m_quit_handler;
223ffa71
TT
817
818 /* The saved UI, if non-NULL. */
819 struct ui *m_ui;
820};
3eb7562a 821
db1ff28b
JK
822\f
823
981c7f5a 824/* This function supports the query, nquery, and yquery functions.
cbdeadca 825 Ask user a y-or-n question and return 0 if answer is no, 1 if
981c7f5a
DJ
826 answer is yes, or default the answer to the specified default
827 (for yquery or nquery). DEFCHAR may be 'y' or 'n' to provide a
828 default answer, or '\0' for no default.
cbdeadca
JJ
829 CTLSTR is the control string and should end in "? ". It should
830 not say how to answer, because we do that.
831 ARGS are the arguments passed along with the CTLSTR argument to
832 printf. */
833
a0b31db1 834static int ATTRIBUTE_PRINTF (1, 0)
cbdeadca
JJ
835defaulted_query (const char *ctlstr, const char defchar, va_list args)
836{
cbdeadca
JJ
837 int retval;
838 int def_value;
839 char def_answer, not_def_answer;
a121b7c1 840 const char *y_string, *n_string;
cbdeadca
JJ
841
842 /* Set up according to which answer is the default. */
981c7f5a
DJ
843 if (defchar == '\0')
844 {
845 def_value = 1;
846 def_answer = 'Y';
847 not_def_answer = 'N';
848 y_string = "y";
849 n_string = "n";
850 }
851 else if (defchar == 'y')
cbdeadca
JJ
852 {
853 def_value = 1;
854 def_answer = 'Y';
855 not_def_answer = 'N';
856 y_string = "[y]";
857 n_string = "n";
858 }
859 else
860 {
861 def_value = 0;
862 def_answer = 'N';
863 not_def_answer = 'Y';
864 y_string = "y";
865 n_string = "[n]";
866 }
867
981c7f5a 868 /* Automatically answer the default value if the user did not want
a502cf95 869 prompts or the command was issued with the server prefix. */
e360902b 870 if (!confirm || server_command)
981c7f5a
DJ
871 return def_value;
872
873 /* If input isn't coming from the user directly, just say what
7a01c6e0 874 question we're asking, and then answer the default automatically. This
981c7f5a
DJ
875 way, important error messages don't get lost when talking to GDB
876 over a pipe. */
268a799a 877 if (current_ui->instream != current_ui->stdin_stream
26a06916
SM
878 || !input_interactive_p (current_ui)
879 /* Restrict queries to the main UI. */
880 || current_ui != main_ui)
981c7f5a 881 {
223ffa71
TT
882 target_terminal::scoped_restore_terminal_state term_state;
883 target_terminal::ours_for_output ();
981c7f5a
DJ
884 wrap_here ("");
885 vfprintf_filtered (gdb_stdout, ctlstr, args);
886
3e43a32a
MS
887 printf_filtered (_("(%s or %s) [answered %c; "
888 "input not from terminal]\n"),
981c7f5a 889 y_string, n_string, def_answer);
981c7f5a
DJ
890
891 return def_value;
892 }
893
9a4105ab 894 if (deprecated_query_hook)
cbdeadca 895 {
223ffa71
TT
896 target_terminal::scoped_restore_terminal_state term_state;
897 return deprecated_query_hook (ctlstr, args);
651ce16a 898 }
80dbc9fd 899
981c7f5a 900 /* Format the question outside of the loop, to avoid reusing args. */
e05550d7
TT
901 std::string question = string_vprintf (ctlstr, args);
902 std::string prompt
903 = string_printf (_("%s%s(%s or %s) %s"),
904 annotation_level > 1 ? "\n\032\032pre-query\n" : "",
905 question.c_str (), y_string, n_string,
906 annotation_level > 1 ? "\n\032\032query\n" : "");
981c7f5a 907
dcb07cfa
PA
908 /* Used to add duration we waited for user to respond to
909 prompt_for_continue_wait_time. */
910 using namespace std::chrono;
911 steady_clock::time_point prompt_started = steady_clock::now ();
260c0b2a 912
223ffa71 913 scoped_input_handler prepare_input;
651ce16a 914
cbdeadca
JJ
915 while (1)
916 {
588dcc3e 917 char *response, answer;
cbdeadca 918
cbdeadca 919 gdb_flush (gdb_stdout);
e05550d7 920 response = gdb_readline_wrapper (prompt.c_str ());
cbdeadca 921
588dcc3e 922 if (response == NULL) /* C-d */
cbdeadca 923 {
fa3fd85b 924 printf_filtered ("EOF [assumed %c]\n", def_answer);
cbdeadca
JJ
925 retval = def_value;
926 break;
927 }
588dcc3e
PP
928
929 answer = response[0];
930 xfree (response);
cbdeadca
JJ
931
932 if (answer >= 'a')
933 answer -= 040;
934 /* Check answer. For the non-default, the user must specify
dda83cd7 935 the non-default explicitly. */
cbdeadca
JJ
936 if (answer == not_def_answer)
937 {
938 retval = !def_value;
939 break;
940 }
981c7f5a 941 /* Otherwise, if a default was specified, the user may either
dda83cd7
SM
942 specify the required input or have it default by entering
943 nothing. */
981c7f5a 944 if (answer == def_answer
588dcc3e 945 || (defchar != '\0' && answer == '\0'))
cbdeadca
JJ
946 {
947 retval = def_value;
948 break;
949 }
950 /* Invalid entries are not defaulted and require another selection. */
a3f17187 951 printf_filtered (_("Please answer %s or %s.\n"),
cbdeadca
JJ
952 y_string, n_string);
953 }
954
260c0b2a 955 /* Add time spend in this routine to prompt_for_continue_wait_time. */
dcb07cfa 956 prompt_for_continue_wait_time += steady_clock::now () - prompt_started;
260c0b2a 957
cbdeadca 958 if (annotation_level > 1)
a3f17187 959 printf_filtered (("\n\032\032post-query\n"));
cbdeadca
JJ
960 return retval;
961}
962\f
963
964/* Ask user a y-or-n question and return 0 if answer is no, 1 if
965 answer is yes, or 0 if answer is defaulted.
966 Takes three args which are given to printf to print the question.
967 The first, a control string, should end in "? ".
968 It should not say how to answer, because we do that. */
969
970int
971nquery (const char *ctlstr, ...)
972{
973 va_list args;
899500d6 974 int ret;
cbdeadca
JJ
975
976 va_start (args, ctlstr);
899500d6 977 ret = defaulted_query (ctlstr, 'n', args);
cbdeadca 978 va_end (args);
899500d6 979 return ret;
cbdeadca
JJ
980}
981
982/* Ask user a y-or-n question and return 0 if answer is no, 1 if
983 answer is yes, or 1 if answer is defaulted.
984 Takes three args which are given to printf to print the question.
985 The first, a control string, should end in "? ".
986 It should not say how to answer, because we do that. */
987
988int
989yquery (const char *ctlstr, ...)
990{
991 va_list args;
899500d6 992 int ret;
cbdeadca
JJ
993
994 va_start (args, ctlstr);
899500d6 995 ret = defaulted_query (ctlstr, 'y', args);
cbdeadca 996 va_end (args);
899500d6 997 return ret;
cbdeadca
JJ
998}
999
981c7f5a
DJ
1000/* Ask user a y-or-n question and return 1 iff answer is yes.
1001 Takes three args which are given to printf to print the question.
1002 The first, a control string, should end in "? ".
1003 It should not say how to answer, because we do that. */
1004
1005int
1006query (const char *ctlstr, ...)
1007{
1008 va_list args;
899500d6 1009 int ret;
981c7f5a
DJ
1010
1011 va_start (args, ctlstr);
899500d6 1012 ret = defaulted_query (ctlstr, '\0', args);
981c7f5a 1013 va_end (args);
899500d6 1014 return ret;
981c7f5a
DJ
1015}
1016
6c7a06a3
TT
1017/* A helper for parse_escape that converts a host character to a
1018 target character. C is the host character. If conversion is
1019 possible, then the target character is stored in *TARGET_C and the
1020 function returns 1. Otherwise, the function returns 0. */
1021
1022static int
f870a310 1023host_char_to_target (struct gdbarch *gdbarch, int c, int *target_c)
234b45d4 1024{
6c7a06a3 1025 char the_char = c;
6c7a06a3 1026 int result = 0;
234b45d4 1027
8268c778 1028 auto_obstack host_data;
234b45d4 1029
f870a310 1030 convert_between_encodings (target_charset (gdbarch), host_charset (),
ac91cd70
PA
1031 (gdb_byte *) &the_char, 1, 1,
1032 &host_data, translit_none);
6c7a06a3
TT
1033
1034 if (obstack_object_size (&host_data) == 1)
1035 {
1036 result = 1;
1037 *target_c = *(char *) obstack_base (&host_data);
1038 }
1039
6c7a06a3 1040 return result;
234b45d4
KB
1041}
1042
c906108c
SS
1043/* Parse a C escape sequence. STRING_PTR points to a variable
1044 containing a pointer to the string to parse. That pointer
1045 should point to the character after the \. That pointer
1046 is updated past the characters we use. The value of the
1047 escape sequence is returned.
1048
1049 A negative value means the sequence \ newline was seen,
1050 which is supposed to be equivalent to nothing at all.
1051
1052 If \ is followed by a null character, we return a negative
1053 value and leave the string pointer pointing at the null character.
1054
1055 If \ is followed by 000, we return 0 and leave the string pointer
1056 after the zeros. A value of 0 does not mean end of string. */
1057
1058int
d7561cbb 1059parse_escape (struct gdbarch *gdbarch, const char **string_ptr)
c906108c 1060{
581e13c1 1061 int target_char = -2; /* Initialize to avoid GCC warnings. */
52f0bd74 1062 int c = *(*string_ptr)++;
e0627e85 1063
6c7a06a3
TT
1064 switch (c)
1065 {
8731e58e
AC
1066 case '\n':
1067 return -2;
1068 case 0:
1069 (*string_ptr)--;
1070 return 0;
8731e58e
AC
1071
1072 case '0':
1073 case '1':
1074 case '2':
1075 case '3':
1076 case '4':
1077 case '5':
1078 case '6':
1079 case '7':
1080 {
6c7a06a3 1081 int i = host_hex_value (c);
aa1ee363 1082 int count = 0;
8731e58e
AC
1083 while (++count < 3)
1084 {
5cb316ef 1085 c = (**string_ptr);
51e2cfa2 1086 if (ISDIGIT (c) && c != '8' && c != '9')
8731e58e 1087 {
5cb316ef 1088 (*string_ptr)++;
8731e58e 1089 i *= 8;
6c7a06a3 1090 i += host_hex_value (c);
8731e58e
AC
1091 }
1092 else
1093 {
8731e58e
AC
1094 break;
1095 }
1096 }
1097 return i;
1098 }
6c7a06a3
TT
1099
1100 case 'a':
1101 c = '\a';
1102 break;
1103 case 'b':
1104 c = '\b';
1105 break;
1106 case 'f':
1107 c = '\f';
1108 break;
1109 case 'n':
1110 c = '\n';
1111 break;
1112 case 'r':
1113 c = '\r';
1114 break;
1115 case 't':
1116 c = '\t';
1117 break;
1118 case 'v':
1119 c = '\v';
1120 break;
1121
1122 default:
1123 break;
1124 }
1125
f870a310 1126 if (!host_char_to_target (gdbarch, c, &target_char))
3351ea09
JB
1127 error (_("The escape sequence `\\%c' is equivalent to plain `%c',"
1128 " which has no equivalent\nin the `%s' character set."),
905b671b 1129 c, c, target_charset (gdbarch));
6c7a06a3 1130 return target_char;
c906108c
SS
1131}
1132\f
c5aa993b 1133
c906108c
SS
1134/* Number of lines per page or UINT_MAX if paging is disabled. */
1135static unsigned int lines_per_page;
920d2a44
AC
1136static void
1137show_lines_per_page (struct ui_file *file, int from_tty,
1138 struct cmd_list_element *c, const char *value)
1139{
3e43a32a
MS
1140 fprintf_filtered (file,
1141 _("Number of lines gdb thinks are in a page is %s.\n"),
920d2a44
AC
1142 value);
1143}
eb0d3137 1144
cbfbd72a 1145/* Number of chars per line or UINT_MAX if line folding is disabled. */
c906108c 1146static unsigned int chars_per_line;
920d2a44
AC
1147static void
1148show_chars_per_line (struct ui_file *file, int from_tty,
1149 struct cmd_list_element *c, const char *value)
1150{
3e43a32a
MS
1151 fprintf_filtered (file,
1152 _("Number of characters gdb thinks "
1153 "are in a line is %s.\n"),
920d2a44
AC
1154 value);
1155}
eb0d3137 1156
c906108c
SS
1157/* Current count of lines printed on this page, chars on this line. */
1158static unsigned int lines_printed, chars_printed;
1159
eb6af809
TT
1160/* True if pagination is disabled for just one command. */
1161
1162static bool pagination_disabled_for_command;
1163
c906108c
SS
1164/* Buffer and start column of buffered text, for doing smarter word-
1165 wrapping. When someone calls wrap_here(), we start buffering output
1166 that comes through fputs_filtered(). If we see a newline, we just
1167 spit it out and forget about the wrap_here(). If we see another
1168 wrap_here(), we spit it out and remember the newer one. If we see
1169 the end of the line, we spit out a newline, the indent, and then
1170 the buffered output. */
1171
c5603d50 1172static bool filter_initialized = false;
c906108c 1173
c5603d50
TT
1174/* Contains characters which are waiting to be output (they have
1175 already been counted in chars_printed). */
1176static std::string wrap_buffer;
c906108c
SS
1177
1178/* String to indent by if the wrap occurs. Must not be NULL if wrap_column
1179 is non-zero. */
d2c0eef4 1180static const char *wrap_indent;
c906108c
SS
1181
1182/* Column number on the screen where wrap_buffer begins, or 0 if wrapping
1183 is not in effect. */
1184static int wrap_column;
a0087920
TT
1185
1186/* The style applied at the time that wrap_here was called. */
1187static ui_file_style wrap_style;
c906108c 1188\f
c5aa993b 1189
26c4b26f 1190/* Initialize the number of lines per page and chars per line. */
eb0d3137 1191
c906108c 1192void
fba45db2 1193init_page_info (void)
c906108c 1194{
5da1313b
JK
1195 if (batch_flag)
1196 {
1197 lines_per_page = UINT_MAX;
1198 chars_per_line = UINT_MAX;
1199 }
1200 else
c906108c 1201#if defined(TUI)
5ecb1806 1202 if (!tui_get_command_dimension (&chars_per_line, &lines_per_page))
c906108c
SS
1203#endif
1204 {
eb0d3137 1205 int rows, cols;
c906108c 1206
ec145965
EZ
1207#if defined(__GO32__)
1208 rows = ScreenRows ();
1209 cols = ScreenCols ();
1210 lines_per_page = rows;
1211 chars_per_line = cols;
1212#else
eb0d3137
MK
1213 /* Make sure Readline has initialized its terminal settings. */
1214 rl_reset_terminal (NULL);
c906108c 1215
eb0d3137
MK
1216 /* Get the screen size from Readline. */
1217 rl_get_screen_size (&rows, &cols);
1218 lines_per_page = rows;
1219 chars_per_line = cols;
c906108c 1220
1a66331e 1221 /* Readline should have fetched the termcap entry for us.
dda83cd7
SM
1222 Only try to use tgetnum function if rl_get_screen_size
1223 did not return a useful value. */
a121b7c1 1224 if (((rows <= 0) && (tgetnum ((char *) "li") < 0))
e681cf3f
EZ
1225 /* Also disable paging if inside Emacs. $EMACS was used
1226 before Emacs v25.1, $INSIDE_EMACS is used since then. */
1227 || getenv ("EMACS") || getenv ("INSIDE_EMACS"))
eb0d3137 1228 {
1a66331e 1229 /* The number of lines per page is not mentioned in the terminal
30baf67b 1230 description or EMACS environment variable is set. This probably
1a66331e 1231 means that paging is not useful, so disable paging. */
eb0d3137
MK
1232 lines_per_page = UINT_MAX;
1233 }
c906108c 1234
c906108c 1235 /* If the output is not a terminal, don't paginate it. */
da5bd37e 1236 if (!gdb_stdout->isatty ())
c5aa993b 1237 lines_per_page = UINT_MAX;
eb0d3137 1238#endif
ec145965 1239 }
eb0d3137 1240
24b73f8e
PP
1241 /* We handle SIGWINCH ourselves. */
1242 rl_catch_sigwinch = 0;
1243
eb0d3137 1244 set_screen_size ();
c5aa993b 1245 set_width ();
c906108c
SS
1246}
1247
2437fd32
GB
1248/* Return nonzero if filtered printing is initialized. */
1249int
1250filtered_printing_initialized (void)
1251{
c5603d50 1252 return filter_initialized;
2437fd32
GB
1253}
1254
b95de2b7
TT
1255set_batch_flag_and_restore_page_info::set_batch_flag_and_restore_page_info ()
1256 : m_save_lines_per_page (lines_per_page),
1257 m_save_chars_per_line (chars_per_line),
1258 m_save_batch_flag (batch_flag)
5da1313b 1259{
b95de2b7
TT
1260 batch_flag = 1;
1261 init_page_info ();
5da1313b
JK
1262}
1263
b95de2b7 1264set_batch_flag_and_restore_page_info::~set_batch_flag_and_restore_page_info ()
5da1313b 1265{
b95de2b7
TT
1266 batch_flag = m_save_batch_flag;
1267 chars_per_line = m_save_chars_per_line;
1268 lines_per_page = m_save_lines_per_page;
5da1313b 1269
b95de2b7
TT
1270 set_screen_size ();
1271 set_width ();
5da1313b
JK
1272}
1273
eb0d3137
MK
1274/* Set the screen size based on LINES_PER_PAGE and CHARS_PER_LINE. */
1275
1276static void
1277set_screen_size (void)
1278{
1279 int rows = lines_per_page;
1280 int cols = chars_per_line;
1281
23031e31
SJ
1282 /* If we get 0 or negative ROWS or COLS, treat as "infinite" size.
1283 A negative number can be seen here with the "set width/height"
1284 commands and either:
eb0d3137 1285
23031e31 1286 - the user specified "unlimited", which maps to UINT_MAX, or
85102364 1287 - the user specified some number between INT_MAX and UINT_MAX.
23031e31
SJ
1288
1289 Cap "infinity" to approximately sqrt(INT_MAX) so that we don't
1290 overflow in rl_set_screen_size, which multiplies rows and columns
1291 to compute the number of characters on the screen. */
1292
1293 const int sqrt_int_max = INT_MAX >> (sizeof (int) * 8 / 2);
1294
1295 if (rows <= 0 || rows > sqrt_int_max)
8ed25214
PA
1296 {
1297 rows = sqrt_int_max;
1298 lines_per_page = UINT_MAX;
1299 }
23031e31
SJ
1300
1301 if (cols <= 0 || cols > sqrt_int_max)
8ed25214
PA
1302 {
1303 cols = sqrt_int_max;
1304 chars_per_line = UINT_MAX;
1305 }
eb0d3137
MK
1306
1307 /* Update Readline's idea of the terminal size. */
1308 rl_set_screen_size (rows, cols);
1309}
1310
c5603d50 1311/* Reinitialize WRAP_BUFFER. */
eb0d3137 1312
c906108c 1313static void
fba45db2 1314set_width (void)
c906108c
SS
1315{
1316 if (chars_per_line == 0)
c5aa993b 1317 init_page_info ();
c906108c 1318
c5603d50
TT
1319 wrap_buffer.clear ();
1320 filter_initialized = true;
c906108c
SS
1321}
1322
c5aa993b 1323static void
eb4c3f4a 1324set_width_command (const char *args, int from_tty, struct cmd_list_element *c)
c906108c 1325{
eb0d3137 1326 set_screen_size ();
c906108c
SS
1327 set_width ();
1328}
1329
eb0d3137 1330static void
eb4c3f4a 1331set_height_command (const char *args, int from_tty, struct cmd_list_element *c)
eb0d3137
MK
1332{
1333 set_screen_size ();
1334}
1335
d6e5e7f7
PP
1336/* See utils.h. */
1337
1338void
1339set_screen_width_and_height (int width, int height)
1340{
1341 lines_per_page = height;
1342 chars_per_line = width;
1343
1344 set_screen_size ();
1345 set_width ();
1346}
1347
cbe56571
TT
1348/* The currently applied style. */
1349
1350static ui_file_style applied_style;
1351
a0087920
TT
1352/* Emit an ANSI style escape for STYLE. If STREAM is nullptr, emit to
1353 the wrap buffer; otherwise emit to STREAM. */
cbe56571
TT
1354
1355static void
a0087920
TT
1356emit_style_escape (const ui_file_style &style,
1357 struct ui_file *stream = nullptr)
cbe56571 1358{
e7b43072
AB
1359 if (applied_style != style)
1360 {
1361 applied_style = style;
cbe56571 1362
e7b43072
AB
1363 if (stream == nullptr)
1364 wrap_buffer.append (style.to_ansi ());
1365 else
1366 stream->puts (style.to_ansi ().c_str ());
1367 }
cbe56571
TT
1368}
1369
ef1dfa36
TT
1370/* Set the current output style. This will affect future uses of the
1371 _filtered output functions. */
1372
1373static void
1374set_output_style (struct ui_file *stream, const ui_file_style &style)
1375{
8a522c6c 1376 if (!stream->can_emit_style_escape ())
cbe56571
TT
1377 return;
1378
046bebe1 1379 /* Note that we may not pass STREAM here, when we want to emit to
a0087920 1380 the wrap buffer, not directly to STREAM. */
046bebe1
TT
1381 if (stream == gdb_stdout)
1382 stream = nullptr;
1383 emit_style_escape (style, stream);
cbe56571
TT
1384}
1385
ef1dfa36
TT
1386/* See utils.h. */
1387
1388void
1389reset_terminal_style (struct ui_file *stream)
1390{
8a522c6c 1391 if (stream->can_emit_style_escape ())
ef1dfa36
TT
1392 {
1393 /* Force the setting, regardless of what we think the setting
1394 might already be. */
a0087920
TT
1395 applied_style = ui_file_style ();
1396 wrap_buffer.append (applied_style.to_ansi ());
ef1dfa36
TT
1397 }
1398}
1399
c906108c 1400/* Wait, so the user can read what's on the screen. Prompt the user
720d2e96
PA
1401 to continue by pressing RETURN. 'q' is also provided because
1402 telling users what to do in the prompt is more user-friendly than
1403 expecting them to think of Ctrl-C/SIGINT. */
c906108c
SS
1404
1405static void
fba45db2 1406prompt_for_continue (void)
c906108c 1407{
c906108c 1408 char cont_prompt[120];
260c0b2a
DE
1409 /* Used to add duration we waited for user to respond to
1410 prompt_for_continue_wait_time. */
dcb07cfa
PA
1411 using namespace std::chrono;
1412 steady_clock::time_point prompt_started = steady_clock::now ();
eb6af809 1413 bool disable_pagination = pagination_disabled_for_command;
c906108c 1414
cbe56571 1415 /* Clear the current styling. */
8a522c6c 1416 if (gdb_stdout->can_emit_style_escape ())
a0087920 1417 emit_style_escape (ui_file_style (), gdb_stdout);
cbe56571 1418
c906108c 1419 if (annotation_level > 1)
a3f17187 1420 printf_unfiltered (("\n\032\032pre-prompt-for-continue\n"));
c906108c
SS
1421
1422 strcpy (cont_prompt,
eb6af809
TT
1423 "--Type <RET> for more, q to quit, "
1424 "c to continue without paging--");
c906108c
SS
1425 if (annotation_level > 1)
1426 strcat (cont_prompt, "\n\032\032prompt-for-continue\n");
1427
720d2e96
PA
1428 /* We must do this *before* we call gdb_readline_wrapper, else it
1429 will eventually call us -- thinking that we're trying to print
1430 beyond the end of the screen. */
c906108c
SS
1431 reinitialize_more_filter ();
1432
223ffa71 1433 scoped_input_handler prepare_input;
82584158 1434
720d2e96
PA
1435 /* Call gdb_readline_wrapper, not readline, in order to keep an
1436 event loop running. */
5aa89276 1437 gdb::unique_xmalloc_ptr<char> ignore (gdb_readline_wrapper (cont_prompt));
c906108c 1438
260c0b2a 1439 /* Add time spend in this routine to prompt_for_continue_wait_time. */
dcb07cfa 1440 prompt_for_continue_wait_time += steady_clock::now () - prompt_started;
260c0b2a 1441
c906108c 1442 if (annotation_level > 1)
a3f17187 1443 printf_unfiltered (("\n\032\032post-prompt-for-continue\n"));
c906108c 1444
80dbc9fd 1445 if (ignore != NULL)
c906108c 1446 {
5aa89276 1447 char *p = ignore.get ();
5d502164 1448
c906108c
SS
1449 while (*p == ' ' || *p == '\t')
1450 ++p;
1451 if (p[0] == 'q')
1690b616
SL
1452 /* Do not call quit here; there is no possibility of SIGINT. */
1453 throw_quit ("Quit");
eb6af809
TT
1454 if (p[0] == 'c')
1455 disable_pagination = true;
c906108c 1456 }
c906108c
SS
1457
1458 /* Now we have to do this again, so that GDB will know that it doesn't
1459 need to save the ---Type <return>--- line at the top of the screen. */
1460 reinitialize_more_filter ();
eb6af809 1461 pagination_disabled_for_command = disable_pagination;
c906108c 1462
581e13c1 1463 dont_repeat (); /* Forget prev cmd -- CR won't repeat it. */
c906108c
SS
1464}
1465
26c4b26f 1466/* Initialize timer to keep track of how long we waited for the user. */
bd712aed
DE
1467
1468void
1469reset_prompt_for_continue_wait_time (void)
1470{
dcb07cfa 1471 using namespace std::chrono;
bd712aed 1472
dcb07cfa 1473 prompt_for_continue_wait_time = steady_clock::duration::zero ();
bd712aed
DE
1474}
1475
1476/* Fetch the cumulative time spent in prompt_for_continue. */
1477
dcb07cfa
PA
1478std::chrono::steady_clock::duration
1479get_prompt_for_continue_wait_time ()
bd712aed
DE
1480{
1481 return prompt_for_continue_wait_time;
1482}
1483
c906108c
SS
1484/* Reinitialize filter; ie. tell it to reset to original values. */
1485
1486void
fba45db2 1487reinitialize_more_filter (void)
c906108c
SS
1488{
1489 lines_printed = 0;
1490 chars_printed = 0;
eb6af809 1491 pagination_disabled_for_command = false;
c906108c
SS
1492}
1493
c5603d50
TT
1494/* Flush the wrap buffer to STREAM, if necessary. */
1495
1496static void
1497flush_wrap_buffer (struct ui_file *stream)
1498{
a0087920 1499 if (stream == gdb_stdout && !wrap_buffer.empty ())
c5603d50 1500 {
da5bd37e 1501 stream->puts (wrap_buffer.c_str ());
c5603d50
TT
1502 wrap_buffer.clear ();
1503 }
1504}
1505
faa17681
IB
1506/* See utils.h. */
1507
1508void
1509gdb_flush (struct ui_file *stream)
1510{
1511 flush_wrap_buffer (stream);
da5bd37e 1512 stream->flush ();
faa17681
IB
1513}
1514
2f228731
TT
1515/* See utils.h. */
1516
1517int
1518get_chars_per_line ()
1519{
1520 return chars_per_line;
1521}
1522
c906108c 1523/* Indicate that if the next sequence of characters overflows the line,
581e13c1 1524 a newline should be inserted here rather than when it hits the end.
c906108c
SS
1525 If INDENT is non-null, it is a string to be printed to indent the
1526 wrapped part on the next line. INDENT must remain accessible until
1527 the next call to wrap_here() or until a newline is printed through
1528 fputs_filtered().
1529
1530 If the line is already overfull, we immediately print a newline and
1531 the indentation, and disable further wrapping.
1532
1533 If we don't know the width of lines, but we know the page height,
1534 we must not wrap words, but should still keep track of newlines
1535 that were explicitly printed.
1536
1537 INDENT should not contain tabs, as that will mess up the char count
1538 on the next line. FIXME.
1539
1540 This routine is guaranteed to force out any output which has been
1541 squirreled away in the wrap_buffer, so wrap_here ((char *)0) can be
1542 used to force out output from the wrap_buffer. */
1543
1544void
d2c0eef4 1545wrap_here (const char *indent)
c906108c 1546{
581e13c1 1547 /* This should have been allocated, but be paranoid anyway. */
e2ff18a0 1548 gdb_assert (filter_initialized);
c906108c 1549
c5603d50 1550 flush_wrap_buffer (gdb_stdout);
3e43a32a 1551 if (chars_per_line == UINT_MAX) /* No line overflow checking. */
c906108c
SS
1552 {
1553 wrap_column = 0;
1554 }
1555 else if (chars_printed >= chars_per_line)
1556 {
1557 puts_filtered ("\n");
1558 if (indent != NULL)
1559 puts_filtered (indent);
1560 wrap_column = 0;
1561 }
1562 else
1563 {
1564 wrap_column = chars_printed;
1565 if (indent == NULL)
1566 wrap_indent = "";
1567 else
1568 wrap_indent = indent;
a0087920 1569 wrap_style = applied_style;
c906108c
SS
1570 }
1571}
1572
4a351cef 1573/* Print input string to gdb_stdout, filtered, with wrap,
581e13c1 1574 arranging strings in columns of n chars. String can be
4a351cef
AF
1575 right or left justified in the column. Never prints
1576 trailing spaces. String should never be longer than
1577 width. FIXME: this could be useful for the EXAMINE
581e13c1 1578 command, which currently doesn't tabulate very well. */
4a351cef
AF
1579
1580void
1581puts_filtered_tabular (char *string, int width, int right)
1582{
1583 int spaces = 0;
1584 int stringlen;
1585 char *spacebuf;
1586
1587 gdb_assert (chars_per_line > 0);
1588 if (chars_per_line == UINT_MAX)
1589 {
1590 fputs_filtered (string, gdb_stdout);
1591 fputs_filtered ("\n", gdb_stdout);
1592 return;
1593 }
1594
1595 if (((chars_printed - 1) / width + 2) * width >= chars_per_line)
1596 fputs_filtered ("\n", gdb_stdout);
1597
1598 if (width >= chars_per_line)
1599 width = chars_per_line - 1;
1600
1601 stringlen = strlen (string);
1602
1603 if (chars_printed > 0)
1604 spaces = width - (chars_printed - 1) % width - 1;
1605 if (right)
1606 spaces += width - stringlen;
1607
224c3ddb 1608 spacebuf = (char *) alloca (spaces + 1);
4a351cef
AF
1609 spacebuf[spaces] = '\0';
1610 while (spaces--)
1611 spacebuf[spaces] = ' ';
1612
1613 fputs_filtered (spacebuf, gdb_stdout);
1614 fputs_filtered (string, gdb_stdout);
1615}
1616
1617
c906108c 1618/* Ensure that whatever gets printed next, using the filtered output
581e13c1 1619 commands, starts at the beginning of the line. I.e. if there is
c906108c 1620 any pending output for the current line, flush it and start a new
581e13c1 1621 line. Otherwise do nothing. */
c906108c
SS
1622
1623void
fba45db2 1624begin_line (void)
c906108c
SS
1625{
1626 if (chars_printed > 0)
1627 {
1628 puts_filtered ("\n");
1629 }
1630}
1631
ac9a91a7 1632
c906108c
SS
1633/* Like fputs but if FILTER is true, pause after every screenful.
1634
1635 Regardless of FILTER can wrap at points other than the final
1636 character of a line.
1637
1638 Unlike fputs, fputs_maybe_filtered does not return a value.
1639 It is OK for LINEBUFFER to be NULL, in which case just don't print
1640 anything.
1641
1642 Note that a longjmp to top level may occur in this routine (only if
1643 FILTER is true) (since prompt_for_continue may do so) so this
1644 routine should not be called when cleanups are not in place. */
1645
1646static void
fba45db2
KB
1647fputs_maybe_filtered (const char *linebuffer, struct ui_file *stream,
1648 int filter)
c906108c
SS
1649{
1650 const char *lineptr;
1651
1652 if (linebuffer == 0)
1653 return;
1654
1655 /* Don't do any filtering if it is disabled. */
84b33497 1656 if (!stream->can_page ()
93f3b8ee 1657 || stream != gdb_stdout
b2e7f004 1658 || !pagination_enabled
eb6af809 1659 || pagination_disabled_for_command
b2e7f004 1660 || batch_flag
390a8aca 1661 || (lines_per_page == UINT_MAX && chars_per_line == UINT_MAX)
58dadb1b 1662 || top_level_interpreter () == NULL
29f94340 1663 || top_level_interpreter ()->interp_ui_out ()->is_mi_like_p ())
c906108c 1664 {
c5603d50 1665 flush_wrap_buffer (stream);
da5bd37e 1666 stream->puts (linebuffer);
c906108c
SS
1667 return;
1668 }
1669
a0087920
TT
1670 auto buffer_clearer
1671 = make_scope_exit ([&] ()
1672 {
1673 wrap_buffer.clear ();
1674 wrap_column = 0;
1675 wrap_indent = "";
1676 });
1677
c906108c
SS
1678 /* Go through and output each character. Show line extension
1679 when this is necessary; prompt user for new page when this is
1680 necessary. */
c5aa993b 1681
c906108c
SS
1682 lineptr = linebuffer;
1683 while (*lineptr)
1684 {
eb6af809
TT
1685 /* Possible new page. Note that PAGINATION_DISABLED_FOR_COMMAND
1686 might be set during this loop, so we must continue to check
1687 it here. */
1688 if (filter && (lines_printed >= lines_per_page - 1)
1689 && !pagination_disabled_for_command)
c906108c
SS
1690 prompt_for_continue ();
1691
1692 while (*lineptr && *lineptr != '\n')
1693 {
a0087920
TT
1694 int skip_bytes;
1695
c906108c
SS
1696 /* Print a single line. */
1697 if (*lineptr == '\t')
1698 {
c5603d50 1699 wrap_buffer.push_back ('\t');
c906108c 1700 /* Shifting right by 3 produces the number of tab stops
dda83cd7
SM
1701 we have already passed, and then adding one and
1702 shifting left 3 advances to the next tab stop. */
c906108c
SS
1703 chars_printed = ((chars_printed >> 3) + 1) << 3;
1704 lineptr++;
1705 }
a0087920
TT
1706 else if (*lineptr == '\033'
1707 && skip_ansi_escape (lineptr, &skip_bytes))
1708 {
1709 wrap_buffer.append (lineptr, skip_bytes);
1710 /* Note that we don't consider this a character, so we
1711 don't increment chars_printed here. */
1712 lineptr += skip_bytes;
1713 }
2f228731
TT
1714 else if (*lineptr == '\r')
1715 {
1716 wrap_buffer.push_back (*lineptr);
1717 chars_printed = 0;
1718 lineptr++;
1719 }
c906108c
SS
1720 else
1721 {
c5603d50 1722 wrap_buffer.push_back (*lineptr);
c906108c
SS
1723 chars_printed++;
1724 lineptr++;
1725 }
c5aa993b 1726
c906108c
SS
1727 if (chars_printed >= chars_per_line)
1728 {
1729 unsigned int save_chars = chars_printed;
1730
99f20f08
TT
1731 /* If we change the style, below, we'll want to reset it
1732 before continuing to print. If there is no wrap
1733 column, then we'll only reset the style if the pager
1734 prompt is given; and to avoid emitting style
1735 sequences in the middle of a run of text, we track
1736 this as well. */
e7b43072 1737 ui_file_style save_style = applied_style;
99f20f08
TT
1738 bool did_paginate = false;
1739
c906108c
SS
1740 chars_printed = 0;
1741 lines_printed++;
c906108c 1742 if (wrap_column)
cbe56571 1743 {
e7b43072
AB
1744 /* We are about to insert a newline at an historic
1745 location in the WRAP_BUFFER. Before we do we want to
1746 restore the default style. To know if we actually
1747 need to insert an escape sequence we must restore the
1748 current applied style to how it was at the WRAP_COLUMN
1749 location. */
1750 applied_style = wrap_style;
8a522c6c 1751 if (stream->can_emit_style_escape ())
a0087920
TT
1752 emit_style_escape (ui_file_style (), stream);
1753 /* If we aren't actually wrapping, don't output
1754 newline -- if chars_per_line is right, we
1755 probably just overflowed anyway; if it's wrong,
1756 let us keep going. */
3f702acd
SDJ
1757 /* XXX: The ideal thing would be to call
1758 'stream->putc' here, but we can't because it
1759 currently calls 'fputc_unfiltered', which ends up
1760 calling us, which generates an infinite
1761 recursion. */
1762 stream->puts ("\n");
cbe56571 1763 }
a0087920 1764 else
e7b43072 1765 flush_wrap_buffer (stream);
c906108c 1766
eb6af809
TT
1767 /* Possible new page. Note that
1768 PAGINATION_DISABLED_FOR_COMMAND might be set during
1769 this loop, so we must continue to check it here. */
1770 if (lines_printed >= lines_per_page - 1
1771 && !pagination_disabled_for_command)
99f20f08
TT
1772 {
1773 prompt_for_continue ();
1774 did_paginate = true;
1775 }
c906108c 1776
581e13c1 1777 /* Now output indentation and wrapped string. */
c906108c
SS
1778 if (wrap_column)
1779 {
da5bd37e 1780 stream->puts (wrap_indent);
e7b43072
AB
1781
1782 /* Having finished inserting the wrapping we should
1783 restore the style as it was at the WRAP_COLUMN. */
8a522c6c 1784 if (stream->can_emit_style_escape ())
e7b43072
AB
1785 emit_style_escape (wrap_style, stream);
1786
1787 /* The WRAP_BUFFER will still contain content, and that
1788 content might set some alternative style. Restore
1789 APPLIED_STYLE as it was before we started wrapping,
1790 this reflects the current style for the last character
1791 in WRAP_BUFFER. */
1792 applied_style = save_style;
1793
c906108c
SS
1794 /* FIXME, this strlen is what prevents wrap_indent from
1795 containing tabs. However, if we recurse to print it
1796 and count its chars, we risk trouble if wrap_indent is
581e13c1 1797 longer than (the user settable) chars_per_line.
c906108c
SS
1798 Note also that this can set chars_printed > chars_per_line
1799 if we are printing a long string. */
1800 chars_printed = strlen (wrap_indent)
c5aa993b 1801 + (save_chars - wrap_column);
c5aa993b
JM
1802 wrap_column = 0; /* And disable fancy wrap */
1803 }
ca1df239 1804 else if (did_paginate && stream->can_emit_style_escape ())
99f20f08 1805 emit_style_escape (save_style, stream);
c906108c
SS
1806 }
1807 }
1808
1809 if (*lineptr == '\n')
1810 {
1811 chars_printed = 0;
3e43a32a
MS
1812 wrap_here ((char *) 0); /* Spit out chars, cancel
1813 further wraps. */
c906108c 1814 lines_printed++;
3f702acd
SDJ
1815 /* XXX: The ideal thing would be to call
1816 'stream->putc' here, but we can't because it
1817 currently calls 'fputc_unfiltered', which ends up
1818 calling us, which generates an infinite
1819 recursion. */
1820 stream->puts ("\n");
c906108c
SS
1821 lineptr++;
1822 }
1823 }
a0087920
TT
1824
1825 buffer_clearer.release ();
c906108c
SS
1826}
1827
1828void
fba45db2 1829fputs_filtered (const char *linebuffer, struct ui_file *stream)
c906108c
SS
1830{
1831 fputs_maybe_filtered (linebuffer, stream, 1);
1832}
1833
dfcb27e4
IB
1834void
1835fputs_unfiltered (const char *linebuffer, struct ui_file *stream)
1836{
1837 fputs_maybe_filtered (linebuffer, stream, 0);
1838}
1839
cbe56571
TT
1840/* See utils.h. */
1841
1842void
1843fputs_styled (const char *linebuffer, const ui_file_style &style,
1844 struct ui_file *stream)
1845{
e7b43072
AB
1846 set_output_style (stream, style);
1847 fputs_maybe_filtered (linebuffer, stream, 1);
1848 set_output_style (stream, ui_file_style ());
cbe56571
TT
1849}
1850
9303eb2f
PW
1851/* See utils.h. */
1852
2a3c1174
PA
1853void
1854fputs_styled_unfiltered (const char *linebuffer, const ui_file_style &style,
1855 struct ui_file *stream)
1856{
e7b43072
AB
1857 set_output_style (stream, style);
1858 fputs_maybe_filtered (linebuffer, stream, 0);
1859 set_output_style (stream, ui_file_style ());
2a3c1174
PA
1860}
1861
1862/* See utils.h. */
1863
9303eb2f
PW
1864void
1865fputs_highlighted (const char *str, const compiled_regex &highlight,
1866 struct ui_file *stream)
1867{
1868 regmatch_t pmatch;
1869
1870 while (*str && highlight.exec (str, 1, &pmatch, 0) == 0)
1871 {
1872 size_t n_highlight = pmatch.rm_eo - pmatch.rm_so;
1873
1874 /* Output the part before pmatch with current style. */
1875 while (pmatch.rm_so > 0)
1876 {
1877 fputc_filtered (*str, stream);
1878 pmatch.rm_so--;
1879 str++;
1880 }
1881
1882 /* Output pmatch with the highlight style. */
1883 set_output_style (stream, highlight_style.style ());
1884 while (n_highlight > 0)
1885 {
1886 fputc_filtered (*str, stream);
1887 n_highlight--;
1888 str++;
1889 }
1890 set_output_style (stream, ui_file_style ());
1891 }
1892
1893 /* Output the trailing part of STR not matching HIGHLIGHT. */
1894 if (*str)
1895 fputs_filtered (str, stream);
1896}
1897
c906108c 1898int
fba45db2 1899putchar_unfiltered (int c)
c906108c 1900{
3f702acd 1901 return fputc_unfiltered (c, gdb_stdout);
c906108c
SS
1902}
1903
d1f4cff8
AC
1904/* Write character C to gdb_stdout using GDB's paging mechanism and return C.
1905 May return nonlocally. */
1906
1907int
1908putchar_filtered (int c)
1909{
1910 return fputc_filtered (c, gdb_stdout);
1911}
1912
c906108c 1913int
fba45db2 1914fputc_unfiltered (int c, struct ui_file *stream)
c906108c 1915{
3f702acd 1916 char buf[2];
e0627e85 1917
3f702acd
SDJ
1918 buf[0] = c;
1919 buf[1] = 0;
1920 fputs_unfiltered (buf, stream);
c906108c
SS
1921 return c;
1922}
1923
1924int
fba45db2 1925fputc_filtered (int c, struct ui_file *stream)
c906108c
SS
1926{
1927 char buf[2];
1928
1929 buf[0] = c;
1930 buf[1] = 0;
1931 fputs_filtered (buf, stream);
1932 return c;
1933}
1934
c906108c
SS
1935/* Print a variable number of ARGS using format FORMAT. If this
1936 information is going to put the amount written (since the last call
1937 to REINITIALIZE_MORE_FILTER or the last page break) over the page size,
85102364 1938 call prompt_for_continue to get the users permission to continue.
c906108c
SS
1939
1940 Unlike fprintf, this function does not return a value.
1941
1942 We implement three variants, vfprintf (takes a vararg list and stream),
1943 fprintf (takes a stream to write on), and printf (the usual).
1944
2a3c1174
PA
1945 Note also that this may throw a quit (since prompt_for_continue may
1946 do so). */
c906108c
SS
1947
1948static void
fba45db2 1949vfprintf_maybe_filtered (struct ui_file *stream, const char *format,
ad15549d 1950 va_list args, bool filter)
c906108c 1951{
ad15549d
JB
1952 ui_out_flags flags = disallow_ui_out_field;
1953 if (!filter)
1954 flags |= unfiltered_output;
1955 cli_ui_out (stream, flags).vmessage (applied_style, format, args);
c906108c
SS
1956}
1957
1958
1959void
fba45db2 1960vfprintf_filtered (struct ui_file *stream, const char *format, va_list args)
c906108c 1961{
ad15549d 1962 vfprintf_maybe_filtered (stream, format, args, true);
c906108c
SS
1963}
1964
1965void
fba45db2 1966vfprintf_unfiltered (struct ui_file *stream, const char *format, va_list args)
c906108c 1967{
75feb17d
DJ
1968 if (debug_timestamp && stream == gdb_stdlog)
1969 {
335709bc 1970 static bool needs_timestamp = true;
75feb17d 1971
335709bc
SM
1972 /* Print timestamp if previous print ended with a \n. */
1973 if (needs_timestamp)
1974 {
1975 using namespace std::chrono;
1976
1977 steady_clock::time_point now = steady_clock::now ();
1978 seconds s = duration_cast<seconds> (now.time_since_epoch ());
1979 microseconds us = duration_cast<microseconds> (now.time_since_epoch () - s);
1980 std::string timestamp = string_printf ("%ld.%06ld ",
1981 (long) s.count (),
1982 (long) us.count ());
1983 fputs_unfiltered (timestamp.c_str (), stream);
1984 }
1985
1986 /* Print the message. */
2a3c1174
PA
1987 string_file sfile;
1988 cli_ui_out (&sfile, 0).vmessage (ui_file_style (), format, args);
1989 std::string linebuffer = std::move (sfile.string ());
335709bc 1990 fputs_unfiltered (linebuffer.c_str (), stream);
2a3c1174 1991
335709bc
SM
1992 size_t len = linebuffer.length ();
1993 needs_timestamp = (len > 0 && linebuffer[len - 1] == '\n');
75feb17d 1994 }
6e5abd65 1995 else
ad15549d 1996 vfprintf_maybe_filtered (stream, format, args, false);
c906108c
SS
1997}
1998
1999void
fba45db2 2000vprintf_filtered (const char *format, va_list args)
c906108c 2001{
ad15549d 2002 vfprintf_filtered (gdb_stdout, format, args);
c906108c
SS
2003}
2004
2005void
fba45db2 2006vprintf_unfiltered (const char *format, va_list args)
c906108c
SS
2007{
2008 vfprintf_unfiltered (gdb_stdout, format, args);
2009}
2010
c906108c 2011void
8731e58e 2012fprintf_filtered (struct ui_file *stream, const char *format, ...)
c906108c
SS
2013{
2014 va_list args;
e0627e85 2015
c906108c 2016 va_start (args, format);
c906108c
SS
2017 vfprintf_filtered (stream, format, args);
2018 va_end (args);
2019}
2020
c906108c 2021void
8731e58e 2022fprintf_unfiltered (struct ui_file *stream, const char *format, ...)
c906108c
SS
2023{
2024 va_list args;
e0627e85 2025
c906108c 2026 va_start (args, format);
c906108c
SS
2027 vfprintf_unfiltered (stream, format, args);
2028 va_end (args);
2029}
2030
cbe56571
TT
2031/* See utils.h. */
2032
2033void
2034fprintf_styled (struct ui_file *stream, const ui_file_style &style,
2035 const char *format, ...)
2036{
2037 va_list args;
2038
2039 set_output_style (stream, style);
2040 va_start (args, format);
2041 vfprintf_filtered (stream, format, args);
2042 va_end (args);
2043 set_output_style (stream, ui_file_style ());
2044}
2045
2a3c1174
PA
2046/* See utils.h. */
2047
2048void
2049vfprintf_styled (struct ui_file *stream, const ui_file_style &style,
2050 const char *format, va_list args)
2051{
2052 set_output_style (stream, style);
2053 vfprintf_filtered (stream, format, args);
2054 set_output_style (stream, ui_file_style ());
2055}
2056
2057/* See utils.h. */
2058
2059void
2060vfprintf_styled_no_gdbfmt (struct ui_file *stream, const ui_file_style &style,
2061 bool filter, const char *format, va_list args)
2062{
2063 std::string str = string_vprintf (format, args);
2064 if (!str.empty ())
2065 {
e7b43072 2066 set_output_style (stream, style);
2a3c1174 2067 fputs_maybe_filtered (str.c_str (), stream, filter);
e7b43072 2068 set_output_style (stream, ui_file_style ());
2a3c1174
PA
2069 }
2070}
c906108c 2071
c906108c 2072void
8731e58e 2073printf_filtered (const char *format, ...)
c906108c
SS
2074{
2075 va_list args;
e0627e85 2076
c906108c 2077 va_start (args, format);
c906108c
SS
2078 vfprintf_filtered (gdb_stdout, format, args);
2079 va_end (args);
2080}
2081
2082
c906108c 2083void
8731e58e 2084printf_unfiltered (const char *format, ...)
c906108c
SS
2085{
2086 va_list args;
e0627e85 2087
c906108c 2088 va_start (args, format);
c906108c
SS
2089 vfprintf_unfiltered (gdb_stdout, format, args);
2090 va_end (args);
2091}
2092
c906108c
SS
2093/* Easy -- but watch out!
2094
2095 This routine is *not* a replacement for puts()! puts() appends a newline.
2096 This one doesn't, and had better not! */
2097
2098void
fba45db2 2099puts_filtered (const char *string)
c906108c
SS
2100{
2101 fputs_filtered (string, gdb_stdout);
2102}
2103
2104void
fba45db2 2105puts_unfiltered (const char *string)
c906108c
SS
2106{
2107 fputs_unfiltered (string, gdb_stdout);
2108}
2109
2110/* Return a pointer to N spaces and a null. The pointer is good
2111 until the next call to here. */
dde238e0 2112const char *
fba45db2 2113n_spaces (int n)
c906108c 2114{
392a587b
JM
2115 char *t;
2116 static char *spaces = 0;
2117 static int max_spaces = -1;
c906108c
SS
2118
2119 if (n > max_spaces)
2120 {
84d53fa9 2121 xfree (spaces);
c5aa993b
JM
2122 spaces = (char *) xmalloc (n + 1);
2123 for (t = spaces + n; t != spaces;)
c906108c
SS
2124 *--t = ' ';
2125 spaces[n] = '\0';
2126 max_spaces = n;
2127 }
2128
2129 return spaces + max_spaces - n;
2130}
2131
2132/* Print N spaces. */
2133void
fba45db2 2134print_spaces_filtered (int n, struct ui_file *stream)
c906108c
SS
2135{
2136 fputs_filtered (n_spaces (n), stream);
2137}
2138\f
4a351cef 2139/* C++/ObjC demangler stuff. */
c906108c 2140
389e51db
AC
2141/* fprintf_symbol_filtered attempts to demangle NAME, a symbol in language
2142 LANG, using demangling args ARG_MODE, and print it filtered to STREAM.
2143 If the name is not mangled, or the language for the name is unknown, or
581e13c1 2144 demangling is off, the name is printed in its "raw" form. */
c906108c
SS
2145
2146void
0d5cff50 2147fprintf_symbol_filtered (struct ui_file *stream, const char *name,
8731e58e 2148 enum language lang, int arg_mode)
c906108c 2149{
c906108c
SS
2150 if (name != NULL)
2151 {
2152 /* If user wants to see raw output, no problem. */
2153 if (!demangle)
2154 {
2155 fputs_filtered (name, stream);
2156 }
2157 else
2158 {
3456e70c
TT
2159 gdb::unique_xmalloc_ptr<char> demangled
2160 = language_demangle (language_def (lang), name, arg_mode);
2161 fputs_filtered (demangled ? demangled.get () : name, stream);
c906108c
SS
2162 }
2163 }
2164}
2165
0662b6a7
PA
2166/* True if CH is a character that can be part of a symbol name. I.e.,
2167 either a number, a letter, or a '_'. */
2168
2169static bool
2170valid_identifier_name_char (int ch)
2171{
51e2cfa2 2172 return (ISALNUM (ch) || ch == '_');
0662b6a7
PA
2173}
2174
2175/* Skip to end of token, or to END, whatever comes first. Input is
2176 assumed to be a C++ operator name. */
2177
2178static const char *
2179cp_skip_operator_token (const char *token, const char *end)
2180{
2181 const char *p = token;
51e2cfa2 2182 while (p != end && !ISSPACE (*p) && *p != '(')
0662b6a7
PA
2183 {
2184 if (valid_identifier_name_char (*p))
2185 {
2186 while (p != end && valid_identifier_name_char (*p))
2187 p++;
2188 return p;
2189 }
2190 else
2191 {
2192 /* Note, ordered such that among ops that share a prefix,
2193 longer comes first. This is so that the loop below can
2194 bail on first match. */
2195 static const char *ops[] =
2196 {
2197 "[",
2198 "]",
2199 "~",
2200 ",",
2201 "-=", "--", "->", "-",
2202 "+=", "++", "+",
2203 "*=", "*",
2204 "/=", "/",
2205 "%=", "%",
2206 "|=", "||", "|",
2207 "&=", "&&", "&",
2208 "^=", "^",
2209 "!=", "!",
2210 "<<=", "<=", "<<", "<",
2211 ">>=", ">=", ">>", ">",
2212 "==", "=",
2213 };
2214
2215 for (const char *op : ops)
2216 {
2217 size_t oplen = strlen (op);
2218 size_t lencmp = std::min<size_t> (oplen, end - p);
2219
2220 if (strncmp (p, op, lencmp) == 0)
2221 return p + lencmp;
2222 }
2223 /* Some unidentified character. Return it. */
2224 return p + 1;
2225 }
2226 }
2227
2228 return p;
2229}
2230
2231/* Advance STRING1/STRING2 past whitespace. */
2232
2233static void
2234skip_ws (const char *&string1, const char *&string2, const char *end_str2)
2235{
51e2cfa2 2236 while (ISSPACE (*string1))
0662b6a7 2237 string1++;
51e2cfa2 2238 while (string2 < end_str2 && ISSPACE (*string2))
0662b6a7
PA
2239 string2++;
2240}
2241
2242/* True if STRING points at the start of a C++ operator name. START
2243 is the start of the string that STRING points to, hence when
2244 reading backwards, we must not read any character before START. */
2245
2246static bool
2247cp_is_operator (const char *string, const char *start)
2248{
2249 return ((string == start
2250 || !valid_identifier_name_char (string[-1]))
2251 && strncmp (string, CP_OPERATOR_STR, CP_OPERATOR_LEN) == 0
2252 && !valid_identifier_name_char (string[CP_OPERATOR_LEN]));
2253}
2254
bd69330d
PA
2255/* If *NAME points at an ABI tag, skip it and return true. Otherwise
2256 leave *NAME unmodified and return false. (see GCC's abi_tag
2257 attribute), such names are demangled as e.g.,
2258 "function[abi:cxx11]()". */
2259
2260static bool
2261skip_abi_tag (const char **name)
2262{
2263 const char *p = *name;
2264
2265 if (startswith (p, "[abi:"))
2266 {
2267 p += 5;
2268
2269 while (valid_identifier_name_char (*p))
2270 p++;
2271
2272 if (*p == ']')
2273 {
2274 p++;
2275 *name = p;
2276 return true;
2277 }
2278 }
2279 return false;
2280}
2281
b5ec771e 2282/* See utils.h. */
1d550c82 2283
b5ec771e 2284int
1d550c82 2285strncmp_iw_with_mode (const char *string1, const char *string2,
0662b6a7 2286 size_t string2_len, strncmp_iw_mode mode,
bd69330d
PA
2287 enum language language,
2288 completion_match_for_lcd *match_for_lcd)
c906108c 2289{
0662b6a7 2290 const char *string1_start = string1;
1d550c82 2291 const char *end_str2 = string2 + string2_len;
0662b6a7
PA
2292 bool skip_spaces = true;
2293 bool have_colon_op = (language == language_cplus
2294 || language == language_rust
2295 || language == language_fortran);
1d550c82
PA
2296
2297 while (1)
c906108c 2298 {
0662b6a7 2299 if (skip_spaces
51e2cfa2
PA
2300 || ((ISSPACE (*string1) && !valid_identifier_name_char (*string2))
2301 || (ISSPACE (*string2) && !valid_identifier_name_char (*string1))))
0662b6a7
PA
2302 {
2303 skip_ws (string1, string2, end_str2);
2304 skip_spaces = false;
2305 }
2306
bd69330d
PA
2307 /* Skip [abi:cxx11] tags in the symbol name if the lookup name
2308 doesn't include them. E.g.:
2309
2310 string1: function[abi:cxx1](int)
2311 string2: function
2312
2313 string1: function[abi:cxx1](int)
2314 string2: function(int)
2315
2316 string1: Struct[abi:cxx1]::function()
2317 string2: Struct::function()
2318
2319 string1: function(Struct[abi:cxx1], int)
2320 string2: function(Struct, int)
2321 */
2322 if (string2 == end_str2
2323 || (*string2 != '[' && !valid_identifier_name_char (*string2)))
2324 {
2325 const char *abi_start = string1;
2326
2327 /* There can be more than one tag. */
2328 while (*string1 == '[' && skip_abi_tag (&string1))
2329 ;
2330
2331 if (match_for_lcd != NULL && abi_start != string1)
2332 match_for_lcd->mark_ignored_range (abi_start, string1);
2333
51e2cfa2 2334 while (ISSPACE (*string1))
bd69330d
PA
2335 string1++;
2336 }
2337
1d550c82
PA
2338 if (*string1 == '\0' || string2 == end_str2)
2339 break;
0662b6a7
PA
2340
2341 /* Handle the :: operator. */
2342 if (have_colon_op && string1[0] == ':' && string1[1] == ':')
2343 {
2344 if (*string2 != ':')
2345 return 1;
2346
2347 string1++;
2348 string2++;
2349
2350 if (string2 == end_str2)
2351 break;
2352
2353 if (*string2 != ':')
2354 return 1;
2355
2356 string1++;
2357 string2++;
2358
51e2cfa2 2359 while (ISSPACE (*string1))
0662b6a7 2360 string1++;
51e2cfa2 2361 while (string2 < end_str2 && ISSPACE (*string2))
0662b6a7
PA
2362 string2++;
2363 continue;
2364 }
2365
2366 /* Handle C++ user-defined operators. */
2367 else if (language == language_cplus
2368 && *string1 == 'o')
2369 {
2370 if (cp_is_operator (string1, string1_start))
2371 {
2372 /* An operator name in STRING1. Check STRING2. */
2373 size_t cmplen
2374 = std::min<size_t> (CP_OPERATOR_LEN, end_str2 - string2);
2375 if (strncmp (string1, string2, cmplen) != 0)
2376 return 1;
2377
2378 string1 += cmplen;
2379 string2 += cmplen;
2380
2381 if (string2 != end_str2)
2382 {
2383 /* Check for "operatorX" in STRING2. */
2384 if (valid_identifier_name_char (*string2))
2385 return 1;
2386
2387 skip_ws (string1, string2, end_str2);
2388 }
2389
2390 /* Handle operator(). */
2391 if (*string1 == '(')
2392 {
2393 if (string2 == end_str2)
2394 {
2395 if (mode == strncmp_iw_mode::NORMAL)
2396 return 0;
2397 else
2398 {
2399 /* Don't break for the regular return at the
2400 bottom, because "operator" should not
2401 match "operator()", since this open
2402 parentheses is not the parameter list
2403 start. */
2404 return *string1 != '\0';
2405 }
2406 }
2407
2408 if (*string1 != *string2)
2409 return 1;
2410
2411 string1++;
2412 string2++;
2413 }
2414
2415 while (1)
2416 {
2417 skip_ws (string1, string2, end_str2);
2418
2419 /* Skip to end of token, or to END, whatever comes
2420 first. */
2421 const char *end_str1 = string1 + strlen (string1);
2422 const char *p1 = cp_skip_operator_token (string1, end_str1);
2423 const char *p2 = cp_skip_operator_token (string2, end_str2);
2424
2425 cmplen = std::min (p1 - string1, p2 - string2);
2426 if (p2 == end_str2)
2427 {
2428 if (strncmp (string1, string2, cmplen) != 0)
2429 return 1;
2430 }
2431 else
2432 {
2433 if (p1 - string1 != p2 - string2)
2434 return 1;
2435 if (strncmp (string1, string2, cmplen) != 0)
2436 return 1;
2437 }
2438
2439 string1 += cmplen;
2440 string2 += cmplen;
2441
2442 if (*string1 == '\0' || string2 == end_str2)
2443 break;
2444 if (*string1 == '(' || *string2 == '(')
2445 break;
2446 }
2447
2448 continue;
2449 }
2450 }
2451
559a7a62
JK
2452 if (case_sensitivity == case_sensitive_on && *string1 != *string2)
2453 break;
2454 if (case_sensitivity == case_sensitive_off
51e2cfa2
PA
2455 && (TOLOWER ((unsigned char) *string1)
2456 != TOLOWER ((unsigned char) *string2)))
559a7a62 2457 break;
1d550c82 2458
0662b6a7
PA
2459 /* If we see any non-whitespace, non-identifier-name character
2460 (any of "()<>*&" etc.), then skip spaces the next time
2461 around. */
51e2cfa2 2462 if (!ISSPACE (*string1) && !valid_identifier_name_char (*string1))
0662b6a7
PA
2463 skip_spaces = true;
2464
1d550c82
PA
2465 string1++;
2466 string2++;
c906108c 2467 }
1d550c82
PA
2468
2469 if (string2 == end_str2)
2470 {
2471 if (mode == strncmp_iw_mode::NORMAL)
bd69330d
PA
2472 {
2473 /* Strip abi tag markers from the matched symbol name.
2474 Usually the ABI marker will be found on function name
2475 (automatically added because the function returns an
2476 object marked with an ABI tag). However, it's also
2477 possible to see a marker in one of the function
2478 parameters, for example.
2479
2480 string2 (lookup name):
2481 func
2482 symbol name:
2483 function(some_struct[abi:cxx11], int)
2484
2485 and for completion LCD computation we want to say that
2486 the match was for:
2487 function(some_struct, int)
2488 */
2489 if (match_for_lcd != NULL)
2490 {
2491 while ((string1 = strstr (string1, "[abi:")) != NULL)
2492 {
2493 const char *abi_start = string1;
2494
2495 /* There can be more than one tag. */
2496 while (skip_abi_tag (&string1) && *string1 == '[')
2497 ;
2498
2499 if (abi_start != string1)
2500 match_for_lcd->mark_ignored_range (abi_start, string1);
2501 }
2502 }
2503
2504 return 0;
2505 }
1d550c82
PA
2506 else
2507 return (*string1 != '\0' && *string1 != '(');
2508 }
2509 else
2510 return 1;
2511}
2512
2513/* See utils.h. */
2514
2515int
2516strncmp_iw (const char *string1, const char *string2, size_t string2_len)
2517{
2518 return strncmp_iw_with_mode (string1, string2, string2_len,
0662b6a7 2519 strncmp_iw_mode::NORMAL, language_minimal);
1d550c82
PA
2520}
2521
2522/* See utils.h. */
2523
2524int
2525strcmp_iw (const char *string1, const char *string2)
2526{
2527 return strncmp_iw_with_mode (string1, string2, strlen (string2),
0662b6a7 2528 strncmp_iw_mode::MATCH_PARAMS, language_minimal);
c906108c 2529}
2de7ced7 2530
0fe19209
DC
2531/* This is like strcmp except that it ignores whitespace and treats
2532 '(' as the first non-NULL character in terms of ordering. Like
2533 strcmp (and unlike strcmp_iw), it returns negative if STRING1 <
2534 STRING2, 0 if STRING2 = STRING2, and positive if STRING1 > STRING2
2535 according to that ordering.
2536
2537 If a list is sorted according to this function and if you want to
2538 find names in the list that match some fixed NAME according to
2539 strcmp_iw(LIST_ELT, NAME), then the place to start looking is right
2540 where this function would put NAME.
2541
559a7a62
JK
2542 This function must be neutral to the CASE_SENSITIVITY setting as the user
2543 may choose it during later lookup. Therefore this function always sorts
2544 primarily case-insensitively and secondarily case-sensitively.
2545
0fe19209
DC
2546 Here are some examples of why using strcmp to sort is a bad idea:
2547
2548 Whitespace example:
2549
2550 Say your partial symtab contains: "foo<char *>", "goo". Then, if
2551 we try to do a search for "foo<char*>", strcmp will locate this
2552 after "foo<char *>" and before "goo". Then lookup_partial_symbol
2553 will start looking at strings beginning with "goo", and will never
2554 see the correct match of "foo<char *>".
2555
2556 Parenthesis example:
2557
2558 In practice, this is less like to be an issue, but I'll give it a
2559 shot. Let's assume that '$' is a legitimate character to occur in
2560 symbols. (Which may well even be the case on some systems.) Then
2561 say that the partial symbol table contains "foo$" and "foo(int)".
2562 strcmp will put them in this order, since '$' < '('. Now, if the
2563 user searches for "foo", then strcmp will sort "foo" before "foo$".
2564 Then lookup_partial_symbol will notice that strcmp_iw("foo$",
2565 "foo") is false, so it won't proceed to the actual match of
2566 "foo(int)" with "foo". */
2567
2568int
2569strcmp_iw_ordered (const char *string1, const char *string2)
2570{
559a7a62
JK
2571 const char *saved_string1 = string1, *saved_string2 = string2;
2572 enum case_sensitivity case_pass = case_sensitive_off;
2573
2574 for (;;)
0fe19209 2575 {
b11b1f88
JK
2576 /* C1 and C2 are valid only if *string1 != '\0' && *string2 != '\0'.
2577 Provide stub characters if we are already at the end of one of the
2578 strings. */
2579 char c1 = 'X', c2 = 'X';
2580
2581 while (*string1 != '\0' && *string2 != '\0')
0fe19209 2582 {
51e2cfa2 2583 while (ISSPACE (*string1))
b11b1f88 2584 string1++;
51e2cfa2 2585 while (ISSPACE (*string2))
b11b1f88
JK
2586 string2++;
2587
559a7a62
JK
2588 switch (case_pass)
2589 {
2590 case case_sensitive_off:
51e2cfa2
PA
2591 c1 = TOLOWER ((unsigned char) *string1);
2592 c2 = TOLOWER ((unsigned char) *string2);
559a7a62
JK
2593 break;
2594 case case_sensitive_on:
b11b1f88
JK
2595 c1 = *string1;
2596 c2 = *string2;
559a7a62
JK
2597 break;
2598 }
b11b1f88
JK
2599 if (c1 != c2)
2600 break;
2601
2602 if (*string1 != '\0')
2603 {
2604 string1++;
2605 string2++;
2606 }
0fe19209 2607 }
b11b1f88
JK
2608
2609 switch (*string1)
0fe19209 2610 {
b11b1f88
JK
2611 /* Characters are non-equal unless they're both '\0'; we want to
2612 make sure we get the comparison right according to our
2613 comparison in the cases where one of them is '\0' or '('. */
2614 case '\0':
2615 if (*string2 == '\0')
559a7a62 2616 break;
b11b1f88
JK
2617 else
2618 return -1;
2619 case '(':
2620 if (*string2 == '\0')
2621 return 1;
2622 else
2623 return -1;
2624 default:
2625 if (*string2 == '\0' || *string2 == '(')
2626 return 1;
559a7a62
JK
2627 else if (c1 > c2)
2628 return 1;
2629 else if (c1 < c2)
2630 return -1;
2631 /* PASSTHRU */
0fe19209 2632 }
559a7a62
JK
2633
2634 if (case_pass == case_sensitive_on)
2635 return 0;
2636
2637 /* Otherwise the strings were equal in case insensitive way, make
2638 a more fine grained comparison in a case sensitive way. */
2639
2640 case_pass = case_sensitive_on;
2641 string1 = saved_string1;
2642 string2 = saved_string2;
0fe19209 2643 }
0fe19209
DC
2644}
2645
459a2e4c 2646/* See utils.h. */
2de7ced7 2647
459a2e4c 2648bool
2de7ced7
DJ
2649streq (const char *lhs, const char *rhs)
2650{
2651 return !strcmp (lhs, rhs);
2652}
459a2e4c 2653
c906108c 2654\f
c5aa993b 2655
c906108c 2656/*
c5aa993b
JM
2657 ** subset_compare()
2658 ** Answer whether string_to_compare is a full or partial match to
2659 ** template_string. The partial match must be in sequence starting
2660 ** at index 0.
2661 */
c906108c 2662int
a121b7c1 2663subset_compare (const char *string_to_compare, const char *template_string)
7a292a7a
SS
2664{
2665 int match;
e0627e85 2666
cafb3438 2667 if (template_string != NULL && string_to_compare != NULL
8731e58e
AC
2668 && strlen (string_to_compare) <= strlen (template_string))
2669 match =
61012eef 2670 (startswith (template_string, string_to_compare));
7a292a7a
SS
2671 else
2672 match = 0;
2673 return match;
2674}
c906108c 2675
75feb17d
DJ
2676static void
2677show_debug_timestamp (struct ui_file *file, int from_tty,
2678 struct cmd_list_element *c, const char *value)
2679{
3e43a32a
MS
2680 fprintf_filtered (file, _("Timestamping debugging messages is %s.\n"),
2681 value);
75feb17d 2682}
c906108c 2683\f
c5aa993b 2684
a738ea1d
YQ
2685/* See utils.h. */
2686
2687CORE_ADDR
2688address_significant (gdbarch *gdbarch, CORE_ADDR addr)
2689{
8727de56
OJ
2690 /* Clear insignificant bits of a target address and sign extend resulting
2691 address, avoiding shifts larger or equal than the width of a CORE_ADDR.
2692 The local variable ADDR_BIT stops the compiler reporting a shift overflow
5969f0db
OJ
2693 when it won't occur. Skip updating of target address if current target
2694 has not set gdbarch significant_addr_bit. */
a738ea1d
YQ
2695 int addr_bit = gdbarch_significant_addr_bit (gdbarch);
2696
5969f0db 2697 if (addr_bit && (addr_bit < (sizeof (CORE_ADDR) * HOST_CHAR_BIT)))
8727de56
OJ
2698 {
2699 CORE_ADDR sign = (CORE_ADDR) 1 << (addr_bit - 1);
2700 addr &= ((CORE_ADDR) 1 << addr_bit) - 1;
2701 addr = (addr ^ sign) - sign;
2702 }
a738ea1d
YQ
2703
2704 return addr;
2705}
2706
66bf4b3a 2707const char *
5af949e3 2708paddress (struct gdbarch *gdbarch, CORE_ADDR addr)
66bf4b3a
AC
2709{
2710 /* Truncate address to the size of a target address, avoiding shifts
2711 larger or equal than the width of a CORE_ADDR. The local
2712 variable ADDR_BIT stops the compiler reporting a shift overflow
581e13c1 2713 when it won't occur. */
66bf4b3a
AC
2714 /* NOTE: This assumes that the significant address information is
2715 kept in the least significant bits of ADDR - the upper bits were
76e71323 2716 either zero or sign extended. Should gdbarch_address_to_pointer or
66bf4b3a
AC
2717 some ADDRESS_TO_PRINTABLE() be used to do the conversion? */
2718
5af949e3 2719 int addr_bit = gdbarch_addr_bit (gdbarch);
66bf4b3a
AC
2720
2721 if (addr_bit < (sizeof (CORE_ADDR) * HOST_CHAR_BIT))
2722 addr &= ((CORE_ADDR) 1 << addr_bit) - 1;
2723 return hex_string (addr);
2724}
2725
f1310107
TJB
2726/* This function is described in "defs.h". */
2727
2728const char *
2729print_core_address (struct gdbarch *gdbarch, CORE_ADDR address)
2730{
2731 int addr_bit = gdbarch_addr_bit (gdbarch);
2732
2733 if (addr_bit < (sizeof (CORE_ADDR) * HOST_CHAR_BIT))
2734 address &= ((CORE_ADDR) 1 << addr_bit) - 1;
2735
2736 /* FIXME: cagney/2002-05-03: Need local_address_string() function
2737 that returns the language localized string formatted to a width
2738 based on gdbarch_addr_bit. */
2739 if (addr_bit <= 32)
2740 return hex_string_custom (address, 8);
2741 else
2742 return hex_string_custom (address, 16);
2743}
2744
03dd37c3
AC
2745/* Convert a string back into a CORE_ADDR. */
2746CORE_ADDR
2747string_to_core_addr (const char *my_string)
2748{
2749 CORE_ADDR addr = 0;
9544c605 2750
51e2cfa2 2751 if (my_string[0] == '0' && TOLOWER (my_string[1]) == 'x')
03dd37c3 2752 {
ced572fe 2753 /* Assume that it is in hex. */
03dd37c3 2754 int i;
5d502164 2755
03dd37c3
AC
2756 for (i = 2; my_string[i] != '\0'; i++)
2757 {
51e2cfa2 2758 if (ISDIGIT (my_string[i]))
03dd37c3 2759 addr = (my_string[i] - '0') + (addr * 16);
51e2cfa2
PA
2760 else if (ISXDIGIT (my_string[i]))
2761 addr = (TOLOWER (my_string[i]) - 'a' + 0xa) + (addr * 16);
03dd37c3 2762 else
63f06803 2763 error (_("invalid hex \"%s\""), my_string);
03dd37c3
AC
2764 }
2765 }
2766 else
2767 {
2768 /* Assume that it is in decimal. */
2769 int i;
5d502164 2770
03dd37c3
AC
2771 for (i = 0; my_string[i] != '\0'; i++)
2772 {
51e2cfa2 2773 if (ISDIGIT (my_string[i]))
03dd37c3
AC
2774 addr = (my_string[i] - '0') + (addr * 10);
2775 else
63f06803 2776 error (_("invalid decimal \"%s\""), my_string);
03dd37c3
AC
2777 }
2778 }
9544c605 2779
03dd37c3
AC
2780 return addr;
2781}
58d370e0 2782
14278e1f
TT
2783#if GDB_SELF_TEST
2784
2785static void
2786gdb_realpath_check_trailer (const char *input, const char *trailer)
2787{
2788 gdb::unique_xmalloc_ptr<char> result = gdb_realpath (input);
2789
2790 size_t len = strlen (result.get ());
2791 size_t trail_len = strlen (trailer);
2792
2793 SELF_CHECK (len >= trail_len
2794 && strcmp (result.get () + len - trail_len, trailer) == 0);
2795}
2796
2797static void
2798gdb_realpath_tests ()
2799{
2800 /* A file which contains a directory prefix. */
2801 gdb_realpath_check_trailer ("./xfullpath.exp", "/xfullpath.exp");
2802 /* A file which contains a directory prefix. */
2803 gdb_realpath_check_trailer ("../../defs.h", "/defs.h");
2804 /* A one-character filename. */
2805 gdb_realpath_check_trailer ("./a", "/a");
2806 /* A file in the root directory. */
2807 gdb_realpath_check_trailer ("/root_file_which_should_exist",
2808 "/root_file_which_should_exist");
2809 /* A file which does not have a directory prefix. */
2810 gdb_realpath_check_trailer ("xfullpath.exp", "xfullpath.exp");
2811 /* A one-char filename without any directory prefix. */
2812 gdb_realpath_check_trailer ("a", "a");
2813 /* An empty filename. */
2814 gdb_realpath_check_trailer ("", "");
2815}
2816
d369b608
SM
2817/* Test the gdb_argv::as_array_view method. */
2818
2819static void
2820gdb_argv_as_array_view_test ()
2821{
2822 {
2823 gdb_argv argv;
2824
2825 gdb::array_view<char *> view = argv.as_array_view ();
2826
2827 SELF_CHECK (view.data () == nullptr);
2828 SELF_CHECK (view.size () == 0);
2829 }
2830 {
2831 gdb_argv argv ("une bonne 50");
2832
2833 gdb::array_view<char *> view = argv.as_array_view ();
2834
2835 SELF_CHECK (view.size () == 3);
2836 SELF_CHECK (strcmp (view[0], "une") == 0);
2837 SELF_CHECK (strcmp (view[1], "bonne") == 0);
2838 SELF_CHECK (strcmp (view[2], "50") == 0);
2839 }
2840}
2841
14278e1f
TT
2842#endif /* GDB_SELF_TEST */
2843
ae5a43e0
DJ
2844/* Allocation function for the libiberty hash table which uses an
2845 obstack. The obstack is passed as DATA. */
2846
2847void *
2848hashtab_obstack_allocate (void *data, size_t size, size_t count)
2849{
241fd515 2850 size_t total = size * count;
ae5a43e0 2851 void *ptr = obstack_alloc ((struct obstack *) data, total);
e0627e85 2852
ae5a43e0
DJ
2853 memset (ptr, 0, total);
2854 return ptr;
2855}
2856
2857/* Trivial deallocation function for the libiberty splay tree and hash
2858 table - don't deallocate anything. Rely on later deletion of the
2859 obstack. DATA will be the obstack, although it is not needed
2860 here. */
2861
2862void
2863dummy_obstack_deallocate (void *object, void *data)
2864{
2865 return;
2866}
253c8abb 2867
e1024ff1
DJ
2868/* Simple, portable version of dirname that does not modify its
2869 argument. */
2870
d721ba37 2871std::string
e1024ff1
DJ
2872ldirname (const char *filename)
2873{
d721ba37 2874 std::string dirname;
e1024ff1 2875 const char *base = lbasename (filename);
e1024ff1
DJ
2876
2877 while (base > filename && IS_DIR_SEPARATOR (base[-1]))
2878 --base;
2879
2880 if (base == filename)
d721ba37 2881 return dirname;
e1024ff1 2882
d721ba37 2883 dirname = std::string (filename, base - filename);
e1024ff1
DJ
2884
2885 /* On DOS based file systems, convert "d:foo" to "d:.", so that we
2886 create "d:./bar" later instead of the (different) "d:/bar". */
2887 if (base - filename == 2 && IS_ABSOLUTE_PATH (base)
2888 && !IS_DIR_SEPARATOR (filename[0]))
2889 dirname[base++ - filename] = '.';
2890
e1024ff1
DJ
2891 return dirname;
2892}
d1a41061 2893
74164c56
JK
2894/* Return ARGS parsed as a valid pid, or throw an error. */
2895
2896int
c0939df1 2897parse_pid_to_attach (const char *args)
74164c56
JK
2898{
2899 unsigned long pid;
2900 char *dummy;
2901
2902 if (!args)
2903 error_no_arg (_("process-id to attach"));
2904
c0939df1 2905 dummy = (char *) args;
74164c56
JK
2906 pid = strtoul (args, &dummy, 0);
2907 /* Some targets don't set errno on errors, grrr! */
2908 if ((pid == 0 && dummy == args) || dummy != &args[strlen (args)])
2909 error (_("Illegal process-id: %s."), args);
2910
2911 return pid;
2912}
2913
30baf67b 2914/* Substitute all occurrences of string FROM by string TO in *STRINGP. *STRINGP
6dea1fbd 2915 must come from xrealloc-compatible allocator and it may be updated. FROM
1564a261
JK
2916 needs to be delimited by IS_DIR_SEPARATOR or DIRNAME_SEPARATOR (or be
2917 located at the start or end of *STRINGP. */
6dea1fbd
JK
2918
2919void
2920substitute_path_component (char **stringp, const char *from, const char *to)
2921{
2922 char *string = *stringp, *s;
2923 const size_t from_len = strlen (from);
2924 const size_t to_len = strlen (to);
2925
2926 for (s = string;;)
2927 {
2928 s = strstr (s, from);
2929 if (s == NULL)
2930 break;
2931
1564a261
JK
2932 if ((s == string || IS_DIR_SEPARATOR (s[-1])
2933 || s[-1] == DIRNAME_SEPARATOR)
dda83cd7 2934 && (s[from_len] == '\0' || IS_DIR_SEPARATOR (s[from_len])
1564a261 2935 || s[from_len] == DIRNAME_SEPARATOR))
6dea1fbd
JK
2936 {
2937 char *string_new;
2938
224c3ddb
SM
2939 string_new
2940 = (char *) xrealloc (string, (strlen (string) + to_len + 1));
6dea1fbd
JK
2941
2942 /* Relocate the current S pointer. */
2943 s = s - string + string_new;
2944 string = string_new;
2945
2946 /* Replace from by to. */
2947 memmove (&s[to_len], &s[from_len], strlen (&s[from_len]) + 1);
2948 memcpy (s, to, to_len);
2949
2950 s += to_len;
2951 }
2952 else
2953 s++;
2954 }
2955
2956 *stringp = string;
2957}
2958
0b6cb71e
DE
2959#ifdef HAVE_WAITPID
2960
2961#ifdef SIGALRM
2962
2963/* SIGALRM handler for waitpid_with_timeout. */
2964
2965static void
2966sigalrm_handler (int signo)
2967{
2968 /* Nothing to do. */
2969}
2970
2971#endif
2972
2973/* Wrapper to wait for child PID to die with TIMEOUT.
2974 TIMEOUT is the time to stop waiting in seconds.
2975 If TIMEOUT is zero, pass WNOHANG to waitpid.
2976 Returns PID if it was successfully waited for, otherwise -1.
2977
2978 Timeouts are currently implemented with alarm and SIGALRM.
2979 If the host does not support them, this waits "forever".
2980 It would be odd though for a host to have waitpid and not SIGALRM. */
2981
2982pid_t
2983wait_to_die_with_timeout (pid_t pid, int *status, int timeout)
2984{
2985 pid_t waitpid_result;
2986
2987 gdb_assert (pid > 0);
2988 gdb_assert (timeout >= 0);
2989
2990 if (timeout > 0)
2991 {
2992#ifdef SIGALRM
2993#if defined (HAVE_SIGACTION) && defined (SA_RESTART)
2994 struct sigaction sa, old_sa;
2995
2996 sa.sa_handler = sigalrm_handler;
2997 sigemptyset (&sa.sa_mask);
2998 sa.sa_flags = 0;
2999 sigaction (SIGALRM, &sa, &old_sa);
3000#else
a40805d4 3001 sighandler_t ofunc;
0b6cb71e 3002
a40805d4 3003 ofunc = signal (SIGALRM, sigalrm_handler);
0b6cb71e
DE
3004#endif
3005
3006 alarm (timeout);
3007#endif
3008
3009 waitpid_result = waitpid (pid, status, 0);
3010
3011#ifdef SIGALRM
3012 alarm (0);
3013#if defined (HAVE_SIGACTION) && defined (SA_RESTART)
3014 sigaction (SIGALRM, &old_sa, NULL);
3015#else
3016 signal (SIGALRM, ofunc);
3017#endif
3018#endif
3019 }
3020 else
3021 waitpid_result = waitpid (pid, status, WNOHANG);
3022
3023 if (waitpid_result == pid)
3024 return pid;
3025 else
3026 return -1;
3027}
3028
3029#endif /* HAVE_WAITPID */
3030
202cbf1c
JK
3031/* Provide fnmatch compatible function for FNM_FILE_NAME matching of host files.
3032 Both FNM_FILE_NAME and FNM_NOESCAPE must be set in FLAGS.
3033
3034 It handles correctly HAVE_DOS_BASED_FILE_SYSTEM and
3035 HAVE_CASE_INSENSITIVE_FILE_SYSTEM. */
3036
3037int
3038gdb_filename_fnmatch (const char *pattern, const char *string, int flags)
3039{
3040 gdb_assert ((flags & FNM_FILE_NAME) != 0);
3041
3042 /* It is unclear how '\' escaping vs. directory separator should coexist. */
3043 gdb_assert ((flags & FNM_NOESCAPE) != 0);
3044
3045#ifdef HAVE_DOS_BASED_FILE_SYSTEM
3046 {
3047 char *pattern_slash, *string_slash;
3048
3049 /* Replace '\' by '/' in both strings. */
3050
0ae1c716 3051 pattern_slash = (char *) alloca (strlen (pattern) + 1);
202cbf1c
JK
3052 strcpy (pattern_slash, pattern);
3053 pattern = pattern_slash;
3054 for (; *pattern_slash != 0; pattern_slash++)
3055 if (IS_DIR_SEPARATOR (*pattern_slash))
3056 *pattern_slash = '/';
3057
0ae1c716 3058 string_slash = (char *) alloca (strlen (string) + 1);
202cbf1c
JK
3059 strcpy (string_slash, string);
3060 string = string_slash;
3061 for (; *string_slash != 0; string_slash++)
3062 if (IS_DIR_SEPARATOR (*string_slash))
3063 *string_slash = '/';
3064 }
3065#endif /* HAVE_DOS_BASED_FILE_SYSTEM */
3066
3067#ifdef HAVE_CASE_INSENSITIVE_FILE_SYSTEM
3068 flags |= FNM_CASEFOLD;
3069#endif /* HAVE_CASE_INSENSITIVE_FILE_SYSTEM */
3070
3071 return fnmatch (pattern, string, flags);
3072}
3073
cce0e923
DE
3074/* Return the number of path elements in PATH.
3075 / = 1
3076 /foo = 2
3077 /foo/ = 2
3078 foo/bar = 2
3079 foo/ = 1 */
3080
3081int
3082count_path_elements (const char *path)
3083{
3084 int count = 0;
3085 const char *p = path;
3086
3087 if (HAS_DRIVE_SPEC (p))
3088 {
3089 p = STRIP_DRIVE_SPEC (p);
3090 ++count;
3091 }
3092
3093 while (*p != '\0')
3094 {
3095 if (IS_DIR_SEPARATOR (*p))
3096 ++count;
3097 ++p;
3098 }
3099
3100 /* Backup one if last character is /, unless it's the only one. */
3101 if (p > path + 1 && IS_DIR_SEPARATOR (p[-1]))
3102 --count;
3103
3104 /* Add one for the file name, if present. */
3105 if (p > path && !IS_DIR_SEPARATOR (p[-1]))
3106 ++count;
3107
3108 return count;
3109}
3110
3111/* Remove N leading path elements from PATH.
3112 N must be non-negative.
3113 If PATH has more than N path elements then return NULL.
3114 If PATH has exactly N path elements then return "".
3115 See count_path_elements for a description of how we do the counting. */
3116
3117const char *
3118strip_leading_path_elements (const char *path, int n)
3119{
3120 int i = 0;
3121 const char *p = path;
3122
3123 gdb_assert (n >= 0);
3124
3125 if (n == 0)
3126 return p;
3127
3128 if (HAS_DRIVE_SPEC (p))
3129 {
3130 p = STRIP_DRIVE_SPEC (p);
3131 ++i;
3132 }
3133
3134 while (i < n)
3135 {
3136 while (*p != '\0' && !IS_DIR_SEPARATOR (*p))
3137 ++p;
3138 if (*p == '\0')
3139 {
3140 if (i + 1 == n)
3141 return "";
3142 return NULL;
3143 }
3144 ++p;
3145 ++i;
3146 }
3147
3148 return p;
3149}
3150
a99bc3d2
JB
3151/* See utils.h. */
3152
3153void
3154copy_bitwise (gdb_byte *dest, ULONGEST dest_offset,
3155 const gdb_byte *source, ULONGEST source_offset,
3156 ULONGEST nbits, int bits_big_endian)
3157{
3158 unsigned int buf, avail;
3159
3160 if (nbits == 0)
3161 return;
3162
3163 if (bits_big_endian)
3164 {
3165 /* Start from the end, then work backwards. */
3166 dest_offset += nbits - 1;
3167 dest += dest_offset / 8;
3168 dest_offset = 7 - dest_offset % 8;
3169 source_offset += nbits - 1;
3170 source += source_offset / 8;
3171 source_offset = 7 - source_offset % 8;
3172 }
3173 else
3174 {
3175 dest += dest_offset / 8;
3176 dest_offset %= 8;
3177 source += source_offset / 8;
3178 source_offset %= 8;
3179 }
3180
3181 /* Fill BUF with DEST_OFFSET bits from the destination and 8 -
3182 SOURCE_OFFSET bits from the source. */
3183 buf = *(bits_big_endian ? source-- : source++) >> source_offset;
3184 buf <<= dest_offset;
3185 buf |= *dest & ((1 << dest_offset) - 1);
3186
3187 /* NBITS: bits yet to be written; AVAIL: BUF's fill level. */
3188 nbits += dest_offset;
3189 avail = dest_offset + 8 - source_offset;
3190
3191 /* Flush 8 bits from BUF, if appropriate. */
3192 if (nbits >= 8 && avail >= 8)
3193 {
3194 *(bits_big_endian ? dest-- : dest++) = buf;
3195 buf >>= 8;
3196 avail -= 8;
3197 nbits -= 8;
3198 }
3199
3200 /* Copy the middle part. */
3201 if (nbits >= 8)
3202 {
3203 size_t len = nbits / 8;
3204
3205 /* Use a faster method for byte-aligned copies. */
3206 if (avail == 0)
3207 {
3208 if (bits_big_endian)
3209 {
3210 dest -= len;
3211 source -= len;
3212 memcpy (dest + 1, source + 1, len);
3213 }
3214 else
3215 {
3216 memcpy (dest, source, len);
3217 dest += len;
3218 source += len;
3219 }
3220 }
3221 else
3222 {
3223 while (len--)
3224 {
3225 buf |= *(bits_big_endian ? source-- : source++) << avail;
3226 *(bits_big_endian ? dest-- : dest++) = buf;
3227 buf >>= 8;
3228 }
3229 }
3230 nbits %= 8;
3231 }
3232
3233 /* Write the last byte. */
3234 if (nbits)
3235 {
3236 if (avail < nbits)
3237 buf |= *source << avail;
3238
3239 buf &= (1 << nbits) - 1;
cf83625d 3240 *dest = (*dest & (~0U << nbits)) | buf;
a99bc3d2
JB
3241 }
3242}
3243
6c265988 3244void _initialize_utils ();
3c16cced 3245void
6c265988 3246_initialize_utils ()
3c16cced 3247{
12904d37
TT
3248 add_setshow_uinteger_cmd ("width", class_support, &chars_per_line, _("\
3249Set number of characters where GDB should wrap lines of its output."), _("\
3250Show number of characters where GDB should wrap lines of its output."), _("\
3251This affects where GDB wraps its output to fit the screen width.\n\
3252Setting this to \"unlimited\" or zero prevents GDB from wrapping its output."),
3253 set_width_command,
3254 show_chars_per_line,
3255 &setlist, &showlist);
3256
3257 add_setshow_uinteger_cmd ("height", class_support, &lines_per_page, _("\
3258Set number of lines in a page for GDB output pagination."), _("\
3259Show number of lines in a page for GDB output pagination."), _("\
3260This affects the number of lines after which GDB will pause\n\
3261its output and ask you whether to continue.\n\
3262Setting this to \"unlimited\" or zero causes GDB never pause during output."),
3263 set_height_command,
3264 show_lines_per_page,
3265 &setlist, &showlist);
3266
3267 add_setshow_boolean_cmd ("pagination", class_support,
3268 &pagination_enabled, _("\
3269Set state of GDB output pagination."), _("\
3270Show state of GDB output pagination."), _("\
3271When pagination is ON, GDB pauses at end of each screenful of\n\
3272its output and asks you whether to continue.\n\
3273Turning pagination off is an alternative to \"set height unlimited\"."),
3274 NULL,
3275 show_pagination_enabled,
3276 &setlist, &showlist);
3277
3278 add_setshow_boolean_cmd ("sevenbit-strings", class_support,
3279 &sevenbit_strings, _("\
3280Set printing of 8-bit characters in strings as \\nnn."), _("\
3281Show printing of 8-bit characters in strings as \\nnn."), NULL,
3282 NULL,
3283 show_sevenbit_strings,
3284 &setprintlist, &showprintlist);
3285
3286 add_setshow_boolean_cmd ("timestamp", class_maintenance,
3287 &debug_timestamp, _("\
3288Set timestamping of debugging messages."), _("\
3289Show timestamping of debugging messages."), _("\
3290When set, debugging messages will be marked with seconds and microseconds."),
3291 NULL,
3292 show_debug_timestamp,
3293 &setdebuglist, &showdebuglist);
3294
3c16cced
PA
3295 add_internal_problem_command (&internal_error_problem);
3296 add_internal_problem_command (&internal_warning_problem);
57fcfb1b 3297 add_internal_problem_command (&demangler_warning_problem);
14278e1f
TT
3298
3299#if GDB_SELF_TEST
1526853e 3300 selftests::register_test ("gdb_realpath", gdb_realpath_tests);
d369b608 3301 selftests::register_test ("gdb_argv_array_view", gdb_argv_as_array_view_test);
14278e1f 3302#endif
3c16cced 3303}