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