gdb/
[deliverable/binutils-gdb.git] / gdb / utils.c
CommitLineData
c906108c 1/* General utility routines for GDB, the GNU debugger.
1bac305b 2
6aba47ca 3 Copyright (C) 1986, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
0fb0cc75 4 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
7b6bb8da 5 2009, 2010, 2011 Free Software 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
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
c5aa993b 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 19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c 21
4e8f7a8b 22#include "defs.h"
5a56e9c5 23#include "dyn-string.h"
4e8f7a8b
DJ
24#include "gdb_assert.h"
25#include <ctype.h>
26#include "gdb_string.h"
27#include "event-top.h"
60250e8b 28#include "exceptions.h"
95e54da7 29#include "gdbthread.h"
7991dee7
JK
30#ifdef HAVE_SYS_RESOURCE_H
31#include <sys/resource.h>
32#endif /* HAVE_SYS_RESOURCE_H */
4e8f7a8b 33
6a83354a
AC
34#ifdef TUI
35#include "tui/tui.h" /* For tui_get_command_dimension. */
36#endif
37
9d271fd8
AC
38#ifdef __GO32__
39#include <pc.h>
40#endif
41
581e13c1 42/* SunOS's curses.h has a '#define reg register' in it. Thank you Sun. */
c906108c
SS
43#ifdef reg
44#undef reg
45#endif
46
042be3a9 47#include <signal.h>
0a1c4d10 48#include "timeval-utils.h"
c906108c
SS
49#include "gdbcmd.h"
50#include "serial.h"
51#include "bfd.h"
52#include "target.h"
50f182aa 53#include "gdb-demangle.h"
c906108c
SS
54#include "expression.h"
55#include "language.h"
234b45d4 56#include "charset.h"
c906108c 57#include "annotate.h"
303c8ebd 58#include "filenames.h"
7b90c3f9 59#include "symfile.h"
ae5a43e0 60#include "gdb_obstack.h"
9544c605 61#include "gdbcore.h"
698ba934 62#include "top.h"
7c953934 63#include "main.h"
cb08cc53 64#include "solist.h"
c906108c 65
8731e58e 66#include "inferior.h" /* for signed_pointer_to_address */
ac2e2ef7 67
2d1b2124
AC
68#include <sys/param.h> /* For MAXPATHLEN */
69
3b78cdbb 70#include "gdb_curses.h"
020cc13c 71
dbda9972 72#include "readline/readline.h"
c906108c 73
75feb17d
DJ
74#include <sys/time.h>
75#include <time.h>
76
8626589c 77#include "gdb_usleep.h"
390a8aca 78#include "interps.h"
dc92e161 79#include "gdb_regex.h"
8626589c 80
a3828db0 81#if !HAVE_DECL_MALLOC
5ac79d78 82extern PTR malloc (); /* ARI: PTR */
3c37485b 83#endif
a3828db0 84#if !HAVE_DECL_REALLOC
5ac79d78 85extern PTR realloc (); /* ARI: PTR */
0e52036f 86#endif
a3828db0 87#if !HAVE_DECL_FREE
81b8eb80
AC
88extern void free ();
89#endif
81b8eb80 90
c906108c
SS
91/* readline defines this. */
92#undef savestring
93
9a4105ab 94void (*deprecated_error_begin_hook) (void);
c906108c
SS
95
96/* Prototypes for local functions */
97
d9fcf2fb 98static void vfprintf_maybe_filtered (struct ui_file *, const char *,
a0b31db1 99 va_list, int) ATTRIBUTE_PRINTF (2, 0);
c906108c 100
d9fcf2fb 101static void fputs_maybe_filtered (const char *, struct ui_file *, int);
c906108c 102
e42c9534
AC
103static void do_my_cleanups (struct cleanup **, struct cleanup *);
104
a14ed312 105static void prompt_for_continue (void);
c906108c 106
eb0d3137 107static void set_screen_size (void);
a14ed312 108static void set_width (void);
c906108c 109
75feb17d
DJ
110/* A flag indicating whether to timestamp debugging messages. */
111
112static int debug_timestamp = 0;
113
c906108c
SS
114/* Chain of cleanup actions established with make_cleanup,
115 to be executed if an error happens. */
116
c5aa993b
JM
117static struct cleanup *cleanup_chain; /* cleaned up after a failed command */
118static struct cleanup *final_cleanup_chain; /* cleaned up when gdb exits */
43ff13b4 119
581e13c1 120/* Nonzero if we have job control. */
c906108c
SS
121
122int job_control;
123
124/* Nonzero means a quit has been requested. */
125
126int quit_flag;
127
128/* Nonzero means quit immediately if Control-C is typed now, rather
129 than waiting until QUIT is executed. Be careful in setting this;
130 code which executes with immediate_quit set has to be very careful
131 about being able to deal with being interrupted at any time. It is
132 almost always better to use QUIT; the only exception I can think of
133 is being able to quit out of a system call (using EINTR loses if
134 the SIGINT happens between the previous QUIT and the system call).
135 To immediately quit in the case in which a SIGINT happens between
136 the previous QUIT and setting immediate_quit (desirable anytime we
137 expect to block), call QUIT after setting immediate_quit. */
138
139int immediate_quit;
140
c906108c
SS
141/* Nonzero means that strings with character values >0x7F should be printed
142 as octal escapes. Zero means just print the value (e.g. it's an
143 international character, and the terminal or window can cope.) */
144
145int sevenbit_strings = 0;
920d2a44
AC
146static void
147show_sevenbit_strings (struct ui_file *file, int from_tty,
148 struct cmd_list_element *c, const char *value)
149{
3e43a32a
MS
150 fprintf_filtered (file, _("Printing of 8-bit characters "
151 "in strings as \\nnn is %s.\n"),
920d2a44
AC
152 value);
153}
c906108c
SS
154
155/* String to be printed before error messages, if any. */
156
157char *error_pre_print;
158
159/* String to be printed before quit messages, if any. */
160
161char *quit_pre_print;
162
163/* String to be printed before warning messages, if any. */
164
165char *warning_pre_print = "\nwarning: ";
166
167int pagination_enabled = 1;
920d2a44
AC
168static void
169show_pagination_enabled (struct ui_file *file, int from_tty,
170 struct cmd_list_element *c, const char *value)
171{
172 fprintf_filtered (file, _("State of pagination is %s.\n"), value);
173}
174
c906108c 175\f
c5aa993b 176
c906108c
SS
177/* Add a new cleanup to the cleanup_chain,
178 and return the previous chain pointer
179 to be passed later to do_cleanups or discard_cleanups.
180 Args are FUNCTION to clean up with, and ARG to pass to it. */
181
182struct cleanup *
e4005526 183make_cleanup (make_cleanup_ftype *function, void *arg)
c906108c 184{
c5aa993b 185 return make_my_cleanup (&cleanup_chain, function, arg);
c906108c
SS
186}
187
4f8d22e3
PA
188struct cleanup *
189make_cleanup_dtor (make_cleanup_ftype *function, void *arg,
190 void (*dtor) (void *))
191{
192 return make_my_cleanup2 (&cleanup_chain,
193 function, arg, dtor);
194}
195
c906108c 196struct cleanup *
e4005526 197make_final_cleanup (make_cleanup_ftype *function, void *arg)
c906108c 198{
c5aa993b 199 return make_my_cleanup (&final_cleanup_chain, function, arg);
c906108c 200}
7a292a7a 201
7a292a7a 202static void
fba45db2 203do_freeargv (void *arg)
7a292a7a 204{
c5aa993b 205 freeargv ((char **) arg);
7a292a7a
SS
206}
207
208struct cleanup *
fba45db2 209make_cleanup_freeargv (char **arg)
7a292a7a
SS
210{
211 return make_my_cleanup (&cleanup_chain, do_freeargv, arg);
212}
213
5a56e9c5
DE
214static void
215do_dyn_string_delete (void *arg)
216{
217 dyn_string_delete ((dyn_string_t) arg);
218}
219
220struct cleanup *
221make_cleanup_dyn_string_delete (dyn_string_t arg)
222{
223 return make_my_cleanup (&cleanup_chain, do_dyn_string_delete, arg);
224}
225
5c65bbb6
AC
226static void
227do_bfd_close_cleanup (void *arg)
228{
229 bfd_close (arg);
230}
231
232struct cleanup *
233make_cleanup_bfd_close (bfd *abfd)
234{
235 return make_cleanup (do_bfd_close_cleanup, abfd);
236}
237
f5ff8c83
AC
238static void
239do_close_cleanup (void *arg)
240{
f042532c 241 int *fd = arg;
e0627e85 242
f042532c 243 close (*fd);
f5ff8c83
AC
244}
245
246struct cleanup *
247make_cleanup_close (int fd)
248{
f042532c 249 int *saved_fd = xmalloc (sizeof (fd));
e0627e85 250
f042532c 251 *saved_fd = fd;
a05016c0 252 return make_cleanup_dtor (do_close_cleanup, saved_fd, xfree);
f5ff8c83
AC
253}
254
7c8a8b04
TT
255/* Helper function which does the work for make_cleanup_fclose. */
256
257static void
258do_fclose_cleanup (void *arg)
259{
c02866a0 260 FILE *file = arg;
e0627e85 261
c02866a0 262 fclose (file);
7c8a8b04
TT
263}
264
265/* Return a new cleanup that closes FILE. */
266
267struct cleanup *
268make_cleanup_fclose (FILE *file)
269{
270 return make_cleanup (do_fclose_cleanup, file);
271}
272
16ad9370
TT
273/* Helper function which does the work for make_cleanup_obstack_free. */
274
275static void
276do_obstack_free (void *arg)
277{
278 struct obstack *ob = arg;
e0627e85 279
16ad9370
TT
280 obstack_free (ob, NULL);
281}
282
283/* Return a new cleanup that frees OBSTACK. */
284
285struct cleanup *
286make_cleanup_obstack_free (struct obstack *obstack)
287{
288 return make_cleanup (do_obstack_free, obstack);
289}
290
11cf8741 291static void
d9fcf2fb 292do_ui_file_delete (void *arg)
11cf8741 293{
d9fcf2fb 294 ui_file_delete (arg);
11cf8741
JM
295}
296
297struct cleanup *
d9fcf2fb 298make_cleanup_ui_file_delete (struct ui_file *arg)
11cf8741 299{
d9fcf2fb 300 return make_my_cleanup (&cleanup_chain, do_ui_file_delete, arg);
11cf8741
JM
301}
302
8d4d924b
JK
303/* Helper function for make_cleanup_ui_out_redirect_pop. */
304
305static void
306do_ui_out_redirect_pop (void *arg)
307{
308 struct ui_out *uiout = arg;
309
310 if (ui_out_redirect (uiout, NULL) < 0)
311 warning (_("Cannot restore redirection of the current output protocol"));
312}
313
314/* Return a new cleanup that pops the last redirection by ui_out_redirect
315 with NULL parameter. */
316
317struct cleanup *
318make_cleanup_ui_out_redirect_pop (struct ui_out *uiout)
319{
320 return make_my_cleanup (&cleanup_chain, do_ui_out_redirect_pop, uiout);
321}
322
7b90c3f9
JB
323static void
324do_free_section_addr_info (void *arg)
325{
326 free_section_addr_info (arg);
327}
328
329struct cleanup *
330make_cleanup_free_section_addr_info (struct section_addr_info *addrs)
331{
332 return make_my_cleanup (&cleanup_chain, do_free_section_addr_info, addrs);
333}
334
0b080f59
VP
335struct restore_integer_closure
336{
337 int *variable;
338 int value;
339};
340
341static void
342restore_integer (void *p)
343{
344 struct restore_integer_closure *closure = p;
e0627e85 345
0b080f59
VP
346 *(closure->variable) = closure->value;
347}
7b90c3f9 348
3e43a32a
MS
349/* Remember the current value of *VARIABLE and make it restored when
350 the cleanup is run. */
5da1313b 351
c906108c 352struct cleanup *
0b080f59
VP
353make_cleanup_restore_integer (int *variable)
354{
355 struct restore_integer_closure *c =
356 xmalloc (sizeof (struct restore_integer_closure));
e0627e85 357
0b080f59
VP
358 c->variable = variable;
359 c->value = *variable;
360
361 return make_my_cleanup2 (&cleanup_chain, restore_integer, (void *)c,
362 xfree);
363}
364
3e43a32a
MS
365/* Remember the current value of *VARIABLE and make it restored when
366 the cleanup is run. */
5da1313b
JK
367
368struct cleanup *
369make_cleanup_restore_uinteger (unsigned int *variable)
370{
371 return make_cleanup_restore_integer ((int *) variable);
372}
373
c0edd9ed
JK
374/* Helper for make_cleanup_unpush_target. */
375
376static void
377do_unpush_target (void *arg)
378{
379 struct target_ops *ops = arg;
380
381 unpush_target (ops);
382}
383
384/* Return a new cleanup that unpushes OPS. */
385
386struct cleanup *
387make_cleanup_unpush_target (struct target_ops *ops)
388{
389 return make_my_cleanup (&cleanup_chain, do_unpush_target, ops);
390}
391
8e3b41a9
JK
392/* Helper for make_cleanup_htab_delete compile time checking the types. */
393
394static void
395do_htab_delete_cleanup (void *htab_voidp)
396{
397 htab_t htab = htab_voidp;
398
399 htab_delete (htab);
400}
401
402/* Return a new cleanup that deletes HTAB. */
403
404struct cleanup *
405make_cleanup_htab_delete (htab_t htab)
406{
407 return make_cleanup (do_htab_delete_cleanup, htab);
408}
409
5da1313b
JK
410struct restore_ui_file_closure
411{
412 struct ui_file **variable;
413 struct ui_file *value;
414};
415
416static void
417do_restore_ui_file (void *p)
418{
419 struct restore_ui_file_closure *closure = p;
420
421 *(closure->variable) = closure->value;
422}
423
424/* Remember the current value of *VARIABLE and make it restored when
425 the cleanup is run. */
426
427struct cleanup *
428make_cleanup_restore_ui_file (struct ui_file **variable)
429{
430 struct restore_ui_file_closure *c = XNEW (struct restore_ui_file_closure);
431
432 c->variable = variable;
433 c->value = *variable;
434
435 return make_cleanup_dtor (do_restore_ui_file, (void *) c, xfree);
436}
437
028d0ed5
TJB
438/* Helper for make_cleanup_value_free_to_mark. */
439
440static void
441do_value_free_to_mark (void *value)
442{
443 value_free_to_mark ((struct value *) value);
444}
445
446/* Free all values allocated since MARK was obtained by value_mark
447 (except for those released) when the cleanup is run. */
448
449struct cleanup *
450make_cleanup_value_free_to_mark (struct value *mark)
451{
452 return make_my_cleanup (&cleanup_chain, do_value_free_to_mark, mark);
453}
454
72fc29ff
TT
455/* Helper for make_cleanup_value_free. */
456
457static void
458do_value_free (void *value)
459{
460 value_free (value);
461}
462
463/* Free VALUE. */
464
465struct cleanup *
466make_cleanup_value_free (struct value *value)
467{
468 return make_my_cleanup (&cleanup_chain, do_value_free, value);
469}
470
cb08cc53
JK
471/* Helper for make_cleanup_free_so. */
472
473static void
474do_free_so (void *arg)
475{
476 struct so_list *so = arg;
477
478 free_so (so);
479}
480
481/* Make cleanup handler calling free_so for SO. */
482
483struct cleanup *
484make_cleanup_free_so (struct so_list *so)
485{
486 return make_my_cleanup (&cleanup_chain, do_free_so, so);
487}
488
0b080f59
VP
489struct cleanup *
490make_my_cleanup2 (struct cleanup **pmy_chain, make_cleanup_ftype *function,
491 void *arg, void (*free_arg) (void *))
c906108c 492{
52f0bd74 493 struct cleanup *new
8731e58e 494 = (struct cleanup *) xmalloc (sizeof (struct cleanup));
52f0bd74 495 struct cleanup *old_chain = *pmy_chain;
c906108c
SS
496
497 new->next = *pmy_chain;
498 new->function = function;
0b080f59 499 new->free_arg = free_arg;
c906108c
SS
500 new->arg = arg;
501 *pmy_chain = new;
502
503 return old_chain;
504}
505
0b080f59
VP
506struct cleanup *
507make_my_cleanup (struct cleanup **pmy_chain, make_cleanup_ftype *function,
508 void *arg)
509{
510 return make_my_cleanup2 (pmy_chain, function, arg, NULL);
511}
512
c906108c
SS
513/* Discard cleanups and do the actions they describe
514 until we get back to the point OLD_CHAIN in the cleanup_chain. */
515
516void
aa1ee363 517do_cleanups (struct cleanup *old_chain)
c906108c 518{
c5aa993b 519 do_my_cleanups (&cleanup_chain, old_chain);
c906108c
SS
520}
521
522void
aa1ee363 523do_final_cleanups (struct cleanup *old_chain)
c906108c 524{
c5aa993b 525 do_my_cleanups (&final_cleanup_chain, old_chain);
c906108c
SS
526}
527
e42c9534 528static void
aa1ee363
AC
529do_my_cleanups (struct cleanup **pmy_chain,
530 struct cleanup *old_chain)
c906108c 531{
52f0bd74 532 struct cleanup *ptr;
e0627e85 533
c906108c
SS
534 while ((ptr = *pmy_chain) != old_chain)
535 {
5f2302ab 536 *pmy_chain = ptr->next; /* Do this first in case of recursion. */
c906108c 537 (*ptr->function) (ptr->arg);
0b080f59
VP
538 if (ptr->free_arg)
539 (*ptr->free_arg) (ptr->arg);
b8c9b27d 540 xfree (ptr);
c906108c
SS
541 }
542}
543
544/* Discard cleanups, not doing the actions they describe,
545 until we get back to the point OLD_CHAIN in the cleanup_chain. */
546
547void
aa1ee363 548discard_cleanups (struct cleanup *old_chain)
c906108c 549{
c5aa993b 550 discard_my_cleanups (&cleanup_chain, old_chain);
c906108c
SS
551}
552
553void
aa1ee363 554discard_final_cleanups (struct cleanup *old_chain)
c906108c 555{
c5aa993b 556 discard_my_cleanups (&final_cleanup_chain, old_chain);
c906108c
SS
557}
558
559void
aa1ee363
AC
560discard_my_cleanups (struct cleanup **pmy_chain,
561 struct cleanup *old_chain)
c906108c 562{
52f0bd74 563 struct cleanup *ptr;
e0627e85 564
c906108c
SS
565 while ((ptr = *pmy_chain) != old_chain)
566 {
567 *pmy_chain = ptr->next;
0b080f59
VP
568 if (ptr->free_arg)
569 (*ptr->free_arg) (ptr->arg);
b8c9b27d 570 xfree (ptr);
c906108c
SS
571 }
572}
573
574/* Set the cleanup_chain to 0, and return the old cleanup chain. */
575struct cleanup *
fba45db2 576save_cleanups (void)
c906108c 577{
c5aa993b 578 return save_my_cleanups (&cleanup_chain);
c906108c
SS
579}
580
581struct cleanup *
fba45db2 582save_final_cleanups (void)
c906108c 583{
c5aa993b 584 return save_my_cleanups (&final_cleanup_chain);
c906108c
SS
585}
586
587struct cleanup *
fba45db2 588save_my_cleanups (struct cleanup **pmy_chain)
c906108c
SS
589{
590 struct cleanup *old_chain = *pmy_chain;
591
592 *pmy_chain = 0;
593 return old_chain;
594}
595
596/* Restore the cleanup chain from a previously saved chain. */
597void
fba45db2 598restore_cleanups (struct cleanup *chain)
c906108c 599{
c5aa993b 600 restore_my_cleanups (&cleanup_chain, chain);
c906108c
SS
601}
602
603void
fba45db2 604restore_final_cleanups (struct cleanup *chain)
c906108c 605{
c5aa993b 606 restore_my_cleanups (&final_cleanup_chain, chain);
c906108c
SS
607}
608
609void
fba45db2 610restore_my_cleanups (struct cleanup **pmy_chain, struct cleanup *chain)
c906108c
SS
611{
612 *pmy_chain = chain;
613}
614
615/* This function is useful for cleanups.
616 Do
617
c5aa993b
JM
618 foo = xmalloc (...);
619 old_chain = make_cleanup (free_current_contents, &foo);
c906108c
SS
620
621 to arrange to free the object thus allocated. */
622
623void
2f9429ae 624free_current_contents (void *ptr)
c906108c 625{
2f9429ae 626 void **location = ptr;
e0627e85 627
e2f9c474 628 if (location == NULL)
8e65ff28 629 internal_error (__FILE__, __LINE__,
e2e0b3e5 630 _("free_current_contents: NULL pointer"));
2f9429ae 631 if (*location != NULL)
e2f9c474 632 {
b8c9b27d 633 xfree (*location);
e2f9c474
AC
634 *location = NULL;
635 }
c906108c
SS
636}
637
638/* Provide a known function that does nothing, to use as a base for
7a9dd1b2 639 a possibly long chain of cleanups. This is useful where we
c906108c
SS
640 use the cleanup chain for handling normal cleanups as well as dealing
641 with cleanups that need to be done as a result of a call to error().
642 In such cases, we may not be certain where the first cleanup is, unless
581e13c1 643 we have a do-nothing one to always use as the base. */
c906108c 644
c906108c 645void
e4005526 646null_cleanup (void *arg)
c906108c
SS
647{
648}
649
0f3bb72e
PH
650/* If nonzero, display time usage both at startup and for each command. */
651
652static int display_time;
653
654/* If nonzero, display space usage both at startup and for each command. */
655
656static int display_space;
657
658/* Records a run time and space usage to be used as a base for
659 reporting elapsed time or change in space. In addition,
660 the msg_type field indicates whether the saved time is from the
661 beginning of GDB execution (0) or the beginning of an individual
662 command execution (1). */
663struct cmd_stats
664{
665 int msg_type;
0a1c4d10
DE
666 long start_cpu_time;
667 struct timeval start_wall_time;
0f3bb72e
PH
668 long start_space;
669};
670
671/* Set whether to display time statistics to NEW_VALUE (non-zero
672 means true). */
673void
674set_display_time (int new_value)
675{
676 display_time = new_value;
677}
678
679/* Set whether to display space statistics to NEW_VALUE (non-zero
680 means true). */
681void
682set_display_space (int new_value)
683{
684 display_space = new_value;
685}
686
687/* As indicated by display_time and display_space, report GDB's elapsed time
688 and space usage from the base time and space provided in ARG, which
581e13c1
MS
689 must be a pointer to a struct cmd_stat. This function is intended
690 to be called as a cleanup. */
0f3bb72e
PH
691static void
692report_command_stats (void *arg)
693{
694 struct cmd_stats *start_stats = (struct cmd_stats *) arg;
695 int msg_type = start_stats->msg_type;
696
697 if (display_time)
698 {
0a1c4d10
DE
699 long cmd_time = get_run_time () - start_stats->start_cpu_time;
700 struct timeval now_wall_time, delta_wall_time;
701
702 gettimeofday (&now_wall_time, NULL);
703 timeval_sub (&delta_wall_time,
704 &now_wall_time, &start_stats->start_wall_time);
0f3bb72e
PH
705
706 printf_unfiltered (msg_type == 0
0a1c4d10
DE
707 ? _("Startup time: %ld.%06ld (cpu), %ld.%06ld (wall)\n")
708 : _("Command execution time: %ld.%06ld (cpu), %ld.%06ld (wall)\n"),
709 cmd_time / 1000000, cmd_time % 1000000,
2b54dda2
DM
710 (long) delta_wall_time.tv_sec,
711 (long) delta_wall_time.tv_usec);
0f3bb72e
PH
712 }
713
714 if (display_space)
715 {
716#ifdef HAVE_SBRK
717 char *lim = (char *) sbrk (0);
718
719 long space_now = lim - lim_at_start;
720 long space_diff = space_now - start_stats->start_space;
721
722 printf_unfiltered (msg_type == 0
5d901a73
TT
723 ? _("Space used: %ld (%s%ld during startup)\n")
724 : _("Space used: %ld (%s%ld for this command)\n"),
0f3bb72e 725 space_now,
5d901a73 726 (space_diff >= 0 ? "+" : ""),
0f3bb72e
PH
727 space_diff);
728#endif
729 }
730}
731
732/* Create a cleanup that reports time and space used since its
733 creation. Precise messages depend on MSG_TYPE:
734 0: Initial time/space
735 1: Individual command time/space. */
736struct cleanup *
737make_command_stats_cleanup (int msg_type)
738{
739 struct cmd_stats *new_stat = XMALLOC (struct cmd_stats);
740
741#ifdef HAVE_SBRK
742 char *lim = (char *) sbrk (0);
743 new_stat->start_space = lim - lim_at_start;
744#endif
745
746 new_stat->msg_type = msg_type;
0a1c4d10
DE
747 new_stat->start_cpu_time = get_run_time ();
748 gettimeofday (&new_stat->start_wall_time, NULL);
0f3bb72e
PH
749
750 return make_cleanup_dtor (report_command_stats, new_stat, xfree);
751}
c906108c 752\f
c5aa993b 753
8731e58e 754
f5a96129
AC
755/* Print a warning message. The first argument STRING is the warning
756 message, used as an fprintf format string, the second is the
757 va_list of arguments for that string. A warning is unfiltered (not
758 paginated) so that the user does not need to page through each
759 screen full of warnings when there are lots of them. */
c906108c
SS
760
761void
f5a96129 762vwarning (const char *string, va_list args)
c906108c 763{
9a4105ab
AC
764 if (deprecated_warning_hook)
765 (*deprecated_warning_hook) (string, args);
f5a96129
AC
766 else
767 {
768 target_terminal_ours ();
581e13c1 769 wrap_here (""); /* Force out any buffered output. */
f5a96129
AC
770 gdb_flush (gdb_stdout);
771 if (warning_pre_print)
306d9ac5 772 fputs_unfiltered (warning_pre_print, gdb_stderr);
f5a96129
AC
773 vfprintf_unfiltered (gdb_stderr, string, args);
774 fprintf_unfiltered (gdb_stderr, "\n");
775 va_end (args);
776 }
c906108c
SS
777}
778
779/* Print a warning message.
780 The first argument STRING is the warning message, used as a fprintf string,
781 and the remaining args are passed as arguments to it.
782 The primary difference between warnings and errors is that a warning
783 does not force the return to command level. */
784
c906108c 785void
8731e58e 786warning (const char *string, ...)
c906108c
SS
787{
788 va_list args;
e0627e85 789
c906108c 790 va_start (args, string);
f5a96129
AC
791 vwarning (string, args);
792 va_end (args);
c906108c
SS
793}
794
c906108c
SS
795/* Print an error message and return to command level.
796 The first argument STRING is the error message, used as a fprintf string,
797 and the remaining args are passed as arguments to it. */
798
c25c4a8b 799void
4ce44c66
JM
800verror (const char *string, va_list args)
801{
6b1b7650 802 throw_verror (GENERIC_ERROR, string, args);
4ce44c66
JM
803}
804
c25c4a8b 805void
8731e58e 806error (const char *string, ...)
c906108c
SS
807{
808 va_list args;
e0627e85 809
c906108c 810 va_start (args, string);
6b1b7650 811 throw_verror (GENERIC_ERROR, string, args);
4ce44c66 812 va_end (args);
c906108c
SS
813}
814
d75e3c94
JJ
815/* Print an error message and quit.
816 The first argument STRING is the error message, used as a fprintf string,
817 and the remaining args are passed as arguments to it. */
818
c25c4a8b 819void
d75e3c94
JJ
820vfatal (const char *string, va_list args)
821{
6b1b7650 822 throw_vfatal (string, args);
d75e3c94
JJ
823}
824
c25c4a8b 825void
d75e3c94
JJ
826fatal (const char *string, ...)
827{
828 va_list args;
e0627e85 829
d75e3c94 830 va_start (args, string);
6b1b7650 831 throw_vfatal (string, args);
d75e3c94
JJ
832 va_end (args);
833}
834
c25c4a8b 835void
d75e3c94 836error_stream (struct ui_file *stream)
2acceee2 837{
759ef836 838 char *message = ui_file_xstrdup (stream, NULL);
e0627e85 839
6b1b7650 840 make_cleanup (xfree, message);
8a3fe4f8 841 error (("%s"), message);
2acceee2 842}
c906108c 843
7991dee7
JK
844/* Dump core trying to increase the core soft limit to hard limit first. */
845
846static void
847dump_core (void)
848{
849#ifdef HAVE_SETRLIMIT
850 struct rlimit rlim = { RLIM_INFINITY, RLIM_INFINITY };
851
852 setrlimit (RLIMIT_CORE, &rlim);
853#endif /* HAVE_SETRLIMIT */
854
855 abort (); /* NOTE: GDB has only three calls to abort(). */
856}
857
3e43a32a
MS
858/* Check whether GDB will be able to dump core using the dump_core
859 function. */
7991dee7
JK
860
861static int
862can_dump_core (const char *reason)
863{
864#ifdef HAVE_GETRLIMIT
865 struct rlimit rlim;
866
867 /* Be quiet and assume we can dump if an error is returned. */
868 if (getrlimit (RLIMIT_CORE, &rlim) != 0)
869 return 1;
870
871 if (rlim.rlim_max == 0)
872 {
873 fprintf_unfiltered (gdb_stderr,
3e43a32a
MS
874 _("%s\nUnable to dump core, use `ulimit -c"
875 " unlimited' before executing GDB next time.\n"),
876 reason);
7991dee7
JK
877 return 0;
878 }
879#endif /* HAVE_GETRLIMIT */
880
881 return 1;
882}
883
3c16cced
PA
884/* Allow the user to configure the debugger behavior with respect to
885 what to do when an internal problem is detected. */
886
887const char internal_problem_ask[] = "ask";
888const char internal_problem_yes[] = "yes";
889const char internal_problem_no[] = "no";
890static const char *internal_problem_modes[] =
891{
892 internal_problem_ask,
893 internal_problem_yes,
894 internal_problem_no,
895 NULL
896};
3c16cced 897
581e13c1 898/* Print a message reporting an internal error/warning. Ask the user
dec43320
AC
899 if they want to continue, dump core, or just exit. Return
900 something to indicate a quit. */
c906108c 901
dec43320 902struct internal_problem
c906108c 903{
dec43320 904 const char *name;
3c16cced
PA
905 const char *should_quit;
906 const char *should_dump_core;
dec43320
AC
907};
908
909/* Report a problem, internal to GDB, to the user. Once the problem
910 has been reported, and assuming GDB didn't quit, the caller can
911 either allow execution to resume or throw an error. */
912
a0b31db1 913static void ATTRIBUTE_PRINTF (4, 0)
dec43320 914internal_vproblem (struct internal_problem *problem,
8731e58e 915 const char *file, int line, const char *fmt, va_list ap)
dec43320 916{
dec43320 917 static int dejavu;
375fc983 918 int quit_p;
7be570e7 919 int dump_core_p;
714b1282 920 char *reason;
c906108c 921
dec43320 922 /* Don't allow infinite error/warning recursion. */
714b1282
AC
923 {
924 static char msg[] = "Recursive internal problem.\n";
5d502164 925
714b1282
AC
926 switch (dejavu)
927 {
928 case 0:
929 dejavu = 1;
930 break;
931 case 1:
932 dejavu = 2;
933 fputs_unfiltered (msg, gdb_stderr);
7991dee7 934 abort (); /* NOTE: GDB has only three calls to abort(). */
714b1282
AC
935 default:
936 dejavu = 3;
bf1d7d9c
JB
937 /* Newer GLIBC versions put the warn_unused_result attribute
938 on write, but this is one of those rare cases where
939 ignoring the return value is correct. Casting to (void)
940 does not fix this problem. This is the solution suggested
941 at http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25509. */
942 if (write (STDERR_FILENO, msg, sizeof (msg)) != sizeof (msg))
7991dee7 943 abort (); /* NOTE: GDB has only three calls to abort(). */
714b1282
AC
944 exit (1);
945 }
946 }
c906108c 947
dec43320 948 /* Try to get the message out and at the start of a new line. */
4261bedc 949 target_terminal_ours ();
dec43320
AC
950 begin_line ();
951
714b1282
AC
952 /* Create a string containing the full error/warning message. Need
953 to call query with this full string, as otherwize the reason
954 (error/warning) and question become separated. Format using a
955 style similar to a compiler error message. Include extra detail
956 so that the user knows that they are living on the edge. */
957 {
958 char *msg;
5d502164 959
e623b504 960 msg = xstrvprintf (fmt, ap);
3e43a32a
MS
961 reason = xstrprintf ("%s:%d: %s: %s\n"
962 "A problem internal to GDB has been detected,\n"
963 "further debugging may prove unreliable.",
964 file, line, problem->name, msg);
714b1282
AC
965 xfree (msg);
966 make_cleanup (xfree, reason);
967 }
7be570e7 968
3c16cced 969 if (problem->should_quit == internal_problem_ask)
dec43320 970 {
dec43320 971 /* Default (yes/batch case) is to quit GDB. When in batch mode
3c16cced
PA
972 this lessens the likelihood of GDB going into an infinite
973 loop. */
26bb68be
PP
974 if (caution == 0)
975 {
976 /* Emit the message and quit. */
977 fputs_unfiltered (reason, gdb_stderr);
978 fputs_unfiltered ("\n", gdb_stderr);
979 quit_p = 1;
980 }
981 else
982 quit_p = query (_("%s\nQuit this debugging session? "), reason);
dec43320 983 }
3c16cced
PA
984 else if (problem->should_quit == internal_problem_yes)
985 quit_p = 1;
986 else if (problem->should_quit == internal_problem_no)
987 quit_p = 0;
988 else
989 internal_error (__FILE__, __LINE__, _("bad switch"));
dec43320 990
3c16cced 991 if (problem->should_dump_core == internal_problem_ask)
dec43320 992 {
7991dee7
JK
993 if (!can_dump_core (reason))
994 dump_core_p = 0;
995 else
996 {
997 /* Default (yes/batch case) is to dump core. This leaves a GDB
998 `dropping' so that it is easier to see that something went
999 wrong in GDB. */
1000 dump_core_p = query (_("%s\nCreate a core file of GDB? "), reason);
1001 }
dec43320 1002 }
3c16cced 1003 else if (problem->should_dump_core == internal_problem_yes)
7991dee7 1004 dump_core_p = can_dump_core (reason);
3c16cced
PA
1005 else if (problem->should_dump_core == internal_problem_no)
1006 dump_core_p = 0;
1007 else
1008 internal_error (__FILE__, __LINE__, _("bad switch"));
7be570e7 1009
375fc983 1010 if (quit_p)
7be570e7
JM
1011 {
1012 if (dump_core_p)
7991dee7 1013 dump_core ();
375fc983
AC
1014 else
1015 exit (1);
7be570e7
JM
1016 }
1017 else
1018 {
1019 if (dump_core_p)
375fc983 1020 {
9b265ec2 1021#ifdef HAVE_WORKING_FORK
375fc983 1022 if (fork () == 0)
7991dee7 1023 dump_core ();
9b265ec2 1024#endif
375fc983 1025 }
7be570e7 1026 }
96baa820
JM
1027
1028 dejavu = 0;
dec43320
AC
1029}
1030
1031static struct internal_problem internal_error_problem = {
3c16cced 1032 "internal-error", internal_problem_ask, internal_problem_ask
dec43320
AC
1033};
1034
c25c4a8b 1035void
8731e58e 1036internal_verror (const char *file, int line, const char *fmt, va_list ap)
dec43320
AC
1037{
1038 internal_vproblem (&internal_error_problem, file, line, fmt, ap);
315a522e 1039 deprecated_throw_reason (RETURN_ERROR);
c906108c
SS
1040}
1041
c25c4a8b 1042void
8e65ff28 1043internal_error (const char *file, int line, const char *string, ...)
4ce44c66
JM
1044{
1045 va_list ap;
e0627e85 1046
4ce44c66 1047 va_start (ap, string);
8e65ff28 1048 internal_verror (file, line, string, ap);
4ce44c66
JM
1049 va_end (ap);
1050}
1051
dec43320 1052static struct internal_problem internal_warning_problem = {
3c16cced 1053 "internal-warning", internal_problem_ask, internal_problem_ask
dec43320
AC
1054};
1055
1056void
8731e58e 1057internal_vwarning (const char *file, int line, const char *fmt, va_list ap)
dec43320
AC
1058{
1059 internal_vproblem (&internal_warning_problem, file, line, fmt, ap);
1060}
1061
1062void
1063internal_warning (const char *file, int line, const char *string, ...)
1064{
1065 va_list ap;
e0627e85 1066
dec43320
AC
1067 va_start (ap, string);
1068 internal_vwarning (file, line, string, ap);
1069 va_end (ap);
1070}
1071
3c16cced
PA
1072/* Dummy functions to keep add_prefix_cmd happy. */
1073
1074static void
1075set_internal_problem_cmd (char *args, int from_tty)
1076{
1077}
1078
1079static void
1080show_internal_problem_cmd (char *args, int from_tty)
1081{
1082}
1083
1084/* When GDB reports an internal problem (error or warning) it gives
1085 the user the opportunity to quit GDB and/or create a core file of
1086 the current debug session. This function registers a few commands
1087 that make it possible to specify that GDB should always or never
1088 quit or create a core file, without asking. The commands look
1089 like:
1090
1091 maint set PROBLEM-NAME quit ask|yes|no
1092 maint show PROBLEM-NAME quit
1093 maint set PROBLEM-NAME corefile ask|yes|no
1094 maint show PROBLEM-NAME corefile
1095
1096 Where PROBLEM-NAME is currently "internal-error" or
1097 "internal-warning". */
1098
1099static void
1100add_internal_problem_command (struct internal_problem *problem)
1101{
1102 struct cmd_list_element **set_cmd_list;
1103 struct cmd_list_element **show_cmd_list;
1104 char *set_doc;
1105 char *show_doc;
1106
1107 set_cmd_list = xmalloc (sizeof (*set_cmd_list));
1108 show_cmd_list = xmalloc (sizeof (*set_cmd_list));
1109 *set_cmd_list = NULL;
1110 *show_cmd_list = NULL;
1111
1112 set_doc = xstrprintf (_("Configure what GDB does when %s is detected."),
1113 problem->name);
1114
1115 show_doc = xstrprintf (_("Show what GDB does when %s is detected."),
1116 problem->name);
1117
1118 add_prefix_cmd ((char*) problem->name,
1119 class_maintenance, set_internal_problem_cmd, set_doc,
1120 set_cmd_list,
c4f7c687
MK
1121 concat ("maintenance set ", problem->name, " ",
1122 (char *) NULL),
3c16cced
PA
1123 0/*allow-unknown*/, &maintenance_set_cmdlist);
1124
1125 add_prefix_cmd ((char*) problem->name,
1126 class_maintenance, show_internal_problem_cmd, show_doc,
1127 show_cmd_list,
c4f7c687
MK
1128 concat ("maintenance show ", problem->name, " ",
1129 (char *) NULL),
3c16cced
PA
1130 0/*allow-unknown*/, &maintenance_show_cmdlist);
1131
3e43a32a
MS
1132 set_doc = xstrprintf (_("Set whether GDB should quit "
1133 "when an %s is detected"),
3c16cced 1134 problem->name);
3e43a32a
MS
1135 show_doc = xstrprintf (_("Show whether GDB will quit "
1136 "when an %s is detected"),
3c16cced
PA
1137 problem->name);
1138 add_setshow_enum_cmd ("quit", class_maintenance,
1139 internal_problem_modes,
1140 &problem->should_quit,
1141 set_doc,
1142 show_doc,
1143 NULL, /* help_doc */
1144 NULL, /* setfunc */
1145 NULL, /* showfunc */
1146 set_cmd_list,
1147 show_cmd_list);
1148
1eefb858
TT
1149 xfree (set_doc);
1150 xfree (show_doc);
1151
3e43a32a
MS
1152 set_doc = xstrprintf (_("Set whether GDB should create a core "
1153 "file of GDB when %s is detected"),
3c16cced 1154 problem->name);
3e43a32a
MS
1155 show_doc = xstrprintf (_("Show whether GDB will create a core "
1156 "file of GDB when %s is detected"),
3c16cced
PA
1157 problem->name);
1158 add_setshow_enum_cmd ("corefile", class_maintenance,
1159 internal_problem_modes,
1160 &problem->should_dump_core,
1161 set_doc,
1162 show_doc,
1163 NULL, /* help_doc */
1164 NULL, /* setfunc */
1165 NULL, /* showfunc */
1166 set_cmd_list,
1167 show_cmd_list);
1eefb858
TT
1168
1169 xfree (set_doc);
1170 xfree (show_doc);
3c16cced
PA
1171}
1172
c906108c
SS
1173/* Print the system error message for errno, and also mention STRING
1174 as the file name for which the error was encountered.
1175 Then return to command level. */
1176
c25c4a8b 1177void
6972bc8b 1178perror_with_name (const char *string)
c906108c
SS
1179{
1180 char *err;
1181 char *combined;
1182
1183 err = safe_strerror (errno);
1184 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
1185 strcpy (combined, string);
1186 strcat (combined, ": ");
1187 strcat (combined, err);
1188
1189 /* I understand setting these is a matter of taste. Still, some people
1190 may clear errno but not know about bfd_error. Doing this here is not
581e13c1 1191 unreasonable. */
c906108c
SS
1192 bfd_set_error (bfd_error_no_error);
1193 errno = 0;
1194
8a3fe4f8 1195 error (_("%s."), combined);
c906108c
SS
1196}
1197
1198/* Print the system error message for ERRCODE, and also mention STRING
1199 as the file name for which the error was encountered. */
1200
1201void
6972bc8b 1202print_sys_errmsg (const char *string, int errcode)
c906108c
SS
1203{
1204 char *err;
1205 char *combined;
1206
1207 err = safe_strerror (errcode);
1208 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
1209 strcpy (combined, string);
1210 strcat (combined, ": ");
1211 strcat (combined, err);
1212
1213 /* We want anything which was printed on stdout to come out first, before
1214 this message. */
1215 gdb_flush (gdb_stdout);
1216 fprintf_unfiltered (gdb_stderr, "%s.\n", combined);
1217}
1218
1219/* Control C eventually causes this to be called, at a convenient time. */
1220
1221void
fba45db2 1222quit (void)
c906108c 1223{
7be570e7
JM
1224#ifdef __MSDOS__
1225 /* No steenking SIGINT will ever be coming our way when the
1226 program is resumed. Don't lie. */
e06e2353 1227 fatal ("Quit");
7be570e7 1228#else
c906108c 1229 if (job_control
8731e58e
AC
1230 /* If there is no terminal switching for this target, then we can't
1231 possibly get screwed by the lack of job control. */
c906108c 1232 || current_target.to_terminal_ours == NULL)
e06e2353 1233 fatal ("Quit");
c906108c 1234 else
e06e2353 1235 fatal ("Quit (expect signal SIGINT when the program is resumed)");
7be570e7 1236#endif
c906108c
SS
1237}
1238
c906108c 1239\f
c906108c 1240/* Called when a memory allocation fails, with the number of bytes of
581e13c1 1241 memory requested in SIZE. */
c906108c 1242
c25c4a8b 1243void
d26e3629 1244malloc_failure (long size)
c906108c
SS
1245{
1246 if (size > 0)
1247 {
8e65ff28 1248 internal_error (__FILE__, __LINE__,
e2e0b3e5 1249 _("virtual memory exhausted: can't allocate %ld bytes."),
8731e58e 1250 size);
c906108c
SS
1251 }
1252 else
1253 {
e2e0b3e5 1254 internal_error (__FILE__, __LINE__, _("virtual memory exhausted."));
c906108c
SS
1255 }
1256}
1257
c906108c
SS
1258/* My replacement for the read system call.
1259 Used like `read' but keeps going if `read' returns too soon. */
1260
1261int
fba45db2 1262myread (int desc, char *addr, int len)
c906108c 1263{
52f0bd74 1264 int val;
c906108c
SS
1265 int orglen = len;
1266
1267 while (len > 0)
1268 {
1269 val = read (desc, addr, len);
1270 if (val < 0)
1271 return val;
1272 if (val == 0)
1273 return orglen - len;
1274 len -= val;
1275 addr += val;
1276 }
1277 return orglen;
1278}
d26e3629 1279
c906108c
SS
1280/* Make a copy of the string at PTR with SIZE characters
1281 (and add a null character at the end in the copy).
1282 Uses malloc to get the space. Returns the address of the copy. */
1283
1284char *
5565b556 1285savestring (const char *ptr, size_t size)
c906108c 1286{
52f0bd74 1287 char *p = (char *) xmalloc (size + 1);
e0627e85 1288
c906108c
SS
1289 memcpy (p, ptr, size);
1290 p[size] = 0;
1291 return p;
1292}
1293
c906108c 1294void
aa1ee363 1295print_spaces (int n, struct ui_file *file)
c906108c 1296{
392a587b 1297 fputs_unfiltered (n_spaces (n), file);
c906108c
SS
1298}
1299
1300/* Print a host address. */
1301
1302void
ac16bf07 1303gdb_print_host_address (const void *addr, struct ui_file *stream)
c906108c 1304{
ea8992ce 1305 fprintf_filtered (stream, "%s", host_address_to_string (addr));
c906108c 1306}
c906108c 1307\f
c5aa993b 1308
dc92e161
TT
1309/* A cleanup function that calls regfree. */
1310
1311static void
1312do_regfree_cleanup (void *r)
1313{
1314 regfree (r);
1315}
1316
1317/* Create a new cleanup that frees the compiled regular expression R. */
1318
1319struct cleanup *
1320make_regfree_cleanup (regex_t *r)
1321{
1322 return make_cleanup (do_regfree_cleanup, r);
1323}
1324
1325/* Return an xmalloc'd error message resulting from a regular
1326 expression compilation failure. */
1327
1328char *
1329get_regcomp_error (int code, regex_t *rx)
1330{
1331 size_t length = regerror (code, rx, NULL, 0);
1332 char *result = xmalloc (length);
1333
1334 regerror (code, rx, result, length);
1335 return result;
1336}
1337
1338\f
1339
981c7f5a 1340/* This function supports the query, nquery, and yquery functions.
cbdeadca 1341 Ask user a y-or-n question and return 0 if answer is no, 1 if
981c7f5a
DJ
1342 answer is yes, or default the answer to the specified default
1343 (for yquery or nquery). DEFCHAR may be 'y' or 'n' to provide a
1344 default answer, or '\0' for no default.
cbdeadca
JJ
1345 CTLSTR is the control string and should end in "? ". It should
1346 not say how to answer, because we do that.
1347 ARGS are the arguments passed along with the CTLSTR argument to
1348 printf. */
1349
a0b31db1 1350static int ATTRIBUTE_PRINTF (1, 0)
cbdeadca
JJ
1351defaulted_query (const char *ctlstr, const char defchar, va_list args)
1352{
1353 int answer;
1354 int ans2;
1355 int retval;
1356 int def_value;
1357 char def_answer, not_def_answer;
981c7f5a 1358 char *y_string, *n_string, *question;
cbdeadca
JJ
1359
1360 /* Set up according to which answer is the default. */
981c7f5a
DJ
1361 if (defchar == '\0')
1362 {
1363 def_value = 1;
1364 def_answer = 'Y';
1365 not_def_answer = 'N';
1366 y_string = "y";
1367 n_string = "n";
1368 }
1369 else if (defchar == 'y')
cbdeadca
JJ
1370 {
1371 def_value = 1;
1372 def_answer = 'Y';
1373 not_def_answer = 'N';
1374 y_string = "[y]";
1375 n_string = "n";
1376 }
1377 else
1378 {
1379 def_value = 0;
1380 def_answer = 'N';
1381 not_def_answer = 'Y';
1382 y_string = "y";
1383 n_string = "[n]";
1384 }
1385
981c7f5a 1386 /* Automatically answer the default value if the user did not want
a502cf95
NR
1387 prompts or the command was issued with the server prefix. */
1388 if (! caution || server_command)
981c7f5a
DJ
1389 return def_value;
1390
1391 /* If input isn't coming from the user directly, just say what
7a01c6e0 1392 question we're asking, and then answer the default automatically. This
981c7f5a
DJ
1393 way, important error messages don't get lost when talking to GDB
1394 over a pipe. */
c63a1f86 1395 if (! input_from_terminal_p ())
981c7f5a
DJ
1396 {
1397 wrap_here ("");
1398 vfprintf_filtered (gdb_stdout, ctlstr, args);
1399
3e43a32a
MS
1400 printf_filtered (_("(%s or %s) [answered %c; "
1401 "input not from terminal]\n"),
981c7f5a
DJ
1402 y_string, n_string, def_answer);
1403 gdb_flush (gdb_stdout);
1404
1405 return def_value;
1406 }
1407
9a4105ab 1408 if (deprecated_query_hook)
cbdeadca 1409 {
9a4105ab 1410 return deprecated_query_hook (ctlstr, args);
cbdeadca
JJ
1411 }
1412
981c7f5a
DJ
1413 /* Format the question outside of the loop, to avoid reusing args. */
1414 question = xstrvprintf (ctlstr, args);
1415
cbdeadca
JJ
1416 while (1)
1417 {
581e13c1 1418 wrap_here (""); /* Flush any buffered output. */
cbdeadca
JJ
1419 gdb_flush (gdb_stdout);
1420
1421 if (annotation_level > 1)
a3f17187 1422 printf_filtered (("\n\032\032pre-query\n"));
cbdeadca 1423
981c7f5a 1424 fputs_filtered (question, gdb_stdout);
a3f17187 1425 printf_filtered (_("(%s or %s) "), y_string, n_string);
cbdeadca
JJ
1426
1427 if (annotation_level > 1)
a3f17187 1428 printf_filtered (("\n\032\032query\n"));
cbdeadca
JJ
1429
1430 wrap_here ("");
1431 gdb_flush (gdb_stdout);
1432
1433 answer = fgetc (stdin);
8626589c
JB
1434
1435 /* We expect fgetc to block until a character is read. But
1436 this may not be the case if the terminal was opened with
1437 the NONBLOCK flag. In that case, if there is nothing to
1438 read on stdin, fgetc returns EOF, but also sets the error
1439 condition flag on stdin and errno to EAGAIN. With a true
1440 EOF, stdin's error condition flag is not set.
1441
1442 A situation where this behavior was observed is a pseudo
1443 terminal on AIX. */
1444 while (answer == EOF && ferror (stdin) && errno == EAGAIN)
1445 {
1446 /* Not a real EOF. Wait a little while and try again until
1447 we read something. */
1448 clearerr (stdin);
1449 gdb_usleep (10000);
1450 answer = fgetc (stdin);
1451 }
1452
cbdeadca
JJ
1453 clearerr (stdin); /* in case of C-d */
1454 if (answer == EOF) /* C-d */
1455 {
fa3fd85b 1456 printf_filtered ("EOF [assumed %c]\n", def_answer);
cbdeadca
JJ
1457 retval = def_value;
1458 break;
1459 }
581e13c1 1460 /* Eat rest of input line, to EOF or newline. */
cbdeadca
JJ
1461 if (answer != '\n')
1462 do
1463 {
1464 ans2 = fgetc (stdin);
1465 clearerr (stdin);
1466 }
1467 while (ans2 != EOF && ans2 != '\n' && ans2 != '\r');
1468
1469 if (answer >= 'a')
1470 answer -= 040;
1471 /* Check answer. For the non-default, the user must specify
1472 the non-default explicitly. */
1473 if (answer == not_def_answer)
1474 {
1475 retval = !def_value;
1476 break;
1477 }
981c7f5a
DJ
1478 /* Otherwise, if a default was specified, the user may either
1479 specify the required input or have it default by entering
1480 nothing. */
1481 if (answer == def_answer
1482 || (defchar != '\0' &&
1483 (answer == '\n' || answer == '\r' || answer == EOF)))
cbdeadca
JJ
1484 {
1485 retval = def_value;
1486 break;
1487 }
1488 /* Invalid entries are not defaulted and require another selection. */
a3f17187 1489 printf_filtered (_("Please answer %s or %s.\n"),
cbdeadca
JJ
1490 y_string, n_string);
1491 }
1492
981c7f5a 1493 xfree (question);
cbdeadca 1494 if (annotation_level > 1)
a3f17187 1495 printf_filtered (("\n\032\032post-query\n"));
cbdeadca
JJ
1496 return retval;
1497}
1498\f
1499
1500/* Ask user a y-or-n question and return 0 if answer is no, 1 if
1501 answer is yes, or 0 if answer is defaulted.
1502 Takes three args which are given to printf to print the question.
1503 The first, a control string, should end in "? ".
1504 It should not say how to answer, because we do that. */
1505
1506int
1507nquery (const char *ctlstr, ...)
1508{
1509 va_list args;
899500d6 1510 int ret;
cbdeadca
JJ
1511
1512 va_start (args, ctlstr);
899500d6 1513 ret = defaulted_query (ctlstr, 'n', args);
cbdeadca 1514 va_end (args);
899500d6 1515 return ret;
cbdeadca
JJ
1516}
1517
1518/* Ask user a y-or-n question and return 0 if answer is no, 1 if
1519 answer is yes, or 1 if answer is defaulted.
1520 Takes three args which are given to printf to print the question.
1521 The first, a control string, should end in "? ".
1522 It should not say how to answer, because we do that. */
1523
1524int
1525yquery (const char *ctlstr, ...)
1526{
1527 va_list args;
899500d6 1528 int ret;
cbdeadca
JJ
1529
1530 va_start (args, ctlstr);
899500d6 1531 ret = defaulted_query (ctlstr, 'y', args);
cbdeadca 1532 va_end (args);
899500d6 1533 return ret;
cbdeadca
JJ
1534}
1535
981c7f5a
DJ
1536/* Ask user a y-or-n question and return 1 iff answer is yes.
1537 Takes three args which are given to printf to print the question.
1538 The first, a control string, should end in "? ".
1539 It should not say how to answer, because we do that. */
1540
1541int
1542query (const char *ctlstr, ...)
1543{
1544 va_list args;
899500d6 1545 int ret;
981c7f5a
DJ
1546
1547 va_start (args, ctlstr);
899500d6 1548 ret = defaulted_query (ctlstr, '\0', args);
981c7f5a 1549 va_end (args);
899500d6 1550 return ret;
981c7f5a
DJ
1551}
1552
6c7a06a3
TT
1553/* A helper for parse_escape that converts a host character to a
1554 target character. C is the host character. If conversion is
1555 possible, then the target character is stored in *TARGET_C and the
1556 function returns 1. Otherwise, the function returns 0. */
1557
1558static int
f870a310 1559host_char_to_target (struct gdbarch *gdbarch, int c, int *target_c)
234b45d4 1560{
6c7a06a3
TT
1561 struct obstack host_data;
1562 char the_char = c;
1563 struct cleanup *cleanups;
1564 int result = 0;
234b45d4 1565
6c7a06a3
TT
1566 obstack_init (&host_data);
1567 cleanups = make_cleanup_obstack_free (&host_data);
234b45d4 1568
f870a310 1569 convert_between_encodings (target_charset (gdbarch), host_charset (),
6c7a06a3
TT
1570 &the_char, 1, 1, &host_data, translit_none);
1571
1572 if (obstack_object_size (&host_data) == 1)
1573 {
1574 result = 1;
1575 *target_c = *(char *) obstack_base (&host_data);
1576 }
1577
1578 do_cleanups (cleanups);
1579 return result;
234b45d4
KB
1580}
1581
c906108c
SS
1582/* Parse a C escape sequence. STRING_PTR points to a variable
1583 containing a pointer to the string to parse. That pointer
1584 should point to the character after the \. That pointer
1585 is updated past the characters we use. The value of the
1586 escape sequence is returned.
1587
1588 A negative value means the sequence \ newline was seen,
1589 which is supposed to be equivalent to nothing at all.
1590
1591 If \ is followed by a null character, we return a negative
1592 value and leave the string pointer pointing at the null character.
1593
1594 If \ is followed by 000, we return 0 and leave the string pointer
1595 after the zeros. A value of 0 does not mean end of string. */
1596
1597int
f870a310 1598parse_escape (struct gdbarch *gdbarch, char **string_ptr)
c906108c 1599{
581e13c1 1600 int target_char = -2; /* Initialize to avoid GCC warnings. */
52f0bd74 1601 int c = *(*string_ptr)++;
e0627e85 1602
6c7a06a3
TT
1603 switch (c)
1604 {
8731e58e
AC
1605 case '\n':
1606 return -2;
1607 case 0:
1608 (*string_ptr)--;
1609 return 0;
8731e58e
AC
1610
1611 case '0':
1612 case '1':
1613 case '2':
1614 case '3':
1615 case '4':
1616 case '5':
1617 case '6':
1618 case '7':
1619 {
6c7a06a3 1620 int i = host_hex_value (c);
aa1ee363 1621 int count = 0;
8731e58e
AC
1622 while (++count < 3)
1623 {
5cb316ef 1624 c = (**string_ptr);
6c7a06a3 1625 if (isdigit (c) && c != '8' && c != '9')
8731e58e 1626 {
5cb316ef 1627 (*string_ptr)++;
8731e58e 1628 i *= 8;
6c7a06a3 1629 i += host_hex_value (c);
8731e58e
AC
1630 }
1631 else
1632 {
8731e58e
AC
1633 break;
1634 }
1635 }
1636 return i;
1637 }
6c7a06a3
TT
1638
1639 case 'a':
1640 c = '\a';
1641 break;
1642 case 'b':
1643 c = '\b';
1644 break;
1645 case 'f':
1646 c = '\f';
1647 break;
1648 case 'n':
1649 c = '\n';
1650 break;
1651 case 'r':
1652 c = '\r';
1653 break;
1654 case 't':
1655 c = '\t';
1656 break;
1657 case 'v':
1658 c = '\v';
1659 break;
1660
1661 default:
1662 break;
1663 }
1664
f870a310 1665 if (!host_char_to_target (gdbarch, c, &target_char))
3351ea09
JB
1666 error (_("The escape sequence `\\%c' is equivalent to plain `%c',"
1667 " which has no equivalent\nin the `%s' character set."),
905b671b 1668 c, c, target_charset (gdbarch));
6c7a06a3 1669 return target_char;
c906108c
SS
1670}
1671\f
1672/* Print the character C on STREAM as part of the contents of a literal
1673 string whose delimiter is QUOTER. Note that this routine should only
1674 be call for printing things which are independent of the language
581e13c1 1675 of the program being debugged. */
c906108c 1676
43e526b9 1677static void
74f832da 1678printchar (int c, void (*do_fputs) (const char *, struct ui_file *),
bee0189a
DJ
1679 void (*do_fprintf) (struct ui_file *, const char *, ...)
1680 ATTRIBUTE_FPTR_PRINTF_2, struct ui_file *stream, int quoter)
c906108c 1681{
c906108c
SS
1682 c &= 0xFF; /* Avoid sign bit follies */
1683
c5aa993b
JM
1684 if (c < 0x20 || /* Low control chars */
1685 (c >= 0x7F && c < 0xA0) || /* DEL, High controls */
1686 (sevenbit_strings && c >= 0x80))
1687 { /* high order bit set */
1688 switch (c)
1689 {
1690 case '\n':
43e526b9 1691 do_fputs ("\\n", stream);
c5aa993b
JM
1692 break;
1693 case '\b':
43e526b9 1694 do_fputs ("\\b", stream);
c5aa993b
JM
1695 break;
1696 case '\t':
43e526b9 1697 do_fputs ("\\t", stream);
c5aa993b
JM
1698 break;
1699 case '\f':
43e526b9 1700 do_fputs ("\\f", stream);
c5aa993b
JM
1701 break;
1702 case '\r':
43e526b9 1703 do_fputs ("\\r", stream);
c5aa993b
JM
1704 break;
1705 case '\033':
43e526b9 1706 do_fputs ("\\e", stream);
c5aa993b
JM
1707 break;
1708 case '\007':
43e526b9 1709 do_fputs ("\\a", stream);
c5aa993b
JM
1710 break;
1711 default:
43e526b9 1712 do_fprintf (stream, "\\%.3o", (unsigned int) c);
c5aa993b
JM
1713 break;
1714 }
1715 }
1716 else
1717 {
1718 if (c == '\\' || c == quoter)
43e526b9
JM
1719 do_fputs ("\\", stream);
1720 do_fprintf (stream, "%c", c);
c5aa993b 1721 }
c906108c 1722}
43e526b9
JM
1723
1724/* Print the character C on STREAM as part of the contents of a
1725 literal string whose delimiter is QUOTER. Note that these routines
1726 should only be call for printing things which are independent of
581e13c1 1727 the language of the program being debugged. */
43e526b9
JM
1728
1729void
fba45db2 1730fputstr_filtered (const char *str, int quoter, struct ui_file *stream)
43e526b9
JM
1731{
1732 while (*str)
1733 printchar (*str++, fputs_filtered, fprintf_filtered, stream, quoter);
1734}
1735
1736void
fba45db2 1737fputstr_unfiltered (const char *str, int quoter, struct ui_file *stream)
43e526b9
JM
1738{
1739 while (*str)
1740 printchar (*str++, fputs_unfiltered, fprintf_unfiltered, stream, quoter);
1741}
1742
0876f84a
DJ
1743void
1744fputstrn_filtered (const char *str, int n, int quoter,
1745 struct ui_file *stream)
1746{
1747 int i;
e0627e85 1748
0876f84a
DJ
1749 for (i = 0; i < n; i++)
1750 printchar (str[i], fputs_filtered, fprintf_filtered, stream, quoter);
1751}
1752
43e526b9 1753void
8731e58e
AC
1754fputstrn_unfiltered (const char *str, int n, int quoter,
1755 struct ui_file *stream)
43e526b9
JM
1756{
1757 int i;
5d502164 1758
43e526b9
JM
1759 for (i = 0; i < n; i++)
1760 printchar (str[i], fputs_unfiltered, fprintf_unfiltered, stream, quoter);
1761}
c906108c 1762\f
c5aa993b 1763
c906108c
SS
1764/* Number of lines per page or UINT_MAX if paging is disabled. */
1765static unsigned int lines_per_page;
920d2a44
AC
1766static void
1767show_lines_per_page (struct ui_file *file, int from_tty,
1768 struct cmd_list_element *c, const char *value)
1769{
3e43a32a
MS
1770 fprintf_filtered (file,
1771 _("Number of lines gdb thinks are in a page is %s.\n"),
920d2a44
AC
1772 value);
1773}
eb0d3137 1774
cbfbd72a 1775/* Number of chars per line or UINT_MAX if line folding is disabled. */
c906108c 1776static unsigned int chars_per_line;
920d2a44
AC
1777static void
1778show_chars_per_line (struct ui_file *file, int from_tty,
1779 struct cmd_list_element *c, const char *value)
1780{
3e43a32a
MS
1781 fprintf_filtered (file,
1782 _("Number of characters gdb thinks "
1783 "are in a line is %s.\n"),
920d2a44
AC
1784 value);
1785}
eb0d3137 1786
c906108c
SS
1787/* Current count of lines printed on this page, chars on this line. */
1788static unsigned int lines_printed, chars_printed;
1789
1790/* Buffer and start column of buffered text, for doing smarter word-
1791 wrapping. When someone calls wrap_here(), we start buffering output
1792 that comes through fputs_filtered(). If we see a newline, we just
1793 spit it out and forget about the wrap_here(). If we see another
1794 wrap_here(), we spit it out and remember the newer one. If we see
1795 the end of the line, we spit out a newline, the indent, and then
1796 the buffered output. */
1797
1798/* Malloc'd buffer with chars_per_line+2 bytes. Contains characters which
1799 are waiting to be output (they have already been counted in chars_printed).
1800 When wrap_buffer[0] is null, the buffer is empty. */
1801static char *wrap_buffer;
1802
1803/* Pointer in wrap_buffer to the next character to fill. */
1804static char *wrap_pointer;
1805
1806/* String to indent by if the wrap occurs. Must not be NULL if wrap_column
1807 is non-zero. */
1808static char *wrap_indent;
1809
1810/* Column number on the screen where wrap_buffer begins, or 0 if wrapping
1811 is not in effect. */
1812static int wrap_column;
c906108c 1813\f
c5aa993b 1814
eb0d3137
MK
1815/* Inialize the number of lines per page and chars per line. */
1816
c906108c 1817void
fba45db2 1818init_page_info (void)
c906108c 1819{
5da1313b
JK
1820 if (batch_flag)
1821 {
1822 lines_per_page = UINT_MAX;
1823 chars_per_line = UINT_MAX;
1824 }
1825 else
c906108c 1826#if defined(TUI)
5ecb1806 1827 if (!tui_get_command_dimension (&chars_per_line, &lines_per_page))
c906108c
SS
1828#endif
1829 {
eb0d3137 1830 int rows, cols;
c906108c 1831
ec145965
EZ
1832#if defined(__GO32__)
1833 rows = ScreenRows ();
1834 cols = ScreenCols ();
1835 lines_per_page = rows;
1836 chars_per_line = cols;
1837#else
eb0d3137
MK
1838 /* Make sure Readline has initialized its terminal settings. */
1839 rl_reset_terminal (NULL);
c906108c 1840
eb0d3137
MK
1841 /* Get the screen size from Readline. */
1842 rl_get_screen_size (&rows, &cols);
1843 lines_per_page = rows;
1844 chars_per_line = cols;
c906108c 1845
eb0d3137
MK
1846 /* Readline should have fetched the termcap entry for us. */
1847 if (tgetnum ("li") < 0 || getenv ("EMACS"))
1848 {
1849 /* The number of lines per page is not mentioned in the
1850 terminal description. This probably means that paging is
1851 not useful (e.g. emacs shell window), so disable paging. */
1852 lines_per_page = UINT_MAX;
1853 }
c906108c 1854
eb0d3137 1855 /* FIXME: Get rid of this junk. */
c906108c 1856#if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
c906108c
SS
1857 SIGWINCH_HANDLER (SIGWINCH);
1858#endif
eb0d3137 1859
c906108c 1860 /* If the output is not a terminal, don't paginate it. */
d9fcf2fb 1861 if (!ui_file_isatty (gdb_stdout))
c5aa993b 1862 lines_per_page = UINT_MAX;
eb0d3137 1863#endif
ec145965 1864 }
eb0d3137
MK
1865
1866 set_screen_size ();
c5aa993b 1867 set_width ();
c906108c
SS
1868}
1869
5da1313b
JK
1870/* Helper for make_cleanup_restore_page_info. */
1871
1872static void
1873do_restore_page_info_cleanup (void *arg)
1874{
1875 set_screen_size ();
1876 set_width ();
1877}
1878
1879/* Provide cleanup for restoring the terminal size. */
1880
1881struct cleanup *
1882make_cleanup_restore_page_info (void)
1883{
1884 struct cleanup *back_to;
1885
1886 back_to = make_cleanup (do_restore_page_info_cleanup, NULL);
1887 make_cleanup_restore_uinteger (&lines_per_page);
1888 make_cleanup_restore_uinteger (&chars_per_line);
1889
1890 return back_to;
1891}
1892
1893/* Temporarily set BATCH_FLAG and the associated unlimited terminal size.
1894 Provide cleanup for restoring the original state. */
1895
1896struct cleanup *
1897set_batch_flag_and_make_cleanup_restore_page_info (void)
1898{
1899 struct cleanup *back_to = make_cleanup_restore_page_info ();
1900
1901 make_cleanup_restore_integer (&batch_flag);
1902 batch_flag = 1;
1903 init_page_info ();
1904
1905 return back_to;
1906}
1907
eb0d3137
MK
1908/* Set the screen size based on LINES_PER_PAGE and CHARS_PER_LINE. */
1909
1910static void
1911set_screen_size (void)
1912{
1913 int rows = lines_per_page;
1914 int cols = chars_per_line;
1915
1916 if (rows <= 0)
1917 rows = INT_MAX;
1918
1919 if (cols <= 0)
0caa462c 1920 cols = INT_MAX;
eb0d3137
MK
1921
1922 /* Update Readline's idea of the terminal size. */
1923 rl_set_screen_size (rows, cols);
1924}
1925
1926/* Reinitialize WRAP_BUFFER according to the current value of
1927 CHARS_PER_LINE. */
1928
c906108c 1929static void
fba45db2 1930set_width (void)
c906108c
SS
1931{
1932 if (chars_per_line == 0)
c5aa993b 1933 init_page_info ();
c906108c
SS
1934
1935 if (!wrap_buffer)
1936 {
1937 wrap_buffer = (char *) xmalloc (chars_per_line + 2);
1938 wrap_buffer[0] = '\0';
1939 }
1940 else
1941 wrap_buffer = (char *) xrealloc (wrap_buffer, chars_per_line + 2);
eb0d3137 1942 wrap_pointer = wrap_buffer; /* Start it at the beginning. */
c906108c
SS
1943}
1944
c5aa993b 1945static void
fba45db2 1946set_width_command (char *args, int from_tty, struct cmd_list_element *c)
c906108c 1947{
eb0d3137 1948 set_screen_size ();
c906108c
SS
1949 set_width ();
1950}
1951
eb0d3137
MK
1952static void
1953set_height_command (char *args, int from_tty, struct cmd_list_element *c)
1954{
1955 set_screen_size ();
1956}
1957
c906108c
SS
1958/* Wait, so the user can read what's on the screen. Prompt the user
1959 to continue by pressing RETURN. */
1960
1961static void
fba45db2 1962prompt_for_continue (void)
c906108c
SS
1963{
1964 char *ignore;
1965 char cont_prompt[120];
1966
1967 if (annotation_level > 1)
a3f17187 1968 printf_unfiltered (("\n\032\032pre-prompt-for-continue\n"));
c906108c
SS
1969
1970 strcpy (cont_prompt,
1971 "---Type <return> to continue, or q <return> to quit---");
1972 if (annotation_level > 1)
1973 strcat (cont_prompt, "\n\032\032prompt-for-continue\n");
1974
1975 /* We must do this *before* we call gdb_readline, else it will eventually
1976 call us -- thinking that we're trying to print beyond the end of the
1977 screen. */
1978 reinitialize_more_filter ();
1979
1980 immediate_quit++;
1981 /* On a real operating system, the user can quit with SIGINT.
1982 But not on GO32.
1983
1984 'q' is provided on all systems so users don't have to change habits
1985 from system to system, and because telling them what to do in
1986 the prompt is more user-friendly than expecting them to think of
1987 SIGINT. */
1988 /* Call readline, not gdb_readline, because GO32 readline handles control-C
1989 whereas control-C to gdb_readline will cause the user to get dumped
1990 out to DOS. */
b4f5539f 1991 ignore = gdb_readline_wrapper (cont_prompt);
c906108c
SS
1992
1993 if (annotation_level > 1)
a3f17187 1994 printf_unfiltered (("\n\032\032post-prompt-for-continue\n"));
c906108c
SS
1995
1996 if (ignore)
1997 {
1998 char *p = ignore;
5d502164 1999
c906108c
SS
2000 while (*p == ' ' || *p == '\t')
2001 ++p;
2002 if (p[0] == 'q')
362646f5 2003 async_request_quit (0);
b8c9b27d 2004 xfree (ignore);
c906108c
SS
2005 }
2006 immediate_quit--;
2007
2008 /* Now we have to do this again, so that GDB will know that it doesn't
2009 need to save the ---Type <return>--- line at the top of the screen. */
2010 reinitialize_more_filter ();
2011
581e13c1 2012 dont_repeat (); /* Forget prev cmd -- CR won't repeat it. */
c906108c
SS
2013}
2014
2015/* Reinitialize filter; ie. tell it to reset to original values. */
2016
2017void
fba45db2 2018reinitialize_more_filter (void)
c906108c
SS
2019{
2020 lines_printed = 0;
2021 chars_printed = 0;
2022}
2023
2024/* Indicate that if the next sequence of characters overflows the line,
581e13c1 2025 a newline should be inserted here rather than when it hits the end.
c906108c
SS
2026 If INDENT is non-null, it is a string to be printed to indent the
2027 wrapped part on the next line. INDENT must remain accessible until
2028 the next call to wrap_here() or until a newline is printed through
2029 fputs_filtered().
2030
2031 If the line is already overfull, we immediately print a newline and
2032 the indentation, and disable further wrapping.
2033
2034 If we don't know the width of lines, but we know the page height,
2035 we must not wrap words, but should still keep track of newlines
2036 that were explicitly printed.
2037
2038 INDENT should not contain tabs, as that will mess up the char count
2039 on the next line. FIXME.
2040
2041 This routine is guaranteed to force out any output which has been
2042 squirreled away in the wrap_buffer, so wrap_here ((char *)0) can be
2043 used to force out output from the wrap_buffer. */
2044
2045void
fba45db2 2046wrap_here (char *indent)
c906108c 2047{
581e13c1 2048 /* This should have been allocated, but be paranoid anyway. */
c906108c 2049 if (!wrap_buffer)
3e43a32a
MS
2050 internal_error (__FILE__, __LINE__,
2051 _("failed internal consistency check"));
c906108c
SS
2052
2053 if (wrap_buffer[0])
2054 {
2055 *wrap_pointer = '\0';
2056 fputs_unfiltered (wrap_buffer, gdb_stdout);
2057 }
2058 wrap_pointer = wrap_buffer;
2059 wrap_buffer[0] = '\0';
3e43a32a 2060 if (chars_per_line == UINT_MAX) /* No line overflow checking. */
c906108c
SS
2061 {
2062 wrap_column = 0;
2063 }
2064 else if (chars_printed >= chars_per_line)
2065 {
2066 puts_filtered ("\n");
2067 if (indent != NULL)
2068 puts_filtered (indent);
2069 wrap_column = 0;
2070 }
2071 else
2072 {
2073 wrap_column = chars_printed;
2074 if (indent == NULL)
2075 wrap_indent = "";
2076 else
2077 wrap_indent = indent;
2078 }
2079}
2080
4a351cef 2081/* Print input string to gdb_stdout, filtered, with wrap,
581e13c1 2082 arranging strings in columns of n chars. String can be
4a351cef
AF
2083 right or left justified in the column. Never prints
2084 trailing spaces. String should never be longer than
2085 width. FIXME: this could be useful for the EXAMINE
581e13c1 2086 command, which currently doesn't tabulate very well. */
4a351cef
AF
2087
2088void
2089puts_filtered_tabular (char *string, int width, int right)
2090{
2091 int spaces = 0;
2092 int stringlen;
2093 char *spacebuf;
2094
2095 gdb_assert (chars_per_line > 0);
2096 if (chars_per_line == UINT_MAX)
2097 {
2098 fputs_filtered (string, gdb_stdout);
2099 fputs_filtered ("\n", gdb_stdout);
2100 return;
2101 }
2102
2103 if (((chars_printed - 1) / width + 2) * width >= chars_per_line)
2104 fputs_filtered ("\n", gdb_stdout);
2105
2106 if (width >= chars_per_line)
2107 width = chars_per_line - 1;
2108
2109 stringlen = strlen (string);
2110
2111 if (chars_printed > 0)
2112 spaces = width - (chars_printed - 1) % width - 1;
2113 if (right)
2114 spaces += width - stringlen;
2115
2116 spacebuf = alloca (spaces + 1);
2117 spacebuf[spaces] = '\0';
2118 while (spaces--)
2119 spacebuf[spaces] = ' ';
2120
2121 fputs_filtered (spacebuf, gdb_stdout);
2122 fputs_filtered (string, gdb_stdout);
2123}
2124
2125
c906108c 2126/* Ensure that whatever gets printed next, using the filtered output
581e13c1 2127 commands, starts at the beginning of the line. I.e. if there is
c906108c 2128 any pending output for the current line, flush it and start a new
581e13c1 2129 line. Otherwise do nothing. */
c906108c
SS
2130
2131void
fba45db2 2132begin_line (void)
c906108c
SS
2133{
2134 if (chars_printed > 0)
2135 {
2136 puts_filtered ("\n");
2137 }
2138}
2139
ac9a91a7 2140
c906108c
SS
2141/* Like fputs but if FILTER is true, pause after every screenful.
2142
2143 Regardless of FILTER can wrap at points other than the final
2144 character of a line.
2145
2146 Unlike fputs, fputs_maybe_filtered does not return a value.
2147 It is OK for LINEBUFFER to be NULL, in which case just don't print
2148 anything.
2149
2150 Note that a longjmp to top level may occur in this routine (only if
2151 FILTER is true) (since prompt_for_continue may do so) so this
2152 routine should not be called when cleanups are not in place. */
2153
2154static void
fba45db2
KB
2155fputs_maybe_filtered (const char *linebuffer, struct ui_file *stream,
2156 int filter)
c906108c
SS
2157{
2158 const char *lineptr;
2159
2160 if (linebuffer == 0)
2161 return;
2162
2163 /* Don't do any filtering if it is disabled. */
390a8aca 2164 if (stream != gdb_stdout
b2e7f004
JK
2165 || !pagination_enabled
2166 || batch_flag
390a8aca 2167 || (lines_per_page == UINT_MAX && chars_per_line == UINT_MAX)
58dadb1b 2168 || top_level_interpreter () == NULL
390a8aca 2169 || ui_out_is_mi_like_p (interp_ui_out (top_level_interpreter ())))
c906108c
SS
2170 {
2171 fputs_unfiltered (linebuffer, stream);
2172 return;
2173 }
2174
2175 /* Go through and output each character. Show line extension
2176 when this is necessary; prompt user for new page when this is
2177 necessary. */
c5aa993b 2178
c906108c
SS
2179 lineptr = linebuffer;
2180 while (*lineptr)
2181 {
2182 /* Possible new page. */
8731e58e 2183 if (filter && (lines_printed >= lines_per_page - 1))
c906108c
SS
2184 prompt_for_continue ();
2185
2186 while (*lineptr && *lineptr != '\n')
2187 {
2188 /* Print a single line. */
2189 if (*lineptr == '\t')
2190 {
2191 if (wrap_column)
2192 *wrap_pointer++ = '\t';
2193 else
2194 fputc_unfiltered ('\t', stream);
2195 /* Shifting right by 3 produces the number of tab stops
2196 we have already passed, and then adding one and
c5aa993b 2197 shifting left 3 advances to the next tab stop. */
c906108c
SS
2198 chars_printed = ((chars_printed >> 3) + 1) << 3;
2199 lineptr++;
2200 }
2201 else
2202 {
2203 if (wrap_column)
2204 *wrap_pointer++ = *lineptr;
2205 else
c5aa993b 2206 fputc_unfiltered (*lineptr, stream);
c906108c
SS
2207 chars_printed++;
2208 lineptr++;
2209 }
c5aa993b 2210
c906108c
SS
2211 if (chars_printed >= chars_per_line)
2212 {
2213 unsigned int save_chars = chars_printed;
2214
2215 chars_printed = 0;
2216 lines_printed++;
2217 /* If we aren't actually wrapping, don't output newline --
c5aa993b
JM
2218 if chars_per_line is right, we probably just overflowed
2219 anyway; if it's wrong, let us keep going. */
c906108c
SS
2220 if (wrap_column)
2221 fputc_unfiltered ('\n', stream);
2222
2223 /* Possible new page. */
2224 if (lines_printed >= lines_per_page - 1)
2225 prompt_for_continue ();
2226
581e13c1 2227 /* Now output indentation and wrapped string. */
c906108c
SS
2228 if (wrap_column)
2229 {
2230 fputs_unfiltered (wrap_indent, stream);
581e13c1
MS
2231 *wrap_pointer = '\0'; /* Null-terminate saved stuff, */
2232 fputs_unfiltered (wrap_buffer, stream); /* and eject it. */
c906108c
SS
2233 /* FIXME, this strlen is what prevents wrap_indent from
2234 containing tabs. However, if we recurse to print it
2235 and count its chars, we risk trouble if wrap_indent is
581e13c1 2236 longer than (the user settable) chars_per_line.
c906108c
SS
2237 Note also that this can set chars_printed > chars_per_line
2238 if we are printing a long string. */
2239 chars_printed = strlen (wrap_indent)
c5aa993b 2240 + (save_chars - wrap_column);
c906108c
SS
2241 wrap_pointer = wrap_buffer; /* Reset buffer */
2242 wrap_buffer[0] = '\0';
c5aa993b
JM
2243 wrap_column = 0; /* And disable fancy wrap */
2244 }
c906108c
SS
2245 }
2246 }
2247
2248 if (*lineptr == '\n')
2249 {
2250 chars_printed = 0;
3e43a32a
MS
2251 wrap_here ((char *) 0); /* Spit out chars, cancel
2252 further wraps. */
c906108c
SS
2253 lines_printed++;
2254 fputc_unfiltered ('\n', stream);
2255 lineptr++;
2256 }
2257 }
2258}
2259
2260void
fba45db2 2261fputs_filtered (const char *linebuffer, struct ui_file *stream)
c906108c
SS
2262{
2263 fputs_maybe_filtered (linebuffer, stream, 1);
2264}
2265
2266int
fba45db2 2267putchar_unfiltered (int c)
c906108c 2268{
11cf8741 2269 char buf = c;
e0627e85 2270
d9fcf2fb 2271 ui_file_write (gdb_stdout, &buf, 1);
c906108c
SS
2272 return c;
2273}
2274
d1f4cff8
AC
2275/* Write character C to gdb_stdout using GDB's paging mechanism and return C.
2276 May return nonlocally. */
2277
2278int
2279putchar_filtered (int c)
2280{
2281 return fputc_filtered (c, gdb_stdout);
2282}
2283
c906108c 2284int
fba45db2 2285fputc_unfiltered (int c, struct ui_file *stream)
c906108c 2286{
11cf8741 2287 char buf = c;
e0627e85 2288
d9fcf2fb 2289 ui_file_write (stream, &buf, 1);
c906108c
SS
2290 return c;
2291}
2292
2293int
fba45db2 2294fputc_filtered (int c, struct ui_file *stream)
c906108c
SS
2295{
2296 char buf[2];
2297
2298 buf[0] = c;
2299 buf[1] = 0;
2300 fputs_filtered (buf, stream);
2301 return c;
2302}
2303
2304/* puts_debug is like fputs_unfiltered, except it prints special
2305 characters in printable fashion. */
2306
2307void
fba45db2 2308puts_debug (char *prefix, char *string, char *suffix)
c906108c
SS
2309{
2310 int ch;
2311
2312 /* Print prefix and suffix after each line. */
2313 static int new_line = 1;
2314 static int return_p = 0;
2315 static char *prev_prefix = "";
2316 static char *prev_suffix = "";
2317
2318 if (*string == '\n')
2319 return_p = 0;
2320
2321 /* If the prefix is changing, print the previous suffix, a new line,
2322 and the new prefix. */
c5aa993b 2323 if ((return_p || (strcmp (prev_prefix, prefix) != 0)) && !new_line)
c906108c 2324 {
9846de1b
JM
2325 fputs_unfiltered (prev_suffix, gdb_stdlog);
2326 fputs_unfiltered ("\n", gdb_stdlog);
2327 fputs_unfiltered (prefix, gdb_stdlog);
c906108c
SS
2328 }
2329
2330 /* Print prefix if we printed a newline during the previous call. */
2331 if (new_line)
2332 {
2333 new_line = 0;
9846de1b 2334 fputs_unfiltered (prefix, gdb_stdlog);
c906108c
SS
2335 }
2336
2337 prev_prefix = prefix;
2338 prev_suffix = suffix;
2339
2340 /* Output characters in a printable format. */
2341 while ((ch = *string++) != '\0')
2342 {
2343 switch (ch)
c5aa993b 2344 {
c906108c
SS
2345 default:
2346 if (isprint (ch))
9846de1b 2347 fputc_unfiltered (ch, gdb_stdlog);
c906108c
SS
2348
2349 else
9846de1b 2350 fprintf_unfiltered (gdb_stdlog, "\\x%02x", ch & 0xff);
c906108c
SS
2351 break;
2352
c5aa993b
JM
2353 case '\\':
2354 fputs_unfiltered ("\\\\", gdb_stdlog);
2355 break;
2356 case '\b':
2357 fputs_unfiltered ("\\b", gdb_stdlog);
2358 break;
2359 case '\f':
2360 fputs_unfiltered ("\\f", gdb_stdlog);
2361 break;
2362 case '\n':
2363 new_line = 1;
2364 fputs_unfiltered ("\\n", gdb_stdlog);
2365 break;
2366 case '\r':
2367 fputs_unfiltered ("\\r", gdb_stdlog);
2368 break;
2369 case '\t':
2370 fputs_unfiltered ("\\t", gdb_stdlog);
2371 break;
2372 case '\v':
2373 fputs_unfiltered ("\\v", gdb_stdlog);
2374 break;
2375 }
c906108c
SS
2376
2377 return_p = ch == '\r';
2378 }
2379
2380 /* Print suffix if we printed a newline. */
2381 if (new_line)
2382 {
9846de1b
JM
2383 fputs_unfiltered (suffix, gdb_stdlog);
2384 fputs_unfiltered ("\n", gdb_stdlog);
c906108c
SS
2385 }
2386}
2387
2388
2389/* Print a variable number of ARGS using format FORMAT. If this
2390 information is going to put the amount written (since the last call
2391 to REINITIALIZE_MORE_FILTER or the last page break) over the page size,
2392 call prompt_for_continue to get the users permision to continue.
2393
2394 Unlike fprintf, this function does not return a value.
2395
2396 We implement three variants, vfprintf (takes a vararg list and stream),
2397 fprintf (takes a stream to write on), and printf (the usual).
2398
2399 Note also that a longjmp to top level may occur in this routine
2400 (since prompt_for_continue may do so) so this routine should not be
2401 called when cleanups are not in place. */
2402
2403static void
fba45db2
KB
2404vfprintf_maybe_filtered (struct ui_file *stream, const char *format,
2405 va_list args, int filter)
c906108c
SS
2406{
2407 char *linebuffer;
2408 struct cleanup *old_cleanups;
2409
e623b504 2410 linebuffer = xstrvprintf (format, args);
b8c9b27d 2411 old_cleanups = make_cleanup (xfree, linebuffer);
c906108c
SS
2412 fputs_maybe_filtered (linebuffer, stream, filter);
2413 do_cleanups (old_cleanups);
2414}
2415
2416
2417void
fba45db2 2418vfprintf_filtered (struct ui_file *stream, const char *format, va_list args)
c906108c
SS
2419{
2420 vfprintf_maybe_filtered (stream, format, args, 1);
2421}
2422
2423void
fba45db2 2424vfprintf_unfiltered (struct ui_file *stream, const char *format, va_list args)
c906108c
SS
2425{
2426 char *linebuffer;
2427 struct cleanup *old_cleanups;
2428
e623b504 2429 linebuffer = xstrvprintf (format, args);
b8c9b27d 2430 old_cleanups = make_cleanup (xfree, linebuffer);
75feb17d
DJ
2431 if (debug_timestamp && stream == gdb_stdlog)
2432 {
2433 struct timeval tm;
2434 char *timestamp;
6e5abd65 2435 int len, need_nl;
75feb17d
DJ
2436
2437 gettimeofday (&tm, NULL);
6e5abd65
PA
2438
2439 len = strlen (linebuffer);
2440 need_nl = (len > 0 && linebuffer[len - 1] != '\n');
2441
2442 timestamp = xstrprintf ("%ld:%ld %s%s",
2443 (long) tm.tv_sec, (long) tm.tv_usec,
2444 linebuffer,
2445 need_nl ? "\n": "");
75feb17d
DJ
2446 make_cleanup (xfree, timestamp);
2447 fputs_unfiltered (timestamp, stream);
2448 }
6e5abd65
PA
2449 else
2450 fputs_unfiltered (linebuffer, stream);
c906108c
SS
2451 do_cleanups (old_cleanups);
2452}
2453
2454void
fba45db2 2455vprintf_filtered (const char *format, va_list args)
c906108c
SS
2456{
2457 vfprintf_maybe_filtered (gdb_stdout, format, args, 1);
2458}
2459
2460void
fba45db2 2461vprintf_unfiltered (const char *format, va_list args)
c906108c
SS
2462{
2463 vfprintf_unfiltered (gdb_stdout, format, args);
2464}
2465
c906108c 2466void
8731e58e 2467fprintf_filtered (struct ui_file *stream, const char *format, ...)
c906108c
SS
2468{
2469 va_list args;
e0627e85 2470
c906108c 2471 va_start (args, format);
c906108c
SS
2472 vfprintf_filtered (stream, format, args);
2473 va_end (args);
2474}
2475
c906108c 2476void
8731e58e 2477fprintf_unfiltered (struct ui_file *stream, const char *format, ...)
c906108c
SS
2478{
2479 va_list args;
e0627e85 2480
c906108c 2481 va_start (args, format);
c906108c
SS
2482 vfprintf_unfiltered (stream, format, args);
2483 va_end (args);
2484}
2485
2486/* Like fprintf_filtered, but prints its result indented.
2487 Called as fprintfi_filtered (spaces, stream, format, ...); */
2488
c906108c 2489void
8731e58e
AC
2490fprintfi_filtered (int spaces, struct ui_file *stream, const char *format,
2491 ...)
c906108c
SS
2492{
2493 va_list args;
e0627e85 2494
c906108c 2495 va_start (args, format);
c906108c
SS
2496 print_spaces_filtered (spaces, stream);
2497
2498 vfprintf_filtered (stream, format, args);
2499 va_end (args);
2500}
2501
2502
c906108c 2503void
8731e58e 2504printf_filtered (const char *format, ...)
c906108c
SS
2505{
2506 va_list args;
e0627e85 2507
c906108c 2508 va_start (args, format);
c906108c
SS
2509 vfprintf_filtered (gdb_stdout, format, args);
2510 va_end (args);
2511}
2512
2513
c906108c 2514void
8731e58e 2515printf_unfiltered (const char *format, ...)
c906108c
SS
2516{
2517 va_list args;
e0627e85 2518
c906108c 2519 va_start (args, format);
c906108c
SS
2520 vfprintf_unfiltered (gdb_stdout, format, args);
2521 va_end (args);
2522}
2523
2524/* Like printf_filtered, but prints it's result indented.
2525 Called as printfi_filtered (spaces, format, ...); */
2526
c906108c 2527void
8731e58e 2528printfi_filtered (int spaces, const char *format, ...)
c906108c
SS
2529{
2530 va_list args;
e0627e85 2531
c906108c 2532 va_start (args, format);
c906108c
SS
2533 print_spaces_filtered (spaces, gdb_stdout);
2534 vfprintf_filtered (gdb_stdout, format, args);
2535 va_end (args);
2536}
2537
2538/* Easy -- but watch out!
2539
2540 This routine is *not* a replacement for puts()! puts() appends a newline.
2541 This one doesn't, and had better not! */
2542
2543void
fba45db2 2544puts_filtered (const char *string)
c906108c
SS
2545{
2546 fputs_filtered (string, gdb_stdout);
2547}
2548
2549void
fba45db2 2550puts_unfiltered (const char *string)
c906108c
SS
2551{
2552 fputs_unfiltered (string, gdb_stdout);
2553}
2554
2555/* Return a pointer to N spaces and a null. The pointer is good
2556 until the next call to here. */
2557char *
fba45db2 2558n_spaces (int n)
c906108c 2559{
392a587b
JM
2560 char *t;
2561 static char *spaces = 0;
2562 static int max_spaces = -1;
c906108c
SS
2563
2564 if (n > max_spaces)
2565 {
2566 if (spaces)
b8c9b27d 2567 xfree (spaces);
c5aa993b
JM
2568 spaces = (char *) xmalloc (n + 1);
2569 for (t = spaces + n; t != spaces;)
c906108c
SS
2570 *--t = ' ';
2571 spaces[n] = '\0';
2572 max_spaces = n;
2573 }
2574
2575 return spaces + max_spaces - n;
2576}
2577
2578/* Print N spaces. */
2579void
fba45db2 2580print_spaces_filtered (int n, struct ui_file *stream)
c906108c
SS
2581{
2582 fputs_filtered (n_spaces (n), stream);
2583}
2584\f
4a351cef 2585/* C++/ObjC demangler stuff. */
c906108c 2586
389e51db
AC
2587/* fprintf_symbol_filtered attempts to demangle NAME, a symbol in language
2588 LANG, using demangling args ARG_MODE, and print it filtered to STREAM.
2589 If the name is not mangled, or the language for the name is unknown, or
581e13c1 2590 demangling is off, the name is printed in its "raw" form. */
c906108c
SS
2591
2592void
8731e58e
AC
2593fprintf_symbol_filtered (struct ui_file *stream, char *name,
2594 enum language lang, int arg_mode)
c906108c
SS
2595{
2596 char *demangled;
2597
2598 if (name != NULL)
2599 {
2600 /* If user wants to see raw output, no problem. */
2601 if (!demangle)
2602 {
2603 fputs_filtered (name, stream);
2604 }
2605 else
2606 {
9a3d7dfd 2607 demangled = language_demangle (language_def (lang), name, arg_mode);
c906108c
SS
2608 fputs_filtered (demangled ? demangled : name, stream);
2609 if (demangled != NULL)
2610 {
b8c9b27d 2611 xfree (demangled);
c906108c
SS
2612 }
2613 }
2614 }
2615}
2616
2617/* Do a strcmp() type operation on STRING1 and STRING2, ignoring any
2618 differences in whitespace. Returns 0 if they match, non-zero if they
2619 don't (slightly different than strcmp()'s range of return values).
c5aa993b 2620
c906108c
SS
2621 As an extra hack, string1=="FOO(ARGS)" matches string2=="FOO".
2622 This "feature" is useful when searching for matching C++ function names
2623 (such as if the user types 'break FOO', where FOO is a mangled C++
581e13c1 2624 function). */
c906108c
SS
2625
2626int
fba45db2 2627strcmp_iw (const char *string1, const char *string2)
c906108c
SS
2628{
2629 while ((*string1 != '\0') && (*string2 != '\0'))
2630 {
2631 while (isspace (*string1))
2632 {
2633 string1++;
2634 }
2635 while (isspace (*string2))
2636 {
2637 string2++;
2638 }
559a7a62
JK
2639 if (case_sensitivity == case_sensitive_on && *string1 != *string2)
2640 break;
2641 if (case_sensitivity == case_sensitive_off
2642 && (tolower ((unsigned char) *string1)
2643 != tolower ((unsigned char) *string2)))
2644 break;
c906108c
SS
2645 if (*string1 != '\0')
2646 {
2647 string1++;
2648 string2++;
2649 }
2650 }
2651 return (*string1 != '\0' && *string1 != '(') || (*string2 != '\0');
2652}
2de7ced7 2653
0fe19209
DC
2654/* This is like strcmp except that it ignores whitespace and treats
2655 '(' as the first non-NULL character in terms of ordering. Like
2656 strcmp (and unlike strcmp_iw), it returns negative if STRING1 <
2657 STRING2, 0 if STRING2 = STRING2, and positive if STRING1 > STRING2
2658 according to that ordering.
2659
2660 If a list is sorted according to this function and if you want to
2661 find names in the list that match some fixed NAME according to
2662 strcmp_iw(LIST_ELT, NAME), then the place to start looking is right
2663 where this function would put NAME.
2664
559a7a62
JK
2665 This function must be neutral to the CASE_SENSITIVITY setting as the user
2666 may choose it during later lookup. Therefore this function always sorts
2667 primarily case-insensitively and secondarily case-sensitively.
2668
0fe19209
DC
2669 Here are some examples of why using strcmp to sort is a bad idea:
2670
2671 Whitespace example:
2672
2673 Say your partial symtab contains: "foo<char *>", "goo". Then, if
2674 we try to do a search for "foo<char*>", strcmp will locate this
2675 after "foo<char *>" and before "goo". Then lookup_partial_symbol
2676 will start looking at strings beginning with "goo", and will never
2677 see the correct match of "foo<char *>".
2678
2679 Parenthesis example:
2680
2681 In practice, this is less like to be an issue, but I'll give it a
2682 shot. Let's assume that '$' is a legitimate character to occur in
2683 symbols. (Which may well even be the case on some systems.) Then
2684 say that the partial symbol table contains "foo$" and "foo(int)".
2685 strcmp will put them in this order, since '$' < '('. Now, if the
2686 user searches for "foo", then strcmp will sort "foo" before "foo$".
2687 Then lookup_partial_symbol will notice that strcmp_iw("foo$",
2688 "foo") is false, so it won't proceed to the actual match of
2689 "foo(int)" with "foo". */
2690
2691int
2692strcmp_iw_ordered (const char *string1, const char *string2)
2693{
559a7a62
JK
2694 const char *saved_string1 = string1, *saved_string2 = string2;
2695 enum case_sensitivity case_pass = case_sensitive_off;
2696
2697 for (;;)
0fe19209 2698 {
b11b1f88
JK
2699 /* C1 and C2 are valid only if *string1 != '\0' && *string2 != '\0'.
2700 Provide stub characters if we are already at the end of one of the
2701 strings. */
2702 char c1 = 'X', c2 = 'X';
2703
2704 while (*string1 != '\0' && *string2 != '\0')
0fe19209 2705 {
b11b1f88
JK
2706 while (isspace (*string1))
2707 string1++;
2708 while (isspace (*string2))
2709 string2++;
2710
559a7a62
JK
2711 switch (case_pass)
2712 {
2713 case case_sensitive_off:
2714 c1 = tolower ((unsigned char) *string1);
2715 c2 = tolower ((unsigned char) *string2);
2716 break;
2717 case case_sensitive_on:
b11b1f88
JK
2718 c1 = *string1;
2719 c2 = *string2;
559a7a62
JK
2720 break;
2721 }
b11b1f88
JK
2722 if (c1 != c2)
2723 break;
2724
2725 if (*string1 != '\0')
2726 {
2727 string1++;
2728 string2++;
2729 }
0fe19209 2730 }
b11b1f88
JK
2731
2732 switch (*string1)
0fe19209 2733 {
b11b1f88
JK
2734 /* Characters are non-equal unless they're both '\0'; we want to
2735 make sure we get the comparison right according to our
2736 comparison in the cases where one of them is '\0' or '('. */
2737 case '\0':
2738 if (*string2 == '\0')
559a7a62 2739 break;
b11b1f88
JK
2740 else
2741 return -1;
2742 case '(':
2743 if (*string2 == '\0')
2744 return 1;
2745 else
2746 return -1;
2747 default:
2748 if (*string2 == '\0' || *string2 == '(')
2749 return 1;
559a7a62
JK
2750 else if (c1 > c2)
2751 return 1;
2752 else if (c1 < c2)
2753 return -1;
2754 /* PASSTHRU */
0fe19209 2755 }
559a7a62
JK
2756
2757 if (case_pass == case_sensitive_on)
2758 return 0;
2759
2760 /* Otherwise the strings were equal in case insensitive way, make
2761 a more fine grained comparison in a case sensitive way. */
2762
2763 case_pass = case_sensitive_on;
2764 string1 = saved_string1;
2765 string2 = saved_string2;
0fe19209 2766 }
0fe19209
DC
2767}
2768
2de7ced7
DJ
2769/* A simple comparison function with opposite semantics to strcmp. */
2770
2771int
2772streq (const char *lhs, const char *rhs)
2773{
2774 return !strcmp (lhs, rhs);
2775}
c906108c 2776\f
c5aa993b 2777
c906108c 2778/*
c5aa993b
JM
2779 ** subset_compare()
2780 ** Answer whether string_to_compare is a full or partial match to
2781 ** template_string. The partial match must be in sequence starting
2782 ** at index 0.
2783 */
c906108c 2784int
fba45db2 2785subset_compare (char *string_to_compare, char *template_string)
7a292a7a
SS
2786{
2787 int match;
e0627e85 2788
8731e58e
AC
2789 if (template_string != (char *) NULL && string_to_compare != (char *) NULL
2790 && strlen (string_to_compare) <= strlen (template_string))
2791 match =
2792 (strncmp
2793 (template_string, string_to_compare, strlen (string_to_compare)) == 0);
7a292a7a
SS
2794 else
2795 match = 0;
2796 return match;
2797}
c906108c 2798
7a292a7a 2799static void
fba45db2 2800pagination_on_command (char *arg, int from_tty)
c906108c
SS
2801{
2802 pagination_enabled = 1;
2803}
2804
7a292a7a 2805static void
fba45db2 2806pagination_off_command (char *arg, int from_tty)
c906108c
SS
2807{
2808 pagination_enabled = 0;
2809}
75feb17d
DJ
2810
2811static void
2812show_debug_timestamp (struct ui_file *file, int from_tty,
2813 struct cmd_list_element *c, const char *value)
2814{
3e43a32a
MS
2815 fprintf_filtered (file, _("Timestamping debugging messages is %s.\n"),
2816 value);
75feb17d 2817}
c906108c 2818\f
c5aa993b 2819
c906108c 2820void
fba45db2 2821initialize_utils (void)
c906108c 2822{
35096d9d
AC
2823 add_setshow_uinteger_cmd ("width", class_support, &chars_per_line, _("\
2824Set number of characters gdb thinks are in a line."), _("\
2825Show number of characters gdb thinks are in a line."), NULL,
2826 set_width_command,
920d2a44 2827 show_chars_per_line,
35096d9d
AC
2828 &setlist, &showlist);
2829
2830 add_setshow_uinteger_cmd ("height", class_support, &lines_per_page, _("\
2831Set number of lines gdb thinks are in a page."), _("\
2832Show number of lines gdb thinks are in a page."), NULL,
2833 set_height_command,
920d2a44 2834 show_lines_per_page,
35096d9d 2835 &setlist, &showlist);
c5aa993b 2836
c906108c
SS
2837 init_page_info ();
2838
5bf193a2
AC
2839 add_setshow_boolean_cmd ("pagination", class_support,
2840 &pagination_enabled, _("\
2841Set state of pagination."), _("\
2842Show state of pagination."), NULL,
2843 NULL,
920d2a44 2844 show_pagination_enabled,
5bf193a2 2845 &setlist, &showlist);
4261bedc 2846
c906108c
SS
2847 if (xdb_commands)
2848 {
c5aa993b 2849 add_com ("am", class_support, pagination_on_command,
1bedd215 2850 _("Enable pagination"));
c5aa993b 2851 add_com ("sm", class_support, pagination_off_command,
1bedd215 2852 _("Disable pagination"));
c906108c
SS
2853 }
2854
5bf193a2
AC
2855 add_setshow_boolean_cmd ("sevenbit-strings", class_support,
2856 &sevenbit_strings, _("\
2857Set printing of 8-bit characters in strings as \\nnn."), _("\
2858Show printing of 8-bit characters in strings as \\nnn."), NULL,
2859 NULL,
920d2a44 2860 show_sevenbit_strings,
5bf193a2
AC
2861 &setprintlist, &showprintlist);
2862
75feb17d
DJ
2863 add_setshow_boolean_cmd ("timestamp", class_maintenance,
2864 &debug_timestamp, _("\
2865Set timestamping of debugging messages."), _("\
2866Show timestamping of debugging messages."), _("\
2867When set, debugging messages will be marked with seconds and microseconds."),
2868 NULL,
2869 show_debug_timestamp,
2870 &setdebuglist, &showdebuglist);
c906108c
SS
2871}
2872
581e13c1 2873/* Machine specific function to handle SIGWINCH signal. */
c906108c
SS
2874
2875#ifdef SIGWINCH_HANDLER_BODY
c5aa993b 2876SIGWINCH_HANDLER_BODY
c906108c 2877#endif
581e13c1
MS
2878/* Print routines to handle variable size regs, etc. */
2879/* Temporary storage using circular buffer. */
c906108c 2880#define NUMCELLS 16
0759e0bf 2881#define CELLSIZE 50
c5aa993b 2882static char *
fba45db2 2883get_cell (void)
c906108c
SS
2884{
2885 static char buf[NUMCELLS][CELLSIZE];
c5aa993b 2886 static int cell = 0;
e0627e85 2887
c5aa993b
JM
2888 if (++cell >= NUMCELLS)
2889 cell = 0;
c906108c
SS
2890 return buf[cell];
2891}
2892
66bf4b3a 2893const char *
5af949e3 2894paddress (struct gdbarch *gdbarch, CORE_ADDR addr)
66bf4b3a
AC
2895{
2896 /* Truncate address to the size of a target address, avoiding shifts
2897 larger or equal than the width of a CORE_ADDR. The local
2898 variable ADDR_BIT stops the compiler reporting a shift overflow
581e13c1 2899 when it won't occur. */
66bf4b3a
AC
2900 /* NOTE: This assumes that the significant address information is
2901 kept in the least significant bits of ADDR - the upper bits were
76e71323 2902 either zero or sign extended. Should gdbarch_address_to_pointer or
66bf4b3a
AC
2903 some ADDRESS_TO_PRINTABLE() be used to do the conversion? */
2904
5af949e3 2905 int addr_bit = gdbarch_addr_bit (gdbarch);
66bf4b3a
AC
2906
2907 if (addr_bit < (sizeof (CORE_ADDR) * HOST_CHAR_BIT))
2908 addr &= ((CORE_ADDR) 1 << addr_bit) - 1;
2909 return hex_string (addr);
2910}
2911
f1310107
TJB
2912/* This function is described in "defs.h". */
2913
2914const char *
2915print_core_address (struct gdbarch *gdbarch, CORE_ADDR address)
2916{
2917 int addr_bit = gdbarch_addr_bit (gdbarch);
2918
2919 if (addr_bit < (sizeof (CORE_ADDR) * HOST_CHAR_BIT))
2920 address &= ((CORE_ADDR) 1 << addr_bit) - 1;
2921
2922 /* FIXME: cagney/2002-05-03: Need local_address_string() function
2923 that returns the language localized string formatted to a width
2924 based on gdbarch_addr_bit. */
2925 if (addr_bit <= 32)
2926 return hex_string_custom (address, 8);
2927 else
2928 return hex_string_custom (address, 16);
2929}
2930
8e3b41a9
JK
2931/* Callback hash_f for htab_create_alloc or htab_create_alloc_ex. */
2932
2933hashval_t
2934core_addr_hash (const void *ap)
2935{
2936 const CORE_ADDR *addrp = ap;
2937
2938 return *addrp;
2939}
2940
2941/* Callback eq_f for htab_create_alloc or htab_create_alloc_ex. */
2942
2943int
2944core_addr_eq (const void *ap, const void *bp)
2945{
2946 const CORE_ADDR *addr_ap = ap;
2947 const CORE_ADDR *addr_bp = bp;
2948
2949 return *addr_ap == *addr_bp;
2950}
2951
8cf46f62
MK
2952static char *
2953decimal2str (char *sign, ULONGEST addr, int width)
104c1213 2954{
8cf46f62 2955 /* Steal code from valprint.c:print_decimal(). Should this worry
581e13c1 2956 about the real size of addr as the above does? */
104c1213 2957 unsigned long temp[3];
8cf46f62 2958 char *str = get_cell ();
104c1213 2959 int i = 0;
5d502164 2960
104c1213
JM
2961 do
2962 {
2963 temp[i] = addr % (1000 * 1000 * 1000);
2964 addr /= (1000 * 1000 * 1000);
2965 i++;
bb599908 2966 width -= 9;
104c1213
JM
2967 }
2968 while (addr != 0 && i < (sizeof (temp) / sizeof (temp[0])));
8cf46f62 2969
bb599908
PH
2970 width += 9;
2971 if (width < 0)
2972 width = 0;
8cf46f62 2973
104c1213
JM
2974 switch (i)
2975 {
2976 case 1:
8cf46f62 2977 xsnprintf (str, CELLSIZE, "%s%0*lu", sign, width, temp[0]);
104c1213
JM
2978 break;
2979 case 2:
8cf46f62
MK
2980 xsnprintf (str, CELLSIZE, "%s%0*lu%09lu", sign, width,
2981 temp[1], temp[0]);
104c1213
JM
2982 break;
2983 case 3:
8cf46f62
MK
2984 xsnprintf (str, CELLSIZE, "%s%0*lu%09lu%09lu", sign, width,
2985 temp[2], temp[1], temp[0]);
bb599908
PH
2986 break;
2987 default:
2988 internal_error (__FILE__, __LINE__,
e2e0b3e5 2989 _("failed internal consistency check"));
bb599908 2990 }
8cf46f62
MK
2991
2992 return str;
bb599908
PH
2993}
2994
8cf46f62
MK
2995static char *
2996octal2str (ULONGEST addr, int width)
bb599908
PH
2997{
2998 unsigned long temp[3];
8cf46f62 2999 char *str = get_cell ();
bb599908 3000 int i = 0;
5d502164 3001
bb599908
PH
3002 do
3003 {
3004 temp[i] = addr % (0100000 * 0100000);
3005 addr /= (0100000 * 0100000);
3006 i++;
3007 width -= 10;
3008 }
3009 while (addr != 0 && i < (sizeof (temp) / sizeof (temp[0])));
8cf46f62 3010
bb599908
PH
3011 width += 10;
3012 if (width < 0)
3013 width = 0;
8cf46f62 3014
bb599908
PH
3015 switch (i)
3016 {
3017 case 1:
3018 if (temp[0] == 0)
8cf46f62 3019 xsnprintf (str, CELLSIZE, "%*o", width, 0);
bb599908 3020 else
8cf46f62 3021 xsnprintf (str, CELLSIZE, "0%0*lo", width, temp[0]);
bb599908
PH
3022 break;
3023 case 2:
8cf46f62 3024 xsnprintf (str, CELLSIZE, "0%0*lo%010lo", width, temp[1], temp[0]);
bb599908
PH
3025 break;
3026 case 3:
8cf46f62
MK
3027 xsnprintf (str, CELLSIZE, "0%0*lo%010lo%010lo", width,
3028 temp[2], temp[1], temp[0]);
104c1213
JM
3029 break;
3030 default:
8731e58e 3031 internal_error (__FILE__, __LINE__,
e2e0b3e5 3032 _("failed internal consistency check"));
104c1213 3033 }
8cf46f62
MK
3034
3035 return str;
104c1213
JM
3036}
3037
3038char *
623d3eb1 3039pulongest (ULONGEST u)
104c1213 3040{
623d3eb1 3041 return decimal2str ("", u, 0);
104c1213
JM
3042}
3043
3044char *
623d3eb1 3045plongest (LONGEST l)
104c1213 3046{
623d3eb1
DE
3047 if (l < 0)
3048 return decimal2str ("-", -l, 0);
104c1213 3049 else
623d3eb1 3050 return decimal2str ("", l, 0);
104c1213
JM
3051}
3052
8cf46f62 3053/* Eliminate warning from compiler on 32-bit systems. */
5683e87a
AC
3054static int thirty_two = 32;
3055
104c1213 3056char *
5683e87a 3057phex (ULONGEST l, int sizeof_l)
104c1213 3058{
45a1e866 3059 char *str;
8cf46f62 3060
5683e87a 3061 switch (sizeof_l)
104c1213
JM
3062 {
3063 case 8:
45a1e866 3064 str = get_cell ();
8cf46f62
MK
3065 xsnprintf (str, CELLSIZE, "%08lx%08lx",
3066 (unsigned long) (l >> thirty_two),
3067 (unsigned long) (l & 0xffffffff));
104c1213
JM
3068 break;
3069 case 4:
45a1e866 3070 str = get_cell ();
8cf46f62 3071 xsnprintf (str, CELLSIZE, "%08lx", (unsigned long) l);
104c1213
JM
3072 break;
3073 case 2:
45a1e866 3074 str = get_cell ();
8cf46f62 3075 xsnprintf (str, CELLSIZE, "%04x", (unsigned short) (l & 0xffff));
104c1213
JM
3076 break;
3077 default:
45a1e866 3078 str = phex (l, sizeof (l));
5683e87a 3079 break;
104c1213 3080 }
8cf46f62 3081
5683e87a 3082 return str;
104c1213
JM
3083}
3084
c5aa993b 3085char *
5683e87a 3086phex_nz (ULONGEST l, int sizeof_l)
c906108c 3087{
faf833ca 3088 char *str;
8cf46f62 3089
5683e87a 3090 switch (sizeof_l)
c906108c 3091 {
c5aa993b
JM
3092 case 8:
3093 {
5683e87a 3094 unsigned long high = (unsigned long) (l >> thirty_two);
5d502164 3095
faf833ca 3096 str = get_cell ();
c5aa993b 3097 if (high == 0)
8cf46f62
MK
3098 xsnprintf (str, CELLSIZE, "%lx",
3099 (unsigned long) (l & 0xffffffff));
c5aa993b 3100 else
8cf46f62
MK
3101 xsnprintf (str, CELLSIZE, "%lx%08lx", high,
3102 (unsigned long) (l & 0xffffffff));
c906108c 3103 break;
c5aa993b
JM
3104 }
3105 case 4:
faf833ca 3106 str = get_cell ();
8cf46f62 3107 xsnprintf (str, CELLSIZE, "%lx", (unsigned long) l);
c5aa993b
JM
3108 break;
3109 case 2:
faf833ca 3110 str = get_cell ();
8cf46f62 3111 xsnprintf (str, CELLSIZE, "%x", (unsigned short) (l & 0xffff));
c5aa993b
JM
3112 break;
3113 default:
faf833ca 3114 str = phex_nz (l, sizeof (l));
5683e87a 3115 break;
c906108c 3116 }
8cf46f62 3117
5683e87a 3118 return str;
c906108c 3119}
ac2e2ef7 3120
0759e0bf
AC
3121/* Converts a LONGEST to a C-format hexadecimal literal and stores it
3122 in a static string. Returns a pointer to this string. */
3123char *
3124hex_string (LONGEST num)
3125{
3126 char *result = get_cell ();
e0627e85 3127
8cf46f62 3128 xsnprintf (result, CELLSIZE, "0x%s", phex_nz (num, sizeof (num)));
0759e0bf
AC
3129 return result;
3130}
3131
3132/* Converts a LONGEST number to a C-format hexadecimal literal and
3133 stores it in a static string. Returns a pointer to this string
3134 that is valid until the next call. The number is padded on the
3135 left with 0s to at least WIDTH characters. */
3136char *
3137hex_string_custom (LONGEST num, int width)
3138{
3139 char *result = get_cell ();
3140 char *result_end = result + CELLSIZE - 1;
3141 const char *hex = phex_nz (num, sizeof (num));
3142 int hex_len = strlen (hex);
3143
3144 if (hex_len > width)
3145 width = hex_len;
3146 if (width + 2 >= CELLSIZE)
3e43a32a
MS
3147 internal_error (__FILE__, __LINE__, _("\
3148hex_string_custom: insufficient space to store result"));
0759e0bf
AC
3149
3150 strcpy (result_end - width - 2, "0x");
3151 memset (result_end - width, '0', width);
3152 strcpy (result_end - hex_len, hex);
3153 return result_end - width - 2;
3154}
ac2e2ef7 3155
bb599908
PH
3156/* Convert VAL to a numeral in the given radix. For
3157 * radix 10, IS_SIGNED may be true, indicating a signed quantity;
3158 * otherwise VAL is interpreted as unsigned. If WIDTH is supplied,
3159 * it is the minimum width (0-padded if needed). USE_C_FORMAT means
3160 * to use C format in all cases. If it is false, then 'x'
581e13c1 3161 * and 'o' formats do not include a prefix (0x or leading 0). */
bb599908
PH
3162
3163char *
3164int_string (LONGEST val, int radix, int is_signed, int width,
3165 int use_c_format)
3166{
3167 switch (radix)
3168 {
3169 case 16:
3170 {
3171 char *result;
5d502164 3172
bb599908
PH
3173 if (width == 0)
3174 result = hex_string (val);
3175 else
3176 result = hex_string_custom (val, width);
3177 if (! use_c_format)
3178 result += 2;
3179 return result;
3180 }
3181 case 10:
3182 {
bb599908 3183 if (is_signed && val < 0)
8cf46f62 3184 return decimal2str ("-", -val, width);
bb599908 3185 else
8cf46f62 3186 return decimal2str ("", val, width);
bb599908
PH
3187 }
3188 case 8:
3189 {
8cf46f62 3190 char *result = octal2str (val, width);
5d502164 3191
bb599908
PH
3192 if (use_c_format || val == 0)
3193 return result;
3194 else
3195 return result + 1;
3196 }
3197 default:
3198 internal_error (__FILE__, __LINE__,
e2e0b3e5 3199 _("failed internal consistency check"));
bb599908
PH
3200 }
3201}
3202
03dd37c3
AC
3203/* Convert a CORE_ADDR into a string. */
3204const char *
3205core_addr_to_string (const CORE_ADDR addr)
49b563f9
KS
3206{
3207 char *str = get_cell ();
e0627e85 3208
49b563f9
KS
3209 strcpy (str, "0x");
3210 strcat (str, phex (addr, sizeof (addr)));
3211 return str;
3212}
3213
3214const char *
3215core_addr_to_string_nz (const CORE_ADDR addr)
03dd37c3
AC
3216{
3217 char *str = get_cell ();
e0627e85 3218
03dd37c3
AC
3219 strcpy (str, "0x");
3220 strcat (str, phex_nz (addr, sizeof (addr)));
3221 return str;
3222}
3223
3224/* Convert a string back into a CORE_ADDR. */
3225CORE_ADDR
3226string_to_core_addr (const char *my_string)
3227{
3228 CORE_ADDR addr = 0;
9544c605 3229
03dd37c3
AC
3230 if (my_string[0] == '0' && tolower (my_string[1]) == 'x')
3231 {
ced572fe 3232 /* Assume that it is in hex. */
03dd37c3 3233 int i;
5d502164 3234
03dd37c3
AC
3235 for (i = 2; my_string[i] != '\0'; i++)
3236 {
3237 if (isdigit (my_string[i]))
3238 addr = (my_string[i] - '0') + (addr * 16);
8731e58e 3239 else if (isxdigit (my_string[i]))
03dd37c3
AC
3240 addr = (tolower (my_string[i]) - 'a' + 0xa) + (addr * 16);
3241 else
63f06803 3242 error (_("invalid hex \"%s\""), my_string);
03dd37c3
AC
3243 }
3244 }
3245 else
3246 {
3247 /* Assume that it is in decimal. */
3248 int i;
5d502164 3249
03dd37c3
AC
3250 for (i = 0; my_string[i] != '\0'; i++)
3251 {
3252 if (isdigit (my_string[i]))
3253 addr = (my_string[i] - '0') + (addr * 10);
3254 else
63f06803 3255 error (_("invalid decimal \"%s\""), my_string);
03dd37c3
AC
3256 }
3257 }
9544c605 3258
03dd37c3
AC
3259 return addr;
3260}
58d370e0 3261
17ea7499
CES
3262const char *
3263host_address_to_string (const void *addr)
3264{
3265 char *str = get_cell ();
ea8992ce 3266
773698b5 3267 xsnprintf (str, CELLSIZE, "0x%s", phex_nz ((uintptr_t) addr, sizeof (addr)));
17ea7499
CES
3268 return str;
3269}
3270
58d370e0
TT
3271char *
3272gdb_realpath (const char *filename)
3273{
70d35819
AC
3274 /* Method 1: The system has a compile time upper bound on a filename
3275 path. Use that and realpath() to canonicalize the name. This is
3276 the most common case. Note that, if there isn't a compile time
3277 upper bound, you want to avoid realpath() at all costs. */
a4db0f07 3278#if defined(HAVE_REALPATH)
70d35819 3279 {
a4db0f07 3280# if defined (PATH_MAX)
70d35819 3281 char buf[PATH_MAX];
a4db0f07
RH
3282# define USE_REALPATH
3283# elif defined (MAXPATHLEN)
70d35819 3284 char buf[MAXPATHLEN];
a4db0f07
RH
3285# define USE_REALPATH
3286# endif
70d35819 3287# if defined (USE_REALPATH)
82c0260e 3288 const char *rp = realpath (filename, buf);
5d502164 3289
70d35819
AC
3290 if (rp == NULL)
3291 rp = filename;
3292 return xstrdup (rp);
70d35819 3293# endif
6f88d630 3294 }
a4db0f07
RH
3295#endif /* HAVE_REALPATH */
3296
70d35819
AC
3297 /* Method 2: The host system (i.e., GNU) has the function
3298 canonicalize_file_name() which malloc's a chunk of memory and
3299 returns that, use that. */
3300#if defined(HAVE_CANONICALIZE_FILE_NAME)
3301 {
3302 char *rp = canonicalize_file_name (filename);
5d502164 3303
70d35819
AC
3304 if (rp == NULL)
3305 return xstrdup (filename);
3306 else
3307 return rp;
3308 }
58d370e0 3309#endif
70d35819 3310
6411e720
AC
3311 /* FIXME: cagney/2002-11-13:
3312
3313 Method 2a: Use realpath() with a NULL buffer. Some systems, due
7a9dd1b2 3314 to the problems described in method 3, have modified their
6411e720
AC
3315 realpath() implementation so that it will allocate a buffer when
3316 NULL is passed in. Before this can be used, though, some sort of
3317 configure time test would need to be added. Otherwize the code
3318 will likely core dump. */
3319
70d35819
AC
3320 /* Method 3: Now we're getting desperate! The system doesn't have a
3321 compile time buffer size and no alternative function. Query the
3322 OS, using pathconf(), for the buffer limit. Care is needed
3323 though, some systems do not limit PATH_MAX (return -1 for
3324 pathconf()) making it impossible to pass a correctly sized buffer
3325 to realpath() (it could always overflow). On those systems, we
3326 skip this. */
3327#if defined (HAVE_REALPATH) && defined (HAVE_UNISTD_H) && defined(HAVE_ALLOCA)
3328 {
3329 /* Find out the max path size. */
3330 long path_max = pathconf ("/", _PC_PATH_MAX);
5d502164 3331
70d35819
AC
3332 if (path_max > 0)
3333 {
3334 /* PATH_MAX is bounded. */
3335 char *buf = alloca (path_max);
3336 char *rp = realpath (filename, buf);
5d502164 3337
70d35819
AC
3338 return xstrdup (rp ? rp : filename);
3339 }
3340 }
3341#endif
3342
3343 /* This system is a lost cause, just dup the buffer. */
3344 return xstrdup (filename);
58d370e0 3345}
303c8ebd
JB
3346
3347/* Return a copy of FILENAME, with its directory prefix canonicalized
3348 by gdb_realpath. */
3349
3350char *
3351xfullpath (const char *filename)
3352{
3353 const char *base_name = lbasename (filename);
3354 char *dir_name;
3355 char *real_path;
3356 char *result;
3357
3358 /* Extract the basename of filename, and return immediately
581e13c1 3359 a copy of filename if it does not contain any directory prefix. */
303c8ebd
JB
3360 if (base_name == filename)
3361 return xstrdup (filename);
3362
3363 dir_name = alloca ((size_t) (base_name - filename + 2));
3364 /* Allocate enough space to store the dir_name + plus one extra
3365 character sometimes needed under Windows (see below), and
581e13c1 3366 then the closing \000 character. */
303c8ebd
JB
3367 strncpy (dir_name, filename, base_name - filename);
3368 dir_name[base_name - filename] = '\000';
3369
3370#ifdef HAVE_DOS_BASED_FILE_SYSTEM
3371 /* We need to be careful when filename is of the form 'd:foo', which
3372 is equivalent of d:./foo, which is totally different from d:/foo. */
8731e58e 3373 if (strlen (dir_name) == 2 && isalpha (dir_name[0]) && dir_name[1] == ':')
303c8ebd
JB
3374 {
3375 dir_name[2] = '.';
3376 dir_name[3] = '\000';
3377 }
3378#endif
3379
3380 /* Canonicalize the directory prefix, and build the resulting
581e13c1 3381 filename. If the dirname realpath already contains an ending
303c8ebd
JB
3382 directory separator, avoid doubling it. */
3383 real_path = gdb_realpath (dir_name);
3384 if (IS_DIR_SEPARATOR (real_path[strlen (real_path) - 1]))
c4f7c687 3385 result = concat (real_path, base_name, (char *) NULL);
303c8ebd 3386 else
c4f7c687 3387 result = concat (real_path, SLASH_STRING, base_name, (char *) NULL);
303c8ebd
JB
3388
3389 xfree (real_path);
3390 return result;
3391}
5b5d99cf
JB
3392
3393
3394/* This is the 32-bit CRC function used by the GNU separate debug
3395 facility. An executable may contain a section named
3396 .gnu_debuglink, which holds the name of a separate executable file
3397 containing its debug info, and a checksum of that file's contents,
3398 computed using this function. */
3399unsigned long
3400gnu_debuglink_crc32 (unsigned long crc, unsigned char *buf, size_t len)
3401{
6e0a4fbc 3402 static const unsigned int crc32_table[256] = {
8731e58e
AC
3403 0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419,
3404 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4,
3405 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07,
3406 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de,
3407 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856,
3408 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9,
3409 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4,
3410 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b,
3411 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3,
3412 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a,
3413 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599,
3414 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924,
3415 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190,
3416 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f,
3417 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e,
3418 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01,
3419 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed,
3420 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950,
3421 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3,
3422 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2,
3423 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a,
3424 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5,
3425 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010,
3426 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f,
3427 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17,
3428 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6,
3429 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615,
3430 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8,
3431 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344,
3432 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb,
3433 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a,
3434 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5,
3435 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1,
3436 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c,
3437 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef,
3438 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236,
3439 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe,
3440 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31,
3441 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c,
3442 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713,
3443 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b,
3444 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242,
3445 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1,
3446 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c,
3447 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278,
3448 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7,
3449 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66,
3450 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9,
3451 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605,
3452 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8,
3453 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b,
3454 0x2d02ef8d
3455 };
5b5d99cf
JB
3456 unsigned char *end;
3457
3458 crc = ~crc & 0xffffffff;
3459 for (end = buf + len; buf < end; ++buf)
3460 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
82ae4854 3461 return ~crc & 0xffffffff;
5b5d99cf 3462}
5b03f266
AC
3463
3464ULONGEST
3465align_up (ULONGEST v, int n)
3466{
3467 /* Check that N is really a power of two. */
3468 gdb_assert (n && (n & (n-1)) == 0);
3469 return (v + n - 1) & -n;
3470}
3471
3472ULONGEST
3473align_down (ULONGEST v, int n)
3474{
3475 /* Check that N is really a power of two. */
3476 gdb_assert (n && (n & (n-1)) == 0);
3477 return (v & -n);
3478}
ae5a43e0
DJ
3479
3480/* Allocation function for the libiberty hash table which uses an
3481 obstack. The obstack is passed as DATA. */
3482
3483void *
3484hashtab_obstack_allocate (void *data, size_t size, size_t count)
3485{
3486 unsigned int total = size * count;
3487 void *ptr = obstack_alloc ((struct obstack *) data, total);
e0627e85 3488
ae5a43e0
DJ
3489 memset (ptr, 0, total);
3490 return ptr;
3491}
3492
3493/* Trivial deallocation function for the libiberty splay tree and hash
3494 table - don't deallocate anything. Rely on later deletion of the
3495 obstack. DATA will be the obstack, although it is not needed
3496 here. */
3497
3498void
3499dummy_obstack_deallocate (void *object, void *data)
3500{
3501 return;
3502}
253c8abb
DJ
3503
3504/* The bit offset of the highest byte in a ULONGEST, for overflow
3505 checking. */
3506
3507#define HIGH_BYTE_POSN ((sizeof (ULONGEST) - 1) * HOST_CHAR_BIT)
3508
3509/* True (non-zero) iff DIGIT is a valid digit in radix BASE,
3510 where 2 <= BASE <= 36. */
3511
3512static int
3513is_digit_in_base (unsigned char digit, int base)
3514{
3515 if (!isalnum (digit))
3516 return 0;
3517 if (base <= 10)
3518 return (isdigit (digit) && digit < base + '0');
3519 else
3520 return (isdigit (digit) || tolower (digit) < base - 10 + 'a');
3521}
3522
3523static int
3524digit_to_int (unsigned char c)
3525{
3526 if (isdigit (c))
3527 return c - '0';
3528 else
3529 return tolower (c) - 'a' + 10;
3530}
3531
3532/* As for strtoul, but for ULONGEST results. */
3533
3534ULONGEST
3535strtoulst (const char *num, const char **trailer, int base)
3536{
3537 unsigned int high_part;
3538 ULONGEST result;
3539 int minus = 0;
3540 int i = 0;
3541
3542 /* Skip leading whitespace. */
3543 while (isspace (num[i]))
3544 i++;
3545
3546 /* Handle prefixes. */
3547 if (num[i] == '+')
3548 i++;
3549 else if (num[i] == '-')
3550 {
3551 minus = 1;
3552 i++;
3553 }
3554
3555 if (base == 0 || base == 16)
3556 {
3557 if (num[i] == '0' && (num[i + 1] == 'x' || num[i + 1] == 'X'))
3558 {
3559 i += 2;
3560 if (base == 0)
3561 base = 16;
3562 }
3563 }
3564
3565 if (base == 0 && num[i] == '0')
3566 base = 8;
3567
3568 if (base == 0)
3569 base = 10;
3570
3571 if (base < 2 || base > 36)
3572 {
3573 errno = EINVAL;
3574 return 0;
3575 }
3576
3577 result = high_part = 0;
3578 for (; is_digit_in_base (num[i], base); i += 1)
3579 {
3580 result = result * base + digit_to_int (num[i]);
3581 high_part = high_part * base + (unsigned int) (result >> HIGH_BYTE_POSN);
3582 result &= ((ULONGEST) 1 << HIGH_BYTE_POSN) - 1;
3583 if (high_part > 0xff)
3584 {
3585 errno = ERANGE;
3586 result = ~ (ULONGEST) 0;
3587 high_part = 0;
3588 minus = 0;
3589 break;
3590 }
3591 }
3592
3593 if (trailer != NULL)
3594 *trailer = &num[i];
3595
3596 result = result + ((ULONGEST) high_part << HIGH_BYTE_POSN);
3597 if (minus)
3598 return -result;
3599 else
3600 return result;
3601}
e1024ff1
DJ
3602
3603/* Simple, portable version of dirname that does not modify its
3604 argument. */
3605
3606char *
3607ldirname (const char *filename)
3608{
3609 const char *base = lbasename (filename);
3610 char *dirname;
3611
3612 while (base > filename && IS_DIR_SEPARATOR (base[-1]))
3613 --base;
3614
3615 if (base == filename)
3616 return NULL;
3617
3618 dirname = xmalloc (base - filename + 2);
3619 memcpy (dirname, filename, base - filename);
3620
3621 /* On DOS based file systems, convert "d:foo" to "d:.", so that we
3622 create "d:./bar" later instead of the (different) "d:/bar". */
3623 if (base - filename == 2 && IS_ABSOLUTE_PATH (base)
3624 && !IS_DIR_SEPARATOR (filename[0]))
3625 dirname[base++ - filename] = '.';
3626
3627 dirname[base - filename] = '\0';
3628 return dirname;
3629}
d1a41061
PP
3630
3631/* Call libiberty's buildargv, and return the result.
3632 If buildargv fails due to out-of-memory, call nomem.
3633 Therefore, the returned value is guaranteed to be non-NULL,
3634 unless the parameter itself is NULL. */
3635
3636char **
3637gdb_buildargv (const char *s)
3638{
3639 char **argv = buildargv (s);
e0627e85 3640
d1a41061 3641 if (s != NULL && argv == NULL)
d26e3629 3642 malloc_failure (0);
d1a41061
PP
3643 return argv;
3644}
3c16cced 3645
dc146f7c
VP
3646int
3647compare_positive_ints (const void *ap, const void *bp)
3648{
3649 /* Because we know we're comparing two ints which are positive,
3650 there's no danger of overflow here. */
3651 return * (int *) ap - * (int *) bp;
3652}
3653
d18b8b7a 3654#define AMBIGUOUS_MESS1 ".\nMatching formats:"
3e43a32a
MS
3655#define AMBIGUOUS_MESS2 \
3656 ".\nUse \"set gnutarget format-name\" to specify the format."
d18b8b7a
HZ
3657
3658const char *
3659gdb_bfd_errmsg (bfd_error_type error_tag, char **matching)
3660{
3661 char *ret, *retp;
3662 int ret_len;
3663 char **p;
3664
3665 /* Check if errmsg just need simple return. */
3666 if (error_tag != bfd_error_file_ambiguously_recognized || matching == NULL)
3667 return bfd_errmsg (error_tag);
3668
3669 ret_len = strlen (bfd_errmsg (error_tag)) + strlen (AMBIGUOUS_MESS1)
3670 + strlen (AMBIGUOUS_MESS2);
3671 for (p = matching; *p; p++)
3672 ret_len += strlen (*p) + 1;
3673 ret = xmalloc (ret_len + 1);
3674 retp = ret;
3675 make_cleanup (xfree, ret);
3676
3677 strcpy (retp, bfd_errmsg (error_tag));
3678 retp += strlen (retp);
3679
3680 strcpy (retp, AMBIGUOUS_MESS1);
3681 retp += strlen (retp);
3682
3683 for (p = matching; *p; p++)
3684 {
3685 sprintf (retp, " %s", *p);
3686 retp += strlen (retp);
3687 }
3688 xfree (matching);
3689
3690 strcpy (retp, AMBIGUOUS_MESS2);
3691
3692 return ret;
3693}
3694
74164c56
JK
3695/* Return ARGS parsed as a valid pid, or throw an error. */
3696
3697int
3698parse_pid_to_attach (char *args)
3699{
3700 unsigned long pid;
3701 char *dummy;
3702
3703 if (!args)
3704 error_no_arg (_("process-id to attach"));
3705
3706 dummy = args;
3707 pid = strtoul (args, &dummy, 0);
3708 /* Some targets don't set errno on errors, grrr! */
3709 if ((pid == 0 && dummy == args) || dummy != &args[strlen (args)])
3710 error (_("Illegal process-id: %s."), args);
3711
3712 return pid;
3713}
3714
353d1d73
JK
3715/* Helper for make_bpstat_clear_actions_cleanup. */
3716
3717static void
3718do_bpstat_clear_actions_cleanup (void *unused)
3719{
3720 bpstat_clear_actions ();
3721}
3722
3723/* Call bpstat_clear_actions for the case an exception is throw. You should
3724 discard_cleanups if no exception is caught. */
3725
3726struct cleanup *
3727make_bpstat_clear_actions_cleanup (void)
3728{
3729 return make_cleanup (do_bpstat_clear_actions_cleanup, NULL);
3730}
3731
df15bd07
JK
3732/* Check for GCC >= 4.x according to the symtab->producer string. Return minor
3733 version (x) of 4.x in such case. If it is not GCC or it is GCC older than
3734 4.x return -1. If it is GCC 5.x or higher return INT_MAX. */
3735
3736int
3737producer_is_gcc_ge_4 (const char *producer)
3738{
3739 const char *cs;
3740 int major, minor;
3741
3742 if (producer == NULL)
3743 {
3744 /* For unknown compilers expect their behavior is not compliant. For GCC
3745 this case can also happen for -gdwarf-4 type units supported since
3746 gcc-4.5. */
3747
3748 return -1;
3749 }
3750
3751 /* Skip any identifier after "GNU " - such as "C++" or "Java". */
3752
3753 if (strncmp (producer, "GNU ", strlen ("GNU ")) != 0)
3754 {
3755 /* For non-GCC compilers expect their behavior is not compliant. */
3756
3757 return -1;
3758 }
3759 cs = &producer[strlen ("GNU ")];
3760 while (*cs && !isdigit (*cs))
3761 cs++;
3762 if (sscanf (cs, "%d.%d", &major, &minor) != 2)
3763 {
3764 /* Not recognized as GCC. */
3765
3766 return -1;
3767 }
3768
3769 if (major < 4)
3770 return -1;
3771 if (major > 4)
3772 return INT_MAX;
3773 return minor;
3774}
3775
2c0b251b
PA
3776/* Provide a prototype to silence -Wmissing-prototypes. */
3777extern initialize_file_ftype _initialize_utils;
3778
3c16cced
PA
3779void
3780_initialize_utils (void)
3781{
3782 add_internal_problem_command (&internal_error_problem);
3783 add_internal_problem_command (&internal_warning_problem);
3784}
This page took 1.42322 seconds and 4 git commands to generate.