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