Fix whitespace problem in my most recent entry.
[deliverable/binutils-gdb.git] / gdb / stack.c
1 /* Print and select stack frames for GDB, the GNU debugger.
2 Copyright 1986, 1987, 1989, 1991, 1992, 1993, 1994, 1995, 1996,
3 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22 #include <ctype.h>
23 #include "defs.h"
24 #include "gdb_string.h"
25 #include "value.h"
26 #include "symtab.h"
27 #include "gdbtypes.h"
28 #include "expression.h"
29 #include "language.h"
30 #include "frame.h"
31 #include "gdbcmd.h"
32 #include "gdbcore.h"
33 #include "target.h"
34 #include "breakpoint.h"
35 #include "demangle.h"
36 #include "inferior.h"
37 #include "annotate.h"
38 #include "symfile.h"
39 #include "objfiles.h"
40 #ifdef UI_OUT
41 #include "ui-out.h"
42 #endif
43
44 /* Prototypes for exported functions. */
45
46 void args_info (char *, int);
47
48 void locals_info (char *, int);
49
50 void (*selected_frame_level_changed_hook) (int);
51
52 void _initialize_stack (void);
53
54 /* Prototypes for local functions. */
55
56 static void return_command (char *, int);
57
58 static void down_command (char *, int);
59
60 static void down_silently_base (char *);
61
62 static void down_silently_command (char *, int);
63
64 static void up_command (char *, int);
65
66 static void up_silently_base (char *);
67
68 static void up_silently_command (char *, int);
69
70 void frame_command (char *, int);
71
72 static void current_frame_command (char *, int);
73
74 static void select_frame_command (char *, int);
75
76 static void print_frame_arg_vars (struct frame_info *, struct ui_file *);
77
78 static void catch_info (char *, int);
79
80 static void args_plus_locals_info (char *, int);
81
82 static void print_frame_label_vars (struct frame_info *, int,
83 struct ui_file *);
84
85 static void print_frame_local_vars (struct frame_info *, int,
86 struct ui_file *);
87
88 static int print_block_frame_labels (struct block *, int *,
89 struct ui_file *);
90
91 static int print_block_frame_locals (struct block *,
92 struct frame_info *,
93 int,
94 struct ui_file *);
95
96 static void print_frame (struct frame_info *fi,
97 int level,
98 int source,
99 int args,
100 struct symtab_and_line sal);
101
102 static void print_frame_info_base (struct frame_info *, int, int, int);
103
104 static void print_stack_frame_base (struct frame_info *, int, int);
105
106 static void backtrace_command (char *, int);
107
108 struct frame_info *parse_frame_specification (char *);
109
110 static void frame_info (char *, int);
111
112 extern int addressprint; /* Print addresses, or stay symbolic only? */
113 extern int info_verbose; /* Verbosity of symbol reading msgs */
114 extern int lines_to_list; /* # of lines "list" command shows by default */
115
116 /* The "selected" stack frame is used by default for local and arg access.
117 May be zero, for no selected frame. */
118
119 struct frame_info *selected_frame;
120
121 /* Level of the selected frame:
122 0 for innermost, 1 for its caller, ...
123 or -1 for frame specified by address with no defined level. */
124
125 int selected_frame_level;
126
127 /* Zero means do things normally; we are interacting directly with the
128 user. One means print the full filename and linenumber when a
129 frame is printed, and do so in a format emacs18/emacs19.22 can
130 parse. Two means print similar annotations, but in many more
131 cases and in a slightly different syntax. */
132
133 int annotation_level = 0;
134 \f
135
136 struct print_stack_frame_args
137 {
138 struct frame_info *fi;
139 int level;
140 int source;
141 int args;
142 };
143
144 static int print_stack_frame_base_stub (char *);
145
146 /* Show and print the frame arguments.
147 Pass the args the way catch_errors wants them. */
148 static int show_and_print_stack_frame_stub (void *args);
149 static int
150 show_and_print_stack_frame_stub (void *args)
151 {
152 struct print_stack_frame_args *p = (struct print_stack_frame_args *) args;
153
154 /* Reversed order of these so tuiDo() doesn't occur
155 * in the middle of "Breakpoint 1 ... [location]" printing = RT
156 */
157 if (tui_version)
158 print_frame_info_base (p->fi, p->level, p->source, p->args);
159 print_frame_info (p->fi, p->level, p->source, p->args);
160
161 return 0;
162 }
163
164 /* Show or print the frame arguments.
165 Pass the args the way catch_errors wants them. */
166 static int print_stack_frame_stub (void *args);
167 static int
168 print_stack_frame_stub (void *args)
169 {
170 struct print_stack_frame_args *p = (struct print_stack_frame_args *) args;
171
172 if (tui_version)
173 print_frame_info (p->fi, p->level, p->source, p->args);
174 else
175 print_frame_info_base (p->fi, p->level, p->source, p->args);
176 return 0;
177 }
178
179 /* Print a stack frame briefly. FRAME_INFI should be the frame info
180 and LEVEL should be its level in the stack (or -1 for level not
181 defined). */
182
183 /* Pass the args the way catch_errors wants them. */
184 static int
185 print_stack_frame_base_stub (char *args)
186 {
187 struct print_stack_frame_args *p = (struct print_stack_frame_args *) args;
188
189 print_frame_info_base (p->fi, p->level, p->source, p->args);
190 return 0;
191 }
192
193 /* print the frame arguments to the terminal.
194 Pass the args the way catch_errors wants them. */
195 static int print_only_stack_frame_stub (void *);
196 static int
197 print_only_stack_frame_stub (void *args)
198 {
199 struct print_stack_frame_args *p = (struct print_stack_frame_args *) args;
200
201 print_frame_info_base (p->fi, p->level, p->source, p->args);
202 return 0;
203 }
204
205 /* Print a stack frame briefly. FRAME_INFI should be the frame info
206 and LEVEL should be its level in the stack (or -1 for level not defined).
207 This prints the level, the function executing, the arguments,
208 and the file name and line number.
209 If the pc is not at the beginning of the source line,
210 the actual pc is printed at the beginning.
211
212 If SOURCE is 1, print the source line as well.
213 If SOURCE is -1, print ONLY the source line. */
214
215 static void
216 print_stack_frame_base (struct frame_info *fi, int level, int source)
217 {
218 struct print_stack_frame_args args;
219
220 args.fi = fi;
221 args.level = level;
222 args.source = source;
223 args.args = 1;
224
225 catch_errors (print_stack_frame_stub, &args, "", RETURN_MASK_ALL);
226 }
227
228 /* Show and print a stack frame briefly. FRAME_INFI should be the frame info
229 and LEVEL should be its level in the stack (or -1 for level not defined).
230 This prints the level, the function executing, the arguments,
231 and the file name and line number.
232 If the pc is not at the beginning of the source line,
233 the actual pc is printed at the beginning.
234
235 If SOURCE is 1, print the source line as well.
236 If SOURCE is -1, print ONLY the source line. */
237
238 void
239 show_and_print_stack_frame (struct frame_info *fi, int level, int source)
240 {
241 struct print_stack_frame_args args;
242
243 args.fi = fi;
244 args.level = level;
245 args.source = source;
246 args.args = 1;
247
248 catch_errors (show_and_print_stack_frame_stub, &args, "", RETURN_MASK_ALL);
249 }
250
251
252 /* Show or print a stack frame briefly. FRAME_INFI should be the frame info
253 and LEVEL should be its level in the stack (or -1 for level not defined).
254 This prints the level, the function executing, the arguments,
255 and the file name and line number.
256 If the pc is not at the beginning of the source line,
257 the actual pc is printed at the beginning.
258
259 If SOURCE is 1, print the source line as well.
260 If SOURCE is -1, print ONLY the source line. */
261
262 void
263 print_stack_frame (struct frame_info *fi, int level, int source)
264 {
265 struct print_stack_frame_args args;
266
267 args.fi = fi;
268 args.level = level;
269 args.source = source;
270 args.args = 1;
271
272 catch_errors (print_stack_frame_stub, (char *) &args, "", RETURN_MASK_ALL);
273 }
274
275 /* Print a stack frame briefly. FRAME_INFI should be the frame info
276 and LEVEL should be its level in the stack (or -1 for level not defined).
277 This prints the level, the function executing, the arguments,
278 and the file name and line number.
279 If the pc is not at the beginning of the source line,
280 the actual pc is printed at the beginning.
281
282 If SOURCE is 1, print the source line as well.
283 If SOURCE is -1, print ONLY the source line. */
284
285 void
286 print_only_stack_frame (struct frame_info *fi, int level, int source)
287 {
288 struct print_stack_frame_args args;
289
290 args.fi = fi;
291 args.level = level;
292 args.source = source;
293 args.args = 1;
294
295 catch_errors (print_only_stack_frame_stub, &args, "", RETURN_MASK_ALL);
296 }
297
298 struct print_args_args
299 {
300 struct symbol *func;
301 struct frame_info *fi;
302 struct ui_file *stream;
303 };
304
305 static int print_args_stub (PTR);
306
307 /* Pass the args the way catch_errors wants them. */
308
309 static int
310 print_args_stub (PTR args)
311 {
312 int numargs;
313 struct print_args_args *p = (struct print_args_args *) args;
314
315 numargs = FRAME_NUM_ARGS (p->fi);
316 print_frame_args (p->func, p->fi, numargs, p->stream);
317 return 0;
318 }
319
320 /* Print information about a frame for frame "fi" at level "level".
321 Used in "where" output, also used to emit breakpoint or step
322 messages.
323 LEVEL is the level of the frame, or -1 if it is the
324 innermost frame but we don't want to print the level.
325 The meaning of the SOURCE argument is:
326 SRC_LINE: Print only source line
327 LOCATION: Print only location
328 LOC_AND_SRC: Print location and source line. */
329
330 static void
331 print_frame_info_base (struct frame_info *fi, int level, int source, int args)
332 {
333 struct symtab_and_line sal;
334 int source_print;
335 int location_print;
336
337 #if 0
338 char buf[MAX_REGISTER_RAW_SIZE];
339 CORE_ADDR sp;
340
341 /* On the 68k, this spends too much time in m68k_find_saved_regs. */
342
343 /* Get the value of SP_REGNUM relative to the frame. */
344 get_saved_register (buf, (int *) NULL, (CORE_ADDR *) NULL,
345 FRAME_INFO_ID (fi), SP_REGNUM, (enum lval_type *) NULL);
346 sp = extract_address (buf, REGISTER_RAW_SIZE (SP_REGNUM));
347
348 /* This is not a perfect test, because if a function alloca's some
349 memory, puts some code there, and then jumps into it, then the test
350 will succeed even though there is no call dummy. Probably best is
351 to check for a bp_call_dummy breakpoint. */
352 if (PC_IN_CALL_DUMMY (fi->pc, sp, fi->frame))
353 #else
354 if (frame_in_dummy (fi))
355 #endif
356 {
357 annotate_frame_begin (level == -1 ? 0 : level, fi->pc);
358
359 /* Do this regardless of SOURCE because we don't have any source
360 to list for this frame. */
361 if (level >= 0)
362 printf_filtered ("#%-2d ", level);
363 annotate_function_call ();
364 printf_filtered ("<function called from gdb>\n");
365 annotate_frame_end ();
366 return;
367 }
368 if (fi->signal_handler_caller)
369 {
370 annotate_frame_begin (level == -1 ? 0 : level, fi->pc);
371
372 /* Do this regardless of SOURCE because we don't have any source
373 to list for this frame. */
374 if (level >= 0)
375 printf_filtered ("#%-2d ", level);
376 annotate_signal_handler_caller ();
377 printf_filtered ("<signal handler called>\n");
378 annotate_frame_end ();
379 return;
380 }
381
382 /* If fi is not the innermost frame, that normally means that fi->pc
383 points to *after* the call instruction, and we want to get the line
384 containing the call, never the next line. But if the next frame is
385 a signal_handler_caller or a dummy frame, then the next frame was
386 not entered as the result of a call, and we want to get the line
387 containing fi->pc. */
388 sal =
389 find_pc_line (fi->pc,
390 fi->next != NULL
391 && !fi->next->signal_handler_caller
392 && !frame_in_dummy (fi->next));
393
394 location_print = (source == LOCATION
395 || source == LOC_AND_ADDRESS
396 || source == SRC_AND_LOC);
397
398 if (location_print || !sal.symtab)
399 print_frame (fi, level, source, args, sal);
400
401 source_print = (source == SRC_LINE || source == SRC_AND_LOC);
402
403 if (source_print && sal.symtab)
404 {
405 int done = 0;
406 int mid_statement = (source == SRC_LINE) && (fi->pc != sal.pc);
407
408 if (annotation_level)
409 done = identify_source_line (sal.symtab, sal.line, mid_statement,
410 fi->pc);
411 if (!done)
412 {
413 if (addressprint && mid_statement && !tui_version)
414 {
415 #ifdef UI_OUT
416 ui_out_field_core_addr (uiout, "addr", fi->pc);
417 ui_out_text (uiout, "\t");
418 #else
419 print_address_numeric (fi->pc, 1, gdb_stdout);
420 printf_filtered ("\t");
421 #endif
422 }
423 if (print_frame_info_listing_hook)
424 print_frame_info_listing_hook (sal.symtab, sal.line, sal.line + 1, 0);
425 else if (!tui_version)
426 print_source_lines (sal.symtab, sal.line, sal.line + 1, 0);
427 }
428 current_source_line = max (sal.line - lines_to_list / 2, 1);
429 }
430
431 if (source != 0)
432 set_default_breakpoint (1, fi->pc, sal.symtab, sal.line);
433
434 annotate_frame_end ();
435
436 gdb_flush (gdb_stdout);
437 }
438
439 static void
440 print_frame (struct frame_info *fi,
441 int level,
442 int source,
443 int args,
444 struct symtab_and_line sal)
445 {
446 struct symbol *func;
447 register char *funname = 0;
448 enum language funlang = language_unknown;
449 #ifdef UI_OUT
450 struct ui_stream *stb;
451 struct cleanup *old_chain;
452 struct cleanup *list_chain;
453
454 stb = ui_out_stream_new (uiout);
455 old_chain = make_cleanup_ui_out_stream_delete (stb);
456 #endif /* UI_OUT */
457
458 func = find_pc_function (fi->pc);
459 if (func)
460 {
461 /* In certain pathological cases, the symtabs give the wrong
462 function (when we are in the first function in a file which
463 is compiled without debugging symbols, the previous function
464 is compiled with debugging symbols, and the "foo.o" symbol
465 that is supposed to tell us where the file with debugging symbols
466 ends has been truncated by ar because it is longer than 15
467 characters). This also occurs if the user uses asm() to create
468 a function but not stabs for it (in a file compiled -g).
469
470 So look in the minimal symbol tables as well, and if it comes
471 up with a larger address for the function use that instead.
472 I don't think this can ever cause any problems; there shouldn't
473 be any minimal symbols in the middle of a function; if this is
474 ever changed many parts of GDB will need to be changed (and we'll
475 create a find_pc_minimal_function or some such). */
476
477 struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (fi->pc);
478 if (msymbol != NULL
479 && (SYMBOL_VALUE_ADDRESS (msymbol)
480 > BLOCK_START (SYMBOL_BLOCK_VALUE (func))))
481 {
482 #if 0
483 /* There is no particular reason to think the line number
484 information is wrong. Someone might have just put in
485 a label with asm() but left the line numbers alone. */
486 /* In this case we have no way of knowing the source file
487 and line number, so don't print them. */
488 sal.symtab = 0;
489 #endif
490 /* We also don't know anything about the function besides
491 its address and name. */
492 func = 0;
493 funname = SYMBOL_NAME (msymbol);
494 funlang = SYMBOL_LANGUAGE (msymbol);
495 }
496 else
497 {
498 /* I'd like to use SYMBOL_SOURCE_NAME() here, to display the
499 demangled name that we already have stored in the symbol
500 table, but we stored a version with DMGL_PARAMS turned
501 on, and here we don't want to display parameters. So call
502 the demangler again, with DMGL_ANSI only. (Yes, I know
503 that printf_symbol_filtered() will again try to demangle
504 the name on the fly, but the issue is that if
505 cplus_demangle() fails here, it'll fail there too. So we
506 want to catch the failure ("demangled==NULL" case below)
507 here, while we still have our hands on the function
508 symbol.) */
509 char *demangled;
510 funname = SYMBOL_NAME (func);
511 funlang = SYMBOL_LANGUAGE (func);
512 if (funlang == language_cplus)
513 {
514 demangled = cplus_demangle (funname, DMGL_ANSI);
515 if (demangled == NULL)
516 /* If the demangler fails, try the demangled name from
517 the symbol table. This'll have parameters, but
518 that's preferable to diplaying a mangled name. */
519 funname = SYMBOL_SOURCE_NAME (func);
520 }
521 }
522 }
523 else
524 {
525 struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (fi->pc);
526 if (msymbol != NULL)
527 {
528 funname = SYMBOL_NAME (msymbol);
529 funlang = SYMBOL_LANGUAGE (msymbol);
530 }
531 }
532
533 annotate_frame_begin (level == -1 ? 0 : level, fi->pc);
534
535 #ifdef UI_OUT
536 ui_out_list_begin (uiout, "frame");
537 list_chain = make_cleanup_ui_out_list_end (uiout);
538 #endif
539
540 if (level >= 0)
541 {
542 #ifdef UI_OUT
543 ui_out_text (uiout, "#");
544 ui_out_field_fmt (uiout, "level", "%-2d", level);
545 ui_out_spaces (uiout, 1);
546 #else
547 printf_filtered ("#%-2d ", level);
548 #endif
549 }
550 if (addressprint)
551 if (fi->pc != sal.pc || !sal.symtab || source == LOC_AND_ADDRESS)
552 {
553 annotate_frame_address ();
554 #ifdef UI_OUT
555 ui_out_field_core_addr (uiout, "addr", fi->pc);
556 annotate_frame_address_end ();
557 ui_out_text (uiout, " in ");
558 #else
559 print_address_numeric (fi->pc, 1, gdb_stdout);
560 annotate_frame_address_end ();
561 printf_filtered (" in ");
562 #endif
563 }
564 annotate_frame_function_name ();
565 #ifdef UI_OUT
566 fprintf_symbol_filtered (stb->stream, funname ? funname : "??", funlang,
567 DMGL_ANSI);
568 ui_out_field_stream (uiout, "func", stb);
569 ui_out_wrap_hint (uiout, " ");
570 #else
571 fprintf_symbol_filtered (gdb_stdout, funname ? funname : "??", funlang,
572 DMGL_ANSI);
573 wrap_here (" ");
574 #endif
575 annotate_frame_args ();
576
577 #ifdef UI_OUT
578 ui_out_text (uiout, " (");
579 #else
580 fputs_filtered (" (", gdb_stdout);
581 #endif
582 if (args)
583 {
584 struct print_args_args args;
585 args.fi = fi;
586 args.func = func;
587 args.stream = gdb_stdout;
588 #ifdef UI_OUT
589 ui_out_list_begin (uiout, "args");
590 catch_errors (print_args_stub, &args, "", RETURN_MASK_ALL);
591 /* FIXME: args must be a list. If one argument is a string it will
592 have " that will not be properly escaped. */
593 ui_out_list_end (uiout);
594 #else
595 catch_errors (print_args_stub, &args, "", RETURN_MASK_ALL);
596 #endif
597 QUIT;
598 }
599 #ifdef UI_OUT
600 ui_out_text (uiout, ")");
601 #else
602 printf_filtered (")");
603 #endif
604 if (sal.symtab && sal.symtab->filename)
605 {
606 annotate_frame_source_begin ();
607 #ifdef UI_OUT
608 ui_out_wrap_hint (uiout, " ");
609 ui_out_text (uiout, " at ");
610 annotate_frame_source_file ();
611 ui_out_field_string (uiout, "file", sal.symtab->filename);
612 annotate_frame_source_file_end ();
613 ui_out_text (uiout, ":");
614 annotate_frame_source_line ();
615 ui_out_field_int (uiout, "line", sal.line);
616 #else
617 wrap_here (" ");
618 printf_filtered (" at ");
619 annotate_frame_source_file ();
620 printf_filtered ("%s", sal.symtab->filename);
621 annotate_frame_source_file_end ();
622 printf_filtered (":");
623 annotate_frame_source_line ();
624 printf_filtered ("%d", sal.line);
625 #endif
626 annotate_frame_source_end ();
627 }
628
629 #ifdef PC_SOLIB
630 if (!funname || (!sal.symtab || !sal.symtab->filename))
631 {
632 char *lib = PC_SOLIB (fi->pc);
633 if (lib)
634 {
635 annotate_frame_where ();
636 #ifdef UI_OUT
637 ui_out_wrap_hint (uiout, " ");
638 ui_out_text (uiout, " from ");
639 ui_out_field_string (uiout, "from", lib);
640 #else
641 wrap_here (" ");
642 printf_filtered (" from %s", lib);
643 #endif
644 }
645 }
646 #endif /* PC_SOLIB */
647
648 #ifdef UI_OUT
649 /* do_cleanups will call ui_out_list_end() for us. */
650 do_cleanups (list_chain);
651 ui_out_text (uiout, "\n");
652 do_cleanups (old_chain);
653 #else
654 printf_filtered ("\n");
655 #endif
656 }
657 \f
658
659 #if 0
660 void
661 stack_publish_stopped_with_no_frame (void)
662 {
663 TUIDO (((TuiOpaqueFuncPtr) tuiUpdateOnEnd));
664
665 return;
666 }
667 #endif
668
669 /* Show or print the frame info. If this is the tui, it will be shown in
670 the source display */
671 void
672 print_frame_info (struct frame_info *fi, register int level, int source,
673 int args)
674 {
675 if (!tui_version)
676 print_frame_info_base (fi, level, source, args);
677 else
678 {
679 if (fi && (frame_in_dummy (fi) || fi->signal_handler_caller))
680 print_frame_info_base (fi, level, source, args);
681 else
682 {
683 TUIDO (((TuiOpaqueFuncPtr) tui_vShowFrameInfo, fi));
684 }
685 }
686 }
687
688 /* Show the frame info. If this is the tui, it will be shown in
689 the source display otherwise, nothing is done */
690 void
691 show_stack_frame (struct frame_info *fi)
692 {
693 TUIDO (((TuiOpaqueFuncPtr) tui_vShowFrameInfo, fi));
694 }
695 \f
696
697 /* Read a frame specification in whatever the appropriate format is.
698 Call error() if the specification is in any way invalid (i.e.
699 this function never returns NULL). */
700
701 struct frame_info *
702 parse_frame_specification (char *frame_exp)
703 {
704 int numargs = 0;
705 #define MAXARGS 4
706 CORE_ADDR args[MAXARGS];
707
708 if (frame_exp)
709 {
710 char *addr_string, *p;
711 struct cleanup *tmp_cleanup;
712
713 while (*frame_exp == ' ')
714 frame_exp++;
715
716 while (*frame_exp)
717 {
718 if (numargs > MAXARGS)
719 error ("Too many args in frame specification");
720 /* Parse an argument. */
721 for (p = frame_exp; *p && *p != ' '; p++)
722 ;
723 addr_string = savestring (frame_exp, p - frame_exp);
724
725 {
726 tmp_cleanup = make_cleanup (xfree, addr_string);
727 args[numargs++] = parse_and_eval_address (addr_string);
728 do_cleanups (tmp_cleanup);
729 }
730
731 /* Skip spaces, move to possible next arg. */
732 while (*p == ' ')
733 p++;
734 frame_exp = p;
735 }
736 }
737
738 switch (numargs)
739 {
740 case 0:
741 if (selected_frame == NULL)
742 error ("No selected frame.");
743 return selected_frame;
744 /* NOTREACHED */
745 case 1:
746 {
747 int level = args[0];
748 struct frame_info *fid =
749 find_relative_frame (get_current_frame (), &level);
750 struct frame_info *tfid;
751
752 if (level == 0)
753 /* find_relative_frame was successful */
754 return fid;
755
756 /* If SETUP_ARBITRARY_FRAME is defined, then frame specifications
757 take at least 2 addresses. It is important to detect this case
758 here so that "frame 100" does not give a confusing error message
759 like "frame specification requires two addresses". This of course
760 does not solve the "frame 100" problem for machines on which
761 a frame specification can be made with one address. To solve
762 that, we need a new syntax for a specifying a frame by address.
763 I think the cleanest syntax is $frame(0x45) ($frame(0x23,0x45) for
764 two args, etc.), but people might think that is too much typing,
765 so I guess *0x23,0x45 would be a possible alternative (commas
766 really should be used instead of spaces to delimit; using spaces
767 normally works in an expression). */
768 #ifdef SETUP_ARBITRARY_FRAME
769 error ("No frame %d", args[0]);
770 #endif
771
772 /* If (s)he specifies the frame with an address, he deserves what
773 (s)he gets. Still, give the highest one that matches. */
774
775 for (fid = get_current_frame ();
776 fid && fid->frame != args[0];
777 fid = get_prev_frame (fid))
778 ;
779
780 if (fid)
781 while ((tfid = get_prev_frame (fid)) &&
782 (tfid->frame == args[0]))
783 fid = tfid;
784
785 /* We couldn't identify the frame as an existing frame, but
786 perhaps we can create one with a single argument. */
787 }
788
789 default:
790 #ifdef SETUP_ARBITRARY_FRAME
791 return SETUP_ARBITRARY_FRAME (numargs, args);
792 #else
793 /* Usual case. Do it here rather than have everyone supply
794 a SETUP_ARBITRARY_FRAME that does this. */
795 if (numargs == 1)
796 return create_new_frame (args[0], 0);
797 error ("Too many args in frame specification");
798 #endif
799 /* NOTREACHED */
800 }
801 /* NOTREACHED */
802 }
803
804 /* FRAME_ARGS_ADDRESS_CORRECT is just like FRAME_ARGS_ADDRESS except
805 that if it is unsure about the answer, it returns 0
806 instead of guessing (this happens on the VAX and i960, for example).
807
808 On most machines, we never have to guess about the args address,
809 so FRAME_ARGS_ADDRESS{,_CORRECT} are the same. */
810 #if !defined (FRAME_ARGS_ADDRESS_CORRECT)
811 #define FRAME_ARGS_ADDRESS_CORRECT FRAME_ARGS_ADDRESS
812 #endif
813
814 /* Print verbosely the selected frame or the frame at address ADDR.
815 This means absolutely all information in the frame is printed. */
816
817 static void
818 frame_info (char *addr_exp, int from_tty)
819 {
820 struct frame_info *fi;
821 struct symtab_and_line sal;
822 struct symbol *func;
823 struct symtab *s;
824 struct frame_info *calling_frame_info;
825 int i, count, numregs;
826 char *funname = 0;
827 enum language funlang = language_unknown;
828
829 if (!target_has_stack)
830 error ("No stack.");
831
832 fi = parse_frame_specification (addr_exp);
833 if (fi == NULL)
834 error ("Invalid frame specified.");
835
836 sal = find_pc_line (fi->pc,
837 fi->next != NULL
838 && !fi->next->signal_handler_caller
839 && !frame_in_dummy (fi->next));
840 func = get_frame_function (fi);
841 s = find_pc_symtab (fi->pc);
842 if (func)
843 {
844 /* I'd like to use SYMBOL_SOURCE_NAME() here, to display
845 * the demangled name that we already have stored in
846 * the symbol table, but we stored a version with
847 * DMGL_PARAMS turned on, and here we don't want
848 * to display parameters. So call the demangler again,
849 * with DMGL_ANSI only. RT
850 * (Yes, I know that printf_symbol_filtered() will
851 * again try to demangle the name on the fly, but
852 * the issue is that if cplus_demangle() fails here,
853 * it'll fail there too. So we want to catch the failure
854 * ("demangled==NULL" case below) here, while we still
855 * have our hands on the function symbol.)
856 */
857 char *demangled;
858 funname = SYMBOL_NAME (func);
859 funlang = SYMBOL_LANGUAGE (func);
860 if (funlang == language_cplus)
861 {
862 demangled = cplus_demangle (funname, DMGL_ANSI);
863 /* If the demangler fails, try the demangled name
864 * from the symbol table. This'll have parameters,
865 * but that's preferable to diplaying a mangled name.
866 */
867 if (demangled == NULL)
868 funname = SYMBOL_SOURCE_NAME (func);
869 }
870 }
871 else
872 {
873 register struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (fi->pc);
874 if (msymbol != NULL)
875 {
876 funname = SYMBOL_NAME (msymbol);
877 funlang = SYMBOL_LANGUAGE (msymbol);
878 }
879 }
880 calling_frame_info = get_prev_frame (fi);
881
882 if (!addr_exp && selected_frame_level >= 0)
883 {
884 printf_filtered ("Stack level %d, frame at ", selected_frame_level);
885 print_address_numeric (fi->frame, 1, gdb_stdout);
886 printf_filtered (":\n");
887 }
888 else
889 {
890 printf_filtered ("Stack frame at ");
891 print_address_numeric (fi->frame, 1, gdb_stdout);
892 printf_filtered (":\n");
893 }
894 printf_filtered (" %s = ", REGISTER_NAME (PC_REGNUM));
895 print_address_numeric (fi->pc, 1, gdb_stdout);
896
897 wrap_here (" ");
898 if (funname)
899 {
900 printf_filtered (" in ");
901 fprintf_symbol_filtered (gdb_stdout, funname, funlang,
902 DMGL_ANSI | DMGL_PARAMS);
903 }
904 wrap_here (" ");
905 if (sal.symtab)
906 printf_filtered (" (%s:%d)", sal.symtab->filename, sal.line);
907 puts_filtered ("; ");
908 wrap_here (" ");
909 printf_filtered ("saved %s ", REGISTER_NAME (PC_REGNUM));
910 print_address_numeric (FRAME_SAVED_PC (fi), 1, gdb_stdout);
911 printf_filtered ("\n");
912
913 {
914 int frameless;
915 frameless = FRAMELESS_FUNCTION_INVOCATION (fi);
916 if (frameless)
917 printf_filtered (" (FRAMELESS),");
918 }
919
920 if (calling_frame_info)
921 {
922 printf_filtered (" called by frame at ");
923 print_address_numeric (calling_frame_info->frame, 1, gdb_stdout);
924 }
925 if (fi->next && calling_frame_info)
926 puts_filtered (",");
927 wrap_here (" ");
928 if (fi->next)
929 {
930 printf_filtered (" caller of frame at ");
931 print_address_numeric (fi->next->frame, 1, gdb_stdout);
932 }
933 if (fi->next || calling_frame_info)
934 puts_filtered ("\n");
935 if (s)
936 printf_filtered (" source language %s.\n", language_str (s->language));
937
938 #ifdef PRINT_EXTRA_FRAME_INFO
939 PRINT_EXTRA_FRAME_INFO (fi);
940 #endif
941
942 {
943 /* Address of the argument list for this frame, or 0. */
944 CORE_ADDR arg_list = FRAME_ARGS_ADDRESS_CORRECT (fi);
945 /* Number of args for this frame, or -1 if unknown. */
946 int numargs;
947
948 if (arg_list == 0)
949 printf_filtered (" Arglist at unknown address.\n");
950 else
951 {
952 printf_filtered (" Arglist at ");
953 print_address_numeric (arg_list, 1, gdb_stdout);
954 printf_filtered (",");
955
956 numargs = FRAME_NUM_ARGS (fi);
957 if (numargs < 0)
958 puts_filtered (" args: ");
959 else if (numargs == 0)
960 puts_filtered (" no args.");
961 else if (numargs == 1)
962 puts_filtered (" 1 arg: ");
963 else
964 printf_filtered (" %d args: ", numargs);
965 print_frame_args (func, fi, numargs, gdb_stdout);
966 puts_filtered ("\n");
967 }
968 }
969 {
970 /* Address of the local variables for this frame, or 0. */
971 CORE_ADDR arg_list = FRAME_LOCALS_ADDRESS (fi);
972
973 if (arg_list == 0)
974 printf_filtered (" Locals at unknown address,");
975 else
976 {
977 printf_filtered (" Locals at ");
978 print_address_numeric (arg_list, 1, gdb_stdout);
979 printf_filtered (",");
980 }
981 }
982
983 FRAME_INIT_SAVED_REGS (fi);
984 if (fi->saved_regs != NULL)
985 {
986 /* The sp is special; what's returned isn't the save address, but
987 actually the value of the previous frame's sp. */
988 printf_filtered (" Previous frame's sp is ");
989 print_address_numeric (fi->saved_regs[SP_REGNUM], 1, gdb_stdout);
990 printf_filtered ("\n");
991 count = 0;
992 numregs = ARCH_NUM_REGS;
993 for (i = 0; i < numregs; i++)
994 if (fi->saved_regs[i] && i != SP_REGNUM)
995 {
996 if (count == 0)
997 puts_filtered (" Saved registers:\n ");
998 else
999 puts_filtered (",");
1000 wrap_here (" ");
1001 printf_filtered (" %s at ", REGISTER_NAME (i));
1002 print_address_numeric (fi->saved_regs[i], 1, gdb_stdout);
1003 count++;
1004 }
1005 if (count)
1006 puts_filtered ("\n");
1007 }
1008 else
1009 {
1010 /* We could get some information about saved registers by
1011 calling get_saved_register on each register. Which info goes
1012 with which frame is necessarily lost, however, and I suspect
1013 that the users don't care whether they get the info. */
1014 puts_filtered ("\n");
1015 }
1016 }
1017
1018 #if 0
1019 /* Set a limit on the number of frames printed by default in a
1020 backtrace. */
1021
1022 static int backtrace_limit;
1023
1024 static void
1025 set_backtrace_limit_command (char *count_exp, int from_tty)
1026 {
1027 int count = parse_and_eval_long (count_exp);
1028
1029 if (count < 0)
1030 error ("Negative argument not meaningful as backtrace limit.");
1031
1032 backtrace_limit = count;
1033 }
1034
1035 static void
1036 backtrace_limit_info (char *arg, int from_tty)
1037 {
1038 if (arg)
1039 error ("\"Info backtrace-limit\" takes no arguments.");
1040
1041 printf_unfiltered ("Backtrace limit: %d.\n", backtrace_limit);
1042 }
1043 #endif
1044
1045 /* Print briefly all stack frames or just the innermost COUNT frames. */
1046
1047 static void backtrace_command_1 (char *count_exp, int show_locals,
1048 int from_tty);
1049 static void
1050 backtrace_command_1 (char *count_exp, int show_locals, int from_tty)
1051 {
1052 struct frame_info *fi;
1053 register int count;
1054 register int i;
1055 register struct frame_info *trailing;
1056 register int trailing_level;
1057
1058 if (!target_has_stack)
1059 error ("No stack.");
1060
1061 /* The following code must do two things. First, it must
1062 set the variable TRAILING to the frame from which we should start
1063 printing. Second, it must set the variable count to the number
1064 of frames which we should print, or -1 if all of them. */
1065 trailing = get_current_frame ();
1066
1067 /* The target can be in a state where there is no valid frames
1068 (e.g., just connected). */
1069 if (trailing == NULL)
1070 error ("No stack.");
1071
1072 trailing_level = 0;
1073 if (count_exp)
1074 {
1075 count = parse_and_eval_long (count_exp);
1076 if (count < 0)
1077 {
1078 struct frame_info *current;
1079
1080 count = -count;
1081
1082 current = trailing;
1083 while (current && count--)
1084 {
1085 QUIT;
1086 current = get_prev_frame (current);
1087 }
1088
1089 /* Will stop when CURRENT reaches the top of the stack. TRAILING
1090 will be COUNT below it. */
1091 while (current)
1092 {
1093 QUIT;
1094 trailing = get_prev_frame (trailing);
1095 current = get_prev_frame (current);
1096 trailing_level++;
1097 }
1098
1099 count = -1;
1100 }
1101 }
1102 else
1103 count = -1;
1104
1105 if (info_verbose)
1106 {
1107 struct partial_symtab *ps;
1108
1109 /* Read in symbols for all of the frames. Need to do this in
1110 a separate pass so that "Reading in symbols for xxx" messages
1111 don't screw up the appearance of the backtrace. Also
1112 if people have strong opinions against reading symbols for
1113 backtrace this may have to be an option. */
1114 i = count;
1115 for (fi = trailing;
1116 fi != NULL && i--;
1117 fi = get_prev_frame (fi))
1118 {
1119 QUIT;
1120 ps = find_pc_psymtab (fi->pc);
1121 if (ps)
1122 PSYMTAB_TO_SYMTAB (ps); /* Force syms to come in */
1123 }
1124 }
1125
1126 for (i = 0, fi = trailing;
1127 fi && count--;
1128 i++, fi = get_prev_frame (fi))
1129 {
1130 QUIT;
1131
1132 /* Don't use print_stack_frame; if an error() occurs it probably
1133 means further attempts to backtrace would fail (on the other
1134 hand, perhaps the code does or could be fixed to make sure
1135 the frame->prev field gets set to NULL in that case). */
1136 print_frame_info_base (fi, trailing_level + i, 0, 1);
1137 if (show_locals)
1138 print_frame_local_vars (fi, 1, gdb_stdout);
1139 }
1140
1141 /* If we've stopped before the end, mention that. */
1142 if (fi && from_tty)
1143 printf_filtered ("(More stack frames follow...)\n");
1144 }
1145
1146 static void
1147 backtrace_command (char *arg, int from_tty)
1148 {
1149 struct cleanup *old_chain = (struct cleanup *) NULL;
1150 char **argv = (char **) NULL;
1151 int argIndicatingFullTrace = (-1), totArgLen = 0, argc = 0;
1152 char *argPtr = arg;
1153
1154 if (arg != (char *) NULL)
1155 {
1156 int i;
1157
1158 argv = buildargv (arg);
1159 old_chain = make_cleanup_freeargv (argv);
1160 argc = 0;
1161 for (i = 0; (argv[i] != (char *) NULL); i++)
1162 {
1163 unsigned int j;
1164
1165 for (j = 0; (j < strlen (argv[i])); j++)
1166 argv[i][j] = tolower (argv[i][j]);
1167
1168 if (argIndicatingFullTrace < 0 && subset_compare (argv[i], "full"))
1169 argIndicatingFullTrace = argc;
1170 else
1171 {
1172 argc++;
1173 totArgLen += strlen (argv[i]);
1174 }
1175 }
1176 totArgLen += argc;
1177 if (argIndicatingFullTrace >= 0)
1178 {
1179 if (totArgLen > 0)
1180 {
1181 argPtr = (char *) xmalloc (totArgLen + 1);
1182 if (!argPtr)
1183 nomem (0);
1184 else
1185 {
1186 memset (argPtr, 0, totArgLen + 1);
1187 for (i = 0; (i < (argc + 1)); i++)
1188 {
1189 if (i != argIndicatingFullTrace)
1190 {
1191 strcat (argPtr, argv[i]);
1192 strcat (argPtr, " ");
1193 }
1194 }
1195 }
1196 }
1197 else
1198 argPtr = (char *) NULL;
1199 }
1200 }
1201
1202 backtrace_command_1 (argPtr, (argIndicatingFullTrace >= 0), from_tty);
1203
1204 if (argIndicatingFullTrace >= 0 && totArgLen > 0)
1205 xfree (argPtr);
1206
1207 if (old_chain)
1208 do_cleanups (old_chain);
1209 }
1210
1211 static void backtrace_full_command (char *arg, int from_tty);
1212 static void
1213 backtrace_full_command (char *arg, int from_tty)
1214 {
1215 backtrace_command_1 (arg, 1, from_tty);
1216 }
1217 \f
1218
1219 /* Print the local variables of a block B active in FRAME.
1220 Return 1 if any variables were printed; 0 otherwise. */
1221
1222 static int
1223 print_block_frame_locals (struct block *b, register struct frame_info *fi,
1224 int num_tabs, register struct ui_file *stream)
1225 {
1226 int nsyms;
1227 register int i, j;
1228 register struct symbol *sym;
1229 register int values_printed = 0;
1230
1231 nsyms = BLOCK_NSYMS (b);
1232
1233 for (i = 0; i < nsyms; i++)
1234 {
1235 sym = BLOCK_SYM (b, i);
1236 switch (SYMBOL_CLASS (sym))
1237 {
1238 case LOC_LOCAL:
1239 case LOC_REGISTER:
1240 case LOC_STATIC:
1241 case LOC_BASEREG:
1242 values_printed = 1;
1243 for (j = 0; j < num_tabs; j++)
1244 fputs_filtered ("\t", stream);
1245 fputs_filtered (SYMBOL_SOURCE_NAME (sym), stream);
1246 fputs_filtered (" = ", stream);
1247 print_variable_value (sym, fi, stream);
1248 fprintf_filtered (stream, "\n");
1249 break;
1250
1251 default:
1252 /* Ignore symbols which are not locals. */
1253 break;
1254 }
1255 }
1256 return values_printed;
1257 }
1258
1259 /* Same, but print labels. */
1260
1261 static int
1262 print_block_frame_labels (struct block *b, int *have_default,
1263 register struct ui_file *stream)
1264 {
1265 int nsyms;
1266 register int i;
1267 register struct symbol *sym;
1268 register int values_printed = 0;
1269
1270 nsyms = BLOCK_NSYMS (b);
1271
1272 for (i = 0; i < nsyms; i++)
1273 {
1274 sym = BLOCK_SYM (b, i);
1275 if (STREQ (SYMBOL_NAME (sym), "default"))
1276 {
1277 if (*have_default)
1278 continue;
1279 *have_default = 1;
1280 }
1281 if (SYMBOL_CLASS (sym) == LOC_LABEL)
1282 {
1283 struct symtab_and_line sal;
1284 sal = find_pc_line (SYMBOL_VALUE_ADDRESS (sym), 0);
1285 values_printed = 1;
1286 fputs_filtered (SYMBOL_SOURCE_NAME (sym), stream);
1287 if (addressprint)
1288 {
1289 fprintf_filtered (stream, " ");
1290 print_address_numeric (SYMBOL_VALUE_ADDRESS (sym), 1, stream);
1291 }
1292 fprintf_filtered (stream, " in file %s, line %d\n",
1293 sal.symtab->filename, sal.line);
1294 }
1295 }
1296 return values_printed;
1297 }
1298
1299 /* Print on STREAM all the local variables in frame FRAME,
1300 including all the blocks active in that frame
1301 at its current pc.
1302
1303 Returns 1 if the job was done,
1304 or 0 if nothing was printed because we have no info
1305 on the function running in FRAME. */
1306
1307 static void
1308 print_frame_local_vars (register struct frame_info *fi, register int num_tabs,
1309 register struct ui_file *stream)
1310 {
1311 register struct block *block = get_frame_block (fi);
1312 register int values_printed = 0;
1313
1314 if (block == 0)
1315 {
1316 fprintf_filtered (stream, "No symbol table info available.\n");
1317 return;
1318 }
1319
1320 while (block != 0)
1321 {
1322 if (print_block_frame_locals (block, fi, num_tabs, stream))
1323 values_printed = 1;
1324 /* After handling the function's top-level block, stop.
1325 Don't continue to its superblock, the block of
1326 per-file symbols. */
1327 if (BLOCK_FUNCTION (block))
1328 break;
1329 block = BLOCK_SUPERBLOCK (block);
1330 }
1331
1332 if (!values_printed)
1333 {
1334 fprintf_filtered (stream, "No locals.\n");
1335 }
1336 }
1337
1338 /* Same, but print labels. */
1339
1340 static void
1341 print_frame_label_vars (register struct frame_info *fi, int this_level_only,
1342 register struct ui_file *stream)
1343 {
1344 register struct blockvector *bl;
1345 register struct block *block = get_frame_block (fi);
1346 register int values_printed = 0;
1347 int index, have_default = 0;
1348 char *blocks_printed;
1349 CORE_ADDR pc = fi->pc;
1350
1351 if (block == 0)
1352 {
1353 fprintf_filtered (stream, "No symbol table info available.\n");
1354 return;
1355 }
1356
1357 bl = blockvector_for_pc (BLOCK_END (block) - 4, &index);
1358 blocks_printed = (char *) alloca (BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
1359 memset (blocks_printed, 0, BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
1360
1361 while (block != 0)
1362 {
1363 CORE_ADDR end = BLOCK_END (block) - 4;
1364 int last_index;
1365
1366 if (bl != blockvector_for_pc (end, &index))
1367 error ("blockvector blotch");
1368 if (BLOCKVECTOR_BLOCK (bl, index) != block)
1369 error ("blockvector botch");
1370 last_index = BLOCKVECTOR_NBLOCKS (bl);
1371 index += 1;
1372
1373 /* Don't print out blocks that have gone by. */
1374 while (index < last_index
1375 && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < pc)
1376 index++;
1377
1378 while (index < last_index
1379 && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < end)
1380 {
1381 if (blocks_printed[index] == 0)
1382 {
1383 if (print_block_frame_labels (BLOCKVECTOR_BLOCK (bl, index), &have_default, stream))
1384 values_printed = 1;
1385 blocks_printed[index] = 1;
1386 }
1387 index++;
1388 }
1389 if (have_default)
1390 return;
1391 if (values_printed && this_level_only)
1392 return;
1393
1394 /* After handling the function's top-level block, stop.
1395 Don't continue to its superblock, the block of
1396 per-file symbols. */
1397 if (BLOCK_FUNCTION (block))
1398 break;
1399 block = BLOCK_SUPERBLOCK (block);
1400 }
1401
1402 if (!values_printed && !this_level_only)
1403 {
1404 fprintf_filtered (stream, "No catches.\n");
1405 }
1406 }
1407
1408 /* ARGSUSED */
1409 void
1410 locals_info (char *args, int from_tty)
1411 {
1412 if (!selected_frame)
1413 error ("No frame selected.");
1414 print_frame_local_vars (selected_frame, 0, gdb_stdout);
1415 }
1416
1417 static void
1418 catch_info (char *ignore, int from_tty)
1419 {
1420 struct symtab_and_line *sal;
1421
1422 /* Check for target support for exception handling */
1423 sal = target_enable_exception_callback (EX_EVENT_CATCH, 1);
1424 if (sal)
1425 {
1426 /* Currently not handling this */
1427 /* Ideally, here we should interact with the C++ runtime
1428 system to find the list of active handlers, etc. */
1429 fprintf_filtered (gdb_stdout, "Info catch not supported with this target/compiler combination.\n");
1430 #if 0
1431 if (!selected_frame)
1432 error ("No frame selected.");
1433 #endif
1434 }
1435 else
1436 {
1437 /* Assume g++ compiled code -- old v 4.16 behaviour */
1438 if (!selected_frame)
1439 error ("No frame selected.");
1440
1441 print_frame_label_vars (selected_frame, 0, gdb_stdout);
1442 }
1443 }
1444
1445 static void
1446 print_frame_arg_vars (register struct frame_info *fi,
1447 register struct ui_file *stream)
1448 {
1449 struct symbol *func = get_frame_function (fi);
1450 register struct block *b;
1451 int nsyms;
1452 register int i;
1453 register struct symbol *sym, *sym2;
1454 register int values_printed = 0;
1455
1456 if (func == 0)
1457 {
1458 fprintf_filtered (stream, "No symbol table info available.\n");
1459 return;
1460 }
1461
1462 b = SYMBOL_BLOCK_VALUE (func);
1463 nsyms = BLOCK_NSYMS (b);
1464
1465 for (i = 0; i < nsyms; i++)
1466 {
1467 sym = BLOCK_SYM (b, i);
1468 switch (SYMBOL_CLASS (sym))
1469 {
1470 case LOC_ARG:
1471 case LOC_LOCAL_ARG:
1472 case LOC_REF_ARG:
1473 case LOC_REGPARM:
1474 case LOC_REGPARM_ADDR:
1475 case LOC_BASEREG_ARG:
1476 values_printed = 1;
1477 fputs_filtered (SYMBOL_SOURCE_NAME (sym), stream);
1478 fputs_filtered (" = ", stream);
1479
1480 /* We have to look up the symbol because arguments can have
1481 two entries (one a parameter, one a local) and the one we
1482 want is the local, which lookup_symbol will find for us.
1483 This includes gcc1 (not gcc2) on the sparc when passing a
1484 small structure and gcc2 when the argument type is float
1485 and it is passed as a double and converted to float by
1486 the prologue (in the latter case the type of the LOC_ARG
1487 symbol is double and the type of the LOC_LOCAL symbol is
1488 float). There are also LOC_ARG/LOC_REGISTER pairs which
1489 are not combined in symbol-reading. */
1490
1491 sym2 = lookup_symbol (SYMBOL_NAME (sym),
1492 b, VAR_NAMESPACE, (int *) NULL, (struct symtab **) NULL);
1493 print_variable_value (sym2, fi, stream);
1494 fprintf_filtered (stream, "\n");
1495 break;
1496
1497 default:
1498 /* Don't worry about things which aren't arguments. */
1499 break;
1500 }
1501 }
1502
1503 if (!values_printed)
1504 {
1505 fprintf_filtered (stream, "No arguments.\n");
1506 }
1507 }
1508
1509 void
1510 args_info (char *ignore, int from_tty)
1511 {
1512 if (!selected_frame)
1513 error ("No frame selected.");
1514 print_frame_arg_vars (selected_frame, gdb_stdout);
1515 }
1516
1517
1518 static void
1519 args_plus_locals_info (char *ignore, int from_tty)
1520 {
1521 args_info (ignore, from_tty);
1522 locals_info (ignore, from_tty);
1523 }
1524 \f
1525
1526 /* Select frame FI, and note that its stack level is LEVEL.
1527 LEVEL may be -1 if an actual level number is not known. */
1528
1529 void
1530 select_frame (struct frame_info *fi, int level)
1531 {
1532 register struct symtab *s;
1533
1534 selected_frame = fi;
1535 selected_frame_level = level;
1536 if (selected_frame_level_changed_hook)
1537 selected_frame_level_changed_hook (level);
1538
1539 /* Ensure that symbols for this frame are read in. Also, determine the
1540 source language of this frame, and switch to it if desired. */
1541 if (fi)
1542 {
1543 s = find_pc_symtab (fi->pc);
1544 if (s
1545 && s->language != current_language->la_language
1546 && s->language != language_unknown
1547 && language_mode == language_mode_auto)
1548 {
1549 set_language (s->language);
1550 }
1551 /* elz: this if here fixes the problem with the pc not being displayed
1552 in the tui asm layout, with no debug symbols. The value of s
1553 would be 0 here, and select_source_symtab would abort the
1554 command by calling the 'error' function */
1555 if (s)
1556 {
1557 TUIDO (((TuiOpaqueFuncPtr) tui_vSelectSourceSymtab, s));
1558 }
1559 }
1560 }
1561 \f
1562
1563 /* Select frame FI, noting that its stack level is LEVEL. Also print
1564 the stack frame and show the source if this is the tui version. */
1565 void
1566 select_and_print_frame (struct frame_info *fi, int level)
1567 {
1568 select_frame (fi, level);
1569 if (fi)
1570 {
1571 print_stack_frame (fi, level, 1);
1572 TUIDO (((TuiOpaqueFuncPtr) tui_vCheckDataValues, fi));
1573 }
1574 }
1575 \f
1576
1577 /* Select frame FI, noting that its stack level is LEVEL. Be silent if
1578 not the TUI */
1579 #if 0
1580 void
1581 select_and_maybe_print_frame (struct frame_info *fi, int level)
1582 {
1583 if (!tui_version)
1584 select_frame (fi, level);
1585 else
1586 select_and_print_frame (fi, level);
1587 }
1588 #endif
1589
1590
1591 /* Store the selected frame and its level into *FRAMEP and *LEVELP.
1592 If there is no selected frame, *FRAMEP is set to NULL. */
1593
1594 void
1595 record_selected_frame (CORE_ADDR *frameaddrp, int *levelp)
1596 {
1597 *frameaddrp = selected_frame ? selected_frame->frame : 0;
1598 *levelp = selected_frame_level;
1599 }
1600
1601 /* Return the symbol-block in which the selected frame is executing.
1602 Can return zero under various legitimate circumstances. */
1603
1604 struct block *
1605 get_selected_block (void)
1606 {
1607 if (!target_has_stack)
1608 return 0;
1609
1610 if (!selected_frame)
1611 return get_current_block ();
1612 return get_frame_block (selected_frame);
1613 }
1614
1615 /* Find a frame a certain number of levels away from FRAME.
1616 LEVEL_OFFSET_PTR points to an int containing the number of levels.
1617 Positive means go to earlier frames (up); negative, the reverse.
1618 The int that contains the number of levels is counted toward
1619 zero as the frames for those levels are found.
1620 If the top or bottom frame is reached, that frame is returned,
1621 but the final value of *LEVEL_OFFSET_PTR is nonzero and indicates
1622 how much farther the original request asked to go. */
1623
1624 struct frame_info *
1625 find_relative_frame (register struct frame_info *frame,
1626 register int *level_offset_ptr)
1627 {
1628 register struct frame_info *prev;
1629 register struct frame_info *frame1;
1630
1631 /* Going up is simple: just do get_prev_frame enough times
1632 or until initial frame is reached. */
1633 while (*level_offset_ptr > 0)
1634 {
1635 prev = get_prev_frame (frame);
1636 if (prev == 0)
1637 break;
1638 (*level_offset_ptr)--;
1639 frame = prev;
1640 }
1641 /* Going down is just as simple. */
1642 if (*level_offset_ptr < 0)
1643 {
1644 while (*level_offset_ptr < 0)
1645 {
1646 frame1 = get_next_frame (frame);
1647 if (!frame1)
1648 break;
1649 frame = frame1;
1650 (*level_offset_ptr)++;
1651 }
1652 }
1653 return frame;
1654 }
1655
1656 /* The "select_frame" command. With no arg, NOP.
1657 With arg LEVEL_EXP, select the frame at level LEVEL if it is a
1658 valid level. Otherwise, treat level_exp as an address expression
1659 and select it. See parse_frame_specification for more info on proper
1660 frame expressions. */
1661
1662 /* ARGSUSED */
1663 #ifdef UI_OUT
1664 void
1665 select_frame_command_wrapper (char *level_exp, int from_tty)
1666 {
1667 select_frame_command (level_exp, from_tty);
1668 }
1669 #endif
1670 static void
1671 select_frame_command (char *level_exp, int from_tty)
1672 {
1673 register struct frame_info *frame, *frame1;
1674 unsigned int level = 0;
1675
1676 if (!target_has_stack)
1677 error ("No stack.");
1678
1679 frame = parse_frame_specification (level_exp);
1680
1681 /* Try to figure out what level this frame is. But if there is
1682 no current stack, don't error out -- let the user set one. */
1683 frame1 = 0;
1684 if (get_current_frame ())
1685 {
1686 for (frame1 = get_prev_frame (0);
1687 frame1 && frame1 != frame;
1688 frame1 = get_prev_frame (frame1))
1689 level++;
1690 }
1691
1692 if (!frame1)
1693 level = 0;
1694
1695 select_frame (frame, level);
1696 }
1697
1698 /* The "frame" command. With no arg, print selected frame briefly.
1699 With arg, behaves like select_frame and then prints the selected
1700 frame. */
1701
1702 void
1703 frame_command (char *level_exp, int from_tty)
1704 {
1705 select_frame_command (level_exp, from_tty);
1706 show_and_print_stack_frame (selected_frame, selected_frame_level, 1);
1707 }
1708
1709 /* The XDB Compatibility command to print the current frame. */
1710
1711 static void
1712 current_frame_command (char *level_exp, int from_tty)
1713 {
1714 if (target_has_stack == 0 || selected_frame == 0)
1715 error ("No stack.");
1716 print_only_stack_frame (selected_frame, selected_frame_level, 1);
1717 }
1718
1719 /* Select the frame up one or COUNT stack levels
1720 from the previously selected frame, and print it briefly. */
1721
1722 /* ARGSUSED */
1723 static void
1724 up_silently_base (char *count_exp)
1725 {
1726 register struct frame_info *fi;
1727 int count = 1, count1;
1728 if (count_exp)
1729 count = parse_and_eval_long (count_exp);
1730 count1 = count;
1731
1732 if (target_has_stack == 0 || selected_frame == 0)
1733 error ("No stack.");
1734
1735 fi = find_relative_frame (selected_frame, &count1);
1736 if (count1 != 0 && count_exp == 0)
1737 error ("Initial frame selected; you cannot go up.");
1738 select_frame (fi, selected_frame_level + count - count1);
1739 }
1740
1741 static void
1742 up_silently_command (char *count_exp, int from_tty)
1743 {
1744 up_silently_base (count_exp);
1745 if (tui_version)
1746 print_stack_frame (selected_frame, selected_frame_level, 1);
1747 }
1748
1749 static void
1750 up_command (char *count_exp, int from_tty)
1751 {
1752 up_silently_base (count_exp);
1753 show_and_print_stack_frame (selected_frame, selected_frame_level, 1);
1754 }
1755
1756 /* Select the frame down one or COUNT stack levels
1757 from the previously selected frame, and print it briefly. */
1758
1759 /* ARGSUSED */
1760 static void
1761 down_silently_base (char *count_exp)
1762 {
1763 register struct frame_info *frame;
1764 int count = -1, count1;
1765 if (count_exp)
1766 count = -parse_and_eval_long (count_exp);
1767 count1 = count;
1768
1769 if (target_has_stack == 0 || selected_frame == 0)
1770 error ("No stack.");
1771
1772 frame = find_relative_frame (selected_frame, &count1);
1773 if (count1 != 0 && count_exp == 0)
1774 {
1775
1776 /* We only do this if count_exp is not specified. That way "down"
1777 means to really go down (and let me know if that is
1778 impossible), but "down 9999" can be used to mean go all the way
1779 down without getting an error. */
1780
1781 error ("Bottom (i.e., innermost) frame selected; you cannot go down.");
1782 }
1783
1784 select_frame (frame, selected_frame_level + count - count1);
1785 }
1786
1787 /* ARGSUSED */
1788 static void
1789 down_silently_command (char *count_exp, int from_tty)
1790 {
1791 down_silently_base (count_exp);
1792 if (tui_version)
1793 print_stack_frame (selected_frame, selected_frame_level, 1);
1794 }
1795
1796 static void
1797 down_command (char *count_exp, int from_tty)
1798 {
1799 down_silently_base (count_exp);
1800 show_and_print_stack_frame (selected_frame, selected_frame_level, 1);
1801 }
1802 \f
1803 #ifdef UI_OUT
1804 void
1805 return_command_wrapper (char *retval_exp, int from_tty)
1806 {
1807 return_command (retval_exp, from_tty);
1808 }
1809 #endif
1810 static void
1811 return_command (char *retval_exp, int from_tty)
1812 {
1813 struct symbol *thisfun;
1814 CORE_ADDR selected_frame_addr;
1815 CORE_ADDR selected_frame_pc;
1816 struct frame_info *frame;
1817 value_ptr return_value = NULL;
1818
1819 if (selected_frame == NULL)
1820 error ("No selected frame.");
1821 thisfun = get_frame_function (selected_frame);
1822 selected_frame_addr = FRAME_FP (selected_frame);
1823 selected_frame_pc = selected_frame->pc;
1824
1825 /* Compute the return value (if any -- possibly getting errors here). */
1826
1827 if (retval_exp)
1828 {
1829 struct type *return_type = NULL;
1830
1831 return_value = parse_and_eval (retval_exp);
1832
1833 /* Cast return value to the return type of the function. */
1834 if (thisfun != NULL)
1835 return_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (thisfun));
1836 if (return_type == NULL)
1837 return_type = builtin_type_int;
1838 return_value = value_cast (return_type, return_value);
1839
1840 /* Make sure we have fully evaluated it, since
1841 it might live in the stack frame we're about to pop. */
1842 if (VALUE_LAZY (return_value))
1843 value_fetch_lazy (return_value);
1844 }
1845
1846 /* If interactive, require confirmation. */
1847
1848 if (from_tty)
1849 {
1850 if (thisfun != 0)
1851 {
1852 if (!query ("Make %s return now? ", SYMBOL_SOURCE_NAME (thisfun)))
1853 {
1854 error ("Not confirmed.");
1855 /* NOTREACHED */
1856 }
1857 }
1858 else if (!query ("Make selected stack frame return now? "))
1859 error ("Not confirmed.");
1860 }
1861
1862 /* Do the real work. Pop until the specified frame is current. We
1863 use this method because the selected_frame is not valid after
1864 a POP_FRAME. The pc comparison makes this work even if the
1865 selected frame shares its fp with another frame. */
1866
1867 while (selected_frame_addr != (frame = get_current_frame ())->frame
1868 || selected_frame_pc != frame->pc)
1869 POP_FRAME;
1870
1871 /* Then pop that frame. */
1872
1873 POP_FRAME;
1874
1875 /* Compute the return value (if any) and store in the place
1876 for return values. */
1877
1878 if (retval_exp)
1879 set_return_value (return_value);
1880
1881 /* If we are at the end of a call dummy now, pop the dummy frame too. */
1882
1883 if (CALL_DUMMY_HAS_COMPLETED (read_pc(), read_sp (),
1884 FRAME_FP (get_current_frame ())))
1885 POP_FRAME;
1886
1887 /* If interactive, print the frame that is now current. */
1888
1889 if (from_tty)
1890 frame_command ("0", 1);
1891 else
1892 select_frame_command ("0", 0);
1893 }
1894
1895 /* Sets the scope to input function name, provided that the
1896 function is within the current stack frame */
1897
1898 struct function_bounds
1899 {
1900 CORE_ADDR low, high;
1901 };
1902
1903 static void func_command (char *arg, int from_tty);
1904 static void
1905 func_command (char *arg, int from_tty)
1906 {
1907 struct frame_info *fp;
1908 int found = 0;
1909 struct symtabs_and_lines sals;
1910 int i;
1911 int level = 1;
1912 struct function_bounds *func_bounds = (struct function_bounds *) NULL;
1913
1914 if (arg != (char *) NULL)
1915 return;
1916
1917 fp = parse_frame_specification ("0");
1918 sals = decode_line_spec (arg, 1);
1919 func_bounds = (struct function_bounds *) xmalloc (
1920 sizeof (struct function_bounds) * sals.nelts);
1921 for (i = 0; (i < sals.nelts && !found); i++)
1922 {
1923 if (sals.sals[i].pc == (CORE_ADDR) 0 ||
1924 find_pc_partial_function (sals.sals[i].pc,
1925 (char **) NULL,
1926 &func_bounds[i].low,
1927 &func_bounds[i].high) == 0)
1928 {
1929 func_bounds[i].low =
1930 func_bounds[i].high = (CORE_ADDR) NULL;
1931 }
1932 }
1933
1934 do
1935 {
1936 for (i = 0; (i < sals.nelts && !found); i++)
1937 found = (fp->pc >= func_bounds[i].low &&
1938 fp->pc < func_bounds[i].high);
1939 if (!found)
1940 {
1941 level = 1;
1942 fp = find_relative_frame (fp, &level);
1943 }
1944 }
1945 while (!found && level == 0);
1946
1947 if (func_bounds)
1948 xfree (func_bounds);
1949
1950 if (!found)
1951 printf_filtered ("'%s' not within current stack frame.\n", arg);
1952 else if (fp != selected_frame)
1953 select_and_print_frame (fp, level);
1954 }
1955
1956 /* Gets the language of the current frame. */
1957
1958 enum language
1959 get_frame_language (void)
1960 {
1961 register struct symtab *s;
1962 enum language flang; /* The language of the current frame */
1963
1964 if (selected_frame)
1965 {
1966 s = find_pc_symtab (selected_frame->pc);
1967 if (s)
1968 flang = s->language;
1969 else
1970 flang = language_unknown;
1971 }
1972 else
1973 flang = language_unknown;
1974
1975 return flang;
1976 }
1977 \f
1978 void
1979 _initialize_stack (void)
1980 {
1981 #if 0
1982 backtrace_limit = 30;
1983 #endif
1984
1985 add_com ("return", class_stack, return_command,
1986 "Make selected stack frame return to its caller.\n\
1987 Control remains in the debugger, but when you continue\n\
1988 execution will resume in the frame above the one now selected.\n\
1989 If an argument is given, it is an expression for the value to return.");
1990
1991 add_com ("up", class_stack, up_command,
1992 "Select and print stack frame that called this one.\n\
1993 An argument says how many frames up to go.");
1994 add_com ("up-silently", class_support, up_silently_command,
1995 "Same as the `up' command, but does not print anything.\n\
1996 This is useful in command scripts.");
1997
1998 add_com ("down", class_stack, down_command,
1999 "Select and print stack frame called by this one.\n\
2000 An argument says how many frames down to go.");
2001 add_com_alias ("do", "down", class_stack, 1);
2002 add_com_alias ("dow", "down", class_stack, 1);
2003 add_com ("down-silently", class_support, down_silently_command,
2004 "Same as the `down' command, but does not print anything.\n\
2005 This is useful in command scripts.");
2006
2007 add_com ("frame", class_stack, frame_command,
2008 "Select and print a stack frame.\n\
2009 With no argument, print the selected stack frame. (See also \"info frame\").\n\
2010 An argument specifies the frame to select.\n\
2011 It can be a stack frame number or the address of the frame.\n\
2012 With argument, nothing is printed if input is coming from\n\
2013 a command file or a user-defined command.");
2014
2015 add_com_alias ("f", "frame", class_stack, 1);
2016
2017 if (xdb_commands)
2018 {
2019 add_com ("L", class_stack, current_frame_command,
2020 "Print the current stack frame.\n");
2021 add_com_alias ("V", "frame", class_stack, 1);
2022 }
2023 add_com ("select-frame", class_stack, select_frame_command,
2024 "Select a stack frame without printing anything.\n\
2025 An argument specifies the frame to select.\n\
2026 It can be a stack frame number or the address of the frame.\n");
2027
2028 add_com ("backtrace", class_stack, backtrace_command,
2029 "Print backtrace of all stack frames, or innermost COUNT frames.\n\
2030 With a negative argument, print outermost -COUNT frames.\n\
2031 Use of the 'full' qualifier also prints the values of the local variables.\n");
2032 add_com_alias ("bt", "backtrace", class_stack, 0);
2033 if (xdb_commands)
2034 {
2035 add_com_alias ("t", "backtrace", class_stack, 0);
2036 add_com ("T", class_stack, backtrace_full_command,
2037 "Print backtrace of all stack frames, or innermost COUNT frames \n\
2038 and the values of the local variables.\n\
2039 With a negative argument, print outermost -COUNT frames.\n\
2040 Usage: T <count>\n");
2041 }
2042
2043 add_com_alias ("where", "backtrace", class_alias, 0);
2044 add_info ("stack", backtrace_command,
2045 "Backtrace of the stack, or innermost COUNT frames.");
2046 add_info_alias ("s", "stack", 1);
2047 add_info ("frame", frame_info,
2048 "All about selected stack frame, or frame at ADDR.");
2049 add_info_alias ("f", "frame", 1);
2050 add_info ("locals", locals_info,
2051 "Local variables of current stack frame.");
2052 add_info ("args", args_info,
2053 "Argument variables of current stack frame.");
2054 if (xdb_commands)
2055 add_com ("l", class_info, args_plus_locals_info,
2056 "Argument and local variables of current stack frame.");
2057
2058 if (dbx_commands)
2059 add_com ("func", class_stack, func_command,
2060 "Select the stack frame that contains <func>.\nUsage: func <name>\n");
2061
2062 add_info ("catch", catch_info,
2063 "Exceptions that can be caught in the current stack frame.");
2064
2065 #if 0
2066 add_cmd ("backtrace-limit", class_stack, set_backtrace_limit_command,
2067 "Specify maximum number of frames for \"backtrace\" to print by default.",
2068 &setlist);
2069 add_info ("backtrace-limit", backtrace_limit_info,
2070 "The maximum number of frames for \"backtrace\" to print by default.");
2071 #endif
2072 }
This page took 0.073703 seconds and 4 git commands to generate.