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