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