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