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