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