]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/utils.c
Index: sh/ChangeLog
[thirdparty/binutils-gdb.git] / gdb / utils.c
CommitLineData
c906108c 1/* General utility routines for GDB, the GNU debugger.
1bac305b 2
a752853e 3 Copyright 1986, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
4fcef00a 4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
1bac305b 5 Foundation, Inc.
c906108c 6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
c906108c 18
c5aa993b
JM
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
c906108c 23
4e8f7a8b
DJ
24#include "defs.h"
25#include "gdb_assert.h"
26#include <ctype.h>
27#include "gdb_string.h"
28#include "event-top.h"
29
6a83354a
AC
30#ifdef TUI
31#include "tui/tui.h" /* For tui_get_command_dimension. */
32#endif
33
9d271fd8
AC
34#ifdef __GO32__
35#include <pc.h>
36#endif
37
c906108c
SS
38/* SunOS's curses.h has a '#define reg register' in it. Thank you Sun. */
39#ifdef reg
40#undef reg
41#endif
42
042be3a9 43#include <signal.h>
c906108c
SS
44#include "gdbcmd.h"
45#include "serial.h"
46#include "bfd.h"
47#include "target.h"
48#include "demangle.h"
49#include "expression.h"
50#include "language.h"
234b45d4 51#include "charset.h"
c906108c 52#include "annotate.h"
303c8ebd 53#include "filenames.h"
7b90c3f9 54#include "symfile.h"
c906108c 55
8731e58e 56#include "inferior.h" /* for signed_pointer_to_address */
ac2e2ef7 57
2d1b2124
AC
58#include <sys/param.h> /* For MAXPATHLEN */
59
3b78cdbb 60#include "gdb_curses.h"
020cc13c 61
dbda9972 62#include "readline/readline.h"
c906108c 63
3c37485b 64#ifdef NEED_DECLARATION_MALLOC
8dbb1c65 65extern PTR malloc (); /* OK: PTR */
3c37485b 66#endif
0e52036f 67#ifdef NEED_DECLARATION_REALLOC
8dbb1c65 68extern PTR realloc (); /* OK: PTR */
0e52036f 69#endif
81b8eb80
AC
70#ifdef NEED_DECLARATION_FREE
71extern void free ();
72#endif
a4db0f07
RH
73/* Actually, we'll never have the decl, since we don't define _GNU_SOURCE. */
74#if defined(HAVE_CANONICALIZE_FILE_NAME) \
75 && defined(NEED_DECLARATION_CANONICALIZE_FILE_NAME)
76extern char *canonicalize_file_name (const char *);
77#endif
81b8eb80 78
c906108c
SS
79/* readline defines this. */
80#undef savestring
81
9a4105ab 82void (*deprecated_error_begin_hook) (void);
c906108c 83
2acceee2
JM
84/* Holds the last error message issued by gdb */
85
d9fcf2fb 86static struct ui_file *gdb_lasterr;
2acceee2 87
c906108c
SS
88/* Prototypes for local functions */
89
d9fcf2fb
JM
90static void vfprintf_maybe_filtered (struct ui_file *, const char *,
91 va_list, int);
c906108c 92
d9fcf2fb 93static void fputs_maybe_filtered (const char *, struct ui_file *, int);
c906108c 94
e42c9534
AC
95static void do_my_cleanups (struct cleanup **, struct cleanup *);
96
a14ed312 97static void prompt_for_continue (void);
c906108c 98
eb0d3137 99static void set_screen_size (void);
a14ed312 100static void set_width (void);
c906108c 101
d75e3c94
JJ
102static NORETURN void error_stream_1 (struct ui_file *stream,
103 enum return_reason reason) ATTR_NORETURN;
104
c906108c
SS
105/* Chain of cleanup actions established with make_cleanup,
106 to be executed if an error happens. */
107
c5aa993b
JM
108static struct cleanup *cleanup_chain; /* cleaned up after a failed command */
109static struct cleanup *final_cleanup_chain; /* cleaned up when gdb exits */
110static struct cleanup *run_cleanup_chain; /* cleaned up on each 'run' */
111static struct cleanup *exec_cleanup_chain; /* cleaned up on each execution command */
6426a772 112/* cleaned up on each error from within an execution command */
8731e58e 113static struct cleanup *exec_error_cleanup_chain;
43ff13b4
JM
114
115/* Pointer to what is left to do for an execution command after the
116 target stops. Used only in asynchronous mode, by targets that
117 support async execution. The finish and until commands use it. So
118 does the target extended-remote command. */
119struct continuation *cmd_continuation;
c2d11a7d 120struct continuation *intermediate_continuation;
c906108c
SS
121
122/* Nonzero if we have job control. */
123
124int job_control;
125
126/* Nonzero means a quit has been requested. */
127
128int quit_flag;
129
130/* Nonzero means quit immediately if Control-C is typed now, rather
131 than waiting until QUIT is executed. Be careful in setting this;
132 code which executes with immediate_quit set has to be very careful
133 about being able to deal with being interrupted at any time. It is
134 almost always better to use QUIT; the only exception I can think of
135 is being able to quit out of a system call (using EINTR loses if
136 the SIGINT happens between the previous QUIT and the system call).
137 To immediately quit in the case in which a SIGINT happens between
138 the previous QUIT and setting immediate_quit (desirable anytime we
139 expect to block), call QUIT after setting immediate_quit. */
140
141int immediate_quit;
142
4a351cef
AF
143/* Nonzero means that encoded C++/ObjC names should be printed out in their
144 C++/ObjC form rather than raw. */
c906108c
SS
145
146int demangle = 1;
147
4a351cef
AF
148/* Nonzero means that encoded C++/ObjC names should be printed out in their
149 C++/ObjC form even in assembler language displays. If this is set, but
c906108c
SS
150 DEMANGLE is zero, names are printed raw, i.e. DEMANGLE controls. */
151
152int asm_demangle = 0;
153
154/* Nonzero means that strings with character values >0x7F should be printed
155 as octal escapes. Zero means just print the value (e.g. it's an
156 international character, and the terminal or window can cope.) */
157
158int sevenbit_strings = 0;
159
160/* String to be printed before error messages, if any. */
161
162char *error_pre_print;
163
164/* String to be printed before quit messages, if any. */
165
166char *quit_pre_print;
167
168/* String to be printed before warning messages, if any. */
169
170char *warning_pre_print = "\nwarning: ";
171
172int pagination_enabled = 1;
c906108c 173\f
c5aa993b 174
c906108c
SS
175/* Add a new cleanup to the cleanup_chain,
176 and return the previous chain pointer
177 to be passed later to do_cleanups or discard_cleanups.
178 Args are FUNCTION to clean up with, and ARG to pass to it. */
179
180struct cleanup *
e4005526 181make_cleanup (make_cleanup_ftype *function, void *arg)
c906108c 182{
c5aa993b 183 return make_my_cleanup (&cleanup_chain, function, arg);
c906108c
SS
184}
185
186struct cleanup *
e4005526 187make_final_cleanup (make_cleanup_ftype *function, void *arg)
c906108c 188{
c5aa993b 189 return make_my_cleanup (&final_cleanup_chain, function, arg);
c906108c 190}
7a292a7a 191
c906108c 192struct cleanup *
e4005526 193make_run_cleanup (make_cleanup_ftype *function, void *arg)
c906108c 194{
c5aa993b 195 return make_my_cleanup (&run_cleanup_chain, function, arg);
c906108c 196}
7a292a7a 197
43ff13b4 198struct cleanup *
e4005526 199make_exec_cleanup (make_cleanup_ftype *function, void *arg)
43ff13b4 200{
c5aa993b 201 return make_my_cleanup (&exec_cleanup_chain, function, arg);
43ff13b4
JM
202}
203
6426a772 204struct cleanup *
e4005526 205make_exec_error_cleanup (make_cleanup_ftype *function, void *arg)
6426a772
JM
206{
207 return make_my_cleanup (&exec_error_cleanup_chain, function, arg);
208}
209
7a292a7a 210static void
fba45db2 211do_freeargv (void *arg)
7a292a7a 212{
c5aa993b 213 freeargv ((char **) arg);
7a292a7a
SS
214}
215
216struct cleanup *
fba45db2 217make_cleanup_freeargv (char **arg)
7a292a7a
SS
218{
219 return make_my_cleanup (&cleanup_chain, do_freeargv, arg);
220}
221
5c65bbb6
AC
222static void
223do_bfd_close_cleanup (void *arg)
224{
225 bfd_close (arg);
226}
227
228struct cleanup *
229make_cleanup_bfd_close (bfd *abfd)
230{
231 return make_cleanup (do_bfd_close_cleanup, abfd);
232}
233
f5ff8c83
AC
234static void
235do_close_cleanup (void *arg)
236{
f042532c
AC
237 int *fd = arg;
238 close (*fd);
239 xfree (fd);
f5ff8c83
AC
240}
241
242struct cleanup *
243make_cleanup_close (int fd)
244{
f042532c
AC
245 int *saved_fd = xmalloc (sizeof (fd));
246 *saved_fd = fd;
247 return make_cleanup (do_close_cleanup, saved_fd);
f5ff8c83
AC
248}
249
11cf8741 250static void
d9fcf2fb 251do_ui_file_delete (void *arg)
11cf8741 252{
d9fcf2fb 253 ui_file_delete (arg);
11cf8741
JM
254}
255
256struct cleanup *
d9fcf2fb 257make_cleanup_ui_file_delete (struct ui_file *arg)
11cf8741 258{
d9fcf2fb 259 return make_my_cleanup (&cleanup_chain, do_ui_file_delete, arg);
11cf8741
JM
260}
261
7b90c3f9
JB
262static void
263do_free_section_addr_info (void *arg)
264{
265 free_section_addr_info (arg);
266}
267
268struct cleanup *
269make_cleanup_free_section_addr_info (struct section_addr_info *addrs)
270{
271 return make_my_cleanup (&cleanup_chain, do_free_section_addr_info, addrs);
272}
273
274
c906108c 275struct cleanup *
e4005526
AC
276make_my_cleanup (struct cleanup **pmy_chain, make_cleanup_ftype *function,
277 void *arg)
c906108c 278{
52f0bd74 279 struct cleanup *new
8731e58e 280 = (struct cleanup *) xmalloc (sizeof (struct cleanup));
52f0bd74 281 struct cleanup *old_chain = *pmy_chain;
c906108c
SS
282
283 new->next = *pmy_chain;
284 new->function = function;
285 new->arg = arg;
286 *pmy_chain = new;
287
288 return old_chain;
289}
290
291/* Discard cleanups and do the actions they describe
292 until we get back to the point OLD_CHAIN in the cleanup_chain. */
293
294void
aa1ee363 295do_cleanups (struct cleanup *old_chain)
c906108c 296{
c5aa993b 297 do_my_cleanups (&cleanup_chain, old_chain);
c906108c
SS
298}
299
300void
aa1ee363 301do_final_cleanups (struct cleanup *old_chain)
c906108c 302{
c5aa993b 303 do_my_cleanups (&final_cleanup_chain, old_chain);
c906108c
SS
304}
305
306void
aa1ee363 307do_run_cleanups (struct cleanup *old_chain)
c906108c 308{
c5aa993b 309 do_my_cleanups (&run_cleanup_chain, old_chain);
c906108c
SS
310}
311
43ff13b4 312void
aa1ee363 313do_exec_cleanups (struct cleanup *old_chain)
43ff13b4 314{
c5aa993b 315 do_my_cleanups (&exec_cleanup_chain, old_chain);
43ff13b4
JM
316}
317
6426a772 318void
aa1ee363 319do_exec_error_cleanups (struct cleanup *old_chain)
6426a772
JM
320{
321 do_my_cleanups (&exec_error_cleanup_chain, old_chain);
322}
323
e42c9534 324static void
aa1ee363
AC
325do_my_cleanups (struct cleanup **pmy_chain,
326 struct cleanup *old_chain)
c906108c 327{
52f0bd74 328 struct cleanup *ptr;
c906108c
SS
329 while ((ptr = *pmy_chain) != old_chain)
330 {
331 *pmy_chain = ptr->next; /* Do this first incase recursion */
332 (*ptr->function) (ptr->arg);
b8c9b27d 333 xfree (ptr);
c906108c
SS
334 }
335}
336
337/* Discard cleanups, not doing the actions they describe,
338 until we get back to the point OLD_CHAIN in the cleanup_chain. */
339
340void
aa1ee363 341discard_cleanups (struct cleanup *old_chain)
c906108c 342{
c5aa993b 343 discard_my_cleanups (&cleanup_chain, old_chain);
c906108c
SS
344}
345
346void
aa1ee363 347discard_final_cleanups (struct cleanup *old_chain)
c906108c 348{
c5aa993b 349 discard_my_cleanups (&final_cleanup_chain, old_chain);
c906108c
SS
350}
351
6426a772 352void
aa1ee363 353discard_exec_error_cleanups (struct cleanup *old_chain)
6426a772
JM
354{
355 discard_my_cleanups (&exec_error_cleanup_chain, old_chain);
356}
357
c906108c 358void
aa1ee363
AC
359discard_my_cleanups (struct cleanup **pmy_chain,
360 struct cleanup *old_chain)
c906108c 361{
52f0bd74 362 struct cleanup *ptr;
c906108c
SS
363 while ((ptr = *pmy_chain) != old_chain)
364 {
365 *pmy_chain = ptr->next;
b8c9b27d 366 xfree (ptr);
c906108c
SS
367 }
368}
369
370/* Set the cleanup_chain to 0, and return the old cleanup chain. */
371struct cleanup *
fba45db2 372save_cleanups (void)
c906108c 373{
c5aa993b 374 return save_my_cleanups (&cleanup_chain);
c906108c
SS
375}
376
377struct cleanup *
fba45db2 378save_final_cleanups (void)
c906108c 379{
c5aa993b 380 return save_my_cleanups (&final_cleanup_chain);
c906108c
SS
381}
382
383struct cleanup *
fba45db2 384save_my_cleanups (struct cleanup **pmy_chain)
c906108c
SS
385{
386 struct cleanup *old_chain = *pmy_chain;
387
388 *pmy_chain = 0;
389 return old_chain;
390}
391
392/* Restore the cleanup chain from a previously saved chain. */
393void
fba45db2 394restore_cleanups (struct cleanup *chain)
c906108c 395{
c5aa993b 396 restore_my_cleanups (&cleanup_chain, chain);
c906108c
SS
397}
398
399void
fba45db2 400restore_final_cleanups (struct cleanup *chain)
c906108c 401{
c5aa993b 402 restore_my_cleanups (&final_cleanup_chain, chain);
c906108c
SS
403}
404
405void
fba45db2 406restore_my_cleanups (struct cleanup **pmy_chain, struct cleanup *chain)
c906108c
SS
407{
408 *pmy_chain = chain;
409}
410
411/* This function is useful for cleanups.
412 Do
413
c5aa993b
JM
414 foo = xmalloc (...);
415 old_chain = make_cleanup (free_current_contents, &foo);
c906108c
SS
416
417 to arrange to free the object thus allocated. */
418
419void
2f9429ae 420free_current_contents (void *ptr)
c906108c 421{
2f9429ae 422 void **location = ptr;
e2f9c474 423 if (location == NULL)
8e65ff28
AC
424 internal_error (__FILE__, __LINE__,
425 "free_current_contents: NULL pointer");
2f9429ae 426 if (*location != NULL)
e2f9c474 427 {
b8c9b27d 428 xfree (*location);
e2f9c474
AC
429 *location = NULL;
430 }
c906108c
SS
431}
432
433/* Provide a known function that does nothing, to use as a base for
434 for a possibly long chain of cleanups. This is useful where we
435 use the cleanup chain for handling normal cleanups as well as dealing
436 with cleanups that need to be done as a result of a call to error().
437 In such cases, we may not be certain where the first cleanup is, unless
438 we have a do-nothing one to always use as the base. */
439
c906108c 440void
e4005526 441null_cleanup (void *arg)
c906108c
SS
442{
443}
444
74f832da 445/* Add a continuation to the continuation list, the global list
c2d11a7d 446 cmd_continuation. The new continuation will be added at the front.*/
43ff13b4 447void
74f832da
KB
448add_continuation (void (*continuation_hook) (struct continuation_arg *),
449 struct continuation_arg *arg_list)
43ff13b4 450{
c5aa993b 451 struct continuation *continuation_ptr;
43ff13b4 452
8731e58e
AC
453 continuation_ptr =
454 (struct continuation *) xmalloc (sizeof (struct continuation));
c5aa993b
JM
455 continuation_ptr->continuation_hook = continuation_hook;
456 continuation_ptr->arg_list = arg_list;
457 continuation_ptr->next = cmd_continuation;
458 cmd_continuation = continuation_ptr;
43ff13b4
JM
459}
460
461/* Walk down the cmd_continuation list, and execute all the
c2d11a7d
JM
462 continuations. There is a problem though. In some cases new
463 continuations may be added while we are in the middle of this
464 loop. If this happens they will be added in the front, and done
465 before we have a chance of exhausting those that were already
466 there. We need to then save the beginning of the list in a pointer
467 and do the continuations from there on, instead of using the
468 global beginning of list as our iteration pointer.*/
c5aa993b 469void
fba45db2 470do_all_continuations (void)
c2d11a7d
JM
471{
472 struct continuation *continuation_ptr;
473 struct continuation *saved_continuation;
474
475 /* Copy the list header into another pointer, and set the global
476 list header to null, so that the global list can change as a side
477 effect of invoking the continuations and the processing of
478 the preexisting continuations will not be affected. */
479 continuation_ptr = cmd_continuation;
480 cmd_continuation = NULL;
481
482 /* Work now on the list we have set aside. */
483 while (continuation_ptr)
8731e58e
AC
484 {
485 (continuation_ptr->continuation_hook) (continuation_ptr->arg_list);
486 saved_continuation = continuation_ptr;
487 continuation_ptr = continuation_ptr->next;
488 xfree (saved_continuation);
489 }
c2d11a7d
JM
490}
491
492/* Walk down the cmd_continuation list, and get rid of all the
493 continuations. */
494void
fba45db2 495discard_all_continuations (void)
43ff13b4 496{
c5aa993b 497 struct continuation *continuation_ptr;
43ff13b4 498
c5aa993b
JM
499 while (cmd_continuation)
500 {
c5aa993b
JM
501 continuation_ptr = cmd_continuation;
502 cmd_continuation = continuation_ptr->next;
b8c9b27d 503 xfree (continuation_ptr);
c5aa993b 504 }
43ff13b4 505}
c2c6d25f 506
57e687d9 507/* Add a continuation to the continuation list, the global list
c2d11a7d
JM
508 intermediate_continuation. The new continuation will be added at the front.*/
509void
74f832da
KB
510add_intermediate_continuation (void (*continuation_hook)
511 (struct continuation_arg *),
512 struct continuation_arg *arg_list)
c2d11a7d
JM
513{
514 struct continuation *continuation_ptr;
515
8731e58e
AC
516 continuation_ptr =
517 (struct continuation *) xmalloc (sizeof (struct continuation));
c2d11a7d
JM
518 continuation_ptr->continuation_hook = continuation_hook;
519 continuation_ptr->arg_list = arg_list;
520 continuation_ptr->next = intermediate_continuation;
521 intermediate_continuation = continuation_ptr;
522}
523
524/* Walk down the cmd_continuation list, and execute all the
525 continuations. There is a problem though. In some cases new
526 continuations may be added while we are in the middle of this
527 loop. If this happens they will be added in the front, and done
528 before we have a chance of exhausting those that were already
529 there. We need to then save the beginning of the list in a pointer
530 and do the continuations from there on, instead of using the
531 global beginning of list as our iteration pointer.*/
532void
fba45db2 533do_all_intermediate_continuations (void)
c2d11a7d
JM
534{
535 struct continuation *continuation_ptr;
536 struct continuation *saved_continuation;
537
538 /* Copy the list header into another pointer, and set the global
539 list header to null, so that the global list can change as a side
540 effect of invoking the continuations and the processing of
541 the preexisting continuations will not be affected. */
542 continuation_ptr = intermediate_continuation;
543 intermediate_continuation = NULL;
544
545 /* Work now on the list we have set aside. */
546 while (continuation_ptr)
8731e58e
AC
547 {
548 (continuation_ptr->continuation_hook) (continuation_ptr->arg_list);
549 saved_continuation = continuation_ptr;
550 continuation_ptr = continuation_ptr->next;
551 xfree (saved_continuation);
552 }
c2d11a7d
JM
553}
554
c2c6d25f
JM
555/* Walk down the cmd_continuation list, and get rid of all the
556 continuations. */
557void
fba45db2 558discard_all_intermediate_continuations (void)
c2c6d25f
JM
559{
560 struct continuation *continuation_ptr;
561
c2d11a7d 562 while (intermediate_continuation)
c2c6d25f 563 {
c2d11a7d
JM
564 continuation_ptr = intermediate_continuation;
565 intermediate_continuation = continuation_ptr->next;
b8c9b27d 566 xfree (continuation_ptr);
c2c6d25f
JM
567 }
568}
c906108c 569\f
c5aa993b 570
8731e58e 571
f5a96129
AC
572/* Print a warning message. The first argument STRING is the warning
573 message, used as an fprintf format string, the second is the
574 va_list of arguments for that string. A warning is unfiltered (not
575 paginated) so that the user does not need to page through each
576 screen full of warnings when there are lots of them. */
c906108c
SS
577
578void
f5a96129 579vwarning (const char *string, va_list args)
c906108c 580{
9a4105ab
AC
581 if (deprecated_warning_hook)
582 (*deprecated_warning_hook) (string, args);
f5a96129
AC
583 else
584 {
585 target_terminal_ours ();
586 wrap_here (""); /* Force out any buffered output */
587 gdb_flush (gdb_stdout);
588 if (warning_pre_print)
306d9ac5 589 fputs_unfiltered (warning_pre_print, gdb_stderr);
f5a96129
AC
590 vfprintf_unfiltered (gdb_stderr, string, args);
591 fprintf_unfiltered (gdb_stderr, "\n");
592 va_end (args);
593 }
c906108c
SS
594}
595
596/* Print a warning message.
597 The first argument STRING is the warning message, used as a fprintf string,
598 and the remaining args are passed as arguments to it.
599 The primary difference between warnings and errors is that a warning
600 does not force the return to command level. */
601
c906108c 602void
8731e58e 603warning (const char *string, ...)
c906108c
SS
604{
605 va_list args;
c906108c 606 va_start (args, string);
f5a96129
AC
607 vwarning (string, args);
608 va_end (args);
c906108c
SS
609}
610
c906108c
SS
611/* Print an error message and return to command level.
612 The first argument STRING is the error message, used as a fprintf string,
613 and the remaining args are passed as arguments to it. */
614
4ce44c66
JM
615NORETURN void
616verror (const char *string, va_list args)
617{
fffee0be
AC
618 struct ui_file *tmp_stream = mem_fileopen ();
619 make_cleanup_ui_file_delete (tmp_stream);
620 vfprintf_unfiltered (tmp_stream, string, args);
d75e3c94 621 error_stream_1 (tmp_stream, RETURN_ERROR);
4ce44c66
JM
622}
623
c906108c 624NORETURN void
8731e58e 625error (const char *string, ...)
c906108c
SS
626{
627 va_list args;
c906108c 628 va_start (args, string);
4ce44c66
JM
629 verror (string, args);
630 va_end (args);
c906108c
SS
631}
632
d75e3c94
JJ
633/* Print an error message and quit.
634 The first argument STRING is the error message, used as a fprintf string,
635 and the remaining args are passed as arguments to it. */
636
637NORETURN void
638vfatal (const char *string, va_list args)
639{
640 struct ui_file *tmp_stream = mem_fileopen ();
641 make_cleanup_ui_file_delete (tmp_stream);
642 vfprintf_unfiltered (tmp_stream, string, args);
643 error_stream_1 (tmp_stream, RETURN_QUIT);
644}
645
646NORETURN void
647fatal (const char *string, ...)
648{
649 va_list args;
650 va_start (args, string);
651 vfatal (string, args);
652 va_end (args);
653}
654
fffee0be
AC
655static void
656do_write (void *data, const char *buffer, long length_buffer)
657{
658 ui_file_write (data, buffer, length_buffer);
659}
660
4fcef00a
JJ
661/* Cause a silent error to occur. Any error message is recorded
662 though it is not issued. */
663NORETURN void
664error_silent (const char *string, ...)
665{
666 va_list args;
667 struct ui_file *tmp_stream = mem_fileopen ();
668 va_start (args, string);
669 make_cleanup_ui_file_delete (tmp_stream);
670 vfprintf_unfiltered (tmp_stream, string, args);
671 /* Copy the stream into the GDB_LASTERR buffer. */
672 ui_file_rewind (gdb_lasterr);
673 ui_file_put (tmp_stream, do_write, gdb_lasterr);
674 va_end (args);
675
676 throw_exception (RETURN_ERROR);
677}
678
679/* Output an error message including any pre-print text to gdb_stderr. */
680void
681error_output_message (char *pre_print, char *msg)
682{
683 target_terminal_ours ();
684 wrap_here (""); /* Force out any buffered output */
685 gdb_flush (gdb_stdout);
686 annotate_error_begin ();
687 if (pre_print)
688 fputs_filtered (pre_print, gdb_stderr);
689 fputs_filtered (msg, gdb_stderr);
690 fprintf_filtered (gdb_stderr, "\n");
691}
692
d75e3c94
JJ
693static NORETURN void
694error_stream_1 (struct ui_file *stream, enum return_reason reason)
2acceee2 695{
9a4105ab
AC
696 if (deprecated_error_begin_hook)
697 deprecated_error_begin_hook ();
fffee0be
AC
698
699 /* Copy the stream into the GDB_LASTERR buffer. */
700 ui_file_rewind (gdb_lasterr);
701 ui_file_put (stream, do_write, gdb_lasterr);
702
703 /* Write the message plus any error_pre_print to gdb_stderr. */
704 target_terminal_ours ();
705 wrap_here (""); /* Force out any buffered output */
706 gdb_flush (gdb_stdout);
707 annotate_error_begin ();
708 if (error_pre_print)
306d9ac5 709 fputs_filtered (error_pre_print, gdb_stderr);
fffee0be
AC
710 ui_file_put (stream, do_write, gdb_stderr);
711 fprintf_filtered (gdb_stderr, "\n");
712
d75e3c94
JJ
713 throw_exception (reason);
714}
715
716NORETURN void
717error_stream (struct ui_file *stream)
718{
719 error_stream_1 (stream, RETURN_ERROR);
2acceee2
JM
720}
721
722/* Get the last error message issued by gdb */
723
724char *
725error_last_message (void)
726{
4ce44c66 727 long len;
d9fcf2fb 728 return ui_file_xstrdup (gdb_lasterr, &len);
2acceee2 729}
8731e58e 730
2acceee2
JM
731/* This is to be called by main() at the very beginning */
732
733void
734error_init (void)
735{
4ce44c66 736 gdb_lasterr = mem_fileopen ();
2acceee2 737}
c906108c 738
dec43320
AC
739/* Print a message reporting an internal error/warning. Ask the user
740 if they want to continue, dump core, or just exit. Return
741 something to indicate a quit. */
c906108c 742
dec43320 743struct internal_problem
c906108c 744{
dec43320
AC
745 const char *name;
746 /* FIXME: cagney/2002-08-15: There should be ``maint set/show''
747 commands available for controlling these variables. */
748 enum auto_boolean should_quit;
749 enum auto_boolean should_dump_core;
750};
751
752/* Report a problem, internal to GDB, to the user. Once the problem
753 has been reported, and assuming GDB didn't quit, the caller can
754 either allow execution to resume or throw an error. */
755
756static void
757internal_vproblem (struct internal_problem *problem,
8731e58e 758 const char *file, int line, const char *fmt, va_list ap)
dec43320 759{
dec43320 760 static int dejavu;
375fc983 761 int quit_p;
7be570e7 762 int dump_core_p;
714b1282 763 char *reason;
c906108c 764
dec43320 765 /* Don't allow infinite error/warning recursion. */
714b1282
AC
766 {
767 static char msg[] = "Recursive internal problem.\n";
768 switch (dejavu)
769 {
770 case 0:
771 dejavu = 1;
772 break;
773 case 1:
774 dejavu = 2;
775 fputs_unfiltered (msg, gdb_stderr);
776 abort (); /* NOTE: GDB has only three calls to abort(). */
777 default:
778 dejavu = 3;
779 write (STDERR_FILENO, msg, sizeof (msg));
780 exit (1);
781 }
782 }
c906108c 783
dec43320 784 /* Try to get the message out and at the start of a new line. */
4261bedc 785 target_terminal_ours ();
dec43320
AC
786 begin_line ();
787
714b1282
AC
788 /* Create a string containing the full error/warning message. Need
789 to call query with this full string, as otherwize the reason
790 (error/warning) and question become separated. Format using a
791 style similar to a compiler error message. Include extra detail
792 so that the user knows that they are living on the edge. */
793 {
794 char *msg;
e623b504 795 msg = xstrvprintf (fmt, ap);
b435e160 796 reason = xstrprintf ("\
714b1282
AC
797%s:%d: %s: %s\n\
798A problem internal to GDB has been detected,\n\
799further debugging may prove unreliable.", file, line, problem->name, msg);
800 xfree (msg);
801 make_cleanup (xfree, reason);
802 }
7be570e7 803
dec43320
AC
804 switch (problem->should_quit)
805 {
806 case AUTO_BOOLEAN_AUTO:
807 /* Default (yes/batch case) is to quit GDB. When in batch mode
8731e58e
AC
808 this lessens the likelhood of GDB going into an infinate
809 loop. */
714b1282 810 quit_p = query ("%s\nQuit this debugging session? ", reason);
dec43320
AC
811 break;
812 case AUTO_BOOLEAN_TRUE:
813 quit_p = 1;
814 break;
815 case AUTO_BOOLEAN_FALSE:
816 quit_p = 0;
817 break;
818 default:
819 internal_error (__FILE__, __LINE__, "bad switch");
820 }
821
822 switch (problem->should_dump_core)
823 {
824 case AUTO_BOOLEAN_AUTO:
825 /* Default (yes/batch case) is to dump core. This leaves a GDB
8731e58e
AC
826 `dropping' so that it is easier to see that something went
827 wrong in GDB. */
714b1282 828 dump_core_p = query ("%s\nCreate a core file of GDB? ", reason);
dec43320
AC
829 break;
830 break;
831 case AUTO_BOOLEAN_TRUE:
832 dump_core_p = 1;
833 break;
834 case AUTO_BOOLEAN_FALSE:
835 dump_core_p = 0;
836 break;
837 default:
838 internal_error (__FILE__, __LINE__, "bad switch");
839 }
7be570e7 840
375fc983 841 if (quit_p)
7be570e7
JM
842 {
843 if (dump_core_p)
8731e58e 844 abort (); /* NOTE: GDB has only three calls to abort(). */
375fc983
AC
845 else
846 exit (1);
7be570e7
JM
847 }
848 else
849 {
850 if (dump_core_p)
375fc983
AC
851 {
852 if (fork () == 0)
8731e58e 853 abort (); /* NOTE: GDB has only three calls to abort(). */
375fc983 854 }
7be570e7 855 }
96baa820
JM
856
857 dejavu = 0;
dec43320
AC
858}
859
860static struct internal_problem internal_error_problem = {
861 "internal-error", AUTO_BOOLEAN_AUTO, AUTO_BOOLEAN_AUTO
862};
863
864NORETURN void
8731e58e 865internal_verror (const char *file, int line, const char *fmt, va_list ap)
dec43320
AC
866{
867 internal_vproblem (&internal_error_problem, file, line, fmt, ap);
b5a2688f 868 throw_exception (RETURN_ERROR);
c906108c
SS
869}
870
4ce44c66 871NORETURN void
8e65ff28 872internal_error (const char *file, int line, const char *string, ...)
4ce44c66
JM
873{
874 va_list ap;
875 va_start (ap, string);
8e65ff28 876 internal_verror (file, line, string, ap);
4ce44c66
JM
877 va_end (ap);
878}
879
dec43320 880static struct internal_problem internal_warning_problem = {
d833db3b 881 "internal-warning", AUTO_BOOLEAN_AUTO, AUTO_BOOLEAN_AUTO
dec43320
AC
882};
883
884void
8731e58e 885internal_vwarning (const char *file, int line, const char *fmt, va_list ap)
dec43320
AC
886{
887 internal_vproblem (&internal_warning_problem, file, line, fmt, ap);
888}
889
890void
891internal_warning (const char *file, int line, const char *string, ...)
892{
893 va_list ap;
894 va_start (ap, string);
895 internal_vwarning (file, line, string, ap);
896 va_end (ap);
897}
898
c906108c
SS
899/* The strerror() function can return NULL for errno values that are
900 out of range. Provide a "safe" version that always returns a
901 printable string. */
902
903char *
fba45db2 904safe_strerror (int errnum)
c906108c
SS
905{
906 char *msg;
907 static char buf[32];
908
5cb316ef
AC
909 msg = strerror (errnum);
910 if (msg == NULL)
c906108c
SS
911 {
912 sprintf (buf, "(undocumented errno %d)", errnum);
913 msg = buf;
914 }
915 return (msg);
916}
917
c906108c
SS
918/* Print the system error message for errno, and also mention STRING
919 as the file name for which the error was encountered.
920 Then return to command level. */
921
922NORETURN void
6972bc8b 923perror_with_name (const char *string)
c906108c
SS
924{
925 char *err;
926 char *combined;
927
928 err = safe_strerror (errno);
929 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
930 strcpy (combined, string);
931 strcat (combined, ": ");
932 strcat (combined, err);
933
934 /* I understand setting these is a matter of taste. Still, some people
935 may clear errno but not know about bfd_error. Doing this here is not
936 unreasonable. */
937 bfd_set_error (bfd_error_no_error);
938 errno = 0;
939
c5aa993b 940 error ("%s.", combined);
c906108c
SS
941}
942
943/* Print the system error message for ERRCODE, and also mention STRING
944 as the file name for which the error was encountered. */
945
946void
6972bc8b 947print_sys_errmsg (const char *string, int errcode)
c906108c
SS
948{
949 char *err;
950 char *combined;
951
952 err = safe_strerror (errcode);
953 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
954 strcpy (combined, string);
955 strcat (combined, ": ");
956 strcat (combined, err);
957
958 /* We want anything which was printed on stdout to come out first, before
959 this message. */
960 gdb_flush (gdb_stdout);
961 fprintf_unfiltered (gdb_stderr, "%s.\n", combined);
962}
963
964/* Control C eventually causes this to be called, at a convenient time. */
965
966void
fba45db2 967quit (void)
c906108c 968{
819cc324 969 struct serial *gdb_stdout_serial = serial_fdopen (1);
c906108c
SS
970
971 target_terminal_ours ();
972
973 /* We want all output to appear now, before we print "Quit". We
974 have 3 levels of buffering we have to flush (it's possible that
975 some of these should be changed to flush the lower-level ones
976 too): */
977
978 /* 1. The _filtered buffer. */
c5aa993b 979 wrap_here ((char *) 0);
c906108c
SS
980
981 /* 2. The stdio buffer. */
982 gdb_flush (gdb_stdout);
983 gdb_flush (gdb_stderr);
984
985 /* 3. The system-level buffer. */
2cd58942
AC
986 serial_drain_output (gdb_stdout_serial);
987 serial_un_fdopen (gdb_stdout_serial);
c906108c
SS
988
989 annotate_error_begin ();
990
991 /* Don't use *_filtered; we don't want to prompt the user to continue. */
992 if (quit_pre_print)
306d9ac5 993 fputs_unfiltered (quit_pre_print, gdb_stderr);
c906108c 994
7be570e7
JM
995#ifdef __MSDOS__
996 /* No steenking SIGINT will ever be coming our way when the
997 program is resumed. Don't lie. */
998 fprintf_unfiltered (gdb_stderr, "Quit\n");
999#else
c906108c 1000 if (job_control
8731e58e
AC
1001 /* If there is no terminal switching for this target, then we can't
1002 possibly get screwed by the lack of job control. */
c906108c
SS
1003 || current_target.to_terminal_ours == NULL)
1004 fprintf_unfiltered (gdb_stderr, "Quit\n");
1005 else
1006 fprintf_unfiltered (gdb_stderr,
8731e58e 1007 "Quit (expect signal SIGINT when the program is resumed)\n");
7be570e7 1008#endif
b5a2688f 1009 throw_exception (RETURN_QUIT);
c906108c
SS
1010}
1011
c906108c 1012/* Control C comes here */
c906108c 1013void
fba45db2 1014request_quit (int signo)
c906108c
SS
1015{
1016 quit_flag = 1;
1f04aa62
AC
1017 /* Restore the signal handler. Harmless with BSD-style signals,
1018 needed for System V-style signals. */
c906108c
SS
1019 signal (signo, request_quit);
1020
c5aa993b 1021 if (immediate_quit)
c906108c 1022 quit ();
c906108c 1023}
c906108c 1024\f
c906108c
SS
1025/* Called when a memory allocation fails, with the number of bytes of
1026 memory requested in SIZE. */
1027
1028NORETURN void
fba45db2 1029nomem (long size)
c906108c
SS
1030{
1031 if (size > 0)
1032 {
8e65ff28 1033 internal_error (__FILE__, __LINE__,
8731e58e
AC
1034 "virtual memory exhausted: can't allocate %ld bytes.",
1035 size);
c906108c
SS
1036 }
1037 else
1038 {
8731e58e 1039 internal_error (__FILE__, __LINE__, "virtual memory exhausted.");
c906108c
SS
1040 }
1041}
1042
c0e61796
AC
1043/* The xmalloc() (libiberty.h) family of memory management routines.
1044
1045 These are like the ISO-C malloc() family except that they implement
1046 consistent semantics and guard against typical memory management
7936743b 1047 problems. */
c0e61796
AC
1048
1049/* NOTE: These are declared using PTR to ensure consistency with
1050 "libiberty.h". xfree() is GDB local. */
1051
8dbb1c65 1052PTR /* OK: PTR */
c0e61796
AC
1053xmalloc (size_t size)
1054{
7936743b
AC
1055 void *val;
1056
1057 /* See libiberty/xmalloc.c. This function need's to match that's
1058 semantics. It never returns NULL. */
1059 if (size == 0)
1060 size = 1;
1061
1062 val = malloc (size); /* OK: malloc */
1063 if (val == NULL)
1064 nomem (size);
1065
1066 return (val);
c0e61796 1067}
c906108c 1068
8dbb1c65
AC
1069PTR /* OK: PTR */
1070xrealloc (PTR ptr, size_t size) /* OK: PTR */
c906108c 1071{
0efffb96
AC
1072 void *val;
1073
1074 /* See libiberty/xmalloc.c. This function need's to match that's
1075 semantics. It never returns NULL. */
1076 if (size == 0)
1077 size = 1;
1078
1079 if (ptr != NULL)
1080 val = realloc (ptr, size); /* OK: realloc */
1081 else
1082 val = malloc (size); /* OK: malloc */
1083 if (val == NULL)
1084 nomem (size);
1085
1086 return (val);
c906108c 1087}
b8c9b27d 1088
8dbb1c65 1089PTR /* OK: PTR */
c0e61796
AC
1090xcalloc (size_t number, size_t size)
1091{
aa2ee5f6
AC
1092 void *mem;
1093
1094 /* See libiberty/xmalloc.c. This function need's to match that's
1095 semantics. It never returns NULL. */
1096 if (number == 0 || size == 0)
1097 {
1098 number = 1;
1099 size = 1;
1100 }
1101
1102 mem = calloc (number, size); /* OK: xcalloc */
1103 if (mem == NULL)
1104 nomem (number * size);
1105
1106 return mem;
c0e61796 1107}
b8c9b27d
KB
1108
1109void
1110xfree (void *ptr)
1111{
2dc74dc1
AC
1112 if (ptr != NULL)
1113 free (ptr); /* OK: free */
b8c9b27d 1114}
c906108c 1115\f
c5aa993b 1116
76995688
AC
1117/* Like asprintf/vasprintf but get an internal_error if the call
1118 fails. */
1119
9ebf4acf
AC
1120char *
1121xstrprintf (const char *format, ...)
1122{
1123 char *ret;
1124 va_list args;
1125 va_start (args, format);
e623b504 1126 ret = xstrvprintf (format, args);
9ebf4acf
AC
1127 va_end (args);
1128 return ret;
1129}
1130
76995688
AC
1131void
1132xasprintf (char **ret, const char *format, ...)
1133{
1134 va_list args;
1135 va_start (args, format);
e623b504 1136 (*ret) = xstrvprintf (format, args);
76995688
AC
1137 va_end (args);
1138}
1139
1140void
1141xvasprintf (char **ret, const char *format, va_list ap)
1142{
a552edd9 1143 (*ret) = xstrvprintf (format, ap);
76995688
AC
1144}
1145
e623b504
AC
1146char *
1147xstrvprintf (const char *format, va_list ap)
1148{
1149 char *ret = NULL;
1150 int status = vasprintf (&ret, format, ap);
1151 /* NULL is returned when there was a memory allocation problem. */
1152 if (ret == NULL)
1153 nomem (0);
1154 /* A negative status (the printed length) with a non-NULL buffer
1155 should never happen, but just to be sure. */
1156 if (status < 0)
1157 internal_error (__FILE__, __LINE__,
1158 "vasprintf call failed (errno %d)", errno);
1159 return ret;
1160}
76995688 1161
c906108c
SS
1162/* My replacement for the read system call.
1163 Used like `read' but keeps going if `read' returns too soon. */
1164
1165int
fba45db2 1166myread (int desc, char *addr, int len)
c906108c 1167{
52f0bd74 1168 int val;
c906108c
SS
1169 int orglen = len;
1170
1171 while (len > 0)
1172 {
1173 val = read (desc, addr, len);
1174 if (val < 0)
1175 return val;
1176 if (val == 0)
1177 return orglen - len;
1178 len -= val;
1179 addr += val;
1180 }
1181 return orglen;
1182}
1183\f
1184/* Make a copy of the string at PTR with SIZE characters
1185 (and add a null character at the end in the copy).
1186 Uses malloc to get the space. Returns the address of the copy. */
1187
1188char *
5565b556 1189savestring (const char *ptr, size_t size)
c906108c 1190{
52f0bd74 1191 char *p = (char *) xmalloc (size + 1);
c906108c
SS
1192 memcpy (p, ptr, size);
1193 p[size] = 0;
1194 return p;
1195}
1196
c906108c 1197void
aa1ee363 1198print_spaces (int n, 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
ac16bf07 1206gdb_print_host_address (const 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
8731e58e 1223query (const char *ctlstr, ...)
c906108c
SS
1224{
1225 va_list args;
52f0bd74
AC
1226 int answer;
1227 int ans2;
c906108c
SS
1228 int retval;
1229
9a4105ab 1230 if (deprecated_query_hook)
c906108c 1231 {
3e6bb910 1232 va_start (args, ctlstr);
9a4105ab 1233 return deprecated_query_hook (ctlstr, args);
c906108c
SS
1234 }
1235
1236 /* Automatically answer "yes" if input is not from a terminal. */
1237 if (!input_from_terminal_p ())
1238 return 1;
c906108c
SS
1239
1240 while (1)
1241 {
1242 wrap_here (""); /* Flush any buffered output */
1243 gdb_flush (gdb_stdout);
1244
1245 if (annotation_level > 1)
1246 printf_filtered ("\n\032\032pre-query\n");
1247
3e6bb910 1248 va_start (args, ctlstr);
c906108c 1249 vfprintf_filtered (gdb_stdout, ctlstr, args);
3e6bb910 1250 va_end (args);
c906108c
SS
1251 printf_filtered ("(y or n) ");
1252
1253 if (annotation_level > 1)
1254 printf_filtered ("\n\032\032query\n");
1255
c5aa993b 1256 wrap_here ("");
c906108c
SS
1257 gdb_flush (gdb_stdout);
1258
37767e42 1259 answer = fgetc (stdin);
c906108c
SS
1260 clearerr (stdin); /* in case of C-d */
1261 if (answer == EOF) /* C-d */
c5aa993b 1262 {
c906108c
SS
1263 retval = 1;
1264 break;
1265 }
1266 /* Eat rest of input line, to EOF or newline */
37767e42 1267 if (answer != '\n')
c5aa993b 1268 do
c906108c 1269 {
8731e58e 1270 ans2 = fgetc (stdin);
c906108c
SS
1271 clearerr (stdin);
1272 }
c5aa993b 1273 while (ans2 != EOF && ans2 != '\n' && ans2 != '\r');
c906108c
SS
1274
1275 if (answer >= 'a')
1276 answer -= 040;
1277 if (answer == 'Y')
1278 {
1279 retval = 1;
1280 break;
1281 }
1282 if (answer == 'N')
1283 {
1284 retval = 0;
1285 break;
1286 }
1287 printf_filtered ("Please answer y or n.\n");
1288 }
1289
1290 if (annotation_level > 1)
1291 printf_filtered ("\n\032\032post-query\n");
1292 return retval;
1293}
c906108c 1294\f
c5aa993b 1295
cbdeadca
JJ
1296/* This function supports the nquery() and yquery() functions.
1297 Ask user a y-or-n question and return 0 if answer is no, 1 if
1298 answer is yes, or default the answer to the specified default.
1299 DEFCHAR is either 'y' or 'n' and refers to the default answer.
1300 CTLSTR is the control string and should end in "? ". It should
1301 not say how to answer, because we do that.
1302 ARGS are the arguments passed along with the CTLSTR argument to
1303 printf. */
1304
1305static int
1306defaulted_query (const char *ctlstr, const char defchar, va_list args)
1307{
1308 int answer;
1309 int ans2;
1310 int retval;
1311 int def_value;
1312 char def_answer, not_def_answer;
1313 char *y_string, *n_string;
1314
1315 /* Set up according to which answer is the default. */
1316 if (defchar == 'y')
1317 {
1318 def_value = 1;
1319 def_answer = 'Y';
1320 not_def_answer = 'N';
1321 y_string = "[y]";
1322 n_string = "n";
1323 }
1324 else
1325 {
1326 def_value = 0;
1327 def_answer = 'N';
1328 not_def_answer = 'Y';
1329 y_string = "y";
1330 n_string = "[n]";
1331 }
1332
9a4105ab 1333 if (deprecated_query_hook)
cbdeadca 1334 {
9a4105ab 1335 return deprecated_query_hook (ctlstr, args);
cbdeadca
JJ
1336 }
1337
1338 /* Automatically answer default value if input is not from a terminal. */
1339 if (!input_from_terminal_p ())
1340 return def_value;
1341
1342 while (1)
1343 {
1344 wrap_here (""); /* Flush any buffered output */
1345 gdb_flush (gdb_stdout);
1346
1347 if (annotation_level > 1)
7b6be525 1348 printf_filtered ("\n\032\032pre-query\n");
cbdeadca
JJ
1349
1350 vfprintf_filtered (gdb_stdout, ctlstr, args);
1351 printf_filtered ("(%s or %s) ", y_string, n_string);
1352
1353 if (annotation_level > 1)
7b6be525 1354 printf_filtered ("\n\032\032query\n");
cbdeadca
JJ
1355
1356 wrap_here ("");
1357 gdb_flush (gdb_stdout);
1358
1359 answer = fgetc (stdin);
1360 clearerr (stdin); /* in case of C-d */
1361 if (answer == EOF) /* C-d */
1362 {
1363 retval = def_value;
1364 break;
1365 }
1366 /* Eat rest of input line, to EOF or newline */
1367 if (answer != '\n')
1368 do
1369 {
1370 ans2 = fgetc (stdin);
1371 clearerr (stdin);
1372 }
1373 while (ans2 != EOF && ans2 != '\n' && ans2 != '\r');
1374
1375 if (answer >= 'a')
1376 answer -= 040;
1377 /* Check answer. For the non-default, the user must specify
1378 the non-default explicitly. */
1379 if (answer == not_def_answer)
1380 {
1381 retval = !def_value;
1382 break;
1383 }
1384 /* Otherwise, for the default, the user may either specify
1385 the required input or have it default by entering nothing. */
1386 if (answer == def_answer || answer == '\n' ||
1387 answer == '\r' || answer == EOF)
1388 {
1389 retval = def_value;
1390 break;
1391 }
1392 /* Invalid entries are not defaulted and require another selection. */
1393 printf_filtered ("Please answer %s or %s.\n",
1394 y_string, n_string);
1395 }
1396
1397 if (annotation_level > 1)
7b6be525 1398 printf_filtered ("\n\032\032post-query\n");
cbdeadca
JJ
1399 return retval;
1400}
1401\f
1402
1403/* Ask user a y-or-n question and return 0 if answer is no, 1 if
1404 answer is yes, or 0 if answer is defaulted.
1405 Takes three args which are given to printf to print the question.
1406 The first, a control string, should end in "? ".
1407 It should not say how to answer, because we do that. */
1408
1409int
1410nquery (const char *ctlstr, ...)
1411{
1412 va_list args;
1413
1414 va_start (args, ctlstr);
1415 return defaulted_query (ctlstr, 'n', args);
1416 va_end (args);
1417}
1418
1419/* Ask user a y-or-n question and return 0 if answer is no, 1 if
1420 answer is yes, or 1 if answer is defaulted.
1421 Takes three args which are given to printf to print the question.
1422 The first, a control string, should end in "? ".
1423 It should not say how to answer, because we do that. */
1424
1425int
1426yquery (const char *ctlstr, ...)
1427{
1428 va_list args;
1429
1430 va_start (args, ctlstr);
1431 return defaulted_query (ctlstr, 'y', args);
1432 va_end (args);
1433}
1434
234b45d4
KB
1435/* Print an error message saying that we couldn't make sense of a
1436 \^mumble sequence in a string or character constant. START and END
1437 indicate a substring of some larger string that contains the
1438 erroneous backslash sequence, missing the initial backslash. */
1439static NORETURN int
1440no_control_char_error (const char *start, const char *end)
1441{
1442 int len = end - start;
1443 char *copy = alloca (end - start + 1);
1444
1445 memcpy (copy, start, len);
1446 copy[len] = '\0';
1447
1448 error ("There is no control character `\\%s' in the `%s' character set.",
8731e58e 1449 copy, target_charset ());
234b45d4
KB
1450}
1451
c906108c
SS
1452/* Parse a C escape sequence. STRING_PTR points to a variable
1453 containing a pointer to the string to parse. That pointer
1454 should point to the character after the \. That pointer
1455 is updated past the characters we use. The value of the
1456 escape sequence is returned.
1457
1458 A negative value means the sequence \ newline was seen,
1459 which is supposed to be equivalent to nothing at all.
1460
1461 If \ is followed by a null character, we return a negative
1462 value and leave the string pointer pointing at the null character.
1463
1464 If \ is followed by 000, we return 0 and leave the string pointer
1465 after the zeros. A value of 0 does not mean end of string. */
1466
1467int
fba45db2 1468parse_escape (char **string_ptr)
c906108c 1469{
234b45d4 1470 int target_char;
52f0bd74 1471 int c = *(*string_ptr)++;
234b45d4
KB
1472 if (c_parse_backslash (c, &target_char))
1473 return target_char;
8731e58e
AC
1474 else
1475 switch (c)
234b45d4 1476 {
8731e58e
AC
1477 case '\n':
1478 return -2;
1479 case 0:
1480 (*string_ptr)--;
1481 return 0;
1482 case '^':
1483 {
1484 /* Remember where this escape sequence started, for reporting
1485 errors. */
1486 char *sequence_start_pos = *string_ptr - 1;
234b45d4 1487
8731e58e
AC
1488 c = *(*string_ptr)++;
1489
1490 if (c == '?')
1491 {
1492 /* XXXCHARSET: What is `delete' in the host character set? */
1493 c = 0177;
1494
1495 if (!host_char_to_target (c, &target_char))
1496 error ("There is no character corresponding to `Delete' "
1497 "in the target character set `%s'.", host_charset ());
1498
1499 return target_char;
1500 }
1501 else if (c == '\\')
1502 target_char = parse_escape (string_ptr);
1503 else
1504 {
1505 if (!host_char_to_target (c, &target_char))
1506 no_control_char_error (sequence_start_pos, *string_ptr);
1507 }
1508
1509 /* Now target_char is something like `c', and we want to find
1510 its control-character equivalent. */
1511 if (!target_char_to_control_char (target_char, &target_char))
1512 no_control_char_error (sequence_start_pos, *string_ptr);
1513
1514 return target_char;
1515 }
1516
1517 /* XXXCHARSET: we need to use isdigit and value-of-digit
1518 methods of the host character set here. */
1519
1520 case '0':
1521 case '1':
1522 case '2':
1523 case '3':
1524 case '4':
1525 case '5':
1526 case '6':
1527 case '7':
1528 {
aa1ee363
AC
1529 int i = c - '0';
1530 int count = 0;
8731e58e
AC
1531 while (++count < 3)
1532 {
5cb316ef
AC
1533 c = (**string_ptr);
1534 if (c >= '0' && c <= '7')
8731e58e 1535 {
5cb316ef 1536 (*string_ptr)++;
8731e58e
AC
1537 i *= 8;
1538 i += c - '0';
1539 }
1540 else
1541 {
8731e58e
AC
1542 break;
1543 }
1544 }
1545 return i;
1546 }
1547 default:
1548 if (!host_char_to_target (c, &target_char))
1549 error
1550 ("The escape sequence `\%c' is equivalent to plain `%c', which"
1551 " has no equivalent\n" "in the `%s' character set.", c, c,
1552 target_charset ());
1553 return target_char;
c906108c 1554 }
c906108c
SS
1555}
1556\f
1557/* Print the character C on STREAM as part of the contents of a literal
1558 string whose delimiter is QUOTER. Note that this routine should only
1559 be call for printing things which are independent of the language
1560 of the program being debugged. */
1561
43e526b9 1562static void
74f832da
KB
1563printchar (int c, void (*do_fputs) (const char *, struct ui_file *),
1564 void (*do_fprintf) (struct ui_file *, const char *, ...),
1565 struct ui_file *stream, int quoter)
c906108c
SS
1566{
1567
1568 c &= 0xFF; /* Avoid sign bit follies */
1569
c5aa993b
JM
1570 if (c < 0x20 || /* Low control chars */
1571 (c >= 0x7F && c < 0xA0) || /* DEL, High controls */
1572 (sevenbit_strings && c >= 0x80))
1573 { /* high order bit set */
1574 switch (c)
1575 {
1576 case '\n':
43e526b9 1577 do_fputs ("\\n", stream);
c5aa993b
JM
1578 break;
1579 case '\b':
43e526b9 1580 do_fputs ("\\b", stream);
c5aa993b
JM
1581 break;
1582 case '\t':
43e526b9 1583 do_fputs ("\\t", stream);
c5aa993b
JM
1584 break;
1585 case '\f':
43e526b9 1586 do_fputs ("\\f", stream);
c5aa993b
JM
1587 break;
1588 case '\r':
43e526b9 1589 do_fputs ("\\r", stream);
c5aa993b
JM
1590 break;
1591 case '\033':
43e526b9 1592 do_fputs ("\\e", stream);
c5aa993b
JM
1593 break;
1594 case '\007':
43e526b9 1595 do_fputs ("\\a", stream);
c5aa993b
JM
1596 break;
1597 default:
43e526b9 1598 do_fprintf (stream, "\\%.3o", (unsigned int) c);
c5aa993b
JM
1599 break;
1600 }
1601 }
1602 else
1603 {
1604 if (c == '\\' || c == quoter)
43e526b9
JM
1605 do_fputs ("\\", stream);
1606 do_fprintf (stream, "%c", c);
c5aa993b 1607 }
c906108c 1608}
43e526b9
JM
1609
1610/* Print the character C on STREAM as part of the contents of a
1611 literal string whose delimiter is QUOTER. Note that these routines
1612 should only be call for printing things which are independent of
1613 the language of the program being debugged. */
1614
1615void
fba45db2 1616fputstr_filtered (const char *str, int quoter, struct ui_file *stream)
43e526b9
JM
1617{
1618 while (*str)
1619 printchar (*str++, fputs_filtered, fprintf_filtered, stream, quoter);
1620}
1621
1622void
fba45db2 1623fputstr_unfiltered (const char *str, int quoter, struct ui_file *stream)
43e526b9
JM
1624{
1625 while (*str)
1626 printchar (*str++, fputs_unfiltered, fprintf_unfiltered, stream, quoter);
1627}
1628
1629void
8731e58e
AC
1630fputstrn_unfiltered (const char *str, int n, int quoter,
1631 struct ui_file *stream)
43e526b9
JM
1632{
1633 int i;
1634 for (i = 0; i < n; i++)
1635 printchar (str[i], fputs_unfiltered, fprintf_unfiltered, stream, quoter);
1636}
c906108c 1637\f
c5aa993b 1638
c906108c
SS
1639/* Number of lines per page or UINT_MAX if paging is disabled. */
1640static unsigned int lines_per_page;
eb0d3137 1641
cbfbd72a 1642/* Number of chars per line or UINT_MAX if line folding is disabled. */
c906108c 1643static unsigned int chars_per_line;
eb0d3137 1644
c906108c
SS
1645/* Current count of lines printed on this page, chars on this line. */
1646static unsigned int lines_printed, chars_printed;
1647
1648/* Buffer and start column of buffered text, for doing smarter word-
1649 wrapping. When someone calls wrap_here(), we start buffering output
1650 that comes through fputs_filtered(). If we see a newline, we just
1651 spit it out and forget about the wrap_here(). If we see another
1652 wrap_here(), we spit it out and remember the newer one. If we see
1653 the end of the line, we spit out a newline, the indent, and then
1654 the buffered output. */
1655
1656/* Malloc'd buffer with chars_per_line+2 bytes. Contains characters which
1657 are waiting to be output (they have already been counted in chars_printed).
1658 When wrap_buffer[0] is null, the buffer is empty. */
1659static char *wrap_buffer;
1660
1661/* Pointer in wrap_buffer to the next character to fill. */
1662static char *wrap_pointer;
1663
1664/* String to indent by if the wrap occurs. Must not be NULL if wrap_column
1665 is non-zero. */
1666static char *wrap_indent;
1667
1668/* Column number on the screen where wrap_buffer begins, or 0 if wrapping
1669 is not in effect. */
1670static int wrap_column;
c906108c 1671\f
c5aa993b 1672
eb0d3137
MK
1673/* Inialize the number of lines per page and chars per line. */
1674
c906108c 1675void
fba45db2 1676init_page_info (void)
c906108c
SS
1677{
1678#if defined(TUI)
5ecb1806 1679 if (!tui_get_command_dimension (&chars_per_line, &lines_per_page))
c906108c
SS
1680#endif
1681 {
eb0d3137 1682 int rows, cols;
c906108c 1683
ec145965
EZ
1684#if defined(__GO32__)
1685 rows = ScreenRows ();
1686 cols = ScreenCols ();
1687 lines_per_page = rows;
1688 chars_per_line = cols;
1689#else
eb0d3137
MK
1690 /* Make sure Readline has initialized its terminal settings. */
1691 rl_reset_terminal (NULL);
c906108c 1692
eb0d3137
MK
1693 /* Get the screen size from Readline. */
1694 rl_get_screen_size (&rows, &cols);
1695 lines_per_page = rows;
1696 chars_per_line = cols;
c906108c 1697
eb0d3137
MK
1698 /* Readline should have fetched the termcap entry for us. */
1699 if (tgetnum ("li") < 0 || getenv ("EMACS"))
1700 {
1701 /* The number of lines per page is not mentioned in the
1702 terminal description. This probably means that paging is
1703 not useful (e.g. emacs shell window), so disable paging. */
1704 lines_per_page = UINT_MAX;
1705 }
c906108c 1706
eb0d3137 1707 /* FIXME: Get rid of this junk. */
c906108c 1708#if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
c906108c
SS
1709 SIGWINCH_HANDLER (SIGWINCH);
1710#endif
eb0d3137 1711
c906108c 1712 /* If the output is not a terminal, don't paginate it. */
d9fcf2fb 1713 if (!ui_file_isatty (gdb_stdout))
c5aa993b 1714 lines_per_page = UINT_MAX;
eb0d3137 1715#endif
ec145965 1716 }
eb0d3137
MK
1717
1718 set_screen_size ();
c5aa993b 1719 set_width ();
c906108c
SS
1720}
1721
eb0d3137
MK
1722/* Set the screen size based on LINES_PER_PAGE and CHARS_PER_LINE. */
1723
1724static void
1725set_screen_size (void)
1726{
1727 int rows = lines_per_page;
1728 int cols = chars_per_line;
1729
1730 if (rows <= 0)
1731 rows = INT_MAX;
1732
1733 if (cols <= 0)
1734 rl_get_screen_size (NULL, &cols);
1735
1736 /* Update Readline's idea of the terminal size. */
1737 rl_set_screen_size (rows, cols);
1738}
1739
1740/* Reinitialize WRAP_BUFFER according to the current value of
1741 CHARS_PER_LINE. */
1742
c906108c 1743static void
fba45db2 1744set_width (void)
c906108c
SS
1745{
1746 if (chars_per_line == 0)
c5aa993b 1747 init_page_info ();
c906108c
SS
1748
1749 if (!wrap_buffer)
1750 {
1751 wrap_buffer = (char *) xmalloc (chars_per_line + 2);
1752 wrap_buffer[0] = '\0';
1753 }
1754 else
1755 wrap_buffer = (char *) xrealloc (wrap_buffer, chars_per_line + 2);
eb0d3137 1756 wrap_pointer = wrap_buffer; /* Start it at the beginning. */
c906108c
SS
1757}
1758
c5aa993b 1759static void
fba45db2 1760set_width_command (char *args, int from_tty, struct cmd_list_element *c)
c906108c 1761{
eb0d3137 1762 set_screen_size ();
c906108c
SS
1763 set_width ();
1764}
1765
eb0d3137
MK
1766static void
1767set_height_command (char *args, int from_tty, struct cmd_list_element *c)
1768{
1769 set_screen_size ();
1770}
1771
c906108c
SS
1772/* Wait, so the user can read what's on the screen. Prompt the user
1773 to continue by pressing RETURN. */
1774
1775static void
fba45db2 1776prompt_for_continue (void)
c906108c
SS
1777{
1778 char *ignore;
1779 char cont_prompt[120];
1780
1781 if (annotation_level > 1)
1782 printf_unfiltered ("\n\032\032pre-prompt-for-continue\n");
1783
1784 strcpy (cont_prompt,
1785 "---Type <return> to continue, or q <return> to quit---");
1786 if (annotation_level > 1)
1787 strcat (cont_prompt, "\n\032\032prompt-for-continue\n");
1788
1789 /* We must do this *before* we call gdb_readline, else it will eventually
1790 call us -- thinking that we're trying to print beyond the end of the
1791 screen. */
1792 reinitialize_more_filter ();
1793
1794 immediate_quit++;
1795 /* On a real operating system, the user can quit with SIGINT.
1796 But not on GO32.
1797
1798 'q' is provided on all systems so users don't have to change habits
1799 from system to system, and because telling them what to do in
1800 the prompt is more user-friendly than expecting them to think of
1801 SIGINT. */
1802 /* Call readline, not gdb_readline, because GO32 readline handles control-C
1803 whereas control-C to gdb_readline will cause the user to get dumped
1804 out to DOS. */
b4f5539f 1805 ignore = gdb_readline_wrapper (cont_prompt);
c906108c
SS
1806
1807 if (annotation_level > 1)
1808 printf_unfiltered ("\n\032\032post-prompt-for-continue\n");
1809
1810 if (ignore)
1811 {
1812 char *p = ignore;
1813 while (*p == ' ' || *p == '\t')
1814 ++p;
1815 if (p[0] == 'q')
362646f5 1816 async_request_quit (0);
b8c9b27d 1817 xfree (ignore);
c906108c
SS
1818 }
1819 immediate_quit--;
1820
1821 /* Now we have to do this again, so that GDB will know that it doesn't
1822 need to save the ---Type <return>--- line at the top of the screen. */
1823 reinitialize_more_filter ();
1824
1825 dont_repeat (); /* Forget prev cmd -- CR won't repeat it. */
1826}
1827
1828/* Reinitialize filter; ie. tell it to reset to original values. */
1829
1830void
fba45db2 1831reinitialize_more_filter (void)
c906108c
SS
1832{
1833 lines_printed = 0;
1834 chars_printed = 0;
1835}
1836
1837/* Indicate that if the next sequence of characters overflows the line,
1838 a newline should be inserted here rather than when it hits the end.
1839 If INDENT is non-null, it is a string to be printed to indent the
1840 wrapped part on the next line. INDENT must remain accessible until
1841 the next call to wrap_here() or until a newline is printed through
1842 fputs_filtered().
1843
1844 If the line is already overfull, we immediately print a newline and
1845 the indentation, and disable further wrapping.
1846
1847 If we don't know the width of lines, but we know the page height,
1848 we must not wrap words, but should still keep track of newlines
1849 that were explicitly printed.
1850
1851 INDENT should not contain tabs, as that will mess up the char count
1852 on the next line. FIXME.
1853
1854 This routine is guaranteed to force out any output which has been
1855 squirreled away in the wrap_buffer, so wrap_here ((char *)0) can be
1856 used to force out output from the wrap_buffer. */
1857
1858void
fba45db2 1859wrap_here (char *indent)
c906108c
SS
1860{
1861 /* This should have been allocated, but be paranoid anyway. */
1862 if (!wrap_buffer)
e1e9e218 1863 internal_error (__FILE__, __LINE__, "failed internal consistency check");
c906108c
SS
1864
1865 if (wrap_buffer[0])
1866 {
1867 *wrap_pointer = '\0';
1868 fputs_unfiltered (wrap_buffer, gdb_stdout);
1869 }
1870 wrap_pointer = wrap_buffer;
1871 wrap_buffer[0] = '\0';
c5aa993b 1872 if (chars_per_line == UINT_MAX) /* No line overflow checking */
c906108c
SS
1873 {
1874 wrap_column = 0;
1875 }
1876 else if (chars_printed >= chars_per_line)
1877 {
1878 puts_filtered ("\n");
1879 if (indent != NULL)
1880 puts_filtered (indent);
1881 wrap_column = 0;
1882 }
1883 else
1884 {
1885 wrap_column = chars_printed;
1886 if (indent == NULL)
1887 wrap_indent = "";
1888 else
1889 wrap_indent = indent;
1890 }
1891}
1892
4a351cef
AF
1893/* Print input string to gdb_stdout, filtered, with wrap,
1894 arranging strings in columns of n chars. String can be
1895 right or left justified in the column. Never prints
1896 trailing spaces. String should never be longer than
1897 width. FIXME: this could be useful for the EXAMINE
1898 command, which currently doesn't tabulate very well */
1899
1900void
1901puts_filtered_tabular (char *string, int width, int right)
1902{
1903 int spaces = 0;
1904 int stringlen;
1905 char *spacebuf;
1906
1907 gdb_assert (chars_per_line > 0);
1908 if (chars_per_line == UINT_MAX)
1909 {
1910 fputs_filtered (string, gdb_stdout);
1911 fputs_filtered ("\n", gdb_stdout);
1912 return;
1913 }
1914
1915 if (((chars_printed - 1) / width + 2) * width >= chars_per_line)
1916 fputs_filtered ("\n", gdb_stdout);
1917
1918 if (width >= chars_per_line)
1919 width = chars_per_line - 1;
1920
1921 stringlen = strlen (string);
1922
1923 if (chars_printed > 0)
1924 spaces = width - (chars_printed - 1) % width - 1;
1925 if (right)
1926 spaces += width - stringlen;
1927
1928 spacebuf = alloca (spaces + 1);
1929 spacebuf[spaces] = '\0';
1930 while (spaces--)
1931 spacebuf[spaces] = ' ';
1932
1933 fputs_filtered (spacebuf, gdb_stdout);
1934 fputs_filtered (string, gdb_stdout);
1935}
1936
1937
c906108c
SS
1938/* Ensure that whatever gets printed next, using the filtered output
1939 commands, starts at the beginning of the line. I.E. if there is
1940 any pending output for the current line, flush it and start a new
1941 line. Otherwise do nothing. */
1942
1943void
fba45db2 1944begin_line (void)
c906108c
SS
1945{
1946 if (chars_printed > 0)
1947 {
1948 puts_filtered ("\n");
1949 }
1950}
1951
ac9a91a7 1952
c906108c
SS
1953/* Like fputs but if FILTER is true, pause after every screenful.
1954
1955 Regardless of FILTER can wrap at points other than the final
1956 character of a line.
1957
1958 Unlike fputs, fputs_maybe_filtered does not return a value.
1959 It is OK for LINEBUFFER to be NULL, in which case just don't print
1960 anything.
1961
1962 Note that a longjmp to top level may occur in this routine (only if
1963 FILTER is true) (since prompt_for_continue may do so) so this
1964 routine should not be called when cleanups are not in place. */
1965
1966static void
fba45db2
KB
1967fputs_maybe_filtered (const char *linebuffer, struct ui_file *stream,
1968 int filter)
c906108c
SS
1969{
1970 const char *lineptr;
1971
1972 if (linebuffer == 0)
1973 return;
1974
1975 /* Don't do any filtering if it is disabled. */
7a292a7a 1976 if ((stream != gdb_stdout) || !pagination_enabled
c5aa993b 1977 || (lines_per_page == UINT_MAX && chars_per_line == UINT_MAX))
c906108c
SS
1978 {
1979 fputs_unfiltered (linebuffer, stream);
1980 return;
1981 }
1982
1983 /* Go through and output each character. Show line extension
1984 when this is necessary; prompt user for new page when this is
1985 necessary. */
c5aa993b 1986
c906108c
SS
1987 lineptr = linebuffer;
1988 while (*lineptr)
1989 {
1990 /* Possible new page. */
8731e58e 1991 if (filter && (lines_printed >= lines_per_page - 1))
c906108c
SS
1992 prompt_for_continue ();
1993
1994 while (*lineptr && *lineptr != '\n')
1995 {
1996 /* Print a single line. */
1997 if (*lineptr == '\t')
1998 {
1999 if (wrap_column)
2000 *wrap_pointer++ = '\t';
2001 else
2002 fputc_unfiltered ('\t', stream);
2003 /* Shifting right by 3 produces the number of tab stops
2004 we have already passed, and then adding one and
c5aa993b 2005 shifting left 3 advances to the next tab stop. */
c906108c
SS
2006 chars_printed = ((chars_printed >> 3) + 1) << 3;
2007 lineptr++;
2008 }
2009 else
2010 {
2011 if (wrap_column)
2012 *wrap_pointer++ = *lineptr;
2013 else
c5aa993b 2014 fputc_unfiltered (*lineptr, stream);
c906108c
SS
2015 chars_printed++;
2016 lineptr++;
2017 }
c5aa993b 2018
c906108c
SS
2019 if (chars_printed >= chars_per_line)
2020 {
2021 unsigned int save_chars = chars_printed;
2022
2023 chars_printed = 0;
2024 lines_printed++;
2025 /* If we aren't actually wrapping, don't output newline --
c5aa993b
JM
2026 if chars_per_line is right, we probably just overflowed
2027 anyway; if it's wrong, let us keep going. */
c906108c
SS
2028 if (wrap_column)
2029 fputc_unfiltered ('\n', stream);
2030
2031 /* Possible new page. */
2032 if (lines_printed >= lines_per_page - 1)
2033 prompt_for_continue ();
2034
2035 /* Now output indentation and wrapped string */
2036 if (wrap_column)
2037 {
2038 fputs_unfiltered (wrap_indent, stream);
8731e58e 2039 *wrap_pointer = '\0'; /* Null-terminate saved stuff */
c5aa993b 2040 fputs_unfiltered (wrap_buffer, stream); /* and eject it */
c906108c
SS
2041 /* FIXME, this strlen is what prevents wrap_indent from
2042 containing tabs. However, if we recurse to print it
2043 and count its chars, we risk trouble if wrap_indent is
2044 longer than (the user settable) chars_per_line.
2045 Note also that this can set chars_printed > chars_per_line
2046 if we are printing a long string. */
2047 chars_printed = strlen (wrap_indent)
c5aa993b 2048 + (save_chars - wrap_column);
c906108c
SS
2049 wrap_pointer = wrap_buffer; /* Reset buffer */
2050 wrap_buffer[0] = '\0';
c5aa993b
JM
2051 wrap_column = 0; /* And disable fancy wrap */
2052 }
c906108c
SS
2053 }
2054 }
2055
2056 if (*lineptr == '\n')
2057 {
2058 chars_printed = 0;
c5aa993b 2059 wrap_here ((char *) 0); /* Spit out chars, cancel further wraps */
c906108c
SS
2060 lines_printed++;
2061 fputc_unfiltered ('\n', stream);
2062 lineptr++;
2063 }
2064 }
2065}
2066
2067void
fba45db2 2068fputs_filtered (const char *linebuffer, struct ui_file *stream)
c906108c
SS
2069{
2070 fputs_maybe_filtered (linebuffer, stream, 1);
2071}
2072
2073int
fba45db2 2074putchar_unfiltered (int c)
c906108c 2075{
11cf8741 2076 char buf = c;
d9fcf2fb 2077 ui_file_write (gdb_stdout, &buf, 1);
c906108c
SS
2078 return c;
2079}
2080
d1f4cff8
AC
2081/* Write character C to gdb_stdout using GDB's paging mechanism and return C.
2082 May return nonlocally. */
2083
2084int
2085putchar_filtered (int c)
2086{
2087 return fputc_filtered (c, gdb_stdout);
2088}
2089
c906108c 2090int
fba45db2 2091fputc_unfiltered (int c, struct ui_file *stream)
c906108c 2092{
11cf8741 2093 char buf = c;
d9fcf2fb 2094 ui_file_write (stream, &buf, 1);
c906108c
SS
2095 return c;
2096}
2097
2098int
fba45db2 2099fputc_filtered (int c, struct ui_file *stream)
c906108c
SS
2100{
2101 char buf[2];
2102
2103 buf[0] = c;
2104 buf[1] = 0;
2105 fputs_filtered (buf, stream);
2106 return c;
2107}
2108
2109/* puts_debug is like fputs_unfiltered, except it prints special
2110 characters in printable fashion. */
2111
2112void
fba45db2 2113puts_debug (char *prefix, char *string, char *suffix)
c906108c
SS
2114{
2115 int ch;
2116
2117 /* Print prefix and suffix after each line. */
2118 static int new_line = 1;
2119 static int return_p = 0;
2120 static char *prev_prefix = "";
2121 static char *prev_suffix = "";
2122
2123 if (*string == '\n')
2124 return_p = 0;
2125
2126 /* If the prefix is changing, print the previous suffix, a new line,
2127 and the new prefix. */
c5aa993b 2128 if ((return_p || (strcmp (prev_prefix, prefix) != 0)) && !new_line)
c906108c 2129 {
9846de1b
JM
2130 fputs_unfiltered (prev_suffix, gdb_stdlog);
2131 fputs_unfiltered ("\n", gdb_stdlog);
2132 fputs_unfiltered (prefix, gdb_stdlog);
c906108c
SS
2133 }
2134
2135 /* Print prefix if we printed a newline during the previous call. */
2136 if (new_line)
2137 {
2138 new_line = 0;
9846de1b 2139 fputs_unfiltered (prefix, gdb_stdlog);
c906108c
SS
2140 }
2141
2142 prev_prefix = prefix;
2143 prev_suffix = suffix;
2144
2145 /* Output characters in a printable format. */
2146 while ((ch = *string++) != '\0')
2147 {
2148 switch (ch)
c5aa993b 2149 {
c906108c
SS
2150 default:
2151 if (isprint (ch))
9846de1b 2152 fputc_unfiltered (ch, gdb_stdlog);
c906108c
SS
2153
2154 else
9846de1b 2155 fprintf_unfiltered (gdb_stdlog, "\\x%02x", ch & 0xff);
c906108c
SS
2156 break;
2157
c5aa993b
JM
2158 case '\\':
2159 fputs_unfiltered ("\\\\", gdb_stdlog);
2160 break;
2161 case '\b':
2162 fputs_unfiltered ("\\b", gdb_stdlog);
2163 break;
2164 case '\f':
2165 fputs_unfiltered ("\\f", gdb_stdlog);
2166 break;
2167 case '\n':
2168 new_line = 1;
2169 fputs_unfiltered ("\\n", gdb_stdlog);
2170 break;
2171 case '\r':
2172 fputs_unfiltered ("\\r", gdb_stdlog);
2173 break;
2174 case '\t':
2175 fputs_unfiltered ("\\t", gdb_stdlog);
2176 break;
2177 case '\v':
2178 fputs_unfiltered ("\\v", gdb_stdlog);
2179 break;
2180 }
c906108c
SS
2181
2182 return_p = ch == '\r';
2183 }
2184
2185 /* Print suffix if we printed a newline. */
2186 if (new_line)
2187 {
9846de1b
JM
2188 fputs_unfiltered (suffix, gdb_stdlog);
2189 fputs_unfiltered ("\n", gdb_stdlog);
c906108c
SS
2190 }
2191}
2192
2193
2194/* Print a variable number of ARGS using format FORMAT. If this
2195 information is going to put the amount written (since the last call
2196 to REINITIALIZE_MORE_FILTER or the last page break) over the page size,
2197 call prompt_for_continue to get the users permision to continue.
2198
2199 Unlike fprintf, this function does not return a value.
2200
2201 We implement three variants, vfprintf (takes a vararg list and stream),
2202 fprintf (takes a stream to write on), and printf (the usual).
2203
2204 Note also that a longjmp to top level may occur in this routine
2205 (since prompt_for_continue may do so) so this routine should not be
2206 called when cleanups are not in place. */
2207
2208static void
fba45db2
KB
2209vfprintf_maybe_filtered (struct ui_file *stream, const char *format,
2210 va_list args, int filter)
c906108c
SS
2211{
2212 char *linebuffer;
2213 struct cleanup *old_cleanups;
2214
e623b504 2215 linebuffer = xstrvprintf (format, args);
b8c9b27d 2216 old_cleanups = make_cleanup (xfree, linebuffer);
c906108c
SS
2217 fputs_maybe_filtered (linebuffer, stream, filter);
2218 do_cleanups (old_cleanups);
2219}
2220
2221
2222void
fba45db2 2223vfprintf_filtered (struct ui_file *stream, const char *format, va_list args)
c906108c
SS
2224{
2225 vfprintf_maybe_filtered (stream, format, args, 1);
2226}
2227
2228void
fba45db2 2229vfprintf_unfiltered (struct ui_file *stream, const char *format, va_list args)
c906108c
SS
2230{
2231 char *linebuffer;
2232 struct cleanup *old_cleanups;
2233
e623b504 2234 linebuffer = xstrvprintf (format, args);
b8c9b27d 2235 old_cleanups = make_cleanup (xfree, linebuffer);
c906108c
SS
2236 fputs_unfiltered (linebuffer, stream);
2237 do_cleanups (old_cleanups);
2238}
2239
2240void
fba45db2 2241vprintf_filtered (const char *format, va_list args)
c906108c
SS
2242{
2243 vfprintf_maybe_filtered (gdb_stdout, format, args, 1);
2244}
2245
2246void
fba45db2 2247vprintf_unfiltered (const char *format, va_list args)
c906108c
SS
2248{
2249 vfprintf_unfiltered (gdb_stdout, format, args);
2250}
2251
c906108c 2252void
8731e58e 2253fprintf_filtered (struct ui_file *stream, const char *format, ...)
c906108c
SS
2254{
2255 va_list args;
c906108c 2256 va_start (args, format);
c906108c
SS
2257 vfprintf_filtered (stream, format, args);
2258 va_end (args);
2259}
2260
c906108c 2261void
8731e58e 2262fprintf_unfiltered (struct ui_file *stream, const char *format, ...)
c906108c
SS
2263{
2264 va_list args;
c906108c 2265 va_start (args, format);
c906108c
SS
2266 vfprintf_unfiltered (stream, format, args);
2267 va_end (args);
2268}
2269
2270/* Like fprintf_filtered, but prints its result indented.
2271 Called as fprintfi_filtered (spaces, stream, format, ...); */
2272
c906108c 2273void
8731e58e
AC
2274fprintfi_filtered (int spaces, struct ui_file *stream, const char *format,
2275 ...)
c906108c
SS
2276{
2277 va_list args;
c906108c 2278 va_start (args, format);
c906108c
SS
2279 print_spaces_filtered (spaces, stream);
2280
2281 vfprintf_filtered (stream, format, args);
2282 va_end (args);
2283}
2284
2285
c906108c 2286void
8731e58e 2287printf_filtered (const char *format, ...)
c906108c
SS
2288{
2289 va_list args;
c906108c 2290 va_start (args, format);
c906108c
SS
2291 vfprintf_filtered (gdb_stdout, format, args);
2292 va_end (args);
2293}
2294
2295
c906108c 2296void
8731e58e 2297printf_unfiltered (const char *format, ...)
c906108c
SS
2298{
2299 va_list args;
c906108c 2300 va_start (args, format);
c906108c
SS
2301 vfprintf_unfiltered (gdb_stdout, format, args);
2302 va_end (args);
2303}
2304
2305/* Like printf_filtered, but prints it's result indented.
2306 Called as printfi_filtered (spaces, format, ...); */
2307
c906108c 2308void
8731e58e 2309printfi_filtered (int spaces, const char *format, ...)
c906108c
SS
2310{
2311 va_list args;
c906108c 2312 va_start (args, format);
c906108c
SS
2313 print_spaces_filtered (spaces, gdb_stdout);
2314 vfprintf_filtered (gdb_stdout, format, args);
2315 va_end (args);
2316}
2317
2318/* Easy -- but watch out!
2319
2320 This routine is *not* a replacement for puts()! puts() appends a newline.
2321 This one doesn't, and had better not! */
2322
2323void
fba45db2 2324puts_filtered (const char *string)
c906108c
SS
2325{
2326 fputs_filtered (string, gdb_stdout);
2327}
2328
2329void
fba45db2 2330puts_unfiltered (const char *string)
c906108c
SS
2331{
2332 fputs_unfiltered (string, gdb_stdout);
2333}
2334
2335/* Return a pointer to N spaces and a null. The pointer is good
2336 until the next call to here. */
2337char *
fba45db2 2338n_spaces (int n)
c906108c 2339{
392a587b
JM
2340 char *t;
2341 static char *spaces = 0;
2342 static int max_spaces = -1;
c906108c
SS
2343
2344 if (n > max_spaces)
2345 {
2346 if (spaces)
b8c9b27d 2347 xfree (spaces);
c5aa993b
JM
2348 spaces = (char *) xmalloc (n + 1);
2349 for (t = spaces + n; t != spaces;)
c906108c
SS
2350 *--t = ' ';
2351 spaces[n] = '\0';
2352 max_spaces = n;
2353 }
2354
2355 return spaces + max_spaces - n;
2356}
2357
2358/* Print N spaces. */
2359void
fba45db2 2360print_spaces_filtered (int n, struct ui_file *stream)
c906108c
SS
2361{
2362 fputs_filtered (n_spaces (n), stream);
2363}
2364\f
4a351cef 2365/* C++/ObjC demangler stuff. */
c906108c 2366
389e51db
AC
2367/* fprintf_symbol_filtered attempts to demangle NAME, a symbol in language
2368 LANG, using demangling args ARG_MODE, and print it filtered to STREAM.
2369 If the name is not mangled, or the language for the name is unknown, or
2370 demangling is off, the name is printed in its "raw" form. */
c906108c
SS
2371
2372void
8731e58e
AC
2373fprintf_symbol_filtered (struct ui_file *stream, char *name,
2374 enum language lang, int arg_mode)
c906108c
SS
2375{
2376 char *demangled;
2377
2378 if (name != NULL)
2379 {
2380 /* If user wants to see raw output, no problem. */
2381 if (!demangle)
2382 {
2383 fputs_filtered (name, stream);
2384 }
2385 else
2386 {
9a3d7dfd 2387 demangled = language_demangle (language_def (lang), name, arg_mode);
c906108c
SS
2388 fputs_filtered (demangled ? demangled : name, stream);
2389 if (demangled != NULL)
2390 {
b8c9b27d 2391 xfree (demangled);
c906108c
SS
2392 }
2393 }
2394 }
2395}
2396
2397/* Do a strcmp() type operation on STRING1 and STRING2, ignoring any
2398 differences in whitespace. Returns 0 if they match, non-zero if they
2399 don't (slightly different than strcmp()'s range of return values).
c5aa993b 2400
c906108c
SS
2401 As an extra hack, string1=="FOO(ARGS)" matches string2=="FOO".
2402 This "feature" is useful when searching for matching C++ function names
2403 (such as if the user types 'break FOO', where FOO is a mangled C++
2404 function). */
2405
2406int
fba45db2 2407strcmp_iw (const char *string1, const char *string2)
c906108c
SS
2408{
2409 while ((*string1 != '\0') && (*string2 != '\0'))
2410 {
2411 while (isspace (*string1))
2412 {
2413 string1++;
2414 }
2415 while (isspace (*string2))
2416 {
2417 string2++;
2418 }
2419 if (*string1 != *string2)
2420 {
2421 break;
2422 }
2423 if (*string1 != '\0')
2424 {
2425 string1++;
2426 string2++;
2427 }
2428 }
2429 return (*string1 != '\0' && *string1 != '(') || (*string2 != '\0');
2430}
2de7ced7 2431
0fe19209
DC
2432/* This is like strcmp except that it ignores whitespace and treats
2433 '(' as the first non-NULL character in terms of ordering. Like
2434 strcmp (and unlike strcmp_iw), it returns negative if STRING1 <
2435 STRING2, 0 if STRING2 = STRING2, and positive if STRING1 > STRING2
2436 according to that ordering.
2437
2438 If a list is sorted according to this function and if you want to
2439 find names in the list that match some fixed NAME according to
2440 strcmp_iw(LIST_ELT, NAME), then the place to start looking is right
2441 where this function would put NAME.
2442
2443 Here are some examples of why using strcmp to sort is a bad idea:
2444
2445 Whitespace example:
2446
2447 Say your partial symtab contains: "foo<char *>", "goo". Then, if
2448 we try to do a search for "foo<char*>", strcmp will locate this
2449 after "foo<char *>" and before "goo". Then lookup_partial_symbol
2450 will start looking at strings beginning with "goo", and will never
2451 see the correct match of "foo<char *>".
2452
2453 Parenthesis example:
2454
2455 In practice, this is less like to be an issue, but I'll give it a
2456 shot. Let's assume that '$' is a legitimate character to occur in
2457 symbols. (Which may well even be the case on some systems.) Then
2458 say that the partial symbol table contains "foo$" and "foo(int)".
2459 strcmp will put them in this order, since '$' < '('. Now, if the
2460 user searches for "foo", then strcmp will sort "foo" before "foo$".
2461 Then lookup_partial_symbol will notice that strcmp_iw("foo$",
2462 "foo") is false, so it won't proceed to the actual match of
2463 "foo(int)" with "foo". */
2464
2465int
2466strcmp_iw_ordered (const char *string1, const char *string2)
2467{
2468 while ((*string1 != '\0') && (*string2 != '\0'))
2469 {
2470 while (isspace (*string1))
2471 {
2472 string1++;
2473 }
2474 while (isspace (*string2))
2475 {
2476 string2++;
2477 }
2478 if (*string1 != *string2)
2479 {
2480 break;
2481 }
2482 if (*string1 != '\0')
2483 {
2484 string1++;
2485 string2++;
2486 }
2487 }
2488
2489 switch (*string1)
2490 {
2491 /* Characters are non-equal unless they're both '\0'; we want to
2492 make sure we get the comparison right according to our
2493 comparison in the cases where one of them is '\0' or '('. */
2494 case '\0':
2495 if (*string2 == '\0')
2496 return 0;
2497 else
2498 return -1;
2499 case '(':
2500 if (*string2 == '\0')
2501 return 1;
2502 else
2503 return -1;
2504 default:
2505 if (*string2 == '(')
2506 return 1;
2507 else
2508 return *string1 - *string2;
2509 }
2510}
2511
2de7ced7
DJ
2512/* A simple comparison function with opposite semantics to strcmp. */
2513
2514int
2515streq (const char *lhs, const char *rhs)
2516{
2517 return !strcmp (lhs, rhs);
2518}
c906108c 2519\f
c5aa993b 2520
c906108c 2521/*
c5aa993b
JM
2522 ** subset_compare()
2523 ** Answer whether string_to_compare is a full or partial match to
2524 ** template_string. The partial match must be in sequence starting
2525 ** at index 0.
2526 */
c906108c 2527int
fba45db2 2528subset_compare (char *string_to_compare, char *template_string)
7a292a7a
SS
2529{
2530 int match;
8731e58e
AC
2531 if (template_string != (char *) NULL && string_to_compare != (char *) NULL
2532 && strlen (string_to_compare) <= strlen (template_string))
2533 match =
2534 (strncmp
2535 (template_string, string_to_compare, strlen (string_to_compare)) == 0);
7a292a7a
SS
2536 else
2537 match = 0;
2538 return match;
2539}
c906108c
SS
2540
2541
a14ed312 2542static void pagination_on_command (char *arg, int from_tty);
7a292a7a 2543static void
fba45db2 2544pagination_on_command (char *arg, int from_tty)
c906108c
SS
2545{
2546 pagination_enabled = 1;
2547}
2548
a14ed312 2549static void pagination_on_command (char *arg, int from_tty);
7a292a7a 2550static void
fba45db2 2551pagination_off_command (char *arg, int from_tty)
c906108c
SS
2552{
2553 pagination_enabled = 0;
2554}
c906108c 2555\f
c5aa993b 2556
c906108c 2557void
fba45db2 2558initialize_utils (void)
c906108c
SS
2559{
2560 struct cmd_list_element *c;
2561
eb0d3137 2562 c = add_set_cmd ("width", class_support, var_uinteger, &chars_per_line,
c5aa993b
JM
2563 "Set number of characters gdb thinks are in a line.",
2564 &setlist);
cb1a6d5f 2565 deprecated_add_show_from_set (c, &showlist);
9f60d481 2566 set_cmd_sfunc (c, set_width_command);
c906108c 2567
eb0d3137
MK
2568 c = add_set_cmd ("height", class_support, var_uinteger, &lines_per_page,
2569 "Set number of lines gdb thinks are in a page.", &setlist);
cb1a6d5f 2570 deprecated_add_show_from_set (c, &showlist);
eb0d3137 2571 set_cmd_sfunc (c, set_height_command);
c5aa993b 2572
c906108c
SS
2573 init_page_info ();
2574
cb1a6d5f 2575 deprecated_add_show_from_set
c5aa993b
JM
2576 (add_set_cmd ("demangle", class_support, var_boolean,
2577 (char *) &demangle,
8731e58e
AC
2578 "Set demangling of encoded C++/ObjC names when displaying symbols.",
2579 &setprintlist), &showprintlist);
c906108c 2580
cb1a6d5f 2581 deprecated_add_show_from_set
c906108c 2582 (add_set_cmd ("pagination", class_support,
c5aa993b 2583 var_boolean, (char *) &pagination_enabled,
8731e58e 2584 "Set state of pagination.", &setlist), &showlist);
4261bedc 2585
c906108c
SS
2586 if (xdb_commands)
2587 {
c5aa993b
JM
2588 add_com ("am", class_support, pagination_on_command,
2589 "Enable pagination");
2590 add_com ("sm", class_support, pagination_off_command,
2591 "Disable pagination");
c906108c
SS
2592 }
2593
cb1a6d5f 2594 deprecated_add_show_from_set
c5aa993b
JM
2595 (add_set_cmd ("sevenbit-strings", class_support, var_boolean,
2596 (char *) &sevenbit_strings,
2597 "Set printing of 8-bit characters in strings as \\nnn.",
8731e58e 2598 &setprintlist), &showprintlist);
c906108c 2599
cb1a6d5f 2600 deprecated_add_show_from_set
c5aa993b
JM
2601 (add_set_cmd ("asm-demangle", class_support, var_boolean,
2602 (char *) &asm_demangle,
4a351cef 2603 "Set demangling of C++/ObjC names in disassembly listings.",
8731e58e 2604 &setprintlist), &showprintlist);
c906108c
SS
2605}
2606
2607/* Machine specific function to handle SIGWINCH signal. */
2608
2609#ifdef SIGWINCH_HANDLER_BODY
c5aa993b 2610SIGWINCH_HANDLER_BODY
c906108c 2611#endif
5683e87a 2612/* print routines to handle variable size regs, etc. */
c906108c
SS
2613/* temporary storage using circular buffer */
2614#define NUMCELLS 16
0759e0bf 2615#define CELLSIZE 50
c5aa993b 2616static char *
fba45db2 2617get_cell (void)
c906108c
SS
2618{
2619 static char buf[NUMCELLS][CELLSIZE];
c5aa993b
JM
2620 static int cell = 0;
2621 if (++cell >= NUMCELLS)
2622 cell = 0;
c906108c
SS
2623 return buf[cell];
2624}
2625
d4f3574e
SS
2626int
2627strlen_paddr (void)
2628{
79496e2f 2629 return (TARGET_ADDR_BIT / 8 * 2);
d4f3574e
SS
2630}
2631
c5aa993b 2632char *
104c1213 2633paddr (CORE_ADDR addr)
c906108c 2634{
79496e2f 2635 return phex (addr, TARGET_ADDR_BIT / 8);
c906108c
SS
2636}
2637
c5aa993b 2638char *
104c1213 2639paddr_nz (CORE_ADDR addr)
c906108c 2640{
79496e2f 2641 return phex_nz (addr, TARGET_ADDR_BIT / 8);
c906108c
SS
2642}
2643
104c1213 2644static void
bb599908 2645decimal2str (char *paddr_str, char *sign, ULONGEST addr, int width)
104c1213
JM
2646{
2647 /* steal code from valprint.c:print_decimal(). Should this worry
2648 about the real size of addr as the above does? */
2649 unsigned long temp[3];
2650 int i = 0;
2651 do
2652 {
2653 temp[i] = addr % (1000 * 1000 * 1000);
2654 addr /= (1000 * 1000 * 1000);
2655 i++;
bb599908 2656 width -= 9;
104c1213
JM
2657 }
2658 while (addr != 0 && i < (sizeof (temp) / sizeof (temp[0])));
bb599908
PH
2659 width += 9;
2660 if (width < 0)
2661 width = 0;
104c1213
JM
2662 switch (i)
2663 {
2664 case 1:
bb599908 2665 sprintf (paddr_str, "%s%0*lu", sign, width, temp[0]);
104c1213
JM
2666 break;
2667 case 2:
bb599908 2668 sprintf (paddr_str, "%s%0*lu%09lu", sign, width, temp[1], temp[0]);
104c1213
JM
2669 break;
2670 case 3:
bb599908
PH
2671 sprintf (paddr_str, "%s%0*lu%09lu%09lu", sign, width,
2672 temp[2], temp[1], temp[0]);
2673 break;
2674 default:
2675 internal_error (__FILE__, __LINE__,
2676 "failed internal consistency check");
2677 }
2678}
2679
2680static void
2681octal2str (char *paddr_str, ULONGEST addr, int width)
2682{
2683 unsigned long temp[3];
2684 int i = 0;
2685 do
2686 {
2687 temp[i] = addr % (0100000 * 0100000);
2688 addr /= (0100000 * 0100000);
2689 i++;
2690 width -= 10;
2691 }
2692 while (addr != 0 && i < (sizeof (temp) / sizeof (temp[0])));
2693 width += 10;
2694 if (width < 0)
2695 width = 0;
2696 switch (i)
2697 {
2698 case 1:
2699 if (temp[0] == 0)
2700 sprintf (paddr_str, "%*o", width, 0);
2701 else
2702 sprintf (paddr_str, "0%0*lo", width, temp[0]);
2703 break;
2704 case 2:
2705 sprintf (paddr_str, "0%0*lo%010lo", width, temp[1], temp[0]);
2706 break;
2707 case 3:
2708 sprintf (paddr_str, "0%0*lo%010lo%010lo", width,
2709 temp[2], temp[1], temp[0]);
104c1213
JM
2710 break;
2711 default:
8731e58e
AC
2712 internal_error (__FILE__, __LINE__,
2713 "failed internal consistency check");
104c1213
JM
2714 }
2715}
2716
2717char *
2718paddr_u (CORE_ADDR addr)
2719{
2720 char *paddr_str = get_cell ();
bb599908 2721 decimal2str (paddr_str, "", addr, 0);
104c1213
JM
2722 return paddr_str;
2723}
2724
2725char *
2726paddr_d (LONGEST addr)
2727{
2728 char *paddr_str = get_cell ();
2729 if (addr < 0)
bb599908 2730 decimal2str (paddr_str, "-", -addr, 0);
104c1213 2731 else
bb599908 2732 decimal2str (paddr_str, "", addr, 0);
104c1213
JM
2733 return paddr_str;
2734}
2735
5683e87a
AC
2736/* eliminate warning from compiler on 32-bit systems */
2737static int thirty_two = 32;
2738
104c1213 2739char *
5683e87a 2740phex (ULONGEST l, int sizeof_l)
104c1213 2741{
45a1e866 2742 char *str;
5683e87a 2743 switch (sizeof_l)
104c1213
JM
2744 {
2745 case 8:
45a1e866 2746 str = get_cell ();
5683e87a
AC
2747 sprintf (str, "%08lx%08lx",
2748 (unsigned long) (l >> thirty_two),
2749 (unsigned long) (l & 0xffffffff));
104c1213
JM
2750 break;
2751 case 4:
45a1e866 2752 str = get_cell ();
5683e87a 2753 sprintf (str, "%08lx", (unsigned long) l);
104c1213
JM
2754 break;
2755 case 2:
45a1e866 2756 str = get_cell ();
5683e87a 2757 sprintf (str, "%04x", (unsigned short) (l & 0xffff));
104c1213
JM
2758 break;
2759 default:
45a1e866 2760 str = phex (l, sizeof (l));
5683e87a 2761 break;
104c1213 2762 }
5683e87a 2763 return str;
104c1213
JM
2764}
2765
c5aa993b 2766char *
5683e87a 2767phex_nz (ULONGEST l, int sizeof_l)
c906108c 2768{
faf833ca 2769 char *str;
5683e87a 2770 switch (sizeof_l)
c906108c 2771 {
c5aa993b
JM
2772 case 8:
2773 {
5683e87a 2774 unsigned long high = (unsigned long) (l >> thirty_two);
faf833ca 2775 str = get_cell ();
c5aa993b 2776 if (high == 0)
5683e87a 2777 sprintf (str, "%lx", (unsigned long) (l & 0xffffffff));
c5aa993b 2778 else
8731e58e 2779 sprintf (str, "%lx%08lx", high, (unsigned long) (l & 0xffffffff));
c906108c 2780 break;
c5aa993b
JM
2781 }
2782 case 4:
faf833ca 2783 str = get_cell ();
5683e87a 2784 sprintf (str, "%lx", (unsigned long) l);
c5aa993b
JM
2785 break;
2786 case 2:
faf833ca 2787 str = get_cell ();
5683e87a 2788 sprintf (str, "%x", (unsigned short) (l & 0xffff));
c5aa993b
JM
2789 break;
2790 default:
faf833ca 2791 str = phex_nz (l, sizeof (l));
5683e87a 2792 break;
c906108c 2793 }
5683e87a 2794 return str;
c906108c 2795}
ac2e2ef7 2796
0759e0bf
AC
2797/* Converts a LONGEST to a C-format hexadecimal literal and stores it
2798 in a static string. Returns a pointer to this string. */
2799char *
2800hex_string (LONGEST num)
2801{
2802 char *result = get_cell ();
2803 snprintf (result, CELLSIZE, "0x%s", phex_nz (num, sizeof (num)));
2804 return result;
2805}
2806
2807/* Converts a LONGEST number to a C-format hexadecimal literal and
2808 stores it in a static string. Returns a pointer to this string
2809 that is valid until the next call. The number is padded on the
2810 left with 0s to at least WIDTH characters. */
2811char *
2812hex_string_custom (LONGEST num, int width)
2813{
2814 char *result = get_cell ();
2815 char *result_end = result + CELLSIZE - 1;
2816 const char *hex = phex_nz (num, sizeof (num));
2817 int hex_len = strlen (hex);
2818
2819 if (hex_len > width)
2820 width = hex_len;
2821 if (width + 2 >= CELLSIZE)
2822 internal_error (__FILE__, __LINE__,
2823 "hex_string_custom: insufficient space to store result");
2824
2825 strcpy (result_end - width - 2, "0x");
2826 memset (result_end - width, '0', width);
2827 strcpy (result_end - hex_len, hex);
2828 return result_end - width - 2;
2829}
ac2e2ef7 2830
bb599908
PH
2831/* Convert VAL to a numeral in the given radix. For
2832 * radix 10, IS_SIGNED may be true, indicating a signed quantity;
2833 * otherwise VAL is interpreted as unsigned. If WIDTH is supplied,
2834 * it is the minimum width (0-padded if needed). USE_C_FORMAT means
2835 * to use C format in all cases. If it is false, then 'x'
2836 * and 'o' formats do not include a prefix (0x or leading 0). */
2837
2838char *
2839int_string (LONGEST val, int radix, int is_signed, int width,
2840 int use_c_format)
2841{
2842 switch (radix)
2843 {
2844 case 16:
2845 {
2846 char *result;
2847 if (width == 0)
2848 result = hex_string (val);
2849 else
2850 result = hex_string_custom (val, width);
2851 if (! use_c_format)
2852 result += 2;
2853 return result;
2854 }
2855 case 10:
2856 {
2857 char *result = get_cell ();
2858 if (is_signed && val < 0)
2859 decimal2str (result, "-", -val, width);
2860 else
2861 decimal2str (result, "", val, width);
2862 return result;
2863 }
2864 case 8:
2865 {
2866 char *result = get_cell ();
2867 octal2str (result, val, width);
2868 if (use_c_format || val == 0)
2869 return result;
2870 else
2871 return result + 1;
2872 }
2873 default:
2874 internal_error (__FILE__, __LINE__,
2875 "failed internal consistency check");
2876 }
2877}
2878
03dd37c3
AC
2879/* Convert a CORE_ADDR into a string. */
2880const char *
2881core_addr_to_string (const CORE_ADDR addr)
49b563f9
KS
2882{
2883 char *str = get_cell ();
2884 strcpy (str, "0x");
2885 strcat (str, phex (addr, sizeof (addr)));
2886 return str;
2887}
2888
2889const char *
2890core_addr_to_string_nz (const CORE_ADDR addr)
03dd37c3
AC
2891{
2892 char *str = get_cell ();
2893 strcpy (str, "0x");
2894 strcat (str, phex_nz (addr, sizeof (addr)));
2895 return str;
2896}
2897
2898/* Convert a string back into a CORE_ADDR. */
2899CORE_ADDR
2900string_to_core_addr (const char *my_string)
2901{
2902 CORE_ADDR addr = 0;
2903 if (my_string[0] == '0' && tolower (my_string[1]) == 'x')
2904 {
2905 /* Assume that it is in decimal. */
2906 int i;
2907 for (i = 2; my_string[i] != '\0'; i++)
2908 {
2909 if (isdigit (my_string[i]))
2910 addr = (my_string[i] - '0') + (addr * 16);
8731e58e 2911 else if (isxdigit (my_string[i]))
03dd37c3
AC
2912 addr = (tolower (my_string[i]) - 'a' + 0xa) + (addr * 16);
2913 else
2914 internal_error (__FILE__, __LINE__, "invalid hex");
2915 }
2916 }
2917 else
2918 {
2919 /* Assume that it is in decimal. */
2920 int i;
2921 for (i = 0; my_string[i] != '\0'; i++)
2922 {
2923 if (isdigit (my_string[i]))
2924 addr = (my_string[i] - '0') + (addr * 10);
2925 else
2926 internal_error (__FILE__, __LINE__, "invalid decimal");
2927 }
2928 }
2929 return addr;
2930}
58d370e0
TT
2931
2932char *
2933gdb_realpath (const char *filename)
2934{
70d35819
AC
2935 /* Method 1: The system has a compile time upper bound on a filename
2936 path. Use that and realpath() to canonicalize the name. This is
2937 the most common case. Note that, if there isn't a compile time
2938 upper bound, you want to avoid realpath() at all costs. */
a4db0f07 2939#if defined(HAVE_REALPATH)
70d35819 2940 {
a4db0f07 2941# if defined (PATH_MAX)
70d35819 2942 char buf[PATH_MAX];
a4db0f07
RH
2943# define USE_REALPATH
2944# elif defined (MAXPATHLEN)
70d35819 2945 char buf[MAXPATHLEN];
a4db0f07
RH
2946# define USE_REALPATH
2947# endif
70d35819 2948# if defined (USE_REALPATH)
82c0260e 2949 const char *rp = realpath (filename, buf);
70d35819
AC
2950 if (rp == NULL)
2951 rp = filename;
2952 return xstrdup (rp);
70d35819 2953# endif
6f88d630 2954 }
a4db0f07
RH
2955#endif /* HAVE_REALPATH */
2956
70d35819
AC
2957 /* Method 2: The host system (i.e., GNU) has the function
2958 canonicalize_file_name() which malloc's a chunk of memory and
2959 returns that, use that. */
2960#if defined(HAVE_CANONICALIZE_FILE_NAME)
2961 {
2962 char *rp = canonicalize_file_name (filename);
2963 if (rp == NULL)
2964 return xstrdup (filename);
2965 else
2966 return rp;
2967 }
58d370e0 2968#endif
70d35819 2969
6411e720
AC
2970 /* FIXME: cagney/2002-11-13:
2971
2972 Method 2a: Use realpath() with a NULL buffer. Some systems, due
2973 to the problems described in in method 3, have modified their
2974 realpath() implementation so that it will allocate a buffer when
2975 NULL is passed in. Before this can be used, though, some sort of
2976 configure time test would need to be added. Otherwize the code
2977 will likely core dump. */
2978
70d35819
AC
2979 /* Method 3: Now we're getting desperate! The system doesn't have a
2980 compile time buffer size and no alternative function. Query the
2981 OS, using pathconf(), for the buffer limit. Care is needed
2982 though, some systems do not limit PATH_MAX (return -1 for
2983 pathconf()) making it impossible to pass a correctly sized buffer
2984 to realpath() (it could always overflow). On those systems, we
2985 skip this. */
2986#if defined (HAVE_REALPATH) && defined (HAVE_UNISTD_H) && defined(HAVE_ALLOCA)
2987 {
2988 /* Find out the max path size. */
2989 long path_max = pathconf ("/", _PC_PATH_MAX);
2990 if (path_max > 0)
2991 {
2992 /* PATH_MAX is bounded. */
2993 char *buf = alloca (path_max);
2994 char *rp = realpath (filename, buf);
2995 return xstrdup (rp ? rp : filename);
2996 }
2997 }
2998#endif
2999
3000 /* This system is a lost cause, just dup the buffer. */
3001 return xstrdup (filename);
58d370e0 3002}
303c8ebd
JB
3003
3004/* Return a copy of FILENAME, with its directory prefix canonicalized
3005 by gdb_realpath. */
3006
3007char *
3008xfullpath (const char *filename)
3009{
3010 const char *base_name = lbasename (filename);
3011 char *dir_name;
3012 char *real_path;
3013 char *result;
3014
3015 /* Extract the basename of filename, and return immediately
3016 a copy of filename if it does not contain any directory prefix. */
3017 if (base_name == filename)
3018 return xstrdup (filename);
3019
3020 dir_name = alloca ((size_t) (base_name - filename + 2));
3021 /* Allocate enough space to store the dir_name + plus one extra
3022 character sometimes needed under Windows (see below), and
3023 then the closing \000 character */
3024 strncpy (dir_name, filename, base_name - filename);
3025 dir_name[base_name - filename] = '\000';
3026
3027#ifdef HAVE_DOS_BASED_FILE_SYSTEM
3028 /* We need to be careful when filename is of the form 'd:foo', which
3029 is equivalent of d:./foo, which is totally different from d:/foo. */
8731e58e 3030 if (strlen (dir_name) == 2 && isalpha (dir_name[0]) && dir_name[1] == ':')
303c8ebd
JB
3031 {
3032 dir_name[2] = '.';
3033 dir_name[3] = '\000';
3034 }
3035#endif
3036
3037 /* Canonicalize the directory prefix, and build the resulting
3038 filename. If the dirname realpath already contains an ending
3039 directory separator, avoid doubling it. */
3040 real_path = gdb_realpath (dir_name);
3041 if (IS_DIR_SEPARATOR (real_path[strlen (real_path) - 1]))
3042 result = concat (real_path, base_name, NULL);
3043 else
3044 result = concat (real_path, SLASH_STRING, base_name, NULL);
3045
3046 xfree (real_path);
3047 return result;
3048}
5b5d99cf
JB
3049
3050
3051/* This is the 32-bit CRC function used by the GNU separate debug
3052 facility. An executable may contain a section named
3053 .gnu_debuglink, which holds the name of a separate executable file
3054 containing its debug info, and a checksum of that file's contents,
3055 computed using this function. */
3056unsigned long
3057gnu_debuglink_crc32 (unsigned long crc, unsigned char *buf, size_t len)
3058{
8731e58e
AC
3059 static const unsigned long crc32_table[256] = {
3060 0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419,
3061 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4,
3062 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07,
3063 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de,
3064 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856,
3065 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9,
3066 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4,
3067 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b,
3068 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3,
3069 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a,
3070 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599,
3071 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924,
3072 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190,
3073 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f,
3074 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e,
3075 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01,
3076 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed,
3077 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950,
3078 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3,
3079 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2,
3080 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a,
3081 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5,
3082 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010,
3083 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f,
3084 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17,
3085 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6,
3086 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615,
3087 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8,
3088 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344,
3089 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb,
3090 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a,
3091 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5,
3092 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1,
3093 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c,
3094 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef,
3095 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236,
3096 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe,
3097 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31,
3098 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c,
3099 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713,
3100 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b,
3101 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242,
3102 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1,
3103 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c,
3104 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278,
3105 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7,
3106 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66,
3107 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9,
3108 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605,
3109 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8,
3110 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b,
3111 0x2d02ef8d
3112 };
5b5d99cf
JB
3113 unsigned char *end;
3114
3115 crc = ~crc & 0xffffffff;
3116 for (end = buf + len; buf < end; ++buf)
3117 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
3118 return ~crc & 0xffffffff;;
3119}
5b03f266
AC
3120
3121ULONGEST
3122align_up (ULONGEST v, int n)
3123{
3124 /* Check that N is really a power of two. */
3125 gdb_assert (n && (n & (n-1)) == 0);
3126 return (v + n - 1) & -n;
3127}
3128
3129ULONGEST
3130align_down (ULONGEST v, int n)
3131{
3132 /* Check that N is really a power of two. */
3133 gdb_assert (n && (n & (n-1)) == 0);
3134 return (v & -n);
3135}