From Vladimir Prus <ghost@cs.msu.su>:
[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,
4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
5 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 2 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, write to the Free Software
21 Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 Boston, MA 02110-1301, USA. */
23
24 #include "defs.h"
25 #include "gdb_assert.h"
26 #include <ctype.h>
27 #include "gdb_string.h"
28 #include "event-top.h"
29 #include "exceptions.h"
30
31 #ifdef TUI
32 #include "tui/tui.h" /* For tui_get_command_dimension. */
33 #endif
34
35 #ifdef __GO32__
36 #include <pc.h>
37 #endif
38
39 /* SunOS's curses.h has a '#define reg register' in it. Thank you Sun. */
40 #ifdef reg
41 #undef reg
42 #endif
43
44 #include <signal.h>
45 #include "gdbcmd.h"
46 #include "serial.h"
47 #include "bfd.h"
48 #include "target.h"
49 #include "demangle.h"
50 #include "expression.h"
51 #include "language.h"
52 #include "charset.h"
53 #include "annotate.h"
54 #include "filenames.h"
55 #include "symfile.h"
56 #include "gdb_obstack.h"
57
58 #include "inferior.h" /* for signed_pointer_to_address */
59
60 #include <sys/param.h> /* For MAXPATHLEN */
61
62 #include "gdb_curses.h"
63
64 #include "readline/readline.h"
65
66 #if !HAVE_DECL_MALLOC
67 extern PTR malloc (); /* OK: PTR */
68 #endif
69 #if !HAVE_DECL_REALLOC
70 extern PTR realloc (); /* OK: PTR */
71 #endif
72 #if !HAVE_DECL_FREE
73 extern void free ();
74 #endif
75
76 /* readline defines this. */
77 #undef savestring
78
79 void (*deprecated_error_begin_hook) (void);
80
81 /* Prototypes for local functions */
82
83 static void vfprintf_maybe_filtered (struct ui_file *, const char *,
84 va_list, int) ATTR_FORMAT (printf, 2, 0);
85
86 static void fputs_maybe_filtered (const char *, struct ui_file *, int);
87
88 static void do_my_cleanups (struct cleanup **, struct cleanup *);
89
90 static void prompt_for_continue (void);
91
92 static void set_screen_size (void);
93 static void set_width (void);
94
95 /* Chain of cleanup actions established with make_cleanup,
96 to be executed if an error happens. */
97
98 static struct cleanup *cleanup_chain; /* cleaned up after a failed command */
99 static struct cleanup *final_cleanup_chain; /* cleaned up when gdb exits */
100 static struct cleanup *run_cleanup_chain; /* cleaned up on each 'run' */
101 static struct cleanup *exec_cleanup_chain; /* cleaned up on each execution command */
102 /* cleaned up on each error from within an execution command */
103 static struct cleanup *exec_error_cleanup_chain;
104
105 /* Pointer to what is left to do for an execution command after the
106 target stops. Used only in asynchronous mode, by targets that
107 support async execution. The finish and until commands use it. So
108 does the target extended-remote command. */
109 struct continuation *cmd_continuation;
110 struct continuation *intermediate_continuation;
111
112 /* Nonzero if we have job control. */
113
114 int job_control;
115
116 /* Nonzero means a quit has been requested. */
117
118 int quit_flag;
119
120 /* Nonzero means quit immediately if Control-C is typed now, rather
121 than waiting until QUIT is executed. Be careful in setting this;
122 code which executes with immediate_quit set has to be very careful
123 about being able to deal with being interrupted at any time. It is
124 almost always better to use QUIT; the only exception I can think of
125 is being able to quit out of a system call (using EINTR loses if
126 the SIGINT happens between the previous QUIT and the system call).
127 To immediately quit in the case in which a SIGINT happens between
128 the previous QUIT and setting immediate_quit (desirable anytime we
129 expect to block), call QUIT after setting immediate_quit. */
130
131 int immediate_quit;
132
133 /* Nonzero means that encoded C++/ObjC names should be printed out in their
134 C++/ObjC form rather than raw. */
135
136 int demangle = 1;
137 static void
138 show_demangle (struct ui_file *file, int from_tty,
139 struct cmd_list_element *c, const char *value)
140 {
141 fprintf_filtered (file, _("\
142 Demangling of encoded C++/ObjC names when displaying symbols is %s.\n"),
143 value);
144 }
145
146 /* Nonzero means that encoded C++/ObjC names should be printed out in their
147 C++/ObjC form even in assembler language displays. If this is set, but
148 DEMANGLE is zero, names are printed raw, i.e. DEMANGLE controls. */
149
150 int asm_demangle = 0;
151 static void
152 show_asm_demangle (struct ui_file *file, int from_tty,
153 struct cmd_list_element *c, const char *value)
154 {
155 fprintf_filtered (file, _("\
156 Demangling of C++/ObjC names in disassembly listings is %s.\n"),
157 value);
158 }
159
160 /* Nonzero means that strings with character values >0x7F should be printed
161 as octal escapes. Zero means just print the value (e.g. it's an
162 international character, and the terminal or window can cope.) */
163
164 int sevenbit_strings = 0;
165 static void
166 show_sevenbit_strings (struct ui_file *file, int from_tty,
167 struct cmd_list_element *c, const char *value)
168 {
169 fprintf_filtered (file, _("\
170 Printing of 8-bit characters in strings as \\nnn is %s.\n"),
171 value);
172 }
173
174 /* String to be printed before error messages, if any. */
175
176 char *error_pre_print;
177
178 /* String to be printed before quit messages, if any. */
179
180 char *quit_pre_print;
181
182 /* String to be printed before warning messages, if any. */
183
184 char *warning_pre_print = "\nwarning: ";
185
186 int pagination_enabled = 1;
187 static void
188 show_pagination_enabled (struct ui_file *file, int from_tty,
189 struct cmd_list_element *c, const char *value)
190 {
191 fprintf_filtered (file, _("State of pagination is %s.\n"), value);
192 }
193
194 \f
195
196 /* Add a new cleanup to the cleanup_chain,
197 and return the previous chain pointer
198 to be passed later to do_cleanups or discard_cleanups.
199 Args are FUNCTION to clean up with, and ARG to pass to it. */
200
201 struct cleanup *
202 make_cleanup (make_cleanup_ftype *function, void *arg)
203 {
204 return make_my_cleanup (&cleanup_chain, function, arg);
205 }
206
207 struct cleanup *
208 make_final_cleanup (make_cleanup_ftype *function, void *arg)
209 {
210 return make_my_cleanup (&final_cleanup_chain, function, arg);
211 }
212
213 struct cleanup *
214 make_run_cleanup (make_cleanup_ftype *function, void *arg)
215 {
216 return make_my_cleanup (&run_cleanup_chain, function, arg);
217 }
218
219 struct cleanup *
220 make_exec_cleanup (make_cleanup_ftype *function, void *arg)
221 {
222 return make_my_cleanup (&exec_cleanup_chain, function, arg);
223 }
224
225 struct cleanup *
226 make_exec_error_cleanup (make_cleanup_ftype *function, void *arg)
227 {
228 return make_my_cleanup (&exec_error_cleanup_chain, function, arg);
229 }
230
231 static void
232 do_freeargv (void *arg)
233 {
234 freeargv ((char **) arg);
235 }
236
237 struct cleanup *
238 make_cleanup_freeargv (char **arg)
239 {
240 return make_my_cleanup (&cleanup_chain, do_freeargv, arg);
241 }
242
243 static void
244 do_bfd_close_cleanup (void *arg)
245 {
246 bfd_close (arg);
247 }
248
249 struct cleanup *
250 make_cleanup_bfd_close (bfd *abfd)
251 {
252 return make_cleanup (do_bfd_close_cleanup, abfd);
253 }
254
255 static void
256 do_close_cleanup (void *arg)
257 {
258 int *fd = arg;
259 close (*fd);
260 xfree (fd);
261 }
262
263 struct cleanup *
264 make_cleanup_close (int fd)
265 {
266 int *saved_fd = xmalloc (sizeof (fd));
267 *saved_fd = fd;
268 return make_cleanup (do_close_cleanup, saved_fd);
269 }
270
271 static void
272 do_ui_file_delete (void *arg)
273 {
274 ui_file_delete (arg);
275 }
276
277 struct cleanup *
278 make_cleanup_ui_file_delete (struct ui_file *arg)
279 {
280 return make_my_cleanup (&cleanup_chain, do_ui_file_delete, arg);
281 }
282
283 static void
284 do_free_section_addr_info (void *arg)
285 {
286 free_section_addr_info (arg);
287 }
288
289 struct cleanup *
290 make_cleanup_free_section_addr_info (struct section_addr_info *addrs)
291 {
292 return make_my_cleanup (&cleanup_chain, do_free_section_addr_info, addrs);
293 }
294
295
296 struct cleanup *
297 make_my_cleanup (struct cleanup **pmy_chain, make_cleanup_ftype *function,
298 void *arg)
299 {
300 struct cleanup *new
301 = (struct cleanup *) xmalloc (sizeof (struct cleanup));
302 struct cleanup *old_chain = *pmy_chain;
303
304 new->next = *pmy_chain;
305 new->function = function;
306 new->arg = arg;
307 *pmy_chain = new;
308
309 return old_chain;
310 }
311
312 /* Discard cleanups and do the actions they describe
313 until we get back to the point OLD_CHAIN in the cleanup_chain. */
314
315 void
316 do_cleanups (struct cleanup *old_chain)
317 {
318 do_my_cleanups (&cleanup_chain, old_chain);
319 }
320
321 void
322 do_final_cleanups (struct cleanup *old_chain)
323 {
324 do_my_cleanups (&final_cleanup_chain, old_chain);
325 }
326
327 void
328 do_run_cleanups (struct cleanup *old_chain)
329 {
330 do_my_cleanups (&run_cleanup_chain, old_chain);
331 }
332
333 void
334 do_exec_cleanups (struct cleanup *old_chain)
335 {
336 do_my_cleanups (&exec_cleanup_chain, old_chain);
337 }
338
339 void
340 do_exec_error_cleanups (struct cleanup *old_chain)
341 {
342 do_my_cleanups (&exec_error_cleanup_chain, old_chain);
343 }
344
345 static void
346 do_my_cleanups (struct cleanup **pmy_chain,
347 struct cleanup *old_chain)
348 {
349 struct cleanup *ptr;
350 while ((ptr = *pmy_chain) != old_chain)
351 {
352 *pmy_chain = ptr->next; /* Do this first incase recursion */
353 (*ptr->function) (ptr->arg);
354 xfree (ptr);
355 }
356 }
357
358 /* Discard cleanups, not doing the actions they describe,
359 until we get back to the point OLD_CHAIN in the cleanup_chain. */
360
361 void
362 discard_cleanups (struct cleanup *old_chain)
363 {
364 discard_my_cleanups (&cleanup_chain, old_chain);
365 }
366
367 void
368 discard_final_cleanups (struct cleanup *old_chain)
369 {
370 discard_my_cleanups (&final_cleanup_chain, old_chain);
371 }
372
373 void
374 discard_exec_error_cleanups (struct cleanup *old_chain)
375 {
376 discard_my_cleanups (&exec_error_cleanup_chain, old_chain);
377 }
378
379 void
380 discard_my_cleanups (struct cleanup **pmy_chain,
381 struct cleanup *old_chain)
382 {
383 struct cleanup *ptr;
384 while ((ptr = *pmy_chain) != old_chain)
385 {
386 *pmy_chain = ptr->next;
387 xfree (ptr);
388 }
389 }
390
391 /* Set the cleanup_chain to 0, and return the old cleanup chain. */
392 struct cleanup *
393 save_cleanups (void)
394 {
395 return save_my_cleanups (&cleanup_chain);
396 }
397
398 struct cleanup *
399 save_final_cleanups (void)
400 {
401 return save_my_cleanups (&final_cleanup_chain);
402 }
403
404 struct cleanup *
405 save_my_cleanups (struct cleanup **pmy_chain)
406 {
407 struct cleanup *old_chain = *pmy_chain;
408
409 *pmy_chain = 0;
410 return old_chain;
411 }
412
413 /* Restore the cleanup chain from a previously saved chain. */
414 void
415 restore_cleanups (struct cleanup *chain)
416 {
417 restore_my_cleanups (&cleanup_chain, chain);
418 }
419
420 void
421 restore_final_cleanups (struct cleanup *chain)
422 {
423 restore_my_cleanups (&final_cleanup_chain, chain);
424 }
425
426 void
427 restore_my_cleanups (struct cleanup **pmy_chain, struct cleanup *chain)
428 {
429 *pmy_chain = chain;
430 }
431
432 /* This function is useful for cleanups.
433 Do
434
435 foo = xmalloc (...);
436 old_chain = make_cleanup (free_current_contents, &foo);
437
438 to arrange to free the object thus allocated. */
439
440 void
441 free_current_contents (void *ptr)
442 {
443 void **location = ptr;
444 if (location == NULL)
445 internal_error (__FILE__, __LINE__,
446 _("free_current_contents: NULL pointer"));
447 if (*location != NULL)
448 {
449 xfree (*location);
450 *location = NULL;
451 }
452 }
453
454 /* Provide a known function that does nothing, to use as a base for
455 for a possibly long chain of cleanups. This is useful where we
456 use the cleanup chain for handling normal cleanups as well as dealing
457 with cleanups that need to be done as a result of a call to error().
458 In such cases, we may not be certain where the first cleanup is, unless
459 we have a do-nothing one to always use as the base. */
460
461 void
462 null_cleanup (void *arg)
463 {
464 }
465
466 /* Add a continuation to the continuation list, the global list
467 cmd_continuation. The new continuation will be added at the front.*/
468 void
469 add_continuation (void (*continuation_hook) (struct continuation_arg *),
470 struct continuation_arg *arg_list)
471 {
472 struct continuation *continuation_ptr;
473
474 continuation_ptr =
475 (struct continuation *) xmalloc (sizeof (struct continuation));
476 continuation_ptr->continuation_hook = continuation_hook;
477 continuation_ptr->arg_list = arg_list;
478 continuation_ptr->next = cmd_continuation;
479 cmd_continuation = continuation_ptr;
480 }
481
482 /* Walk down the cmd_continuation list, and execute all the
483 continuations. There is a problem though. In some cases new
484 continuations may be added while we are in the middle of this
485 loop. If this happens they will be added in the front, and done
486 before we have a chance of exhausting those that were already
487 there. We need to then save the beginning of the list in a pointer
488 and do the continuations from there on, instead of using the
489 global beginning of list as our iteration pointer. */
490 void
491 do_all_continuations (void)
492 {
493 struct continuation *continuation_ptr;
494 struct continuation *saved_continuation;
495
496 /* Copy the list header into another pointer, and set the global
497 list header to null, so that the global list can change as a side
498 effect of invoking the continuations and the processing of
499 the preexisting continuations will not be affected. */
500 continuation_ptr = cmd_continuation;
501 cmd_continuation = NULL;
502
503 /* Work now on the list we have set aside. */
504 while (continuation_ptr)
505 {
506 (continuation_ptr->continuation_hook) (continuation_ptr->arg_list);
507 saved_continuation = continuation_ptr;
508 continuation_ptr = continuation_ptr->next;
509 xfree (saved_continuation);
510 }
511 }
512
513 /* Walk down the cmd_continuation list, and get rid of all the
514 continuations. */
515 void
516 discard_all_continuations (void)
517 {
518 struct continuation *continuation_ptr;
519
520 while (cmd_continuation)
521 {
522 continuation_ptr = cmd_continuation;
523 cmd_continuation = continuation_ptr->next;
524 xfree (continuation_ptr);
525 }
526 }
527
528 /* Add a continuation to the continuation list, the global list
529 intermediate_continuation. The new continuation will be added at
530 the front. */
531 void
532 add_intermediate_continuation (void (*continuation_hook)
533 (struct continuation_arg *),
534 struct continuation_arg *arg_list)
535 {
536 struct continuation *continuation_ptr;
537
538 continuation_ptr =
539 (struct continuation *) xmalloc (sizeof (struct continuation));
540 continuation_ptr->continuation_hook = continuation_hook;
541 continuation_ptr->arg_list = arg_list;
542 continuation_ptr->next = intermediate_continuation;
543 intermediate_continuation = continuation_ptr;
544 }
545
546 /* Walk down the cmd_continuation list, and execute all the
547 continuations. There is a problem though. In some cases new
548 continuations may be added while we are in the middle of this
549 loop. If this happens they will be added in the front, and done
550 before we have a chance of exhausting those that were already
551 there. We need to then save the beginning of the list in a pointer
552 and do the continuations from there on, instead of using the
553 global beginning of list as our iteration pointer.*/
554 void
555 do_all_intermediate_continuations (void)
556 {
557 struct continuation *continuation_ptr;
558 struct continuation *saved_continuation;
559
560 /* Copy the list header into another pointer, and set the global
561 list header to null, so that the global list can change as a side
562 effect of invoking the continuations and the processing of
563 the preexisting continuations will not be affected. */
564 continuation_ptr = intermediate_continuation;
565 intermediate_continuation = NULL;
566
567 /* Work now on the list we have set aside. */
568 while (continuation_ptr)
569 {
570 (continuation_ptr->continuation_hook) (continuation_ptr->arg_list);
571 saved_continuation = continuation_ptr;
572 continuation_ptr = continuation_ptr->next;
573 xfree (saved_continuation);
574 }
575 }
576
577 /* Walk down the cmd_continuation list, and get rid of all the
578 continuations. */
579 void
580 discard_all_intermediate_continuations (void)
581 {
582 struct continuation *continuation_ptr;
583
584 while (intermediate_continuation)
585 {
586 continuation_ptr = intermediate_continuation;
587 intermediate_continuation = continuation_ptr->next;
588 xfree (continuation_ptr);
589 }
590 }
591 \f
592
593
594 /* Print a warning message. The first argument STRING is the warning
595 message, used as an fprintf format string, the second is the
596 va_list of arguments for that string. A warning is unfiltered (not
597 paginated) so that the user does not need to page through each
598 screen full of warnings when there are lots of them. */
599
600 void
601 vwarning (const char *string, va_list args)
602 {
603 if (deprecated_warning_hook)
604 (*deprecated_warning_hook) (string, args);
605 else
606 {
607 target_terminal_ours ();
608 wrap_here (""); /* Force out any buffered output */
609 gdb_flush (gdb_stdout);
610 if (warning_pre_print)
611 fputs_unfiltered (warning_pre_print, gdb_stderr);
612 vfprintf_unfiltered (gdb_stderr, string, args);
613 fprintf_unfiltered (gdb_stderr, "\n");
614 va_end (args);
615 }
616 }
617
618 /* Print a warning message.
619 The first argument STRING is the warning message, used as a fprintf string,
620 and the remaining args are passed as arguments to it.
621 The primary difference between warnings and errors is that a warning
622 does not force the return to command level. */
623
624 void
625 warning (const char *string, ...)
626 {
627 va_list args;
628 va_start (args, string);
629 vwarning (string, args);
630 va_end (args);
631 }
632
633 /* Print an error message and return to command level.
634 The first argument STRING is the error message, used as a fprintf string,
635 and the remaining args are passed as arguments to it. */
636
637 NORETURN void
638 verror (const char *string, va_list args)
639 {
640 throw_verror (GENERIC_ERROR, string, args);
641 }
642
643 NORETURN void
644 error (const char *string, ...)
645 {
646 va_list args;
647 va_start (args, string);
648 throw_verror (GENERIC_ERROR, string, args);
649 va_end (args);
650 }
651
652 /* Print an error message and quit.
653 The first argument STRING is the error message, used as a fprintf string,
654 and the remaining args are passed as arguments to it. */
655
656 NORETURN void
657 vfatal (const char *string, va_list args)
658 {
659 throw_vfatal (string, args);
660 }
661
662 NORETURN void
663 fatal (const char *string, ...)
664 {
665 va_list args;
666 va_start (args, string);
667 throw_vfatal (string, args);
668 va_end (args);
669 }
670
671 NORETURN void
672 error_stream (struct ui_file *stream)
673 {
674 long len;
675 char *message = ui_file_xstrdup (stream, &len);
676 make_cleanup (xfree, message);
677 error (("%s"), message);
678 }
679
680 /* Print a message reporting an internal error/warning. Ask the user
681 if they want to continue, dump core, or just exit. Return
682 something to indicate a quit. */
683
684 struct internal_problem
685 {
686 const char *name;
687 /* FIXME: cagney/2002-08-15: There should be ``maint set/show''
688 commands available for controlling these variables. */
689 enum auto_boolean should_quit;
690 enum auto_boolean should_dump_core;
691 };
692
693 /* Report a problem, internal to GDB, to the user. Once the problem
694 has been reported, and assuming GDB didn't quit, the caller can
695 either allow execution to resume or throw an error. */
696
697 static void ATTR_FORMAT (printf, 4, 0)
698 internal_vproblem (struct internal_problem *problem,
699 const char *file, int line, const char *fmt, va_list ap)
700 {
701 static int dejavu;
702 int quit_p;
703 int dump_core_p;
704 char *reason;
705
706 /* Don't allow infinite error/warning recursion. */
707 {
708 static char msg[] = "Recursive internal problem.\n";
709 switch (dejavu)
710 {
711 case 0:
712 dejavu = 1;
713 break;
714 case 1:
715 dejavu = 2;
716 fputs_unfiltered (msg, gdb_stderr);
717 abort (); /* NOTE: GDB has only three calls to abort(). */
718 default:
719 dejavu = 3;
720 write (STDERR_FILENO, msg, sizeof (msg));
721 exit (1);
722 }
723 }
724
725 /* Try to get the message out and at the start of a new line. */
726 target_terminal_ours ();
727 begin_line ();
728
729 /* Create a string containing the full error/warning message. Need
730 to call query with this full string, as otherwize the reason
731 (error/warning) and question become separated. Format using a
732 style similar to a compiler error message. Include extra detail
733 so that the user knows that they are living on the edge. */
734 {
735 char *msg;
736 msg = xstrvprintf (fmt, ap);
737 reason = xstrprintf ("\
738 %s:%d: %s: %s\n\
739 A problem internal to GDB has been detected,\n\
740 further debugging may prove unreliable.", file, line, problem->name, msg);
741 xfree (msg);
742 make_cleanup (xfree, reason);
743 }
744
745 switch (problem->should_quit)
746 {
747 case AUTO_BOOLEAN_AUTO:
748 /* Default (yes/batch case) is to quit GDB. When in batch mode
749 this lessens the likelhood of GDB going into an infinate
750 loop. */
751 quit_p = query (_("%s\nQuit this debugging session? "), reason);
752 break;
753 case AUTO_BOOLEAN_TRUE:
754 quit_p = 1;
755 break;
756 case AUTO_BOOLEAN_FALSE:
757 quit_p = 0;
758 break;
759 default:
760 internal_error (__FILE__, __LINE__, _("bad switch"));
761 }
762
763 switch (problem->should_dump_core)
764 {
765 case AUTO_BOOLEAN_AUTO:
766 /* Default (yes/batch case) is to dump core. This leaves a GDB
767 `dropping' so that it is easier to see that something went
768 wrong in GDB. */
769 dump_core_p = query (_("%s\nCreate a core file of GDB? "), reason);
770 break;
771 break;
772 case AUTO_BOOLEAN_TRUE:
773 dump_core_p = 1;
774 break;
775 case AUTO_BOOLEAN_FALSE:
776 dump_core_p = 0;
777 break;
778 default:
779 internal_error (__FILE__, __LINE__, _("bad switch"));
780 }
781
782 if (quit_p)
783 {
784 if (dump_core_p)
785 abort (); /* NOTE: GDB has only three calls to abort(). */
786 else
787 exit (1);
788 }
789 else
790 {
791 if (dump_core_p)
792 {
793 #ifdef HAVE_WORKING_FORK
794 if (fork () == 0)
795 abort (); /* NOTE: GDB has only three calls to abort(). */
796 #endif
797 }
798 }
799
800 dejavu = 0;
801 }
802
803 static struct internal_problem internal_error_problem = {
804 "internal-error", AUTO_BOOLEAN_AUTO, AUTO_BOOLEAN_AUTO
805 };
806
807 NORETURN void
808 internal_verror (const char *file, int line, const char *fmt, va_list ap)
809 {
810 internal_vproblem (&internal_error_problem, file, line, fmt, ap);
811 deprecated_throw_reason (RETURN_ERROR);
812 }
813
814 NORETURN void
815 internal_error (const char *file, int line, const char *string, ...)
816 {
817 va_list ap;
818 va_start (ap, string);
819 internal_verror (file, line, string, ap);
820 va_end (ap);
821 }
822
823 static struct internal_problem internal_warning_problem = {
824 "internal-warning", AUTO_BOOLEAN_AUTO, AUTO_BOOLEAN_AUTO
825 };
826
827 void
828 internal_vwarning (const char *file, int line, const char *fmt, va_list ap)
829 {
830 internal_vproblem (&internal_warning_problem, file, line, fmt, ap);
831 }
832
833 void
834 internal_warning (const char *file, int line, const char *string, ...)
835 {
836 va_list ap;
837 va_start (ap, string);
838 internal_vwarning (file, line, string, ap);
839 va_end (ap);
840 }
841
842 /* The strerror() function can return NULL for errno values that are
843 out of range. Provide a "safe" version that always returns a
844 printable string. */
845
846 char *
847 safe_strerror (int errnum)
848 {
849 char *msg;
850
851 msg = strerror (errnum);
852 if (msg == NULL)
853 {
854 static char buf[32];
855 xsnprintf (buf, sizeof buf, "(undocumented errno %d)", errnum);
856 msg = buf;
857 }
858 return (msg);
859 }
860
861 /* Print the system error message for errno, and also mention STRING
862 as the file name for which the error was encountered.
863 Then return to command level. */
864
865 NORETURN void
866 perror_with_name (const char *string)
867 {
868 char *err;
869 char *combined;
870
871 err = safe_strerror (errno);
872 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
873 strcpy (combined, string);
874 strcat (combined, ": ");
875 strcat (combined, err);
876
877 /* I understand setting these is a matter of taste. Still, some people
878 may clear errno but not know about bfd_error. Doing this here is not
879 unreasonable. */
880 bfd_set_error (bfd_error_no_error);
881 errno = 0;
882
883 error (_("%s."), combined);
884 }
885
886 /* Print the system error message for ERRCODE, and also mention STRING
887 as the file name for which the error was encountered. */
888
889 void
890 print_sys_errmsg (const char *string, int errcode)
891 {
892 char *err;
893 char *combined;
894
895 err = safe_strerror (errcode);
896 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
897 strcpy (combined, string);
898 strcat (combined, ": ");
899 strcat (combined, err);
900
901 /* We want anything which was printed on stdout to come out first, before
902 this message. */
903 gdb_flush (gdb_stdout);
904 fprintf_unfiltered (gdb_stderr, "%s.\n", combined);
905 }
906
907 /* Control C eventually causes this to be called, at a convenient time. */
908
909 void
910 quit (void)
911 {
912 #ifdef __MSDOS__
913 /* No steenking SIGINT will ever be coming our way when the
914 program is resumed. Don't lie. */
915 fatal ("Quit");
916 #else
917 if (job_control
918 /* If there is no terminal switching for this target, then we can't
919 possibly get screwed by the lack of job control. */
920 || current_target.to_terminal_ours == NULL)
921 fatal ("Quit");
922 else
923 fatal ("Quit (expect signal SIGINT when the program is resumed)");
924 #endif
925 }
926
927 /* Control C comes here */
928 void
929 request_quit (int signo)
930 {
931 quit_flag = 1;
932 /* Restore the signal handler. Harmless with BSD-style signals,
933 needed for System V-style signals. */
934 signal (signo, request_quit);
935
936 if (immediate_quit)
937 quit ();
938 }
939 \f
940 /* Called when a memory allocation fails, with the number of bytes of
941 memory requested in SIZE. */
942
943 NORETURN void
944 nomem (long size)
945 {
946 if (size > 0)
947 {
948 internal_error (__FILE__, __LINE__,
949 _("virtual memory exhausted: can't allocate %ld bytes."),
950 size);
951 }
952 else
953 {
954 internal_error (__FILE__, __LINE__, _("virtual memory exhausted."));
955 }
956 }
957
958 /* The xmalloc() (libiberty.h) family of memory management routines.
959
960 These are like the ISO-C malloc() family except that they implement
961 consistent semantics and guard against typical memory management
962 problems. */
963
964 /* NOTE: These are declared using PTR to ensure consistency with
965 "libiberty.h". xfree() is GDB local. */
966
967 PTR /* OK: PTR */
968 xmalloc (size_t size)
969 {
970 void *val;
971
972 /* See libiberty/xmalloc.c. This function need's to match that's
973 semantics. It never returns NULL. */
974 if (size == 0)
975 size = 1;
976
977 val = malloc (size); /* OK: malloc */
978 if (val == NULL)
979 nomem (size);
980
981 return (val);
982 }
983
984 void *
985 xzalloc (size_t size)
986 {
987 return xcalloc (1, size);
988 }
989
990 PTR /* OK: PTR */
991 xrealloc (PTR ptr, size_t size) /* OK: PTR */
992 {
993 void *val;
994
995 /* See libiberty/xmalloc.c. This function need's to match that's
996 semantics. It never returns NULL. */
997 if (size == 0)
998 size = 1;
999
1000 if (ptr != NULL)
1001 val = realloc (ptr, size); /* OK: realloc */
1002 else
1003 val = malloc (size); /* OK: malloc */
1004 if (val == NULL)
1005 nomem (size);
1006
1007 return (val);
1008 }
1009
1010 PTR /* OK: PTR */
1011 xcalloc (size_t number, size_t size)
1012 {
1013 void *mem;
1014
1015 /* See libiberty/xmalloc.c. This function need's to match that's
1016 semantics. It never returns NULL. */
1017 if (number == 0 || size == 0)
1018 {
1019 number = 1;
1020 size = 1;
1021 }
1022
1023 mem = calloc (number, size); /* OK: xcalloc */
1024 if (mem == NULL)
1025 nomem (number * size);
1026
1027 return mem;
1028 }
1029
1030 void
1031 xfree (void *ptr)
1032 {
1033 if (ptr != NULL)
1034 free (ptr); /* OK: free */
1035 }
1036 \f
1037
1038 /* Like asprintf/vasprintf but get an internal_error if the call
1039 fails. */
1040
1041 char *
1042 xstrprintf (const char *format, ...)
1043 {
1044 char *ret;
1045 va_list args;
1046 va_start (args, format);
1047 ret = xstrvprintf (format, args);
1048 va_end (args);
1049 return ret;
1050 }
1051
1052 void
1053 xasprintf (char **ret, const char *format, ...)
1054 {
1055 va_list args;
1056 va_start (args, format);
1057 (*ret) = xstrvprintf (format, args);
1058 va_end (args);
1059 }
1060
1061 void
1062 xvasprintf (char **ret, const char *format, va_list ap)
1063 {
1064 (*ret) = xstrvprintf (format, ap);
1065 }
1066
1067 char *
1068 xstrvprintf (const char *format, va_list ap)
1069 {
1070 char *ret = NULL;
1071 int status = vasprintf (&ret, format, ap);
1072 /* NULL is returned when there was a memory allocation problem, or
1073 any other error (for instance, a bad format string). A negative
1074 status (the printed length) with a non-NULL buffer should never
1075 happen, but just to be sure. */
1076 if (ret == NULL || status < 0)
1077 internal_error (__FILE__, __LINE__, _("vasprintf call failed"));
1078 return ret;
1079 }
1080
1081 int
1082 xsnprintf (char *str, size_t size, const char *format, ...)
1083 {
1084 va_list args;
1085 int ret;
1086
1087 va_start (args, format);
1088 ret = vsnprintf (str, size, format, args);
1089 gdb_assert (ret < size);
1090 va_end (args);
1091
1092 return ret;
1093 }
1094
1095 /* My replacement for the read system call.
1096 Used like `read' but keeps going if `read' returns too soon. */
1097
1098 int
1099 myread (int desc, char *addr, int len)
1100 {
1101 int val;
1102 int orglen = len;
1103
1104 while (len > 0)
1105 {
1106 val = read (desc, addr, len);
1107 if (val < 0)
1108 return val;
1109 if (val == 0)
1110 return orglen - len;
1111 len -= val;
1112 addr += val;
1113 }
1114 return orglen;
1115 }
1116 \f
1117 /* Make a copy of the string at PTR with SIZE characters
1118 (and add a null character at the end in the copy).
1119 Uses malloc to get the space. Returns the address of the copy. */
1120
1121 char *
1122 savestring (const char *ptr, size_t size)
1123 {
1124 char *p = (char *) xmalloc (size + 1);
1125 memcpy (p, ptr, size);
1126 p[size] = 0;
1127 return p;
1128 }
1129
1130 void
1131 print_spaces (int n, struct ui_file *file)
1132 {
1133 fputs_unfiltered (n_spaces (n), file);
1134 }
1135
1136 /* Print a host address. */
1137
1138 void
1139 gdb_print_host_address (const void *addr, struct ui_file *stream)
1140 {
1141
1142 /* We could use the %p conversion specifier to fprintf if we had any
1143 way of knowing whether this host supports it. But the following
1144 should work on the Alpha and on 32 bit machines. */
1145
1146 fprintf_filtered (stream, "0x%lx", (unsigned long) addr);
1147 }
1148
1149 /* Ask user a y-or-n question and return 1 iff answer is yes.
1150 Takes three args which are given to printf to print the question.
1151 The first, a control string, should end in "? ".
1152 It should not say how to answer, because we do that. */
1153
1154 /* VARARGS */
1155 int
1156 query (const char *ctlstr, ...)
1157 {
1158 va_list args;
1159 int answer;
1160 int ans2;
1161 int retval;
1162
1163 if (deprecated_query_hook)
1164 {
1165 va_start (args, ctlstr);
1166 return deprecated_query_hook (ctlstr, args);
1167 }
1168
1169 /* Automatically answer "yes" if input is not from a terminal. */
1170 if (!input_from_terminal_p ())
1171 return 1;
1172
1173 while (1)
1174 {
1175 wrap_here (""); /* Flush any buffered output */
1176 gdb_flush (gdb_stdout);
1177
1178 if (annotation_level > 1)
1179 printf_filtered (("\n\032\032pre-query\n"));
1180
1181 va_start (args, ctlstr);
1182 vfprintf_filtered (gdb_stdout, ctlstr, args);
1183 va_end (args);
1184 printf_filtered (_("(y or n) "));
1185
1186 if (annotation_level > 1)
1187 printf_filtered (("\n\032\032query\n"));
1188
1189 wrap_here ("");
1190 gdb_flush (gdb_stdout);
1191
1192 answer = fgetc (stdin);
1193 clearerr (stdin); /* in case of C-d */
1194 if (answer == EOF) /* C-d */
1195 {
1196 retval = 1;
1197 break;
1198 }
1199 /* Eat rest of input line, to EOF or newline */
1200 if (answer != '\n')
1201 do
1202 {
1203 ans2 = fgetc (stdin);
1204 clearerr (stdin);
1205 }
1206 while (ans2 != EOF && ans2 != '\n' && ans2 != '\r');
1207
1208 if (answer >= 'a')
1209 answer -= 040;
1210 if (answer == 'Y')
1211 {
1212 retval = 1;
1213 break;
1214 }
1215 if (answer == 'N')
1216 {
1217 retval = 0;
1218 break;
1219 }
1220 printf_filtered (_("Please answer y or n.\n"));
1221 }
1222
1223 if (annotation_level > 1)
1224 printf_filtered (("\n\032\032post-query\n"));
1225 return retval;
1226 }
1227 \f
1228
1229 /* This function supports the nquery() and yquery() functions.
1230 Ask user a y-or-n question and return 0 if answer is no, 1 if
1231 answer is yes, or default the answer to the specified default.
1232 DEFCHAR is either 'y' or 'n' and refers to the default answer.
1233 CTLSTR is the control string and should end in "? ". It should
1234 not say how to answer, because we do that.
1235 ARGS are the arguments passed along with the CTLSTR argument to
1236 printf. */
1237
1238 static int ATTR_FORMAT (printf, 1, 0)
1239 defaulted_query (const char *ctlstr, const char defchar, va_list args)
1240 {
1241 int answer;
1242 int ans2;
1243 int retval;
1244 int def_value;
1245 char def_answer, not_def_answer;
1246 char *y_string, *n_string;
1247
1248 /* Set up according to which answer is the default. */
1249 if (defchar == 'y')
1250 {
1251 def_value = 1;
1252 def_answer = 'Y';
1253 not_def_answer = 'N';
1254 y_string = "[y]";
1255 n_string = "n";
1256 }
1257 else
1258 {
1259 def_value = 0;
1260 def_answer = 'N';
1261 not_def_answer = 'Y';
1262 y_string = "y";
1263 n_string = "[n]";
1264 }
1265
1266 if (deprecated_query_hook)
1267 {
1268 return deprecated_query_hook (ctlstr, args);
1269 }
1270
1271 /* Automatically answer default value if input is not from a terminal. */
1272 if (!input_from_terminal_p ())
1273 return def_value;
1274
1275 while (1)
1276 {
1277 wrap_here (""); /* Flush any buffered output */
1278 gdb_flush (gdb_stdout);
1279
1280 if (annotation_level > 1)
1281 printf_filtered (("\n\032\032pre-query\n"));
1282
1283 vfprintf_filtered (gdb_stdout, ctlstr, args);
1284 printf_filtered (_("(%s or %s) "), y_string, n_string);
1285
1286 if (annotation_level > 1)
1287 printf_filtered (("\n\032\032query\n"));
1288
1289 wrap_here ("");
1290 gdb_flush (gdb_stdout);
1291
1292 answer = fgetc (stdin);
1293 clearerr (stdin); /* in case of C-d */
1294 if (answer == EOF) /* C-d */
1295 {
1296 retval = def_value;
1297 break;
1298 }
1299 /* Eat rest of input line, to EOF or newline */
1300 if (answer != '\n')
1301 do
1302 {
1303 ans2 = fgetc (stdin);
1304 clearerr (stdin);
1305 }
1306 while (ans2 != EOF && ans2 != '\n' && ans2 != '\r');
1307
1308 if (answer >= 'a')
1309 answer -= 040;
1310 /* Check answer. For the non-default, the user must specify
1311 the non-default explicitly. */
1312 if (answer == not_def_answer)
1313 {
1314 retval = !def_value;
1315 break;
1316 }
1317 /* Otherwise, for the default, the user may either specify
1318 the required input or have it default by entering nothing. */
1319 if (answer == def_answer || answer == '\n' ||
1320 answer == '\r' || answer == EOF)
1321 {
1322 retval = def_value;
1323 break;
1324 }
1325 /* Invalid entries are not defaulted and require another selection. */
1326 printf_filtered (_("Please answer %s or %s.\n"),
1327 y_string, n_string);
1328 }
1329
1330 if (annotation_level > 1)
1331 printf_filtered (("\n\032\032post-query\n"));
1332 return retval;
1333 }
1334 \f
1335
1336 /* Ask user a y-or-n question and return 0 if answer is no, 1 if
1337 answer is yes, or 0 if answer is defaulted.
1338 Takes three args which are given to printf to print the question.
1339 The first, a control string, should end in "? ".
1340 It should not say how to answer, because we do that. */
1341
1342 int
1343 nquery (const char *ctlstr, ...)
1344 {
1345 va_list args;
1346
1347 va_start (args, ctlstr);
1348 return defaulted_query (ctlstr, 'n', args);
1349 va_end (args);
1350 }
1351
1352 /* Ask user a y-or-n question and return 0 if answer is no, 1 if
1353 answer is yes, or 1 if answer is defaulted.
1354 Takes three args which are given to printf to print the question.
1355 The first, a control string, should end in "? ".
1356 It should not say how to answer, because we do that. */
1357
1358 int
1359 yquery (const char *ctlstr, ...)
1360 {
1361 va_list args;
1362
1363 va_start (args, ctlstr);
1364 return defaulted_query (ctlstr, 'y', args);
1365 va_end (args);
1366 }
1367
1368 /* Print an error message saying that we couldn't make sense of a
1369 \^mumble sequence in a string or character constant. START and END
1370 indicate a substring of some larger string that contains the
1371 erroneous backslash sequence, missing the initial backslash. */
1372 static NORETURN int
1373 no_control_char_error (const char *start, const char *end)
1374 {
1375 int len = end - start;
1376 char *copy = alloca (end - start + 1);
1377
1378 memcpy (copy, start, len);
1379 copy[len] = '\0';
1380
1381 error (_("There is no control character `\\%s' in the `%s' character set."),
1382 copy, target_charset ());
1383 }
1384
1385 /* Parse a C escape sequence. STRING_PTR points to a variable
1386 containing a pointer to the string to parse. That pointer
1387 should point to the character after the \. That pointer
1388 is updated past the characters we use. The value of the
1389 escape sequence is returned.
1390
1391 A negative value means the sequence \ newline was seen,
1392 which is supposed to be equivalent to nothing at all.
1393
1394 If \ is followed by a null character, we return a negative
1395 value and leave the string pointer pointing at the null character.
1396
1397 If \ is followed by 000, we return 0 and leave the string pointer
1398 after the zeros. A value of 0 does not mean end of string. */
1399
1400 int
1401 parse_escape (char **string_ptr)
1402 {
1403 int target_char;
1404 int c = *(*string_ptr)++;
1405 if (c_parse_backslash (c, &target_char))
1406 return target_char;
1407 else
1408 switch (c)
1409 {
1410 case '\n':
1411 return -2;
1412 case 0:
1413 (*string_ptr)--;
1414 return 0;
1415 case '^':
1416 {
1417 /* Remember where this escape sequence started, for reporting
1418 errors. */
1419 char *sequence_start_pos = *string_ptr - 1;
1420
1421 c = *(*string_ptr)++;
1422
1423 if (c == '?')
1424 {
1425 /* XXXCHARSET: What is `delete' in the host character set? */
1426 c = 0177;
1427
1428 if (!host_char_to_target (c, &target_char))
1429 error (_("There is no character corresponding to `Delete' "
1430 "in the target character set `%s'."), host_charset ());
1431
1432 return target_char;
1433 }
1434 else if (c == '\\')
1435 target_char = parse_escape (string_ptr);
1436 else
1437 {
1438 if (!host_char_to_target (c, &target_char))
1439 no_control_char_error (sequence_start_pos, *string_ptr);
1440 }
1441
1442 /* Now target_char is something like `c', and we want to find
1443 its control-character equivalent. */
1444 if (!target_char_to_control_char (target_char, &target_char))
1445 no_control_char_error (sequence_start_pos, *string_ptr);
1446
1447 return target_char;
1448 }
1449
1450 /* XXXCHARSET: we need to use isdigit and value-of-digit
1451 methods of the host character set here. */
1452
1453 case '0':
1454 case '1':
1455 case '2':
1456 case '3':
1457 case '4':
1458 case '5':
1459 case '6':
1460 case '7':
1461 {
1462 int i = c - '0';
1463 int count = 0;
1464 while (++count < 3)
1465 {
1466 c = (**string_ptr);
1467 if (c >= '0' && c <= '7')
1468 {
1469 (*string_ptr)++;
1470 i *= 8;
1471 i += c - '0';
1472 }
1473 else
1474 {
1475 break;
1476 }
1477 }
1478 return i;
1479 }
1480 default:
1481 if (!host_char_to_target (c, &target_char))
1482 error
1483 ("The escape sequence `\%c' is equivalent to plain `%c', which"
1484 " has no equivalent\n" "in the `%s' character set.", c, c,
1485 target_charset ());
1486 return target_char;
1487 }
1488 }
1489 \f
1490 /* Print the character C on STREAM as part of the contents of a literal
1491 string whose delimiter is QUOTER. Note that this routine should only
1492 be call for printing things which are independent of the language
1493 of the program being debugged. */
1494
1495 static void
1496 printchar (int c, void (*do_fputs) (const char *, struct ui_file *),
1497 void (*do_fprintf) (struct ui_file *, const char *, ...)
1498 ATTRIBUTE_FPTR_PRINTF_2, struct ui_file *stream, int quoter)
1499 {
1500
1501 c &= 0xFF; /* Avoid sign bit follies */
1502
1503 if (c < 0x20 || /* Low control chars */
1504 (c >= 0x7F && c < 0xA0) || /* DEL, High controls */
1505 (sevenbit_strings && c >= 0x80))
1506 { /* high order bit set */
1507 switch (c)
1508 {
1509 case '\n':
1510 do_fputs ("\\n", stream);
1511 break;
1512 case '\b':
1513 do_fputs ("\\b", stream);
1514 break;
1515 case '\t':
1516 do_fputs ("\\t", stream);
1517 break;
1518 case '\f':
1519 do_fputs ("\\f", stream);
1520 break;
1521 case '\r':
1522 do_fputs ("\\r", stream);
1523 break;
1524 case '\033':
1525 do_fputs ("\\e", stream);
1526 break;
1527 case '\007':
1528 do_fputs ("\\a", stream);
1529 break;
1530 default:
1531 do_fprintf (stream, "\\%.3o", (unsigned int) c);
1532 break;
1533 }
1534 }
1535 else
1536 {
1537 if (c == '\\' || c == quoter)
1538 do_fputs ("\\", stream);
1539 do_fprintf (stream, "%c", c);
1540 }
1541 }
1542
1543 /* Print the character C on STREAM as part of the contents of a
1544 literal string whose delimiter is QUOTER. Note that these routines
1545 should only be call for printing things which are independent of
1546 the language of the program being debugged. */
1547
1548 void
1549 fputstr_filtered (const char *str, int quoter, struct ui_file *stream)
1550 {
1551 while (*str)
1552 printchar (*str++, fputs_filtered, fprintf_filtered, stream, quoter);
1553 }
1554
1555 void
1556 fputstr_unfiltered (const char *str, int quoter, struct ui_file *stream)
1557 {
1558 while (*str)
1559 printchar (*str++, fputs_unfiltered, fprintf_unfiltered, stream, quoter);
1560 }
1561
1562 void
1563 fputstrn_unfiltered (const char *str, int n, int quoter,
1564 struct ui_file *stream)
1565 {
1566 int i;
1567 for (i = 0; i < n; i++)
1568 printchar (str[i], fputs_unfiltered, fprintf_unfiltered, stream, quoter);
1569 }
1570 \f
1571
1572 /* Number of lines per page or UINT_MAX if paging is disabled. */
1573 static unsigned int lines_per_page;
1574 static void
1575 show_lines_per_page (struct ui_file *file, int from_tty,
1576 struct cmd_list_element *c, const char *value)
1577 {
1578 fprintf_filtered (file, _("\
1579 Number of lines gdb thinks are in a page is %s.\n"),
1580 value);
1581 }
1582
1583 /* Number of chars per line or UINT_MAX if line folding is disabled. */
1584 static unsigned int chars_per_line;
1585 static void
1586 show_chars_per_line (struct ui_file *file, int from_tty,
1587 struct cmd_list_element *c, const char *value)
1588 {
1589 fprintf_filtered (file, _("\
1590 Number of characters gdb thinks are in a line is %s.\n"),
1591 value);
1592 }
1593
1594 /* Current count of lines printed on this page, chars on this line. */
1595 static unsigned int lines_printed, chars_printed;
1596
1597 /* Buffer and start column of buffered text, for doing smarter word-
1598 wrapping. When someone calls wrap_here(), we start buffering output
1599 that comes through fputs_filtered(). If we see a newline, we just
1600 spit it out and forget about the wrap_here(). If we see another
1601 wrap_here(), we spit it out and remember the newer one. If we see
1602 the end of the line, we spit out a newline, the indent, and then
1603 the buffered output. */
1604
1605 /* Malloc'd buffer with chars_per_line+2 bytes. Contains characters which
1606 are waiting to be output (they have already been counted in chars_printed).
1607 When wrap_buffer[0] is null, the buffer is empty. */
1608 static char *wrap_buffer;
1609
1610 /* Pointer in wrap_buffer to the next character to fill. */
1611 static char *wrap_pointer;
1612
1613 /* String to indent by if the wrap occurs. Must not be NULL if wrap_column
1614 is non-zero. */
1615 static char *wrap_indent;
1616
1617 /* Column number on the screen where wrap_buffer begins, or 0 if wrapping
1618 is not in effect. */
1619 static int wrap_column;
1620 \f
1621
1622 /* Inialize the number of lines per page and chars per line. */
1623
1624 void
1625 init_page_info (void)
1626 {
1627 #if defined(TUI)
1628 if (!tui_get_command_dimension (&chars_per_line, &lines_per_page))
1629 #endif
1630 {
1631 int rows, cols;
1632
1633 #if defined(__GO32__)
1634 rows = ScreenRows ();
1635 cols = ScreenCols ();
1636 lines_per_page = rows;
1637 chars_per_line = cols;
1638 #else
1639 /* Make sure Readline has initialized its terminal settings. */
1640 rl_reset_terminal (NULL);
1641
1642 /* Get the screen size from Readline. */
1643 rl_get_screen_size (&rows, &cols);
1644 lines_per_page = rows;
1645 chars_per_line = cols;
1646
1647 /* Readline should have fetched the termcap entry for us. */
1648 if (tgetnum ("li") < 0 || getenv ("EMACS"))
1649 {
1650 /* The number of lines per page is not mentioned in the
1651 terminal description. This probably means that paging is
1652 not useful (e.g. emacs shell window), so disable paging. */
1653 lines_per_page = UINT_MAX;
1654 }
1655
1656 /* FIXME: Get rid of this junk. */
1657 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1658 SIGWINCH_HANDLER (SIGWINCH);
1659 #endif
1660
1661 /* If the output is not a terminal, don't paginate it. */
1662 if (!ui_file_isatty (gdb_stdout))
1663 lines_per_page = UINT_MAX;
1664 #endif
1665 }
1666
1667 set_screen_size ();
1668 set_width ();
1669 }
1670
1671 /* Set the screen size based on LINES_PER_PAGE and CHARS_PER_LINE. */
1672
1673 static void
1674 set_screen_size (void)
1675 {
1676 int rows = lines_per_page;
1677 int cols = chars_per_line;
1678
1679 if (rows <= 0)
1680 rows = INT_MAX;
1681
1682 if (cols <= 0)
1683 rl_get_screen_size (NULL, &cols);
1684
1685 /* Update Readline's idea of the terminal size. */
1686 rl_set_screen_size (rows, cols);
1687 }
1688
1689 /* Reinitialize WRAP_BUFFER according to the current value of
1690 CHARS_PER_LINE. */
1691
1692 static void
1693 set_width (void)
1694 {
1695 if (chars_per_line == 0)
1696 init_page_info ();
1697
1698 if (!wrap_buffer)
1699 {
1700 wrap_buffer = (char *) xmalloc (chars_per_line + 2);
1701 wrap_buffer[0] = '\0';
1702 }
1703 else
1704 wrap_buffer = (char *) xrealloc (wrap_buffer, chars_per_line + 2);
1705 wrap_pointer = wrap_buffer; /* Start it at the beginning. */
1706 }
1707
1708 static void
1709 set_width_command (char *args, int from_tty, struct cmd_list_element *c)
1710 {
1711 set_screen_size ();
1712 set_width ();
1713 }
1714
1715 static void
1716 set_height_command (char *args, int from_tty, struct cmd_list_element *c)
1717 {
1718 set_screen_size ();
1719 }
1720
1721 /* Wait, so the user can read what's on the screen. Prompt the user
1722 to continue by pressing RETURN. */
1723
1724 static void
1725 prompt_for_continue (void)
1726 {
1727 char *ignore;
1728 char cont_prompt[120];
1729
1730 if (annotation_level > 1)
1731 printf_unfiltered (("\n\032\032pre-prompt-for-continue\n"));
1732
1733 strcpy (cont_prompt,
1734 "---Type <return> to continue, or q <return> to quit---");
1735 if (annotation_level > 1)
1736 strcat (cont_prompt, "\n\032\032prompt-for-continue\n");
1737
1738 /* We must do this *before* we call gdb_readline, else it will eventually
1739 call us -- thinking that we're trying to print beyond the end of the
1740 screen. */
1741 reinitialize_more_filter ();
1742
1743 immediate_quit++;
1744 /* On a real operating system, the user can quit with SIGINT.
1745 But not on GO32.
1746
1747 'q' is provided on all systems so users don't have to change habits
1748 from system to system, and because telling them what to do in
1749 the prompt is more user-friendly than expecting them to think of
1750 SIGINT. */
1751 /* Call readline, not gdb_readline, because GO32 readline handles control-C
1752 whereas control-C to gdb_readline will cause the user to get dumped
1753 out to DOS. */
1754 ignore = gdb_readline_wrapper (cont_prompt);
1755
1756 if (annotation_level > 1)
1757 printf_unfiltered (("\n\032\032post-prompt-for-continue\n"));
1758
1759 if (ignore)
1760 {
1761 char *p = ignore;
1762 while (*p == ' ' || *p == '\t')
1763 ++p;
1764 if (p[0] == 'q')
1765 async_request_quit (0);
1766 xfree (ignore);
1767 }
1768 immediate_quit--;
1769
1770 /* Now we have to do this again, so that GDB will know that it doesn't
1771 need to save the ---Type <return>--- line at the top of the screen. */
1772 reinitialize_more_filter ();
1773
1774 dont_repeat (); /* Forget prev cmd -- CR won't repeat it. */
1775 }
1776
1777 /* Reinitialize filter; ie. tell it to reset to original values. */
1778
1779 void
1780 reinitialize_more_filter (void)
1781 {
1782 lines_printed = 0;
1783 chars_printed = 0;
1784 }
1785
1786 /* Indicate that if the next sequence of characters overflows the line,
1787 a newline should be inserted here rather than when it hits the end.
1788 If INDENT is non-null, it is a string to be printed to indent the
1789 wrapped part on the next line. INDENT must remain accessible until
1790 the next call to wrap_here() or until a newline is printed through
1791 fputs_filtered().
1792
1793 If the line is already overfull, we immediately print a newline and
1794 the indentation, and disable further wrapping.
1795
1796 If we don't know the width of lines, but we know the page height,
1797 we must not wrap words, but should still keep track of newlines
1798 that were explicitly printed.
1799
1800 INDENT should not contain tabs, as that will mess up the char count
1801 on the next line. FIXME.
1802
1803 This routine is guaranteed to force out any output which has been
1804 squirreled away in the wrap_buffer, so wrap_here ((char *)0) can be
1805 used to force out output from the wrap_buffer. */
1806
1807 void
1808 wrap_here (char *indent)
1809 {
1810 /* This should have been allocated, but be paranoid anyway. */
1811 if (!wrap_buffer)
1812 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
1813
1814 if (wrap_buffer[0])
1815 {
1816 *wrap_pointer = '\0';
1817 fputs_unfiltered (wrap_buffer, gdb_stdout);
1818 }
1819 wrap_pointer = wrap_buffer;
1820 wrap_buffer[0] = '\0';
1821 if (chars_per_line == UINT_MAX) /* No line overflow checking */
1822 {
1823 wrap_column = 0;
1824 }
1825 else if (chars_printed >= chars_per_line)
1826 {
1827 puts_filtered ("\n");
1828 if (indent != NULL)
1829 puts_filtered (indent);
1830 wrap_column = 0;
1831 }
1832 else
1833 {
1834 wrap_column = chars_printed;
1835 if (indent == NULL)
1836 wrap_indent = "";
1837 else
1838 wrap_indent = indent;
1839 }
1840 }
1841
1842 /* Print input string to gdb_stdout, filtered, with wrap,
1843 arranging strings in columns of n chars. String can be
1844 right or left justified in the column. Never prints
1845 trailing spaces. String should never be longer than
1846 width. FIXME: this could be useful for the EXAMINE
1847 command, which currently doesn't tabulate very well */
1848
1849 void
1850 puts_filtered_tabular (char *string, int width, int right)
1851 {
1852 int spaces = 0;
1853 int stringlen;
1854 char *spacebuf;
1855
1856 gdb_assert (chars_per_line > 0);
1857 if (chars_per_line == UINT_MAX)
1858 {
1859 fputs_filtered (string, gdb_stdout);
1860 fputs_filtered ("\n", gdb_stdout);
1861 return;
1862 }
1863
1864 if (((chars_printed - 1) / width + 2) * width >= chars_per_line)
1865 fputs_filtered ("\n", gdb_stdout);
1866
1867 if (width >= chars_per_line)
1868 width = chars_per_line - 1;
1869
1870 stringlen = strlen (string);
1871
1872 if (chars_printed > 0)
1873 spaces = width - (chars_printed - 1) % width - 1;
1874 if (right)
1875 spaces += width - stringlen;
1876
1877 spacebuf = alloca (spaces + 1);
1878 spacebuf[spaces] = '\0';
1879 while (spaces--)
1880 spacebuf[spaces] = ' ';
1881
1882 fputs_filtered (spacebuf, gdb_stdout);
1883 fputs_filtered (string, gdb_stdout);
1884 }
1885
1886
1887 /* Ensure that whatever gets printed next, using the filtered output
1888 commands, starts at the beginning of the line. I.E. if there is
1889 any pending output for the current line, flush it and start a new
1890 line. Otherwise do nothing. */
1891
1892 void
1893 begin_line (void)
1894 {
1895 if (chars_printed > 0)
1896 {
1897 puts_filtered ("\n");
1898 }
1899 }
1900
1901
1902 /* Like fputs but if FILTER is true, pause after every screenful.
1903
1904 Regardless of FILTER can wrap at points other than the final
1905 character of a line.
1906
1907 Unlike fputs, fputs_maybe_filtered does not return a value.
1908 It is OK for LINEBUFFER to be NULL, in which case just don't print
1909 anything.
1910
1911 Note that a longjmp to top level may occur in this routine (only if
1912 FILTER is true) (since prompt_for_continue may do so) so this
1913 routine should not be called when cleanups are not in place. */
1914
1915 static void
1916 fputs_maybe_filtered (const char *linebuffer, struct ui_file *stream,
1917 int filter)
1918 {
1919 const char *lineptr;
1920
1921 if (linebuffer == 0)
1922 return;
1923
1924 /* Don't do any filtering if it is disabled. */
1925 if ((stream != gdb_stdout) || !pagination_enabled
1926 || (lines_per_page == UINT_MAX && chars_per_line == UINT_MAX))
1927 {
1928 fputs_unfiltered (linebuffer, stream);
1929 return;
1930 }
1931
1932 /* Go through and output each character. Show line extension
1933 when this is necessary; prompt user for new page when this is
1934 necessary. */
1935
1936 lineptr = linebuffer;
1937 while (*lineptr)
1938 {
1939 /* Possible new page. */
1940 if (filter && (lines_printed >= lines_per_page - 1))
1941 prompt_for_continue ();
1942
1943 while (*lineptr && *lineptr != '\n')
1944 {
1945 /* Print a single line. */
1946 if (*lineptr == '\t')
1947 {
1948 if (wrap_column)
1949 *wrap_pointer++ = '\t';
1950 else
1951 fputc_unfiltered ('\t', stream);
1952 /* Shifting right by 3 produces the number of tab stops
1953 we have already passed, and then adding one and
1954 shifting left 3 advances to the next tab stop. */
1955 chars_printed = ((chars_printed >> 3) + 1) << 3;
1956 lineptr++;
1957 }
1958 else
1959 {
1960 if (wrap_column)
1961 *wrap_pointer++ = *lineptr;
1962 else
1963 fputc_unfiltered (*lineptr, stream);
1964 chars_printed++;
1965 lineptr++;
1966 }
1967
1968 if (chars_printed >= chars_per_line)
1969 {
1970 unsigned int save_chars = chars_printed;
1971
1972 chars_printed = 0;
1973 lines_printed++;
1974 /* If we aren't actually wrapping, don't output newline --
1975 if chars_per_line is right, we probably just overflowed
1976 anyway; if it's wrong, let us keep going. */
1977 if (wrap_column)
1978 fputc_unfiltered ('\n', stream);
1979
1980 /* Possible new page. */
1981 if (lines_printed >= lines_per_page - 1)
1982 prompt_for_continue ();
1983
1984 /* Now output indentation and wrapped string */
1985 if (wrap_column)
1986 {
1987 fputs_unfiltered (wrap_indent, stream);
1988 *wrap_pointer = '\0'; /* Null-terminate saved stuff */
1989 fputs_unfiltered (wrap_buffer, stream); /* and eject it */
1990 /* FIXME, this strlen is what prevents wrap_indent from
1991 containing tabs. However, if we recurse to print it
1992 and count its chars, we risk trouble if wrap_indent is
1993 longer than (the user settable) chars_per_line.
1994 Note also that this can set chars_printed > chars_per_line
1995 if we are printing a long string. */
1996 chars_printed = strlen (wrap_indent)
1997 + (save_chars - wrap_column);
1998 wrap_pointer = wrap_buffer; /* Reset buffer */
1999 wrap_buffer[0] = '\0';
2000 wrap_column = 0; /* And disable fancy wrap */
2001 }
2002 }
2003 }
2004
2005 if (*lineptr == '\n')
2006 {
2007 chars_printed = 0;
2008 wrap_here ((char *) 0); /* Spit out chars, cancel further wraps */
2009 lines_printed++;
2010 fputc_unfiltered ('\n', stream);
2011 lineptr++;
2012 }
2013 }
2014 }
2015
2016 void
2017 fputs_filtered (const char *linebuffer, struct ui_file *stream)
2018 {
2019 fputs_maybe_filtered (linebuffer, stream, 1);
2020 }
2021
2022 int
2023 putchar_unfiltered (int c)
2024 {
2025 char buf = c;
2026 ui_file_write (gdb_stdout, &buf, 1);
2027 return c;
2028 }
2029
2030 /* Write character C to gdb_stdout using GDB's paging mechanism and return C.
2031 May return nonlocally. */
2032
2033 int
2034 putchar_filtered (int c)
2035 {
2036 return fputc_filtered (c, gdb_stdout);
2037 }
2038
2039 int
2040 fputc_unfiltered (int c, struct ui_file *stream)
2041 {
2042 char buf = c;
2043 ui_file_write (stream, &buf, 1);
2044 return c;
2045 }
2046
2047 int
2048 fputc_filtered (int c, struct ui_file *stream)
2049 {
2050 char buf[2];
2051
2052 buf[0] = c;
2053 buf[1] = 0;
2054 fputs_filtered (buf, stream);
2055 return c;
2056 }
2057
2058 /* puts_debug is like fputs_unfiltered, except it prints special
2059 characters in printable fashion. */
2060
2061 void
2062 puts_debug (char *prefix, char *string, char *suffix)
2063 {
2064 int ch;
2065
2066 /* Print prefix and suffix after each line. */
2067 static int new_line = 1;
2068 static int return_p = 0;
2069 static char *prev_prefix = "";
2070 static char *prev_suffix = "";
2071
2072 if (*string == '\n')
2073 return_p = 0;
2074
2075 /* If the prefix is changing, print the previous suffix, a new line,
2076 and the new prefix. */
2077 if ((return_p || (strcmp (prev_prefix, prefix) != 0)) && !new_line)
2078 {
2079 fputs_unfiltered (prev_suffix, gdb_stdlog);
2080 fputs_unfiltered ("\n", gdb_stdlog);
2081 fputs_unfiltered (prefix, gdb_stdlog);
2082 }
2083
2084 /* Print prefix if we printed a newline during the previous call. */
2085 if (new_line)
2086 {
2087 new_line = 0;
2088 fputs_unfiltered (prefix, gdb_stdlog);
2089 }
2090
2091 prev_prefix = prefix;
2092 prev_suffix = suffix;
2093
2094 /* Output characters in a printable format. */
2095 while ((ch = *string++) != '\0')
2096 {
2097 switch (ch)
2098 {
2099 default:
2100 if (isprint (ch))
2101 fputc_unfiltered (ch, gdb_stdlog);
2102
2103 else
2104 fprintf_unfiltered (gdb_stdlog, "\\x%02x", ch & 0xff);
2105 break;
2106
2107 case '\\':
2108 fputs_unfiltered ("\\\\", gdb_stdlog);
2109 break;
2110 case '\b':
2111 fputs_unfiltered ("\\b", gdb_stdlog);
2112 break;
2113 case '\f':
2114 fputs_unfiltered ("\\f", gdb_stdlog);
2115 break;
2116 case '\n':
2117 new_line = 1;
2118 fputs_unfiltered ("\\n", gdb_stdlog);
2119 break;
2120 case '\r':
2121 fputs_unfiltered ("\\r", gdb_stdlog);
2122 break;
2123 case '\t':
2124 fputs_unfiltered ("\\t", gdb_stdlog);
2125 break;
2126 case '\v':
2127 fputs_unfiltered ("\\v", gdb_stdlog);
2128 break;
2129 }
2130
2131 return_p = ch == '\r';
2132 }
2133
2134 /* Print suffix if we printed a newline. */
2135 if (new_line)
2136 {
2137 fputs_unfiltered (suffix, gdb_stdlog);
2138 fputs_unfiltered ("\n", gdb_stdlog);
2139 }
2140 }
2141
2142
2143 /* Print a variable number of ARGS using format FORMAT. If this
2144 information is going to put the amount written (since the last call
2145 to REINITIALIZE_MORE_FILTER or the last page break) over the page size,
2146 call prompt_for_continue to get the users permision to continue.
2147
2148 Unlike fprintf, this function does not return a value.
2149
2150 We implement three variants, vfprintf (takes a vararg list and stream),
2151 fprintf (takes a stream to write on), and printf (the usual).
2152
2153 Note also that a longjmp to top level may occur in this routine
2154 (since prompt_for_continue may do so) so this routine should not be
2155 called when cleanups are not in place. */
2156
2157 static void
2158 vfprintf_maybe_filtered (struct ui_file *stream, const char *format,
2159 va_list args, int filter)
2160 {
2161 char *linebuffer;
2162 struct cleanup *old_cleanups;
2163
2164 linebuffer = xstrvprintf (format, args);
2165 old_cleanups = make_cleanup (xfree, linebuffer);
2166 fputs_maybe_filtered (linebuffer, stream, filter);
2167 do_cleanups (old_cleanups);
2168 }
2169
2170
2171 void
2172 vfprintf_filtered (struct ui_file *stream, const char *format, va_list args)
2173 {
2174 vfprintf_maybe_filtered (stream, format, args, 1);
2175 }
2176
2177 void
2178 vfprintf_unfiltered (struct ui_file *stream, const char *format, va_list args)
2179 {
2180 char *linebuffer;
2181 struct cleanup *old_cleanups;
2182
2183 linebuffer = xstrvprintf (format, args);
2184 old_cleanups = make_cleanup (xfree, linebuffer);
2185 fputs_unfiltered (linebuffer, stream);
2186 do_cleanups (old_cleanups);
2187 }
2188
2189 void
2190 vprintf_filtered (const char *format, va_list args)
2191 {
2192 vfprintf_maybe_filtered (gdb_stdout, format, args, 1);
2193 }
2194
2195 void
2196 vprintf_unfiltered (const char *format, va_list args)
2197 {
2198 vfprintf_unfiltered (gdb_stdout, format, args);
2199 }
2200
2201 void
2202 fprintf_filtered (struct ui_file *stream, const char *format, ...)
2203 {
2204 va_list args;
2205 va_start (args, format);
2206 vfprintf_filtered (stream, format, args);
2207 va_end (args);
2208 }
2209
2210 void
2211 fprintf_unfiltered (struct ui_file *stream, const char *format, ...)
2212 {
2213 va_list args;
2214 va_start (args, format);
2215 vfprintf_unfiltered (stream, format, args);
2216 va_end (args);
2217 }
2218
2219 /* Like fprintf_filtered, but prints its result indented.
2220 Called as fprintfi_filtered (spaces, stream, format, ...); */
2221
2222 void
2223 fprintfi_filtered (int spaces, struct ui_file *stream, const char *format,
2224 ...)
2225 {
2226 va_list args;
2227 va_start (args, format);
2228 print_spaces_filtered (spaces, stream);
2229
2230 vfprintf_filtered (stream, format, args);
2231 va_end (args);
2232 }
2233
2234
2235 void
2236 printf_filtered (const char *format, ...)
2237 {
2238 va_list args;
2239 va_start (args, format);
2240 vfprintf_filtered (gdb_stdout, format, args);
2241 va_end (args);
2242 }
2243
2244
2245 void
2246 printf_unfiltered (const char *format, ...)
2247 {
2248 va_list args;
2249 va_start (args, format);
2250 vfprintf_unfiltered (gdb_stdout, format, args);
2251 va_end (args);
2252 }
2253
2254 /* Like printf_filtered, but prints it's result indented.
2255 Called as printfi_filtered (spaces, format, ...); */
2256
2257 void
2258 printfi_filtered (int spaces, const char *format, ...)
2259 {
2260 va_list args;
2261 va_start (args, format);
2262 print_spaces_filtered (spaces, gdb_stdout);
2263 vfprintf_filtered (gdb_stdout, format, args);
2264 va_end (args);
2265 }
2266
2267 /* Easy -- but watch out!
2268
2269 This routine is *not* a replacement for puts()! puts() appends a newline.
2270 This one doesn't, and had better not! */
2271
2272 void
2273 puts_filtered (const char *string)
2274 {
2275 fputs_filtered (string, gdb_stdout);
2276 }
2277
2278 void
2279 puts_unfiltered (const char *string)
2280 {
2281 fputs_unfiltered (string, gdb_stdout);
2282 }
2283
2284 /* Return a pointer to N spaces and a null. The pointer is good
2285 until the next call to here. */
2286 char *
2287 n_spaces (int n)
2288 {
2289 char *t;
2290 static char *spaces = 0;
2291 static int max_spaces = -1;
2292
2293 if (n > max_spaces)
2294 {
2295 if (spaces)
2296 xfree (spaces);
2297 spaces = (char *) xmalloc (n + 1);
2298 for (t = spaces + n; t != spaces;)
2299 *--t = ' ';
2300 spaces[n] = '\0';
2301 max_spaces = n;
2302 }
2303
2304 return spaces + max_spaces - n;
2305 }
2306
2307 /* Print N spaces. */
2308 void
2309 print_spaces_filtered (int n, struct ui_file *stream)
2310 {
2311 fputs_filtered (n_spaces (n), stream);
2312 }
2313 \f
2314 /* C++/ObjC demangler stuff. */
2315
2316 /* fprintf_symbol_filtered attempts to demangle NAME, a symbol in language
2317 LANG, using demangling args ARG_MODE, and print it filtered to STREAM.
2318 If the name is not mangled, or the language for the name is unknown, or
2319 demangling is off, the name is printed in its "raw" form. */
2320
2321 void
2322 fprintf_symbol_filtered (struct ui_file *stream, char *name,
2323 enum language lang, int arg_mode)
2324 {
2325 char *demangled;
2326
2327 if (name != NULL)
2328 {
2329 /* If user wants to see raw output, no problem. */
2330 if (!demangle)
2331 {
2332 fputs_filtered (name, stream);
2333 }
2334 else
2335 {
2336 demangled = language_demangle (language_def (lang), name, arg_mode);
2337 fputs_filtered (demangled ? demangled : name, stream);
2338 if (demangled != NULL)
2339 {
2340 xfree (demangled);
2341 }
2342 }
2343 }
2344 }
2345
2346 /* Do a strcmp() type operation on STRING1 and STRING2, ignoring any
2347 differences in whitespace. Returns 0 if they match, non-zero if they
2348 don't (slightly different than strcmp()'s range of return values).
2349
2350 As an extra hack, string1=="FOO(ARGS)" matches string2=="FOO".
2351 This "feature" is useful when searching for matching C++ function names
2352 (such as if the user types 'break FOO', where FOO is a mangled C++
2353 function). */
2354
2355 int
2356 strcmp_iw (const char *string1, const char *string2)
2357 {
2358 while ((*string1 != '\0') && (*string2 != '\0'))
2359 {
2360 while (isspace (*string1))
2361 {
2362 string1++;
2363 }
2364 while (isspace (*string2))
2365 {
2366 string2++;
2367 }
2368 if (*string1 != *string2)
2369 {
2370 break;
2371 }
2372 if (*string1 != '\0')
2373 {
2374 string1++;
2375 string2++;
2376 }
2377 }
2378 return (*string1 != '\0' && *string1 != '(') || (*string2 != '\0');
2379 }
2380
2381 /* This is like strcmp except that it ignores whitespace and treats
2382 '(' as the first non-NULL character in terms of ordering. Like
2383 strcmp (and unlike strcmp_iw), it returns negative if STRING1 <
2384 STRING2, 0 if STRING2 = STRING2, and positive if STRING1 > STRING2
2385 according to that ordering.
2386
2387 If a list is sorted according to this function and if you want to
2388 find names in the list that match some fixed NAME according to
2389 strcmp_iw(LIST_ELT, NAME), then the place to start looking is right
2390 where this function would put NAME.
2391
2392 Here are some examples of why using strcmp to sort is a bad idea:
2393
2394 Whitespace example:
2395
2396 Say your partial symtab contains: "foo<char *>", "goo". Then, if
2397 we try to do a search for "foo<char*>", strcmp will locate this
2398 after "foo<char *>" and before "goo". Then lookup_partial_symbol
2399 will start looking at strings beginning with "goo", and will never
2400 see the correct match of "foo<char *>".
2401
2402 Parenthesis example:
2403
2404 In practice, this is less like to be an issue, but I'll give it a
2405 shot. Let's assume that '$' is a legitimate character to occur in
2406 symbols. (Which may well even be the case on some systems.) Then
2407 say that the partial symbol table contains "foo$" and "foo(int)".
2408 strcmp will put them in this order, since '$' < '('. Now, if the
2409 user searches for "foo", then strcmp will sort "foo" before "foo$".
2410 Then lookup_partial_symbol will notice that strcmp_iw("foo$",
2411 "foo") is false, so it won't proceed to the actual match of
2412 "foo(int)" with "foo". */
2413
2414 int
2415 strcmp_iw_ordered (const char *string1, const char *string2)
2416 {
2417 while ((*string1 != '\0') && (*string2 != '\0'))
2418 {
2419 while (isspace (*string1))
2420 {
2421 string1++;
2422 }
2423 while (isspace (*string2))
2424 {
2425 string2++;
2426 }
2427 if (*string1 != *string2)
2428 {
2429 break;
2430 }
2431 if (*string1 != '\0')
2432 {
2433 string1++;
2434 string2++;
2435 }
2436 }
2437
2438 switch (*string1)
2439 {
2440 /* Characters are non-equal unless they're both '\0'; we want to
2441 make sure we get the comparison right according to our
2442 comparison in the cases where one of them is '\0' or '('. */
2443 case '\0':
2444 if (*string2 == '\0')
2445 return 0;
2446 else
2447 return -1;
2448 case '(':
2449 if (*string2 == '\0')
2450 return 1;
2451 else
2452 return -1;
2453 default:
2454 if (*string2 == '(')
2455 return 1;
2456 else
2457 return *string1 - *string2;
2458 }
2459 }
2460
2461 /* A simple comparison function with opposite semantics to strcmp. */
2462
2463 int
2464 streq (const char *lhs, const char *rhs)
2465 {
2466 return !strcmp (lhs, rhs);
2467 }
2468 \f
2469
2470 /*
2471 ** subset_compare()
2472 ** Answer whether string_to_compare is a full or partial match to
2473 ** template_string. The partial match must be in sequence starting
2474 ** at index 0.
2475 */
2476 int
2477 subset_compare (char *string_to_compare, char *template_string)
2478 {
2479 int match;
2480 if (template_string != (char *) NULL && string_to_compare != (char *) NULL
2481 && strlen (string_to_compare) <= strlen (template_string))
2482 match =
2483 (strncmp
2484 (template_string, string_to_compare, strlen (string_to_compare)) == 0);
2485 else
2486 match = 0;
2487 return match;
2488 }
2489
2490
2491 static void pagination_on_command (char *arg, int from_tty);
2492 static void
2493 pagination_on_command (char *arg, int from_tty)
2494 {
2495 pagination_enabled = 1;
2496 }
2497
2498 static void pagination_on_command (char *arg, int from_tty);
2499 static void
2500 pagination_off_command (char *arg, int from_tty)
2501 {
2502 pagination_enabled = 0;
2503 }
2504 \f
2505
2506 void
2507 initialize_utils (void)
2508 {
2509 struct cmd_list_element *c;
2510
2511 add_setshow_uinteger_cmd ("width", class_support, &chars_per_line, _("\
2512 Set number of characters gdb thinks are in a line."), _("\
2513 Show number of characters gdb thinks are in a line."), NULL,
2514 set_width_command,
2515 show_chars_per_line,
2516 &setlist, &showlist);
2517
2518 add_setshow_uinteger_cmd ("height", class_support, &lines_per_page, _("\
2519 Set number of lines gdb thinks are in a page."), _("\
2520 Show number of lines gdb thinks are in a page."), NULL,
2521 set_height_command,
2522 show_lines_per_page,
2523 &setlist, &showlist);
2524
2525 init_page_info ();
2526
2527 add_setshow_boolean_cmd ("demangle", class_support, &demangle, _("\
2528 Set demangling of encoded C++/ObjC names when displaying symbols."), _("\
2529 Show demangling of encoded C++/ObjC names when displaying symbols."), NULL,
2530 NULL,
2531 show_demangle,
2532 &setprintlist, &showprintlist);
2533
2534 add_setshow_boolean_cmd ("pagination", class_support,
2535 &pagination_enabled, _("\
2536 Set state of pagination."), _("\
2537 Show state of pagination."), NULL,
2538 NULL,
2539 show_pagination_enabled,
2540 &setlist, &showlist);
2541
2542 if (xdb_commands)
2543 {
2544 add_com ("am", class_support, pagination_on_command,
2545 _("Enable pagination"));
2546 add_com ("sm", class_support, pagination_off_command,
2547 _("Disable pagination"));
2548 }
2549
2550 add_setshow_boolean_cmd ("sevenbit-strings", class_support,
2551 &sevenbit_strings, _("\
2552 Set printing of 8-bit characters in strings as \\nnn."), _("\
2553 Show printing of 8-bit characters in strings as \\nnn."), NULL,
2554 NULL,
2555 show_sevenbit_strings,
2556 &setprintlist, &showprintlist);
2557
2558 add_setshow_boolean_cmd ("asm-demangle", class_support, &asm_demangle, _("\
2559 Set demangling of C++/ObjC names in disassembly listings."), _("\
2560 Show demangling of C++/ObjC names in disassembly listings."), NULL,
2561 NULL,
2562 show_asm_demangle,
2563 &setprintlist, &showprintlist);
2564 }
2565
2566 /* Machine specific function to handle SIGWINCH signal. */
2567
2568 #ifdef SIGWINCH_HANDLER_BODY
2569 SIGWINCH_HANDLER_BODY
2570 #endif
2571 /* print routines to handle variable size regs, etc. */
2572 /* temporary storage using circular buffer */
2573 #define NUMCELLS 16
2574 #define CELLSIZE 50
2575 static char *
2576 get_cell (void)
2577 {
2578 static char buf[NUMCELLS][CELLSIZE];
2579 static int cell = 0;
2580 if (++cell >= NUMCELLS)
2581 cell = 0;
2582 return buf[cell];
2583 }
2584
2585 int
2586 strlen_paddr (void)
2587 {
2588 return (TARGET_ADDR_BIT / 8 * 2);
2589 }
2590
2591 char *
2592 paddr (CORE_ADDR addr)
2593 {
2594 return phex (addr, TARGET_ADDR_BIT / 8);
2595 }
2596
2597 char *
2598 paddr_nz (CORE_ADDR addr)
2599 {
2600 return phex_nz (addr, TARGET_ADDR_BIT / 8);
2601 }
2602
2603 const char *
2604 paddress (CORE_ADDR addr)
2605 {
2606 /* Truncate address to the size of a target address, avoiding shifts
2607 larger or equal than the width of a CORE_ADDR. The local
2608 variable ADDR_BIT stops the compiler reporting a shift overflow
2609 when it won't occur. */
2610 /* NOTE: This assumes that the significant address information is
2611 kept in the least significant bits of ADDR - the upper bits were
2612 either zero or sign extended. Should ADDRESS_TO_POINTER() or
2613 some ADDRESS_TO_PRINTABLE() be used to do the conversion? */
2614
2615 int addr_bit = TARGET_ADDR_BIT;
2616
2617 if (addr_bit < (sizeof (CORE_ADDR) * HOST_CHAR_BIT))
2618 addr &= ((CORE_ADDR) 1 << addr_bit) - 1;
2619 return hex_string (addr);
2620 }
2621
2622 static char *
2623 decimal2str (char *sign, ULONGEST addr, int width)
2624 {
2625 /* Steal code from valprint.c:print_decimal(). Should this worry
2626 about the real size of addr as the above does? */
2627 unsigned long temp[3];
2628 char *str = get_cell ();
2629
2630 int i = 0;
2631 do
2632 {
2633 temp[i] = addr % (1000 * 1000 * 1000);
2634 addr /= (1000 * 1000 * 1000);
2635 i++;
2636 width -= 9;
2637 }
2638 while (addr != 0 && i < (sizeof (temp) / sizeof (temp[0])));
2639
2640 width += 9;
2641 if (width < 0)
2642 width = 0;
2643
2644 switch (i)
2645 {
2646 case 1:
2647 xsnprintf (str, CELLSIZE, "%s%0*lu", sign, width, temp[0]);
2648 break;
2649 case 2:
2650 xsnprintf (str, CELLSIZE, "%s%0*lu%09lu", sign, width,
2651 temp[1], temp[0]);
2652 break;
2653 case 3:
2654 xsnprintf (str, CELLSIZE, "%s%0*lu%09lu%09lu", sign, width,
2655 temp[2], temp[1], temp[0]);
2656 break;
2657 default:
2658 internal_error (__FILE__, __LINE__,
2659 _("failed internal consistency check"));
2660 }
2661
2662 return str;
2663 }
2664
2665 static char *
2666 octal2str (ULONGEST addr, int width)
2667 {
2668 unsigned long temp[3];
2669 char *str = get_cell ();
2670
2671 int i = 0;
2672 do
2673 {
2674 temp[i] = addr % (0100000 * 0100000);
2675 addr /= (0100000 * 0100000);
2676 i++;
2677 width -= 10;
2678 }
2679 while (addr != 0 && i < (sizeof (temp) / sizeof (temp[0])));
2680
2681 width += 10;
2682 if (width < 0)
2683 width = 0;
2684
2685 switch (i)
2686 {
2687 case 1:
2688 if (temp[0] == 0)
2689 xsnprintf (str, CELLSIZE, "%*o", width, 0);
2690 else
2691 xsnprintf (str, CELLSIZE, "0%0*lo", width, temp[0]);
2692 break;
2693 case 2:
2694 xsnprintf (str, CELLSIZE, "0%0*lo%010lo", width, temp[1], temp[0]);
2695 break;
2696 case 3:
2697 xsnprintf (str, CELLSIZE, "0%0*lo%010lo%010lo", width,
2698 temp[2], temp[1], temp[0]);
2699 break;
2700 default:
2701 internal_error (__FILE__, __LINE__,
2702 _("failed internal consistency check"));
2703 }
2704
2705 return str;
2706 }
2707
2708 char *
2709 paddr_u (CORE_ADDR addr)
2710 {
2711 return decimal2str ("", addr, 0);
2712 }
2713
2714 char *
2715 paddr_d (LONGEST addr)
2716 {
2717 if (addr < 0)
2718 return decimal2str ("-", -addr, 0);
2719 else
2720 return decimal2str ("", addr, 0);
2721 }
2722
2723 /* Eliminate warning from compiler on 32-bit systems. */
2724 static int thirty_two = 32;
2725
2726 char *
2727 phex (ULONGEST l, int sizeof_l)
2728 {
2729 char *str;
2730
2731 switch (sizeof_l)
2732 {
2733 case 8:
2734 str = get_cell ();
2735 xsnprintf (str, CELLSIZE, "%08lx%08lx",
2736 (unsigned long) (l >> thirty_two),
2737 (unsigned long) (l & 0xffffffff));
2738 break;
2739 case 4:
2740 str = get_cell ();
2741 xsnprintf (str, CELLSIZE, "%08lx", (unsigned long) l);
2742 break;
2743 case 2:
2744 str = get_cell ();
2745 xsnprintf (str, CELLSIZE, "%04x", (unsigned short) (l & 0xffff));
2746 break;
2747 default:
2748 str = phex (l, sizeof (l));
2749 break;
2750 }
2751
2752 return str;
2753 }
2754
2755 char *
2756 phex_nz (ULONGEST l, int sizeof_l)
2757 {
2758 char *str;
2759
2760 switch (sizeof_l)
2761 {
2762 case 8:
2763 {
2764 unsigned long high = (unsigned long) (l >> thirty_two);
2765 str = get_cell ();
2766 if (high == 0)
2767 xsnprintf (str, CELLSIZE, "%lx",
2768 (unsigned long) (l & 0xffffffff));
2769 else
2770 xsnprintf (str, CELLSIZE, "%lx%08lx", high,
2771 (unsigned long) (l & 0xffffffff));
2772 break;
2773 }
2774 case 4:
2775 str = get_cell ();
2776 xsnprintf (str, CELLSIZE, "%lx", (unsigned long) l);
2777 break;
2778 case 2:
2779 str = get_cell ();
2780 xsnprintf (str, CELLSIZE, "%x", (unsigned short) (l & 0xffff));
2781 break;
2782 default:
2783 str = phex_nz (l, sizeof (l));
2784 break;
2785 }
2786
2787 return str;
2788 }
2789
2790 /* Converts a LONGEST to a C-format hexadecimal literal and stores it
2791 in a static string. Returns a pointer to this string. */
2792 char *
2793 hex_string (LONGEST num)
2794 {
2795 char *result = get_cell ();
2796 xsnprintf (result, CELLSIZE, "0x%s", phex_nz (num, sizeof (num)));
2797 return result;
2798 }
2799
2800 /* Converts a LONGEST number to a C-format hexadecimal literal and
2801 stores it in a static string. Returns a pointer to this string
2802 that is valid until the next call. The number is padded on the
2803 left with 0s to at least WIDTH characters. */
2804 char *
2805 hex_string_custom (LONGEST num, int width)
2806 {
2807 char *result = get_cell ();
2808 char *result_end = result + CELLSIZE - 1;
2809 const char *hex = phex_nz (num, sizeof (num));
2810 int hex_len = strlen (hex);
2811
2812 if (hex_len > width)
2813 width = hex_len;
2814 if (width + 2 >= CELLSIZE)
2815 internal_error (__FILE__, __LINE__,
2816 _("hex_string_custom: insufficient space to store result"));
2817
2818 strcpy (result_end - width - 2, "0x");
2819 memset (result_end - width, '0', width);
2820 strcpy (result_end - hex_len, hex);
2821 return result_end - width - 2;
2822 }
2823
2824 /* Convert VAL to a numeral in the given radix. For
2825 * radix 10, IS_SIGNED may be true, indicating a signed quantity;
2826 * otherwise VAL is interpreted as unsigned. If WIDTH is supplied,
2827 * it is the minimum width (0-padded if needed). USE_C_FORMAT means
2828 * to use C format in all cases. If it is false, then 'x'
2829 * and 'o' formats do not include a prefix (0x or leading 0). */
2830
2831 char *
2832 int_string (LONGEST val, int radix, int is_signed, int width,
2833 int use_c_format)
2834 {
2835 switch (radix)
2836 {
2837 case 16:
2838 {
2839 char *result;
2840 if (width == 0)
2841 result = hex_string (val);
2842 else
2843 result = hex_string_custom (val, width);
2844 if (! use_c_format)
2845 result += 2;
2846 return result;
2847 }
2848 case 10:
2849 {
2850 if (is_signed && val < 0)
2851 return decimal2str ("-", -val, width);
2852 else
2853 return decimal2str ("", val, width);
2854 }
2855 case 8:
2856 {
2857 char *result = octal2str (val, width);
2858 if (use_c_format || val == 0)
2859 return result;
2860 else
2861 return result + 1;
2862 }
2863 default:
2864 internal_error (__FILE__, __LINE__,
2865 _("failed internal consistency check"));
2866 }
2867 }
2868
2869 /* Convert a CORE_ADDR into a string. */
2870 const char *
2871 core_addr_to_string (const CORE_ADDR addr)
2872 {
2873 char *str = get_cell ();
2874 strcpy (str, "0x");
2875 strcat (str, phex (addr, sizeof (addr)));
2876 return str;
2877 }
2878
2879 const char *
2880 core_addr_to_string_nz (const CORE_ADDR addr)
2881 {
2882 char *str = get_cell ();
2883 strcpy (str, "0x");
2884 strcat (str, phex_nz (addr, sizeof (addr)));
2885 return str;
2886 }
2887
2888 /* Convert a string back into a CORE_ADDR. */
2889 CORE_ADDR
2890 string_to_core_addr (const char *my_string)
2891 {
2892 CORE_ADDR addr = 0;
2893 if (my_string[0] == '0' && tolower (my_string[1]) == 'x')
2894 {
2895 /* Assume that it is in decimal. */
2896 int i;
2897 for (i = 2; my_string[i] != '\0'; i++)
2898 {
2899 if (isdigit (my_string[i]))
2900 addr = (my_string[i] - '0') + (addr * 16);
2901 else if (isxdigit (my_string[i]))
2902 addr = (tolower (my_string[i]) - 'a' + 0xa) + (addr * 16);
2903 else
2904 internal_error (__FILE__, __LINE__, _("invalid hex"));
2905 }
2906 }
2907 else
2908 {
2909 /* Assume that it is in decimal. */
2910 int i;
2911 for (i = 0; my_string[i] != '\0'; i++)
2912 {
2913 if (isdigit (my_string[i]))
2914 addr = (my_string[i] - '0') + (addr * 10);
2915 else
2916 internal_error (__FILE__, __LINE__, _("invalid decimal"));
2917 }
2918 }
2919 return addr;
2920 }
2921
2922 char *
2923 gdb_realpath (const char *filename)
2924 {
2925 /* Method 1: The system has a compile time upper bound on a filename
2926 path. Use that and realpath() to canonicalize the name. This is
2927 the most common case. Note that, if there isn't a compile time
2928 upper bound, you want to avoid realpath() at all costs. */
2929 #if defined(HAVE_REALPATH)
2930 {
2931 # if defined (PATH_MAX)
2932 char buf[PATH_MAX];
2933 # define USE_REALPATH
2934 # elif defined (MAXPATHLEN)
2935 char buf[MAXPATHLEN];
2936 # define USE_REALPATH
2937 # endif
2938 # if defined (USE_REALPATH)
2939 const char *rp = realpath (filename, buf);
2940 if (rp == NULL)
2941 rp = filename;
2942 return xstrdup (rp);
2943 # endif
2944 }
2945 #endif /* HAVE_REALPATH */
2946
2947 /* Method 2: The host system (i.e., GNU) has the function
2948 canonicalize_file_name() which malloc's a chunk of memory and
2949 returns that, use that. */
2950 #if defined(HAVE_CANONICALIZE_FILE_NAME)
2951 {
2952 char *rp = canonicalize_file_name (filename);
2953 if (rp == NULL)
2954 return xstrdup (filename);
2955 else
2956 return rp;
2957 }
2958 #endif
2959
2960 /* FIXME: cagney/2002-11-13:
2961
2962 Method 2a: Use realpath() with a NULL buffer. Some systems, due
2963 to the problems described in in method 3, have modified their
2964 realpath() implementation so that it will allocate a buffer when
2965 NULL is passed in. Before this can be used, though, some sort of
2966 configure time test would need to be added. Otherwize the code
2967 will likely core dump. */
2968
2969 /* Method 3: Now we're getting desperate! The system doesn't have a
2970 compile time buffer size and no alternative function. Query the
2971 OS, using pathconf(), for the buffer limit. Care is needed
2972 though, some systems do not limit PATH_MAX (return -1 for
2973 pathconf()) making it impossible to pass a correctly sized buffer
2974 to realpath() (it could always overflow). On those systems, we
2975 skip this. */
2976 #if defined (HAVE_REALPATH) && defined (HAVE_UNISTD_H) && defined(HAVE_ALLOCA)
2977 {
2978 /* Find out the max path size. */
2979 long path_max = pathconf ("/", _PC_PATH_MAX);
2980 if (path_max > 0)
2981 {
2982 /* PATH_MAX is bounded. */
2983 char *buf = alloca (path_max);
2984 char *rp = realpath (filename, buf);
2985 return xstrdup (rp ? rp : filename);
2986 }
2987 }
2988 #endif
2989
2990 /* This system is a lost cause, just dup the buffer. */
2991 return xstrdup (filename);
2992 }
2993
2994 /* Return a copy of FILENAME, with its directory prefix canonicalized
2995 by gdb_realpath. */
2996
2997 char *
2998 xfullpath (const char *filename)
2999 {
3000 const char *base_name = lbasename (filename);
3001 char *dir_name;
3002 char *real_path;
3003 char *result;
3004
3005 /* Extract the basename of filename, and return immediately
3006 a copy of filename if it does not contain any directory prefix. */
3007 if (base_name == filename)
3008 return xstrdup (filename);
3009
3010 dir_name = alloca ((size_t) (base_name - filename + 2));
3011 /* Allocate enough space to store the dir_name + plus one extra
3012 character sometimes needed under Windows (see below), and
3013 then the closing \000 character */
3014 strncpy (dir_name, filename, base_name - filename);
3015 dir_name[base_name - filename] = '\000';
3016
3017 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
3018 /* We need to be careful when filename is of the form 'd:foo', which
3019 is equivalent of d:./foo, which is totally different from d:/foo. */
3020 if (strlen (dir_name) == 2 && isalpha (dir_name[0]) && dir_name[1] == ':')
3021 {
3022 dir_name[2] = '.';
3023 dir_name[3] = '\000';
3024 }
3025 #endif
3026
3027 /* Canonicalize the directory prefix, and build the resulting
3028 filename. If the dirname realpath already contains an ending
3029 directory separator, avoid doubling it. */
3030 real_path = gdb_realpath (dir_name);
3031 if (IS_DIR_SEPARATOR (real_path[strlen (real_path) - 1]))
3032 result = concat (real_path, base_name, (char *)NULL);
3033 else
3034 result = concat (real_path, SLASH_STRING, base_name, (char *)NULL);
3035
3036 xfree (real_path);
3037 return result;
3038 }
3039
3040
3041 /* This is the 32-bit CRC function used by the GNU separate debug
3042 facility. An executable may contain a section named
3043 .gnu_debuglink, which holds the name of a separate executable file
3044 containing its debug info, and a checksum of that file's contents,
3045 computed using this function. */
3046 unsigned long
3047 gnu_debuglink_crc32 (unsigned long crc, unsigned char *buf, size_t len)
3048 {
3049 static const unsigned long crc32_table[256] = {
3050 0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419,
3051 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4,
3052 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07,
3053 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de,
3054 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856,
3055 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9,
3056 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4,
3057 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b,
3058 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3,
3059 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a,
3060 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599,
3061 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924,
3062 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190,
3063 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f,
3064 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e,
3065 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01,
3066 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed,
3067 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950,
3068 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3,
3069 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2,
3070 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a,
3071 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5,
3072 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010,
3073 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f,
3074 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17,
3075 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6,
3076 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615,
3077 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8,
3078 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344,
3079 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb,
3080 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a,
3081 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5,
3082 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1,
3083 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c,
3084 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef,
3085 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236,
3086 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe,
3087 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31,
3088 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c,
3089 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713,
3090 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b,
3091 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242,
3092 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1,
3093 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c,
3094 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278,
3095 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7,
3096 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66,
3097 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9,
3098 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605,
3099 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8,
3100 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b,
3101 0x2d02ef8d
3102 };
3103 unsigned char *end;
3104
3105 crc = ~crc & 0xffffffff;
3106 for (end = buf + len; buf < end; ++buf)
3107 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
3108 return ~crc & 0xffffffff;;
3109 }
3110
3111 ULONGEST
3112 align_up (ULONGEST v, int n)
3113 {
3114 /* Check that N is really a power of two. */
3115 gdb_assert (n && (n & (n-1)) == 0);
3116 return (v + n - 1) & -n;
3117 }
3118
3119 ULONGEST
3120 align_down (ULONGEST v, int n)
3121 {
3122 /* Check that N is really a power of two. */
3123 gdb_assert (n && (n & (n-1)) == 0);
3124 return (v & -n);
3125 }
3126
3127 /* Allocation function for the libiberty hash table which uses an
3128 obstack. The obstack is passed as DATA. */
3129
3130 void *
3131 hashtab_obstack_allocate (void *data, size_t size, size_t count)
3132 {
3133 unsigned int total = size * count;
3134 void *ptr = obstack_alloc ((struct obstack *) data, total);
3135 memset (ptr, 0, total);
3136 return ptr;
3137 }
3138
3139 /* Trivial deallocation function for the libiberty splay tree and hash
3140 table - don't deallocate anything. Rely on later deletion of the
3141 obstack. DATA will be the obstack, although it is not needed
3142 here. */
3143
3144 void
3145 dummy_obstack_deallocate (void *object, void *data)
3146 {
3147 return;
3148 }
This page took 0.094556 seconds and 4 git commands to generate.