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