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