c3e5a5058899ebebbc16428036974d434866a32d
[platform/upstream/binutils.git] / gdb / utils.c
1 /* General utility routines for GDB, the GNU debugger.
2    Copyright 1986, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
3    1996, 1997, 1998, 1999, 2000, 2001, 2002
4    Free Software Foundation, Inc.
5
6    This file is part of GDB.
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 59 Temple Place - Suite 330,
21    Boston, MA 02111-1307, USA.  */
22
23 #include "defs.h"
24 #include "gdb_assert.h"
25 #include <ctype.h>
26 #include "gdb_string.h"
27 #include "event-top.h"
28
29 #ifdef HAVE_CURSES_H
30 #include <curses.h>
31 #endif
32 #ifdef HAVE_TERM_H
33 #include <term.h>
34 #endif
35
36 #ifdef __GO32__
37 #include <pc.h>
38 #endif
39
40 /* SunOS's curses.h has a '#define reg register' in it.  Thank you Sun. */
41 #ifdef reg
42 #undef reg
43 #endif
44
45 #include <signal.h>
46 #include "gdbcmd.h"
47 #include "serial.h"
48 #include "bfd.h"
49 #include "target.h"
50 #include "demangle.h"
51 #include "expression.h"
52 #include "language.h"
53 #include "annotate.h"
54
55 #include "inferior.h" /* for signed_pointer_to_address */
56
57 #include <sys/param.h>          /* For MAXPATHLEN */
58
59 #include <readline/readline.h>
60
61 #ifdef USE_MMALLOC
62 #include "mmalloc.h"
63 #endif
64
65 #ifdef NEED_DECLARATION_MALLOC
66 extern PTR malloc ();
67 #endif
68 #ifdef NEED_DECLARATION_REALLOC
69 extern PTR realloc ();
70 #endif
71 #ifdef NEED_DECLARATION_FREE
72 extern void free ();
73 #endif
74
75 #undef XMALLOC
76 #define XMALLOC(TYPE) ((TYPE*) xmalloc (sizeof (TYPE)))
77
78 /* readline defines this.  */
79 #undef savestring
80
81 void (*error_begin_hook) (void);
82
83 /* Holds the last error message issued by gdb */
84
85 static struct ui_file *gdb_lasterr;
86
87 /* Prototypes for local functions */
88
89 static void vfprintf_maybe_filtered (struct ui_file *, const char *,
90                                      va_list, int);
91
92 static void fputs_maybe_filtered (const char *, struct ui_file *, int);
93
94 #if defined (USE_MMALLOC) && !defined (NO_MMCHECK)
95 static void malloc_botch (void);
96 #endif
97
98 static void prompt_for_continue (void);
99
100 static void set_width_command (char *, int, struct cmd_list_element *);
101
102 static void set_width (void);
103
104 /* Chain of cleanup actions established with make_cleanup,
105    to be executed if an error happens.  */
106
107 static struct cleanup *cleanup_chain;   /* cleaned up after a failed command */
108 static struct cleanup *final_cleanup_chain;     /* cleaned up when gdb exits */
109 static struct cleanup *run_cleanup_chain;       /* cleaned up on each 'run' */
110 static struct cleanup *exec_cleanup_chain;      /* cleaned up on each execution command */
111 /* cleaned up on each error from within an execution command */
112 static struct cleanup *exec_error_cleanup_chain; 
113
114 /* Pointer to what is left to do for an execution command after the
115    target stops. Used only in asynchronous mode, by targets that
116    support async execution.  The finish and until commands use it. So
117    does the target extended-remote command. */
118 struct continuation *cmd_continuation;
119 struct continuation *intermediate_continuation;
120
121 /* Nonzero if we have job control. */
122
123 int job_control;
124
125 /* Nonzero means a quit has been requested.  */
126
127 int quit_flag;
128
129 /* Nonzero means quit immediately if Control-C is typed now, rather
130    than waiting until QUIT is executed.  Be careful in setting this;
131    code which executes with immediate_quit set has to be very careful
132    about being able to deal with being interrupted at any time.  It is
133    almost always better to use QUIT; the only exception I can think of
134    is being able to quit out of a system call (using EINTR loses if
135    the SIGINT happens between the previous QUIT and the system call).
136    To immediately quit in the case in which a SIGINT happens between
137    the previous QUIT and setting immediate_quit (desirable anytime we
138    expect to block), call QUIT after setting immediate_quit.  */
139
140 int immediate_quit;
141
142 /* Nonzero means that encoded C++ names should be printed out in their
143    C++ form rather than raw.  */
144
145 int demangle = 1;
146
147 /* Nonzero means that encoded C++ names should be printed out in their
148    C++ form even in assembler language displays.  If this is set, but
149    DEMANGLE is zero, names are printed raw, i.e. DEMANGLE controls.  */
150
151 int asm_demangle = 0;
152
153 /* Nonzero means that strings with character values >0x7F should be printed
154    as octal escapes.  Zero means just print the value (e.g. it's an
155    international character, and the terminal or window can cope.)  */
156
157 int sevenbit_strings = 0;
158
159 /* String to be printed before error messages, if any.  */
160
161 char *error_pre_print;
162
163 /* String to be printed before quit messages, if any.  */
164
165 char *quit_pre_print;
166
167 /* String to be printed before warning messages, if any.  */
168
169 char *warning_pre_print = "\nwarning: ";
170
171 int pagination_enabled = 1;
172 \f
173
174 /* Add a new cleanup to the cleanup_chain,
175    and return the previous chain pointer
176    to be passed later to do_cleanups or discard_cleanups.
177    Args are FUNCTION to clean up with, and ARG to pass to it.  */
178
179 struct cleanup *
180 make_cleanup (make_cleanup_ftype *function, void *arg)
181 {
182   return make_my_cleanup (&cleanup_chain, function, arg);
183 }
184
185 struct cleanup *
186 make_final_cleanup (make_cleanup_ftype *function, void *arg)
187 {
188   return make_my_cleanup (&final_cleanup_chain, function, arg);
189 }
190
191 struct cleanup *
192 make_run_cleanup (make_cleanup_ftype *function, void *arg)
193 {
194   return make_my_cleanup (&run_cleanup_chain, function, arg);
195 }
196
197 struct cleanup *
198 make_exec_cleanup (make_cleanup_ftype *function, void *arg)
199 {
200   return make_my_cleanup (&exec_cleanup_chain, function, arg);
201 }
202
203 struct cleanup *
204 make_exec_error_cleanup (make_cleanup_ftype *function, void *arg)
205 {
206   return make_my_cleanup (&exec_error_cleanup_chain, function, arg);
207 }
208
209 static void
210 do_freeargv (void *arg)
211 {
212   freeargv ((char **) arg);
213 }
214
215 struct cleanup *
216 make_cleanup_freeargv (char **arg)
217 {
218   return make_my_cleanup (&cleanup_chain, do_freeargv, arg);
219 }
220
221 static void
222 do_bfd_close_cleanup (void *arg)
223 {
224   bfd_close (arg);
225 }
226
227 struct cleanup *
228 make_cleanup_bfd_close (bfd *abfd)
229 {
230   return make_cleanup (do_bfd_close_cleanup, abfd);
231 }
232
233 static void
234 do_close_cleanup (void *arg)
235 {
236   int *fd = arg;
237   close (*fd);
238   xfree (fd);
239 }
240
241 struct cleanup *
242 make_cleanup_close (int fd)
243 {
244   int *saved_fd = xmalloc (sizeof (fd));
245   *saved_fd = fd;
246   return make_cleanup (do_close_cleanup, saved_fd);
247 }
248
249 static void
250 do_ui_file_delete (void *arg)
251 {
252   ui_file_delete (arg);
253 }
254
255 struct cleanup *
256 make_cleanup_ui_file_delete (struct ui_file *arg)
257 {
258   return make_my_cleanup (&cleanup_chain, do_ui_file_delete, arg);
259 }
260
261 struct cleanup *
262 make_my_cleanup (struct cleanup **pmy_chain, make_cleanup_ftype *function,
263                  void *arg)
264 {
265   register struct cleanup *new
266   = (struct cleanup *) xmalloc (sizeof (struct cleanup));
267   register struct cleanup *old_chain = *pmy_chain;
268
269   new->next = *pmy_chain;
270   new->function = function;
271   new->arg = arg;
272   *pmy_chain = new;
273
274   return old_chain;
275 }
276
277 /* Discard cleanups and do the actions they describe
278    until we get back to the point OLD_CHAIN in the cleanup_chain.  */
279
280 void
281 do_cleanups (register struct cleanup *old_chain)
282 {
283   do_my_cleanups (&cleanup_chain, old_chain);
284 }
285
286 void
287 do_final_cleanups (register struct cleanup *old_chain)
288 {
289   do_my_cleanups (&final_cleanup_chain, old_chain);
290 }
291
292 void
293 do_run_cleanups (register struct cleanup *old_chain)
294 {
295   do_my_cleanups (&run_cleanup_chain, old_chain);
296 }
297
298 void
299 do_exec_cleanups (register struct cleanup *old_chain)
300 {
301   do_my_cleanups (&exec_cleanup_chain, old_chain);
302 }
303
304 void
305 do_exec_error_cleanups (register struct cleanup *old_chain)
306 {
307   do_my_cleanups (&exec_error_cleanup_chain, old_chain);
308 }
309
310 void
311 do_my_cleanups (register struct cleanup **pmy_chain,
312                 register struct cleanup *old_chain)
313 {
314   register struct cleanup *ptr;
315   while ((ptr = *pmy_chain) != old_chain)
316     {
317       *pmy_chain = ptr->next;   /* Do this first incase recursion */
318       (*ptr->function) (ptr->arg);
319       xfree (ptr);
320     }
321 }
322
323 /* Discard cleanups, not doing the actions they describe,
324    until we get back to the point OLD_CHAIN in the cleanup_chain.  */
325
326 void
327 discard_cleanups (register struct cleanup *old_chain)
328 {
329   discard_my_cleanups (&cleanup_chain, old_chain);
330 }
331
332 void
333 discard_final_cleanups (register struct cleanup *old_chain)
334 {
335   discard_my_cleanups (&final_cleanup_chain, old_chain);
336 }
337
338 void
339 discard_exec_error_cleanups (register struct cleanup *old_chain)
340 {
341   discard_my_cleanups (&exec_error_cleanup_chain, old_chain);
342 }
343
344 void
345 discard_my_cleanups (register struct cleanup **pmy_chain,
346                      register struct cleanup *old_chain)
347 {
348   register struct cleanup *ptr;
349   while ((ptr = *pmy_chain) != old_chain)
350     {
351       *pmy_chain = ptr->next;
352       xfree (ptr);
353     }
354 }
355
356 /* Set the cleanup_chain to 0, and return the old cleanup chain.  */
357 struct cleanup *
358 save_cleanups (void)
359 {
360   return save_my_cleanups (&cleanup_chain);
361 }
362
363 struct cleanup *
364 save_final_cleanups (void)
365 {
366   return save_my_cleanups (&final_cleanup_chain);
367 }
368
369 struct cleanup *
370 save_my_cleanups (struct cleanup **pmy_chain)
371 {
372   struct cleanup *old_chain = *pmy_chain;
373
374   *pmy_chain = 0;
375   return old_chain;
376 }
377
378 /* Restore the cleanup chain from a previously saved chain.  */
379 void
380 restore_cleanups (struct cleanup *chain)
381 {
382   restore_my_cleanups (&cleanup_chain, chain);
383 }
384
385 void
386 restore_final_cleanups (struct cleanup *chain)
387 {
388   restore_my_cleanups (&final_cleanup_chain, chain);
389 }
390
391 void
392 restore_my_cleanups (struct cleanup **pmy_chain, struct cleanup *chain)
393 {
394   *pmy_chain = chain;
395 }
396
397 /* This function is useful for cleanups.
398    Do
399
400    foo = xmalloc (...);
401    old_chain = make_cleanup (free_current_contents, &foo);
402
403    to arrange to free the object thus allocated.  */
404
405 void
406 free_current_contents (void *ptr)
407 {
408   void **location = ptr;
409   if (location == NULL)
410     internal_error (__FILE__, __LINE__,
411                     "free_current_contents: NULL pointer");
412   if (*location != NULL)
413     {
414       xfree (*location);
415       *location = NULL;
416     }
417 }
418
419 /* Provide a known function that does nothing, to use as a base for
420    for a possibly long chain of cleanups.  This is useful where we
421    use the cleanup chain for handling normal cleanups as well as dealing
422    with cleanups that need to be done as a result of a call to error().
423    In such cases, we may not be certain where the first cleanup is, unless
424    we have a do-nothing one to always use as the base. */
425
426 /* ARGSUSED */
427 void
428 null_cleanup (void *arg)
429 {
430 }
431
432 /* Add a continuation to the continuation list, the global list
433    cmd_continuation. The new continuation will be added at the front.*/
434 void
435 add_continuation (void (*continuation_hook) (struct continuation_arg *),
436                   struct continuation_arg *arg_list)
437 {
438   struct continuation *continuation_ptr;
439
440   continuation_ptr = (struct continuation *) xmalloc (sizeof (struct continuation));
441   continuation_ptr->continuation_hook = continuation_hook;
442   continuation_ptr->arg_list = arg_list;
443   continuation_ptr->next = cmd_continuation;
444   cmd_continuation = continuation_ptr;
445 }
446
447 /* Walk down the cmd_continuation list, and execute all the
448    continuations. There is a problem though. In some cases new
449    continuations may be added while we are in the middle of this
450    loop. If this happens they will be added in the front, and done
451    before we have a chance of exhausting those that were already
452    there. We need to then save the beginning of the list in a pointer
453    and do the continuations from there on, instead of using the
454    global beginning of list as our iteration pointer.*/
455 void
456 do_all_continuations (void)
457 {
458   struct continuation *continuation_ptr;
459   struct continuation *saved_continuation;
460
461   /* Copy the list header into another pointer, and set the global
462      list header to null, so that the global list can change as a side
463      effect of invoking the continuations and the processing of
464      the preexisting continuations will not be affected. */
465   continuation_ptr = cmd_continuation;
466   cmd_continuation = NULL;
467
468   /* Work now on the list we have set aside. */
469   while (continuation_ptr)
470      {
471        (continuation_ptr->continuation_hook) (continuation_ptr->arg_list);
472        saved_continuation = continuation_ptr;
473        continuation_ptr = continuation_ptr->next;
474        xfree (saved_continuation);
475      }
476 }
477
478 /* Walk down the cmd_continuation list, and get rid of all the
479    continuations. */
480 void
481 discard_all_continuations (void)
482 {
483   struct continuation *continuation_ptr;
484
485   while (cmd_continuation)
486     {
487       continuation_ptr = cmd_continuation;
488       cmd_continuation = continuation_ptr->next;
489       xfree (continuation_ptr);
490     }
491 }
492
493 /* Add a continuation to the continuation list, the global list
494    intermediate_continuation. The new continuation will be added at the front.*/
495 void
496 add_intermediate_continuation (void (*continuation_hook)
497                                (struct continuation_arg *),
498                                struct continuation_arg *arg_list)
499 {
500   struct continuation *continuation_ptr;
501
502   continuation_ptr = (struct continuation *) xmalloc (sizeof (struct continuation));
503   continuation_ptr->continuation_hook = continuation_hook;
504   continuation_ptr->arg_list = arg_list;
505   continuation_ptr->next = intermediate_continuation;
506   intermediate_continuation = continuation_ptr;
507 }
508
509 /* Walk down the cmd_continuation list, and execute all the
510    continuations. There is a problem though. In some cases new
511    continuations may be added while we are in the middle of this
512    loop. If this happens they will be added in the front, and done
513    before we have a chance of exhausting those that were already
514    there. We need to then save the beginning of the list in a pointer
515    and do the continuations from there on, instead of using the
516    global beginning of list as our iteration pointer.*/
517 void
518 do_all_intermediate_continuations (void)
519 {
520   struct continuation *continuation_ptr;
521   struct continuation *saved_continuation;
522
523   /* Copy the list header into another pointer, and set the global
524      list header to null, so that the global list can change as a side
525      effect of invoking the continuations and the processing of
526      the preexisting continuations will not be affected. */
527   continuation_ptr = intermediate_continuation;
528   intermediate_continuation = NULL;
529
530   /* Work now on the list we have set aside. */
531   while (continuation_ptr)
532      {
533        (continuation_ptr->continuation_hook) (continuation_ptr->arg_list);
534        saved_continuation = continuation_ptr;
535        continuation_ptr = continuation_ptr->next;
536        xfree (saved_continuation);
537      }
538 }
539
540 /* Walk down the cmd_continuation list, and get rid of all the
541    continuations. */
542 void
543 discard_all_intermediate_continuations (void)
544 {
545   struct continuation *continuation_ptr;
546
547   while (intermediate_continuation)
548     {
549       continuation_ptr = intermediate_continuation;
550       intermediate_continuation = continuation_ptr->next;
551       xfree (continuation_ptr);
552     }
553 }
554
555 \f
556
557 /* Print a warning message.  The first argument STRING is the warning
558    message, used as an fprintf format string, the second is the
559    va_list of arguments for that string.  A warning is unfiltered (not
560    paginated) so that the user does not need to page through each
561    screen full of warnings when there are lots of them.  */
562
563 void
564 vwarning (const char *string, va_list args)
565 {
566   if (warning_hook)
567     (*warning_hook) (string, args);
568   else
569     {
570       target_terminal_ours ();
571       wrap_here ("");           /* Force out any buffered output */
572       gdb_flush (gdb_stdout);
573       if (warning_pre_print)
574         fprintf_unfiltered (gdb_stderr, warning_pre_print);
575       vfprintf_unfiltered (gdb_stderr, string, args);
576       fprintf_unfiltered (gdb_stderr, "\n");
577       va_end (args);
578     }
579 }
580
581 /* Print a warning message.
582    The first argument STRING is the warning message, used as a fprintf string,
583    and the remaining args are passed as arguments to it.
584    The primary difference between warnings and errors is that a warning
585    does not force the return to command level.  */
586
587 void
588 warning (const char *string,...)
589 {
590   va_list args;
591   va_start (args, string);
592   vwarning (string, args);
593   va_end (args);
594 }
595
596 /* Start the printing of an error message.  Way to use this is to call
597    this, output the error message (use filtered output to gdb_stderr
598    (FIXME: Some callers, like memory_error, use gdb_stdout)), ending
599    in a newline, and then call return_to_top_level (RETURN_ERROR).
600    error() provides a convenient way to do this for the special case
601    that the error message can be formatted with a single printf call,
602    but this is more general.  */
603 static void
604 error_begin (void)
605 {
606   if (error_begin_hook)
607     error_begin_hook ();
608
609   target_terminal_ours ();
610   wrap_here ("");               /* Force out any buffered output */
611   gdb_flush (gdb_stdout);
612
613   annotate_error_begin ();
614
615   if (error_pre_print)
616     fprintf_filtered (gdb_stderr, error_pre_print);
617 }
618
619 /* Print an error message and return to command level.
620    The first argument STRING is the error message, used as a fprintf string,
621    and the remaining args are passed as arguments to it.  */
622
623 NORETURN void
624 verror (const char *string, va_list args)
625 {
626   char *err_string;
627   struct cleanup *err_string_cleanup;
628   /* FIXME: cagney/1999-11-10: All error calls should come here.
629      Unfortunately some code uses the sequence: error_begin(); print
630      error message; return_to_top_level.  That code should be
631      flushed. */
632   error_begin ();
633   /* NOTE: It's tempting to just do the following...
634         vfprintf_filtered (gdb_stderr, string, args);
635      and then follow with a similar looking statement to cause the message
636      to also go to gdb_lasterr.  But if we do this, we'll be traversing the
637      va_list twice which works on some platforms and fails miserably on
638      others. */
639   /* Save it as the last error */
640   ui_file_rewind (gdb_lasterr);
641   vfprintf_filtered (gdb_lasterr, string, args);
642   /* Retrieve the last error and print it to gdb_stderr */
643   err_string = error_last_message ();
644   err_string_cleanup = make_cleanup (xfree, err_string);
645   fputs_filtered (err_string, gdb_stderr);
646   fprintf_filtered (gdb_stderr, "\n");
647   do_cleanups (err_string_cleanup);
648   return_to_top_level (RETURN_ERROR);
649 }
650
651 NORETURN void
652 error (const char *string,...)
653 {
654   va_list args;
655   va_start (args, string);
656   verror (string, args);
657   va_end (args);
658 }
659
660 NORETURN void
661 error_stream (struct ui_file *stream)
662 {
663   long size;
664   char *msg = ui_file_xstrdup (stream, &size);
665   make_cleanup (xfree, msg);
666   error ("%s", msg);
667 }
668
669 /* Get the last error message issued by gdb */
670
671 char *
672 error_last_message (void)
673 {
674   long len;
675   return ui_file_xstrdup (gdb_lasterr, &len);
676 }
677   
678 /* This is to be called by main() at the very beginning */
679
680 void
681 error_init (void)
682 {
683   gdb_lasterr = mem_fileopen ();
684 }
685
686 /* Print a message reporting an internal error. Ask the user if they
687    want to continue, dump core, or just exit. */
688
689 NORETURN void
690 internal_verror (const char *file, int line,
691                  const char *fmt, va_list ap)
692 {
693   static char msg[] = "Internal GDB error: recursive internal error.\n";
694   static int dejavu = 0;
695   int quit_p;
696   int dump_core_p;
697
698   /* don't allow infinite error recursion. */
699   switch (dejavu)
700     {
701     case 0:
702       dejavu = 1;
703       break;
704     case 1:
705       dejavu = 2;
706       fputs_unfiltered (msg, gdb_stderr);
707       abort (); /* NOTE: GDB has only three calls to abort().  */
708     default:
709       dejavu = 3;
710       write (STDERR_FILENO, msg, sizeof (msg));
711       exit (1);
712     }
713
714   /* Try to get the message out */
715   target_terminal_ours ();
716   fprintf_unfiltered (gdb_stderr, "%s:%d: gdb-internal-error: ", file, line);
717   vfprintf_unfiltered (gdb_stderr, fmt, ap);
718   fputs_unfiltered ("\n", gdb_stderr);
719
720   /* Default (yes/batch case) is to quit GDB.  When in batch mode this
721      lessens the likelhood of GDB going into an infinate loop. */
722   quit_p = query ("\
723 An internal GDB error was detected.  This may make further\n\
724 debugging unreliable.  Quit this debugging session? ");
725
726   /* Default (yes/batch case) is to dump core.  This leaves a GDB
727      dropping so that it is easier to see that something went wrong to
728      GDB. */
729   dump_core_p = query ("\
730 Create a core file containing the current state of GDB? ");
731
732   if (quit_p)
733     {
734       if (dump_core_p)
735         abort (); /* NOTE: GDB has only three calls to abort().  */
736       else
737         exit (1);
738     }
739   else
740     {
741       if (dump_core_p)
742         {
743           if (fork () == 0)
744             abort (); /* NOTE: GDB has only three calls to abort().  */
745         }
746     }
747
748   dejavu = 0;
749   return_to_top_level (RETURN_ERROR);
750 }
751
752 NORETURN void
753 internal_error (const char *file, int line, const char *string, ...)
754 {
755   va_list ap;
756   va_start (ap, string);
757
758   internal_verror (file, line, string, ap);
759   va_end (ap);
760 }
761
762 /* The strerror() function can return NULL for errno values that are
763    out of range.  Provide a "safe" version that always returns a
764    printable string. */
765
766 char *
767 safe_strerror (int errnum)
768 {
769   char *msg;
770   static char buf[32];
771
772   if ((msg = strerror (errnum)) == NULL)
773     {
774       sprintf (buf, "(undocumented errno %d)", errnum);
775       msg = buf;
776     }
777   return (msg);
778 }
779
780 /* Print the system error message for errno, and also mention STRING
781    as the file name for which the error was encountered.
782    Then return to command level.  */
783
784 NORETURN void
785 perror_with_name (char *string)
786 {
787   char *err;
788   char *combined;
789
790   err = safe_strerror (errno);
791   combined = (char *) alloca (strlen (err) + strlen (string) + 3);
792   strcpy (combined, string);
793   strcat (combined, ": ");
794   strcat (combined, err);
795
796   /* I understand setting these is a matter of taste.  Still, some people
797      may clear errno but not know about bfd_error.  Doing this here is not
798      unreasonable. */
799   bfd_set_error (bfd_error_no_error);
800   errno = 0;
801
802   error ("%s.", combined);
803 }
804
805 /* Print the system error message for ERRCODE, and also mention STRING
806    as the file name for which the error was encountered.  */
807
808 void
809 print_sys_errmsg (char *string, int errcode)
810 {
811   char *err;
812   char *combined;
813
814   err = safe_strerror (errcode);
815   combined = (char *) alloca (strlen (err) + strlen (string) + 3);
816   strcpy (combined, string);
817   strcat (combined, ": ");
818   strcat (combined, err);
819
820   /* We want anything which was printed on stdout to come out first, before
821      this message.  */
822   gdb_flush (gdb_stdout);
823   fprintf_unfiltered (gdb_stderr, "%s.\n", combined);
824 }
825
826 /* Control C eventually causes this to be called, at a convenient time.  */
827
828 void
829 quit (void)
830 {
831   struct serial *gdb_stdout_serial = serial_fdopen (1);
832
833   target_terminal_ours ();
834
835   /* We want all output to appear now, before we print "Quit".  We
836      have 3 levels of buffering we have to flush (it's possible that
837      some of these should be changed to flush the lower-level ones
838      too):  */
839
840   /* 1.  The _filtered buffer.  */
841   wrap_here ((char *) 0);
842
843   /* 2.  The stdio buffer.  */
844   gdb_flush (gdb_stdout);
845   gdb_flush (gdb_stderr);
846
847   /* 3.  The system-level buffer.  */
848   serial_drain_output (gdb_stdout_serial);
849   serial_un_fdopen (gdb_stdout_serial);
850
851   annotate_error_begin ();
852
853   /* Don't use *_filtered; we don't want to prompt the user to continue.  */
854   if (quit_pre_print)
855     fprintf_unfiltered (gdb_stderr, quit_pre_print);
856
857 #ifdef __MSDOS__
858   /* No steenking SIGINT will ever be coming our way when the
859      program is resumed.  Don't lie.  */
860   fprintf_unfiltered (gdb_stderr, "Quit\n");
861 #else
862   if (job_control
863   /* If there is no terminal switching for this target, then we can't
864      possibly get screwed by the lack of job control.  */
865       || current_target.to_terminal_ours == NULL)
866     fprintf_unfiltered (gdb_stderr, "Quit\n");
867   else
868     fprintf_unfiltered (gdb_stderr,
869                "Quit (expect signal SIGINT when the program is resumed)\n");
870 #endif
871   return_to_top_level (RETURN_QUIT);
872 }
873
874 /* Control C comes here */
875 void
876 request_quit (int signo)
877 {
878   quit_flag = 1;
879   /* Restore the signal handler.  Harmless with BSD-style signals, needed
880      for System V-style signals.  So just always do it, rather than worrying
881      about USG defines and stuff like that.  */
882   signal (signo, request_quit);
883
884 #ifdef REQUEST_QUIT
885   REQUEST_QUIT;
886 #else
887   if (immediate_quit)
888     quit ();
889 #endif
890 }
891 \f
892 /* Memory management stuff (malloc friends).  */
893
894 #if !defined (USE_MMALLOC)
895
896 /* NOTE: These must use PTR so that their definition matches the
897    declaration found in "mmalloc.h". */
898
899 static void *
900 mmalloc (void *md, size_t size)
901 {
902   return malloc (size); /* NOTE: GDB's only call to malloc() */
903 }
904
905 static void *
906 mrealloc (void *md, void *ptr, size_t size)
907 {
908   if (ptr == 0)                 /* Guard against old realloc's */
909     return mmalloc (md, size);
910   else
911     return realloc (ptr, size); /* NOTE: GDB's only call to ralloc() */
912 }
913
914 static void *
915 mcalloc (void *md, size_t number, size_t size)
916 {
917   return calloc (number, size); /* NOTE: GDB's only call to calloc() */
918 }
919
920 static void
921 mfree (void *md, void *ptr)
922 {
923   free (ptr); /* NOTE: GDB's only call to free() */
924 }
925
926 #endif /* USE_MMALLOC */
927
928 #if !defined (USE_MMALLOC) || defined (NO_MMCHECK)
929
930 void
931 init_malloc (void *md)
932 {
933 }
934
935 #else /* Have mmalloc and want corruption checking */
936
937 static void
938 malloc_botch (void)
939 {
940   fprintf_unfiltered (gdb_stderr, "Memory corruption\n");
941   internal_error (__FILE__, __LINE__, "failed internal consistency check");
942 }
943
944 /* Attempt to install hooks in mmalloc/mrealloc/mfree for the heap specified
945    by MD, to detect memory corruption.  Note that MD may be NULL to specify
946    the default heap that grows via sbrk.
947
948    Note that for freshly created regions, we must call mmcheckf prior to any
949    mallocs in the region.  Otherwise, any region which was allocated prior to
950    installing the checking hooks, which is later reallocated or freed, will
951    fail the checks!  The mmcheck function only allows initial hooks to be
952    installed before the first mmalloc.  However, anytime after we have called
953    mmcheck the first time to install the checking hooks, we can call it again
954    to update the function pointer to the memory corruption handler.
955
956    Returns zero on failure, non-zero on success. */
957
958 #ifndef MMCHECK_FORCE
959 #define MMCHECK_FORCE 0
960 #endif
961
962 void
963 init_malloc (void *md)
964 {
965   if (!mmcheckf (md, malloc_botch, MMCHECK_FORCE))
966     {
967       /* Don't use warning(), which relies on current_target being set
968          to something other than dummy_target, until after
969          initialize_all_files(). */
970
971       fprintf_unfiltered
972         (gdb_stderr, "warning: failed to install memory consistency checks; ");
973       fprintf_unfiltered
974         (gdb_stderr, "configuration should define NO_MMCHECK or MMCHECK_FORCE\n");
975     }
976
977   mmtrace ();
978 }
979
980 #endif /* Have mmalloc and want corruption checking  */
981
982 /* Called when a memory allocation fails, with the number of bytes of
983    memory requested in SIZE. */
984
985 NORETURN void
986 nomem (long size)
987 {
988   if (size > 0)
989     {
990       internal_error (__FILE__, __LINE__,
991                       "virtual memory exhausted: can't allocate %ld bytes.", size);
992     }
993   else
994     {
995       internal_error (__FILE__, __LINE__,
996                       "virtual memory exhausted.");
997     }
998 }
999
1000 /* The xmmalloc() family of memory management routines.
1001
1002    These are are like the mmalloc() family except that they implement
1003    consistent semantics and guard against typical memory management
1004    problems: if a malloc fails, an internal error is thrown; if
1005    free(NULL) is called, it is ignored; if *alloc(0) is called, NULL
1006    is returned.
1007
1008    All these routines are implemented using the mmalloc() family. */
1009
1010 void *
1011 xmmalloc (void *md, size_t size)
1012 {
1013   void *val;
1014
1015   if (size == 0)
1016     {
1017       val = NULL;
1018     }
1019   else
1020     {
1021       val = mmalloc (md, size);
1022       if (val == NULL)
1023         nomem (size);
1024     }
1025   return (val);
1026 }
1027
1028 void *
1029 xmrealloc (void *md, void *ptr, size_t size)
1030 {
1031   void *val;
1032
1033   if (size == 0)
1034     {
1035       if (ptr != NULL)
1036         mfree (md, ptr);
1037       val = NULL;
1038     }
1039   else
1040     {
1041       if (ptr != NULL)
1042         {
1043           val = mrealloc (md, ptr, size);
1044         }
1045       else
1046         {
1047           val = mmalloc (md, size);
1048         }
1049       if (val == NULL)
1050         {
1051           nomem (size);
1052         }
1053     }
1054   return (val);
1055 }
1056
1057 void *
1058 xmcalloc (void *md, size_t number, size_t size)
1059 {
1060   void *mem;
1061   if (number == 0 || size == 0)
1062     mem = NULL;
1063   else
1064     {
1065       mem = mcalloc (md, number, size);
1066       if (mem == NULL)
1067         nomem (number * size);
1068     }
1069   return mem;
1070 }
1071
1072 void
1073 xmfree (void *md, void *ptr)
1074 {
1075   if (ptr != NULL)
1076     mfree (md, ptr);
1077 }
1078
1079 /* The xmalloc() (libiberty.h) family of memory management routines.
1080
1081    These are like the ISO-C malloc() family except that they implement
1082    consistent semantics and guard against typical memory management
1083    problems.  See xmmalloc() above for further information.
1084
1085    All these routines are wrappers to the xmmalloc() family. */
1086
1087 /* NOTE: These are declared using PTR to ensure consistency with
1088    "libiberty.h".  xfree() is GDB local.  */
1089
1090 PTR
1091 xmalloc (size_t size)
1092 {
1093   return xmmalloc (NULL, size);
1094 }
1095
1096 PTR
1097 xrealloc (PTR ptr, size_t size)
1098 {
1099   return xmrealloc (NULL, ptr, size);
1100 }
1101
1102 PTR
1103 xcalloc (size_t number, size_t size)
1104 {
1105   return xmcalloc (NULL, number, size);
1106 }
1107
1108 void
1109 xfree (void *ptr)
1110 {
1111   xmfree (NULL, ptr);
1112 }
1113 \f
1114
1115 /* Like asprintf/vasprintf but get an internal_error if the call
1116    fails. */
1117
1118 void
1119 xasprintf (char **ret, const char *format, ...)
1120 {
1121   va_list args;
1122   va_start (args, format);
1123   xvasprintf (ret, format, args);
1124   va_end (args);
1125 }
1126
1127 void
1128 xvasprintf (char **ret, const char *format, va_list ap)
1129 {
1130   int status = vasprintf (ret, format, ap);
1131   /* NULL could be returned due to a memory allocation problem; a
1132      badly format string; or something else. */
1133   if ((*ret) == NULL)
1134     internal_error (__FILE__, __LINE__,
1135                     "vasprintf returned NULL buffer (errno %d)",
1136                     errno);
1137   /* A negative status with a non-NULL buffer shouldn't never
1138      happen. But to be sure. */
1139   if (status < 0)
1140     internal_error (__FILE__, __LINE__,
1141                     "vasprintf call failed (errno %d)",
1142                     errno);
1143 }
1144
1145
1146 /* My replacement for the read system call.
1147    Used like `read' but keeps going if `read' returns too soon.  */
1148
1149 int
1150 myread (int desc, char *addr, int len)
1151 {
1152   register int val;
1153   int orglen = len;
1154
1155   while (len > 0)
1156     {
1157       val = read (desc, addr, len);
1158       if (val < 0)
1159         return val;
1160       if (val == 0)
1161         return orglen - len;
1162       len -= val;
1163       addr += val;
1164     }
1165   return orglen;
1166 }
1167 \f
1168 /* Make a copy of the string at PTR with SIZE characters
1169    (and add a null character at the end in the copy).
1170    Uses malloc to get the space.  Returns the address of the copy.  */
1171
1172 char *
1173 savestring (const char *ptr, size_t size)
1174 {
1175   register char *p = (char *) xmalloc (size + 1);
1176   memcpy (p, ptr, size);
1177   p[size] = 0;
1178   return p;
1179 }
1180
1181 char *
1182 msavestring (void *md, const char *ptr, size_t size)
1183 {
1184   register char *p = (char *) xmmalloc (md, size + 1);
1185   memcpy (p, ptr, size);
1186   p[size] = 0;
1187   return p;
1188 }
1189
1190 char *
1191 mstrsave (void *md, const char *ptr)
1192 {
1193   return (msavestring (md, ptr, strlen (ptr)));
1194 }
1195
1196 void
1197 print_spaces (register int n, register struct ui_file *file)
1198 {
1199   fputs_unfiltered (n_spaces (n), file);
1200 }
1201
1202 /* Print a host address.  */
1203
1204 void
1205 gdb_print_host_address (void *addr, struct ui_file *stream)
1206 {
1207
1208   /* We could use the %p conversion specifier to fprintf if we had any
1209      way of knowing whether this host supports it.  But the following
1210      should work on the Alpha and on 32 bit machines.  */
1211
1212   fprintf_filtered (stream, "0x%lx", (unsigned long) addr);
1213 }
1214
1215 /* Ask user a y-or-n question and return 1 iff answer is yes.
1216    Takes three args which are given to printf to print the question.
1217    The first, a control string, should end in "? ".
1218    It should not say how to answer, because we do that.  */
1219
1220 /* VARARGS */
1221 int
1222 query (char *ctlstr,...)
1223 {
1224   va_list args;
1225   register int answer;
1226   register int ans2;
1227   int retval;
1228
1229   va_start (args, ctlstr);
1230
1231   if (query_hook)
1232     {
1233       return query_hook (ctlstr, args);
1234     }
1235
1236   /* Automatically answer "yes" if input is not from a terminal.  */
1237   if (!input_from_terminal_p ())
1238     return 1;
1239
1240   while (1)
1241     {
1242       wrap_here ("");           /* Flush any buffered output */
1243       gdb_flush (gdb_stdout);
1244
1245       if (annotation_level > 1)
1246         printf_filtered ("\n\032\032pre-query\n");
1247
1248       vfprintf_filtered (gdb_stdout, ctlstr, args);
1249       printf_filtered ("(y or n) ");
1250
1251       if (annotation_level > 1)
1252         printf_filtered ("\n\032\032query\n");
1253
1254       wrap_here ("");
1255       gdb_flush (gdb_stdout);
1256
1257       answer = fgetc (stdin);
1258       clearerr (stdin);         /* in case of C-d */
1259       if (answer == EOF)        /* C-d */
1260         {
1261           retval = 1;
1262           break;
1263         }
1264       /* Eat rest of input line, to EOF or newline */
1265       if (answer != '\n')
1266         do
1267           {
1268             ans2 = fgetc (stdin);
1269             clearerr (stdin);
1270           }
1271         while (ans2 != EOF && ans2 != '\n' && ans2 != '\r');
1272
1273       if (answer >= 'a')
1274         answer -= 040;
1275       if (answer == 'Y')
1276         {
1277           retval = 1;
1278           break;
1279         }
1280       if (answer == 'N')
1281         {
1282           retval = 0;
1283           break;
1284         }
1285       printf_filtered ("Please answer y or n.\n");
1286     }
1287
1288   if (annotation_level > 1)
1289     printf_filtered ("\n\032\032post-query\n");
1290   return retval;
1291 }
1292 \f
1293
1294 /* Parse a C escape sequence.  STRING_PTR points to a variable
1295    containing a pointer to the string to parse.  That pointer
1296    should point to the character after the \.  That pointer
1297    is updated past the characters we use.  The value of the
1298    escape sequence is returned.
1299
1300    A negative value means the sequence \ newline was seen,
1301    which is supposed to be equivalent to nothing at all.
1302
1303    If \ is followed by a null character, we return a negative
1304    value and leave the string pointer pointing at the null character.
1305
1306    If \ is followed by 000, we return 0 and leave the string pointer
1307    after the zeros.  A value of 0 does not mean end of string.  */
1308
1309 int
1310 parse_escape (char **string_ptr)
1311 {
1312   register int c = *(*string_ptr)++;
1313   switch (c)
1314     {
1315     case 'a':
1316       return 007;               /* Bell (alert) char */
1317     case 'b':
1318       return '\b';
1319     case 'e':                   /* Escape character */
1320       return 033;
1321     case 'f':
1322       return '\f';
1323     case 'n':
1324       return '\n';
1325     case 'r':
1326       return '\r';
1327     case 't':
1328       return '\t';
1329     case 'v':
1330       return '\v';
1331     case '\n':
1332       return -2;
1333     case 0:
1334       (*string_ptr)--;
1335       return 0;
1336     case '^':
1337       c = *(*string_ptr)++;
1338       if (c == '\\')
1339         c = parse_escape (string_ptr);
1340       if (c == '?')
1341         return 0177;
1342       return (c & 0200) | (c & 037);
1343
1344     case '0':
1345     case '1':
1346     case '2':
1347     case '3':
1348     case '4':
1349     case '5':
1350     case '6':
1351     case '7':
1352       {
1353         register int i = c - '0';
1354         register int count = 0;
1355         while (++count < 3)
1356           {
1357             if ((c = *(*string_ptr)++) >= '0' && c <= '7')
1358               {
1359                 i *= 8;
1360                 i += c - '0';
1361               }
1362             else
1363               {
1364                 (*string_ptr)--;
1365                 break;
1366               }
1367           }
1368         return i;
1369       }
1370     default:
1371       return c;
1372     }
1373 }
1374 \f
1375 /* Print the character C on STREAM as part of the contents of a literal
1376    string whose delimiter is QUOTER.  Note that this routine should only
1377    be call for printing things which are independent of the language
1378    of the program being debugged. */
1379
1380 static void
1381 printchar (int c, void (*do_fputs) (const char *, struct ui_file *),
1382            void (*do_fprintf) (struct ui_file *, const char *, ...),
1383            struct ui_file *stream, int quoter)
1384 {
1385
1386   c &= 0xFF;                    /* Avoid sign bit follies */
1387
1388   if (c < 0x20 ||               /* Low control chars */
1389       (c >= 0x7F && c < 0xA0) ||        /* DEL, High controls */
1390       (sevenbit_strings && c >= 0x80))
1391     {                           /* high order bit set */
1392       switch (c)
1393         {
1394         case '\n':
1395           do_fputs ("\\n", stream);
1396           break;
1397         case '\b':
1398           do_fputs ("\\b", stream);
1399           break;
1400         case '\t':
1401           do_fputs ("\\t", stream);
1402           break;
1403         case '\f':
1404           do_fputs ("\\f", stream);
1405           break;
1406         case '\r':
1407           do_fputs ("\\r", stream);
1408           break;
1409         case '\033':
1410           do_fputs ("\\e", stream);
1411           break;
1412         case '\007':
1413           do_fputs ("\\a", stream);
1414           break;
1415         default:
1416           do_fprintf (stream, "\\%.3o", (unsigned int) c);
1417           break;
1418         }
1419     }
1420   else
1421     {
1422       if (c == '\\' || c == quoter)
1423         do_fputs ("\\", stream);
1424       do_fprintf (stream, "%c", c);
1425     }
1426 }
1427
1428 /* Print the character C on STREAM as part of the contents of a
1429    literal string whose delimiter is QUOTER.  Note that these routines
1430    should only be call for printing things which are independent of
1431    the language of the program being debugged. */
1432
1433 void
1434 fputstr_filtered (const char *str, int quoter, struct ui_file *stream)
1435 {
1436   while (*str)
1437     printchar (*str++, fputs_filtered, fprintf_filtered, stream, quoter);
1438 }
1439
1440 void
1441 fputstr_unfiltered (const char *str, int quoter, struct ui_file *stream)
1442 {
1443   while (*str)
1444     printchar (*str++, fputs_unfiltered, fprintf_unfiltered, stream, quoter);
1445 }
1446
1447 void
1448 fputstrn_unfiltered (const char *str, int n, int quoter, struct ui_file *stream)
1449 {
1450   int i;
1451   for (i = 0; i < n; i++)
1452     printchar (str[i], fputs_unfiltered, fprintf_unfiltered, stream, quoter);
1453 }
1454
1455 \f
1456
1457 /* Number of lines per page or UINT_MAX if paging is disabled.  */
1458 static unsigned int lines_per_page;
1459 /* Number of chars per line or UINT_MAX if line folding is disabled.  */
1460 static unsigned int chars_per_line;
1461 /* Current count of lines printed on this page, chars on this line.  */
1462 static unsigned int lines_printed, chars_printed;
1463
1464 /* Buffer and start column of buffered text, for doing smarter word-
1465    wrapping.  When someone calls wrap_here(), we start buffering output
1466    that comes through fputs_filtered().  If we see a newline, we just
1467    spit it out and forget about the wrap_here().  If we see another
1468    wrap_here(), we spit it out and remember the newer one.  If we see
1469    the end of the line, we spit out a newline, the indent, and then
1470    the buffered output.  */
1471
1472 /* Malloc'd buffer with chars_per_line+2 bytes.  Contains characters which
1473    are waiting to be output (they have already been counted in chars_printed).
1474    When wrap_buffer[0] is null, the buffer is empty.  */
1475 static char *wrap_buffer;
1476
1477 /* Pointer in wrap_buffer to the next character to fill.  */
1478 static char *wrap_pointer;
1479
1480 /* String to indent by if the wrap occurs.  Must not be NULL if wrap_column
1481    is non-zero.  */
1482 static char *wrap_indent;
1483
1484 /* Column number on the screen where wrap_buffer begins, or 0 if wrapping
1485    is not in effect.  */
1486 static int wrap_column;
1487 \f
1488
1489 /* Inialize the lines and chars per page */
1490 void
1491 init_page_info (void)
1492 {
1493 #if defined(TUI)
1494   if (!tui_get_command_dimension (&chars_per_line, &lines_per_page))
1495 #endif
1496     {
1497       /* These defaults will be used if we are unable to get the correct
1498          values from termcap.  */
1499 #if defined(__GO32__)
1500       lines_per_page = ScreenRows ();
1501       chars_per_line = ScreenCols ();
1502 #else
1503       lines_per_page = 24;
1504       chars_per_line = 80;
1505
1506 #if !defined (_WIN32)
1507       /* No termcap under MPW, although might be cool to do something
1508          by looking at worksheet or console window sizes. */
1509       /* Initialize the screen height and width from termcap.  */
1510       {
1511         char *termtype = getenv ("TERM");
1512
1513         /* Positive means success, nonpositive means failure.  */
1514         int status;
1515
1516         /* 2048 is large enough for all known terminals, according to the
1517            GNU termcap manual.  */
1518         char term_buffer[2048];
1519
1520         if (termtype)
1521           {
1522             status = tgetent (term_buffer, termtype);
1523             if (status > 0)
1524               {
1525                 int val;
1526                 int running_in_emacs = getenv ("EMACS") != NULL;
1527
1528                 val = tgetnum ("li");
1529                 if (val >= 0 && !running_in_emacs)
1530                   lines_per_page = val;
1531                 else
1532                   /* The number of lines per page is not mentioned
1533                      in the terminal description.  This probably means
1534                      that paging is not useful (e.g. emacs shell window),
1535                      so disable paging.  */
1536                   lines_per_page = UINT_MAX;
1537
1538                 val = tgetnum ("co");
1539                 if (val >= 0)
1540                   chars_per_line = val;
1541               }
1542           }
1543       }
1544 #endif /* MPW */
1545
1546 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1547
1548       /* If there is a better way to determine the window size, use it. */
1549       SIGWINCH_HANDLER (SIGWINCH);
1550 #endif
1551 #endif
1552       /* If the output is not a terminal, don't paginate it.  */
1553       if (!ui_file_isatty (gdb_stdout))
1554         lines_per_page = UINT_MAX;
1555     }                           /* the command_line_version */
1556   set_width ();
1557 }
1558
1559 static void
1560 set_width (void)
1561 {
1562   if (chars_per_line == 0)
1563     init_page_info ();
1564
1565   if (!wrap_buffer)
1566     {
1567       wrap_buffer = (char *) xmalloc (chars_per_line + 2);
1568       wrap_buffer[0] = '\0';
1569     }
1570   else
1571     wrap_buffer = (char *) xrealloc (wrap_buffer, chars_per_line + 2);
1572   wrap_pointer = wrap_buffer;   /* Start it at the beginning */
1573 }
1574
1575 /* ARGSUSED */
1576 static void
1577 set_width_command (char *args, int from_tty, struct cmd_list_element *c)
1578 {
1579   set_width ();
1580 }
1581
1582 /* Wait, so the user can read what's on the screen.  Prompt the user
1583    to continue by pressing RETURN.  */
1584
1585 static void
1586 prompt_for_continue (void)
1587 {
1588   char *ignore;
1589   char cont_prompt[120];
1590
1591   if (annotation_level > 1)
1592     printf_unfiltered ("\n\032\032pre-prompt-for-continue\n");
1593
1594   strcpy (cont_prompt,
1595           "---Type <return> to continue, or q <return> to quit---");
1596   if (annotation_level > 1)
1597     strcat (cont_prompt, "\n\032\032prompt-for-continue\n");
1598
1599   /* We must do this *before* we call gdb_readline, else it will eventually
1600      call us -- thinking that we're trying to print beyond the end of the 
1601      screen.  */
1602   reinitialize_more_filter ();
1603
1604   immediate_quit++;
1605   /* On a real operating system, the user can quit with SIGINT.
1606      But not on GO32.
1607
1608      'q' is provided on all systems so users don't have to change habits
1609      from system to system, and because telling them what to do in
1610      the prompt is more user-friendly than expecting them to think of
1611      SIGINT.  */
1612   /* Call readline, not gdb_readline, because GO32 readline handles control-C
1613      whereas control-C to gdb_readline will cause the user to get dumped
1614      out to DOS.  */
1615   ignore = readline (cont_prompt);
1616
1617   if (annotation_level > 1)
1618     printf_unfiltered ("\n\032\032post-prompt-for-continue\n");
1619
1620   if (ignore)
1621     {
1622       char *p = ignore;
1623       while (*p == ' ' || *p == '\t')
1624         ++p;
1625       if (p[0] == 'q')
1626         {
1627           if (!event_loop_p)
1628             request_quit (SIGINT);
1629           else
1630             async_request_quit (0);
1631         }
1632       xfree (ignore);
1633     }
1634   immediate_quit--;
1635
1636   /* Now we have to do this again, so that GDB will know that it doesn't
1637      need to save the ---Type <return>--- line at the top of the screen.  */
1638   reinitialize_more_filter ();
1639
1640   dont_repeat ();               /* Forget prev cmd -- CR won't repeat it. */
1641 }
1642
1643 /* Reinitialize filter; ie. tell it to reset to original values.  */
1644
1645 void
1646 reinitialize_more_filter (void)
1647 {
1648   lines_printed = 0;
1649   chars_printed = 0;
1650 }
1651
1652 /* Indicate that if the next sequence of characters overflows the line,
1653    a newline should be inserted here rather than when it hits the end. 
1654    If INDENT is non-null, it is a string to be printed to indent the
1655    wrapped part on the next line.  INDENT must remain accessible until
1656    the next call to wrap_here() or until a newline is printed through
1657    fputs_filtered().
1658
1659    If the line is already overfull, we immediately print a newline and
1660    the indentation, and disable further wrapping.
1661
1662    If we don't know the width of lines, but we know the page height,
1663    we must not wrap words, but should still keep track of newlines
1664    that were explicitly printed.
1665
1666    INDENT should not contain tabs, as that will mess up the char count
1667    on the next line.  FIXME.
1668
1669    This routine is guaranteed to force out any output which has been
1670    squirreled away in the wrap_buffer, so wrap_here ((char *)0) can be
1671    used to force out output from the wrap_buffer.  */
1672
1673 void
1674 wrap_here (char *indent)
1675 {
1676   /* This should have been allocated, but be paranoid anyway. */
1677   if (!wrap_buffer)
1678     internal_error (__FILE__, __LINE__, "failed internal consistency check");
1679
1680   if (wrap_buffer[0])
1681     {
1682       *wrap_pointer = '\0';
1683       fputs_unfiltered (wrap_buffer, gdb_stdout);
1684     }
1685   wrap_pointer = wrap_buffer;
1686   wrap_buffer[0] = '\0';
1687   if (chars_per_line == UINT_MAX)       /* No line overflow checking */
1688     {
1689       wrap_column = 0;
1690     }
1691   else if (chars_printed >= chars_per_line)
1692     {
1693       puts_filtered ("\n");
1694       if (indent != NULL)
1695         puts_filtered (indent);
1696       wrap_column = 0;
1697     }
1698   else
1699     {
1700       wrap_column = chars_printed;
1701       if (indent == NULL)
1702         wrap_indent = "";
1703       else
1704         wrap_indent = indent;
1705     }
1706 }
1707
1708 /* Ensure that whatever gets printed next, using the filtered output
1709    commands, starts at the beginning of the line.  I.E. if there is
1710    any pending output for the current line, flush it and start a new
1711    line.  Otherwise do nothing. */
1712
1713 void
1714 begin_line (void)
1715 {
1716   if (chars_printed > 0)
1717     {
1718       puts_filtered ("\n");
1719     }
1720 }
1721
1722
1723 /* Like fputs but if FILTER is true, pause after every screenful.
1724
1725    Regardless of FILTER can wrap at points other than the final
1726    character of a line.
1727
1728    Unlike fputs, fputs_maybe_filtered does not return a value.
1729    It is OK for LINEBUFFER to be NULL, in which case just don't print
1730    anything.
1731
1732    Note that a longjmp to top level may occur in this routine (only if
1733    FILTER is true) (since prompt_for_continue may do so) so this
1734    routine should not be called when cleanups are not in place.  */
1735
1736 static void
1737 fputs_maybe_filtered (const char *linebuffer, struct ui_file *stream,
1738                       int filter)
1739 {
1740   const char *lineptr;
1741
1742   if (linebuffer == 0)
1743     return;
1744
1745   /* Don't do any filtering if it is disabled.  */
1746   if ((stream != gdb_stdout) || !pagination_enabled
1747       || (lines_per_page == UINT_MAX && chars_per_line == UINT_MAX))
1748     {
1749       fputs_unfiltered (linebuffer, stream);
1750       return;
1751     }
1752
1753   /* Go through and output each character.  Show line extension
1754      when this is necessary; prompt user for new page when this is
1755      necessary.  */
1756
1757   lineptr = linebuffer;
1758   while (*lineptr)
1759     {
1760       /* Possible new page.  */
1761       if (filter &&
1762           (lines_printed >= lines_per_page - 1))
1763         prompt_for_continue ();
1764
1765       while (*lineptr && *lineptr != '\n')
1766         {
1767           /* Print a single line.  */
1768           if (*lineptr == '\t')
1769             {
1770               if (wrap_column)
1771                 *wrap_pointer++ = '\t';
1772               else
1773                 fputc_unfiltered ('\t', stream);
1774               /* Shifting right by 3 produces the number of tab stops
1775                  we have already passed, and then adding one and
1776                  shifting left 3 advances to the next tab stop.  */
1777               chars_printed = ((chars_printed >> 3) + 1) << 3;
1778               lineptr++;
1779             }
1780           else
1781             {
1782               if (wrap_column)
1783                 *wrap_pointer++ = *lineptr;
1784               else
1785                 fputc_unfiltered (*lineptr, stream);
1786               chars_printed++;
1787               lineptr++;
1788             }
1789
1790           if (chars_printed >= chars_per_line)
1791             {
1792               unsigned int save_chars = chars_printed;
1793
1794               chars_printed = 0;
1795               lines_printed++;
1796               /* If we aren't actually wrapping, don't output newline --
1797                  if chars_per_line is right, we probably just overflowed
1798                  anyway; if it's wrong, let us keep going.  */
1799               if (wrap_column)
1800                 fputc_unfiltered ('\n', stream);
1801
1802               /* Possible new page.  */
1803               if (lines_printed >= lines_per_page - 1)
1804                 prompt_for_continue ();
1805
1806               /* Now output indentation and wrapped string */
1807               if (wrap_column)
1808                 {
1809                   fputs_unfiltered (wrap_indent, stream);
1810                   *wrap_pointer = '\0';         /* Null-terminate saved stuff */
1811                   fputs_unfiltered (wrap_buffer, stream);       /* and eject it */
1812                   /* FIXME, this strlen is what prevents wrap_indent from
1813                      containing tabs.  However, if we recurse to print it
1814                      and count its chars, we risk trouble if wrap_indent is
1815                      longer than (the user settable) chars_per_line. 
1816                      Note also that this can set chars_printed > chars_per_line
1817                      if we are printing a long string.  */
1818                   chars_printed = strlen (wrap_indent)
1819                     + (save_chars - wrap_column);
1820                   wrap_pointer = wrap_buffer;   /* Reset buffer */
1821                   wrap_buffer[0] = '\0';
1822                   wrap_column = 0;      /* And disable fancy wrap */
1823                 }
1824             }
1825         }
1826
1827       if (*lineptr == '\n')
1828         {
1829           chars_printed = 0;
1830           wrap_here ((char *) 0);       /* Spit out chars, cancel further wraps */
1831           lines_printed++;
1832           fputc_unfiltered ('\n', stream);
1833           lineptr++;
1834         }
1835     }
1836 }
1837
1838 void
1839 fputs_filtered (const char *linebuffer, struct ui_file *stream)
1840 {
1841   fputs_maybe_filtered (linebuffer, stream, 1);
1842 }
1843
1844 int
1845 putchar_unfiltered (int c)
1846 {
1847   char buf = c;
1848   ui_file_write (gdb_stdout, &buf, 1);
1849   return c;
1850 }
1851
1852 /* Write character C to gdb_stdout using GDB's paging mechanism and return C.
1853    May return nonlocally.  */
1854
1855 int
1856 putchar_filtered (int c)
1857 {
1858   return fputc_filtered (c, gdb_stdout);
1859 }
1860
1861 int
1862 fputc_unfiltered (int c, struct ui_file *stream)
1863 {
1864   char buf = c;
1865   ui_file_write (stream, &buf, 1);
1866   return c;
1867 }
1868
1869 int
1870 fputc_filtered (int c, struct ui_file *stream)
1871 {
1872   char buf[2];
1873
1874   buf[0] = c;
1875   buf[1] = 0;
1876   fputs_filtered (buf, stream);
1877   return c;
1878 }
1879
1880 /* puts_debug is like fputs_unfiltered, except it prints special
1881    characters in printable fashion.  */
1882
1883 void
1884 puts_debug (char *prefix, char *string, char *suffix)
1885 {
1886   int ch;
1887
1888   /* Print prefix and suffix after each line.  */
1889   static int new_line = 1;
1890   static int return_p = 0;
1891   static char *prev_prefix = "";
1892   static char *prev_suffix = "";
1893
1894   if (*string == '\n')
1895     return_p = 0;
1896
1897   /* If the prefix is changing, print the previous suffix, a new line,
1898      and the new prefix.  */
1899   if ((return_p || (strcmp (prev_prefix, prefix) != 0)) && !new_line)
1900     {
1901       fputs_unfiltered (prev_suffix, gdb_stdlog);
1902       fputs_unfiltered ("\n", gdb_stdlog);
1903       fputs_unfiltered (prefix, gdb_stdlog);
1904     }
1905
1906   /* Print prefix if we printed a newline during the previous call.  */
1907   if (new_line)
1908     {
1909       new_line = 0;
1910       fputs_unfiltered (prefix, gdb_stdlog);
1911     }
1912
1913   prev_prefix = prefix;
1914   prev_suffix = suffix;
1915
1916   /* Output characters in a printable format.  */
1917   while ((ch = *string++) != '\0')
1918     {
1919       switch (ch)
1920         {
1921         default:
1922           if (isprint (ch))
1923             fputc_unfiltered (ch, gdb_stdlog);
1924
1925           else
1926             fprintf_unfiltered (gdb_stdlog, "\\x%02x", ch & 0xff);
1927           break;
1928
1929         case '\\':
1930           fputs_unfiltered ("\\\\", gdb_stdlog);
1931           break;
1932         case '\b':
1933           fputs_unfiltered ("\\b", gdb_stdlog);
1934           break;
1935         case '\f':
1936           fputs_unfiltered ("\\f", gdb_stdlog);
1937           break;
1938         case '\n':
1939           new_line = 1;
1940           fputs_unfiltered ("\\n", gdb_stdlog);
1941           break;
1942         case '\r':
1943           fputs_unfiltered ("\\r", gdb_stdlog);
1944           break;
1945         case '\t':
1946           fputs_unfiltered ("\\t", gdb_stdlog);
1947           break;
1948         case '\v':
1949           fputs_unfiltered ("\\v", gdb_stdlog);
1950           break;
1951         }
1952
1953       return_p = ch == '\r';
1954     }
1955
1956   /* Print suffix if we printed a newline.  */
1957   if (new_line)
1958     {
1959       fputs_unfiltered (suffix, gdb_stdlog);
1960       fputs_unfiltered ("\n", gdb_stdlog);
1961     }
1962 }
1963
1964
1965 /* Print a variable number of ARGS using format FORMAT.  If this
1966    information is going to put the amount written (since the last call
1967    to REINITIALIZE_MORE_FILTER or the last page break) over the page size,
1968    call prompt_for_continue to get the users permision to continue.
1969
1970    Unlike fprintf, this function does not return a value.
1971
1972    We implement three variants, vfprintf (takes a vararg list and stream),
1973    fprintf (takes a stream to write on), and printf (the usual).
1974
1975    Note also that a longjmp to top level may occur in this routine
1976    (since prompt_for_continue may do so) so this routine should not be
1977    called when cleanups are not in place.  */
1978
1979 static void
1980 vfprintf_maybe_filtered (struct ui_file *stream, const char *format,
1981                          va_list args, int filter)
1982 {
1983   char *linebuffer;
1984   struct cleanup *old_cleanups;
1985
1986   xvasprintf (&linebuffer, format, args);
1987   old_cleanups = make_cleanup (xfree, linebuffer);
1988   fputs_maybe_filtered (linebuffer, stream, filter);
1989   do_cleanups (old_cleanups);
1990 }
1991
1992
1993 void
1994 vfprintf_filtered (struct ui_file *stream, const char *format, va_list args)
1995 {
1996   vfprintf_maybe_filtered (stream, format, args, 1);
1997 }
1998
1999 void
2000 vfprintf_unfiltered (struct ui_file *stream, const char *format, va_list args)
2001 {
2002   char *linebuffer;
2003   struct cleanup *old_cleanups;
2004
2005   xvasprintf (&linebuffer, format, args);
2006   old_cleanups = make_cleanup (xfree, linebuffer);
2007   fputs_unfiltered (linebuffer, stream);
2008   do_cleanups (old_cleanups);
2009 }
2010
2011 void
2012 vprintf_filtered (const char *format, va_list args)
2013 {
2014   vfprintf_maybe_filtered (gdb_stdout, format, args, 1);
2015 }
2016
2017 void
2018 vprintf_unfiltered (const char *format, va_list args)
2019 {
2020   vfprintf_unfiltered (gdb_stdout, format, args);
2021 }
2022
2023 void
2024 fprintf_filtered (struct ui_file * stream, const char *format,...)
2025 {
2026   va_list args;
2027   va_start (args, format);
2028   vfprintf_filtered (stream, format, args);
2029   va_end (args);
2030 }
2031
2032 void
2033 fprintf_unfiltered (struct ui_file * stream, const char *format,...)
2034 {
2035   va_list args;
2036   va_start (args, format);
2037   vfprintf_unfiltered (stream, format, args);
2038   va_end (args);
2039 }
2040
2041 /* Like fprintf_filtered, but prints its result indented.
2042    Called as fprintfi_filtered (spaces, stream, format, ...);  */
2043
2044 void
2045 fprintfi_filtered (int spaces, struct ui_file * stream, const char *format,...)
2046 {
2047   va_list args;
2048   va_start (args, format);
2049   print_spaces_filtered (spaces, stream);
2050
2051   vfprintf_filtered (stream, format, args);
2052   va_end (args);
2053 }
2054
2055
2056 void
2057 printf_filtered (const char *format,...)
2058 {
2059   va_list args;
2060   va_start (args, format);
2061   vfprintf_filtered (gdb_stdout, format, args);
2062   va_end (args);
2063 }
2064
2065
2066 void
2067 printf_unfiltered (const char *format,...)
2068 {
2069   va_list args;
2070   va_start (args, format);
2071   vfprintf_unfiltered (gdb_stdout, format, args);
2072   va_end (args);
2073 }
2074
2075 /* Like printf_filtered, but prints it's result indented.
2076    Called as printfi_filtered (spaces, format, ...);  */
2077
2078 void
2079 printfi_filtered (int spaces, const char *format,...)
2080 {
2081   va_list args;
2082   va_start (args, format);
2083   print_spaces_filtered (spaces, gdb_stdout);
2084   vfprintf_filtered (gdb_stdout, format, args);
2085   va_end (args);
2086 }
2087
2088 /* Easy -- but watch out!
2089
2090    This routine is *not* a replacement for puts()!  puts() appends a newline.
2091    This one doesn't, and had better not!  */
2092
2093 void
2094 puts_filtered (const char *string)
2095 {
2096   fputs_filtered (string, gdb_stdout);
2097 }
2098
2099 void
2100 puts_unfiltered (const char *string)
2101 {
2102   fputs_unfiltered (string, gdb_stdout);
2103 }
2104
2105 /* Return a pointer to N spaces and a null.  The pointer is good
2106    until the next call to here.  */
2107 char *
2108 n_spaces (int n)
2109 {
2110   char *t;
2111   static char *spaces = 0;
2112   static int max_spaces = -1;
2113
2114   if (n > max_spaces)
2115     {
2116       if (spaces)
2117         xfree (spaces);
2118       spaces = (char *) xmalloc (n + 1);
2119       for (t = spaces + n; t != spaces;)
2120         *--t = ' ';
2121       spaces[n] = '\0';
2122       max_spaces = n;
2123     }
2124
2125   return spaces + max_spaces - n;
2126 }
2127
2128 /* Print N spaces.  */
2129 void
2130 print_spaces_filtered (int n, struct ui_file *stream)
2131 {
2132   fputs_filtered (n_spaces (n), stream);
2133 }
2134 \f
2135 /* C++ demangler stuff.  */
2136
2137 /* fprintf_symbol_filtered attempts to demangle NAME, a symbol in language
2138    LANG, using demangling args ARG_MODE, and print it filtered to STREAM.
2139    If the name is not mangled, or the language for the name is unknown, or
2140    demangling is off, the name is printed in its "raw" form. */
2141
2142 void
2143 fprintf_symbol_filtered (struct ui_file *stream, char *name, enum language lang,
2144                          int arg_mode)
2145 {
2146   char *demangled;
2147
2148   if (name != NULL)
2149     {
2150       /* If user wants to see raw output, no problem.  */
2151       if (!demangle)
2152         {
2153           fputs_filtered (name, stream);
2154         }
2155       else
2156         {
2157           switch (lang)
2158             {
2159             case language_cplus:
2160               demangled = cplus_demangle (name, arg_mode);
2161               break;
2162             case language_java:
2163               demangled = cplus_demangle (name, arg_mode | DMGL_JAVA);
2164               break;
2165             case language_chill:
2166               demangled = chill_demangle (name);
2167               break;
2168             default:
2169               demangled = NULL;
2170               break;
2171             }
2172           fputs_filtered (demangled ? demangled : name, stream);
2173           if (demangled != NULL)
2174             {
2175               xfree (demangled);
2176             }
2177         }
2178     }
2179 }
2180
2181 /* Do a strcmp() type operation on STRING1 and STRING2, ignoring any
2182    differences in whitespace.  Returns 0 if they match, non-zero if they
2183    don't (slightly different than strcmp()'s range of return values).
2184
2185    As an extra hack, string1=="FOO(ARGS)" matches string2=="FOO".
2186    This "feature" is useful when searching for matching C++ function names
2187    (such as if the user types 'break FOO', where FOO is a mangled C++
2188    function). */
2189
2190 int
2191 strcmp_iw (const char *string1, const char *string2)
2192 {
2193   while ((*string1 != '\0') && (*string2 != '\0'))
2194     {
2195       while (isspace (*string1))
2196         {
2197           string1++;
2198         }
2199       while (isspace (*string2))
2200         {
2201           string2++;
2202         }
2203       if (*string1 != *string2)
2204         {
2205           break;
2206         }
2207       if (*string1 != '\0')
2208         {
2209           string1++;
2210           string2++;
2211         }
2212     }
2213   return (*string1 != '\0' && *string1 != '(') || (*string2 != '\0');
2214 }
2215 \f
2216
2217 /*
2218    ** subset_compare()
2219    **    Answer whether string_to_compare is a full or partial match to
2220    **    template_string.  The partial match must be in sequence starting
2221    **    at index 0.
2222  */
2223 int
2224 subset_compare (char *string_to_compare, char *template_string)
2225 {
2226   int match;
2227   if (template_string != (char *) NULL && string_to_compare != (char *) NULL &&
2228       strlen (string_to_compare) <= strlen (template_string))
2229     match = (strncmp (template_string,
2230                       string_to_compare,
2231                       strlen (string_to_compare)) == 0);
2232   else
2233     match = 0;
2234   return match;
2235 }
2236
2237
2238 static void pagination_on_command (char *arg, int from_tty);
2239 static void
2240 pagination_on_command (char *arg, int from_tty)
2241 {
2242   pagination_enabled = 1;
2243 }
2244
2245 static void pagination_on_command (char *arg, int from_tty);
2246 static void
2247 pagination_off_command (char *arg, int from_tty)
2248 {
2249   pagination_enabled = 0;
2250 }
2251 \f
2252
2253 void
2254 initialize_utils (void)
2255 {
2256   struct cmd_list_element *c;
2257
2258   c = add_set_cmd ("width", class_support, var_uinteger,
2259                    (char *) &chars_per_line,
2260                    "Set number of characters gdb thinks are in a line.",
2261                    &setlist);
2262   add_show_from_set (c, &showlist);
2263   c->function.sfunc = set_width_command;
2264
2265   add_show_from_set
2266     (add_set_cmd ("height", class_support,
2267                   var_uinteger, (char *) &lines_per_page,
2268                   "Set number of lines gdb thinks are in a page.", &setlist),
2269      &showlist);
2270
2271   init_page_info ();
2272
2273   /* If the output is not a terminal, don't paginate it.  */
2274   if (!ui_file_isatty (gdb_stdout))
2275     lines_per_page = UINT_MAX;
2276
2277   set_width_command ((char *) NULL, 0, c);
2278
2279   add_show_from_set
2280     (add_set_cmd ("demangle", class_support, var_boolean,
2281                   (char *) &demangle,
2282              "Set demangling of encoded C++ names when displaying symbols.",
2283                   &setprintlist),
2284      &showprintlist);
2285
2286   add_show_from_set
2287     (add_set_cmd ("pagination", class_support,
2288                   var_boolean, (char *) &pagination_enabled,
2289                   "Set state of pagination.", &setlist),
2290      &showlist);
2291
2292   if (xdb_commands)
2293     {
2294       add_com ("am", class_support, pagination_on_command,
2295                "Enable pagination");
2296       add_com ("sm", class_support, pagination_off_command,
2297                "Disable pagination");
2298     }
2299
2300   add_show_from_set
2301     (add_set_cmd ("sevenbit-strings", class_support, var_boolean,
2302                   (char *) &sevenbit_strings,
2303                   "Set printing of 8-bit characters in strings as \\nnn.",
2304                   &setprintlist),
2305      &showprintlist);
2306
2307   add_show_from_set
2308     (add_set_cmd ("asm-demangle", class_support, var_boolean,
2309                   (char *) &asm_demangle,
2310                   "Set demangling of C++ names in disassembly listings.",
2311                   &setprintlist),
2312      &showprintlist);
2313 }
2314
2315 /* Machine specific function to handle SIGWINCH signal. */
2316
2317 #ifdef  SIGWINCH_HANDLER_BODY
2318 SIGWINCH_HANDLER_BODY
2319 #endif
2320
2321 /* print routines to handle variable size regs, etc. */
2322
2323 /* temporary storage using circular buffer */
2324 #define NUMCELLS 16
2325 #define CELLSIZE 32
2326 static char *
2327 get_cell (void)
2328 {
2329   static char buf[NUMCELLS][CELLSIZE];
2330   static int cell = 0;
2331   if (++cell >= NUMCELLS)
2332     cell = 0;
2333   return buf[cell];
2334 }
2335
2336 int
2337 strlen_paddr (void)
2338 {
2339   return (TARGET_ADDR_BIT / 8 * 2);
2340 }
2341
2342 char *
2343 paddr (CORE_ADDR addr)
2344 {
2345   return phex (addr, TARGET_ADDR_BIT / 8);
2346 }
2347
2348 char *
2349 paddr_nz (CORE_ADDR addr)
2350 {
2351   return phex_nz (addr, TARGET_ADDR_BIT / 8);
2352 }
2353
2354 static void
2355 decimal2str (char *paddr_str, char *sign, ULONGEST addr)
2356 {
2357   /* steal code from valprint.c:print_decimal().  Should this worry
2358      about the real size of addr as the above does? */
2359   unsigned long temp[3];
2360   int i = 0;
2361   do
2362     {
2363       temp[i] = addr % (1000 * 1000 * 1000);
2364       addr /= (1000 * 1000 * 1000);
2365       i++;
2366     }
2367   while (addr != 0 && i < (sizeof (temp) / sizeof (temp[0])));
2368   switch (i)
2369     {
2370     case 1:
2371       sprintf (paddr_str, "%s%lu",
2372                sign, temp[0]);
2373       break;
2374     case 2:
2375       sprintf (paddr_str, "%s%lu%09lu",
2376                sign, temp[1], temp[0]);
2377       break;
2378     case 3:
2379       sprintf (paddr_str, "%s%lu%09lu%09lu",
2380                sign, temp[2], temp[1], temp[0]);
2381       break;
2382     default:
2383       internal_error (__FILE__, __LINE__, "failed internal consistency check");
2384     }
2385 }
2386
2387 char *
2388 paddr_u (CORE_ADDR addr)
2389 {
2390   char *paddr_str = get_cell ();
2391   decimal2str (paddr_str, "", addr);
2392   return paddr_str;
2393 }
2394
2395 char *
2396 paddr_d (LONGEST addr)
2397 {
2398   char *paddr_str = get_cell ();
2399   if (addr < 0)
2400     decimal2str (paddr_str, "-", -addr);
2401   else
2402     decimal2str (paddr_str, "", addr);
2403   return paddr_str;
2404 }
2405
2406 /* eliminate warning from compiler on 32-bit systems */
2407 static int thirty_two = 32;
2408
2409 char *
2410 phex (ULONGEST l, int sizeof_l)
2411 {
2412   char *str;
2413   switch (sizeof_l)
2414     {
2415     case 8:
2416       str = get_cell ();
2417       sprintf (str, "%08lx%08lx",
2418                (unsigned long) (l >> thirty_two),
2419                (unsigned long) (l & 0xffffffff));
2420       break;
2421     case 4:
2422       str = get_cell ();
2423       sprintf (str, "%08lx", (unsigned long) l);
2424       break;
2425     case 2:
2426       str = get_cell ();
2427       sprintf (str, "%04x", (unsigned short) (l & 0xffff));
2428       break;
2429     default:
2430       str = phex (l, sizeof (l));
2431       break;
2432     }
2433   return str;
2434 }
2435
2436 char *
2437 phex_nz (ULONGEST l, int sizeof_l)
2438 {
2439   char *str;
2440   switch (sizeof_l)
2441     {
2442     case 8:
2443       {
2444         unsigned long high = (unsigned long) (l >> thirty_two);
2445         str = get_cell ();
2446         if (high == 0)
2447           sprintf (str, "%lx", (unsigned long) (l & 0xffffffff));
2448         else
2449           sprintf (str, "%lx%08lx",
2450                    high, (unsigned long) (l & 0xffffffff));
2451         break;
2452       }
2453     case 4:
2454       str = get_cell ();
2455       sprintf (str, "%lx", (unsigned long) l);
2456       break;
2457     case 2:
2458       str = get_cell ();
2459       sprintf (str, "%x", (unsigned short) (l & 0xffff));
2460       break;
2461     default:
2462       str = phex_nz (l, sizeof (l));
2463       break;
2464     }
2465   return str;
2466 }
2467
2468
2469 /* Convert to / from the hosts pointer to GDB's internal CORE_ADDR
2470    using the target's conversion routines. */
2471 CORE_ADDR
2472 host_pointer_to_address (void *ptr)
2473 {
2474   if (sizeof (ptr) != TYPE_LENGTH (builtin_type_void_data_ptr))
2475     internal_error (__FILE__, __LINE__,
2476                     "core_addr_to_void_ptr: bad cast");
2477   return POINTER_TO_ADDRESS (builtin_type_void_data_ptr, &ptr);
2478 }
2479
2480 void *
2481 address_to_host_pointer (CORE_ADDR addr)
2482 {
2483   void *ptr;
2484   if (sizeof (ptr) != TYPE_LENGTH (builtin_type_void_data_ptr))
2485     internal_error (__FILE__, __LINE__,
2486                     "core_addr_to_void_ptr: bad cast");
2487   ADDRESS_TO_POINTER (builtin_type_void_data_ptr, &ptr, addr);
2488   return ptr;
2489 }
2490
2491 /* Convert a CORE_ADDR into a string.  */
2492 const char *
2493 core_addr_to_string (const CORE_ADDR addr)
2494 {
2495   char *str = get_cell ();
2496   strcpy (str, "0x");
2497   strcat (str, phex_nz (addr, sizeof (addr)));
2498   return str;
2499 }
2500
2501 /* Convert a string back into a CORE_ADDR.  */
2502 CORE_ADDR
2503 string_to_core_addr (const char *my_string)
2504 {
2505   CORE_ADDR addr = 0;
2506   if (my_string[0] == '0' && tolower (my_string[1]) == 'x')
2507     {
2508       /* Assume that it is in decimal.  */
2509       int i;
2510       for (i = 2; my_string[i] != '\0'; i++)
2511         {
2512           if (isdigit (my_string[i]))
2513             addr = (my_string[i] - '0') + (addr * 16);
2514           else if (isxdigit (my_string[i])) 
2515             addr = (tolower (my_string[i]) - 'a' + 0xa) + (addr * 16);
2516           else
2517             internal_error (__FILE__, __LINE__, "invalid hex");
2518         }
2519     }
2520   else
2521     {
2522       /* Assume that it is in decimal.  */
2523       int i;
2524       for (i = 0; my_string[i] != '\0'; i++)
2525         {
2526           if (isdigit (my_string[i]))
2527             addr = (my_string[i] - '0') + (addr * 10);
2528           else
2529             internal_error (__FILE__, __LINE__, "invalid decimal");
2530         }
2531     }
2532   return addr;
2533 }
2534
2535 char *
2536 gdb_realpath (const char *filename)
2537 {
2538 #ifdef HAVE_REALPATH
2539 #if defined (PATH_MAX)
2540   char buf[PATH_MAX];
2541 #elif defined (MAXPATHLEN)
2542   char buf[MAXPATHLEN];
2543 #else
2544 #error "Neither PATH_MAX nor MAXPATHLEN defined"
2545 #endif
2546   char *rp = realpath (filename, buf);
2547   return xstrdup (rp ? rp : filename);
2548 #else
2549   return xstrdup (filename);
2550 #endif
2551 }