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