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