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