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