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