]>
Commit | Line | Data |
---|---|---|
c906108c | 1 | /* General utility routines for GDB, the GNU debugger. |
a752853e AC |
2 | Copyright 1986, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, |
3 | 1996, 1997, 1998, 1999, 2000, 2001, 2002 | |
d9fcf2fb | 4 | Free Software Foundation, Inc. |
c906108c | 5 | |
c5aa993b | 6 | This file is part of GDB. |
c906108c | 7 | |
c5aa993b JM |
8 | This program is free software; you can redistribute it and/or modify |
9 | it under the terms of the GNU General Public License as published by | |
10 | the Free Software Foundation; either version 2 of the License, or | |
11 | (at your option) any later version. | |
c906108c | 12 | |
c5aa993b JM |
13 | This program is distributed in the hope that it will be useful, |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | GNU General Public License for more details. | |
c906108c | 17 | |
c5aa993b JM |
18 | You should have received a copy of the GNU General Public License |
19 | along with this program; if not, write to the Free Software | |
20 | Foundation, Inc., 59 Temple Place - Suite 330, | |
21 | Boston, MA 02111-1307, USA. */ | |
c906108c | 22 | |
f33c6cbf AC |
23 | /* FIXME: cagney/2002-02-28: The GDB coding standard indicates that |
24 | "defs.h" should be included first. Unfortunatly some systems | |
25 | (currently Debian GNU/Linux) include the <stdbool.h> via <curses.h> | |
26 | and they clash with "bfd.h"'s definiton of true/false. The correct | |
27 | fix is to remove true/false from "bfd.h", however, until that | |
28 | happens, hack around it by including "config.h" and <curses.h> | |
29 | first. */ | |
30 | ||
4e8f7a8b | 31 | #include "config.h" |
c906108c SS |
32 | |
33 | #ifdef HAVE_CURSES_H | |
34 | #include <curses.h> | |
35 | #endif | |
36 | #ifdef HAVE_TERM_H | |
37 | #include <term.h> | |
38 | #endif | |
39 | ||
4e8f7a8b DJ |
40 | #include "defs.h" |
41 | #include "gdb_assert.h" | |
42 | #include <ctype.h> | |
43 | #include "gdb_string.h" | |
44 | #include "event-top.h" | |
45 | ||
9d271fd8 AC |
46 | #ifdef __GO32__ |
47 | #include <pc.h> | |
48 | #endif | |
49 | ||
c906108c SS |
50 | /* SunOS's curses.h has a '#define reg register' in it. Thank you Sun. */ |
51 | #ifdef reg | |
52 | #undef reg | |
53 | #endif | |
54 | ||
042be3a9 | 55 | #include <signal.h> |
c906108c SS |
56 | #include "gdbcmd.h" |
57 | #include "serial.h" | |
58 | #include "bfd.h" | |
59 | #include "target.h" | |
60 | #include "demangle.h" | |
61 | #include "expression.h" | |
62 | #include "language.h" | |
63 | #include "annotate.h" | |
303c8ebd | 64 | #include "filenames.h" |
c906108c | 65 | |
ac2e2ef7 AC |
66 | #include "inferior.h" /* for signed_pointer_to_address */ |
67 | ||
2d1b2124 AC |
68 | #include <sys/param.h> /* For MAXPATHLEN */ |
69 | ||
c906108c SS |
70 | #include <readline/readline.h> |
71 | ||
ed1801df AC |
72 | #ifdef USE_MMALLOC |
73 | #include "mmalloc.h" | |
74 | #endif | |
75 | ||
3c37485b AC |
76 | #ifdef NEED_DECLARATION_MALLOC |
77 | extern PTR malloc (); | |
78 | #endif | |
0e52036f AC |
79 | #ifdef NEED_DECLARATION_REALLOC |
80 | extern PTR realloc (); | |
81 | #endif | |
81b8eb80 AC |
82 | #ifdef NEED_DECLARATION_FREE |
83 | extern void free (); | |
84 | #endif | |
a4db0f07 RH |
85 | /* Actually, we'll never have the decl, since we don't define _GNU_SOURCE. */ |
86 | #if defined(HAVE_CANONICALIZE_FILE_NAME) \ | |
87 | && defined(NEED_DECLARATION_CANONICALIZE_FILE_NAME) | |
88 | extern char *canonicalize_file_name (const char *); | |
89 | #endif | |
81b8eb80 | 90 | |
c906108c SS |
91 | /* readline defines this. */ |
92 | #undef savestring | |
93 | ||
507f3c78 | 94 | void (*error_begin_hook) (void); |
c906108c | 95 | |
2acceee2 JM |
96 | /* Holds the last error message issued by gdb */ |
97 | ||
d9fcf2fb | 98 | static struct ui_file *gdb_lasterr; |
2acceee2 | 99 | |
c906108c SS |
100 | /* Prototypes for local functions */ |
101 | ||
d9fcf2fb JM |
102 | static void vfprintf_maybe_filtered (struct ui_file *, const char *, |
103 | va_list, int); | |
c906108c | 104 | |
d9fcf2fb | 105 | static void fputs_maybe_filtered (const char *, struct ui_file *, int); |
c906108c SS |
106 | |
107 | #if defined (USE_MMALLOC) && !defined (NO_MMCHECK) | |
a14ed312 | 108 | static void malloc_botch (void); |
c906108c SS |
109 | #endif |
110 | ||
a14ed312 | 111 | static void prompt_for_continue (void); |
c906108c | 112 | |
a14ed312 | 113 | static void set_width_command (char *, int, struct cmd_list_element *); |
c906108c | 114 | |
a14ed312 | 115 | static void set_width (void); |
c906108c | 116 | |
c906108c SS |
117 | /* Chain of cleanup actions established with make_cleanup, |
118 | to be executed if an error happens. */ | |
119 | ||
c5aa993b JM |
120 | static struct cleanup *cleanup_chain; /* cleaned up after a failed command */ |
121 | static struct cleanup *final_cleanup_chain; /* cleaned up when gdb exits */ | |
122 | static struct cleanup *run_cleanup_chain; /* cleaned up on each 'run' */ | |
123 | static struct cleanup *exec_cleanup_chain; /* cleaned up on each execution command */ | |
6426a772 JM |
124 | /* cleaned up on each error from within an execution command */ |
125 | static struct cleanup *exec_error_cleanup_chain; | |
43ff13b4 JM |
126 | |
127 | /* Pointer to what is left to do for an execution command after the | |
128 | target stops. Used only in asynchronous mode, by targets that | |
129 | support async execution. The finish and until commands use it. So | |
130 | does the target extended-remote command. */ | |
131 | struct continuation *cmd_continuation; | |
c2d11a7d | 132 | struct continuation *intermediate_continuation; |
c906108c SS |
133 | |
134 | /* Nonzero if we have job control. */ | |
135 | ||
136 | int job_control; | |
137 | ||
138 | /* Nonzero means a quit has been requested. */ | |
139 | ||
140 | int quit_flag; | |
141 | ||
142 | /* Nonzero means quit immediately if Control-C is typed now, rather | |
143 | than waiting until QUIT is executed. Be careful in setting this; | |
144 | code which executes with immediate_quit set has to be very careful | |
145 | about being able to deal with being interrupted at any time. It is | |
146 | almost always better to use QUIT; the only exception I can think of | |
147 | is being able to quit out of a system call (using EINTR loses if | |
148 | the SIGINT happens between the previous QUIT and the system call). | |
149 | To immediately quit in the case in which a SIGINT happens between | |
150 | the previous QUIT and setting immediate_quit (desirable anytime we | |
151 | expect to block), call QUIT after setting immediate_quit. */ | |
152 | ||
153 | int immediate_quit; | |
154 | ||
3b4efeaa MS |
155 | /* Nonzero means that encoded C++/ObjC names should be printed out in their |
156 | C++/ObjC form rather than raw. */ | |
c906108c SS |
157 | |
158 | int demangle = 1; | |
159 | ||
3b4efeaa MS |
160 | /* Nonzero means that encoded C++/ObjC names should be printed out in their |
161 | C++/ObjC form even in assembler language displays. If this is set, but | |
c906108c SS |
162 | DEMANGLE is zero, names are printed raw, i.e. DEMANGLE controls. */ |
163 | ||
164 | int asm_demangle = 0; | |
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; | |
171 | ||
172 | /* String to be printed before error messages, if any. */ | |
173 | ||
174 | char *error_pre_print; | |
175 | ||
176 | /* String to be printed before quit messages, if any. */ | |
177 | ||
178 | char *quit_pre_print; | |
179 | ||
180 | /* String to be printed before warning messages, if any. */ | |
181 | ||
182 | char *warning_pre_print = "\nwarning: "; | |
183 | ||
184 | int pagination_enabled = 1; | |
c906108c | 185 | \f |
c5aa993b | 186 | |
c906108c SS |
187 | /* Add a new cleanup to the cleanup_chain, |
188 | and return the previous chain pointer | |
189 | to be passed later to do_cleanups or discard_cleanups. | |
190 | Args are FUNCTION to clean up with, and ARG to pass to it. */ | |
191 | ||
192 | struct cleanup * | |
e4005526 | 193 | make_cleanup (make_cleanup_ftype *function, void *arg) |
c906108c | 194 | { |
c5aa993b | 195 | return make_my_cleanup (&cleanup_chain, function, arg); |
c906108c SS |
196 | } |
197 | ||
198 | struct cleanup * | |
e4005526 | 199 | make_final_cleanup (make_cleanup_ftype *function, void *arg) |
c906108c | 200 | { |
c5aa993b | 201 | return make_my_cleanup (&final_cleanup_chain, function, arg); |
c906108c | 202 | } |
7a292a7a | 203 | |
c906108c | 204 | struct cleanup * |
e4005526 | 205 | make_run_cleanup (make_cleanup_ftype *function, void *arg) |
c906108c | 206 | { |
c5aa993b | 207 | return make_my_cleanup (&run_cleanup_chain, function, arg); |
c906108c | 208 | } |
7a292a7a | 209 | |
43ff13b4 | 210 | struct cleanup * |
e4005526 | 211 | make_exec_cleanup (make_cleanup_ftype *function, void *arg) |
43ff13b4 | 212 | { |
c5aa993b | 213 | return make_my_cleanup (&exec_cleanup_chain, function, arg); |
43ff13b4 JM |
214 | } |
215 | ||
6426a772 | 216 | struct cleanup * |
e4005526 | 217 | make_exec_error_cleanup (make_cleanup_ftype *function, void *arg) |
6426a772 JM |
218 | { |
219 | return make_my_cleanup (&exec_error_cleanup_chain, function, arg); | |
220 | } | |
221 | ||
7a292a7a | 222 | static void |
fba45db2 | 223 | do_freeargv (void *arg) |
7a292a7a | 224 | { |
c5aa993b | 225 | freeargv ((char **) arg); |
7a292a7a SS |
226 | } |
227 | ||
228 | struct cleanup * | |
fba45db2 | 229 | make_cleanup_freeargv (char **arg) |
7a292a7a SS |
230 | { |
231 | return make_my_cleanup (&cleanup_chain, do_freeargv, arg); | |
232 | } | |
233 | ||
5c65bbb6 AC |
234 | static void |
235 | do_bfd_close_cleanup (void *arg) | |
236 | { | |
237 | bfd_close (arg); | |
238 | } | |
239 | ||
240 | struct cleanup * | |
241 | make_cleanup_bfd_close (bfd *abfd) | |
242 | { | |
243 | return make_cleanup (do_bfd_close_cleanup, abfd); | |
244 | } | |
245 | ||
f5ff8c83 AC |
246 | static void |
247 | do_close_cleanup (void *arg) | |
248 | { | |
f042532c AC |
249 | int *fd = arg; |
250 | close (*fd); | |
251 | xfree (fd); | |
f5ff8c83 AC |
252 | } |
253 | ||
254 | struct cleanup * | |
255 | make_cleanup_close (int fd) | |
256 | { | |
f042532c AC |
257 | int *saved_fd = xmalloc (sizeof (fd)); |
258 | *saved_fd = fd; | |
259 | return make_cleanup (do_close_cleanup, saved_fd); | |
f5ff8c83 AC |
260 | } |
261 | ||
11cf8741 | 262 | static void |
d9fcf2fb | 263 | do_ui_file_delete (void *arg) |
11cf8741 | 264 | { |
d9fcf2fb | 265 | ui_file_delete (arg); |
11cf8741 JM |
266 | } |
267 | ||
268 | struct cleanup * | |
d9fcf2fb | 269 | make_cleanup_ui_file_delete (struct ui_file *arg) |
11cf8741 | 270 | { |
d9fcf2fb | 271 | return make_my_cleanup (&cleanup_chain, do_ui_file_delete, arg); |
11cf8741 JM |
272 | } |
273 | ||
c906108c | 274 | struct cleanup * |
e4005526 AC |
275 | make_my_cleanup (struct cleanup **pmy_chain, make_cleanup_ftype *function, |
276 | void *arg) | |
c906108c SS |
277 | { |
278 | register struct cleanup *new | |
3b4efeaa | 279 | = (struct cleanup *) xmalloc (sizeof (struct cleanup)); |
c906108c SS |
280 | register struct cleanup *old_chain = *pmy_chain; |
281 | ||
282 | new->next = *pmy_chain; | |
283 | new->function = function; | |
284 | new->arg = arg; | |
285 | *pmy_chain = new; | |
286 | ||
287 | return old_chain; | |
288 | } | |
289 | ||
290 | /* Discard cleanups and do the actions they describe | |
291 | until we get back to the point OLD_CHAIN in the cleanup_chain. */ | |
292 | ||
293 | void | |
fba45db2 | 294 | do_cleanups (register struct cleanup *old_chain) |
c906108c | 295 | { |
c5aa993b | 296 | do_my_cleanups (&cleanup_chain, old_chain); |
c906108c SS |
297 | } |
298 | ||
299 | void | |
fba45db2 | 300 | do_final_cleanups (register struct cleanup *old_chain) |
c906108c | 301 | { |
c5aa993b | 302 | do_my_cleanups (&final_cleanup_chain, old_chain); |
c906108c SS |
303 | } |
304 | ||
305 | void | |
fba45db2 | 306 | do_run_cleanups (register struct cleanup *old_chain) |
c906108c | 307 | { |
c5aa993b | 308 | do_my_cleanups (&run_cleanup_chain, old_chain); |
c906108c SS |
309 | } |
310 | ||
43ff13b4 | 311 | void |
fba45db2 | 312 | do_exec_cleanups (register struct cleanup *old_chain) |
43ff13b4 | 313 | { |
c5aa993b | 314 | do_my_cleanups (&exec_cleanup_chain, old_chain); |
43ff13b4 JM |
315 | } |
316 | ||
6426a772 | 317 | void |
fba45db2 | 318 | do_exec_error_cleanups (register struct cleanup *old_chain) |
6426a772 JM |
319 | { |
320 | do_my_cleanups (&exec_error_cleanup_chain, old_chain); | |
321 | } | |
322 | ||
c906108c | 323 | void |
fba45db2 KB |
324 | do_my_cleanups (register struct cleanup **pmy_chain, |
325 | register struct cleanup *old_chain) | |
c906108c SS |
326 | { |
327 | register struct cleanup *ptr; | |
328 | while ((ptr = *pmy_chain) != old_chain) | |
329 | { | |
330 | *pmy_chain = ptr->next; /* Do this first incase recursion */ | |
331 | (*ptr->function) (ptr->arg); | |
b8c9b27d | 332 | xfree (ptr); |
c906108c SS |
333 | } |
334 | } | |
335 | ||
336 | /* Discard cleanups, not doing the actions they describe, | |
337 | until we get back to the point OLD_CHAIN in the cleanup_chain. */ | |
338 | ||
339 | void | |
fba45db2 | 340 | discard_cleanups (register struct cleanup *old_chain) |
c906108c | 341 | { |
c5aa993b | 342 | discard_my_cleanups (&cleanup_chain, old_chain); |
c906108c SS |
343 | } |
344 | ||
345 | void | |
fba45db2 | 346 | discard_final_cleanups (register struct cleanup *old_chain) |
c906108c | 347 | { |
c5aa993b | 348 | discard_my_cleanups (&final_cleanup_chain, old_chain); |
c906108c SS |
349 | } |
350 | ||
6426a772 | 351 | void |
fba45db2 | 352 | discard_exec_error_cleanups (register struct cleanup *old_chain) |
6426a772 JM |
353 | { |
354 | discard_my_cleanups (&exec_error_cleanup_chain, old_chain); | |
355 | } | |
356 | ||
c906108c | 357 | void |
fba45db2 KB |
358 | discard_my_cleanups (register struct cleanup **pmy_chain, |
359 | register struct cleanup *old_chain) | |
c906108c SS |
360 | { |
361 | register struct cleanup *ptr; | |
362 | while ((ptr = *pmy_chain) != old_chain) | |
363 | { | |
364 | *pmy_chain = ptr->next; | |
b8c9b27d | 365 | xfree (ptr); |
c906108c SS |
366 | } |
367 | } | |
368 | ||
369 | /* Set the cleanup_chain to 0, and return the old cleanup chain. */ | |
370 | struct cleanup * | |
fba45db2 | 371 | save_cleanups (void) |
c906108c | 372 | { |
c5aa993b | 373 | return save_my_cleanups (&cleanup_chain); |
c906108c SS |
374 | } |
375 | ||
376 | struct cleanup * | |
fba45db2 | 377 | save_final_cleanups (void) |
c906108c | 378 | { |
c5aa993b | 379 | return save_my_cleanups (&final_cleanup_chain); |
c906108c SS |
380 | } |
381 | ||
382 | struct cleanup * | |
fba45db2 | 383 | save_my_cleanups (struct cleanup **pmy_chain) |
c906108c SS |
384 | { |
385 | struct cleanup *old_chain = *pmy_chain; | |
386 | ||
387 | *pmy_chain = 0; | |
388 | return old_chain; | |
389 | } | |
390 | ||
391 | /* Restore the cleanup chain from a previously saved chain. */ | |
392 | void | |
fba45db2 | 393 | restore_cleanups (struct cleanup *chain) |
c906108c | 394 | { |
c5aa993b | 395 | restore_my_cleanups (&cleanup_chain, chain); |
c906108c SS |
396 | } |
397 | ||
398 | void | |
fba45db2 | 399 | restore_final_cleanups (struct cleanup *chain) |
c906108c | 400 | { |
c5aa993b | 401 | restore_my_cleanups (&final_cleanup_chain, chain); |
c906108c SS |
402 | } |
403 | ||
404 | void | |
fba45db2 | 405 | restore_my_cleanups (struct cleanup **pmy_chain, struct cleanup *chain) |
c906108c SS |
406 | { |
407 | *pmy_chain = chain; | |
408 | } | |
409 | ||
410 | /* This function is useful for cleanups. | |
411 | Do | |
412 | ||
c5aa993b JM |
413 | foo = xmalloc (...); |
414 | old_chain = make_cleanup (free_current_contents, &foo); | |
c906108c SS |
415 | |
416 | to arrange to free the object thus allocated. */ | |
417 | ||
418 | void | |
2f9429ae | 419 | free_current_contents (void *ptr) |
c906108c | 420 | { |
2f9429ae | 421 | void **location = ptr; |
e2f9c474 | 422 | if (location == NULL) |
8e65ff28 AC |
423 | internal_error (__FILE__, __LINE__, |
424 | "free_current_contents: NULL pointer"); | |
2f9429ae | 425 | if (*location != NULL) |
e2f9c474 | 426 | { |
b8c9b27d | 427 | xfree (*location); |
e2f9c474 AC |
428 | *location = NULL; |
429 | } | |
c906108c SS |
430 | } |
431 | ||
432 | /* Provide a known function that does nothing, to use as a base for | |
433 | for a possibly long chain of cleanups. This is useful where we | |
434 | use the cleanup chain for handling normal cleanups as well as dealing | |
435 | with cleanups that need to be done as a result of a call to error(). | |
436 | In such cases, we may not be certain where the first cleanup is, unless | |
437 | we have a do-nothing one to always use as the base. */ | |
438 | ||
439 | /* ARGSUSED */ | |
440 | void | |
e4005526 | 441 | null_cleanup (void *arg) |
c906108c SS |
442 | { |
443 | } | |
444 | ||
74f832da | 445 | /* Add a continuation to the continuation list, the global list |
c2d11a7d | 446 | cmd_continuation. The new continuation will be added at the front.*/ |
43ff13b4 | 447 | void |
74f832da KB |
448 | add_continuation (void (*continuation_hook) (struct continuation_arg *), |
449 | struct continuation_arg *arg_list) | |
43ff13b4 | 450 | { |
c5aa993b | 451 | struct continuation *continuation_ptr; |
43ff13b4 | 452 | |
c5aa993b JM |
453 | continuation_ptr = (struct continuation *) xmalloc (sizeof (struct continuation)); |
454 | continuation_ptr->continuation_hook = continuation_hook; | |
455 | continuation_ptr->arg_list = arg_list; | |
456 | continuation_ptr->next = cmd_continuation; | |
457 | cmd_continuation = continuation_ptr; | |
43ff13b4 JM |
458 | } |
459 | ||
460 | /* Walk down the cmd_continuation list, and execute all the | |
c2d11a7d JM |
461 | continuations. There is a problem though. In some cases new |
462 | continuations may be added while we are in the middle of this | |
463 | loop. If this happens they will be added in the front, and done | |
464 | before we have a chance of exhausting those that were already | |
465 | there. We need to then save the beginning of the list in a pointer | |
466 | and do the continuations from there on, instead of using the | |
467 | global beginning of list as our iteration pointer.*/ | |
c5aa993b | 468 | void |
fba45db2 | 469 | do_all_continuations (void) |
c2d11a7d JM |
470 | { |
471 | struct continuation *continuation_ptr; | |
472 | struct continuation *saved_continuation; | |
473 | ||
474 | /* Copy the list header into another pointer, and set the global | |
475 | list header to null, so that the global list can change as a side | |
476 | effect of invoking the continuations and the processing of | |
477 | the preexisting continuations will not be affected. */ | |
478 | continuation_ptr = cmd_continuation; | |
479 | cmd_continuation = NULL; | |
480 | ||
481 | /* Work now on the list we have set aside. */ | |
482 | while (continuation_ptr) | |
483 | { | |
484 | (continuation_ptr->continuation_hook) (continuation_ptr->arg_list); | |
485 | saved_continuation = continuation_ptr; | |
486 | continuation_ptr = continuation_ptr->next; | |
b8c9b27d | 487 | xfree (saved_continuation); |
c2d11a7d JM |
488 | } |
489 | } | |
490 | ||
491 | /* Walk down the cmd_continuation list, and get rid of all the | |
492 | continuations. */ | |
493 | void | |
fba45db2 | 494 | discard_all_continuations (void) |
43ff13b4 | 495 | { |
c5aa993b | 496 | struct continuation *continuation_ptr; |
43ff13b4 | 497 | |
c5aa993b JM |
498 | while (cmd_continuation) |
499 | { | |
c5aa993b JM |
500 | continuation_ptr = cmd_continuation; |
501 | cmd_continuation = continuation_ptr->next; | |
b8c9b27d | 502 | xfree (continuation_ptr); |
c5aa993b | 503 | } |
43ff13b4 | 504 | } |
c2c6d25f | 505 | |
57e687d9 | 506 | /* Add a continuation to the continuation list, the global list |
c2d11a7d JM |
507 | intermediate_continuation. The new continuation will be added at the front.*/ |
508 | void | |
74f832da KB |
509 | add_intermediate_continuation (void (*continuation_hook) |
510 | (struct continuation_arg *), | |
511 | struct continuation_arg *arg_list) | |
c2d11a7d JM |
512 | { |
513 | struct continuation *continuation_ptr; | |
514 | ||
515 | continuation_ptr = (struct continuation *) xmalloc (sizeof (struct continuation)); | |
516 | continuation_ptr->continuation_hook = continuation_hook; | |
517 | continuation_ptr->arg_list = arg_list; | |
518 | continuation_ptr->next = intermediate_continuation; | |
519 | intermediate_continuation = continuation_ptr; | |
520 | } | |
521 | ||
522 | /* Walk down the cmd_continuation list, and execute all the | |
523 | continuations. There is a problem though. In some cases new | |
524 | continuations may be added while we are in the middle of this | |
525 | loop. If this happens they will be added in the front, and done | |
526 | before we have a chance of exhausting those that were already | |
527 | there. We need to then save the beginning of the list in a pointer | |
528 | and do the continuations from there on, instead of using the | |
529 | global beginning of list as our iteration pointer.*/ | |
530 | void | |
fba45db2 | 531 | do_all_intermediate_continuations (void) |
c2d11a7d JM |
532 | { |
533 | struct continuation *continuation_ptr; | |
534 | struct continuation *saved_continuation; | |
535 | ||
536 | /* Copy the list header into another pointer, and set the global | |
537 | list header to null, so that the global list can change as a side | |
538 | effect of invoking the continuations and the processing of | |
539 | the preexisting continuations will not be affected. */ | |
540 | continuation_ptr = intermediate_continuation; | |
541 | intermediate_continuation = NULL; | |
542 | ||
543 | /* Work now on the list we have set aside. */ | |
544 | while (continuation_ptr) | |
545 | { | |
546 | (continuation_ptr->continuation_hook) (continuation_ptr->arg_list); | |
547 | saved_continuation = continuation_ptr; | |
548 | continuation_ptr = continuation_ptr->next; | |
b8c9b27d | 549 | xfree (saved_continuation); |
c2d11a7d JM |
550 | } |
551 | } | |
552 | ||
c2c6d25f JM |
553 | /* Walk down the cmd_continuation list, and get rid of all the |
554 | continuations. */ | |
555 | void | |
fba45db2 | 556 | discard_all_intermediate_continuations (void) |
c2c6d25f JM |
557 | { |
558 | struct continuation *continuation_ptr; | |
559 | ||
c2d11a7d | 560 | while (intermediate_continuation) |
c2c6d25f | 561 | { |
c2d11a7d JM |
562 | continuation_ptr = intermediate_continuation; |
563 | intermediate_continuation = continuation_ptr->next; | |
b8c9b27d | 564 | xfree (continuation_ptr); |
c2c6d25f JM |
565 | } |
566 | } | |
567 | ||
c906108c | 568 | \f |
c5aa993b | 569 | |
f5a96129 AC |
570 | /* Print a warning message. The first argument STRING is the warning |
571 | message, used as an fprintf format string, the second is the | |
572 | va_list of arguments for that string. A warning is unfiltered (not | |
573 | paginated) so that the user does not need to page through each | |
574 | screen full of warnings when there are lots of them. */ | |
c906108c SS |
575 | |
576 | void | |
f5a96129 | 577 | vwarning (const char *string, va_list args) |
c906108c | 578 | { |
f5a96129 AC |
579 | if (warning_hook) |
580 | (*warning_hook) (string, args); | |
581 | else | |
582 | { | |
583 | target_terminal_ours (); | |
584 | wrap_here (""); /* Force out any buffered output */ | |
585 | gdb_flush (gdb_stdout); | |
586 | if (warning_pre_print) | |
587 | fprintf_unfiltered (gdb_stderr, warning_pre_print); | |
588 | vfprintf_unfiltered (gdb_stderr, string, args); | |
589 | fprintf_unfiltered (gdb_stderr, "\n"); | |
590 | va_end (args); | |
591 | } | |
c906108c SS |
592 | } |
593 | ||
594 | /* Print a warning message. | |
595 | The first argument STRING is the warning message, used as a fprintf string, | |
596 | and the remaining args are passed as arguments to it. | |
597 | The primary difference between warnings and errors is that a warning | |
598 | does not force the return to command level. */ | |
599 | ||
c906108c | 600 | void |
c5aa993b | 601 | warning (const char *string,...) |
c906108c SS |
602 | { |
603 | va_list args; | |
c906108c | 604 | va_start (args, string); |
f5a96129 AC |
605 | vwarning (string, args); |
606 | va_end (args); | |
c906108c SS |
607 | } |
608 | ||
c906108c SS |
609 | /* Print an error message and return to command level. |
610 | The first argument STRING is the error message, used as a fprintf string, | |
611 | and the remaining args are passed as arguments to it. */ | |
612 | ||
4ce44c66 JM |
613 | NORETURN void |
614 | verror (const char *string, va_list args) | |
615 | { | |
fffee0be AC |
616 | struct ui_file *tmp_stream = mem_fileopen (); |
617 | make_cleanup_ui_file_delete (tmp_stream); | |
618 | vfprintf_unfiltered (tmp_stream, string, args); | |
619 | error_stream (tmp_stream); | |
4ce44c66 JM |
620 | } |
621 | ||
c906108c | 622 | NORETURN void |
c5aa993b | 623 | error (const char *string,...) |
c906108c SS |
624 | { |
625 | va_list args; | |
c906108c | 626 | va_start (args, string); |
4ce44c66 JM |
627 | verror (string, args); |
628 | va_end (args); | |
c906108c SS |
629 | } |
630 | ||
fffee0be AC |
631 | static void |
632 | do_write (void *data, const char *buffer, long length_buffer) | |
633 | { | |
634 | ui_file_write (data, buffer, length_buffer); | |
635 | } | |
636 | ||
2acceee2 | 637 | NORETURN void |
d9fcf2fb | 638 | error_stream (struct ui_file *stream) |
2acceee2 | 639 | { |
fffee0be AC |
640 | if (error_begin_hook) |
641 | error_begin_hook (); | |
642 | ||
643 | /* Copy the stream into the GDB_LASTERR buffer. */ | |
644 | ui_file_rewind (gdb_lasterr); | |
645 | ui_file_put (stream, do_write, gdb_lasterr); | |
646 | ||
647 | /* Write the message plus any error_pre_print to gdb_stderr. */ | |
648 | target_terminal_ours (); | |
649 | wrap_here (""); /* Force out any buffered output */ | |
650 | gdb_flush (gdb_stdout); | |
651 | annotate_error_begin (); | |
652 | if (error_pre_print) | |
653 | fprintf_filtered (gdb_stderr, error_pre_print); | |
654 | ui_file_put (stream, do_write, gdb_stderr); | |
655 | fprintf_filtered (gdb_stderr, "\n"); | |
656 | ||
b5a2688f | 657 | throw_exception (RETURN_ERROR); |
2acceee2 JM |
658 | } |
659 | ||
660 | /* Get the last error message issued by gdb */ | |
661 | ||
662 | char * | |
663 | error_last_message (void) | |
664 | { | |
4ce44c66 | 665 | long len; |
d9fcf2fb | 666 | return ui_file_xstrdup (gdb_lasterr, &len); |
2acceee2 | 667 | } |
4ce44c66 | 668 | |
2acceee2 JM |
669 | /* This is to be called by main() at the very beginning */ |
670 | ||
671 | void | |
672 | error_init (void) | |
673 | { | |
4ce44c66 | 674 | gdb_lasterr = mem_fileopen (); |
2acceee2 | 675 | } |
c906108c | 676 | |
dec43320 AC |
677 | /* Print a message reporting an internal error/warning. Ask the user |
678 | if they want to continue, dump core, or just exit. Return | |
679 | something to indicate a quit. */ | |
c906108c | 680 | |
dec43320 | 681 | struct internal_problem |
c906108c | 682 | { |
dec43320 AC |
683 | const char *name; |
684 | /* FIXME: cagney/2002-08-15: There should be ``maint set/show'' | |
685 | commands available for controlling these variables. */ | |
686 | enum auto_boolean should_quit; | |
687 | enum auto_boolean should_dump_core; | |
688 | }; | |
689 | ||
690 | /* Report a problem, internal to GDB, to the user. Once the problem | |
691 | has been reported, and assuming GDB didn't quit, the caller can | |
692 | either allow execution to resume or throw an error. */ | |
693 | ||
694 | static void | |
695 | internal_vproblem (struct internal_problem *problem, | |
696 | const char *file, int line, | |
697 | const char *fmt, va_list ap) | |
698 | { | |
699 | static char msg[] = "Recursive internal problem.\n"; | |
700 | static int dejavu; | |
375fc983 | 701 | int quit_p; |
7be570e7 | 702 | int dump_core_p; |
c906108c | 703 | |
dec43320 | 704 | /* Don't allow infinite error/warning recursion. */ |
96baa820 JM |
705 | switch (dejavu) |
706 | { | |
707 | case 0: | |
708 | dejavu = 1; | |
709 | break; | |
710 | case 1: | |
711 | dejavu = 2; | |
712 | fputs_unfiltered (msg, gdb_stderr); | |
5c7dd748 | 713 | abort (); /* NOTE: GDB has only three calls to abort(). */ |
96baa820 JM |
714 | default: |
715 | dejavu = 3; | |
716 | write (STDERR_FILENO, msg, sizeof (msg)); | |
717 | exit (1); | |
718 | } | |
c906108c | 719 | |
dec43320 | 720 | /* Try to get the message out and at the start of a new line. */ |
4261bedc | 721 | target_terminal_ours (); |
dec43320 AC |
722 | begin_line (); |
723 | ||
724 | /* The error/warning message. Format using a style similar to a | |
725 | compiler error message. */ | |
726 | fprintf_unfiltered (gdb_stderr, "%s:%d: %s: ", file, line, problem->name); | |
4ce44c66 | 727 | vfprintf_unfiltered (gdb_stderr, fmt, ap); |
96baa820 | 728 | fputs_unfiltered ("\n", gdb_stderr); |
c906108c | 729 | |
dec43320 AC |
730 | /* Provide more details so that the user knows that they are living |
731 | on the edge. */ | |
732 | fprintf_unfiltered (gdb_stderr, "\ | |
733 | A problem internal to GDB has been detected. Further\n\ | |
734 | debugging may prove unreliable.\n"); | |
7be570e7 | 735 | |
dec43320 AC |
736 | switch (problem->should_quit) |
737 | { | |
738 | case AUTO_BOOLEAN_AUTO: | |
739 | /* Default (yes/batch case) is to quit GDB. When in batch mode | |
740 | this lessens the likelhood of GDB going into an infinate | |
741 | loop. */ | |
742 | quit_p = query ("Quit this debugging session? "); | |
743 | break; | |
744 | case AUTO_BOOLEAN_TRUE: | |
745 | quit_p = 1; | |
746 | break; | |
747 | case AUTO_BOOLEAN_FALSE: | |
748 | quit_p = 0; | |
749 | break; | |
750 | default: | |
751 | internal_error (__FILE__, __LINE__, "bad switch"); | |
752 | } | |
753 | ||
754 | switch (problem->should_dump_core) | |
755 | { | |
756 | case AUTO_BOOLEAN_AUTO: | |
757 | /* Default (yes/batch case) is to dump core. This leaves a GDB | |
758 | `dropping' so that it is easier to see that something went | |
759 | wrong in GDB. */ | |
760 | dump_core_p = query ("Create a core file of GDB? "); | |
761 | break; | |
762 | break; | |
763 | case AUTO_BOOLEAN_TRUE: | |
764 | dump_core_p = 1; | |
765 | break; | |
766 | case AUTO_BOOLEAN_FALSE: | |
767 | dump_core_p = 0; | |
768 | break; | |
769 | default: | |
770 | internal_error (__FILE__, __LINE__, "bad switch"); | |
771 | } | |
7be570e7 | 772 | |
375fc983 | 773 | if (quit_p) |
7be570e7 JM |
774 | { |
775 | if (dump_core_p) | |
375fc983 AC |
776 | abort (); /* NOTE: GDB has only three calls to abort(). */ |
777 | else | |
778 | exit (1); | |
7be570e7 JM |
779 | } |
780 | else | |
781 | { | |
782 | if (dump_core_p) | |
375fc983 AC |
783 | { |
784 | if (fork () == 0) | |
785 | abort (); /* NOTE: GDB has only three calls to abort(). */ | |
786 | } | |
7be570e7 | 787 | } |
96baa820 JM |
788 | |
789 | dejavu = 0; | |
dec43320 AC |
790 | } |
791 | ||
792 | static struct internal_problem internal_error_problem = { | |
793 | "internal-error", AUTO_BOOLEAN_AUTO, AUTO_BOOLEAN_AUTO | |
794 | }; | |
795 | ||
796 | NORETURN void | |
797 | internal_verror (const char *file, int line, | |
798 | const char *fmt, va_list ap) | |
799 | { | |
800 | internal_vproblem (&internal_error_problem, file, line, fmt, ap); | |
b5a2688f | 801 | throw_exception (RETURN_ERROR); |
c906108c SS |
802 | } |
803 | ||
4ce44c66 | 804 | NORETURN void |
8e65ff28 | 805 | internal_error (const char *file, int line, const char *string, ...) |
4ce44c66 JM |
806 | { |
807 | va_list ap; | |
808 | va_start (ap, string); | |
8e65ff28 | 809 | internal_verror (file, line, string, ap); |
4ce44c66 JM |
810 | va_end (ap); |
811 | } | |
812 | ||
dec43320 AC |
813 | static struct internal_problem internal_warning_problem = { |
814 | "internal-error", AUTO_BOOLEAN_AUTO, AUTO_BOOLEAN_AUTO | |
815 | }; | |
816 | ||
817 | void | |
818 | internal_vwarning (const char *file, int line, | |
819 | const char *fmt, va_list ap) | |
820 | { | |
821 | internal_vproblem (&internal_warning_problem, file, line, fmt, ap); | |
822 | } | |
823 | ||
824 | void | |
825 | internal_warning (const char *file, int line, const char *string, ...) | |
826 | { | |
827 | va_list ap; | |
828 | va_start (ap, string); | |
829 | internal_vwarning (file, line, string, ap); | |
830 | va_end (ap); | |
831 | } | |
832 | ||
c906108c SS |
833 | /* The strerror() function can return NULL for errno values that are |
834 | out of range. Provide a "safe" version that always returns a | |
835 | printable string. */ | |
836 | ||
837 | char * | |
fba45db2 | 838 | safe_strerror (int errnum) |
c906108c SS |
839 | { |
840 | char *msg; | |
841 | static char buf[32]; | |
842 | ||
843 | if ((msg = strerror (errnum)) == NULL) | |
844 | { | |
845 | sprintf (buf, "(undocumented errno %d)", errnum); | |
846 | msg = buf; | |
847 | } | |
848 | return (msg); | |
849 | } | |
850 | ||
c906108c SS |
851 | /* Print the system error message for errno, and also mention STRING |
852 | as the file name for which the error was encountered. | |
853 | Then return to command level. */ | |
854 | ||
855 | NORETURN void | |
6972bc8b | 856 | perror_with_name (const char *string) |
c906108c SS |
857 | { |
858 | char *err; | |
859 | char *combined; | |
860 | ||
861 | err = safe_strerror (errno); | |
862 | combined = (char *) alloca (strlen (err) + strlen (string) + 3); | |
863 | strcpy (combined, string); | |
864 | strcat (combined, ": "); | |
865 | strcat (combined, err); | |
866 | ||
867 | /* I understand setting these is a matter of taste. Still, some people | |
868 | may clear errno but not know about bfd_error. Doing this here is not | |
869 | unreasonable. */ | |
870 | bfd_set_error (bfd_error_no_error); | |
871 | errno = 0; | |
872 | ||
c5aa993b | 873 | error ("%s.", combined); |
c906108c SS |
874 | } |
875 | ||
876 | /* Print the system error message for ERRCODE, and also mention STRING | |
877 | as the file name for which the error was encountered. */ | |
878 | ||
879 | void | |
6972bc8b | 880 | print_sys_errmsg (const char *string, int errcode) |
c906108c SS |
881 | { |
882 | char *err; | |
883 | char *combined; | |
884 | ||
885 | err = safe_strerror (errcode); | |
886 | combined = (char *) alloca (strlen (err) + strlen (string) + 3); | |
887 | strcpy (combined, string); | |
888 | strcat (combined, ": "); | |
889 | strcat (combined, err); | |
890 | ||
891 | /* We want anything which was printed on stdout to come out first, before | |
892 | this message. */ | |
893 | gdb_flush (gdb_stdout); | |
894 | fprintf_unfiltered (gdb_stderr, "%s.\n", combined); | |
895 | } | |
896 | ||
897 | /* Control C eventually causes this to be called, at a convenient time. */ | |
898 | ||
899 | void | |
fba45db2 | 900 | quit (void) |
c906108c | 901 | { |
819cc324 | 902 | struct serial *gdb_stdout_serial = serial_fdopen (1); |
c906108c SS |
903 | |
904 | target_terminal_ours (); | |
905 | ||
906 | /* We want all output to appear now, before we print "Quit". We | |
907 | have 3 levels of buffering we have to flush (it's possible that | |
908 | some of these should be changed to flush the lower-level ones | |
909 | too): */ | |
910 | ||
911 | /* 1. The _filtered buffer. */ | |
c5aa993b | 912 | wrap_here ((char *) 0); |
c906108c SS |
913 | |
914 | /* 2. The stdio buffer. */ | |
915 | gdb_flush (gdb_stdout); | |
916 | gdb_flush (gdb_stderr); | |
917 | ||
918 | /* 3. The system-level buffer. */ | |
2cd58942 AC |
919 | serial_drain_output (gdb_stdout_serial); |
920 | serial_un_fdopen (gdb_stdout_serial); | |
c906108c SS |
921 | |
922 | annotate_error_begin (); | |
923 | ||
924 | /* Don't use *_filtered; we don't want to prompt the user to continue. */ | |
925 | if (quit_pre_print) | |
926 | fprintf_unfiltered (gdb_stderr, quit_pre_print); | |
927 | ||
7be570e7 JM |
928 | #ifdef __MSDOS__ |
929 | /* No steenking SIGINT will ever be coming our way when the | |
930 | program is resumed. Don't lie. */ | |
931 | fprintf_unfiltered (gdb_stderr, "Quit\n"); | |
932 | #else | |
c906108c | 933 | if (job_control |
c5aa993b JM |
934 | /* If there is no terminal switching for this target, then we can't |
935 | possibly get screwed by the lack of job control. */ | |
c906108c SS |
936 | || current_target.to_terminal_ours == NULL) |
937 | fprintf_unfiltered (gdb_stderr, "Quit\n"); | |
938 | else | |
939 | fprintf_unfiltered (gdb_stderr, | |
c5aa993b | 940 | "Quit (expect signal SIGINT when the program is resumed)\n"); |
7be570e7 | 941 | #endif |
b5a2688f | 942 | throw_exception (RETURN_QUIT); |
c906108c SS |
943 | } |
944 | ||
c906108c | 945 | /* Control C comes here */ |
c906108c | 946 | void |
fba45db2 | 947 | request_quit (int signo) |
c906108c SS |
948 | { |
949 | quit_flag = 1; | |
950 | /* Restore the signal handler. Harmless with BSD-style signals, needed | |
951 | for System V-style signals. So just always do it, rather than worrying | |
952 | about USG defines and stuff like that. */ | |
953 | signal (signo, request_quit); | |
954 | ||
955 | #ifdef REQUEST_QUIT | |
956 | REQUEST_QUIT; | |
957 | #else | |
c5aa993b | 958 | if (immediate_quit) |
c906108c SS |
959 | quit (); |
960 | #endif | |
961 | } | |
c906108c SS |
962 | \f |
963 | /* Memory management stuff (malloc friends). */ | |
964 | ||
c906108c SS |
965 | #if !defined (USE_MMALLOC) |
966 | ||
c0e61796 AC |
967 | /* NOTE: These must use PTR so that their definition matches the |
968 | declaration found in "mmalloc.h". */ | |
ed9a39eb | 969 | |
ed1801df AC |
970 | static void * |
971 | mmalloc (void *md, size_t size) | |
c906108c | 972 | { |
c0e61796 | 973 | return malloc (size); /* NOTE: GDB's only call to malloc() */ |
c906108c SS |
974 | } |
975 | ||
ed1801df AC |
976 | static void * |
977 | mrealloc (void *md, void *ptr, size_t size) | |
c906108c | 978 | { |
c5aa993b | 979 | if (ptr == 0) /* Guard against old realloc's */ |
c0e61796 | 980 | return mmalloc (md, size); |
c906108c | 981 | else |
c0e61796 AC |
982 | return realloc (ptr, size); /* NOTE: GDB's only call to ralloc() */ |
983 | } | |
984 | ||
ed1801df AC |
985 | static void * |
986 | mcalloc (void *md, size_t number, size_t size) | |
c0e61796 AC |
987 | { |
988 | return calloc (number, size); /* NOTE: GDB's only call to calloc() */ | |
c906108c SS |
989 | } |
990 | ||
ed1801df AC |
991 | static void |
992 | mfree (void *md, void *ptr) | |
c906108c | 993 | { |
c0e61796 | 994 | free (ptr); /* NOTE: GDB's only call to free() */ |
c906108c SS |
995 | } |
996 | ||
c5aa993b | 997 | #endif /* USE_MMALLOC */ |
c906108c SS |
998 | |
999 | #if !defined (USE_MMALLOC) || defined (NO_MMCHECK) | |
1000 | ||
1001 | void | |
082faf24 | 1002 | init_malloc (void *md) |
c906108c SS |
1003 | { |
1004 | } | |
1005 | ||
1006 | #else /* Have mmalloc and want corruption checking */ | |
1007 | ||
1008 | static void | |
fba45db2 | 1009 | malloc_botch (void) |
c906108c | 1010 | { |
96baa820 | 1011 | fprintf_unfiltered (gdb_stderr, "Memory corruption\n"); |
e1e9e218 | 1012 | internal_error (__FILE__, __LINE__, "failed internal consistency check"); |
c906108c SS |
1013 | } |
1014 | ||
1015 | /* Attempt to install hooks in mmalloc/mrealloc/mfree for the heap specified | |
1016 | by MD, to detect memory corruption. Note that MD may be NULL to specify | |
1017 | the default heap that grows via sbrk. | |
1018 | ||
1019 | Note that for freshly created regions, we must call mmcheckf prior to any | |
1020 | mallocs in the region. Otherwise, any region which was allocated prior to | |
1021 | installing the checking hooks, which is later reallocated or freed, will | |
1022 | fail the checks! The mmcheck function only allows initial hooks to be | |
1023 | installed before the first mmalloc. However, anytime after we have called | |
1024 | mmcheck the first time to install the checking hooks, we can call it again | |
1025 | to update the function pointer to the memory corruption handler. | |
1026 | ||
1027 | Returns zero on failure, non-zero on success. */ | |
1028 | ||
1029 | #ifndef MMCHECK_FORCE | |
1030 | #define MMCHECK_FORCE 0 | |
1031 | #endif | |
1032 | ||
1033 | void | |
082faf24 | 1034 | init_malloc (void *md) |
c906108c SS |
1035 | { |
1036 | if (!mmcheckf (md, malloc_botch, MMCHECK_FORCE)) | |
1037 | { | |
1038 | /* Don't use warning(), which relies on current_target being set | |
c5aa993b JM |
1039 | to something other than dummy_target, until after |
1040 | initialize_all_files(). */ | |
c906108c SS |
1041 | |
1042 | fprintf_unfiltered | |
1043 | (gdb_stderr, "warning: failed to install memory consistency checks; "); | |
1044 | fprintf_unfiltered | |
1045 | (gdb_stderr, "configuration should define NO_MMCHECK or MMCHECK_FORCE\n"); | |
1046 | } | |
1047 | ||
1048 | mmtrace (); | |
1049 | } | |
1050 | ||
1051 | #endif /* Have mmalloc and want corruption checking */ | |
1052 | ||
1053 | /* Called when a memory allocation fails, with the number of bytes of | |
1054 | memory requested in SIZE. */ | |
1055 | ||
1056 | NORETURN void | |
fba45db2 | 1057 | nomem (long size) |
c906108c SS |
1058 | { |
1059 | if (size > 0) | |
1060 | { | |
8e65ff28 AC |
1061 | internal_error (__FILE__, __LINE__, |
1062 | "virtual memory exhausted: can't allocate %ld bytes.", size); | |
c906108c SS |
1063 | } |
1064 | else | |
1065 | { | |
8e65ff28 AC |
1066 | internal_error (__FILE__, __LINE__, |
1067 | "virtual memory exhausted."); | |
c906108c SS |
1068 | } |
1069 | } | |
1070 | ||
c0e61796 | 1071 | /* The xmmalloc() family of memory management routines. |
c906108c | 1072 | |
c0e61796 AC |
1073 | These are are like the mmalloc() family except that they implement |
1074 | consistent semantics and guard against typical memory management | |
1075 | problems: if a malloc fails, an internal error is thrown; if | |
1076 | free(NULL) is called, it is ignored; if *alloc(0) is called, NULL | |
1077 | is returned. | |
1078 | ||
1079 | All these routines are implemented using the mmalloc() family. */ | |
1080 | ||
1081 | void * | |
1082 | xmmalloc (void *md, size_t size) | |
c906108c | 1083 | { |
c0e61796 | 1084 | void *val; |
c906108c SS |
1085 | |
1086 | if (size == 0) | |
1087 | { | |
1088 | val = NULL; | |
1089 | } | |
c0e61796 | 1090 | else |
c906108c | 1091 | { |
c0e61796 AC |
1092 | val = mmalloc (md, size); |
1093 | if (val == NULL) | |
1094 | nomem (size); | |
c906108c SS |
1095 | } |
1096 | return (val); | |
1097 | } | |
1098 | ||
c0e61796 AC |
1099 | void * |
1100 | xmrealloc (void *md, void *ptr, size_t size) | |
c906108c | 1101 | { |
c0e61796 | 1102 | void *val; |
c906108c | 1103 | |
d7fa9de0 | 1104 | if (size == 0) |
c906108c | 1105 | { |
d7fa9de0 KB |
1106 | if (ptr != NULL) |
1107 | mfree (md, ptr); | |
1108 | val = NULL; | |
c906108c SS |
1109 | } |
1110 | else | |
1111 | { | |
d7fa9de0 KB |
1112 | if (ptr != NULL) |
1113 | { | |
1114 | val = mrealloc (md, ptr, size); | |
1115 | } | |
1116 | else | |
1117 | { | |
1118 | val = mmalloc (md, size); | |
1119 | } | |
1120 | if (val == NULL) | |
1121 | { | |
1122 | nomem (size); | |
1123 | } | |
c906108c SS |
1124 | } |
1125 | return (val); | |
1126 | } | |
1127 | ||
c0e61796 AC |
1128 | void * |
1129 | xmcalloc (void *md, size_t number, size_t size) | |
ed9a39eb | 1130 | { |
d7fa9de0 | 1131 | void *mem; |
d7fa9de0 KB |
1132 | if (number == 0 || size == 0) |
1133 | mem = NULL; | |
1134 | else | |
1135 | { | |
c0e61796 | 1136 | mem = mcalloc (md, number, size); |
d7fa9de0 KB |
1137 | if (mem == NULL) |
1138 | nomem (number * size); | |
1139 | } | |
ed9a39eb JM |
1140 | return mem; |
1141 | } | |
1142 | ||
c0e61796 AC |
1143 | void |
1144 | xmfree (void *md, void *ptr) | |
1145 | { | |
1146 | if (ptr != NULL) | |
1147 | mfree (md, ptr); | |
1148 | } | |
1149 | ||
1150 | /* The xmalloc() (libiberty.h) family of memory management routines. | |
1151 | ||
1152 | These are like the ISO-C malloc() family except that they implement | |
1153 | consistent semantics and guard against typical memory management | |
1154 | problems. See xmmalloc() above for further information. | |
1155 | ||
1156 | All these routines are wrappers to the xmmalloc() family. */ | |
1157 | ||
1158 | /* NOTE: These are declared using PTR to ensure consistency with | |
1159 | "libiberty.h". xfree() is GDB local. */ | |
1160 | ||
1161 | PTR | |
1162 | xmalloc (size_t size) | |
1163 | { | |
1164 | return xmmalloc (NULL, size); | |
1165 | } | |
c906108c SS |
1166 | |
1167 | PTR | |
fba45db2 | 1168 | xrealloc (PTR ptr, size_t size) |
c906108c | 1169 | { |
c0e61796 | 1170 | return xmrealloc (NULL, ptr, size); |
c906108c | 1171 | } |
b8c9b27d | 1172 | |
c0e61796 AC |
1173 | PTR |
1174 | xcalloc (size_t number, size_t size) | |
1175 | { | |
1176 | return xmcalloc (NULL, number, size); | |
1177 | } | |
b8c9b27d KB |
1178 | |
1179 | void | |
1180 | xfree (void *ptr) | |
1181 | { | |
c0e61796 | 1182 | xmfree (NULL, ptr); |
b8c9b27d | 1183 | } |
c906108c | 1184 | \f |
c5aa993b | 1185 | |
76995688 AC |
1186 | /* Like asprintf/vasprintf but get an internal_error if the call |
1187 | fails. */ | |
1188 | ||
1189 | void | |
1190 | xasprintf (char **ret, const char *format, ...) | |
1191 | { | |
1192 | va_list args; | |
1193 | va_start (args, format); | |
1194 | xvasprintf (ret, format, args); | |
1195 | va_end (args); | |
1196 | } | |
1197 | ||
1198 | void | |
1199 | xvasprintf (char **ret, const char *format, va_list ap) | |
1200 | { | |
1201 | int status = vasprintf (ret, format, ap); | |
1202 | /* NULL could be returned due to a memory allocation problem; a | |
1203 | badly format string; or something else. */ | |
1204 | if ((*ret) == NULL) | |
8e65ff28 AC |
1205 | internal_error (__FILE__, __LINE__, |
1206 | "vasprintf returned NULL buffer (errno %d)", | |
1207 | errno); | |
76995688 AC |
1208 | /* A negative status with a non-NULL buffer shouldn't never |
1209 | happen. But to be sure. */ | |
1210 | if (status < 0) | |
8e65ff28 AC |
1211 | internal_error (__FILE__, __LINE__, |
1212 | "vasprintf call failed (errno %d)", | |
1213 | errno); | |
76995688 AC |
1214 | } |
1215 | ||
1216 | ||
c906108c SS |
1217 | /* My replacement for the read system call. |
1218 | Used like `read' but keeps going if `read' returns too soon. */ | |
1219 | ||
1220 | int | |
fba45db2 | 1221 | myread (int desc, char *addr, int len) |
c906108c SS |
1222 | { |
1223 | register int val; | |
1224 | int orglen = len; | |
1225 | ||
1226 | while (len > 0) | |
1227 | { | |
1228 | val = read (desc, addr, len); | |
1229 | if (val < 0) | |
1230 | return val; | |
1231 | if (val == 0) | |
1232 | return orglen - len; | |
1233 | len -= val; | |
1234 | addr += val; | |
1235 | } | |
1236 | return orglen; | |
1237 | } | |
1238 | \f | |
1239 | /* Make a copy of the string at PTR with SIZE characters | |
1240 | (and add a null character at the end in the copy). | |
1241 | Uses malloc to get the space. Returns the address of the copy. */ | |
1242 | ||
1243 | char * | |
5565b556 | 1244 | savestring (const char *ptr, size_t size) |
c906108c SS |
1245 | { |
1246 | register char *p = (char *) xmalloc (size + 1); | |
1247 | memcpy (p, ptr, size); | |
1248 | p[size] = 0; | |
1249 | return p; | |
1250 | } | |
1251 | ||
1252 | char * | |
5565b556 | 1253 | msavestring (void *md, const char *ptr, size_t size) |
c906108c SS |
1254 | { |
1255 | register char *p = (char *) xmmalloc (md, size + 1); | |
1256 | memcpy (p, ptr, size); | |
1257 | p[size] = 0; | |
1258 | return p; | |
1259 | } | |
1260 | ||
c906108c | 1261 | char * |
082faf24 | 1262 | mstrsave (void *md, const char *ptr) |
c906108c SS |
1263 | { |
1264 | return (msavestring (md, ptr, strlen (ptr))); | |
1265 | } | |
1266 | ||
1267 | void | |
fba45db2 | 1268 | print_spaces (register int n, register struct ui_file *file) |
c906108c | 1269 | { |
392a587b | 1270 | fputs_unfiltered (n_spaces (n), file); |
c906108c SS |
1271 | } |
1272 | ||
1273 | /* Print a host address. */ | |
1274 | ||
1275 | void | |
d9fcf2fb | 1276 | gdb_print_host_address (void *addr, struct ui_file *stream) |
c906108c SS |
1277 | { |
1278 | ||
1279 | /* We could use the %p conversion specifier to fprintf if we had any | |
1280 | way of knowing whether this host supports it. But the following | |
1281 | should work on the Alpha and on 32 bit machines. */ | |
1282 | ||
c5aa993b | 1283 | fprintf_filtered (stream, "0x%lx", (unsigned long) addr); |
c906108c SS |
1284 | } |
1285 | ||
1286 | /* Ask user a y-or-n question and return 1 iff answer is yes. | |
1287 | Takes three args which are given to printf to print the question. | |
1288 | The first, a control string, should end in "? ". | |
1289 | It should not say how to answer, because we do that. */ | |
1290 | ||
1291 | /* VARARGS */ | |
1292 | int | |
6972bc8b | 1293 | query (const char *ctlstr,...) |
c906108c SS |
1294 | { |
1295 | va_list args; | |
1296 | register int answer; | |
1297 | register int ans2; | |
1298 | int retval; | |
1299 | ||
c906108c | 1300 | va_start (args, ctlstr); |
c906108c SS |
1301 | |
1302 | if (query_hook) | |
1303 | { | |
1304 | return query_hook (ctlstr, args); | |
1305 | } | |
1306 | ||
1307 | /* Automatically answer "yes" if input is not from a terminal. */ | |
1308 | if (!input_from_terminal_p ()) | |
1309 | return 1; | |
c906108c SS |
1310 | |
1311 | while (1) | |
1312 | { | |
1313 | wrap_here (""); /* Flush any buffered output */ | |
1314 | gdb_flush (gdb_stdout); | |
1315 | ||
1316 | if (annotation_level > 1) | |
1317 | printf_filtered ("\n\032\032pre-query\n"); | |
1318 | ||
1319 | vfprintf_filtered (gdb_stdout, ctlstr, args); | |
1320 | printf_filtered ("(y or n) "); | |
1321 | ||
1322 | if (annotation_level > 1) | |
1323 | printf_filtered ("\n\032\032query\n"); | |
1324 | ||
c5aa993b | 1325 | wrap_here (""); |
c906108c SS |
1326 | gdb_flush (gdb_stdout); |
1327 | ||
37767e42 | 1328 | answer = fgetc (stdin); |
c906108c SS |
1329 | clearerr (stdin); /* in case of C-d */ |
1330 | if (answer == EOF) /* C-d */ | |
c5aa993b | 1331 | { |
c906108c SS |
1332 | retval = 1; |
1333 | break; | |
1334 | } | |
1335 | /* Eat rest of input line, to EOF or newline */ | |
37767e42 | 1336 | if (answer != '\n') |
c5aa993b | 1337 | do |
c906108c | 1338 | { |
37767e42 | 1339 | ans2 = fgetc (stdin); |
c906108c SS |
1340 | clearerr (stdin); |
1341 | } | |
c5aa993b | 1342 | while (ans2 != EOF && ans2 != '\n' && ans2 != '\r'); |
c906108c SS |
1343 | |
1344 | if (answer >= 'a') | |
1345 | answer -= 040; | |
1346 | if (answer == 'Y') | |
1347 | { | |
1348 | retval = 1; | |
1349 | break; | |
1350 | } | |
1351 | if (answer == 'N') | |
1352 | { | |
1353 | retval = 0; | |
1354 | break; | |
1355 | } | |
1356 | printf_filtered ("Please answer y or n.\n"); | |
1357 | } | |
1358 | ||
1359 | if (annotation_level > 1) | |
1360 | printf_filtered ("\n\032\032post-query\n"); | |
1361 | return retval; | |
1362 | } | |
c906108c | 1363 | \f |
c5aa993b | 1364 | |
c906108c SS |
1365 | /* Parse a C escape sequence. STRING_PTR points to a variable |
1366 | containing a pointer to the string to parse. That pointer | |
1367 | should point to the character after the \. That pointer | |
1368 | is updated past the characters we use. The value of the | |
1369 | escape sequence is returned. | |
1370 | ||
1371 | A negative value means the sequence \ newline was seen, | |
1372 | which is supposed to be equivalent to nothing at all. | |
1373 | ||
1374 | If \ is followed by a null character, we return a negative | |
1375 | value and leave the string pointer pointing at the null character. | |
1376 | ||
1377 | If \ is followed by 000, we return 0 and leave the string pointer | |
1378 | after the zeros. A value of 0 does not mean end of string. */ | |
1379 | ||
1380 | int | |
fba45db2 | 1381 | parse_escape (char **string_ptr) |
c906108c SS |
1382 | { |
1383 | register int c = *(*string_ptr)++; | |
1384 | switch (c) | |
1385 | { | |
1386 | case 'a': | |
1387 | return 007; /* Bell (alert) char */ | |
1388 | case 'b': | |
1389 | return '\b'; | |
1390 | case 'e': /* Escape character */ | |
1391 | return 033; | |
1392 | case 'f': | |
1393 | return '\f'; | |
1394 | case 'n': | |
1395 | return '\n'; | |
1396 | case 'r': | |
1397 | return '\r'; | |
1398 | case 't': | |
1399 | return '\t'; | |
1400 | case 'v': | |
1401 | return '\v'; | |
1402 | case '\n': | |
1403 | return -2; | |
1404 | case 0: | |
1405 | (*string_ptr)--; | |
1406 | return 0; | |
1407 | case '^': | |
1408 | c = *(*string_ptr)++; | |
1409 | if (c == '\\') | |
1410 | c = parse_escape (string_ptr); | |
1411 | if (c == '?') | |
1412 | return 0177; | |
1413 | return (c & 0200) | (c & 037); | |
c5aa993b | 1414 | |
c906108c SS |
1415 | case '0': |
1416 | case '1': | |
1417 | case '2': | |
1418 | case '3': | |
1419 | case '4': | |
1420 | case '5': | |
1421 | case '6': | |
1422 | case '7': | |
1423 | { | |
1424 | register int i = c - '0'; | |
1425 | register int count = 0; | |
1426 | while (++count < 3) | |
1427 | { | |
1428 | if ((c = *(*string_ptr)++) >= '0' && c <= '7') | |
1429 | { | |
1430 | i *= 8; | |
1431 | i += c - '0'; | |
1432 | } | |
1433 | else | |
1434 | { | |
1435 | (*string_ptr)--; | |
1436 | break; | |
1437 | } | |
1438 | } | |
1439 | return i; | |
1440 | } | |
1441 | default: | |
1442 | return c; | |
1443 | } | |
1444 | } | |
1445 | \f | |
1446 | /* Print the character C on STREAM as part of the contents of a literal | |
1447 | string whose delimiter is QUOTER. Note that this routine should only | |
1448 | be call for printing things which are independent of the language | |
1449 | of the program being debugged. */ | |
1450 | ||
43e526b9 | 1451 | static void |
74f832da KB |
1452 | printchar (int c, void (*do_fputs) (const char *, struct ui_file *), |
1453 | void (*do_fprintf) (struct ui_file *, const char *, ...), | |
1454 | struct ui_file *stream, int quoter) | |
c906108c SS |
1455 | { |
1456 | ||
1457 | c &= 0xFF; /* Avoid sign bit follies */ | |
1458 | ||
c5aa993b JM |
1459 | if (c < 0x20 || /* Low control chars */ |
1460 | (c >= 0x7F && c < 0xA0) || /* DEL, High controls */ | |
1461 | (sevenbit_strings && c >= 0x80)) | |
1462 | { /* high order bit set */ | |
1463 | switch (c) | |
1464 | { | |
1465 | case '\n': | |
43e526b9 | 1466 | do_fputs ("\\n", stream); |
c5aa993b JM |
1467 | break; |
1468 | case '\b': | |
43e526b9 | 1469 | do_fputs ("\\b", stream); |
c5aa993b JM |
1470 | break; |
1471 | case '\t': | |
43e526b9 | 1472 | do_fputs ("\\t", stream); |
c5aa993b JM |
1473 | break; |
1474 | case '\f': | |
43e526b9 | 1475 | do_fputs ("\\f", stream); |
c5aa993b JM |
1476 | break; |
1477 | case '\r': | |
43e526b9 | 1478 | do_fputs ("\\r", stream); |
c5aa993b JM |
1479 | break; |
1480 | case '\033': | |
43e526b9 | 1481 | do_fputs ("\\e", stream); |
c5aa993b JM |
1482 | break; |
1483 | case '\007': | |
43e526b9 | 1484 | do_fputs ("\\a", stream); |
c5aa993b JM |
1485 | break; |
1486 | default: | |
43e526b9 | 1487 | do_fprintf (stream, "\\%.3o", (unsigned int) c); |
c5aa993b JM |
1488 | break; |
1489 | } | |
1490 | } | |
1491 | else | |
1492 | { | |
1493 | if (c == '\\' || c == quoter) | |
43e526b9 JM |
1494 | do_fputs ("\\", stream); |
1495 | do_fprintf (stream, "%c", c); | |
c5aa993b | 1496 | } |
c906108c | 1497 | } |
43e526b9 JM |
1498 | |
1499 | /* Print the character C on STREAM as part of the contents of a | |
1500 | literal string whose delimiter is QUOTER. Note that these routines | |
1501 | should only be call for printing things which are independent of | |
1502 | the language of the program being debugged. */ | |
1503 | ||
1504 | void | |
fba45db2 | 1505 | fputstr_filtered (const char *str, int quoter, struct ui_file *stream) |
43e526b9 JM |
1506 | { |
1507 | while (*str) | |
1508 | printchar (*str++, fputs_filtered, fprintf_filtered, stream, quoter); | |
1509 | } | |
1510 | ||
1511 | void | |
fba45db2 | 1512 | fputstr_unfiltered (const char *str, int quoter, struct ui_file *stream) |
43e526b9 JM |
1513 | { |
1514 | while (*str) | |
1515 | printchar (*str++, fputs_unfiltered, fprintf_unfiltered, stream, quoter); | |
1516 | } | |
1517 | ||
1518 | void | |
fba45db2 | 1519 | fputstrn_unfiltered (const char *str, int n, int quoter, struct ui_file *stream) |
43e526b9 JM |
1520 | { |
1521 | int i; | |
1522 | for (i = 0; i < n; i++) | |
1523 | printchar (str[i], fputs_unfiltered, fprintf_unfiltered, stream, quoter); | |
1524 | } | |
1525 | ||
c906108c | 1526 | \f |
c5aa993b | 1527 | |
c906108c SS |
1528 | /* Number of lines per page or UINT_MAX if paging is disabled. */ |
1529 | static unsigned int lines_per_page; | |
cbfbd72a | 1530 | /* Number of chars per line or UINT_MAX if line folding is disabled. */ |
c906108c SS |
1531 | static unsigned int chars_per_line; |
1532 | /* Current count of lines printed on this page, chars on this line. */ | |
1533 | static unsigned int lines_printed, chars_printed; | |
1534 | ||
1535 | /* Buffer and start column of buffered text, for doing smarter word- | |
1536 | wrapping. When someone calls wrap_here(), we start buffering output | |
1537 | that comes through fputs_filtered(). If we see a newline, we just | |
1538 | spit it out and forget about the wrap_here(). If we see another | |
1539 | wrap_here(), we spit it out and remember the newer one. If we see | |
1540 | the end of the line, we spit out a newline, the indent, and then | |
1541 | the buffered output. */ | |
1542 | ||
1543 | /* Malloc'd buffer with chars_per_line+2 bytes. Contains characters which | |
1544 | are waiting to be output (they have already been counted in chars_printed). | |
1545 | When wrap_buffer[0] is null, the buffer is empty. */ | |
1546 | static char *wrap_buffer; | |
1547 | ||
1548 | /* Pointer in wrap_buffer to the next character to fill. */ | |
1549 | static char *wrap_pointer; | |
1550 | ||
1551 | /* String to indent by if the wrap occurs. Must not be NULL if wrap_column | |
1552 | is non-zero. */ | |
1553 | static char *wrap_indent; | |
1554 | ||
1555 | /* Column number on the screen where wrap_buffer begins, or 0 if wrapping | |
1556 | is not in effect. */ | |
1557 | static int wrap_column; | |
c906108c | 1558 | \f |
c5aa993b | 1559 | |
c906108c SS |
1560 | /* Inialize the lines and chars per page */ |
1561 | void | |
fba45db2 | 1562 | init_page_info (void) |
c906108c SS |
1563 | { |
1564 | #if defined(TUI) | |
5ecb1806 | 1565 | if (!tui_get_command_dimension (&chars_per_line, &lines_per_page)) |
c906108c SS |
1566 | #endif |
1567 | { | |
1568 | /* These defaults will be used if we are unable to get the correct | |
1569 | values from termcap. */ | |
1570 | #if defined(__GO32__) | |
c5aa993b JM |
1571 | lines_per_page = ScreenRows (); |
1572 | chars_per_line = ScreenCols (); | |
1573 | #else | |
c906108c SS |
1574 | lines_per_page = 24; |
1575 | chars_per_line = 80; | |
1576 | ||
d036b4d9 | 1577 | #if !defined (_WIN32) |
c906108c SS |
1578 | /* No termcap under MPW, although might be cool to do something |
1579 | by looking at worksheet or console window sizes. */ | |
1580 | /* Initialize the screen height and width from termcap. */ | |
1581 | { | |
c5aa993b | 1582 | char *termtype = getenv ("TERM"); |
c906108c | 1583 | |
c5aa993b JM |
1584 | /* Positive means success, nonpositive means failure. */ |
1585 | int status; | |
c906108c | 1586 | |
c5aa993b JM |
1587 | /* 2048 is large enough for all known terminals, according to the |
1588 | GNU termcap manual. */ | |
1589 | char term_buffer[2048]; | |
c906108c | 1590 | |
c5aa993b JM |
1591 | if (termtype) |
1592 | { | |
c906108c SS |
1593 | status = tgetent (term_buffer, termtype); |
1594 | if (status > 0) | |
1595 | { | |
c5aa993b | 1596 | int val; |
c906108c | 1597 | int running_in_emacs = getenv ("EMACS") != NULL; |
c5aa993b JM |
1598 | |
1599 | val = tgetnum ("li"); | |
1600 | if (val >= 0 && !running_in_emacs) | |
1601 | lines_per_page = val; | |
1602 | else | |
1603 | /* The number of lines per page is not mentioned | |
c906108c SS |
1604 | in the terminal description. This probably means |
1605 | that paging is not useful (e.g. emacs shell window), | |
1606 | so disable paging. */ | |
c5aa993b JM |
1607 | lines_per_page = UINT_MAX; |
1608 | ||
1609 | val = tgetnum ("co"); | |
1610 | if (val >= 0) | |
1611 | chars_per_line = val; | |
c906108c | 1612 | } |
c5aa993b | 1613 | } |
c906108c SS |
1614 | } |
1615 | #endif /* MPW */ | |
1616 | ||
1617 | #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER) | |
1618 | ||
1619 | /* If there is a better way to determine the window size, use it. */ | |
1620 | SIGWINCH_HANDLER (SIGWINCH); | |
1621 | #endif | |
1622 | #endif | |
1623 | /* If the output is not a terminal, don't paginate it. */ | |
d9fcf2fb | 1624 | if (!ui_file_isatty (gdb_stdout)) |
c5aa993b JM |
1625 | lines_per_page = UINT_MAX; |
1626 | } /* the command_line_version */ | |
1627 | set_width (); | |
c906108c SS |
1628 | } |
1629 | ||
1630 | static void | |
fba45db2 | 1631 | set_width (void) |
c906108c SS |
1632 | { |
1633 | if (chars_per_line == 0) | |
c5aa993b | 1634 | init_page_info (); |
c906108c SS |
1635 | |
1636 | if (!wrap_buffer) | |
1637 | { | |
1638 | wrap_buffer = (char *) xmalloc (chars_per_line + 2); | |
1639 | wrap_buffer[0] = '\0'; | |
1640 | } | |
1641 | else | |
1642 | wrap_buffer = (char *) xrealloc (wrap_buffer, chars_per_line + 2); | |
c5aa993b | 1643 | wrap_pointer = wrap_buffer; /* Start it at the beginning */ |
c906108c SS |
1644 | } |
1645 | ||
1646 | /* ARGSUSED */ | |
c5aa993b | 1647 | static void |
fba45db2 | 1648 | set_width_command (char *args, int from_tty, struct cmd_list_element *c) |
c906108c SS |
1649 | { |
1650 | set_width (); | |
1651 | } | |
1652 | ||
1653 | /* Wait, so the user can read what's on the screen. Prompt the user | |
1654 | to continue by pressing RETURN. */ | |
1655 | ||
1656 | static void | |
fba45db2 | 1657 | prompt_for_continue (void) |
c906108c SS |
1658 | { |
1659 | char *ignore; | |
1660 | char cont_prompt[120]; | |
1661 | ||
1662 | if (annotation_level > 1) | |
1663 | printf_unfiltered ("\n\032\032pre-prompt-for-continue\n"); | |
1664 | ||
1665 | strcpy (cont_prompt, | |
1666 | "---Type <return> to continue, or q <return> to quit---"); | |
1667 | if (annotation_level > 1) | |
1668 | strcat (cont_prompt, "\n\032\032prompt-for-continue\n"); | |
1669 | ||
1670 | /* We must do this *before* we call gdb_readline, else it will eventually | |
1671 | call us -- thinking that we're trying to print beyond the end of the | |
1672 | screen. */ | |
1673 | reinitialize_more_filter (); | |
1674 | ||
1675 | immediate_quit++; | |
1676 | /* On a real operating system, the user can quit with SIGINT. | |
1677 | But not on GO32. | |
1678 | ||
1679 | 'q' is provided on all systems so users don't have to change habits | |
1680 | from system to system, and because telling them what to do in | |
1681 | the prompt is more user-friendly than expecting them to think of | |
1682 | SIGINT. */ | |
1683 | /* Call readline, not gdb_readline, because GO32 readline handles control-C | |
1684 | whereas control-C to gdb_readline will cause the user to get dumped | |
1685 | out to DOS. */ | |
b4f5539f | 1686 | ignore = gdb_readline_wrapper (cont_prompt); |
c906108c SS |
1687 | |
1688 | if (annotation_level > 1) | |
1689 | printf_unfiltered ("\n\032\032post-prompt-for-continue\n"); | |
1690 | ||
1691 | if (ignore) | |
1692 | { | |
1693 | char *p = ignore; | |
1694 | while (*p == ' ' || *p == '\t') | |
1695 | ++p; | |
1696 | if (p[0] == 'q') | |
0f71a2f6 | 1697 | { |
6426a772 | 1698 | if (!event_loop_p) |
0f71a2f6 JM |
1699 | request_quit (SIGINT); |
1700 | else | |
c5aa993b | 1701 | async_request_quit (0); |
0f71a2f6 | 1702 | } |
b8c9b27d | 1703 | xfree (ignore); |
c906108c SS |
1704 | } |
1705 | immediate_quit--; | |
1706 | ||
1707 | /* Now we have to do this again, so that GDB will know that it doesn't | |
1708 | need to save the ---Type <return>--- line at the top of the screen. */ | |
1709 | reinitialize_more_filter (); | |
1710 | ||
1711 | dont_repeat (); /* Forget prev cmd -- CR won't repeat it. */ | |
1712 | } | |
1713 | ||
1714 | /* Reinitialize filter; ie. tell it to reset to original values. */ | |
1715 | ||
1716 | void | |
fba45db2 | 1717 | reinitialize_more_filter (void) |
c906108c SS |
1718 | { |
1719 | lines_printed = 0; | |
1720 | chars_printed = 0; | |
1721 | } | |
1722 | ||
1723 | /* Indicate that if the next sequence of characters overflows the line, | |
1724 | a newline should be inserted here rather than when it hits the end. | |
1725 | If INDENT is non-null, it is a string to be printed to indent the | |
1726 | wrapped part on the next line. INDENT must remain accessible until | |
1727 | the next call to wrap_here() or until a newline is printed through | |
1728 | fputs_filtered(). | |
1729 | ||
1730 | If the line is already overfull, we immediately print a newline and | |
1731 | the indentation, and disable further wrapping. | |
1732 | ||
1733 | If we don't know the width of lines, but we know the page height, | |
1734 | we must not wrap words, but should still keep track of newlines | |
1735 | that were explicitly printed. | |
1736 | ||
1737 | INDENT should not contain tabs, as that will mess up the char count | |
1738 | on the next line. FIXME. | |
1739 | ||
1740 | This routine is guaranteed to force out any output which has been | |
1741 | squirreled away in the wrap_buffer, so wrap_here ((char *)0) can be | |
1742 | used to force out output from the wrap_buffer. */ | |
1743 | ||
1744 | void | |
fba45db2 | 1745 | wrap_here (char *indent) |
c906108c SS |
1746 | { |
1747 | /* This should have been allocated, but be paranoid anyway. */ | |
1748 | if (!wrap_buffer) | |
e1e9e218 | 1749 | internal_error (__FILE__, __LINE__, "failed internal consistency check"); |
c906108c SS |
1750 | |
1751 | if (wrap_buffer[0]) | |
1752 | { | |
1753 | *wrap_pointer = '\0'; | |
1754 | fputs_unfiltered (wrap_buffer, gdb_stdout); | |
1755 | } | |
1756 | wrap_pointer = wrap_buffer; | |
1757 | wrap_buffer[0] = '\0'; | |
c5aa993b | 1758 | if (chars_per_line == UINT_MAX) /* No line overflow checking */ |
c906108c SS |
1759 | { |
1760 | wrap_column = 0; | |
1761 | } | |
1762 | else if (chars_printed >= chars_per_line) | |
1763 | { | |
1764 | puts_filtered ("\n"); | |
1765 | if (indent != NULL) | |
1766 | puts_filtered (indent); | |
1767 | wrap_column = 0; | |
1768 | } | |
1769 | else | |
1770 | { | |
1771 | wrap_column = chars_printed; | |
1772 | if (indent == NULL) | |
1773 | wrap_indent = ""; | |
1774 | else | |
1775 | wrap_indent = indent; | |
1776 | } | |
1777 | } | |
1778 | ||
3b4efeaa MS |
1779 | /* Print input string to gdb_stdout, filtered, with wrap, |
1780 | arranging strings in columns of n chars. String can be | |
1781 | right or left justified in the column. Never prints | |
1782 | trailing spaces. String should never be longer than | |
1783 | width. FIXME: this could be useful for the EXAMINE | |
1784 | command, which currently doesn't tabulate very well. */ | |
1785 | ||
1786 | void | |
1787 | puts_filtered_tabular (char *string, int width, int right) | |
1788 | { | |
1789 | int spaces = 0; | |
1790 | int stringlen; | |
1791 | char *spacebuf; | |
1792 | ||
1793 | gdb_assert (chars_per_line > 0); | |
1794 | if (chars_per_line == UINT_MAX) | |
1795 | { | |
1796 | fputs_filtered (string, gdb_stdout); | |
1797 | fputs_filtered ("\n", gdb_stdout); | |
1798 | return; | |
1799 | } | |
1800 | ||
1801 | if (((chars_printed - 1) / width + 2) * width >= chars_per_line) | |
1802 | fputs_filtered ("\n", gdb_stdout); | |
1803 | ||
1804 | if (width >= chars_per_line) | |
1805 | width = chars_per_line - 1; | |
1806 | ||
1807 | stringlen = strlen (string); | |
1808 | ||
1809 | if (chars_printed > 0) | |
1810 | spaces = width - (chars_printed - 1) % width - 1; | |
1811 | if (right) | |
1812 | spaces += width - stringlen; | |
1813 | ||
1814 | spacebuf = alloca (spaces + 1); | |
1815 | spacebuf[spaces] = '\0'; | |
1816 | while (spaces--) | |
1817 | spacebuf[spaces] = ' '; | |
1818 | ||
1819 | fputs_filtered (spacebuf, gdb_stdout); | |
1820 | fputs_filtered (string, gdb_stdout); | |
1821 | } | |
1822 | ||
1823 | ||
c906108c SS |
1824 | /* Ensure that whatever gets printed next, using the filtered output |
1825 | commands, starts at the beginning of the line. I.E. if there is | |
1826 | any pending output for the current line, flush it and start a new | |
1827 | line. Otherwise do nothing. */ | |
1828 | ||
1829 | void | |
fba45db2 | 1830 | begin_line (void) |
c906108c SS |
1831 | { |
1832 | if (chars_printed > 0) | |
1833 | { | |
1834 | puts_filtered ("\n"); | |
1835 | } | |
1836 | } | |
1837 | ||
ac9a91a7 | 1838 | |
c906108c SS |
1839 | /* Like fputs but if FILTER is true, pause after every screenful. |
1840 | ||
1841 | Regardless of FILTER can wrap at points other than the final | |
1842 | character of a line. | |
1843 | ||
1844 | Unlike fputs, fputs_maybe_filtered does not return a value. | |
1845 | It is OK for LINEBUFFER to be NULL, in which case just don't print | |
1846 | anything. | |
1847 | ||
1848 | Note that a longjmp to top level may occur in this routine (only if | |
1849 | FILTER is true) (since prompt_for_continue may do so) so this | |
1850 | routine should not be called when cleanups are not in place. */ | |
1851 | ||
1852 | static void | |
fba45db2 KB |
1853 | fputs_maybe_filtered (const char *linebuffer, struct ui_file *stream, |
1854 | int filter) | |
c906108c SS |
1855 | { |
1856 | const char *lineptr; | |
1857 | ||
1858 | if (linebuffer == 0) | |
1859 | return; | |
1860 | ||
1861 | /* Don't do any filtering if it is disabled. */ | |
7a292a7a | 1862 | if ((stream != gdb_stdout) || !pagination_enabled |
c5aa993b | 1863 | || (lines_per_page == UINT_MAX && chars_per_line == UINT_MAX)) |
c906108c SS |
1864 | { |
1865 | fputs_unfiltered (linebuffer, stream); | |
1866 | return; | |
1867 | } | |
1868 | ||
1869 | /* Go through and output each character. Show line extension | |
1870 | when this is necessary; prompt user for new page when this is | |
1871 | necessary. */ | |
c5aa993b | 1872 | |
c906108c SS |
1873 | lineptr = linebuffer; |
1874 | while (*lineptr) | |
1875 | { | |
1876 | /* Possible new page. */ | |
1877 | if (filter && | |
1878 | (lines_printed >= lines_per_page - 1)) | |
1879 | prompt_for_continue (); | |
1880 | ||
1881 | while (*lineptr && *lineptr != '\n') | |
1882 | { | |
1883 | /* Print a single line. */ | |
1884 | if (*lineptr == '\t') | |
1885 | { | |
1886 | if (wrap_column) | |
1887 | *wrap_pointer++ = '\t'; | |
1888 | else | |
1889 | fputc_unfiltered ('\t', stream); | |
1890 | /* Shifting right by 3 produces the number of tab stops | |
1891 | we have already passed, and then adding one and | |
c5aa993b | 1892 | shifting left 3 advances to the next tab stop. */ |
c906108c SS |
1893 | chars_printed = ((chars_printed >> 3) + 1) << 3; |
1894 | lineptr++; | |
1895 | } | |
1896 | else | |
1897 | { | |
1898 | if (wrap_column) | |
1899 | *wrap_pointer++ = *lineptr; | |
1900 | else | |
c5aa993b | 1901 | fputc_unfiltered (*lineptr, stream); |
c906108c SS |
1902 | chars_printed++; |
1903 | lineptr++; | |
1904 | } | |
c5aa993b | 1905 | |
c906108c SS |
1906 | if (chars_printed >= chars_per_line) |
1907 | { | |
1908 | unsigned int save_chars = chars_printed; | |
1909 | ||
1910 | chars_printed = 0; | |
1911 | lines_printed++; | |
1912 | /* If we aren't actually wrapping, don't output newline -- | |
c5aa993b JM |
1913 | if chars_per_line is right, we probably just overflowed |
1914 | anyway; if it's wrong, let us keep going. */ | |
c906108c SS |
1915 | if (wrap_column) |
1916 | fputc_unfiltered ('\n', stream); | |
1917 | ||
1918 | /* Possible new page. */ | |
1919 | if (lines_printed >= lines_per_page - 1) | |
1920 | prompt_for_continue (); | |
1921 | ||
1922 | /* Now output indentation and wrapped string */ | |
1923 | if (wrap_column) | |
1924 | { | |
1925 | fputs_unfiltered (wrap_indent, stream); | |
c5aa993b JM |
1926 | *wrap_pointer = '\0'; /* Null-terminate saved stuff */ |
1927 | fputs_unfiltered (wrap_buffer, stream); /* and eject it */ | |
c906108c SS |
1928 | /* FIXME, this strlen is what prevents wrap_indent from |
1929 | containing tabs. However, if we recurse to print it | |
1930 | and count its chars, we risk trouble if wrap_indent is | |
1931 | longer than (the user settable) chars_per_line. | |
1932 | Note also that this can set chars_printed > chars_per_line | |
1933 | if we are printing a long string. */ | |
1934 | chars_printed = strlen (wrap_indent) | |
c5aa993b | 1935 | + (save_chars - wrap_column); |
c906108c SS |
1936 | wrap_pointer = wrap_buffer; /* Reset buffer */ |
1937 | wrap_buffer[0] = '\0'; | |
c5aa993b JM |
1938 | wrap_column = 0; /* And disable fancy wrap */ |
1939 | } | |
c906108c SS |
1940 | } |
1941 | } | |
1942 | ||
1943 | if (*lineptr == '\n') | |
1944 | { | |
1945 | chars_printed = 0; | |
c5aa993b | 1946 | wrap_here ((char *) 0); /* Spit out chars, cancel further wraps */ |
c906108c SS |
1947 | lines_printed++; |
1948 | fputc_unfiltered ('\n', stream); | |
1949 | lineptr++; | |
1950 | } | |
1951 | } | |
1952 | } | |
1953 | ||
1954 | void | |
fba45db2 | 1955 | fputs_filtered (const char *linebuffer, struct ui_file *stream) |
c906108c SS |
1956 | { |
1957 | fputs_maybe_filtered (linebuffer, stream, 1); | |
1958 | } | |
1959 | ||
1960 | int | |
fba45db2 | 1961 | putchar_unfiltered (int c) |
c906108c | 1962 | { |
11cf8741 | 1963 | char buf = c; |
d9fcf2fb | 1964 | ui_file_write (gdb_stdout, &buf, 1); |
c906108c SS |
1965 | return c; |
1966 | } | |
1967 | ||
d1f4cff8 AC |
1968 | /* Write character C to gdb_stdout using GDB's paging mechanism and return C. |
1969 | May return nonlocally. */ | |
1970 | ||
1971 | int | |
1972 | putchar_filtered (int c) | |
1973 | { | |
1974 | return fputc_filtered (c, gdb_stdout); | |
1975 | } | |
1976 | ||
c906108c | 1977 | int |
fba45db2 | 1978 | fputc_unfiltered (int c, struct ui_file *stream) |
c906108c | 1979 | { |
11cf8741 | 1980 | char buf = c; |
d9fcf2fb | 1981 | ui_file_write (stream, &buf, 1); |
c906108c SS |
1982 | return c; |
1983 | } | |
1984 | ||
1985 | int | |
fba45db2 | 1986 | fputc_filtered (int c, struct ui_file *stream) |
c906108c SS |
1987 | { |
1988 | char buf[2]; | |
1989 | ||
1990 | buf[0] = c; | |
1991 | buf[1] = 0; | |
1992 | fputs_filtered (buf, stream); | |
1993 | return c; | |
1994 | } | |
1995 | ||
1996 | /* puts_debug is like fputs_unfiltered, except it prints special | |
1997 | characters in printable fashion. */ | |
1998 | ||
1999 | void | |
fba45db2 | 2000 | puts_debug (char *prefix, char *string, char *suffix) |
c906108c SS |
2001 | { |
2002 | int ch; | |
2003 | ||
2004 | /* Print prefix and suffix after each line. */ | |
2005 | static int new_line = 1; | |
2006 | static int return_p = 0; | |
2007 | static char *prev_prefix = ""; | |
2008 | static char *prev_suffix = ""; | |
2009 | ||
2010 | if (*string == '\n') | |
2011 | return_p = 0; | |
2012 | ||
2013 | /* If the prefix is changing, print the previous suffix, a new line, | |
2014 | and the new prefix. */ | |
c5aa993b | 2015 | if ((return_p || (strcmp (prev_prefix, prefix) != 0)) && !new_line) |
c906108c | 2016 | { |
9846de1b JM |
2017 | fputs_unfiltered (prev_suffix, gdb_stdlog); |
2018 | fputs_unfiltered ("\n", gdb_stdlog); | |
2019 | fputs_unfiltered (prefix, gdb_stdlog); | |
c906108c SS |
2020 | } |
2021 | ||
2022 | /* Print prefix if we printed a newline during the previous call. */ | |
2023 | if (new_line) | |
2024 | { | |
2025 | new_line = 0; | |
9846de1b | 2026 | fputs_unfiltered (prefix, gdb_stdlog); |
c906108c SS |
2027 | } |
2028 | ||
2029 | prev_prefix = prefix; | |
2030 | prev_suffix = suffix; | |
2031 | ||
2032 | /* Output characters in a printable format. */ | |
2033 | while ((ch = *string++) != '\0') | |
2034 | { | |
2035 | switch (ch) | |
c5aa993b | 2036 | { |
c906108c SS |
2037 | default: |
2038 | if (isprint (ch)) | |
9846de1b | 2039 | fputc_unfiltered (ch, gdb_stdlog); |
c906108c SS |
2040 | |
2041 | else | |
9846de1b | 2042 | fprintf_unfiltered (gdb_stdlog, "\\x%02x", ch & 0xff); |
c906108c SS |
2043 | break; |
2044 | ||
c5aa993b JM |
2045 | case '\\': |
2046 | fputs_unfiltered ("\\\\", gdb_stdlog); | |
2047 | break; | |
2048 | case '\b': | |
2049 | fputs_unfiltered ("\\b", gdb_stdlog); | |
2050 | break; | |
2051 | case '\f': | |
2052 | fputs_unfiltered ("\\f", gdb_stdlog); | |
2053 | break; | |
2054 | case '\n': | |
2055 | new_line = 1; | |
2056 | fputs_unfiltered ("\\n", gdb_stdlog); | |
2057 | break; | |
2058 | case '\r': | |
2059 | fputs_unfiltered ("\\r", gdb_stdlog); | |
2060 | break; | |
2061 | case '\t': | |
2062 | fputs_unfiltered ("\\t", gdb_stdlog); | |
2063 | break; | |
2064 | case '\v': | |
2065 | fputs_unfiltered ("\\v", gdb_stdlog); | |
2066 | break; | |
2067 | } | |
c906108c SS |
2068 | |
2069 | return_p = ch == '\r'; | |
2070 | } | |
2071 | ||
2072 | /* Print suffix if we printed a newline. */ | |
2073 | if (new_line) | |
2074 | { | |
9846de1b JM |
2075 | fputs_unfiltered (suffix, gdb_stdlog); |
2076 | fputs_unfiltered ("\n", gdb_stdlog); | |
c906108c SS |
2077 | } |
2078 | } | |
2079 | ||
2080 | ||
2081 | /* Print a variable number of ARGS using format FORMAT. If this | |
2082 | information is going to put the amount written (since the last call | |
2083 | to REINITIALIZE_MORE_FILTER or the last page break) over the page size, | |
2084 | call prompt_for_continue to get the users permision to continue. | |
2085 | ||
2086 | Unlike fprintf, this function does not return a value. | |
2087 | ||
2088 | We implement three variants, vfprintf (takes a vararg list and stream), | |
2089 | fprintf (takes a stream to write on), and printf (the usual). | |
2090 | ||
2091 | Note also that a longjmp to top level may occur in this routine | |
2092 | (since prompt_for_continue may do so) so this routine should not be | |
2093 | called when cleanups are not in place. */ | |
2094 | ||
2095 | static void | |
fba45db2 KB |
2096 | vfprintf_maybe_filtered (struct ui_file *stream, const char *format, |
2097 | va_list args, int filter) | |
c906108c SS |
2098 | { |
2099 | char *linebuffer; | |
2100 | struct cleanup *old_cleanups; | |
2101 | ||
76995688 | 2102 | xvasprintf (&linebuffer, format, args); |
b8c9b27d | 2103 | old_cleanups = make_cleanup (xfree, linebuffer); |
c906108c SS |
2104 | fputs_maybe_filtered (linebuffer, stream, filter); |
2105 | do_cleanups (old_cleanups); | |
2106 | } | |
2107 | ||
2108 | ||
2109 | void | |
fba45db2 | 2110 | vfprintf_filtered (struct ui_file *stream, const char *format, va_list args) |
c906108c SS |
2111 | { |
2112 | vfprintf_maybe_filtered (stream, format, args, 1); | |
2113 | } | |
2114 | ||
2115 | void | |
fba45db2 | 2116 | vfprintf_unfiltered (struct ui_file *stream, const char *format, va_list args) |
c906108c SS |
2117 | { |
2118 | char *linebuffer; | |
2119 | struct cleanup *old_cleanups; | |
2120 | ||
76995688 | 2121 | xvasprintf (&linebuffer, format, args); |
b8c9b27d | 2122 | old_cleanups = make_cleanup (xfree, linebuffer); |
c906108c SS |
2123 | fputs_unfiltered (linebuffer, stream); |
2124 | do_cleanups (old_cleanups); | |
2125 | } | |
2126 | ||
2127 | void | |
fba45db2 | 2128 | vprintf_filtered (const char *format, va_list args) |
c906108c SS |
2129 | { |
2130 | vfprintf_maybe_filtered (gdb_stdout, format, args, 1); | |
2131 | } | |
2132 | ||
2133 | void | |
fba45db2 | 2134 | vprintf_unfiltered (const char *format, va_list args) |
c906108c SS |
2135 | { |
2136 | vfprintf_unfiltered (gdb_stdout, format, args); | |
2137 | } | |
2138 | ||
c906108c | 2139 | void |
d9fcf2fb | 2140 | fprintf_filtered (struct ui_file * stream, const char *format,...) |
c906108c SS |
2141 | { |
2142 | va_list args; | |
c906108c | 2143 | va_start (args, format); |
c906108c SS |
2144 | vfprintf_filtered (stream, format, args); |
2145 | va_end (args); | |
2146 | } | |
2147 | ||
c906108c | 2148 | void |
d9fcf2fb | 2149 | fprintf_unfiltered (struct ui_file * stream, const char *format,...) |
c906108c SS |
2150 | { |
2151 | va_list args; | |
c906108c | 2152 | va_start (args, format); |
c906108c SS |
2153 | vfprintf_unfiltered (stream, format, args); |
2154 | va_end (args); | |
2155 | } | |
2156 | ||
2157 | /* Like fprintf_filtered, but prints its result indented. | |
2158 | Called as fprintfi_filtered (spaces, stream, format, ...); */ | |
2159 | ||
c906108c | 2160 | void |
d9fcf2fb | 2161 | fprintfi_filtered (int spaces, struct ui_file * stream, const char *format,...) |
c906108c SS |
2162 | { |
2163 | va_list args; | |
c906108c | 2164 | va_start (args, format); |
c906108c SS |
2165 | print_spaces_filtered (spaces, stream); |
2166 | ||
2167 | vfprintf_filtered (stream, format, args); | |
2168 | va_end (args); | |
2169 | } | |
2170 | ||
2171 | ||
c906108c | 2172 | void |
c5aa993b | 2173 | printf_filtered (const char *format,...) |
c906108c SS |
2174 | { |
2175 | va_list args; | |
c906108c | 2176 | va_start (args, format); |
c906108c SS |
2177 | vfprintf_filtered (gdb_stdout, format, args); |
2178 | va_end (args); | |
2179 | } | |
2180 | ||
2181 | ||
c906108c | 2182 | void |
c5aa993b | 2183 | printf_unfiltered (const char *format,...) |
c906108c SS |
2184 | { |
2185 | va_list args; | |
c906108c | 2186 | va_start (args, format); |
c906108c SS |
2187 | vfprintf_unfiltered (gdb_stdout, format, args); |
2188 | va_end (args); | |
2189 | } | |
2190 | ||
2191 | /* Like printf_filtered, but prints it's result indented. | |
2192 | Called as printfi_filtered (spaces, format, ...); */ | |
2193 | ||
c906108c | 2194 | void |
c5aa993b | 2195 | printfi_filtered (int spaces, const char *format,...) |
c906108c SS |
2196 | { |
2197 | va_list args; | |
c906108c | 2198 | va_start (args, format); |
c906108c SS |
2199 | print_spaces_filtered (spaces, gdb_stdout); |
2200 | vfprintf_filtered (gdb_stdout, format, args); | |
2201 | va_end (args); | |
2202 | } | |
2203 | ||
2204 | /* Easy -- but watch out! | |
2205 | ||
2206 | This routine is *not* a replacement for puts()! puts() appends a newline. | |
2207 | This one doesn't, and had better not! */ | |
2208 | ||
2209 | void | |
fba45db2 | 2210 | puts_filtered (const char *string) |
c906108c SS |
2211 | { |
2212 | fputs_filtered (string, gdb_stdout); | |
2213 | } | |
2214 | ||
2215 | void | |
fba45db2 | 2216 | puts_unfiltered (const char *string) |
c906108c SS |
2217 | { |
2218 | fputs_unfiltered (string, gdb_stdout); | |
2219 | } | |
2220 | ||
2221 | /* Return a pointer to N spaces and a null. The pointer is good | |
2222 | until the next call to here. */ | |
2223 | char * | |
fba45db2 | 2224 | n_spaces (int n) |
c906108c | 2225 | { |
392a587b JM |
2226 | char *t; |
2227 | static char *spaces = 0; | |
2228 | static int max_spaces = -1; | |
c906108c SS |
2229 | |
2230 | if (n > max_spaces) | |
2231 | { | |
2232 | if (spaces) | |
b8c9b27d | 2233 | xfree (spaces); |
c5aa993b JM |
2234 | spaces = (char *) xmalloc (n + 1); |
2235 | for (t = spaces + n; t != spaces;) | |
c906108c SS |
2236 | *--t = ' '; |
2237 | spaces[n] = '\0'; | |
2238 | max_spaces = n; | |
2239 | } | |
2240 | ||
2241 | return spaces + max_spaces - n; | |
2242 | } | |
2243 | ||
2244 | /* Print N spaces. */ | |
2245 | void | |
fba45db2 | 2246 | print_spaces_filtered (int n, struct ui_file *stream) |
c906108c SS |
2247 | { |
2248 | fputs_filtered (n_spaces (n), stream); | |
2249 | } | |
2250 | \f | |
3b4efeaa | 2251 | /* C++/ObjC demangler stuff. */ |
c906108c | 2252 | |
3b4efeaa MS |
2253 | /* fprintf_symbol_filtered attempts to demangle NAME, a symbol in |
2254 | language LANG, using demangling args ARG_MODE, and print it | |
2255 | filtered to STREAM. If the name is not mangled, or the language | |
2256 | for the name is unknown, or demangling is off, the name is printed | |
2257 | in its "raw" form. */ | |
c906108c SS |
2258 | |
2259 | void | |
3b4efeaa MS |
2260 | fprintf_symbol_filtered (struct ui_file *stream, |
2261 | char *name, | |
2262 | enum language lang, | |
fba45db2 | 2263 | int arg_mode) |
c906108c SS |
2264 | { |
2265 | char *demangled; | |
2266 | ||
2267 | if (name != NULL) | |
2268 | { | |
2269 | /* If user wants to see raw output, no problem. */ | |
2270 | if (!demangle) | |
2271 | { | |
2272 | fputs_filtered (name, stream); | |
2273 | } | |
2274 | else | |
2275 | { | |
2276 | switch (lang) | |
2277 | { | |
2278 | case language_cplus: | |
2279 | demangled = cplus_demangle (name, arg_mode); | |
2280 | break; | |
2281 | case language_java: | |
2282 | demangled = cplus_demangle (name, arg_mode | DMGL_JAVA); | |
2283 | break; | |
3b4efeaa MS |
2284 | #if 0 /* Enable once objective-c support is turned on. */ |
2285 | case language_objc: | |
2286 | demangled = objc_demangle (name); | |
2287 | break; | |
2288 | #endif | |
db034ac5 AC |
2289 | #if 0 |
2290 | /* OBSOLETE case language_chill: */ | |
2291 | /* OBSOLETE demangled = chill_demangle (name); */ | |
2292 | /* OBSOLETE break; */ | |
2293 | #endif | |
c906108c SS |
2294 | default: |
2295 | demangled = NULL; | |
2296 | break; | |
2297 | } | |
2298 | fputs_filtered (demangled ? demangled : name, stream); | |
2299 | if (demangled != NULL) | |
2300 | { | |
b8c9b27d | 2301 | xfree (demangled); |
c906108c SS |
2302 | } |
2303 | } | |
2304 | } | |
2305 | } | |
2306 | ||
2307 | /* Do a strcmp() type operation on STRING1 and STRING2, ignoring any | |
2308 | differences in whitespace. Returns 0 if they match, non-zero if they | |
2309 | don't (slightly different than strcmp()'s range of return values). | |
c5aa993b | 2310 | |
c906108c SS |
2311 | As an extra hack, string1=="FOO(ARGS)" matches string2=="FOO". |
2312 | This "feature" is useful when searching for matching C++ function names | |
2313 | (such as if the user types 'break FOO', where FOO is a mangled C++ | |
2314 | function). */ | |
2315 | ||
2316 | int | |
fba45db2 | 2317 | strcmp_iw (const char *string1, const char *string2) |
c906108c SS |
2318 | { |
2319 | while ((*string1 != '\0') && (*string2 != '\0')) | |
2320 | { | |
2321 | while (isspace (*string1)) | |
2322 | { | |
2323 | string1++; | |
2324 | } | |
2325 | while (isspace (*string2)) | |
2326 | { | |
2327 | string2++; | |
2328 | } | |
2329 | if (*string1 != *string2) | |
2330 | { | |
2331 | break; | |
2332 | } | |
2333 | if (*string1 != '\0') | |
2334 | { | |
2335 | string1++; | |
2336 | string2++; | |
2337 | } | |
2338 | } | |
2339 | return (*string1 != '\0' && *string1 != '(') || (*string2 != '\0'); | |
2340 | } | |
c906108c | 2341 | \f |
c5aa993b | 2342 | |
c906108c | 2343 | /* |
c5aa993b JM |
2344 | ** subset_compare() |
2345 | ** Answer whether string_to_compare is a full or partial match to | |
2346 | ** template_string. The partial match must be in sequence starting | |
2347 | ** at index 0. | |
2348 | */ | |
c906108c | 2349 | int |
fba45db2 | 2350 | subset_compare (char *string_to_compare, char *template_string) |
7a292a7a SS |
2351 | { |
2352 | int match; | |
c5aa993b JM |
2353 | if (template_string != (char *) NULL && string_to_compare != (char *) NULL && |
2354 | strlen (string_to_compare) <= strlen (template_string)) | |
2355 | match = (strncmp (template_string, | |
2356 | string_to_compare, | |
2357 | strlen (string_to_compare)) == 0); | |
7a292a7a SS |
2358 | else |
2359 | match = 0; | |
2360 | return match; | |
2361 | } | |
c906108c SS |
2362 | |
2363 | ||
a14ed312 | 2364 | static void pagination_on_command (char *arg, int from_tty); |
7a292a7a | 2365 | static void |
fba45db2 | 2366 | pagination_on_command (char *arg, int from_tty) |
c906108c SS |
2367 | { |
2368 | pagination_enabled = 1; | |
2369 | } | |
2370 | ||
a14ed312 | 2371 | static void pagination_on_command (char *arg, int from_tty); |
7a292a7a | 2372 | static void |
fba45db2 | 2373 | pagination_off_command (char *arg, int from_tty) |
c906108c SS |
2374 | { |
2375 | pagination_enabled = 0; | |
2376 | } | |
c906108c | 2377 | \f |
c5aa993b | 2378 | |
c906108c | 2379 | void |
fba45db2 | 2380 | initialize_utils (void) |
c906108c SS |
2381 | { |
2382 | struct cmd_list_element *c; | |
2383 | ||
c5aa993b JM |
2384 | c = add_set_cmd ("width", class_support, var_uinteger, |
2385 | (char *) &chars_per_line, | |
2386 | "Set number of characters gdb thinks are in a line.", | |
2387 | &setlist); | |
c906108c | 2388 | add_show_from_set (c, &showlist); |
9f60d481 | 2389 | set_cmd_sfunc (c, set_width_command); |
c906108c SS |
2390 | |
2391 | add_show_from_set | |
2392 | (add_set_cmd ("height", class_support, | |
c5aa993b | 2393 | var_uinteger, (char *) &lines_per_page, |
c906108c SS |
2394 | "Set number of lines gdb thinks are in a page.", &setlist), |
2395 | &showlist); | |
c5aa993b | 2396 | |
c906108c SS |
2397 | init_page_info (); |
2398 | ||
2399 | /* If the output is not a terminal, don't paginate it. */ | |
d9fcf2fb | 2400 | if (!ui_file_isatty (gdb_stdout)) |
c906108c SS |
2401 | lines_per_page = UINT_MAX; |
2402 | ||
c5aa993b | 2403 | set_width_command ((char *) NULL, 0, c); |
c906108c SS |
2404 | |
2405 | add_show_from_set | |
c5aa993b JM |
2406 | (add_set_cmd ("demangle", class_support, var_boolean, |
2407 | (char *) &demangle, | |
3b4efeaa | 2408 | "Set demangling of encoded C++/ObjC names when displaying symbols.", |
c906108c SS |
2409 | &setprintlist), |
2410 | &showprintlist); | |
2411 | ||
2412 | add_show_from_set | |
2413 | (add_set_cmd ("pagination", class_support, | |
c5aa993b | 2414 | var_boolean, (char *) &pagination_enabled, |
c906108c SS |
2415 | "Set state of pagination.", &setlist), |
2416 | &showlist); | |
4261bedc | 2417 | |
c906108c SS |
2418 | if (xdb_commands) |
2419 | { | |
c5aa993b JM |
2420 | add_com ("am", class_support, pagination_on_command, |
2421 | "Enable pagination"); | |
2422 | add_com ("sm", class_support, pagination_off_command, | |
2423 | "Disable pagination"); | |
c906108c SS |
2424 | } |
2425 | ||
2426 | add_show_from_set | |
c5aa993b JM |
2427 | (add_set_cmd ("sevenbit-strings", class_support, var_boolean, |
2428 | (char *) &sevenbit_strings, | |
2429 | "Set printing of 8-bit characters in strings as \\nnn.", | |
c906108c SS |
2430 | &setprintlist), |
2431 | &showprintlist); | |
2432 | ||
2433 | add_show_from_set | |
c5aa993b JM |
2434 | (add_set_cmd ("asm-demangle", class_support, var_boolean, |
2435 | (char *) &asm_demangle, | |
3b4efeaa | 2436 | "Set demangling of C++/ObjC names in disassembly listings.", |
c906108c SS |
2437 | &setprintlist), |
2438 | &showprintlist); | |
2439 | } | |
2440 | ||
2441 | /* Machine specific function to handle SIGWINCH signal. */ | |
2442 | ||
2443 | #ifdef SIGWINCH_HANDLER_BODY | |
c5aa993b | 2444 | SIGWINCH_HANDLER_BODY |
c906108c | 2445 | #endif |
39424bef | 2446 | |
5683e87a AC |
2447 | /* print routines to handle variable size regs, etc. */ |
2448 | ||
c906108c SS |
2449 | /* temporary storage using circular buffer */ |
2450 | #define NUMCELLS 16 | |
2451 | #define CELLSIZE 32 | |
c5aa993b | 2452 | static char * |
fba45db2 | 2453 | get_cell (void) |
c906108c SS |
2454 | { |
2455 | static char buf[NUMCELLS][CELLSIZE]; | |
c5aa993b JM |
2456 | static int cell = 0; |
2457 | if (++cell >= NUMCELLS) | |
2458 | cell = 0; | |
c906108c SS |
2459 | return buf[cell]; |
2460 | } | |
2461 | ||
d4f3574e SS |
2462 | int |
2463 | strlen_paddr (void) | |
2464 | { | |
79496e2f | 2465 | return (TARGET_ADDR_BIT / 8 * 2); |
d4f3574e SS |
2466 | } |
2467 | ||
c5aa993b | 2468 | char * |
104c1213 | 2469 | paddr (CORE_ADDR addr) |
c906108c | 2470 | { |
79496e2f | 2471 | return phex (addr, TARGET_ADDR_BIT / 8); |
c906108c SS |
2472 | } |
2473 | ||
c5aa993b | 2474 | char * |
104c1213 | 2475 | paddr_nz (CORE_ADDR addr) |
c906108c | 2476 | { |
79496e2f | 2477 | return phex_nz (addr, TARGET_ADDR_BIT / 8); |
c906108c SS |
2478 | } |
2479 | ||
104c1213 JM |
2480 | static void |
2481 | decimal2str (char *paddr_str, char *sign, ULONGEST addr) | |
2482 | { | |
2483 | /* steal code from valprint.c:print_decimal(). Should this worry | |
2484 | about the real size of addr as the above does? */ | |
2485 | unsigned long temp[3]; | |
2486 | int i = 0; | |
2487 | do | |
2488 | { | |
2489 | temp[i] = addr % (1000 * 1000 * 1000); | |
2490 | addr /= (1000 * 1000 * 1000); | |
2491 | i++; | |
2492 | } | |
2493 | while (addr != 0 && i < (sizeof (temp) / sizeof (temp[0]))); | |
2494 | switch (i) | |
2495 | { | |
2496 | case 1: | |
2497 | sprintf (paddr_str, "%s%lu", | |
2498 | sign, temp[0]); | |
2499 | break; | |
2500 | case 2: | |
2501 | sprintf (paddr_str, "%s%lu%09lu", | |
2502 | sign, temp[1], temp[0]); | |
2503 | break; | |
2504 | case 3: | |
2505 | sprintf (paddr_str, "%s%lu%09lu%09lu", | |
2506 | sign, temp[2], temp[1], temp[0]); | |
2507 | break; | |
2508 | default: | |
e1e9e218 | 2509 | internal_error (__FILE__, __LINE__, "failed internal consistency check"); |
104c1213 JM |
2510 | } |
2511 | } | |
2512 | ||
2513 | char * | |
2514 | paddr_u (CORE_ADDR addr) | |
2515 | { | |
2516 | char *paddr_str = get_cell (); | |
2517 | decimal2str (paddr_str, "", addr); | |
2518 | return paddr_str; | |
2519 | } | |
2520 | ||
2521 | char * | |
2522 | paddr_d (LONGEST addr) | |
2523 | { | |
2524 | char *paddr_str = get_cell (); | |
2525 | if (addr < 0) | |
2526 | decimal2str (paddr_str, "-", -addr); | |
2527 | else | |
2528 | decimal2str (paddr_str, "", addr); | |
2529 | return paddr_str; | |
2530 | } | |
2531 | ||
5683e87a AC |
2532 | /* eliminate warning from compiler on 32-bit systems */ |
2533 | static int thirty_two = 32; | |
2534 | ||
104c1213 | 2535 | char * |
5683e87a | 2536 | phex (ULONGEST l, int sizeof_l) |
104c1213 | 2537 | { |
45a1e866 | 2538 | char *str; |
5683e87a | 2539 | switch (sizeof_l) |
104c1213 JM |
2540 | { |
2541 | case 8: | |
45a1e866 | 2542 | str = get_cell (); |
5683e87a AC |
2543 | sprintf (str, "%08lx%08lx", |
2544 | (unsigned long) (l >> thirty_two), | |
2545 | (unsigned long) (l & 0xffffffff)); | |
104c1213 JM |
2546 | break; |
2547 | case 4: | |
45a1e866 | 2548 | str = get_cell (); |
5683e87a | 2549 | sprintf (str, "%08lx", (unsigned long) l); |
104c1213 JM |
2550 | break; |
2551 | case 2: | |
45a1e866 | 2552 | str = get_cell (); |
5683e87a | 2553 | sprintf (str, "%04x", (unsigned short) (l & 0xffff)); |
104c1213 JM |
2554 | break; |
2555 | default: | |
45a1e866 | 2556 | str = phex (l, sizeof (l)); |
5683e87a | 2557 | break; |
104c1213 | 2558 | } |
5683e87a | 2559 | return str; |
104c1213 JM |
2560 | } |
2561 | ||
c5aa993b | 2562 | char * |
5683e87a | 2563 | phex_nz (ULONGEST l, int sizeof_l) |
c906108c | 2564 | { |
faf833ca | 2565 | char *str; |
5683e87a | 2566 | switch (sizeof_l) |
c906108c | 2567 | { |
c5aa993b JM |
2568 | case 8: |
2569 | { | |
5683e87a | 2570 | unsigned long high = (unsigned long) (l >> thirty_two); |
faf833ca | 2571 | str = get_cell (); |
c5aa993b | 2572 | if (high == 0) |
5683e87a | 2573 | sprintf (str, "%lx", (unsigned long) (l & 0xffffffff)); |
c5aa993b | 2574 | else |
5683e87a AC |
2575 | sprintf (str, "%lx%08lx", |
2576 | high, (unsigned long) (l & 0xffffffff)); | |
c906108c | 2577 | break; |
c5aa993b JM |
2578 | } |
2579 | case 4: | |
faf833ca | 2580 | str = get_cell (); |
5683e87a | 2581 | sprintf (str, "%lx", (unsigned long) l); |
c5aa993b JM |
2582 | break; |
2583 | case 2: | |
faf833ca | 2584 | str = get_cell (); |
5683e87a | 2585 | sprintf (str, "%x", (unsigned short) (l & 0xffff)); |
c5aa993b JM |
2586 | break; |
2587 | default: | |
faf833ca | 2588 | str = phex_nz (l, sizeof (l)); |
5683e87a | 2589 | break; |
c906108c | 2590 | } |
5683e87a | 2591 | return str; |
c906108c | 2592 | } |
ac2e2ef7 AC |
2593 | |
2594 | ||
2595 | /* Convert to / from the hosts pointer to GDB's internal CORE_ADDR | |
2596 | using the target's conversion routines. */ | |
2597 | CORE_ADDR | |
2598 | host_pointer_to_address (void *ptr) | |
2599 | { | |
c6caf090 | 2600 | gdb_assert (sizeof (ptr) == TYPE_LENGTH (builtin_type_void_data_ptr)); |
090a2205 | 2601 | return POINTER_TO_ADDRESS (builtin_type_void_data_ptr, &ptr); |
ac2e2ef7 AC |
2602 | } |
2603 | ||
2604 | void * | |
2605 | address_to_host_pointer (CORE_ADDR addr) | |
2606 | { | |
2607 | void *ptr; | |
c6caf090 KB |
2608 | |
2609 | gdb_assert (sizeof (ptr) == TYPE_LENGTH (builtin_type_void_data_ptr)); | |
090a2205 | 2610 | ADDRESS_TO_POINTER (builtin_type_void_data_ptr, &ptr, addr); |
ac2e2ef7 AC |
2611 | return ptr; |
2612 | } | |
03dd37c3 AC |
2613 | |
2614 | /* Convert a CORE_ADDR into a string. */ | |
2615 | const char * | |
2616 | core_addr_to_string (const CORE_ADDR addr) | |
49b563f9 KS |
2617 | { |
2618 | char *str = get_cell (); | |
2619 | strcpy (str, "0x"); | |
2620 | strcat (str, phex (addr, sizeof (addr))); | |
2621 | return str; | |
2622 | } | |
2623 | ||
2624 | const char * | |
2625 | core_addr_to_string_nz (const CORE_ADDR addr) | |
03dd37c3 AC |
2626 | { |
2627 | char *str = get_cell (); | |
2628 | strcpy (str, "0x"); | |
2629 | strcat (str, phex_nz (addr, sizeof (addr))); | |
2630 | return str; | |
2631 | } | |
2632 | ||
2633 | /* Convert a string back into a CORE_ADDR. */ | |
2634 | CORE_ADDR | |
2635 | string_to_core_addr (const char *my_string) | |
2636 | { | |
2637 | CORE_ADDR addr = 0; | |
2638 | if (my_string[0] == '0' && tolower (my_string[1]) == 'x') | |
2639 | { | |
2640 | /* Assume that it is in decimal. */ | |
2641 | int i; | |
2642 | for (i = 2; my_string[i] != '\0'; i++) | |
2643 | { | |
2644 | if (isdigit (my_string[i])) | |
2645 | addr = (my_string[i] - '0') + (addr * 16); | |
2646 | else if (isxdigit (my_string[i])) | |
2647 | addr = (tolower (my_string[i]) - 'a' + 0xa) + (addr * 16); | |
2648 | else | |
2649 | internal_error (__FILE__, __LINE__, "invalid hex"); | |
2650 | } | |
2651 | } | |
2652 | else | |
2653 | { | |
2654 | /* Assume that it is in decimal. */ | |
2655 | int i; | |
2656 | for (i = 0; my_string[i] != '\0'; i++) | |
2657 | { | |
2658 | if (isdigit (my_string[i])) | |
2659 | addr = (my_string[i] - '0') + (addr * 10); | |
2660 | else | |
2661 | internal_error (__FILE__, __LINE__, "invalid decimal"); | |
2662 | } | |
2663 | } | |
2664 | return addr; | |
2665 | } | |
58d370e0 TT |
2666 | |
2667 | char * | |
2668 | gdb_realpath (const char *filename) | |
2669 | { | |
a4db0f07 RH |
2670 | #if defined(HAVE_REALPATH) |
2671 | # if defined (PATH_MAX) | |
58d370e0 | 2672 | char buf[PATH_MAX]; |
a4db0f07 RH |
2673 | # define USE_REALPATH |
2674 | # elif defined (MAXPATHLEN) | |
2d1b2124 | 2675 | char buf[MAXPATHLEN]; |
a4db0f07 RH |
2676 | # define USE_REALPATH |
2677 | # elif defined (HAVE_UNISTD_H) && defined(HAVE_ALLOCA) | |
b84911e8 | 2678 | char *buf = alloca ((size_t)pathconf ("/", _PC_PATH_MAX)); |
a4db0f07 RH |
2679 | # define USE_REALPATH |
2680 | # endif | |
2681 | #endif /* HAVE_REALPATH */ | |
2682 | ||
2683 | #if defined(USE_REALPATH) | |
58d370e0 TT |
2684 | char *rp = realpath (filename, buf); |
2685 | return xstrdup (rp ? rp : filename); | |
a4db0f07 | 2686 | #elif defined(HAVE_CANONICALIZE_FILE_NAME) |
520f6ade AC |
2687 | char *rp = canonicalize_file_name (filename); |
2688 | if (rp == NULL) | |
2689 | return xstrdup (filename); | |
2690 | else | |
2691 | return rp; | |
58d370e0 TT |
2692 | #else |
2693 | return xstrdup (filename); | |
2694 | #endif | |
2695 | } | |
303c8ebd JB |
2696 | |
2697 | /* Return a copy of FILENAME, with its directory prefix canonicalized | |
2698 | by gdb_realpath. */ | |
2699 | ||
2700 | char * | |
2701 | xfullpath (const char *filename) | |
2702 | { | |
2703 | const char *base_name = lbasename (filename); | |
2704 | char *dir_name; | |
2705 | char *real_path; | |
2706 | char *result; | |
2707 | ||
2708 | /* Extract the basename of filename, and return immediately | |
2709 | a copy of filename if it does not contain any directory prefix. */ | |
2710 | if (base_name == filename) | |
2711 | return xstrdup (filename); | |
2712 | ||
2713 | dir_name = alloca ((size_t) (base_name - filename + 2)); | |
2714 | /* Allocate enough space to store the dir_name + plus one extra | |
2715 | character sometimes needed under Windows (see below), and | |
2716 | then the closing \000 character */ | |
2717 | strncpy (dir_name, filename, base_name - filename); | |
2718 | dir_name[base_name - filename] = '\000'; | |
2719 | ||
2720 | #ifdef HAVE_DOS_BASED_FILE_SYSTEM | |
2721 | /* We need to be careful when filename is of the form 'd:foo', which | |
2722 | is equivalent of d:./foo, which is totally different from d:/foo. */ | |
2723 | if (strlen (dir_name) == 2 && | |
2724 | isalpha (dir_name[0]) && dir_name[1] == ':') | |
2725 | { | |
2726 | dir_name[2] = '.'; | |
2727 | dir_name[3] = '\000'; | |
2728 | } | |
2729 | #endif | |
2730 | ||
2731 | /* Canonicalize the directory prefix, and build the resulting | |
2732 | filename. If the dirname realpath already contains an ending | |
2733 | directory separator, avoid doubling it. */ | |
2734 | real_path = gdb_realpath (dir_name); | |
2735 | if (IS_DIR_SEPARATOR (real_path[strlen (real_path) - 1])) | |
2736 | result = concat (real_path, base_name, NULL); | |
2737 | else | |
2738 | result = concat (real_path, SLASH_STRING, base_name, NULL); | |
2739 | ||
2740 | xfree (real_path); | |
2741 | return result; | |
2742 | } |