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