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