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