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