Thu Sep 28 14:32:11 1995 steve chamberlain <sac@slash.cygnus.com>
[platform/upstream/binutils.git] / gdb / utils.c
1 /* General utility routines for GDB, the GNU debugger.
2    Copyright 1986, 1989, 1990, 1991, 1992, 1995 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
19
20 #include "defs.h"
21 #if !defined(__GO32__) && !defined(WIN32)
22 #include <sys/ioctl.h>
23 #include <sys/param.h>
24 #include <pwd.h>
25 #endif
26 #ifdef ANSI_PROTOTYPES
27 #include <stdarg.h>
28 #else
29 #include <varargs.h>
30 #endif
31 #include <ctype.h>
32 #include "gdb_string.h"
33 #ifdef HAVE_UNISTD_H
34 #include <unistd.h>
35 #endif
36
37 #include "signals.h"
38 #include "gdbcmd.h"
39 #include "serial.h"
40 #include "bfd.h"
41 #include "target.h"
42 #include "demangle.h"
43 #include "expression.h"
44 #include "language.h"
45 #include "annotate.h"
46
47 #include "readline.h"
48
49 /* readline defines this.  */
50 #undef savestring
51
52 /* Prototypes for local functions */
53
54 #if defined (NO_MMALLOC) || defined (NO_MMALLOC_CHECK)
55 #else
56
57 static void
58 malloc_botch PARAMS ((void));
59
60 #endif /* NO_MMALLOC, etc */
61
62 static void
63 fatal_dump_core PARAMS((char *, ...));
64
65 static void
66 prompt_for_continue PARAMS ((void));
67
68 static void 
69 set_width_command PARAMS ((char *, int, struct cmd_list_element *));
70
71 /* If this definition isn't overridden by the header files, assume
72    that isatty and fileno exist on this system.  */
73 #ifndef ISATTY
74 #define ISATTY(FP)      (isatty (fileno (FP)))
75 #endif
76
77 /* Chain of cleanup actions established with make_cleanup,
78    to be executed if an error happens.  */
79
80 static struct cleanup *cleanup_chain;
81
82 /* Nonzero if we have job control. */
83
84 int job_control;
85
86 /* Nonzero means a quit has been requested.  */
87
88 int quit_flag;
89
90 /* Nonzero means quit immediately if Control-C is typed now, rather
91    than waiting until QUIT is executed.  Be careful in setting this;
92    code which executes with immediate_quit set has to be very careful
93    about being able to deal with being interrupted at any time.  It is
94    almost always better to use QUIT; the only exception I can think of
95    is being able to quit out of a system call (using EINTR loses if
96    the SIGINT happens between the previous QUIT and the system call).
97    To immediately quit in the case in which a SIGINT happens between
98    the previous QUIT and setting immediate_quit (desirable anytime we
99    expect to block), call QUIT after setting immediate_quit.  */
100
101 int immediate_quit;
102
103 /* Nonzero means that encoded C++ names should be printed out in their
104    C++ form rather than raw.  */
105
106 int demangle = 1;
107
108 /* Nonzero means that encoded C++ names should be printed out in their
109    C++ form even in assembler language displays.  If this is set, but
110    DEMANGLE is zero, names are printed raw, i.e. DEMANGLE controls.  */
111
112 int asm_demangle = 0;
113
114 /* Nonzero means that strings with character values >0x7F should be printed
115    as octal escapes.  Zero means just print the value (e.g. it's an
116    international character, and the terminal or window can cope.)  */
117
118 int sevenbit_strings = 0;
119
120 /* String to be printed before error messages, if any.  */
121
122 char *error_pre_print;
123
124 /* String to be printed before quit messages, if any.  */
125
126 char *quit_pre_print;
127
128 /* String to be printed before warning messages, if any.  */
129
130 char *warning_pre_print = "\nwarning: ";
131 \f
132 /* Add a new cleanup to the cleanup_chain,
133    and return the previous chain pointer
134    to be passed later to do_cleanups or discard_cleanups.
135    Args are FUNCTION to clean up with, and ARG to pass to it.  */
136
137 struct cleanup *
138 make_cleanup (function, arg)
139      void (*function) PARAMS ((PTR));
140      PTR arg;
141 {
142   register struct cleanup *new
143     = (struct cleanup *) xmalloc (sizeof (struct cleanup));
144   register struct cleanup *old_chain = cleanup_chain;
145
146   new->next = cleanup_chain;
147   new->function = function;
148   new->arg = arg;
149   cleanup_chain = new;
150
151   return old_chain;
152 }
153
154 /* Discard cleanups and do the actions they describe
155    until we get back to the point OLD_CHAIN in the cleanup_chain.  */
156
157 void
158 do_cleanups (old_chain)
159      register struct cleanup *old_chain;
160 {
161   register struct cleanup *ptr;
162   while ((ptr = cleanup_chain) != old_chain)
163     {
164       cleanup_chain = ptr->next;        /* Do this first incase recursion */
165       (*ptr->function) (ptr->arg);
166       free (ptr);
167     }
168 }
169
170 /* Discard cleanups, not doing the actions they describe,
171    until we get back to the point OLD_CHAIN in the cleanup_chain.  */
172
173 void
174 discard_cleanups (old_chain)
175      register struct cleanup *old_chain;
176 {
177   register struct cleanup *ptr;
178   while ((ptr = cleanup_chain) != old_chain)
179     {
180       cleanup_chain = ptr->next;
181       free ((PTR)ptr);
182     }
183 }
184
185 /* Set the cleanup_chain to 0, and return the old cleanup chain.  */
186 struct cleanup *
187 save_cleanups ()
188 {
189   struct cleanup *old_chain = cleanup_chain;
190
191   cleanup_chain = 0;
192   return old_chain;
193 }
194
195 /* Restore the cleanup chain from a previously saved chain.  */
196 void
197 restore_cleanups (chain)
198      struct cleanup *chain;
199 {
200   cleanup_chain = chain;
201 }
202
203 /* This function is useful for cleanups.
204    Do
205
206      foo = xmalloc (...);
207      old_chain = make_cleanup (free_current_contents, &foo);
208
209    to arrange to free the object thus allocated.  */
210
211 void
212 free_current_contents (location)
213      char **location;
214 {
215   free (*location);
216 }
217
218 /* Provide a known function that does nothing, to use as a base for
219    for a possibly long chain of cleanups.  This is useful where we
220    use the cleanup chain for handling normal cleanups as well as dealing
221    with cleanups that need to be done as a result of a call to error().
222    In such cases, we may not be certain where the first cleanup is, unless
223    we have a do-nothing one to always use as the base. */
224
225 /* ARGSUSED */
226 void
227 null_cleanup (arg)
228     char **arg;
229 {
230 }
231
232 \f
233 /* Print a warning message.  Way to use this is to call warning_begin,
234    output the warning message (use unfiltered output to gdb_stderr),
235    ending in a newline.  There is not currently a warning_end that you
236    call afterwards, but such a thing might be added if it is useful
237    for a GUI to separate warning messages from other output.
238
239    FIXME: Why do warnings use unfiltered output and errors filtered?
240    Is this anything other than a historical accident?  */
241
242 void
243 warning_begin ()
244 {
245   target_terminal_ours ();
246   wrap_here("");                        /* Force out any buffered output */
247   gdb_flush (gdb_stdout);
248   if (warning_pre_print)
249     fprintf_unfiltered (gdb_stderr, warning_pre_print);
250 }
251
252 /* Print a warning message.
253    The first argument STRING is the warning message, used as a fprintf string,
254    and the remaining args are passed as arguments to it.
255    The primary difference between warnings and errors is that a warning
256    does not force the return to command level.  */
257
258 /* VARARGS */
259 void
260 #ifdef ANSI_PROTOTYPES
261 warning (char *string, ...)
262 #else
263 warning (va_alist)
264      va_dcl
265 #endif
266 {
267   va_list args;
268 #ifdef ANSI_PROTOTYPES
269   va_start (args, string);
270 #else
271   char *string;
272
273   va_start (args);
274   string = va_arg (args, char *);
275 #endif
276   warning_begin ();
277   vfprintf_unfiltered (gdb_stderr, string, args);
278   fprintf_unfiltered (gdb_stderr, "\n");
279   va_end (args);
280 }
281
282 /* Start the printing of an error message.  Way to use this is to call
283    this, output the error message (use filtered output to gdb_stderr
284    (FIXME: Some callers, like memory_error, use gdb_stdout)), ending
285    in a newline, and then call return_to_top_level (RETURN_ERROR).
286    error() provides a convenient way to do this for the special case
287    that the error message can be formatted with a single printf call,
288    but this is more general.  */
289 void
290 error_begin ()
291 {
292   target_terminal_ours ();
293   wrap_here ("");                       /* Force out any buffered output */
294   gdb_flush (gdb_stdout);
295
296   annotate_error_begin ();
297
298   if (error_pre_print)
299     fprintf_filtered (gdb_stderr, error_pre_print);
300 }
301
302 /* Print an error message and return to command level.
303    The first argument STRING is the error message, used as a fprintf string,
304    and the remaining args are passed as arguments to it.  */
305
306 #ifdef ANSI_PROTOTYPES
307 NORETURN void
308 error (char *string, ...)
309 #else
310 void
311 error (va_alist)
312      va_dcl
313 #endif
314 {
315   va_list args;
316 #ifdef ANSI_PROTOTYPES
317   va_start (args, string);
318 #else
319   va_start (args);
320 #endif
321   if (error_hook)
322     (*error_hook) ();
323   else 
324     {
325       error_begin ();
326 #ifdef ANSI_PROTOTYPES
327       vfprintf_filtered (gdb_stderr, string, args);
328 #else
329       {
330         char *string1;
331
332         string1 = va_arg (args, char *);
333         vfprintf_filtered (gdb_stderr, string1, args);
334       }
335 #endif
336       fprintf_filtered (gdb_stderr, "\n");
337       va_end (args);
338       return_to_top_level (RETURN_ERROR);
339     }
340 }
341
342
343 /* Print an error message and exit reporting failure.
344    This is for a error that we cannot continue from.
345    The arguments are printed a la printf.
346
347    This function cannot be declared volatile (NORETURN) in an
348    ANSI environment because exit() is not declared volatile. */
349
350 /* VARARGS */
351 NORETURN void
352 #ifdef ANSI_PROTOTYPES
353 fatal (char *string, ...)
354 #else
355 fatal (va_alist)
356      va_dcl
357 #endif
358 {
359   va_list args;
360 #ifdef ANSI_PROTOTYPES
361   va_start (args, string);
362 #else
363   char *string;
364   va_start (args);
365   string = va_arg (args, char *);
366 #endif
367   fprintf_unfiltered (gdb_stderr, "\ngdb: ");
368   vfprintf_unfiltered (gdb_stderr, string, args);
369   fprintf_unfiltered (gdb_stderr, "\n");
370   va_end (args);
371   exit (1);
372 }
373
374 /* Print an error message and exit, dumping core.
375    The arguments are printed a la printf ().  */
376
377 /* VARARGS */
378 static void
379 #ifdef ANSI_PROTOTYPES
380 fatal_dump_core (char *string, ...)
381 #else
382 fatal_dump_core (va_alist)
383      va_dcl
384 #endif
385 {
386   va_list args;
387 #ifdef ANSI_PROTOTYPES
388   va_start (args, string);
389 #else
390   char *string;
391
392   va_start (args);
393   string = va_arg (args, char *);
394 #endif
395   /* "internal error" is always correct, since GDB should never dump
396      core, no matter what the input.  */
397   fprintf_unfiltered (gdb_stderr, "\ngdb internal error: ");
398   vfprintf_unfiltered (gdb_stderr, string, args);
399   fprintf_unfiltered (gdb_stderr, "\n");
400   va_end (args);
401
402   signal (SIGQUIT, SIG_DFL);
403   kill (getpid (), SIGQUIT);
404   /* We should never get here, but just in case...  */
405   exit (1);
406 }
407
408 /* The strerror() function can return NULL for errno values that are
409    out of range.  Provide a "safe" version that always returns a
410    printable string. */
411
412 char *
413 safe_strerror (errnum)
414      int errnum;
415 {
416   char *msg;
417   static char buf[32];
418
419   if ((msg = strerror (errnum)) == NULL)
420     {
421       sprintf (buf, "(undocumented errno %d)", errnum);
422       msg = buf;
423     }
424   return (msg);
425 }
426
427 /* The strsignal() function can return NULL for signal values that are
428    out of range.  Provide a "safe" version that always returns a
429    printable string. */
430
431 char *
432 safe_strsignal (signo)
433      int signo;
434 {
435   char *msg;
436   static char buf[32];
437
438   if ((msg = strsignal (signo)) == NULL)
439     {
440       sprintf (buf, "(undocumented signal %d)", signo);
441       msg = buf;
442     }
443   return (msg);
444 }
445
446
447 /* Print the system error message for errno, and also mention STRING
448    as the file name for which the error was encountered.
449    Then return to command level.  */
450
451 void
452 perror_with_name (string)
453      char *string;
454 {
455   char *err;
456   char *combined;
457
458   err = safe_strerror (errno);
459   combined = (char *) alloca (strlen (err) + strlen (string) + 3);
460   strcpy (combined, string);
461   strcat (combined, ": ");
462   strcat (combined, err);
463
464   /* I understand setting these is a matter of taste.  Still, some people
465      may clear errno but not know about bfd_error.  Doing this here is not
466      unreasonable. */
467   bfd_set_error (bfd_error_no_error);
468   errno = 0;
469
470   error ("%s.", combined);
471 }
472
473 /* Print the system error message for ERRCODE, and also mention STRING
474    as the file name for which the error was encountered.  */
475
476 void
477 print_sys_errmsg (string, errcode)
478      char *string;
479      int errcode;
480 {
481   char *err;
482   char *combined;
483
484   err = safe_strerror (errcode);
485   combined = (char *) alloca (strlen (err) + strlen (string) + 3);
486   strcpy (combined, string);
487   strcat (combined, ": ");
488   strcat (combined, err);
489
490   /* We want anything which was printed on stdout to come out first, before
491      this message.  */
492   gdb_flush (gdb_stdout);
493   fprintf_unfiltered (gdb_stderr, "%s.\n", combined);
494 }
495
496 /* Control C eventually causes this to be called, at a convenient time.  */
497
498 void
499 quit ()
500 {
501   serial_t gdb_stdout_serial = serial_fdopen (1);
502
503   target_terminal_ours ();
504
505   /* We want all output to appear now, before we print "Quit".  We
506      have 3 levels of buffering we have to flush (it's possible that
507      some of these should be changed to flush the lower-level ones
508      too):  */
509
510   /* 1.  The _filtered buffer.  */
511   wrap_here ((char *)0);
512
513   /* 2.  The stdio buffer.  */
514   gdb_flush (gdb_stdout);
515   gdb_flush (gdb_stderr);
516
517   /* 3.  The system-level buffer.  */
518   SERIAL_FLUSH_OUTPUT (gdb_stdout_serial);
519   SERIAL_UN_FDOPEN (gdb_stdout_serial);
520
521   annotate_error_begin ();
522
523   /* Don't use *_filtered; we don't want to prompt the user to continue.  */
524   if (quit_pre_print)
525     fprintf_unfiltered (gdb_stderr, quit_pre_print);
526
527   if (job_control
528       /* If there is no terminal switching for this target, then we can't
529          possibly get screwed by the lack of job control.  */
530       || current_target.to_terminal_ours == NULL)
531     fprintf_unfiltered (gdb_stderr, "Quit\n");
532   else
533     fprintf_unfiltered (gdb_stderr,
534              "Quit (expect signal SIGINT when the program is resumed)\n");
535   return_to_top_level (RETURN_QUIT);
536 }
537
538
539 #if defined(__GO32__)||defined(WINGDB)
540
541 /* In the absence of signals, poll keyboard for a quit.
542    Called from #define QUIT pollquit() in xm-go32.h. */
543
544 void
545 pollquit()
546 {
547   if (kbhit ())
548     {
549       int k = getkey ();
550       if (k == 1) {
551         quit_flag = 1;
552         quit();
553       }
554       else if (k == 2) {
555         immediate_quit = 1;
556         quit ();
557       }
558       else 
559         {
560           /* We just ignore it */
561           fprintf_unfiltered (gdb_stderr, "CTRL-A to quit, CTRL-B to quit harder\n");
562         }
563     }
564 }
565
566
567 #endif
568 #if defined(__GO32__)||defined(WINGDB)
569 void notice_quit()
570 {
571   if (kbhit ())
572     {
573       int k = getkey ();
574       if (k == 1) {
575         quit_flag = 1;
576       }
577       else if (k == 2)
578         {
579           immediate_quit = 1;
580         }
581       else 
582         {
583           fprintf_unfiltered (gdb_stderr, "CTRL-A to quit, CTRL-B to quit harder\n");
584         }
585     }
586 }
587 #else
588 void notice_quit()
589 {
590   /* Done by signals */
591 }
592 #endif
593 /* Control C comes here */
594
595 void
596 request_quit (signo)
597      int signo;
598 {
599   quit_flag = 1;
600   /* Restore the signal handler.  Harmless with BSD-style signals, needed
601      for System V-style signals.  So just always do it, rather than worrying
602      about USG defines and stuff like that.  */
603   signal (signo, request_quit);
604
605 #ifdef REQUEST_QUIT
606   REQUEST_QUIT;
607 #else
608   if (immediate_quit) 
609     quit ();
610 #endif
611 }
612
613 \f
614 /* Memory management stuff (malloc friends).  */
615
616 #if defined (NO_MMALLOC)
617
618 /* Make a substitute size_t for non-ANSI compilers. */
619
620 #ifdef _AIX
621 #include <stddef.h>
622 #else /* Not AIX */
623 #ifndef __STDC__
624 #ifndef size_t
625 #define size_t unsigned int
626 #endif
627 #endif
628 #endif /* Not AIX */
629
630 PTR
631 mmalloc (md, size)
632      PTR md;
633      size_t size;
634 {
635   return malloc (size);
636 }
637
638 PTR
639 mrealloc (md, ptr, size)
640      PTR md;
641      PTR ptr;
642      size_t size;
643 {
644   if (ptr == 0)         /* Guard against old realloc's */
645     return malloc (size);
646   else
647     return realloc (ptr, size);
648 }
649
650 void
651 mfree (md, ptr)
652      PTR md;
653      PTR ptr;
654 {
655   free (ptr);
656 }
657
658 #endif  /* NO_MMALLOC */
659
660 #if defined (NO_MMALLOC) || defined (NO_MMALLOC_CHECK)
661
662 void
663 init_malloc (md)
664      PTR md;
665 {
666 }
667
668 #else /* have mmalloc and want corruption checking  */
669
670 static void
671 malloc_botch ()
672 {
673   fatal_dump_core ("Memory corruption");
674 }
675
676 /* Attempt to install hooks in mmalloc/mrealloc/mfree for the heap specified
677    by MD, to detect memory corruption.  Note that MD may be NULL to specify
678    the default heap that grows via sbrk.
679
680    Note that for freshly created regions, we must call mmcheck prior to any
681    mallocs in the region.  Otherwise, any region which was allocated prior to
682    installing the checking hooks, which is later reallocated or freed, will
683    fail the checks!  The mmcheck function only allows initial hooks to be
684    installed before the first mmalloc.  However, anytime after we have called
685    mmcheck the first time to install the checking hooks, we can call it again
686    to update the function pointer to the memory corruption handler.
687
688    Returns zero on failure, non-zero on success. */
689
690 void
691 init_malloc (md)
692      PTR md;
693 {
694   if (!mmcheck (md, malloc_botch))
695     {
696       warning ("internal error: failed to install memory consistency checks");
697     }
698
699   mmtrace ();
700 }
701
702 #endif /* Have mmalloc and want corruption checking  */
703
704 /* Called when a memory allocation fails, with the number of bytes of
705    memory requested in SIZE. */
706
707 NORETURN void
708 nomem (size)
709      long size;
710 {
711   if (size > 0)
712     {
713       fatal ("virtual memory exhausted: can't allocate %ld bytes.", size);
714     }
715   else
716     {
717       fatal ("virtual memory exhausted.");
718     }
719 }
720
721 /* Like mmalloc but get error if no storage available, and protect against
722    the caller wanting to allocate zero bytes.  Whether to return NULL for
723    a zero byte request, or translate the request into a request for one
724    byte of zero'd storage, is a religious issue. */
725
726 PTR
727 xmmalloc (md, size)
728      PTR md;
729      long size;
730 {
731   register PTR val;
732
733   if (size == 0)
734     {
735       val = NULL;
736     }
737   else if ((val = mmalloc (md, size)) == NULL)
738     {
739       nomem (size);
740     }
741   return (val);
742 }
743
744 /* Like mrealloc but get error if no storage available.  */
745
746 PTR
747 xmrealloc (md, ptr, size)
748      PTR md;
749      PTR ptr;
750      long size;
751 {
752   register PTR val;
753
754   if (ptr != NULL)
755     {
756       val = mrealloc (md, ptr, size);
757     }
758   else
759     {
760       val = mmalloc (md, size);
761     }
762   if (val == NULL)
763     {
764       nomem (size);
765     }
766   return (val);
767 }
768
769 /* Like malloc but get error if no storage available, and protect against
770    the caller wanting to allocate zero bytes.  */
771
772 PTR
773 xmalloc (size)
774      long size;
775 {
776   return (xmmalloc ((PTR) NULL, size));
777 }
778
779 /* Like mrealloc but get error if no storage available.  */
780
781 PTR
782 xrealloc (ptr, size)
783      PTR ptr;
784      long size;
785 {
786   return (xmrealloc ((PTR) NULL, ptr, size));
787 }
788
789 \f
790 /* My replacement for the read system call.
791    Used like `read' but keeps going if `read' returns too soon.  */
792
793 int
794 myread (desc, addr, len)
795      int desc;
796      char *addr;
797      int len;
798 {
799   register int val;
800   int orglen = len;
801
802   while (len > 0)
803     {
804       val = read (desc, addr, len);
805       if (val < 0)
806         return val;
807       if (val == 0)
808         return orglen - len;
809       len -= val;
810       addr += val;
811     }
812   return orglen;
813 }
814 \f
815 /* Make a copy of the string at PTR with SIZE characters
816    (and add a null character at the end in the copy).
817    Uses malloc to get the space.  Returns the address of the copy.  */
818
819 char *
820 savestring (ptr, size)
821      const char *ptr;
822      int size;
823 {
824   register char *p = (char *) xmalloc (size + 1);
825   memcpy (p, ptr, size);
826   p[size] = 0;
827   return p;
828 }
829
830 char *
831 msavestring (md, ptr, size)
832      PTR md;
833      const char *ptr;
834      int size;
835 {
836   register char *p = (char *) xmmalloc (md, size + 1);
837   memcpy (p, ptr, size);
838   p[size] = 0;
839   return p;
840 }
841
842 /* The "const" is so it compiles under DGUX (which prototypes strsave
843    in <string.h>.  FIXME: This should be named "xstrsave", shouldn't it?
844    Doesn't real strsave return NULL if out of memory?  */
845 char *
846 strsave (ptr)
847      const char *ptr;
848 {
849   return savestring (ptr, strlen (ptr));
850 }
851
852 char *
853 mstrsave (md, ptr)
854      PTR md;
855      const char *ptr;
856 {
857   return (msavestring (md, ptr, strlen (ptr)));
858 }
859
860 void
861 print_spaces (n, file)
862      register int n;
863      register FILE *file;
864 {
865   while (n-- > 0)
866     fputc (' ', file);
867 }
868
869 /* Print a host address.  */
870
871 void
872 gdb_print_address (addr, stream)
873      PTR addr;
874      GDB_FILE *stream;
875 {
876
877   /* We could use the %p conversion specifier to fprintf if we had any
878      way of knowing whether this host supports it.  But the following
879      should work on the Alpha and on 32 bit machines.  */
880
881   fprintf_filtered (stream, "0x%lx", (unsigned long)addr);
882 }
883
884 /* Ask user a y-or-n question and return 1 iff answer is yes.
885    Takes three args which are given to printf to print the question.
886    The first, a control string, should end in "? ".
887    It should not say how to answer, because we do that.  */
888
889 /* VARARGS */
890 int
891 #ifdef ANSI_PROTOTYPES
892 query (char *ctlstr, ...)
893 #else
894 query (va_alist)
895      va_dcl
896 #endif
897 {
898   va_list args;
899   register int answer;
900   register int ans2;
901   int retval;
902
903 #ifdef ANSI_PROTOTYPES
904   va_start (args, ctlstr);
905 #else
906   char *ctlstr;
907   va_start (args);
908   ctlstr = va_arg (args, char *);
909 #endif
910
911   if (query_hook)
912     {
913       return query_hook (ctlstr, args);
914     }
915
916   /* Automatically answer "yes" if input is not from a terminal.  */
917   if (!input_from_terminal_p ())
918     return 1;
919 #ifdef MPW
920   /* FIXME Automatically answer "yes" if called from MacGDB.  */
921   if (mac_app)
922     return 1;
923 #endif /* MPW */
924
925   while (1)
926     {
927       wrap_here ("");           /* Flush any buffered output */
928       gdb_flush (gdb_stdout);
929
930       if (annotation_level > 1)
931         printf_filtered ("\n\032\032pre-query\n");
932
933       vfprintf_filtered (gdb_stdout, ctlstr, args);
934       printf_filtered ("(y or n) ");
935
936       if (annotation_level > 1)
937         printf_filtered ("\n\032\032query\n");
938
939 #ifdef MPW
940       /* If not in MacGDB, move to a new line so the entered line doesn't
941          have a prompt on the front of it. */
942       if (!mac_app)
943         fputs_unfiltered ("\n", gdb_stdout);
944 #endif /* MPW */
945
946       gdb_flush (gdb_stdout);
947       answer = fgetc (stdin);
948       clearerr (stdin);         /* in case of C-d */
949       if (answer == EOF)        /* C-d */
950         {
951           retval = 1;
952           break;
953         }
954       if (answer != '\n')       /* Eat rest of input line, to EOF or newline */
955         do 
956           {
957             ans2 = fgetc (stdin);
958             clearerr (stdin);
959           }
960         while (ans2 != EOF && ans2 != '\n');
961       if (answer >= 'a')
962         answer -= 040;
963       if (answer == 'Y')
964         {
965           retval = 1;
966           break;
967         }
968       if (answer == 'N')
969         {
970           retval = 0;
971           break;
972         }
973       printf_filtered ("Please answer y or n.\n");
974     }
975
976   if (annotation_level > 1)
977     printf_filtered ("\n\032\032post-query\n");
978   return retval;
979 }
980
981 \f
982 /* Parse a C escape sequence.  STRING_PTR points to a variable
983    containing a pointer to the string to parse.  That pointer
984    should point to the character after the \.  That pointer
985    is updated past the characters we use.  The value of the
986    escape sequence is returned.
987
988    A negative value means the sequence \ newline was seen,
989    which is supposed to be equivalent to nothing at all.
990
991    If \ is followed by a null character, we return a negative
992    value and leave the string pointer pointing at the null character.
993
994    If \ is followed by 000, we return 0 and leave the string pointer
995    after the zeros.  A value of 0 does not mean end of string.  */
996
997 int
998 parse_escape (string_ptr)
999      char **string_ptr;
1000 {
1001   register int c = *(*string_ptr)++;
1002   switch (c)
1003     {
1004     case 'a':
1005       return 007;               /* Bell (alert) char */
1006     case 'b':
1007       return '\b';
1008     case 'e':                   /* Escape character */
1009       return 033;
1010     case 'f':
1011       return '\f';
1012     case 'n':
1013       return '\n';
1014     case 'r':
1015       return '\r';
1016     case 't':
1017       return '\t';
1018     case 'v':
1019       return '\v';
1020     case '\n':
1021       return -2;
1022     case 0:
1023       (*string_ptr)--;
1024       return 0;
1025     case '^':
1026       c = *(*string_ptr)++;
1027       if (c == '\\')
1028         c = parse_escape (string_ptr);
1029       if (c == '?')
1030         return 0177;
1031       return (c & 0200) | (c & 037);
1032       
1033     case '0':
1034     case '1':
1035     case '2':
1036     case '3':
1037     case '4':
1038     case '5':
1039     case '6':
1040     case '7':
1041       {
1042         register int i = c - '0';
1043         register int count = 0;
1044         while (++count < 3)
1045           {
1046             if ((c = *(*string_ptr)++) >= '0' && c <= '7')
1047               {
1048                 i *= 8;
1049                 i += c - '0';
1050               }
1051             else
1052               {
1053                 (*string_ptr)--;
1054                 break;
1055               }
1056           }
1057         return i;
1058       }
1059     default:
1060       return c;
1061     }
1062 }
1063 \f
1064 /* Print the character C on STREAM as part of the contents of a literal
1065    string whose delimiter is QUOTER.  Note that this routine should only
1066    be call for printing things which are independent of the language
1067    of the program being debugged. */
1068
1069 void
1070 gdb_printchar (c, stream, quoter)
1071      register int c;
1072      FILE *stream;
1073      int quoter;
1074 {
1075
1076   c &= 0xFF;                    /* Avoid sign bit follies */
1077
1078   if (              c < 0x20  ||                /* Low control chars */ 
1079       (c >= 0x7F && c < 0xA0) ||                /* DEL, High controls */
1080       (sevenbit_strings && c >= 0x80)) {        /* high order bit set */
1081     switch (c)
1082       {
1083       case '\n':
1084         fputs_filtered ("\\n", stream);
1085         break;
1086       case '\b':
1087         fputs_filtered ("\\b", stream);
1088         break;
1089       case '\t':
1090         fputs_filtered ("\\t", stream);
1091         break;
1092       case '\f':
1093         fputs_filtered ("\\f", stream);
1094         break;
1095       case '\r':
1096         fputs_filtered ("\\r", stream);
1097         break;
1098       case '\033':
1099         fputs_filtered ("\\e", stream);
1100         break;
1101       case '\007':
1102         fputs_filtered ("\\a", stream);
1103         break;
1104       default:
1105         fprintf_filtered (stream, "\\%.3o", (unsigned int) c);
1106         break;
1107       }
1108   } else {
1109     if (c == '\\' || c == quoter)
1110       fputs_filtered ("\\", stream);
1111     fprintf_filtered (stream, "%c", c);
1112   }
1113 }
1114 \f
1115 /* Number of lines per page or UINT_MAX if paging is disabled.  */
1116 static unsigned int lines_per_page;
1117 /* Number of chars per line or UNIT_MAX is line folding is disabled.  */
1118 static unsigned int chars_per_line;
1119 /* Current count of lines printed on this page, chars on this line.  */
1120 static unsigned int lines_printed, chars_printed;
1121
1122 /* Buffer and start column of buffered text, for doing smarter word-
1123    wrapping.  When someone calls wrap_here(), we start buffering output
1124    that comes through fputs_filtered().  If we see a newline, we just
1125    spit it out and forget about the wrap_here().  If we see another
1126    wrap_here(), we spit it out and remember the newer one.  If we see
1127    the end of the line, we spit out a newline, the indent, and then
1128    the buffered output.  */
1129
1130 /* Malloc'd buffer with chars_per_line+2 bytes.  Contains characters which
1131    are waiting to be output (they have already been counted in chars_printed).
1132    When wrap_buffer[0] is null, the buffer is empty.  */
1133 static char *wrap_buffer;
1134
1135 /* Pointer in wrap_buffer to the next character to fill.  */
1136 static char *wrap_pointer;
1137
1138 /* String to indent by if the wrap occurs.  Must not be NULL if wrap_column
1139    is non-zero.  */
1140 static char *wrap_indent;
1141
1142 /* Column number on the screen where wrap_buffer begins, or 0 if wrapping
1143    is not in effect.  */
1144 static int wrap_column;
1145
1146 /* ARGSUSED */
1147 static void 
1148 set_width_command (args, from_tty, c)
1149      char *args;
1150      int from_tty;
1151      struct cmd_list_element *c;
1152 {
1153   if (!wrap_buffer)
1154     {
1155       wrap_buffer = (char *) xmalloc (chars_per_line + 2);
1156       wrap_buffer[0] = '\0';
1157     }
1158   else
1159     wrap_buffer = (char *) xrealloc (wrap_buffer, chars_per_line + 2);
1160   wrap_pointer = wrap_buffer;   /* Start it at the beginning */
1161 }
1162
1163 /* Wait, so the user can read what's on the screen.  Prompt the user
1164    to continue by pressing RETURN.  */
1165
1166 static void
1167 prompt_for_continue ()
1168 {
1169   char *ignore;
1170   char cont_prompt[120];
1171
1172   if (annotation_level > 1)
1173     printf_unfiltered ("\n\032\032pre-prompt-for-continue\n");
1174
1175   strcpy (cont_prompt,
1176           "---Type <return> to continue, or q <return> to quit---");
1177   if (annotation_level > 1)
1178     strcat (cont_prompt, "\n\032\032prompt-for-continue\n");
1179
1180   /* We must do this *before* we call gdb_readline, else it will eventually
1181      call us -- thinking that we're trying to print beyond the end of the 
1182      screen.  */
1183   reinitialize_more_filter ();
1184
1185   immediate_quit++;
1186   /* On a real operating system, the user can quit with SIGINT.
1187      But not on GO32.
1188
1189      'q' is provided on all systems so users don't have to change habits
1190      from system to system, and because telling them what to do in
1191      the prompt is more user-friendly than expecting them to think of
1192      SIGINT.  */
1193   /* Call readline, not gdb_readline, because GO32 readline handles control-C
1194      whereas control-C to gdb_readline will cause the user to get dumped
1195      out to DOS.  */
1196   ignore = readline (cont_prompt);
1197
1198   if (annotation_level > 1)
1199     printf_unfiltered ("\n\032\032post-prompt-for-continue\n");
1200
1201   if (ignore)
1202     {
1203       char *p = ignore;
1204       while (*p == ' ' || *p == '\t')
1205         ++p;
1206       if (p[0] == 'q')
1207         request_quit (SIGINT);
1208       free (ignore);
1209     }
1210   immediate_quit--;
1211
1212   /* Now we have to do this again, so that GDB will know that it doesn't
1213      need to save the ---Type <return>--- line at the top of the screen.  */
1214   reinitialize_more_filter ();
1215
1216   dont_repeat ();               /* Forget prev cmd -- CR won't repeat it. */
1217 }
1218
1219 /* Reinitialize filter; ie. tell it to reset to original values.  */
1220
1221 void
1222 reinitialize_more_filter ()
1223 {
1224   lines_printed = 0;
1225   chars_printed = 0;
1226 }
1227
1228 /* Indicate that if the next sequence of characters overflows the line,
1229    a newline should be inserted here rather than when it hits the end. 
1230    If INDENT is non-null, it is a string to be printed to indent the
1231    wrapped part on the next line.  INDENT must remain accessible until
1232    the next call to wrap_here() or until a newline is printed through
1233    fputs_filtered().
1234
1235    If the line is already overfull, we immediately print a newline and
1236    the indentation, and disable further wrapping.
1237
1238    If we don't know the width of lines, but we know the page height,
1239    we must not wrap words, but should still keep track of newlines
1240    that were explicitly printed.
1241
1242    INDENT should not contain tabs, as that will mess up the char count
1243    on the next line.  FIXME.
1244
1245    This routine is guaranteed to force out any output which has been
1246    squirreled away in the wrap_buffer, so wrap_here ((char *)0) can be
1247    used to force out output from the wrap_buffer.  */
1248
1249 void
1250 wrap_here(indent)
1251      char *indent;
1252 {
1253   /* This should have been allocated, but be paranoid anyway. */
1254   if (!wrap_buffer)
1255     abort ();
1256
1257   if (wrap_buffer[0])
1258     {
1259       *wrap_pointer = '\0';
1260       fputs_unfiltered (wrap_buffer, gdb_stdout);
1261     }
1262   wrap_pointer = wrap_buffer;
1263   wrap_buffer[0] = '\0';
1264   if (chars_per_line == UINT_MAX)               /* No line overflow checking */
1265     {
1266       wrap_column = 0;
1267     }
1268   else if (chars_printed >= chars_per_line)
1269     {
1270       puts_filtered ("\n");
1271       if (indent != NULL)
1272         puts_filtered (indent);
1273       wrap_column = 0;
1274     }
1275   else
1276     {
1277       wrap_column = chars_printed;
1278       if (indent == NULL)
1279         wrap_indent = "";
1280       else
1281         wrap_indent = indent;
1282     }
1283 }
1284
1285 /* Ensure that whatever gets printed next, using the filtered output
1286    commands, starts at the beginning of the line.  I.E. if there is
1287    any pending output for the current line, flush it and start a new
1288    line.  Otherwise do nothing. */
1289
1290 void
1291 begin_line ()
1292 {
1293   if (chars_printed > 0)
1294     {
1295       puts_filtered ("\n");
1296     }
1297 }
1298
1299
1300 GDB_FILE *
1301 gdb_fopen (name, mode)
1302      char * name;
1303      char * mode;
1304 {
1305   return fopen (name, mode);
1306 }
1307
1308 void
1309 gdb_flush (stream)
1310      FILE *stream;
1311 {
1312   if (flush_hook)
1313     {
1314       flush_hook (stream);
1315       return;
1316     }
1317
1318   fflush (stream);
1319 }
1320
1321 /* Like fputs but if FILTER is true, pause after every screenful.
1322
1323    Regardless of FILTER can wrap at points other than the final
1324    character of a line.
1325
1326    Unlike fputs, fputs_maybe_filtered does not return a value.
1327    It is OK for LINEBUFFER to be NULL, in which case just don't print
1328    anything.
1329
1330    Note that a longjmp to top level may occur in this routine (only if
1331    FILTER is true) (since prompt_for_continue may do so) so this
1332    routine should not be called when cleanups are not in place.  */
1333
1334 static void
1335 fputs_maybe_filtered (linebuffer, stream, filter)
1336      const char *linebuffer;
1337      FILE *stream;
1338      int filter;
1339 {
1340   const char *lineptr;
1341
1342   if (linebuffer == 0)
1343     return;
1344
1345   /* Don't do any filtering if it is disabled.  */
1346   if (stream != gdb_stdout
1347    || (lines_per_page == UINT_MAX && chars_per_line == UINT_MAX))
1348     {
1349       fputs_unfiltered (linebuffer, stream);
1350       return;
1351     }
1352
1353   /* Go through and output each character.  Show line extension
1354      when this is necessary; prompt user for new page when this is
1355      necessary.  */
1356   
1357   lineptr = linebuffer;
1358   while (*lineptr)
1359     {
1360       /* Possible new page.  */
1361       if (filter &&
1362           (lines_printed >= lines_per_page - 1))
1363         prompt_for_continue ();
1364
1365       while (*lineptr && *lineptr != '\n')
1366         {
1367           /* Print a single line.  */
1368           if (*lineptr == '\t')
1369             {
1370               if (wrap_column)
1371                 *wrap_pointer++ = '\t';
1372               else
1373                 fputc_unfiltered ('\t', stream);
1374               /* Shifting right by 3 produces the number of tab stops
1375                  we have already passed, and then adding one and
1376                  shifting left 3 advances to the next tab stop.  */
1377               chars_printed = ((chars_printed >> 3) + 1) << 3;
1378               lineptr++;
1379             }
1380           else
1381             {
1382               if (wrap_column)
1383                 *wrap_pointer++ = *lineptr;
1384               else
1385                 fputc_unfiltered (*lineptr, stream);
1386               chars_printed++;
1387               lineptr++;
1388             }
1389       
1390           if (chars_printed >= chars_per_line)
1391             {
1392               unsigned int save_chars = chars_printed;
1393
1394               chars_printed = 0;
1395               lines_printed++;
1396               /* If we aren't actually wrapping, don't output newline --
1397                  if chars_per_line is right, we probably just overflowed
1398                  anyway; if it's wrong, let us keep going.  */
1399               if (wrap_column)
1400                 fputc_unfiltered ('\n', stream);
1401
1402               /* Possible new page.  */
1403               if (lines_printed >= lines_per_page - 1)
1404                 prompt_for_continue ();
1405
1406               /* Now output indentation and wrapped string */
1407               if (wrap_column)
1408                 {
1409                   fputs_unfiltered (wrap_indent, stream);
1410                   *wrap_pointer = '\0'; /* Null-terminate saved stuff */
1411                   fputs_unfiltered (wrap_buffer, stream); /* and eject it */
1412                   /* FIXME, this strlen is what prevents wrap_indent from
1413                      containing tabs.  However, if we recurse to print it
1414                      and count its chars, we risk trouble if wrap_indent is
1415                      longer than (the user settable) chars_per_line. 
1416                      Note also that this can set chars_printed > chars_per_line
1417                      if we are printing a long string.  */
1418                   chars_printed = strlen (wrap_indent)
1419                                 + (save_chars - wrap_column);
1420                   wrap_pointer = wrap_buffer;   /* Reset buffer */
1421                   wrap_buffer[0] = '\0';
1422                   wrap_column = 0;              /* And disable fancy wrap */
1423                 }
1424             }
1425         }
1426
1427       if (*lineptr == '\n')
1428         {
1429           chars_printed = 0;
1430           wrap_here ((char *)0);  /* Spit out chars, cancel further wraps */
1431           lines_printed++;
1432           fputc_unfiltered ('\n', stream);
1433           lineptr++;
1434         }
1435     }
1436 }
1437
1438 void
1439 fputs_filtered (linebuffer, stream)
1440      const char *linebuffer;
1441      FILE *stream;
1442 {
1443   fputs_maybe_filtered (linebuffer, stream, 1);
1444 }
1445
1446 int
1447 putchar_unfiltered (c)
1448      int c;
1449 {
1450   char buf[2];
1451
1452   buf[0] = c;
1453   buf[1] = 0;
1454   fputs_unfiltered (buf, gdb_stdout);
1455   return c;
1456 }
1457
1458 int
1459 fputc_unfiltered (c, stream)
1460      int c;
1461      FILE * stream;
1462 {
1463   char buf[2];
1464
1465   buf[0] = c;
1466   buf[1] = 0;
1467   fputs_unfiltered (buf, stream);
1468   return c;
1469 }
1470
1471
1472 /* Print a variable number of ARGS using format FORMAT.  If this
1473    information is going to put the amount written (since the last call
1474    to REINITIALIZE_MORE_FILTER or the last page break) over the page size,
1475    call prompt_for_continue to get the users permision to continue.
1476
1477    Unlike fprintf, this function does not return a value.
1478
1479    We implement three variants, vfprintf (takes a vararg list and stream),
1480    fprintf (takes a stream to write on), and printf (the usual).
1481
1482    Note also that a longjmp to top level may occur in this routine
1483    (since prompt_for_continue may do so) so this routine should not be
1484    called when cleanups are not in place.  */
1485
1486 static void
1487 vfprintf_maybe_filtered (stream, format, args, filter)
1488      FILE *stream;
1489      char *format;
1490      va_list args;
1491      int filter;
1492 {
1493   char *linebuffer;
1494   struct cleanup *old_cleanups;
1495
1496   vasprintf (&linebuffer, format, args);
1497   if (linebuffer == NULL)
1498     {
1499       fputs_unfiltered ("\ngdb: virtual memory exhausted.\n", gdb_stderr);
1500       exit (1);
1501     }
1502   old_cleanups = make_cleanup (free, linebuffer);
1503   fputs_maybe_filtered (linebuffer, stream, filter);
1504   do_cleanups (old_cleanups);
1505 }
1506
1507
1508 void
1509 vfprintf_filtered (stream, format, args)
1510      FILE *stream;
1511      char *format;
1512      va_list args;
1513 {
1514   vfprintf_maybe_filtered (stream, format, args, 1);
1515 }
1516
1517 void
1518 vfprintf_unfiltered (stream, format, args)
1519      FILE *stream;
1520      char *format;
1521      va_list args;
1522 {
1523   char *linebuffer;
1524   struct cleanup *old_cleanups;
1525
1526   vasprintf (&linebuffer, format, args);
1527   if (linebuffer == NULL)
1528     {
1529       fputs_unfiltered ("\ngdb: virtual memory exhausted.\n", gdb_stderr);
1530       exit (1);
1531     }
1532   old_cleanups = make_cleanup (free, linebuffer);
1533   fputs_unfiltered (linebuffer, stream);
1534   do_cleanups (old_cleanups);
1535 }
1536
1537 void
1538 vprintf_filtered (format, args)
1539      char *format;
1540      va_list args;
1541 {
1542   vfprintf_maybe_filtered (gdb_stdout, format, args, 1);
1543 }
1544
1545 void
1546 vprintf_unfiltered (format, args)
1547      char *format;
1548      va_list args;
1549 {
1550   vfprintf_unfiltered (gdb_stdout, format, args);
1551 }
1552
1553 /* VARARGS */
1554 void
1555 #ifdef ANSI_PROTOTYPES
1556 fprintf_filtered (FILE *stream, char *format, ...)
1557 #else
1558 fprintf_filtered (va_alist)
1559      va_dcl
1560 #endif
1561 {
1562   va_list args;
1563 #ifdef ANSI_PROTOTYPES
1564   va_start (args, format);
1565 #else
1566   FILE *stream;
1567   char *format;
1568
1569   va_start (args);
1570   stream = va_arg (args, FILE *);
1571   format = va_arg (args, char *);
1572 #endif
1573   vfprintf_filtered (stream, format, args);
1574   va_end (args);
1575 }
1576
1577 /* VARARGS */
1578 void
1579 #ifdef ANSI_PROTOTYPES
1580 fprintf_unfiltered (FILE *stream, char *format, ...)
1581 #else
1582 fprintf_unfiltered (va_alist)
1583      va_dcl
1584 #endif
1585 {
1586   va_list args;
1587 #ifdef ANSI_PROTOTYPES
1588   va_start (args, format);
1589 #else
1590   FILE *stream;
1591   char *format;
1592
1593   va_start (args);
1594   stream = va_arg (args, FILE *);
1595   format = va_arg (args, char *);
1596 #endif
1597   vfprintf_unfiltered (stream, format, args);
1598   va_end (args);
1599 }
1600
1601 /* Like fprintf_filtered, but prints its result indented.
1602    Called as fprintfi_filtered (spaces, stream, format, ...);  */
1603
1604 /* VARARGS */
1605 void
1606 #ifdef ANSI_PROTOTYPES
1607 fprintfi_filtered (int spaces, FILE *stream, char *format, ...)
1608 #else
1609 fprintfi_filtered (va_alist)
1610      va_dcl
1611 #endif
1612 {
1613   va_list args;
1614 #ifdef ANSI_PROTOTYPES
1615   va_start (args, format);
1616 #else
1617   int spaces;
1618   FILE *stream;
1619   char *format;
1620
1621   va_start (args);
1622   spaces = va_arg (args, int);
1623   stream = va_arg (args, FILE *);
1624   format = va_arg (args, char *);
1625 #endif
1626   print_spaces_filtered (spaces, stream);
1627
1628   vfprintf_filtered (stream, format, args);
1629   va_end (args);
1630 }
1631
1632
1633 /* VARARGS */
1634 void
1635 #ifdef ANSI_PROTOTYPES
1636 printf_filtered (char *format, ...)
1637 #else
1638 printf_filtered (va_alist)
1639      va_dcl
1640 #endif
1641 {
1642   va_list args;
1643 #ifdef ANSI_PROTOTYPES
1644   va_start (args, format);
1645 #else
1646   char *format;
1647
1648   va_start (args);
1649   format = va_arg (args, char *);
1650 #endif
1651   vfprintf_filtered (gdb_stdout, format, args);
1652   va_end (args);
1653 }
1654
1655
1656 /* VARARGS */
1657 void
1658 #ifdef ANSI_PROTOTYPES
1659 printf_unfiltered (char *format, ...)
1660 #else
1661 printf_unfiltered (va_alist)
1662      va_dcl
1663 #endif
1664 {
1665   va_list args;
1666 #ifdef ANSI_PROTOTYPES
1667   va_start (args, format);
1668 #else
1669   char *format;
1670
1671   va_start (args);
1672   format = va_arg (args, char *);
1673 #endif
1674   vfprintf_unfiltered (gdb_stdout, format, args);
1675   va_end (args);
1676 }
1677
1678 /* Like printf_filtered, but prints it's result indented.
1679    Called as printfi_filtered (spaces, format, ...);  */
1680
1681 /* VARARGS */
1682 void
1683 #ifdef ANSI_PROTOTYPES
1684 printfi_filtered (int spaces, char *format, ...)
1685 #else
1686 printfi_filtered (va_alist)
1687      va_dcl
1688 #endif
1689 {
1690   va_list args;
1691 #ifdef ANSI_PROTOTYPES
1692   va_start (args, format);
1693 #else
1694   int spaces;
1695   char *format;
1696
1697   va_start (args);
1698   spaces = va_arg (args, int);
1699   format = va_arg (args, char *);
1700 #endif
1701   print_spaces_filtered (spaces, gdb_stdout);
1702   vfprintf_filtered (gdb_stdout, format, args);
1703   va_end (args);
1704 }
1705
1706 /* Easy -- but watch out!
1707
1708    This routine is *not* a replacement for puts()!  puts() appends a newline.
1709    This one doesn't, and had better not!  */
1710
1711 void
1712 puts_filtered (string)
1713      char *string;
1714 {
1715   fputs_filtered (string, gdb_stdout);
1716 }
1717
1718 void
1719 puts_unfiltered (string)
1720      char *string;
1721 {
1722   fputs_unfiltered (string, gdb_stdout);
1723 }
1724
1725 /* Return a pointer to N spaces and a null.  The pointer is good
1726    until the next call to here.  */
1727 char *
1728 n_spaces (n)
1729      int n;
1730 {
1731   register char *t;
1732   static char *spaces;
1733   static int max_spaces;
1734
1735   if (n > max_spaces)
1736     {
1737       if (spaces)
1738         free (spaces);
1739       spaces = (char *) xmalloc (n+1);
1740       for (t = spaces+n; t != spaces;)
1741         *--t = ' ';
1742       spaces[n] = '\0';
1743       max_spaces = n;
1744     }
1745
1746   return spaces + max_spaces - n;
1747 }
1748
1749 /* Print N spaces.  */
1750 void
1751 print_spaces_filtered (n, stream)
1752      int n;
1753      FILE *stream;
1754 {
1755   fputs_filtered (n_spaces (n), stream);
1756 }
1757 \f
1758 /* C++ demangler stuff.  */
1759
1760 /* fprintf_symbol_filtered attempts to demangle NAME, a symbol in language
1761    LANG, using demangling args ARG_MODE, and print it filtered to STREAM.
1762    If the name is not mangled, or the language for the name is unknown, or
1763    demangling is off, the name is printed in its "raw" form. */
1764
1765 void
1766 fprintf_symbol_filtered (stream, name, lang, arg_mode)
1767      FILE *stream;
1768      char *name;
1769      enum language lang;
1770      int arg_mode;
1771 {
1772   char *demangled;
1773
1774   if (name != NULL)
1775     {
1776       /* If user wants to see raw output, no problem.  */
1777       if (!demangle)
1778         {
1779           fputs_filtered (name, stream);
1780         }
1781       else
1782         {
1783           switch (lang)
1784             {
1785             case language_cplus:
1786               demangled = cplus_demangle (name, arg_mode);
1787               break;
1788             case language_chill:
1789               demangled = chill_demangle (name);
1790               break;
1791             default:
1792               demangled = NULL;
1793               break;
1794             }
1795           fputs_filtered (demangled ? demangled : name, stream);
1796           if (demangled != NULL)
1797             {
1798               free (demangled);
1799             }
1800         }
1801     }
1802 }
1803
1804 /* Do a strcmp() type operation on STRING1 and STRING2, ignoring any
1805    differences in whitespace.  Returns 0 if they match, non-zero if they
1806    don't (slightly different than strcmp()'s range of return values).
1807    
1808    As an extra hack, string1=="FOO(ARGS)" matches string2=="FOO".
1809    This "feature" is useful when searching for matching C++ function names
1810    (such as if the user types 'break FOO', where FOO is a mangled C++
1811    function). */
1812
1813 int
1814 strcmp_iw (string1, string2)
1815      const char *string1;
1816      const char *string2;
1817 {
1818   while ((*string1 != '\0') && (*string2 != '\0'))
1819     {
1820       while (isspace (*string1))
1821         {
1822           string1++;
1823         }
1824       while (isspace (*string2))
1825         {
1826           string2++;
1827         }
1828       if (*string1 != *string2)
1829         {
1830           break;
1831         }
1832       if (*string1 != '\0')
1833         {
1834           string1++;
1835           string2++;
1836         }
1837     }
1838   return (*string1 != '\0' && *string1 != '(') || (*string2 != '\0');
1839 }
1840
1841 \f
1842 void
1843 initialize_utils ()
1844 {
1845   struct cmd_list_element *c;
1846
1847   c = add_set_cmd ("width", class_support, var_uinteger, 
1848                   (char *)&chars_per_line,
1849                   "Set number of characters gdb thinks are in a line.",
1850                   &setlist);
1851   add_show_from_set (c, &showlist);
1852   c->function.sfunc = set_width_command;
1853
1854   add_show_from_set
1855     (add_set_cmd ("height", class_support,
1856                   var_uinteger, (char *)&lines_per_page,
1857                   "Set number of lines gdb thinks are in a page.", &setlist),
1858      &showlist);
1859   
1860   /* These defaults will be used if we are unable to get the correct
1861      values from termcap.  */
1862 #if defined(__GO32__) || defined(WIN32)
1863   lines_per_page = ScreenRows();
1864   chars_per_line = ScreenCols();
1865 #else  
1866   lines_per_page = 24;
1867   chars_per_line = 80;
1868
1869 #ifndef MPW
1870   /* No termcap under MPW, although might be cool to do something
1871      by looking at worksheet or console window sizes. */
1872   /* Initialize the screen height and width from termcap.  */
1873   {
1874     char *termtype = getenv ("TERM");
1875
1876     /* Positive means success, nonpositive means failure.  */
1877     int status;
1878
1879     /* 2048 is large enough for all known terminals, according to the
1880        GNU termcap manual.  */
1881     char term_buffer[2048];
1882
1883     if (termtype)
1884       {
1885         status = tgetent (term_buffer, termtype);
1886         if (status > 0)
1887           {
1888             int val;
1889             
1890             val = tgetnum ("li");
1891             if (val >= 0)
1892               lines_per_page = val;
1893             else
1894               /* The number of lines per page is not mentioned
1895                  in the terminal description.  This probably means
1896                  that paging is not useful (e.g. emacs shell window),
1897                  so disable paging.  */
1898               lines_per_page = UINT_MAX;
1899             
1900             val = tgetnum ("co");
1901             if (val >= 0)
1902               chars_per_line = val;
1903           }
1904       }
1905   }
1906 #endif /* MPW */
1907
1908 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1909
1910   /* If there is a better way to determine the window size, use it. */
1911   SIGWINCH_HANDLER ();
1912 #endif
1913 #endif
1914   /* If the output is not a terminal, don't paginate it.  */
1915   if (!ISATTY (gdb_stdout))
1916     lines_per_page = UINT_MAX;
1917
1918   set_width_command ((char *)NULL, 0, c);
1919
1920   add_show_from_set
1921     (add_set_cmd ("demangle", class_support, var_boolean, 
1922                   (char *)&demangle,
1923                 "Set demangling of encoded C++ names when displaying symbols.",
1924                   &setprintlist),
1925      &showprintlist);
1926
1927   add_show_from_set
1928     (add_set_cmd ("sevenbit-strings", class_support, var_boolean, 
1929                   (char *)&sevenbit_strings,
1930    "Set printing of 8-bit characters in strings as \\nnn.",
1931                   &setprintlist),
1932      &showprintlist);
1933
1934   add_show_from_set
1935     (add_set_cmd ("asm-demangle", class_support, var_boolean, 
1936                   (char *)&asm_demangle,
1937         "Set demangling of C++ names in disassembly listings.",
1938                   &setprintlist),
1939      &showprintlist);
1940 }
1941
1942 /* Machine specific function to handle SIGWINCH signal. */
1943
1944 #ifdef  SIGWINCH_HANDLER_BODY
1945         SIGWINCH_HANDLER_BODY
1946 #endif
1947