]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/utils.c
Change "set debug symtab-create" to take a verbosity level.
[thirdparty/binutils-gdb.git] / gdb / utils.c
CommitLineData
c906108c 1/* General utility routines for GDB, the GNU debugger.
1bac305b 2
8acc9f48 3 Copyright (C) 1986-2013 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"
5a56e9c5 21#include "dyn-string.h"
4e8f7a8b
DJ
22#include "gdb_assert.h"
23#include <ctype.h>
24#include "gdb_string.h"
0b6cb71e 25#include "gdb_wait.h"
4e8f7a8b 26#include "event-top.h"
60250e8b 27#include "exceptions.h"
95e54da7 28#include "gdbthread.h"
202cbf1c 29#include "fnmatch.h"
cbb099e8 30#include "gdb_bfd.h"
7991dee7
JK
31#ifdef HAVE_SYS_RESOURCE_H
32#include <sys/resource.h>
33#endif /* HAVE_SYS_RESOURCE_H */
4e8f7a8b 34
6a83354a
AC
35#ifdef TUI
36#include "tui/tui.h" /* For tui_get_command_dimension. */
37#endif
38
9d271fd8
AC
39#ifdef __GO32__
40#include <pc.h>
41#endif
42
042be3a9 43#include <signal.h>
0a1c4d10 44#include "timeval-utils.h"
c906108c
SS
45#include "gdbcmd.h"
46#include "serial.h"
47#include "bfd.h"
48#include "target.h"
50f182aa 49#include "gdb-demangle.h"
c906108c
SS
50#include "expression.h"
51#include "language.h"
234b45d4 52#include "charset.h"
c906108c 53#include "annotate.h"
303c8ebd 54#include "filenames.h"
7b90c3f9 55#include "symfile.h"
ae5a43e0 56#include "gdb_obstack.h"
9544c605 57#include "gdbcore.h"
698ba934 58#include "top.h"
7c953934 59#include "main.h"
cb08cc53 60#include "solist.h"
c906108c 61
8731e58e 62#include "inferior.h" /* for signed_pointer_to_address */
ac2e2ef7 63
3b78cdbb 64#include "gdb_curses.h"
020cc13c 65
dbda9972 66#include "readline/readline.h"
c906108c 67
75feb17d
DJ
68#include <sys/time.h>
69#include <time.h>
70
8626589c 71#include "gdb_usleep.h"
390a8aca 72#include "interps.h"
dc92e161 73#include "gdb_regex.h"
8626589c 74
a3828db0 75#if !HAVE_DECL_MALLOC
5ac79d78 76extern PTR malloc (); /* ARI: PTR */
3c37485b 77#endif
a3828db0 78#if !HAVE_DECL_REALLOC
5ac79d78 79extern PTR realloc (); /* ARI: PTR */
0e52036f 80#endif
a3828db0 81#if !HAVE_DECL_FREE
81b8eb80
AC
82extern void free ();
83#endif
81b8eb80 84
9a4105ab 85void (*deprecated_error_begin_hook) (void);
c906108c
SS
86
87/* Prototypes for local functions */
88
d9fcf2fb 89static void vfprintf_maybe_filtered (struct ui_file *, const char *,
a0b31db1 90 va_list, int) ATTRIBUTE_PRINTF (2, 0);
c906108c 91
d9fcf2fb 92static void fputs_maybe_filtered (const char *, struct ui_file *, int);
c906108c 93
a14ed312 94static void prompt_for_continue (void);
c906108c 95
eb0d3137 96static void set_screen_size (void);
a14ed312 97static void set_width (void);
c906108c 98
260c0b2a
DE
99/* Time spent in prompt_for_continue in the currently executing command
100 waiting for user to respond.
101 Initialized in make_command_stats_cleanup.
102 Modified in prompt_for_continue and defaulted_query.
103 Used in report_command_stats. */
104
105static struct timeval prompt_for_continue_wait_time;
106
75feb17d
DJ
107/* A flag indicating whether to timestamp debugging messages. */
108
109static int debug_timestamp = 0;
110
581e13c1 111/* Nonzero if we have job control. */
c906108c
SS
112
113int job_control;
114
522002f9 115#ifndef HAVE_PYTHON
c906108c
SS
116/* Nonzero means a quit has been requested. */
117
118int quit_flag;
522002f9 119#endif /* HAVE_PYTHON */
c906108c
SS
120
121/* Nonzero means quit immediately if Control-C is typed now, rather
122 than waiting until QUIT is executed. Be careful in setting this;
123 code which executes with immediate_quit set has to be very careful
124 about being able to deal with being interrupted at any time. It is
125 almost always better to use QUIT; the only exception I can think of
126 is being able to quit out of a system call (using EINTR loses if
127 the SIGINT happens between the previous QUIT and the system call).
128 To immediately quit in the case in which a SIGINT happens between
129 the previous QUIT and setting immediate_quit (desirable anytime we
130 expect to block), call QUIT after setting immediate_quit. */
131
132int immediate_quit;
133
522002f9
TT
134#ifndef HAVE_PYTHON
135
136/* Clear the quit flag. */
137
138void
139clear_quit_flag (void)
140{
141 quit_flag = 0;
142}
143
144/* Set the quit flag. */
145
146void
147set_quit_flag (void)
148{
149 quit_flag = 1;
150}
151
152/* Return true if the quit flag has been set, false otherwise. */
153
154int
155check_quit_flag (void)
156{
157 /* This is written in a particular way to avoid races. */
158 if (quit_flag)
159 {
160 quit_flag = 0;
161 return 1;
162 }
163
164 return 0;
165}
166
167#endif /* HAVE_PYTHON */
168
c906108c
SS
169/* Nonzero means that strings with character values >0x7F should be printed
170 as octal escapes. Zero means just print the value (e.g. it's an
171 international character, and the terminal or window can cope.) */
172
173int sevenbit_strings = 0;
920d2a44
AC
174static void
175show_sevenbit_strings (struct ui_file *file, int from_tty,
176 struct cmd_list_element *c, const char *value)
177{
3e43a32a
MS
178 fprintf_filtered (file, _("Printing of 8-bit characters "
179 "in strings as \\nnn is %s.\n"),
920d2a44
AC
180 value);
181}
c906108c 182
c906108c
SS
183/* String to be printed before warning messages, if any. */
184
185char *warning_pre_print = "\nwarning: ";
186
187int pagination_enabled = 1;
920d2a44
AC
188static void
189show_pagination_enabled (struct ui_file *file, int from_tty,
190 struct cmd_list_element *c, const char *value)
191{
192 fprintf_filtered (file, _("State of pagination is %s.\n"), value);
193}
194
c906108c 195\f
c27f5738 196/* Cleanup utilities.
c5aa993b 197
c27f5738
DE
198 These are not defined in cleanups.c (nor declared in cleanups.h)
199 because while they use the "cleanup API" they are not part of the
200 "cleanup API". */
7a292a7a 201
7a292a7a 202static void
fba45db2 203do_freeargv (void *arg)
7a292a7a 204{
c5aa993b 205 freeargv ((char **) arg);
7a292a7a
SS
206}
207
208struct cleanup *
fba45db2 209make_cleanup_freeargv (char **arg)
7a292a7a 210{
e0088cfd 211 return make_cleanup (do_freeargv, arg);
7a292a7a
SS
212}
213
5a56e9c5
DE
214static void
215do_dyn_string_delete (void *arg)
216{
217 dyn_string_delete ((dyn_string_t) arg);
218}
219
220struct cleanup *
221make_cleanup_dyn_string_delete (dyn_string_t arg)
222{
e0088cfd 223 return make_cleanup (do_dyn_string_delete, arg);
5a56e9c5
DE
224}
225
5c65bbb6
AC
226static void
227do_bfd_close_cleanup (void *arg)
228{
cbb099e8 229 gdb_bfd_unref (arg);
5c65bbb6
AC
230}
231
232struct cleanup *
f9a062ff 233make_cleanup_bfd_unref (bfd *abfd)
5c65bbb6
AC
234{
235 return make_cleanup (do_bfd_close_cleanup, abfd);
236}
237
f5ff8c83
AC
238static void
239do_close_cleanup (void *arg)
240{
f042532c 241 int *fd = arg;
e0627e85 242
f042532c 243 close (*fd);
f5ff8c83
AC
244}
245
246struct cleanup *
247make_cleanup_close (int fd)
248{
f042532c 249 int *saved_fd = xmalloc (sizeof (fd));
e0627e85 250
f042532c 251 *saved_fd = fd;
a05016c0 252 return make_cleanup_dtor (do_close_cleanup, saved_fd, xfree);
f5ff8c83
AC
253}
254
7c8a8b04
TT
255/* Helper function which does the work for make_cleanup_fclose. */
256
257static void
258do_fclose_cleanup (void *arg)
259{
c02866a0 260 FILE *file = arg;
e0627e85 261
c02866a0 262 fclose (file);
7c8a8b04
TT
263}
264
265/* Return a new cleanup that closes FILE. */
266
267struct cleanup *
268make_cleanup_fclose (FILE *file)
269{
270 return make_cleanup (do_fclose_cleanup, file);
271}
272
16ad9370
TT
273/* Helper function which does the work for make_cleanup_obstack_free. */
274
275static void
276do_obstack_free (void *arg)
277{
278 struct obstack *ob = arg;
e0627e85 279
16ad9370
TT
280 obstack_free (ob, NULL);
281}
282
283/* Return a new cleanup that frees OBSTACK. */
284
285struct cleanup *
286make_cleanup_obstack_free (struct obstack *obstack)
287{
288 return make_cleanup (do_obstack_free, obstack);
289}
290
11cf8741 291static void
d9fcf2fb 292do_ui_file_delete (void *arg)
11cf8741 293{
d9fcf2fb 294 ui_file_delete (arg);
11cf8741
JM
295}
296
297struct cleanup *
d9fcf2fb 298make_cleanup_ui_file_delete (struct ui_file *arg)
11cf8741 299{
e0088cfd 300 return make_cleanup (do_ui_file_delete, arg);
11cf8741
JM
301}
302
8d4d924b
JK
303/* Helper function for make_cleanup_ui_out_redirect_pop. */
304
305static void
306do_ui_out_redirect_pop (void *arg)
307{
308 struct ui_out *uiout = arg;
309
310 if (ui_out_redirect (uiout, NULL) < 0)
311 warning (_("Cannot restore redirection of the current output protocol"));
312}
313
314/* Return a new cleanup that pops the last redirection by ui_out_redirect
315 with NULL parameter. */
316
317struct cleanup *
318make_cleanup_ui_out_redirect_pop (struct ui_out *uiout)
319{
e0088cfd 320 return make_cleanup (do_ui_out_redirect_pop, uiout);
8d4d924b
JK
321}
322
7b90c3f9
JB
323static void
324do_free_section_addr_info (void *arg)
325{
326 free_section_addr_info (arg);
327}
328
329struct cleanup *
330make_cleanup_free_section_addr_info (struct section_addr_info *addrs)
331{
e0088cfd 332 return make_cleanup (do_free_section_addr_info, addrs);
7b90c3f9
JB
333}
334
0b080f59
VP
335struct restore_integer_closure
336{
337 int *variable;
338 int value;
339};
340
341static void
342restore_integer (void *p)
343{
344 struct restore_integer_closure *closure = p;
e0627e85 345
0b080f59
VP
346 *(closure->variable) = closure->value;
347}
7b90c3f9 348
3e43a32a
MS
349/* Remember the current value of *VARIABLE and make it restored when
350 the cleanup is run. */
5da1313b 351
c906108c 352struct cleanup *
0b080f59
VP
353make_cleanup_restore_integer (int *variable)
354{
355 struct restore_integer_closure *c =
356 xmalloc (sizeof (struct restore_integer_closure));
e0627e85 357
0b080f59
VP
358 c->variable = variable;
359 c->value = *variable;
360
e0088cfd 361 return make_cleanup_dtor (restore_integer, (void *) c, xfree);
0b080f59
VP
362}
363
3e43a32a
MS
364/* Remember the current value of *VARIABLE and make it restored when
365 the cleanup is run. */
5da1313b
JK
366
367struct cleanup *
368make_cleanup_restore_uinteger (unsigned int *variable)
369{
370 return make_cleanup_restore_integer ((int *) variable);
371}
372
c0edd9ed
JK
373/* Helper for make_cleanup_unpush_target. */
374
375static void
376do_unpush_target (void *arg)
377{
378 struct target_ops *ops = arg;
379
380 unpush_target (ops);
381}
382
383/* Return a new cleanup that unpushes OPS. */
384
385struct cleanup *
386make_cleanup_unpush_target (struct target_ops *ops)
387{
e0088cfd 388 return make_cleanup (do_unpush_target, ops);
c0edd9ed
JK
389}
390
8e3b41a9
JK
391/* Helper for make_cleanup_htab_delete compile time checking the types. */
392
393static void
394do_htab_delete_cleanup (void *htab_voidp)
395{
396 htab_t htab = htab_voidp;
397
398 htab_delete (htab);
399}
400
401/* Return a new cleanup that deletes HTAB. */
402
403struct cleanup *
404make_cleanup_htab_delete (htab_t htab)
405{
406 return make_cleanup (do_htab_delete_cleanup, htab);
407}
408
5da1313b
JK
409struct restore_ui_file_closure
410{
411 struct ui_file **variable;
412 struct ui_file *value;
413};
414
415static void
416do_restore_ui_file (void *p)
417{
418 struct restore_ui_file_closure *closure = p;
419
420 *(closure->variable) = closure->value;
421}
422
423/* Remember the current value of *VARIABLE and make it restored when
424 the cleanup is run. */
425
426struct cleanup *
427make_cleanup_restore_ui_file (struct ui_file **variable)
428{
429 struct restore_ui_file_closure *c = XNEW (struct restore_ui_file_closure);
430
431 c->variable = variable;
432 c->value = *variable;
433
434 return make_cleanup_dtor (do_restore_ui_file, (void *) c, xfree);
435}
436
028d0ed5
TJB
437/* Helper for make_cleanup_value_free_to_mark. */
438
439static void
440do_value_free_to_mark (void *value)
441{
442 value_free_to_mark ((struct value *) value);
443}
444
445/* Free all values allocated since MARK was obtained by value_mark
446 (except for those released) when the cleanup is run. */
447
448struct cleanup *
449make_cleanup_value_free_to_mark (struct value *mark)
450{
e0088cfd 451 return make_cleanup (do_value_free_to_mark, mark);
028d0ed5
TJB
452}
453
72fc29ff
TT
454/* Helper for make_cleanup_value_free. */
455
456static void
457do_value_free (void *value)
458{
459 value_free (value);
460}
461
462/* Free VALUE. */
463
464struct cleanup *
465make_cleanup_value_free (struct value *value)
466{
e0088cfd 467 return make_cleanup (do_value_free, value);
72fc29ff
TT
468}
469
cb08cc53
JK
470/* Helper for make_cleanup_free_so. */
471
472static void
473do_free_so (void *arg)
474{
475 struct so_list *so = arg;
476
477 free_so (so);
478}
479
480/* Make cleanup handler calling free_so for SO. */
481
482struct cleanup *
483make_cleanup_free_so (struct so_list *so)
484{
e0088cfd 485 return make_cleanup (do_free_so, so);
cb08cc53
JK
486}
487
5b12a61c
JK
488/* Helper for make_cleanup_restore_current_language. */
489
490static void
491do_restore_current_language (void *p)
492{
493 enum language saved_lang = (uintptr_t) p;
494
495 set_language (saved_lang);
496}
497
498/* Remember the current value of CURRENT_LANGUAGE and make it restored when
499 the cleanup is run. */
500
501struct cleanup *
502make_cleanup_restore_current_language (void)
503{
504 enum language saved_lang = current_language->la_language;
505
506 return make_cleanup (do_restore_current_language,
507 (void *) (uintptr_t) saved_lang);
508}
509
c906108c
SS
510/* This function is useful for cleanups.
511 Do
512
c5aa993b
JM
513 foo = xmalloc (...);
514 old_chain = make_cleanup (free_current_contents, &foo);
c906108c
SS
515
516 to arrange to free the object thus allocated. */
517
518void
2f9429ae 519free_current_contents (void *ptr)
c906108c 520{
2f9429ae 521 void **location = ptr;
e0627e85 522
e2f9c474 523 if (location == NULL)
8e65ff28 524 internal_error (__FILE__, __LINE__,
e2e0b3e5 525 _("free_current_contents: NULL pointer"));
2f9429ae 526 if (*location != NULL)
e2f9c474 527 {
b8c9b27d 528 xfree (*location);
e2f9c474
AC
529 *location = NULL;
530 }
c906108c 531}
c906108c 532\f
c5aa993b 533
8731e58e 534
f5a96129
AC
535/* Print a warning message. The first argument STRING is the warning
536 message, used as an fprintf format string, the second is the
537 va_list of arguments for that string. A warning is unfiltered (not
538 paginated) so that the user does not need to page through each
539 screen full of warnings when there are lots of them. */
c906108c
SS
540
541void
f5a96129 542vwarning (const char *string, va_list args)
c906108c 543{
9a4105ab
AC
544 if (deprecated_warning_hook)
545 (*deprecated_warning_hook) (string, args);
f5a96129
AC
546 else
547 {
548 target_terminal_ours ();
581e13c1 549 wrap_here (""); /* Force out any buffered output. */
f5a96129
AC
550 gdb_flush (gdb_stdout);
551 if (warning_pre_print)
306d9ac5 552 fputs_unfiltered (warning_pre_print, gdb_stderr);
f5a96129
AC
553 vfprintf_unfiltered (gdb_stderr, string, args);
554 fprintf_unfiltered (gdb_stderr, "\n");
555 va_end (args);
556 }
c906108c
SS
557}
558
559/* Print a warning message.
560 The first argument STRING is the warning message, used as a fprintf string,
561 and the remaining args are passed as arguments to it.
562 The primary difference between warnings and errors is that a warning
563 does not force the return to command level. */
564
c906108c 565void
8731e58e 566warning (const char *string, ...)
c906108c
SS
567{
568 va_list args;
e0627e85 569
c906108c 570 va_start (args, string);
f5a96129
AC
571 vwarning (string, args);
572 va_end (args);
c906108c
SS
573}
574
c906108c
SS
575/* Print an error message and return to command level.
576 The first argument STRING is the error message, used as a fprintf string,
577 and the remaining args are passed as arguments to it. */
578
c25c4a8b 579void
4ce44c66
JM
580verror (const char *string, va_list args)
581{
6b1b7650 582 throw_verror (GENERIC_ERROR, string, args);
4ce44c66
JM
583}
584
c25c4a8b 585void
8731e58e 586error (const char *string, ...)
c906108c
SS
587{
588 va_list args;
e0627e85 589
c906108c 590 va_start (args, string);
6b1b7650 591 throw_verror (GENERIC_ERROR, string, args);
4ce44c66 592 va_end (args);
c906108c
SS
593}
594
d75e3c94
JJ
595/* Print an error message and quit.
596 The first argument STRING is the error message, used as a fprintf string,
597 and the remaining args are passed as arguments to it. */
598
c25c4a8b 599void
d75e3c94
JJ
600vfatal (const char *string, va_list args)
601{
6b1b7650 602 throw_vfatal (string, args);
d75e3c94
JJ
603}
604
c25c4a8b 605void
d75e3c94
JJ
606fatal (const char *string, ...)
607{
608 va_list args;
e0627e85 609
d75e3c94 610 va_start (args, string);
6b1b7650 611 throw_vfatal (string, args);
d75e3c94
JJ
612 va_end (args);
613}
614
c25c4a8b 615void
d75e3c94 616error_stream (struct ui_file *stream)
2acceee2 617{
759ef836 618 char *message = ui_file_xstrdup (stream, NULL);
e0627e85 619
6b1b7650 620 make_cleanup (xfree, message);
8a3fe4f8 621 error (("%s"), message);
2acceee2 622}
c906108c 623
7991dee7
JK
624/* Dump core trying to increase the core soft limit to hard limit first. */
625
626static void
627dump_core (void)
628{
629#ifdef HAVE_SETRLIMIT
630 struct rlimit rlim = { RLIM_INFINITY, RLIM_INFINITY };
631
632 setrlimit (RLIMIT_CORE, &rlim);
633#endif /* HAVE_SETRLIMIT */
634
635 abort (); /* NOTE: GDB has only three calls to abort(). */
636}
637
3e43a32a
MS
638/* Check whether GDB will be able to dump core using the dump_core
639 function. */
7991dee7
JK
640
641static int
642can_dump_core (const char *reason)
643{
644#ifdef HAVE_GETRLIMIT
645 struct rlimit rlim;
646
647 /* Be quiet and assume we can dump if an error is returned. */
648 if (getrlimit (RLIMIT_CORE, &rlim) != 0)
649 return 1;
650
651 if (rlim.rlim_max == 0)
652 {
653 fprintf_unfiltered (gdb_stderr,
3e43a32a
MS
654 _("%s\nUnable to dump core, use `ulimit -c"
655 " unlimited' before executing GDB next time.\n"),
656 reason);
7991dee7
JK
657 return 0;
658 }
659#endif /* HAVE_GETRLIMIT */
660
661 return 1;
662}
663
3c16cced
PA
664/* Allow the user to configure the debugger behavior with respect to
665 what to do when an internal problem is detected. */
666
667const char internal_problem_ask[] = "ask";
668const char internal_problem_yes[] = "yes";
669const char internal_problem_no[] = "no";
40478521 670static const char *const internal_problem_modes[] =
3c16cced
PA
671{
672 internal_problem_ask,
673 internal_problem_yes,
674 internal_problem_no,
675 NULL
676};
3c16cced 677
581e13c1 678/* Print a message reporting an internal error/warning. Ask the user
dec43320
AC
679 if they want to continue, dump core, or just exit. Return
680 something to indicate a quit. */
c906108c 681
dec43320 682struct internal_problem
c906108c 683{
dec43320 684 const char *name;
3c16cced
PA
685 const char *should_quit;
686 const char *should_dump_core;
dec43320
AC
687};
688
689/* Report a problem, internal to GDB, to the user. Once the problem
690 has been reported, and assuming GDB didn't quit, the caller can
691 either allow execution to resume or throw an error. */
692
a0b31db1 693static void ATTRIBUTE_PRINTF (4, 0)
dec43320 694internal_vproblem (struct internal_problem *problem,
8731e58e 695 const char *file, int line, const char *fmt, va_list ap)
dec43320 696{
dec43320 697 static int dejavu;
375fc983 698 int quit_p;
7be570e7 699 int dump_core_p;
714b1282 700 char *reason;
48be7c1b 701 struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
c906108c 702
dec43320 703 /* Don't allow infinite error/warning recursion. */
714b1282
AC
704 {
705 static char msg[] = "Recursive internal problem.\n";
5d502164 706
714b1282
AC
707 switch (dejavu)
708 {
709 case 0:
710 dejavu = 1;
711 break;
712 case 1:
713 dejavu = 2;
714 fputs_unfiltered (msg, gdb_stderr);
7991dee7 715 abort (); /* NOTE: GDB has only three calls to abort(). */
714b1282
AC
716 default:
717 dejavu = 3;
bf1d7d9c
JB
718 /* Newer GLIBC versions put the warn_unused_result attribute
719 on write, but this is one of those rare cases where
720 ignoring the return value is correct. Casting to (void)
721 does not fix this problem. This is the solution suggested
722 at http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25509. */
723 if (write (STDERR_FILENO, msg, sizeof (msg)) != sizeof (msg))
7991dee7 724 abort (); /* NOTE: GDB has only three calls to abort(). */
714b1282
AC
725 exit (1);
726 }
727 }
c906108c 728
dec43320 729 /* Try to get the message out and at the start of a new line. */
4261bedc 730 target_terminal_ours ();
dec43320
AC
731 begin_line ();
732
714b1282
AC
733 /* Create a string containing the full error/warning message. Need
734 to call query with this full string, as otherwize the reason
735 (error/warning) and question become separated. Format using a
736 style similar to a compiler error message. Include extra detail
737 so that the user knows that they are living on the edge. */
738 {
739 char *msg;
5d502164 740
e623b504 741 msg = xstrvprintf (fmt, ap);
3e43a32a
MS
742 reason = xstrprintf ("%s:%d: %s: %s\n"
743 "A problem internal to GDB has been detected,\n"
744 "further debugging may prove unreliable.",
745 file, line, problem->name, msg);
714b1282
AC
746 xfree (msg);
747 make_cleanup (xfree, reason);
748 }
7be570e7 749
3c16cced 750 if (problem->should_quit == internal_problem_ask)
dec43320 751 {
dec43320 752 /* Default (yes/batch case) is to quit GDB. When in batch mode
3c16cced
PA
753 this lessens the likelihood of GDB going into an infinite
754 loop. */
e360902b 755 if (!confirm)
26bb68be
PP
756 {
757 /* Emit the message and quit. */
758 fputs_unfiltered (reason, gdb_stderr);
759 fputs_unfiltered ("\n", gdb_stderr);
760 quit_p = 1;
761 }
762 else
763 quit_p = query (_("%s\nQuit this debugging session? "), reason);
dec43320 764 }
3c16cced
PA
765 else if (problem->should_quit == internal_problem_yes)
766 quit_p = 1;
767 else if (problem->should_quit == internal_problem_no)
768 quit_p = 0;
769 else
770 internal_error (__FILE__, __LINE__, _("bad switch"));
dec43320 771
3c16cced 772 if (problem->should_dump_core == internal_problem_ask)
dec43320 773 {
7991dee7
JK
774 if (!can_dump_core (reason))
775 dump_core_p = 0;
776 else
777 {
778 /* Default (yes/batch case) is to dump core. This leaves a GDB
779 `dropping' so that it is easier to see that something went
780 wrong in GDB. */
781 dump_core_p = query (_("%s\nCreate a core file of GDB? "), reason);
782 }
dec43320 783 }
3c16cced 784 else if (problem->should_dump_core == internal_problem_yes)
7991dee7 785 dump_core_p = can_dump_core (reason);
3c16cced
PA
786 else if (problem->should_dump_core == internal_problem_no)
787 dump_core_p = 0;
788 else
789 internal_error (__FILE__, __LINE__, _("bad switch"));
7be570e7 790
375fc983 791 if (quit_p)
7be570e7
JM
792 {
793 if (dump_core_p)
7991dee7 794 dump_core ();
375fc983
AC
795 else
796 exit (1);
7be570e7
JM
797 }
798 else
799 {
800 if (dump_core_p)
375fc983 801 {
9b265ec2 802#ifdef HAVE_WORKING_FORK
375fc983 803 if (fork () == 0)
7991dee7 804 dump_core ();
9b265ec2 805#endif
375fc983 806 }
7be570e7 807 }
96baa820
JM
808
809 dejavu = 0;
48be7c1b 810 do_cleanups (cleanup);
dec43320
AC
811}
812
813static struct internal_problem internal_error_problem = {
3c16cced 814 "internal-error", internal_problem_ask, internal_problem_ask
dec43320
AC
815};
816
c25c4a8b 817void
8731e58e 818internal_verror (const char *file, int line, const char *fmt, va_list ap)
dec43320
AC
819{
820 internal_vproblem (&internal_error_problem, file, line, fmt, ap);
8150913b 821 fatal (_("Command aborted."));
c906108c
SS
822}
823
c25c4a8b 824void
8e65ff28 825internal_error (const char *file, int line, const char *string, ...)
4ce44c66
JM
826{
827 va_list ap;
e0627e85 828
4ce44c66 829 va_start (ap, string);
8e65ff28 830 internal_verror (file, line, string, ap);
4ce44c66
JM
831 va_end (ap);
832}
833
dec43320 834static struct internal_problem internal_warning_problem = {
3c16cced 835 "internal-warning", internal_problem_ask, internal_problem_ask
dec43320
AC
836};
837
838void
8731e58e 839internal_vwarning (const char *file, int line, const char *fmt, va_list ap)
dec43320
AC
840{
841 internal_vproblem (&internal_warning_problem, file, line, fmt, ap);
842}
843
844void
845internal_warning (const char *file, int line, const char *string, ...)
846{
847 va_list ap;
e0627e85 848
dec43320
AC
849 va_start (ap, string);
850 internal_vwarning (file, line, string, ap);
851 va_end (ap);
852}
853
3c16cced
PA
854/* Dummy functions to keep add_prefix_cmd happy. */
855
856static void
857set_internal_problem_cmd (char *args, int from_tty)
858{
859}
860
861static void
862show_internal_problem_cmd (char *args, int from_tty)
863{
864}
865
866/* When GDB reports an internal problem (error or warning) it gives
867 the user the opportunity to quit GDB and/or create a core file of
868 the current debug session. This function registers a few commands
869 that make it possible to specify that GDB should always or never
870 quit or create a core file, without asking. The commands look
871 like:
872
873 maint set PROBLEM-NAME quit ask|yes|no
874 maint show PROBLEM-NAME quit
875 maint set PROBLEM-NAME corefile ask|yes|no
876 maint show PROBLEM-NAME corefile
877
878 Where PROBLEM-NAME is currently "internal-error" or
879 "internal-warning". */
880
881static void
882add_internal_problem_command (struct internal_problem *problem)
883{
884 struct cmd_list_element **set_cmd_list;
885 struct cmd_list_element **show_cmd_list;
886 char *set_doc;
887 char *show_doc;
888
889 set_cmd_list = xmalloc (sizeof (*set_cmd_list));
890 show_cmd_list = xmalloc (sizeof (*set_cmd_list));
891 *set_cmd_list = NULL;
892 *show_cmd_list = NULL;
893
894 set_doc = xstrprintf (_("Configure what GDB does when %s is detected."),
895 problem->name);
896
897 show_doc = xstrprintf (_("Show what GDB does when %s is detected."),
898 problem->name);
899
900 add_prefix_cmd ((char*) problem->name,
901 class_maintenance, set_internal_problem_cmd, set_doc,
902 set_cmd_list,
c4f7c687
MK
903 concat ("maintenance set ", problem->name, " ",
904 (char *) NULL),
3c16cced
PA
905 0/*allow-unknown*/, &maintenance_set_cmdlist);
906
907 add_prefix_cmd ((char*) problem->name,
908 class_maintenance, show_internal_problem_cmd, show_doc,
909 show_cmd_list,
c4f7c687
MK
910 concat ("maintenance show ", problem->name, " ",
911 (char *) NULL),
3c16cced
PA
912 0/*allow-unknown*/, &maintenance_show_cmdlist);
913
3e43a32a
MS
914 set_doc = xstrprintf (_("Set whether GDB should quit "
915 "when an %s is detected"),
3c16cced 916 problem->name);
3e43a32a
MS
917 show_doc = xstrprintf (_("Show whether GDB will quit "
918 "when an %s is detected"),
3c16cced
PA
919 problem->name);
920 add_setshow_enum_cmd ("quit", class_maintenance,
921 internal_problem_modes,
922 &problem->should_quit,
923 set_doc,
924 show_doc,
925 NULL, /* help_doc */
926 NULL, /* setfunc */
927 NULL, /* showfunc */
928 set_cmd_list,
929 show_cmd_list);
930
1eefb858
TT
931 xfree (set_doc);
932 xfree (show_doc);
933
3e43a32a
MS
934 set_doc = xstrprintf (_("Set whether GDB should create a core "
935 "file of GDB when %s is detected"),
3c16cced 936 problem->name);
3e43a32a
MS
937 show_doc = xstrprintf (_("Show whether GDB will create a core "
938 "file of GDB when %s is detected"),
3c16cced
PA
939 problem->name);
940 add_setshow_enum_cmd ("corefile", class_maintenance,
941 internal_problem_modes,
942 &problem->should_dump_core,
943 set_doc,
944 show_doc,
945 NULL, /* help_doc */
946 NULL, /* setfunc */
947 NULL, /* showfunc */
948 set_cmd_list,
949 show_cmd_list);
1eefb858
TT
950
951 xfree (set_doc);
952 xfree (show_doc);
3c16cced
PA
953}
954
0cf4063e
JB
955/* Return a newly allocated string, containing the PREFIX followed
956 by the system error message for errno (separated by a colon).
957
958 The result must be deallocated after use. */
959
960static char *
961perror_string (const char *prefix)
962{
963 char *err;
964 char *combined;
965
966 err = safe_strerror (errno);
967 combined = (char *) xmalloc (strlen (err) + strlen (prefix) + 3);
968 strcpy (combined, prefix);
969 strcat (combined, ": ");
970 strcat (combined, err);
971
972 return combined;
973}
974
c906108c 975/* Print the system error message for errno, and also mention STRING
598d3636
JK
976 as the file name for which the error was encountered. Use ERRCODE
977 for the thrown exception. Then return to command level. */
c906108c 978
c25c4a8b 979void
598d3636 980throw_perror_with_name (enum errors errcode, const char *string)
c906108c 981{
c906108c
SS
982 char *combined;
983
0cf4063e
JB
984 combined = perror_string (string);
985 make_cleanup (xfree, combined);
c906108c
SS
986
987 /* I understand setting these is a matter of taste. Still, some people
988 may clear errno but not know about bfd_error. Doing this here is not
581e13c1 989 unreasonable. */
c906108c
SS
990 bfd_set_error (bfd_error_no_error);
991 errno = 0;
992
598d3636
JK
993 throw_error (errcode, _("%s."), combined);
994}
995
996/* See throw_perror_with_name, ERRCODE defaults here to GENERIC_ERROR. */
997
998void
999perror_with_name (const char *string)
1000{
1001 throw_perror_with_name (GENERIC_ERROR, string);
c906108c
SS
1002}
1003
7c647d61
JB
1004/* Same as perror_with_name except that it prints a warning instead
1005 of throwing an error. */
1006
1007void
1008perror_warning_with_name (const char *string)
1009{
1010 char *combined;
1011
1012 combined = perror_string (string);
1013 warning (_("%s"), combined);
1014 xfree (combined);
1015}
1016
c906108c
SS
1017/* Print the system error message for ERRCODE, and also mention STRING
1018 as the file name for which the error was encountered. */
1019
1020void
6972bc8b 1021print_sys_errmsg (const char *string, int errcode)
c906108c
SS
1022{
1023 char *err;
1024 char *combined;
1025
1026 err = safe_strerror (errcode);
1027 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
1028 strcpy (combined, string);
1029 strcat (combined, ": ");
1030 strcat (combined, err);
1031
1032 /* We want anything which was printed on stdout to come out first, before
1033 this message. */
1034 gdb_flush (gdb_stdout);
1035 fprintf_unfiltered (gdb_stderr, "%s.\n", combined);
1036}
1037
1038/* Control C eventually causes this to be called, at a convenient time. */
1039
1040void
fba45db2 1041quit (void)
c906108c 1042{
7be570e7
JM
1043#ifdef __MSDOS__
1044 /* No steenking SIGINT will ever be coming our way when the
1045 program is resumed. Don't lie. */
e06e2353 1046 fatal ("Quit");
7be570e7 1047#else
c906108c 1048 if (job_control
8731e58e
AC
1049 /* If there is no terminal switching for this target, then we can't
1050 possibly get screwed by the lack of job control. */
c906108c 1051 || current_target.to_terminal_ours == NULL)
e06e2353 1052 fatal ("Quit");
c906108c 1053 else
e06e2353 1054 fatal ("Quit (expect signal SIGINT when the program is resumed)");
7be570e7 1055#endif
c906108c
SS
1056}
1057
c906108c 1058\f
c906108c 1059/* Called when a memory allocation fails, with the number of bytes of
581e13c1 1060 memory requested in SIZE. */
c906108c 1061
c25c4a8b 1062void
d26e3629 1063malloc_failure (long size)
c906108c
SS
1064{
1065 if (size > 0)
1066 {
8e65ff28 1067 internal_error (__FILE__, __LINE__,
e2e0b3e5 1068 _("virtual memory exhausted: can't allocate %ld bytes."),
8731e58e 1069 size);
c906108c
SS
1070 }
1071 else
1072 {
e2e0b3e5 1073 internal_error (__FILE__, __LINE__, _("virtual memory exhausted."));
c906108c
SS
1074 }
1075}
1076
c906108c
SS
1077/* My replacement for the read system call.
1078 Used like `read' but keeps going if `read' returns too soon. */
1079
1080int
fba45db2 1081myread (int desc, char *addr, int len)
c906108c 1082{
52f0bd74 1083 int val;
c906108c
SS
1084 int orglen = len;
1085
1086 while (len > 0)
1087 {
1088 val = read (desc, addr, len);
1089 if (val < 0)
1090 return val;
1091 if (val == 0)
1092 return orglen - len;
1093 len -= val;
1094 addr += val;
1095 }
1096 return orglen;
1097}
d26e3629 1098
c906108c 1099void
aa1ee363 1100print_spaces (int n, struct ui_file *file)
c906108c 1101{
392a587b 1102 fputs_unfiltered (n_spaces (n), file);
c906108c
SS
1103}
1104
1105/* Print a host address. */
1106
1107void
ac16bf07 1108gdb_print_host_address (const void *addr, struct ui_file *stream)
c906108c 1109{
ea8992ce 1110 fprintf_filtered (stream, "%s", host_address_to_string (addr));
c906108c 1111}
c906108c 1112\f
c5aa993b 1113
dc92e161
TT
1114/* A cleanup function that calls regfree. */
1115
1116static void
1117do_regfree_cleanup (void *r)
1118{
1119 regfree (r);
1120}
1121
1122/* Create a new cleanup that frees the compiled regular expression R. */
1123
1124struct cleanup *
1125make_regfree_cleanup (regex_t *r)
1126{
1127 return make_cleanup (do_regfree_cleanup, r);
1128}
1129
1130/* Return an xmalloc'd error message resulting from a regular
1131 expression compilation failure. */
1132
1133char *
1134get_regcomp_error (int code, regex_t *rx)
1135{
1136 size_t length = regerror (code, rx, NULL, 0);
1137 char *result = xmalloc (length);
1138
1139 regerror (code, rx, result, length);
1140 return result;
1141}
1142
cc16e6c9 1143/* Compile a regexp and throw an exception on error. This returns a
db26349c
TT
1144 cleanup to free the resulting pattern on success. RX must not be
1145 NULL. */
cc16e6c9
TT
1146
1147struct cleanup *
1148compile_rx_or_error (regex_t *pattern, const char *rx, const char *message)
1149{
1150 int code;
1151
db26349c 1152 gdb_assert (rx != NULL);
cc16e6c9
TT
1153
1154 code = regcomp (pattern, rx, REG_NOSUB);
1155 if (code != 0)
1156 {
1157 char *err = get_regcomp_error (code, pattern);
1158
1159 make_cleanup (xfree, err);
1160 error (("%s: %s"), message, err);
1161 }
1162
1163 return make_regfree_cleanup (pattern);
1164}
1165
dc92e161
TT
1166\f
1167
981c7f5a 1168/* This function supports the query, nquery, and yquery functions.
cbdeadca 1169 Ask user a y-or-n question and return 0 if answer is no, 1 if
981c7f5a
DJ
1170 answer is yes, or default the answer to the specified default
1171 (for yquery or nquery). DEFCHAR may be 'y' or 'n' to provide a
1172 default answer, or '\0' for no default.
cbdeadca
JJ
1173 CTLSTR is the control string and should end in "? ". It should
1174 not say how to answer, because we do that.
1175 ARGS are the arguments passed along with the CTLSTR argument to
1176 printf. */
1177
a0b31db1 1178static int ATTRIBUTE_PRINTF (1, 0)
cbdeadca
JJ
1179defaulted_query (const char *ctlstr, const char defchar, va_list args)
1180{
1181 int answer;
1182 int ans2;
1183 int retval;
1184 int def_value;
1185 char def_answer, not_def_answer;
981c7f5a 1186 char *y_string, *n_string, *question;
260c0b2a
DE
1187 /* Used to add duration we waited for user to respond to
1188 prompt_for_continue_wait_time. */
1189 struct timeval prompt_started, prompt_ended, prompt_delta;
cbdeadca
JJ
1190
1191 /* Set up according to which answer is the default. */
981c7f5a
DJ
1192 if (defchar == '\0')
1193 {
1194 def_value = 1;
1195 def_answer = 'Y';
1196 not_def_answer = 'N';
1197 y_string = "y";
1198 n_string = "n";
1199 }
1200 else if (defchar == 'y')
cbdeadca
JJ
1201 {
1202 def_value = 1;
1203 def_answer = 'Y';
1204 not_def_answer = 'N';
1205 y_string = "[y]";
1206 n_string = "n";
1207 }
1208 else
1209 {
1210 def_value = 0;
1211 def_answer = 'N';
1212 not_def_answer = 'Y';
1213 y_string = "y";
1214 n_string = "[n]";
1215 }
1216
981c7f5a 1217 /* Automatically answer the default value if the user did not want
a502cf95 1218 prompts or the command was issued with the server prefix. */
e360902b 1219 if (!confirm || server_command)
981c7f5a
DJ
1220 return def_value;
1221
1222 /* If input isn't coming from the user directly, just say what
7a01c6e0 1223 question we're asking, and then answer the default automatically. This
981c7f5a
DJ
1224 way, important error messages don't get lost when talking to GDB
1225 over a pipe. */
c63a1f86 1226 if (! input_from_terminal_p ())
981c7f5a
DJ
1227 {
1228 wrap_here ("");
1229 vfprintf_filtered (gdb_stdout, ctlstr, args);
1230
3e43a32a
MS
1231 printf_filtered (_("(%s or %s) [answered %c; "
1232 "input not from terminal]\n"),
981c7f5a
DJ
1233 y_string, n_string, def_answer);
1234 gdb_flush (gdb_stdout);
1235
1236 return def_value;
1237 }
1238
9a4105ab 1239 if (deprecated_query_hook)
cbdeadca 1240 {
9a4105ab 1241 return deprecated_query_hook (ctlstr, args);
cbdeadca
JJ
1242 }
1243
981c7f5a
DJ
1244 /* Format the question outside of the loop, to avoid reusing args. */
1245 question = xstrvprintf (ctlstr, args);
1246
260c0b2a
DE
1247 /* Used for calculating time spend waiting for user. */
1248 gettimeofday (&prompt_started, NULL);
1249
cbdeadca
JJ
1250 while (1)
1251 {
581e13c1 1252 wrap_here (""); /* Flush any buffered output. */
cbdeadca
JJ
1253 gdb_flush (gdb_stdout);
1254
1255 if (annotation_level > 1)
a3f17187 1256 printf_filtered (("\n\032\032pre-query\n"));
cbdeadca 1257
981c7f5a 1258 fputs_filtered (question, gdb_stdout);
a3f17187 1259 printf_filtered (_("(%s or %s) "), y_string, n_string);
cbdeadca
JJ
1260
1261 if (annotation_level > 1)
a3f17187 1262 printf_filtered (("\n\032\032query\n"));
cbdeadca
JJ
1263
1264 wrap_here ("");
1265 gdb_flush (gdb_stdout);
1266
1267 answer = fgetc (stdin);
8626589c
JB
1268
1269 /* We expect fgetc to block until a character is read. But
1270 this may not be the case if the terminal was opened with
1271 the NONBLOCK flag. In that case, if there is nothing to
1272 read on stdin, fgetc returns EOF, but also sets the error
1273 condition flag on stdin and errno to EAGAIN. With a true
1274 EOF, stdin's error condition flag is not set.
1275
1276 A situation where this behavior was observed is a pseudo
1277 terminal on AIX. */
1278 while (answer == EOF && ferror (stdin) && errno == EAGAIN)
1279 {
1280 /* Not a real EOF. Wait a little while and try again until
1281 we read something. */
1282 clearerr (stdin);
1283 gdb_usleep (10000);
1284 answer = fgetc (stdin);
1285 }
1286
cbdeadca
JJ
1287 clearerr (stdin); /* in case of C-d */
1288 if (answer == EOF) /* C-d */
1289 {
fa3fd85b 1290 printf_filtered ("EOF [assumed %c]\n", def_answer);
cbdeadca
JJ
1291 retval = def_value;
1292 break;
1293 }
581e13c1 1294 /* Eat rest of input line, to EOF or newline. */
cbdeadca
JJ
1295 if (answer != '\n')
1296 do
1297 {
1298 ans2 = fgetc (stdin);
1299 clearerr (stdin);
1300 }
1301 while (ans2 != EOF && ans2 != '\n' && ans2 != '\r');
1302
1303 if (answer >= 'a')
1304 answer -= 040;
1305 /* Check answer. For the non-default, the user must specify
1306 the non-default explicitly. */
1307 if (answer == not_def_answer)
1308 {
1309 retval = !def_value;
1310 break;
1311 }
981c7f5a
DJ
1312 /* Otherwise, if a default was specified, the user may either
1313 specify the required input or have it default by entering
1314 nothing. */
1315 if (answer == def_answer
1316 || (defchar != '\0' &&
1317 (answer == '\n' || answer == '\r' || answer == EOF)))
cbdeadca
JJ
1318 {
1319 retval = def_value;
1320 break;
1321 }
1322 /* Invalid entries are not defaulted and require another selection. */
a3f17187 1323 printf_filtered (_("Please answer %s or %s.\n"),
cbdeadca
JJ
1324 y_string, n_string);
1325 }
1326
260c0b2a
DE
1327 /* Add time spend in this routine to prompt_for_continue_wait_time. */
1328 gettimeofday (&prompt_ended, NULL);
1329 timeval_sub (&prompt_delta, &prompt_ended, &prompt_started);
1330 timeval_add (&prompt_for_continue_wait_time,
1331 &prompt_for_continue_wait_time, &prompt_delta);
1332
981c7f5a 1333 xfree (question);
cbdeadca 1334 if (annotation_level > 1)
a3f17187 1335 printf_filtered (("\n\032\032post-query\n"));
cbdeadca
JJ
1336 return retval;
1337}
1338\f
1339
1340/* Ask user a y-or-n question and return 0 if answer is no, 1 if
1341 answer is yes, or 0 if answer is defaulted.
1342 Takes three args which are given to printf to print the question.
1343 The first, a control string, should end in "? ".
1344 It should not say how to answer, because we do that. */
1345
1346int
1347nquery (const char *ctlstr, ...)
1348{
1349 va_list args;
899500d6 1350 int ret;
cbdeadca
JJ
1351
1352 va_start (args, ctlstr);
899500d6 1353 ret = defaulted_query (ctlstr, 'n', args);
cbdeadca 1354 va_end (args);
899500d6 1355 return ret;
cbdeadca
JJ
1356}
1357
1358/* Ask user a y-or-n question and return 0 if answer is no, 1 if
1359 answer is yes, or 1 if answer is defaulted.
1360 Takes three args which are given to printf to print the question.
1361 The first, a control string, should end in "? ".
1362 It should not say how to answer, because we do that. */
1363
1364int
1365yquery (const char *ctlstr, ...)
1366{
1367 va_list args;
899500d6 1368 int ret;
cbdeadca
JJ
1369
1370 va_start (args, ctlstr);
899500d6 1371 ret = defaulted_query (ctlstr, 'y', args);
cbdeadca 1372 va_end (args);
899500d6 1373 return ret;
cbdeadca
JJ
1374}
1375
981c7f5a
DJ
1376/* Ask user a y-or-n question and return 1 iff answer is yes.
1377 Takes three args which are given to printf to print the question.
1378 The first, a control string, should end in "? ".
1379 It should not say how to answer, because we do that. */
1380
1381int
1382query (const char *ctlstr, ...)
1383{
1384 va_list args;
899500d6 1385 int ret;
981c7f5a
DJ
1386
1387 va_start (args, ctlstr);
899500d6 1388 ret = defaulted_query (ctlstr, '\0', args);
981c7f5a 1389 va_end (args);
899500d6 1390 return ret;
981c7f5a
DJ
1391}
1392
6c7a06a3
TT
1393/* A helper for parse_escape that converts a host character to a
1394 target character. C is the host character. If conversion is
1395 possible, then the target character is stored in *TARGET_C and the
1396 function returns 1. Otherwise, the function returns 0. */
1397
1398static int
f870a310 1399host_char_to_target (struct gdbarch *gdbarch, int c, int *target_c)
234b45d4 1400{
6c7a06a3
TT
1401 struct obstack host_data;
1402 char the_char = c;
1403 struct cleanup *cleanups;
1404 int result = 0;
234b45d4 1405
6c7a06a3
TT
1406 obstack_init (&host_data);
1407 cleanups = make_cleanup_obstack_free (&host_data);
234b45d4 1408
f870a310 1409 convert_between_encodings (target_charset (gdbarch), host_charset (),
ac91cd70
PA
1410 (gdb_byte *) &the_char, 1, 1,
1411 &host_data, translit_none);
6c7a06a3
TT
1412
1413 if (obstack_object_size (&host_data) == 1)
1414 {
1415 result = 1;
1416 *target_c = *(char *) obstack_base (&host_data);
1417 }
1418
1419 do_cleanups (cleanups);
1420 return result;
234b45d4
KB
1421}
1422
c906108c
SS
1423/* Parse a C escape sequence. STRING_PTR points to a variable
1424 containing a pointer to the string to parse. That pointer
1425 should point to the character after the \. That pointer
1426 is updated past the characters we use. The value of the
1427 escape sequence is returned.
1428
1429 A negative value means the sequence \ newline was seen,
1430 which is supposed to be equivalent to nothing at all.
1431
1432 If \ is followed by a null character, we return a negative
1433 value and leave the string pointer pointing at the null character.
1434
1435 If \ is followed by 000, we return 0 and leave the string pointer
1436 after the zeros. A value of 0 does not mean end of string. */
1437
1438int
d7561cbb 1439parse_escape (struct gdbarch *gdbarch, const char **string_ptr)
c906108c 1440{
581e13c1 1441 int target_char = -2; /* Initialize to avoid GCC warnings. */
52f0bd74 1442 int c = *(*string_ptr)++;
e0627e85 1443
6c7a06a3
TT
1444 switch (c)
1445 {
8731e58e
AC
1446 case '\n':
1447 return -2;
1448 case 0:
1449 (*string_ptr)--;
1450 return 0;
8731e58e
AC
1451
1452 case '0':
1453 case '1':
1454 case '2':
1455 case '3':
1456 case '4':
1457 case '5':
1458 case '6':
1459 case '7':
1460 {
6c7a06a3 1461 int i = host_hex_value (c);
aa1ee363 1462 int count = 0;
8731e58e
AC
1463 while (++count < 3)
1464 {
5cb316ef 1465 c = (**string_ptr);
6c7a06a3 1466 if (isdigit (c) && c != '8' && c != '9')
8731e58e 1467 {
5cb316ef 1468 (*string_ptr)++;
8731e58e 1469 i *= 8;
6c7a06a3 1470 i += host_hex_value (c);
8731e58e
AC
1471 }
1472 else
1473 {
8731e58e
AC
1474 break;
1475 }
1476 }
1477 return i;
1478 }
6c7a06a3
TT
1479
1480 case 'a':
1481 c = '\a';
1482 break;
1483 case 'b':
1484 c = '\b';
1485 break;
1486 case 'f':
1487 c = '\f';
1488 break;
1489 case 'n':
1490 c = '\n';
1491 break;
1492 case 'r':
1493 c = '\r';
1494 break;
1495 case 't':
1496 c = '\t';
1497 break;
1498 case 'v':
1499 c = '\v';
1500 break;
1501
1502 default:
1503 break;
1504 }
1505
f870a310 1506 if (!host_char_to_target (gdbarch, c, &target_char))
3351ea09
JB
1507 error (_("The escape sequence `\\%c' is equivalent to plain `%c',"
1508 " which has no equivalent\nin the `%s' character set."),
905b671b 1509 c, c, target_charset (gdbarch));
6c7a06a3 1510 return target_char;
c906108c
SS
1511}
1512\f
1513/* Print the character C on STREAM as part of the contents of a literal
1514 string whose delimiter is QUOTER. Note that this routine should only
1515 be call for printing things which are independent of the language
581e13c1 1516 of the program being debugged. */
c906108c 1517
43e526b9 1518static void
74f832da 1519printchar (int c, void (*do_fputs) (const char *, struct ui_file *),
bee0189a
DJ
1520 void (*do_fprintf) (struct ui_file *, const char *, ...)
1521 ATTRIBUTE_FPTR_PRINTF_2, struct ui_file *stream, int quoter)
c906108c 1522{
c906108c
SS
1523 c &= 0xFF; /* Avoid sign bit follies */
1524
c5aa993b
JM
1525 if (c < 0x20 || /* Low control chars */
1526 (c >= 0x7F && c < 0xA0) || /* DEL, High controls */
1527 (sevenbit_strings && c >= 0x80))
1528 { /* high order bit set */
1529 switch (c)
1530 {
1531 case '\n':
43e526b9 1532 do_fputs ("\\n", stream);
c5aa993b
JM
1533 break;
1534 case '\b':
43e526b9 1535 do_fputs ("\\b", stream);
c5aa993b
JM
1536 break;
1537 case '\t':
43e526b9 1538 do_fputs ("\\t", stream);
c5aa993b
JM
1539 break;
1540 case '\f':
43e526b9 1541 do_fputs ("\\f", stream);
c5aa993b
JM
1542 break;
1543 case '\r':
43e526b9 1544 do_fputs ("\\r", stream);
c5aa993b
JM
1545 break;
1546 case '\033':
43e526b9 1547 do_fputs ("\\e", stream);
c5aa993b
JM
1548 break;
1549 case '\007':
43e526b9 1550 do_fputs ("\\a", stream);
c5aa993b
JM
1551 break;
1552 default:
43e526b9 1553 do_fprintf (stream, "\\%.3o", (unsigned int) c);
c5aa993b
JM
1554 break;
1555 }
1556 }
1557 else
1558 {
1559 if (c == '\\' || c == quoter)
43e526b9
JM
1560 do_fputs ("\\", stream);
1561 do_fprintf (stream, "%c", c);
c5aa993b 1562 }
c906108c 1563}
43e526b9
JM
1564
1565/* Print the character C on STREAM as part of the contents of a
1566 literal string whose delimiter is QUOTER. Note that these routines
1567 should only be call for printing things which are independent of
581e13c1 1568 the language of the program being debugged. */
43e526b9
JM
1569
1570void
fba45db2 1571fputstr_filtered (const char *str, int quoter, struct ui_file *stream)
43e526b9
JM
1572{
1573 while (*str)
1574 printchar (*str++, fputs_filtered, fprintf_filtered, stream, quoter);
1575}
1576
1577void
fba45db2 1578fputstr_unfiltered (const char *str, int quoter, struct ui_file *stream)
43e526b9
JM
1579{
1580 while (*str)
1581 printchar (*str++, fputs_unfiltered, fprintf_unfiltered, stream, quoter);
1582}
1583
0876f84a
DJ
1584void
1585fputstrn_filtered (const char *str, int n, int quoter,
1586 struct ui_file *stream)
1587{
1588 int i;
e0627e85 1589
0876f84a
DJ
1590 for (i = 0; i < n; i++)
1591 printchar (str[i], fputs_filtered, fprintf_filtered, stream, quoter);
1592}
1593
43e526b9 1594void
8731e58e
AC
1595fputstrn_unfiltered (const char *str, int n, int quoter,
1596 struct ui_file *stream)
43e526b9
JM
1597{
1598 int i;
5d502164 1599
43e526b9
JM
1600 for (i = 0; i < n; i++)
1601 printchar (str[i], fputs_unfiltered, fprintf_unfiltered, stream, quoter);
1602}
c906108c 1603\f
c5aa993b 1604
c906108c
SS
1605/* Number of lines per page or UINT_MAX if paging is disabled. */
1606static unsigned int lines_per_page;
920d2a44
AC
1607static void
1608show_lines_per_page (struct ui_file *file, int from_tty,
1609 struct cmd_list_element *c, const char *value)
1610{
3e43a32a
MS
1611 fprintf_filtered (file,
1612 _("Number of lines gdb thinks are in a page is %s.\n"),
920d2a44
AC
1613 value);
1614}
eb0d3137 1615
cbfbd72a 1616/* Number of chars per line or UINT_MAX if line folding is disabled. */
c906108c 1617static unsigned int chars_per_line;
920d2a44
AC
1618static void
1619show_chars_per_line (struct ui_file *file, int from_tty,
1620 struct cmd_list_element *c, const char *value)
1621{
3e43a32a
MS
1622 fprintf_filtered (file,
1623 _("Number of characters gdb thinks "
1624 "are in a line is %s.\n"),
920d2a44
AC
1625 value);
1626}
eb0d3137 1627
c906108c
SS
1628/* Current count of lines printed on this page, chars on this line. */
1629static unsigned int lines_printed, chars_printed;
1630
1631/* Buffer and start column of buffered text, for doing smarter word-
1632 wrapping. When someone calls wrap_here(), we start buffering output
1633 that comes through fputs_filtered(). If we see a newline, we just
1634 spit it out and forget about the wrap_here(). If we see another
1635 wrap_here(), we spit it out and remember the newer one. If we see
1636 the end of the line, we spit out a newline, the indent, and then
1637 the buffered output. */
1638
1639/* Malloc'd buffer with chars_per_line+2 bytes. Contains characters which
1640 are waiting to be output (they have already been counted in chars_printed).
1641 When wrap_buffer[0] is null, the buffer is empty. */
1642static char *wrap_buffer;
1643
1644/* Pointer in wrap_buffer to the next character to fill. */
1645static char *wrap_pointer;
1646
1647/* String to indent by if the wrap occurs. Must not be NULL if wrap_column
1648 is non-zero. */
1649static char *wrap_indent;
1650
1651/* Column number on the screen where wrap_buffer begins, or 0 if wrapping
1652 is not in effect. */
1653static int wrap_column;
c906108c 1654\f
c5aa993b 1655
eb0d3137
MK
1656/* Inialize the number of lines per page and chars per line. */
1657
c906108c 1658void
fba45db2 1659init_page_info (void)
c906108c 1660{
5da1313b
JK
1661 if (batch_flag)
1662 {
1663 lines_per_page = UINT_MAX;
1664 chars_per_line = UINT_MAX;
1665 }
1666 else
c906108c 1667#if defined(TUI)
5ecb1806 1668 if (!tui_get_command_dimension (&chars_per_line, &lines_per_page))
c906108c
SS
1669#endif
1670 {
eb0d3137 1671 int rows, cols;
c906108c 1672
ec145965
EZ
1673#if defined(__GO32__)
1674 rows = ScreenRows ();
1675 cols = ScreenCols ();
1676 lines_per_page = rows;
1677 chars_per_line = cols;
1678#else
eb0d3137
MK
1679 /* Make sure Readline has initialized its terminal settings. */
1680 rl_reset_terminal (NULL);
c906108c 1681
eb0d3137
MK
1682 /* Get the screen size from Readline. */
1683 rl_get_screen_size (&rows, &cols);
1684 lines_per_page = rows;
1685 chars_per_line = cols;
c906108c 1686
1a66331e
PM
1687 /* Readline should have fetched the termcap entry for us.
1688 Only try to use tgetnum function if rl_get_screen_size
1689 did not return a useful value. */
1690 if (((rows <= 0) && (tgetnum ("li") < 0))
1691 /* Also disable paging if inside EMACS. */
1692 || getenv ("EMACS"))
eb0d3137 1693 {
1a66331e
PM
1694 /* The number of lines per page is not mentioned in the terminal
1695 description or EMACS evironment variable is set. This probably
1696 means that paging is not useful, so disable paging. */
eb0d3137
MK
1697 lines_per_page = UINT_MAX;
1698 }
c906108c 1699
c906108c 1700 /* If the output is not a terminal, don't paginate it. */
d9fcf2fb 1701 if (!ui_file_isatty (gdb_stdout))
c5aa993b 1702 lines_per_page = UINT_MAX;
eb0d3137 1703#endif
ec145965 1704 }
eb0d3137
MK
1705
1706 set_screen_size ();
c5aa993b 1707 set_width ();
c906108c
SS
1708}
1709
5da1313b
JK
1710/* Helper for make_cleanup_restore_page_info. */
1711
1712static void
1713do_restore_page_info_cleanup (void *arg)
1714{
1715 set_screen_size ();
1716 set_width ();
1717}
1718
1719/* Provide cleanup for restoring the terminal size. */
1720
1721struct cleanup *
1722make_cleanup_restore_page_info (void)
1723{
1724 struct cleanup *back_to;
1725
1726 back_to = make_cleanup (do_restore_page_info_cleanup, NULL);
1727 make_cleanup_restore_uinteger (&lines_per_page);
1728 make_cleanup_restore_uinteger (&chars_per_line);
1729
1730 return back_to;
1731}
1732
1733/* Temporarily set BATCH_FLAG and the associated unlimited terminal size.
1734 Provide cleanup for restoring the original state. */
1735
1736struct cleanup *
1737set_batch_flag_and_make_cleanup_restore_page_info (void)
1738{
1739 struct cleanup *back_to = make_cleanup_restore_page_info ();
1740
1741 make_cleanup_restore_integer (&batch_flag);
1742 batch_flag = 1;
1743 init_page_info ();
1744
1745 return back_to;
1746}
1747
eb0d3137
MK
1748/* Set the screen size based on LINES_PER_PAGE and CHARS_PER_LINE. */
1749
1750static void
1751set_screen_size (void)
1752{
1753 int rows = lines_per_page;
1754 int cols = chars_per_line;
1755
1756 if (rows <= 0)
1757 rows = INT_MAX;
1758
1759 if (cols <= 0)
0caa462c 1760 cols = INT_MAX;
eb0d3137
MK
1761
1762 /* Update Readline's idea of the terminal size. */
1763 rl_set_screen_size (rows, cols);
1764}
1765
1766/* Reinitialize WRAP_BUFFER according to the current value of
1767 CHARS_PER_LINE. */
1768
c906108c 1769static void
fba45db2 1770set_width (void)
c906108c
SS
1771{
1772 if (chars_per_line == 0)
c5aa993b 1773 init_page_info ();
c906108c
SS
1774
1775 if (!wrap_buffer)
1776 {
1777 wrap_buffer = (char *) xmalloc (chars_per_line + 2);
1778 wrap_buffer[0] = '\0';
1779 }
1780 else
1781 wrap_buffer = (char *) xrealloc (wrap_buffer, chars_per_line + 2);
eb0d3137 1782 wrap_pointer = wrap_buffer; /* Start it at the beginning. */
c906108c
SS
1783}
1784
c5aa993b 1785static void
fba45db2 1786set_width_command (char *args, int from_tty, struct cmd_list_element *c)
c906108c 1787{
eb0d3137 1788 set_screen_size ();
c906108c
SS
1789 set_width ();
1790}
1791
eb0d3137
MK
1792static void
1793set_height_command (char *args, int from_tty, struct cmd_list_element *c)
1794{
1795 set_screen_size ();
1796}
1797
c906108c
SS
1798/* Wait, so the user can read what's on the screen. Prompt the user
1799 to continue by pressing RETURN. */
1800
1801static void
fba45db2 1802prompt_for_continue (void)
c906108c
SS
1803{
1804 char *ignore;
1805 char cont_prompt[120];
260c0b2a
DE
1806 /* Used to add duration we waited for user to respond to
1807 prompt_for_continue_wait_time. */
1808 struct timeval prompt_started, prompt_ended, prompt_delta;
1809
1810 gettimeofday (&prompt_started, NULL);
c906108c
SS
1811
1812 if (annotation_level > 1)
a3f17187 1813 printf_unfiltered (("\n\032\032pre-prompt-for-continue\n"));
c906108c
SS
1814
1815 strcpy (cont_prompt,
1816 "---Type <return> to continue, or q <return> to quit---");
1817 if (annotation_level > 1)
1818 strcat (cont_prompt, "\n\032\032prompt-for-continue\n");
1819
1820 /* We must do this *before* we call gdb_readline, else it will eventually
1821 call us -- thinking that we're trying to print beyond the end of the
1822 screen. */
1823 reinitialize_more_filter ();
1824
1825 immediate_quit++;
522002f9 1826 QUIT;
c906108c
SS
1827 /* On a real operating system, the user can quit with SIGINT.
1828 But not on GO32.
1829
1830 'q' is provided on all systems so users don't have to change habits
1831 from system to system, and because telling them what to do in
1832 the prompt is more user-friendly than expecting them to think of
1833 SIGINT. */
1834 /* Call readline, not gdb_readline, because GO32 readline handles control-C
1835 whereas control-C to gdb_readline will cause the user to get dumped
1836 out to DOS. */
b4f5539f 1837 ignore = gdb_readline_wrapper (cont_prompt);
c906108c 1838
260c0b2a
DE
1839 /* Add time spend in this routine to prompt_for_continue_wait_time. */
1840 gettimeofday (&prompt_ended, NULL);
1841 timeval_sub (&prompt_delta, &prompt_ended, &prompt_started);
1842 timeval_add (&prompt_for_continue_wait_time,
1843 &prompt_for_continue_wait_time, &prompt_delta);
1844
c906108c 1845 if (annotation_level > 1)
a3f17187 1846 printf_unfiltered (("\n\032\032post-prompt-for-continue\n"));
c906108c
SS
1847
1848 if (ignore)
1849 {
1850 char *p = ignore;
5d502164 1851
c906108c
SS
1852 while (*p == ' ' || *p == '\t')
1853 ++p;
1854 if (p[0] == 'q')
522002f9 1855 quit ();
b8c9b27d 1856 xfree (ignore);
c906108c
SS
1857 }
1858 immediate_quit--;
1859
1860 /* Now we have to do this again, so that GDB will know that it doesn't
1861 need to save the ---Type <return>--- line at the top of the screen. */
1862 reinitialize_more_filter ();
1863
581e13c1 1864 dont_repeat (); /* Forget prev cmd -- CR won't repeat it. */
c906108c
SS
1865}
1866
bd712aed
DE
1867/* Initalize timer to keep track of how long we waited for the user. */
1868
1869void
1870reset_prompt_for_continue_wait_time (void)
1871{
1872 static const struct timeval zero_timeval = { 0 };
1873
1874 prompt_for_continue_wait_time = zero_timeval;
1875}
1876
1877/* Fetch the cumulative time spent in prompt_for_continue. */
1878
1879struct timeval
1880get_prompt_for_continue_wait_time (void)
1881{
1882 return prompt_for_continue_wait_time;
1883}
1884
c906108c
SS
1885/* Reinitialize filter; ie. tell it to reset to original values. */
1886
1887void
fba45db2 1888reinitialize_more_filter (void)
c906108c
SS
1889{
1890 lines_printed = 0;
1891 chars_printed = 0;
1892}
1893
1894/* Indicate that if the next sequence of characters overflows the line,
581e13c1 1895 a newline should be inserted here rather than when it hits the end.
c906108c
SS
1896 If INDENT is non-null, it is a string to be printed to indent the
1897 wrapped part on the next line. INDENT must remain accessible until
1898 the next call to wrap_here() or until a newline is printed through
1899 fputs_filtered().
1900
1901 If the line is already overfull, we immediately print a newline and
1902 the indentation, and disable further wrapping.
1903
1904 If we don't know the width of lines, but we know the page height,
1905 we must not wrap words, but should still keep track of newlines
1906 that were explicitly printed.
1907
1908 INDENT should not contain tabs, as that will mess up the char count
1909 on the next line. FIXME.
1910
1911 This routine is guaranteed to force out any output which has been
1912 squirreled away in the wrap_buffer, so wrap_here ((char *)0) can be
1913 used to force out output from the wrap_buffer. */
1914
1915void
fba45db2 1916wrap_here (char *indent)
c906108c 1917{
581e13c1 1918 /* This should have been allocated, but be paranoid anyway. */
c906108c 1919 if (!wrap_buffer)
3e43a32a
MS
1920 internal_error (__FILE__, __LINE__,
1921 _("failed internal consistency check"));
c906108c
SS
1922
1923 if (wrap_buffer[0])
1924 {
1925 *wrap_pointer = '\0';
1926 fputs_unfiltered (wrap_buffer, gdb_stdout);
1927 }
1928 wrap_pointer = wrap_buffer;
1929 wrap_buffer[0] = '\0';
3e43a32a 1930 if (chars_per_line == UINT_MAX) /* No line overflow checking. */
c906108c
SS
1931 {
1932 wrap_column = 0;
1933 }
1934 else if (chars_printed >= chars_per_line)
1935 {
1936 puts_filtered ("\n");
1937 if (indent != NULL)
1938 puts_filtered (indent);
1939 wrap_column = 0;
1940 }
1941 else
1942 {
1943 wrap_column = chars_printed;
1944 if (indent == NULL)
1945 wrap_indent = "";
1946 else
1947 wrap_indent = indent;
1948 }
1949}
1950
4a351cef 1951/* Print input string to gdb_stdout, filtered, with wrap,
581e13c1 1952 arranging strings in columns of n chars. String can be
4a351cef
AF
1953 right or left justified in the column. Never prints
1954 trailing spaces. String should never be longer than
1955 width. FIXME: this could be useful for the EXAMINE
581e13c1 1956 command, which currently doesn't tabulate very well. */
4a351cef
AF
1957
1958void
1959puts_filtered_tabular (char *string, int width, int right)
1960{
1961 int spaces = 0;
1962 int stringlen;
1963 char *spacebuf;
1964
1965 gdb_assert (chars_per_line > 0);
1966 if (chars_per_line == UINT_MAX)
1967 {
1968 fputs_filtered (string, gdb_stdout);
1969 fputs_filtered ("\n", gdb_stdout);
1970 return;
1971 }
1972
1973 if (((chars_printed - 1) / width + 2) * width >= chars_per_line)
1974 fputs_filtered ("\n", gdb_stdout);
1975
1976 if (width >= chars_per_line)
1977 width = chars_per_line - 1;
1978
1979 stringlen = strlen (string);
1980
1981 if (chars_printed > 0)
1982 spaces = width - (chars_printed - 1) % width - 1;
1983 if (right)
1984 spaces += width - stringlen;
1985
1986 spacebuf = alloca (spaces + 1);
1987 spacebuf[spaces] = '\0';
1988 while (spaces--)
1989 spacebuf[spaces] = ' ';
1990
1991 fputs_filtered (spacebuf, gdb_stdout);
1992 fputs_filtered (string, gdb_stdout);
1993}
1994
1995
c906108c 1996/* Ensure that whatever gets printed next, using the filtered output
581e13c1 1997 commands, starts at the beginning of the line. I.e. if there is
c906108c 1998 any pending output for the current line, flush it and start a new
581e13c1 1999 line. Otherwise do nothing. */
c906108c
SS
2000
2001void
fba45db2 2002begin_line (void)
c906108c
SS
2003{
2004 if (chars_printed > 0)
2005 {
2006 puts_filtered ("\n");
2007 }
2008}
2009
ac9a91a7 2010
c906108c
SS
2011/* Like fputs but if FILTER is true, pause after every screenful.
2012
2013 Regardless of FILTER can wrap at points other than the final
2014 character of a line.
2015
2016 Unlike fputs, fputs_maybe_filtered does not return a value.
2017 It is OK for LINEBUFFER to be NULL, in which case just don't print
2018 anything.
2019
2020 Note that a longjmp to top level may occur in this routine (only if
2021 FILTER is true) (since prompt_for_continue may do so) so this
2022 routine should not be called when cleanups are not in place. */
2023
2024static void
fba45db2
KB
2025fputs_maybe_filtered (const char *linebuffer, struct ui_file *stream,
2026 int filter)
c906108c
SS
2027{
2028 const char *lineptr;
2029
2030 if (linebuffer == 0)
2031 return;
2032
2033 /* Don't do any filtering if it is disabled. */
390a8aca 2034 if (stream != gdb_stdout
b2e7f004
JK
2035 || !pagination_enabled
2036 || batch_flag
390a8aca 2037 || (lines_per_page == UINT_MAX && chars_per_line == UINT_MAX)
58dadb1b 2038 || top_level_interpreter () == NULL
390a8aca 2039 || ui_out_is_mi_like_p (interp_ui_out (top_level_interpreter ())))
c906108c
SS
2040 {
2041 fputs_unfiltered (linebuffer, stream);
2042 return;
2043 }
2044
2045 /* Go through and output each character. Show line extension
2046 when this is necessary; prompt user for new page when this is
2047 necessary. */
c5aa993b 2048
c906108c
SS
2049 lineptr = linebuffer;
2050 while (*lineptr)
2051 {
2052 /* Possible new page. */
8731e58e 2053 if (filter && (lines_printed >= lines_per_page - 1))
c906108c
SS
2054 prompt_for_continue ();
2055
2056 while (*lineptr && *lineptr != '\n')
2057 {
2058 /* Print a single line. */
2059 if (*lineptr == '\t')
2060 {
2061 if (wrap_column)
2062 *wrap_pointer++ = '\t';
2063 else
2064 fputc_unfiltered ('\t', stream);
2065 /* Shifting right by 3 produces the number of tab stops
2066 we have already passed, and then adding one and
c5aa993b 2067 shifting left 3 advances to the next tab stop. */
c906108c
SS
2068 chars_printed = ((chars_printed >> 3) + 1) << 3;
2069 lineptr++;
2070 }
2071 else
2072 {
2073 if (wrap_column)
2074 *wrap_pointer++ = *lineptr;
2075 else
c5aa993b 2076 fputc_unfiltered (*lineptr, stream);
c906108c
SS
2077 chars_printed++;
2078 lineptr++;
2079 }
c5aa993b 2080
c906108c
SS
2081 if (chars_printed >= chars_per_line)
2082 {
2083 unsigned int save_chars = chars_printed;
2084
2085 chars_printed = 0;
2086 lines_printed++;
2087 /* If we aren't actually wrapping, don't output newline --
c5aa993b
JM
2088 if chars_per_line is right, we probably just overflowed
2089 anyway; if it's wrong, let us keep going. */
c906108c
SS
2090 if (wrap_column)
2091 fputc_unfiltered ('\n', stream);
2092
2093 /* Possible new page. */
2094 if (lines_printed >= lines_per_page - 1)
2095 prompt_for_continue ();
2096
581e13c1 2097 /* Now output indentation and wrapped string. */
c906108c
SS
2098 if (wrap_column)
2099 {
2100 fputs_unfiltered (wrap_indent, stream);
581e13c1
MS
2101 *wrap_pointer = '\0'; /* Null-terminate saved stuff, */
2102 fputs_unfiltered (wrap_buffer, stream); /* and eject it. */
c906108c
SS
2103 /* FIXME, this strlen is what prevents wrap_indent from
2104 containing tabs. However, if we recurse to print it
2105 and count its chars, we risk trouble if wrap_indent is
581e13c1 2106 longer than (the user settable) chars_per_line.
c906108c
SS
2107 Note also that this can set chars_printed > chars_per_line
2108 if we are printing a long string. */
2109 chars_printed = strlen (wrap_indent)
c5aa993b 2110 + (save_chars - wrap_column);
c906108c
SS
2111 wrap_pointer = wrap_buffer; /* Reset buffer */
2112 wrap_buffer[0] = '\0';
c5aa993b
JM
2113 wrap_column = 0; /* And disable fancy wrap */
2114 }
c906108c
SS
2115 }
2116 }
2117
2118 if (*lineptr == '\n')
2119 {
2120 chars_printed = 0;
3e43a32a
MS
2121 wrap_here ((char *) 0); /* Spit out chars, cancel
2122 further wraps. */
c906108c
SS
2123 lines_printed++;
2124 fputc_unfiltered ('\n', stream);
2125 lineptr++;
2126 }
2127 }
2128}
2129
2130void
fba45db2 2131fputs_filtered (const char *linebuffer, struct ui_file *stream)
c906108c
SS
2132{
2133 fputs_maybe_filtered (linebuffer, stream, 1);
2134}
2135
2136int
fba45db2 2137putchar_unfiltered (int c)
c906108c 2138{
11cf8741 2139 char buf = c;
e0627e85 2140
d9fcf2fb 2141 ui_file_write (gdb_stdout, &buf, 1);
c906108c
SS
2142 return c;
2143}
2144
d1f4cff8
AC
2145/* Write character C to gdb_stdout using GDB's paging mechanism and return C.
2146 May return nonlocally. */
2147
2148int
2149putchar_filtered (int c)
2150{
2151 return fputc_filtered (c, gdb_stdout);
2152}
2153
c906108c 2154int
fba45db2 2155fputc_unfiltered (int c, struct ui_file *stream)
c906108c 2156{
11cf8741 2157 char buf = c;
e0627e85 2158
d9fcf2fb 2159 ui_file_write (stream, &buf, 1);
c906108c
SS
2160 return c;
2161}
2162
2163int
fba45db2 2164fputc_filtered (int c, struct ui_file *stream)
c906108c
SS
2165{
2166 char buf[2];
2167
2168 buf[0] = c;
2169 buf[1] = 0;
2170 fputs_filtered (buf, stream);
2171 return c;
2172}
2173
2174/* puts_debug is like fputs_unfiltered, except it prints special
2175 characters in printable fashion. */
2176
2177void
fba45db2 2178puts_debug (char *prefix, char *string, char *suffix)
c906108c
SS
2179{
2180 int ch;
2181
2182 /* Print prefix and suffix after each line. */
2183 static int new_line = 1;
2184 static int return_p = 0;
2185 static char *prev_prefix = "";
2186 static char *prev_suffix = "";
2187
2188 if (*string == '\n')
2189 return_p = 0;
2190
2191 /* If the prefix is changing, print the previous suffix, a new line,
2192 and the new prefix. */
c5aa993b 2193 if ((return_p || (strcmp (prev_prefix, prefix) != 0)) && !new_line)
c906108c 2194 {
9846de1b
JM
2195 fputs_unfiltered (prev_suffix, gdb_stdlog);
2196 fputs_unfiltered ("\n", gdb_stdlog);
2197 fputs_unfiltered (prefix, gdb_stdlog);
c906108c
SS
2198 }
2199
2200 /* Print prefix if we printed a newline during the previous call. */
2201 if (new_line)
2202 {
2203 new_line = 0;
9846de1b 2204 fputs_unfiltered (prefix, gdb_stdlog);
c906108c
SS
2205 }
2206
2207 prev_prefix = prefix;
2208 prev_suffix = suffix;
2209
2210 /* Output characters in a printable format. */
2211 while ((ch = *string++) != '\0')
2212 {
2213 switch (ch)
c5aa993b 2214 {
c906108c
SS
2215 default:
2216 if (isprint (ch))
9846de1b 2217 fputc_unfiltered (ch, gdb_stdlog);
c906108c
SS
2218
2219 else
9846de1b 2220 fprintf_unfiltered (gdb_stdlog, "\\x%02x", ch & 0xff);
c906108c
SS
2221 break;
2222
c5aa993b
JM
2223 case '\\':
2224 fputs_unfiltered ("\\\\", gdb_stdlog);
2225 break;
2226 case '\b':
2227 fputs_unfiltered ("\\b", gdb_stdlog);
2228 break;
2229 case '\f':
2230 fputs_unfiltered ("\\f", gdb_stdlog);
2231 break;
2232 case '\n':
2233 new_line = 1;
2234 fputs_unfiltered ("\\n", gdb_stdlog);
2235 break;
2236 case '\r':
2237 fputs_unfiltered ("\\r", gdb_stdlog);
2238 break;
2239 case '\t':
2240 fputs_unfiltered ("\\t", gdb_stdlog);
2241 break;
2242 case '\v':
2243 fputs_unfiltered ("\\v", gdb_stdlog);
2244 break;
2245 }
c906108c
SS
2246
2247 return_p = ch == '\r';
2248 }
2249
2250 /* Print suffix if we printed a newline. */
2251 if (new_line)
2252 {
9846de1b
JM
2253 fputs_unfiltered (suffix, gdb_stdlog);
2254 fputs_unfiltered ("\n", gdb_stdlog);
c906108c
SS
2255 }
2256}
2257
2258
2259/* Print a variable number of ARGS using format FORMAT. If this
2260 information is going to put the amount written (since the last call
2261 to REINITIALIZE_MORE_FILTER or the last page break) over the page size,
2262 call prompt_for_continue to get the users permision to continue.
2263
2264 Unlike fprintf, this function does not return a value.
2265
2266 We implement three variants, vfprintf (takes a vararg list and stream),
2267 fprintf (takes a stream to write on), and printf (the usual).
2268
2269 Note also that a longjmp to top level may occur in this routine
2270 (since prompt_for_continue may do so) so this routine should not be
2271 called when cleanups are not in place. */
2272
2273static void
fba45db2
KB
2274vfprintf_maybe_filtered (struct ui_file *stream, const char *format,
2275 va_list args, int filter)
c906108c
SS
2276{
2277 char *linebuffer;
2278 struct cleanup *old_cleanups;
2279
e623b504 2280 linebuffer = xstrvprintf (format, args);
b8c9b27d 2281 old_cleanups = make_cleanup (xfree, linebuffer);
c906108c
SS
2282 fputs_maybe_filtered (linebuffer, stream, filter);
2283 do_cleanups (old_cleanups);
2284}
2285
2286
2287void
fba45db2 2288vfprintf_filtered (struct ui_file *stream, const char *format, va_list args)
c906108c
SS
2289{
2290 vfprintf_maybe_filtered (stream, format, args, 1);
2291}
2292
2293void
fba45db2 2294vfprintf_unfiltered (struct ui_file *stream, const char *format, va_list args)
c906108c
SS
2295{
2296 char *linebuffer;
2297 struct cleanup *old_cleanups;
2298
e623b504 2299 linebuffer = xstrvprintf (format, args);
b8c9b27d 2300 old_cleanups = make_cleanup (xfree, linebuffer);
75feb17d
DJ
2301 if (debug_timestamp && stream == gdb_stdlog)
2302 {
2303 struct timeval tm;
2304 char *timestamp;
6e5abd65 2305 int len, need_nl;
75feb17d
DJ
2306
2307 gettimeofday (&tm, NULL);
6e5abd65
PA
2308
2309 len = strlen (linebuffer);
2310 need_nl = (len > 0 && linebuffer[len - 1] != '\n');
2311
2312 timestamp = xstrprintf ("%ld:%ld %s%s",
2313 (long) tm.tv_sec, (long) tm.tv_usec,
2314 linebuffer,
2315 need_nl ? "\n": "");
75feb17d
DJ
2316 make_cleanup (xfree, timestamp);
2317 fputs_unfiltered (timestamp, stream);
2318 }
6e5abd65
PA
2319 else
2320 fputs_unfiltered (linebuffer, stream);
c906108c
SS
2321 do_cleanups (old_cleanups);
2322}
2323
2324void
fba45db2 2325vprintf_filtered (const char *format, va_list args)
c906108c
SS
2326{
2327 vfprintf_maybe_filtered (gdb_stdout, format, args, 1);
2328}
2329
2330void
fba45db2 2331vprintf_unfiltered (const char *format, va_list args)
c906108c
SS
2332{
2333 vfprintf_unfiltered (gdb_stdout, format, args);
2334}
2335
c906108c 2336void
8731e58e 2337fprintf_filtered (struct ui_file *stream, const char *format, ...)
c906108c
SS
2338{
2339 va_list args;
e0627e85 2340
c906108c 2341 va_start (args, format);
c906108c
SS
2342 vfprintf_filtered (stream, format, args);
2343 va_end (args);
2344}
2345
c906108c 2346void
8731e58e 2347fprintf_unfiltered (struct ui_file *stream, const char *format, ...)
c906108c
SS
2348{
2349 va_list args;
e0627e85 2350
c906108c 2351 va_start (args, format);
c906108c
SS
2352 vfprintf_unfiltered (stream, format, args);
2353 va_end (args);
2354}
2355
2356/* Like fprintf_filtered, but prints its result indented.
2357 Called as fprintfi_filtered (spaces, stream, format, ...); */
2358
c906108c 2359void
8731e58e
AC
2360fprintfi_filtered (int spaces, struct ui_file *stream, const char *format,
2361 ...)
c906108c
SS
2362{
2363 va_list args;
e0627e85 2364
c906108c 2365 va_start (args, format);
c906108c
SS
2366 print_spaces_filtered (spaces, stream);
2367
2368 vfprintf_filtered (stream, format, args);
2369 va_end (args);
2370}
2371
2372
c906108c 2373void
8731e58e 2374printf_filtered (const char *format, ...)
c906108c
SS
2375{
2376 va_list args;
e0627e85 2377
c906108c 2378 va_start (args, format);
c906108c
SS
2379 vfprintf_filtered (gdb_stdout, format, args);
2380 va_end (args);
2381}
2382
2383
c906108c 2384void
8731e58e 2385printf_unfiltered (const char *format, ...)
c906108c
SS
2386{
2387 va_list args;
e0627e85 2388
c906108c 2389 va_start (args, format);
c906108c
SS
2390 vfprintf_unfiltered (gdb_stdout, format, args);
2391 va_end (args);
2392}
2393
2394/* Like printf_filtered, but prints it's result indented.
2395 Called as printfi_filtered (spaces, format, ...); */
2396
c906108c 2397void
8731e58e 2398printfi_filtered (int spaces, const char *format, ...)
c906108c
SS
2399{
2400 va_list args;
e0627e85 2401
c906108c 2402 va_start (args, format);
c906108c
SS
2403 print_spaces_filtered (spaces, gdb_stdout);
2404 vfprintf_filtered (gdb_stdout, format, args);
2405 va_end (args);
2406}
2407
2408/* Easy -- but watch out!
2409
2410 This routine is *not* a replacement for puts()! puts() appends a newline.
2411 This one doesn't, and had better not! */
2412
2413void
fba45db2 2414puts_filtered (const char *string)
c906108c
SS
2415{
2416 fputs_filtered (string, gdb_stdout);
2417}
2418
2419void
fba45db2 2420puts_unfiltered (const char *string)
c906108c
SS
2421{
2422 fputs_unfiltered (string, gdb_stdout);
2423}
2424
2425/* Return a pointer to N spaces and a null. The pointer is good
2426 until the next call to here. */
2427char *
fba45db2 2428n_spaces (int n)
c906108c 2429{
392a587b
JM
2430 char *t;
2431 static char *spaces = 0;
2432 static int max_spaces = -1;
c906108c
SS
2433
2434 if (n > max_spaces)
2435 {
2436 if (spaces)
b8c9b27d 2437 xfree (spaces);
c5aa993b
JM
2438 spaces = (char *) xmalloc (n + 1);
2439 for (t = spaces + n; t != spaces;)
c906108c
SS
2440 *--t = ' ';
2441 spaces[n] = '\0';
2442 max_spaces = n;
2443 }
2444
2445 return spaces + max_spaces - n;
2446}
2447
2448/* Print N spaces. */
2449void
fba45db2 2450print_spaces_filtered (int n, struct ui_file *stream)
c906108c
SS
2451{
2452 fputs_filtered (n_spaces (n), stream);
2453}
2454\f
4a351cef 2455/* C++/ObjC demangler stuff. */
c906108c 2456
389e51db
AC
2457/* fprintf_symbol_filtered attempts to demangle NAME, a symbol in language
2458 LANG, using demangling args ARG_MODE, and print it filtered to STREAM.
2459 If the name is not mangled, or the language for the name is unknown, or
581e13c1 2460 demangling is off, the name is printed in its "raw" form. */
c906108c
SS
2461
2462void
0d5cff50 2463fprintf_symbol_filtered (struct ui_file *stream, const char *name,
8731e58e 2464 enum language lang, int arg_mode)
c906108c
SS
2465{
2466 char *demangled;
2467
2468 if (name != NULL)
2469 {
2470 /* If user wants to see raw output, no problem. */
2471 if (!demangle)
2472 {
2473 fputs_filtered (name, stream);
2474 }
2475 else
2476 {
9a3d7dfd 2477 demangled = language_demangle (language_def (lang), name, arg_mode);
c906108c
SS
2478 fputs_filtered (demangled ? demangled : name, stream);
2479 if (demangled != NULL)
2480 {
b8c9b27d 2481 xfree (demangled);
c906108c
SS
2482 }
2483 }
2484 }
2485}
2486
2487/* Do a strcmp() type operation on STRING1 and STRING2, ignoring any
2488 differences in whitespace. Returns 0 if they match, non-zero if they
2489 don't (slightly different than strcmp()'s range of return values).
c5aa993b 2490
c906108c
SS
2491 As an extra hack, string1=="FOO(ARGS)" matches string2=="FOO".
2492 This "feature" is useful when searching for matching C++ function names
2493 (such as if the user types 'break FOO', where FOO is a mangled C++
581e13c1 2494 function). */
c906108c
SS
2495
2496int
fba45db2 2497strcmp_iw (const char *string1, const char *string2)
c906108c
SS
2498{
2499 while ((*string1 != '\0') && (*string2 != '\0'))
2500 {
2501 while (isspace (*string1))
2502 {
2503 string1++;
2504 }
2505 while (isspace (*string2))
2506 {
2507 string2++;
2508 }
559a7a62
JK
2509 if (case_sensitivity == case_sensitive_on && *string1 != *string2)
2510 break;
2511 if (case_sensitivity == case_sensitive_off
2512 && (tolower ((unsigned char) *string1)
2513 != tolower ((unsigned char) *string2)))
2514 break;
c906108c
SS
2515 if (*string1 != '\0')
2516 {
2517 string1++;
2518 string2++;
2519 }
2520 }
2521 return (*string1 != '\0' && *string1 != '(') || (*string2 != '\0');
2522}
2de7ced7 2523
0fe19209
DC
2524/* This is like strcmp except that it ignores whitespace and treats
2525 '(' as the first non-NULL character in terms of ordering. Like
2526 strcmp (and unlike strcmp_iw), it returns negative if STRING1 <
2527 STRING2, 0 if STRING2 = STRING2, and positive if STRING1 > STRING2
2528 according to that ordering.
2529
2530 If a list is sorted according to this function and if you want to
2531 find names in the list that match some fixed NAME according to
2532 strcmp_iw(LIST_ELT, NAME), then the place to start looking is right
2533 where this function would put NAME.
2534
559a7a62
JK
2535 This function must be neutral to the CASE_SENSITIVITY setting as the user
2536 may choose it during later lookup. Therefore this function always sorts
2537 primarily case-insensitively and secondarily case-sensitively.
2538
0fe19209
DC
2539 Here are some examples of why using strcmp to sort is a bad idea:
2540
2541 Whitespace example:
2542
2543 Say your partial symtab contains: "foo<char *>", "goo". Then, if
2544 we try to do a search for "foo<char*>", strcmp will locate this
2545 after "foo<char *>" and before "goo". Then lookup_partial_symbol
2546 will start looking at strings beginning with "goo", and will never
2547 see the correct match of "foo<char *>".
2548
2549 Parenthesis example:
2550
2551 In practice, this is less like to be an issue, but I'll give it a
2552 shot. Let's assume that '$' is a legitimate character to occur in
2553 symbols. (Which may well even be the case on some systems.) Then
2554 say that the partial symbol table contains "foo$" and "foo(int)".
2555 strcmp will put them in this order, since '$' < '('. Now, if the
2556 user searches for "foo", then strcmp will sort "foo" before "foo$".
2557 Then lookup_partial_symbol will notice that strcmp_iw("foo$",
2558 "foo") is false, so it won't proceed to the actual match of
2559 "foo(int)" with "foo". */
2560
2561int
2562strcmp_iw_ordered (const char *string1, const char *string2)
2563{
559a7a62
JK
2564 const char *saved_string1 = string1, *saved_string2 = string2;
2565 enum case_sensitivity case_pass = case_sensitive_off;
2566
2567 for (;;)
0fe19209 2568 {
b11b1f88
JK
2569 /* C1 and C2 are valid only if *string1 != '\0' && *string2 != '\0'.
2570 Provide stub characters if we are already at the end of one of the
2571 strings. */
2572 char c1 = 'X', c2 = 'X';
2573
2574 while (*string1 != '\0' && *string2 != '\0')
0fe19209 2575 {
b11b1f88
JK
2576 while (isspace (*string1))
2577 string1++;
2578 while (isspace (*string2))
2579 string2++;
2580
559a7a62
JK
2581 switch (case_pass)
2582 {
2583 case case_sensitive_off:
2584 c1 = tolower ((unsigned char) *string1);
2585 c2 = tolower ((unsigned char) *string2);
2586 break;
2587 case case_sensitive_on:
b11b1f88
JK
2588 c1 = *string1;
2589 c2 = *string2;
559a7a62
JK
2590 break;
2591 }
b11b1f88
JK
2592 if (c1 != c2)
2593 break;
2594
2595 if (*string1 != '\0')
2596 {
2597 string1++;
2598 string2++;
2599 }
0fe19209 2600 }
b11b1f88
JK
2601
2602 switch (*string1)
0fe19209 2603 {
b11b1f88
JK
2604 /* Characters are non-equal unless they're both '\0'; we want to
2605 make sure we get the comparison right according to our
2606 comparison in the cases where one of them is '\0' or '('. */
2607 case '\0':
2608 if (*string2 == '\0')
559a7a62 2609 break;
b11b1f88
JK
2610 else
2611 return -1;
2612 case '(':
2613 if (*string2 == '\0')
2614 return 1;
2615 else
2616 return -1;
2617 default:
2618 if (*string2 == '\0' || *string2 == '(')
2619 return 1;
559a7a62
JK
2620 else if (c1 > c2)
2621 return 1;
2622 else if (c1 < c2)
2623 return -1;
2624 /* PASSTHRU */
0fe19209 2625 }
559a7a62
JK
2626
2627 if (case_pass == case_sensitive_on)
2628 return 0;
2629
2630 /* Otherwise the strings were equal in case insensitive way, make
2631 a more fine grained comparison in a case sensitive way. */
2632
2633 case_pass = case_sensitive_on;
2634 string1 = saved_string1;
2635 string2 = saved_string2;
0fe19209 2636 }
0fe19209
DC
2637}
2638
2de7ced7
DJ
2639/* A simple comparison function with opposite semantics to strcmp. */
2640
2641int
2642streq (const char *lhs, const char *rhs)
2643{
2644 return !strcmp (lhs, rhs);
2645}
c906108c 2646\f
c5aa993b 2647
c906108c 2648/*
c5aa993b
JM
2649 ** subset_compare()
2650 ** Answer whether string_to_compare is a full or partial match to
2651 ** template_string. The partial match must be in sequence starting
2652 ** at index 0.
2653 */
c906108c 2654int
fba45db2 2655subset_compare (char *string_to_compare, char *template_string)
7a292a7a
SS
2656{
2657 int match;
e0627e85 2658
8731e58e
AC
2659 if (template_string != (char *) NULL && string_to_compare != (char *) NULL
2660 && strlen (string_to_compare) <= strlen (template_string))
2661 match =
2662 (strncmp
2663 (template_string, string_to_compare, strlen (string_to_compare)) == 0);
7a292a7a
SS
2664 else
2665 match = 0;
2666 return match;
2667}
c906108c 2668
7a292a7a 2669static void
fba45db2 2670pagination_on_command (char *arg, int from_tty)
c906108c
SS
2671{
2672 pagination_enabled = 1;
2673}
2674
7a292a7a 2675static void
fba45db2 2676pagination_off_command (char *arg, int from_tty)
c906108c
SS
2677{
2678 pagination_enabled = 0;
2679}
75feb17d
DJ
2680
2681static void
2682show_debug_timestamp (struct ui_file *file, int from_tty,
2683 struct cmd_list_element *c, const char *value)
2684{
3e43a32a
MS
2685 fprintf_filtered (file, _("Timestamping debugging messages is %s.\n"),
2686 value);
75feb17d 2687}
c906108c 2688\f
c5aa993b 2689
c906108c 2690void
fba45db2 2691initialize_utils (void)
c906108c 2692{
35096d9d 2693 add_setshow_uinteger_cmd ("width", class_support, &chars_per_line, _("\
77dec115
EZ
2694Set number of characters where GDB should wrap lines of its output."), _("\
2695Show number of characters where GDB should wrap lines of its output."), _("\
2696This affects where GDB wraps its output to fit the screen width.\n\
f81d1120 2697Setting this to \"unlimited\" or zero prevents GDB from wrapping its output."),
35096d9d 2698 set_width_command,
920d2a44 2699 show_chars_per_line,
35096d9d
AC
2700 &setlist, &showlist);
2701
2702 add_setshow_uinteger_cmd ("height", class_support, &lines_per_page, _("\
77dec115
EZ
2703Set number of lines in a page for GDB output pagination."), _("\
2704Show number of lines in a page for GDB output pagination."), _("\
2705This affects the number of lines after which GDB will pause\n\
2706its output and ask you whether to continue.\n\
f81d1120 2707Setting this to \"unlimited\" or zero causes GDB never pause during output."),
35096d9d 2708 set_height_command,
920d2a44 2709 show_lines_per_page,
35096d9d 2710 &setlist, &showlist);
c5aa993b 2711
c906108c
SS
2712 init_page_info ();
2713
5bf193a2
AC
2714 add_setshow_boolean_cmd ("pagination", class_support,
2715 &pagination_enabled, _("\
77dec115
EZ
2716Set state of GDB output pagination."), _("\
2717Show state of GDB output pagination."), _("\
2718When pagination is ON, GDB pauses at end of each screenful of\n\
2719its output and asks you whether to continue.\n\
f81d1120 2720Turning pagination off is an alternative to \"set height unlimited\"."),
5bf193a2 2721 NULL,
920d2a44 2722 show_pagination_enabled,
5bf193a2 2723 &setlist, &showlist);
4261bedc 2724
c906108c
SS
2725 if (xdb_commands)
2726 {
c5aa993b 2727 add_com ("am", class_support, pagination_on_command,
1bedd215 2728 _("Enable pagination"));
c5aa993b 2729 add_com ("sm", class_support, pagination_off_command,
1bedd215 2730 _("Disable pagination"));
c906108c
SS
2731 }
2732
5bf193a2
AC
2733 add_setshow_boolean_cmd ("sevenbit-strings", class_support,
2734 &sevenbit_strings, _("\
2735Set printing of 8-bit characters in strings as \\nnn."), _("\
2736Show printing of 8-bit characters in strings as \\nnn."), NULL,
2737 NULL,
920d2a44 2738 show_sevenbit_strings,
5bf193a2
AC
2739 &setprintlist, &showprintlist);
2740
75feb17d
DJ
2741 add_setshow_boolean_cmd ("timestamp", class_maintenance,
2742 &debug_timestamp, _("\
2743Set timestamping of debugging messages."), _("\
2744Show timestamping of debugging messages."), _("\
2745When set, debugging messages will be marked with seconds and microseconds."),
2746 NULL,
2747 show_debug_timestamp,
2748 &setdebuglist, &showdebuglist);
c906108c
SS
2749}
2750
581e13c1
MS
2751/* Print routines to handle variable size regs, etc. */
2752/* Temporary storage using circular buffer. */
c906108c 2753#define NUMCELLS 16
0759e0bf 2754#define CELLSIZE 50
c5aa993b 2755static char *
fba45db2 2756get_cell (void)
c906108c
SS
2757{
2758 static char buf[NUMCELLS][CELLSIZE];
c5aa993b 2759 static int cell = 0;
e0627e85 2760
c5aa993b
JM
2761 if (++cell >= NUMCELLS)
2762 cell = 0;
c906108c
SS
2763 return buf[cell];
2764}
2765
66bf4b3a 2766const char *
5af949e3 2767paddress (struct gdbarch *gdbarch, CORE_ADDR addr)
66bf4b3a
AC
2768{
2769 /* Truncate address to the size of a target address, avoiding shifts
2770 larger or equal than the width of a CORE_ADDR. The local
2771 variable ADDR_BIT stops the compiler reporting a shift overflow
581e13c1 2772 when it won't occur. */
66bf4b3a
AC
2773 /* NOTE: This assumes that the significant address information is
2774 kept in the least significant bits of ADDR - the upper bits were
76e71323 2775 either zero or sign extended. Should gdbarch_address_to_pointer or
66bf4b3a
AC
2776 some ADDRESS_TO_PRINTABLE() be used to do the conversion? */
2777
5af949e3 2778 int addr_bit = gdbarch_addr_bit (gdbarch);
66bf4b3a
AC
2779
2780 if (addr_bit < (sizeof (CORE_ADDR) * HOST_CHAR_BIT))
2781 addr &= ((CORE_ADDR) 1 << addr_bit) - 1;
2782 return hex_string (addr);
2783}
2784
f1310107
TJB
2785/* This function is described in "defs.h". */
2786
2787const char *
2788print_core_address (struct gdbarch *gdbarch, CORE_ADDR address)
2789{
2790 int addr_bit = gdbarch_addr_bit (gdbarch);
2791
2792 if (addr_bit < (sizeof (CORE_ADDR) * HOST_CHAR_BIT))
2793 address &= ((CORE_ADDR) 1 << addr_bit) - 1;
2794
2795 /* FIXME: cagney/2002-05-03: Need local_address_string() function
2796 that returns the language localized string formatted to a width
2797 based on gdbarch_addr_bit. */
2798 if (addr_bit <= 32)
2799 return hex_string_custom (address, 8);
2800 else
2801 return hex_string_custom (address, 16);
2802}
2803
8e3b41a9
JK
2804/* Callback hash_f for htab_create_alloc or htab_create_alloc_ex. */
2805
2806hashval_t
2807core_addr_hash (const void *ap)
2808{
2809 const CORE_ADDR *addrp = ap;
2810
2811 return *addrp;
2812}
2813
2814/* Callback eq_f for htab_create_alloc or htab_create_alloc_ex. */
2815
2816int
2817core_addr_eq (const void *ap, const void *bp)
2818{
2819 const CORE_ADDR *addr_ap = ap;
2820 const CORE_ADDR *addr_bp = bp;
2821
2822 return *addr_ap == *addr_bp;
2823}
2824
8cf46f62
MK
2825static char *
2826decimal2str (char *sign, ULONGEST addr, int width)
104c1213 2827{
8cf46f62 2828 /* Steal code from valprint.c:print_decimal(). Should this worry
581e13c1 2829 about the real size of addr as the above does? */
104c1213 2830 unsigned long temp[3];
8cf46f62 2831 char *str = get_cell ();
104c1213 2832 int i = 0;
5d502164 2833
104c1213
JM
2834 do
2835 {
2836 temp[i] = addr % (1000 * 1000 * 1000);
2837 addr /= (1000 * 1000 * 1000);
2838 i++;
bb599908 2839 width -= 9;
104c1213
JM
2840 }
2841 while (addr != 0 && i < (sizeof (temp) / sizeof (temp[0])));
8cf46f62 2842
bb599908
PH
2843 width += 9;
2844 if (width < 0)
2845 width = 0;
8cf46f62 2846
104c1213
JM
2847 switch (i)
2848 {
2849 case 1:
8cf46f62 2850 xsnprintf (str, CELLSIZE, "%s%0*lu", sign, width, temp[0]);
104c1213
JM
2851 break;
2852 case 2:
8cf46f62
MK
2853 xsnprintf (str, CELLSIZE, "%s%0*lu%09lu", sign, width,
2854 temp[1], temp[0]);
104c1213
JM
2855 break;
2856 case 3:
8cf46f62
MK
2857 xsnprintf (str, CELLSIZE, "%s%0*lu%09lu%09lu", sign, width,
2858 temp[2], temp[1], temp[0]);
bb599908
PH
2859 break;
2860 default:
2861 internal_error (__FILE__, __LINE__,
e2e0b3e5 2862 _("failed internal consistency check"));
bb599908 2863 }
8cf46f62
MK
2864
2865 return str;
bb599908
PH
2866}
2867
8cf46f62
MK
2868static char *
2869octal2str (ULONGEST addr, int width)
bb599908
PH
2870{
2871 unsigned long temp[3];
8cf46f62 2872 char *str = get_cell ();
bb599908 2873 int i = 0;
5d502164 2874
bb599908
PH
2875 do
2876 {
2877 temp[i] = addr % (0100000 * 0100000);
2878 addr /= (0100000 * 0100000);
2879 i++;
2880 width -= 10;
2881 }
2882 while (addr != 0 && i < (sizeof (temp) / sizeof (temp[0])));
8cf46f62 2883
bb599908
PH
2884 width += 10;
2885 if (width < 0)
2886 width = 0;
8cf46f62 2887
bb599908
PH
2888 switch (i)
2889 {
2890 case 1:
2891 if (temp[0] == 0)
8cf46f62 2892 xsnprintf (str, CELLSIZE, "%*o", width, 0);
bb599908 2893 else
8cf46f62 2894 xsnprintf (str, CELLSIZE, "0%0*lo", width, temp[0]);
bb599908
PH
2895 break;
2896 case 2:
8cf46f62 2897 xsnprintf (str, CELLSIZE, "0%0*lo%010lo", width, temp[1], temp[0]);
bb599908
PH
2898 break;
2899 case 3:
8cf46f62
MK
2900 xsnprintf (str, CELLSIZE, "0%0*lo%010lo%010lo", width,
2901 temp[2], temp[1], temp[0]);
104c1213
JM
2902 break;
2903 default:
8731e58e 2904 internal_error (__FILE__, __LINE__,
e2e0b3e5 2905 _("failed internal consistency check"));
104c1213 2906 }
8cf46f62
MK
2907
2908 return str;
104c1213
JM
2909}
2910
2911char *
623d3eb1 2912pulongest (ULONGEST u)
104c1213 2913{
623d3eb1 2914 return decimal2str ("", u, 0);
104c1213
JM
2915}
2916
2917char *
623d3eb1 2918plongest (LONGEST l)
104c1213 2919{
623d3eb1
DE
2920 if (l < 0)
2921 return decimal2str ("-", -l, 0);
104c1213 2922 else
623d3eb1 2923 return decimal2str ("", l, 0);
104c1213
JM
2924}
2925
8cf46f62 2926/* Eliminate warning from compiler on 32-bit systems. */
5683e87a
AC
2927static int thirty_two = 32;
2928
104c1213 2929char *
5683e87a 2930phex (ULONGEST l, int sizeof_l)
104c1213 2931{
45a1e866 2932 char *str;
8cf46f62 2933
5683e87a 2934 switch (sizeof_l)
104c1213
JM
2935 {
2936 case 8:
45a1e866 2937 str = get_cell ();
8cf46f62
MK
2938 xsnprintf (str, CELLSIZE, "%08lx%08lx",
2939 (unsigned long) (l >> thirty_two),
2940 (unsigned long) (l & 0xffffffff));
104c1213
JM
2941 break;
2942 case 4:
45a1e866 2943 str = get_cell ();
8cf46f62 2944 xsnprintf (str, CELLSIZE, "%08lx", (unsigned long) l);
104c1213
JM
2945 break;
2946 case 2:
45a1e866 2947 str = get_cell ();
8cf46f62 2948 xsnprintf (str, CELLSIZE, "%04x", (unsigned short) (l & 0xffff));
104c1213
JM
2949 break;
2950 default:
45a1e866 2951 str = phex (l, sizeof (l));
5683e87a 2952 break;
104c1213 2953 }
8cf46f62 2954
5683e87a 2955 return str;
104c1213
JM
2956}
2957
c5aa993b 2958char *
5683e87a 2959phex_nz (ULONGEST l, int sizeof_l)
c906108c 2960{
faf833ca 2961 char *str;
8cf46f62 2962
5683e87a 2963 switch (sizeof_l)
c906108c 2964 {
c5aa993b
JM
2965 case 8:
2966 {
5683e87a 2967 unsigned long high = (unsigned long) (l >> thirty_two);
5d502164 2968
faf833ca 2969 str = get_cell ();
c5aa993b 2970 if (high == 0)
8cf46f62
MK
2971 xsnprintf (str, CELLSIZE, "%lx",
2972 (unsigned long) (l & 0xffffffff));
c5aa993b 2973 else
8cf46f62
MK
2974 xsnprintf (str, CELLSIZE, "%lx%08lx", high,
2975 (unsigned long) (l & 0xffffffff));
c906108c 2976 break;
c5aa993b
JM
2977 }
2978 case 4:
faf833ca 2979 str = get_cell ();
8cf46f62 2980 xsnprintf (str, CELLSIZE, "%lx", (unsigned long) l);
c5aa993b
JM
2981 break;
2982 case 2:
faf833ca 2983 str = get_cell ();
8cf46f62 2984 xsnprintf (str, CELLSIZE, "%x", (unsigned short) (l & 0xffff));
c5aa993b
JM
2985 break;
2986 default:
faf833ca 2987 str = phex_nz (l, sizeof (l));
5683e87a 2988 break;
c906108c 2989 }
8cf46f62 2990
5683e87a 2991 return str;
c906108c 2992}
ac2e2ef7 2993
0759e0bf
AC
2994/* Converts a LONGEST to a C-format hexadecimal literal and stores it
2995 in a static string. Returns a pointer to this string. */
2996char *
2997hex_string (LONGEST num)
2998{
2999 char *result = get_cell ();
e0627e85 3000
8cf46f62 3001 xsnprintf (result, CELLSIZE, "0x%s", phex_nz (num, sizeof (num)));
0759e0bf
AC
3002 return result;
3003}
3004
3005/* Converts a LONGEST number to a C-format hexadecimal literal and
3006 stores it in a static string. Returns a pointer to this string
3007 that is valid until the next call. The number is padded on the
3008 left with 0s to at least WIDTH characters. */
3009char *
3010hex_string_custom (LONGEST num, int width)
3011{
3012 char *result = get_cell ();
3013 char *result_end = result + CELLSIZE - 1;
3014 const char *hex = phex_nz (num, sizeof (num));
3015 int hex_len = strlen (hex);
3016
3017 if (hex_len > width)
3018 width = hex_len;
3019 if (width + 2 >= CELLSIZE)
3e43a32a
MS
3020 internal_error (__FILE__, __LINE__, _("\
3021hex_string_custom: insufficient space to store result"));
0759e0bf
AC
3022
3023 strcpy (result_end - width - 2, "0x");
3024 memset (result_end - width, '0', width);
3025 strcpy (result_end - hex_len, hex);
3026 return result_end - width - 2;
3027}
ac2e2ef7 3028
bb599908
PH
3029/* Convert VAL to a numeral in the given radix. For
3030 * radix 10, IS_SIGNED may be true, indicating a signed quantity;
3031 * otherwise VAL is interpreted as unsigned. If WIDTH is supplied,
3032 * it is the minimum width (0-padded if needed). USE_C_FORMAT means
3033 * to use C format in all cases. If it is false, then 'x'
581e13c1 3034 * and 'o' formats do not include a prefix (0x or leading 0). */
bb599908
PH
3035
3036char *
3037int_string (LONGEST val, int radix, int is_signed, int width,
3038 int use_c_format)
3039{
3040 switch (radix)
3041 {
3042 case 16:
3043 {
3044 char *result;
5d502164 3045
bb599908
PH
3046 if (width == 0)
3047 result = hex_string (val);
3048 else
3049 result = hex_string_custom (val, width);
3050 if (! use_c_format)
3051 result += 2;
3052 return result;
3053 }
3054 case 10:
3055 {
bb599908 3056 if (is_signed && val < 0)
8cf46f62 3057 return decimal2str ("-", -val, width);
bb599908 3058 else
8cf46f62 3059 return decimal2str ("", val, width);
bb599908
PH
3060 }
3061 case 8:
3062 {
8cf46f62 3063 char *result = octal2str (val, width);
5d502164 3064
bb599908
PH
3065 if (use_c_format || val == 0)
3066 return result;
3067 else
3068 return result + 1;
3069 }
3070 default:
3071 internal_error (__FILE__, __LINE__,
e2e0b3e5 3072 _("failed internal consistency check"));
bb599908
PH
3073 }
3074}
3075
03dd37c3
AC
3076/* Convert a CORE_ADDR into a string. */
3077const char *
3078core_addr_to_string (const CORE_ADDR addr)
49b563f9
KS
3079{
3080 char *str = get_cell ();
e0627e85 3081
49b563f9
KS
3082 strcpy (str, "0x");
3083 strcat (str, phex (addr, sizeof (addr)));
3084 return str;
3085}
3086
3087const char *
3088core_addr_to_string_nz (const CORE_ADDR addr)
03dd37c3
AC
3089{
3090 char *str = get_cell ();
e0627e85 3091
03dd37c3
AC
3092 strcpy (str, "0x");
3093 strcat (str, phex_nz (addr, sizeof (addr)));
3094 return str;
3095}
3096
3097/* Convert a string back into a CORE_ADDR. */
3098CORE_ADDR
3099string_to_core_addr (const char *my_string)
3100{
3101 CORE_ADDR addr = 0;
9544c605 3102
03dd37c3
AC
3103 if (my_string[0] == '0' && tolower (my_string[1]) == 'x')
3104 {
ced572fe 3105 /* Assume that it is in hex. */
03dd37c3 3106 int i;
5d502164 3107
03dd37c3
AC
3108 for (i = 2; my_string[i] != '\0'; i++)
3109 {
3110 if (isdigit (my_string[i]))
3111 addr = (my_string[i] - '0') + (addr * 16);
8731e58e 3112 else if (isxdigit (my_string[i]))
03dd37c3
AC
3113 addr = (tolower (my_string[i]) - 'a' + 0xa) + (addr * 16);
3114 else
63f06803 3115 error (_("invalid hex \"%s\""), my_string);
03dd37c3
AC
3116 }
3117 }
3118 else
3119 {
3120 /* Assume that it is in decimal. */
3121 int i;
5d502164 3122
03dd37c3
AC
3123 for (i = 0; my_string[i] != '\0'; i++)
3124 {
3125 if (isdigit (my_string[i]))
3126 addr = (my_string[i] - '0') + (addr * 10);
3127 else
63f06803 3128 error (_("invalid decimal \"%s\""), my_string);
03dd37c3
AC
3129 }
3130 }
9544c605 3131
03dd37c3
AC
3132 return addr;
3133}
58d370e0 3134
17ea7499
CES
3135const char *
3136host_address_to_string (const void *addr)
3137{
3138 char *str = get_cell ();
ea8992ce 3139
773698b5 3140 xsnprintf (str, CELLSIZE, "0x%s", phex_nz ((uintptr_t) addr, sizeof (addr)));
17ea7499
CES
3141 return str;
3142}
3143
58d370e0
TT
3144char *
3145gdb_realpath (const char *filename)
3146{
70d35819
AC
3147 /* Method 1: The system has a compile time upper bound on a filename
3148 path. Use that and realpath() to canonicalize the name. This is
3149 the most common case. Note that, if there isn't a compile time
3150 upper bound, you want to avoid realpath() at all costs. */
d8d2a3ee 3151#if defined (HAVE_REALPATH) && defined (PATH_MAX)
70d35819 3152 {
70d35819 3153 char buf[PATH_MAX];
82c0260e 3154 const char *rp = realpath (filename, buf);
5d502164 3155
70d35819
AC
3156 if (rp == NULL)
3157 rp = filename;
3158 return xstrdup (rp);
6f88d630 3159 }
a4db0f07
RH
3160#endif /* HAVE_REALPATH */
3161
70d35819
AC
3162 /* Method 2: The host system (i.e., GNU) has the function
3163 canonicalize_file_name() which malloc's a chunk of memory and
3164 returns that, use that. */
3165#if defined(HAVE_CANONICALIZE_FILE_NAME)
3166 {
3167 char *rp = canonicalize_file_name (filename);
5d502164 3168
70d35819
AC
3169 if (rp == NULL)
3170 return xstrdup (filename);
3171 else
3172 return rp;
3173 }
58d370e0 3174#endif
70d35819 3175
6411e720
AC
3176 /* FIXME: cagney/2002-11-13:
3177
3178 Method 2a: Use realpath() with a NULL buffer. Some systems, due
7a9dd1b2 3179 to the problems described in method 3, have modified their
6411e720
AC
3180 realpath() implementation so that it will allocate a buffer when
3181 NULL is passed in. Before this can be used, though, some sort of
3182 configure time test would need to be added. Otherwize the code
3183 will likely core dump. */
3184
70d35819
AC
3185 /* Method 3: Now we're getting desperate! The system doesn't have a
3186 compile time buffer size and no alternative function. Query the
3187 OS, using pathconf(), for the buffer limit. Care is needed
3188 though, some systems do not limit PATH_MAX (return -1 for
3189 pathconf()) making it impossible to pass a correctly sized buffer
3190 to realpath() (it could always overflow). On those systems, we
3191 skip this. */
8c0da261 3192#if defined (HAVE_REALPATH) && defined (_PC_PATH_MAX) && defined(HAVE_ALLOCA)
70d35819
AC
3193 {
3194 /* Find out the max path size. */
3195 long path_max = pathconf ("/", _PC_PATH_MAX);
5d502164 3196
70d35819
AC
3197 if (path_max > 0)
3198 {
3199 /* PATH_MAX is bounded. */
3200 char *buf = alloca (path_max);
3201 char *rp = realpath (filename, buf);
5d502164 3202
70d35819
AC
3203 return xstrdup (rp ? rp : filename);
3204 }
3205 }
3206#endif
3207
9c5e4386
JB
3208 /* The MS Windows method. If we don't have realpath, we assume we
3209 don't have symlinks and just canonicalize to a Windows absolute
3210 path. GetFullPath converts ../ and ./ in relative paths to
3211 absolute paths, filling in current drive if one is not given
3212 or using the current directory of a specified drive (eg, "E:foo").
3213 It also converts all forward slashes to back slashes. */
3214 /* The file system is case-insensitive but case-preserving.
3215 So we do not lowercase the path. Otherwise, we might not
3216 be able to display the original casing in a given path. */
3217#if defined (_WIN32)
3218 {
3219 char buf[MAX_PATH];
3220 DWORD len = GetFullPathName (filename, MAX_PATH, buf, NULL);
3221
3222 if (len > 0 && len < MAX_PATH)
3223 return xstrdup (buf);
3224 }
3225#endif
3226
70d35819
AC
3227 /* This system is a lost cause, just dup the buffer. */
3228 return xstrdup (filename);
58d370e0 3229}
303c8ebd 3230
4856b6bc
JK
3231/* Return a copy of FILENAME, with its directory prefix canonicalized
3232 by gdb_realpath. */
3233
3234char *
3235gdb_realpath_keepfile (const char *filename)
3236{
3237 const char *base_name = lbasename (filename);
3238 char *dir_name;
3239 char *real_path;
3240 char *result;
3241
3242 /* Extract the basename of filename, and return immediately
3243 a copy of filename if it does not contain any directory prefix. */
3244 if (base_name == filename)
3245 return xstrdup (filename);
3246
3247 dir_name = alloca ((size_t) (base_name - filename + 2));
3248 /* Allocate enough space to store the dir_name + plus one extra
3249 character sometimes needed under Windows (see below), and
3250 then the closing \000 character. */
3251 strncpy (dir_name, filename, base_name - filename);
3252 dir_name[base_name - filename] = '\000';
3253
3254#ifdef HAVE_DOS_BASED_FILE_SYSTEM
3255 /* We need to be careful when filename is of the form 'd:foo', which
3256 is equivalent of d:./foo, which is totally different from d:/foo. */
3257 if (strlen (dir_name) == 2 && isalpha (dir_name[0]) && dir_name[1] == ':')
3258 {
3259 dir_name[2] = '.';
3260 dir_name[3] = '\000';
3261 }
3262#endif
3263
3264 /* Canonicalize the directory prefix, and build the resulting
3265 filename. If the dirname realpath already contains an ending
3266 directory separator, avoid doubling it. */
3267 real_path = gdb_realpath (dir_name);
3268 if (IS_DIR_SEPARATOR (real_path[strlen (real_path) - 1]))
3269 result = concat (real_path, base_name, (char *) NULL);
3270 else
3271 result = concat (real_path, SLASH_STRING, base_name, (char *) NULL);
3272
3273 xfree (real_path);
3274 return result;
3275}
3276
5b03f266
AC
3277ULONGEST
3278align_up (ULONGEST v, int n)
3279{
3280 /* Check that N is really a power of two. */
3281 gdb_assert (n && (n & (n-1)) == 0);
3282 return (v + n - 1) & -n;
3283}
3284
3285ULONGEST
3286align_down (ULONGEST v, int n)
3287{
3288 /* Check that N is really a power of two. */
3289 gdb_assert (n && (n & (n-1)) == 0);
3290 return (v & -n);
3291}
ae5a43e0 3292
5bd1ef56
TT
3293/* See utils.h. */
3294
3295LONGEST
3296gdb_sign_extend (LONGEST value, int bit)
3297{
3298 gdb_assert (bit >= 1 && bit <= 8 * sizeof (LONGEST));
3299
3300 if (((value >> (bit - 1)) & 1) != 0)
3301 {
3302 LONGEST signbit = ((LONGEST) 1) << (bit - 1);
3303
3304 value = (value ^ signbit) - signbit;
3305 }
3306
3307 return value;
3308}
3309
ae5a43e0
DJ
3310/* Allocation function for the libiberty hash table which uses an
3311 obstack. The obstack is passed as DATA. */
3312
3313void *
3314hashtab_obstack_allocate (void *data, size_t size, size_t count)
3315{
3316 unsigned int total = size * count;
3317 void *ptr = obstack_alloc ((struct obstack *) data, total);
e0627e85 3318
ae5a43e0
DJ
3319 memset (ptr, 0, total);
3320 return ptr;
3321}
3322
3323/* Trivial deallocation function for the libiberty splay tree and hash
3324 table - don't deallocate anything. Rely on later deletion of the
3325 obstack. DATA will be the obstack, although it is not needed
3326 here. */
3327
3328void
3329dummy_obstack_deallocate (void *object, void *data)
3330{
3331 return;
3332}
253c8abb
DJ
3333
3334/* The bit offset of the highest byte in a ULONGEST, for overflow
3335 checking. */
3336
3337#define HIGH_BYTE_POSN ((sizeof (ULONGEST) - 1) * HOST_CHAR_BIT)
3338
3339/* True (non-zero) iff DIGIT is a valid digit in radix BASE,
3340 where 2 <= BASE <= 36. */
3341
3342static int
3343is_digit_in_base (unsigned char digit, int base)
3344{
3345 if (!isalnum (digit))
3346 return 0;
3347 if (base <= 10)
3348 return (isdigit (digit) && digit < base + '0');
3349 else
3350 return (isdigit (digit) || tolower (digit) < base - 10 + 'a');
3351}
3352
3353static int
3354digit_to_int (unsigned char c)
3355{
3356 if (isdigit (c))
3357 return c - '0';
3358 else
3359 return tolower (c) - 'a' + 10;
3360}
3361
3362/* As for strtoul, but for ULONGEST results. */
3363
3364ULONGEST
3365strtoulst (const char *num, const char **trailer, int base)
3366{
3367 unsigned int high_part;
3368 ULONGEST result;
3369 int minus = 0;
3370 int i = 0;
3371
3372 /* Skip leading whitespace. */
3373 while (isspace (num[i]))
3374 i++;
3375
3376 /* Handle prefixes. */
3377 if (num[i] == '+')
3378 i++;
3379 else if (num[i] == '-')
3380 {
3381 minus = 1;
3382 i++;
3383 }
3384
3385 if (base == 0 || base == 16)
3386 {
3387 if (num[i] == '0' && (num[i + 1] == 'x' || num[i + 1] == 'X'))
3388 {
3389 i += 2;
3390 if (base == 0)
3391 base = 16;
3392 }
3393 }
3394
3395 if (base == 0 && num[i] == '0')
3396 base = 8;
3397
3398 if (base == 0)
3399 base = 10;
3400
3401 if (base < 2 || base > 36)
3402 {
3403 errno = EINVAL;
3404 return 0;
3405 }
3406
3407 result = high_part = 0;
3408 for (; is_digit_in_base (num[i], base); i += 1)
3409 {
3410 result = result * base + digit_to_int (num[i]);
3411 high_part = high_part * base + (unsigned int) (result >> HIGH_BYTE_POSN);
3412 result &= ((ULONGEST) 1 << HIGH_BYTE_POSN) - 1;
3413 if (high_part > 0xff)
3414 {
3415 errno = ERANGE;
3416 result = ~ (ULONGEST) 0;
3417 high_part = 0;
3418 minus = 0;
3419 break;
3420 }
3421 }
3422
3423 if (trailer != NULL)
3424 *trailer = &num[i];
3425
3426 result = result + ((ULONGEST) high_part << HIGH_BYTE_POSN);
3427 if (minus)
3428 return -result;
3429 else
3430 return result;
3431}
e1024ff1
DJ
3432
3433/* Simple, portable version of dirname that does not modify its
3434 argument. */
3435
3436char *
3437ldirname (const char *filename)
3438{
3439 const char *base = lbasename (filename);
3440 char *dirname;
3441
3442 while (base > filename && IS_DIR_SEPARATOR (base[-1]))
3443 --base;
3444
3445 if (base == filename)
3446 return NULL;
3447
3448 dirname = xmalloc (base - filename + 2);
3449 memcpy (dirname, filename, base - filename);
3450
3451 /* On DOS based file systems, convert "d:foo" to "d:.", so that we
3452 create "d:./bar" later instead of the (different) "d:/bar". */
3453 if (base - filename == 2 && IS_ABSOLUTE_PATH (base)
3454 && !IS_DIR_SEPARATOR (filename[0]))
3455 dirname[base++ - filename] = '.';
3456
3457 dirname[base - filename] = '\0';
3458 return dirname;
3459}
d1a41061
PP
3460
3461/* Call libiberty's buildargv, and return the result.
3462 If buildargv fails due to out-of-memory, call nomem.
3463 Therefore, the returned value is guaranteed to be non-NULL,
3464 unless the parameter itself is NULL. */
3465
3466char **
3467gdb_buildargv (const char *s)
3468{
3469 char **argv = buildargv (s);
e0627e85 3470
d1a41061 3471 if (s != NULL && argv == NULL)
d26e3629 3472 malloc_failure (0);
d1a41061
PP
3473 return argv;
3474}
3c16cced 3475
dc146f7c
VP
3476int
3477compare_positive_ints (const void *ap, const void *bp)
3478{
3479 /* Because we know we're comparing two ints which are positive,
3480 there's no danger of overflow here. */
3481 return * (int *) ap - * (int *) bp;
3482}
3483
f8eba3c6
TT
3484/* String compare function for qsort. */
3485
3486int
3487compare_strings (const void *arg1, const void *arg2)
3488{
3489 const char **s1 = (const char **) arg1;
3490 const char **s2 = (const char **) arg2;
3491
3492 return strcmp (*s1, *s2);
3493}
3494
d18b8b7a 3495#define AMBIGUOUS_MESS1 ".\nMatching formats:"
3e43a32a
MS
3496#define AMBIGUOUS_MESS2 \
3497 ".\nUse \"set gnutarget format-name\" to specify the format."
d18b8b7a
HZ
3498
3499const char *
3500gdb_bfd_errmsg (bfd_error_type error_tag, char **matching)
3501{
3502 char *ret, *retp;
3503 int ret_len;
3504 char **p;
3505
3506 /* Check if errmsg just need simple return. */
3507 if (error_tag != bfd_error_file_ambiguously_recognized || matching == NULL)
3508 return bfd_errmsg (error_tag);
3509
3510 ret_len = strlen (bfd_errmsg (error_tag)) + strlen (AMBIGUOUS_MESS1)
3511 + strlen (AMBIGUOUS_MESS2);
3512 for (p = matching; *p; p++)
3513 ret_len += strlen (*p) + 1;
3514 ret = xmalloc (ret_len + 1);
3515 retp = ret;
3516 make_cleanup (xfree, ret);
3517
3518 strcpy (retp, bfd_errmsg (error_tag));
3519 retp += strlen (retp);
3520
3521 strcpy (retp, AMBIGUOUS_MESS1);
3522 retp += strlen (retp);
3523
3524 for (p = matching; *p; p++)
3525 {
3526 sprintf (retp, " %s", *p);
3527 retp += strlen (retp);
3528 }
3529 xfree (matching);
3530
3531 strcpy (retp, AMBIGUOUS_MESS2);
3532
3533 return ret;
3534}
3535
74164c56
JK
3536/* Return ARGS parsed as a valid pid, or throw an error. */
3537
3538int
3539parse_pid_to_attach (char *args)
3540{
3541 unsigned long pid;
3542 char *dummy;
3543
3544 if (!args)
3545 error_no_arg (_("process-id to attach"));
3546
3547 dummy = args;
3548 pid = strtoul (args, &dummy, 0);
3549 /* Some targets don't set errno on errors, grrr! */
3550 if ((pid == 0 && dummy == args) || dummy != &args[strlen (args)])
3551 error (_("Illegal process-id: %s."), args);
3552
3553 return pid;
3554}
3555
353d1d73
JK
3556/* Helper for make_bpstat_clear_actions_cleanup. */
3557
3558static void
3559do_bpstat_clear_actions_cleanup (void *unused)
3560{
3561 bpstat_clear_actions ();
3562}
3563
3564/* Call bpstat_clear_actions for the case an exception is throw. You should
3565 discard_cleanups if no exception is caught. */
3566
3567struct cleanup *
3568make_bpstat_clear_actions_cleanup (void)
3569{
3570 return make_cleanup (do_bpstat_clear_actions_cleanup, NULL);
3571}
3572
df15bd07
JK
3573/* Check for GCC >= 4.x according to the symtab->producer string. Return minor
3574 version (x) of 4.x in such case. If it is not GCC or it is GCC older than
3575 4.x return -1. If it is GCC 5.x or higher return INT_MAX. */
3576
3577int
3578producer_is_gcc_ge_4 (const char *producer)
3579{
3580 const char *cs;
3581 int major, minor;
3582
3583 if (producer == NULL)
3584 {
3585 /* For unknown compilers expect their behavior is not compliant. For GCC
3586 this case can also happen for -gdwarf-4 type units supported since
3587 gcc-4.5. */
3588
3589 return -1;
3590 }
3591
3592 /* Skip any identifier after "GNU " - such as "C++" or "Java". */
3593
3594 if (strncmp (producer, "GNU ", strlen ("GNU ")) != 0)
3595 {
3596 /* For non-GCC compilers expect their behavior is not compliant. */
3597
3598 return -1;
3599 }
3600 cs = &producer[strlen ("GNU ")];
3601 while (*cs && !isdigit (*cs))
3602 cs++;
3603 if (sscanf (cs, "%d.%d", &major, &minor) != 2)
3604 {
3605 /* Not recognized as GCC. */
3606
3607 return -1;
3608 }
3609
3610 if (major < 4)
3611 return -1;
3612 if (major > 4)
3613 return INT_MAX;
3614 return minor;
3615}
3616
e4ab2fad
JK
3617/* Helper for make_cleanup_free_char_ptr_vec. */
3618
3619static void
3620do_free_char_ptr_vec (void *arg)
3621{
3622 VEC (char_ptr) *char_ptr_vec = arg;
3623
3624 free_char_ptr_vec (char_ptr_vec);
3625}
3626
3627/* Make cleanup handler calling xfree for each element of CHAR_PTR_VEC and
3628 final VEC_free for CHAR_PTR_VEC itself.
3629
3630 You must not modify CHAR_PTR_VEC after this cleanup registration as the
3631 CHAR_PTR_VEC base address may change on its updates. Contrary to VEC_free
3632 this function does not (cannot) clear the pointer. */
3633
3634struct cleanup *
3635make_cleanup_free_char_ptr_vec (VEC (char_ptr) *char_ptr_vec)
3636{
3637 return make_cleanup (do_free_char_ptr_vec, char_ptr_vec);
3638}
3639
6dea1fbd
JK
3640/* Substitute all occurences of string FROM by string TO in *STRINGP. *STRINGP
3641 must come from xrealloc-compatible allocator and it may be updated. FROM
1564a261
JK
3642 needs to be delimited by IS_DIR_SEPARATOR or DIRNAME_SEPARATOR (or be
3643 located at the start or end of *STRINGP. */
6dea1fbd
JK
3644
3645void
3646substitute_path_component (char **stringp, const char *from, const char *to)
3647{
3648 char *string = *stringp, *s;
3649 const size_t from_len = strlen (from);
3650 const size_t to_len = strlen (to);
3651
3652 for (s = string;;)
3653 {
3654 s = strstr (s, from);
3655 if (s == NULL)
3656 break;
3657
1564a261
JK
3658 if ((s == string || IS_DIR_SEPARATOR (s[-1])
3659 || s[-1] == DIRNAME_SEPARATOR)
3660 && (s[from_len] == '\0' || IS_DIR_SEPARATOR (s[from_len])
3661 || s[from_len] == DIRNAME_SEPARATOR))
6dea1fbd
JK
3662 {
3663 char *string_new;
3664
3665 string_new = xrealloc (string, (strlen (string) + to_len + 1));
3666
3667 /* Relocate the current S pointer. */
3668 s = s - string + string_new;
3669 string = string_new;
3670
3671 /* Replace from by to. */
3672 memmove (&s[to_len], &s[from_len], strlen (&s[from_len]) + 1);
3673 memcpy (s, to, to_len);
3674
3675 s += to_len;
3676 }
3677 else
3678 s++;
3679 }
3680
3681 *stringp = string;
3682}
3683
0b6cb71e
DE
3684#ifdef HAVE_WAITPID
3685
3686#ifdef SIGALRM
3687
3688/* SIGALRM handler for waitpid_with_timeout. */
3689
3690static void
3691sigalrm_handler (int signo)
3692{
3693 /* Nothing to do. */
3694}
3695
3696#endif
3697
3698/* Wrapper to wait for child PID to die with TIMEOUT.
3699 TIMEOUT is the time to stop waiting in seconds.
3700 If TIMEOUT is zero, pass WNOHANG to waitpid.
3701 Returns PID if it was successfully waited for, otherwise -1.
3702
3703 Timeouts are currently implemented with alarm and SIGALRM.
3704 If the host does not support them, this waits "forever".
3705 It would be odd though for a host to have waitpid and not SIGALRM. */
3706
3707pid_t
3708wait_to_die_with_timeout (pid_t pid, int *status, int timeout)
3709{
3710 pid_t waitpid_result;
3711
3712 gdb_assert (pid > 0);
3713 gdb_assert (timeout >= 0);
3714
3715 if (timeout > 0)
3716 {
3717#ifdef SIGALRM
3718#if defined (HAVE_SIGACTION) && defined (SA_RESTART)
3719 struct sigaction sa, old_sa;
3720
3721 sa.sa_handler = sigalrm_handler;
3722 sigemptyset (&sa.sa_mask);
3723 sa.sa_flags = 0;
3724 sigaction (SIGALRM, &sa, &old_sa);
3725#else
3726 void (*ofunc) ();
3727
3728 ofunc = (void (*)()) signal (SIGALRM, sigalrm_handler);
3729#endif
3730
3731 alarm (timeout);
3732#endif
3733
3734 waitpid_result = waitpid (pid, status, 0);
3735
3736#ifdef SIGALRM
3737 alarm (0);
3738#if defined (HAVE_SIGACTION) && defined (SA_RESTART)
3739 sigaction (SIGALRM, &old_sa, NULL);
3740#else
3741 signal (SIGALRM, ofunc);
3742#endif
3743#endif
3744 }
3745 else
3746 waitpid_result = waitpid (pid, status, WNOHANG);
3747
3748 if (waitpid_result == pid)
3749 return pid;
3750 else
3751 return -1;
3752}
3753
3754#endif /* HAVE_WAITPID */
3755
202cbf1c
JK
3756/* Provide fnmatch compatible function for FNM_FILE_NAME matching of host files.
3757 Both FNM_FILE_NAME and FNM_NOESCAPE must be set in FLAGS.
3758
3759 It handles correctly HAVE_DOS_BASED_FILE_SYSTEM and
3760 HAVE_CASE_INSENSITIVE_FILE_SYSTEM. */
3761
3762int
3763gdb_filename_fnmatch (const char *pattern, const char *string, int flags)
3764{
3765 gdb_assert ((flags & FNM_FILE_NAME) != 0);
3766
3767 /* It is unclear how '\' escaping vs. directory separator should coexist. */
3768 gdb_assert ((flags & FNM_NOESCAPE) != 0);
3769
3770#ifdef HAVE_DOS_BASED_FILE_SYSTEM
3771 {
3772 char *pattern_slash, *string_slash;
3773
3774 /* Replace '\' by '/' in both strings. */
3775
3776 pattern_slash = alloca (strlen (pattern) + 1);
3777 strcpy (pattern_slash, pattern);
3778 pattern = pattern_slash;
3779 for (; *pattern_slash != 0; pattern_slash++)
3780 if (IS_DIR_SEPARATOR (*pattern_slash))
3781 *pattern_slash = '/';
3782
3783 string_slash = alloca (strlen (string) + 1);
3784 strcpy (string_slash, string);
3785 string = string_slash;
3786 for (; *string_slash != 0; string_slash++)
3787 if (IS_DIR_SEPARATOR (*string_slash))
3788 *string_slash = '/';
3789 }
3790#endif /* HAVE_DOS_BASED_FILE_SYSTEM */
3791
3792#ifdef HAVE_CASE_INSENSITIVE_FILE_SYSTEM
3793 flags |= FNM_CASEFOLD;
3794#endif /* HAVE_CASE_INSENSITIVE_FILE_SYSTEM */
3795
3796 return fnmatch (pattern, string, flags);
3797}
3798
2c0b251b
PA
3799/* Provide a prototype to silence -Wmissing-prototypes. */
3800extern initialize_file_ftype _initialize_utils;
3801
3c16cced
PA
3802void
3803_initialize_utils (void)
3804{
3805 add_internal_problem_command (&internal_error_problem);
3806 add_internal_problem_command (&internal_warning_problem);
3807}