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