1 /* Print and select stack frames for GDB, the GNU debugger.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
3 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
5 This file is part of GDB.
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.
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.
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. */
24 #include "gdb_string.h"
28 #include "expression.h"
34 #include "breakpoint.h"
42 /* Prototypes for exported functions. */
44 void args_info (char *, int);
46 void locals_info (char *, int);
48 void (*selected_frame_level_changed_hook) (int);
50 void _initialize_stack (void);
52 /* Prototypes for local functions. */
54 static void return_command (char *, int);
56 static void down_command (char *, int);
58 static void down_silently_base (char *);
60 static void down_silently_command (char *, int);
62 static void up_command (char *, int);
64 static void up_silently_base (char *);
66 static void up_silently_command (char *, int);
68 void frame_command (char *, int);
70 static void current_frame_command (char *, int);
72 static void select_frame_command (char *, int);
74 static void print_frame_arg_vars (struct frame_info *, struct ui_file *);
76 static void catch_info (char *, int);
78 static void args_plus_locals_info (char *, int);
80 static void print_frame_label_vars (struct frame_info *, int,
83 static void print_frame_local_vars (struct frame_info *, int,
86 static int print_block_frame_labels (struct block *, int *,
89 static int print_block_frame_locals (struct block *,
94 static void print_frame (struct frame_info *fi,
98 struct symtab_and_line sal);
100 static void print_frame_info_base (struct frame_info *, int, int, int);
102 static void print_stack_frame_base (struct frame_info *, int, int);
104 static void backtrace_command (char *, int);
106 struct frame_info *parse_frame_specification (char *);
108 static void frame_info (char *, int);
110 extern int addressprint; /* Print addresses, or stay symbolic only? */
111 extern int info_verbose; /* Verbosity of symbol reading msgs */
112 extern int lines_to_list; /* # of lines "list" command shows by default */
114 /* The "selected" stack frame is used by default for local and arg access.
115 May be zero, for no selected frame. */
117 struct frame_info *selected_frame;
119 /* Level of the selected frame:
120 0 for innermost, 1 for its caller, ...
121 or -1 for frame specified by address with no defined level. */
123 int selected_frame_level;
125 /* Zero means do things normally; we are interacting directly with the
126 user. One means print the full filename and linenumber when a
127 frame is printed, and do so in a format emacs18/emacs19.22 can
128 parse. Two means print similar annotations, but in many more
129 cases and in a slightly different syntax. */
131 int annotation_level = 0;
134 struct print_stack_frame_args
136 struct frame_info *fi;
142 static int print_stack_frame_base_stub (char *);
144 /* Show and print the frame arguments.
145 Pass the args the way catch_errors wants them. */
146 static int show_and_print_stack_frame_stub (void *args);
148 show_and_print_stack_frame_stub (void *args)
150 struct print_stack_frame_args *p = (struct print_stack_frame_args *) args;
152 print_frame_info (p->fi, p->level, p->source, p->args);
157 /* Show or print the frame arguments.
158 Pass the args the way catch_errors wants them. */
159 static int print_stack_frame_stub (void *args);
161 print_stack_frame_stub (void *args)
163 struct print_stack_frame_args *p = (struct print_stack_frame_args *) args;
165 print_frame_info_base (p->fi, p->level, p->source, p->args);
169 /* Print a stack frame briefly. FRAME_INFI should be the frame info
170 and LEVEL should be its level in the stack (or -1 for level not
173 /* Pass the args the way catch_errors wants them. */
175 print_stack_frame_base_stub (char *args)
177 struct print_stack_frame_args *p = (struct print_stack_frame_args *) args;
179 print_frame_info_base (p->fi, p->level, p->source, p->args);
183 /* print the frame arguments to the terminal.
184 Pass the args the way catch_errors wants them. */
185 static int print_only_stack_frame_stub (void *);
187 print_only_stack_frame_stub (void *args)
189 struct print_stack_frame_args *p = (struct print_stack_frame_args *) args;
191 print_frame_info_base (p->fi, p->level, p->source, p->args);
195 /* Print a stack frame briefly. FRAME_INFI should be the frame info
196 and LEVEL should be its level in the stack (or -1 for level not defined).
197 This prints the level, the function executing, the arguments,
198 and the file name and line number.
199 If the pc is not at the beginning of the source line,
200 the actual pc is printed at the beginning.
202 If SOURCE is 1, print the source line as well.
203 If SOURCE is -1, print ONLY the source line. */
206 print_stack_frame_base (struct frame_info *fi, int level, int source)
208 struct print_stack_frame_args args;
212 args.source = source;
215 catch_errors (print_stack_frame_stub, &args, "", RETURN_MASK_ALL);
218 /* Show and print a stack frame briefly. FRAME_INFI should be the frame info
219 and LEVEL should be its level in the stack (or -1 for level not defined).
220 This prints the level, the function executing, the arguments,
221 and the file name and line number.
222 If the pc is not at the beginning of the source line,
223 the actual pc is printed at the beginning.
225 If SOURCE is 1, print the source line as well.
226 If SOURCE is -1, print ONLY the source line. */
229 show_and_print_stack_frame (struct frame_info *fi, int level, int source)
231 struct print_stack_frame_args args;
235 args.source = source;
238 catch_errors (show_and_print_stack_frame_stub, &args, "", RETURN_MASK_ALL);
242 /* Show or print a stack frame briefly. FRAME_INFI should be the frame info
243 and LEVEL should be its level in the stack (or -1 for level not defined).
244 This prints the level, the function executing, the arguments,
245 and the file name and line number.
246 If the pc is not at the beginning of the source line,
247 the actual pc is printed at the beginning.
249 If SOURCE is 1, print the source line as well.
250 If SOURCE is -1, print ONLY the source line. */
253 print_stack_frame (struct frame_info *fi, int level, int source)
255 struct print_stack_frame_args args;
259 args.source = source;
262 catch_errors (print_stack_frame_stub, (char *) &args, "", RETURN_MASK_ALL);
265 /* Print a stack frame briefly. FRAME_INFI should be the frame info
266 and LEVEL should be its level in the stack (or -1 for level not defined).
267 This prints the level, the function executing, the arguments,
268 and the file name and line number.
269 If the pc is not at the beginning of the source line,
270 the actual pc is printed at the beginning.
272 If SOURCE is 1, print the source line as well.
273 If SOURCE is -1, print ONLY the source line. */
276 print_only_stack_frame (struct frame_info *fi, int level, int source)
278 struct print_stack_frame_args args;
282 args.source = source;
285 catch_errors (print_only_stack_frame_stub, &args, "", RETURN_MASK_ALL);
288 struct print_args_args
291 struct frame_info *fi;
292 struct ui_file *stream;
295 static int print_args_stub (PTR);
297 /* Pass the args the way catch_errors wants them. */
300 print_args_stub (PTR args)
303 struct print_args_args *p = (struct print_args_args *) args;
305 numargs = FRAME_NUM_ARGS (p->fi);
306 print_frame_args (p->func, p->fi, numargs, p->stream);
310 /* Print information about a frame for frame "fi" at level "level".
311 Used in "where" output, also used to emit breakpoint or step
313 LEVEL is the level of the frame, or -1 if it is the
314 innermost frame but we don't want to print the level.
315 The meaning of the SOURCE argument is:
316 SRC_LINE: Print only source line
317 LOCATION: Print only location
318 LOC_AND_SRC: Print location and source line. */
321 print_frame_info_base (struct frame_info *fi, int level, int source, int args)
323 struct symtab_and_line sal;
328 char buf[MAX_REGISTER_RAW_SIZE];
331 /* On the 68k, this spends too much time in m68k_find_saved_regs. */
333 /* Get the value of SP_REGNUM relative to the frame. */
334 get_saved_register (buf, (int *) NULL, (CORE_ADDR *) NULL,
335 FRAME_INFO_ID (fi), SP_REGNUM, (enum lval_type *) NULL);
336 sp = extract_address (buf, REGISTER_RAW_SIZE (SP_REGNUM));
338 /* This is not a perfect test, because if a function alloca's some
339 memory, puts some code there, and then jumps into it, then the test
340 will succeed even though there is no call dummy. Probably best is
341 to check for a bp_call_dummy breakpoint. */
342 if (PC_IN_CALL_DUMMY (fi->pc, sp, fi->frame))
344 if (frame_in_dummy (fi))
347 annotate_frame_begin (level == -1 ? 0 : level, fi->pc);
349 /* Do this regardless of SOURCE because we don't have any source
350 to list for this frame. */
352 printf_filtered ("#%-2d ", level);
353 annotate_function_call ();
354 printf_filtered ("<function called from gdb>\n");
355 annotate_frame_end ();
358 if (fi->signal_handler_caller)
360 annotate_frame_begin (level == -1 ? 0 : level, fi->pc);
362 /* Do this regardless of SOURCE because we don't have any source
363 to list for this frame. */
365 printf_filtered ("#%-2d ", level);
366 annotate_signal_handler_caller ();
367 printf_filtered ("<signal handler called>\n");
368 annotate_frame_end ();
372 /* If fi is not the innermost frame, that normally means that fi->pc
373 points to *after* the call instruction, and we want to get the line
374 containing the call, never the next line. But if the next frame is
375 a signal_handler_caller or a dummy frame, then the next frame was
376 not entered as the result of a call, and we want to get the line
377 containing fi->pc. */
379 find_pc_line (fi->pc,
381 && !fi->next->signal_handler_caller
382 && !frame_in_dummy (fi->next));
384 location_print = (source == LOCATION
385 || source == LOC_AND_ADDRESS
386 || source == SRC_AND_LOC);
388 if (location_print || !sal.symtab)
389 print_frame (fi, level, source, args, sal);
391 source_print = (source == SRC_LINE || source == SRC_AND_LOC);
393 if (source_print && sal.symtab)
396 int mid_statement = (source == SRC_LINE) && (fi->pc != sal.pc);
398 if (annotation_level)
399 done = identify_source_line (sal.symtab, sal.line, mid_statement,
403 if (addressprint && mid_statement)
406 ui_out_field_core_addr (uiout, "addr", fi->pc);
407 ui_out_text (uiout, "\t");
409 print_address_numeric (fi->pc, 1, gdb_stdout);
410 printf_filtered ("\t");
413 if (print_frame_info_listing_hook)
414 print_frame_info_listing_hook (sal.symtab, sal.line, sal.line + 1, 0);
416 print_source_lines (sal.symtab, sal.line, sal.line + 1, 0);
418 current_source_line = max (sal.line - lines_to_list / 2, 1);
422 set_default_breakpoint (1, fi->pc, sal.symtab, sal.line);
424 annotate_frame_end ();
426 gdb_flush (gdb_stdout);
430 print_frame (struct frame_info *fi,
434 struct symtab_and_line sal)
437 register char *funname = 0;
438 enum language funlang = language_unknown;
440 struct ui_stream *stb;
441 struct cleanup *old_chain;
442 struct cleanup *list_chain;
444 stb = ui_out_stream_new (uiout);
445 old_chain = make_cleanup_ui_out_stream_delete (stb);
448 func = find_pc_function (fi->pc);
451 /* In certain pathological cases, the symtabs give the wrong
452 function (when we are in the first function in a file which
453 is compiled without debugging symbols, the previous function
454 is compiled with debugging symbols, and the "foo.o" symbol
455 that is supposed to tell us where the file with debugging symbols
456 ends has been truncated by ar because it is longer than 15
457 characters). This also occurs if the user uses asm() to create
458 a function but not stabs for it (in a file compiled -g).
460 So look in the minimal symbol tables as well, and if it comes
461 up with a larger address for the function use that instead.
462 I don't think this can ever cause any problems; there shouldn't
463 be any minimal symbols in the middle of a function; if this is
464 ever changed many parts of GDB will need to be changed (and we'll
465 create a find_pc_minimal_function or some such). */
467 struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (fi->pc);
469 && (SYMBOL_VALUE_ADDRESS (msymbol)
470 > BLOCK_START (SYMBOL_BLOCK_VALUE (func))))
473 /* There is no particular reason to think the line number
474 information is wrong. Someone might have just put in
475 a label with asm() but left the line numbers alone. */
476 /* In this case we have no way of knowing the source file
477 and line number, so don't print them. */
480 /* We also don't know anything about the function besides
481 its address and name. */
483 funname = SYMBOL_NAME (msymbol);
484 funlang = SYMBOL_LANGUAGE (msymbol);
488 /* I'd like to use SYMBOL_SOURCE_NAME() here, to display the
489 demangled name that we already have stored in the symbol
490 table, but we stored a version with DMGL_PARAMS turned
491 on, and here we don't want to display parameters. So call
492 the demangler again, with DMGL_ANSI only. (Yes, I know
493 that printf_symbol_filtered() will again try to demangle
494 the name on the fly, but the issue is that if
495 cplus_demangle() fails here, it'll fail there too. So we
496 want to catch the failure ("demangled==NULL" case below)
497 here, while we still have our hands on the function
500 funname = SYMBOL_NAME (func);
501 funlang = SYMBOL_LANGUAGE (func);
502 if (funlang == language_cplus)
504 demangled = cplus_demangle (funname, DMGL_ANSI);
505 if (demangled == NULL)
506 /* If the demangler fails, try the demangled name from
507 the symbol table. This'll have parameters, but
508 that's preferable to diplaying a mangled name. */
509 funname = SYMBOL_SOURCE_NAME (func);
515 struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (fi->pc);
518 funname = SYMBOL_NAME (msymbol);
519 funlang = SYMBOL_LANGUAGE (msymbol);
523 annotate_frame_begin (level == -1 ? 0 : level, fi->pc);
526 list_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "frame");
532 ui_out_text (uiout, "#");
533 ui_out_field_fmt (uiout, "level", "%-2d", level);
534 ui_out_spaces (uiout, 1);
536 printf_filtered ("#%-2d ", level);
540 if (fi->pc != sal.pc || !sal.symtab || source == LOC_AND_ADDRESS)
542 annotate_frame_address ();
544 ui_out_field_core_addr (uiout, "addr", fi->pc);
545 annotate_frame_address_end ();
546 ui_out_text (uiout, " in ");
548 print_address_numeric (fi->pc, 1, gdb_stdout);
549 annotate_frame_address_end ();
550 printf_filtered (" in ");
553 annotate_frame_function_name ();
555 fprintf_symbol_filtered (stb->stream, funname ? funname : "??", funlang,
557 ui_out_field_stream (uiout, "func", stb);
558 ui_out_wrap_hint (uiout, " ");
560 fprintf_symbol_filtered (gdb_stdout, funname ? funname : "??", funlang,
564 annotate_frame_args ();
567 ui_out_text (uiout, " (");
569 fputs_filtered (" (", gdb_stdout);
573 struct print_args_args args;
575 struct cleanup *args_list_chain;
579 args.stream = gdb_stdout;
581 args_list_chain = make_cleanup_ui_out_list_begin_end (uiout, "args");
582 catch_errors (print_args_stub, &args, "", RETURN_MASK_ALL);
583 /* FIXME: args must be a list. If one argument is a string it will
584 have " that will not be properly escaped. */
585 /* Invoke ui_out_tuple_end. */
586 do_cleanups (args_list_chain);
588 catch_errors (print_args_stub, &args, "", RETURN_MASK_ALL);
593 ui_out_text (uiout, ")");
595 printf_filtered (")");
597 if (sal.symtab && sal.symtab->filename)
599 annotate_frame_source_begin ();
601 ui_out_wrap_hint (uiout, " ");
602 ui_out_text (uiout, " at ");
603 annotate_frame_source_file ();
604 ui_out_field_string (uiout, "file", sal.symtab->filename);
605 annotate_frame_source_file_end ();
606 ui_out_text (uiout, ":");
607 annotate_frame_source_line ();
608 ui_out_field_int (uiout, "line", sal.line);
611 printf_filtered (" at ");
612 annotate_frame_source_file ();
613 printf_filtered ("%s", sal.symtab->filename);
614 annotate_frame_source_file_end ();
615 printf_filtered (":");
616 annotate_frame_source_line ();
617 printf_filtered ("%d", sal.line);
619 annotate_frame_source_end ();
623 if (!funname || (!sal.symtab || !sal.symtab->filename))
625 char *lib = PC_SOLIB (fi->pc);
628 annotate_frame_where ();
630 ui_out_wrap_hint (uiout, " ");
631 ui_out_text (uiout, " from ");
632 ui_out_field_string (uiout, "from", lib);
635 printf_filtered (" from %s", lib);
639 #endif /* PC_SOLIB */
642 /* do_cleanups will call ui_out_tuple_end() for us. */
643 do_cleanups (list_chain);
644 ui_out_text (uiout, "\n");
645 do_cleanups (old_chain);
647 printf_filtered ("\n");
652 /* Show or print the frame info. If this is the tui, it will be shown in
653 the source display */
655 print_frame_info (struct frame_info *fi, register int level, int source,
658 print_frame_info_base (fi, level, source, args);
661 /* Show the frame info. If this is the tui, it will be shown in
662 the source display otherwise, nothing is done */
664 show_stack_frame (struct frame_info *fi)
669 /* Read a frame specification in whatever the appropriate format is.
670 Call error() if the specification is in any way invalid (i.e.
671 this function never returns NULL). */
674 parse_frame_specification (char *frame_exp)
678 CORE_ADDR args[MAXARGS];
683 char *addr_string, *p;
684 struct cleanup *tmp_cleanup;
686 while (*frame_exp == ' ')
691 if (numargs > MAXARGS)
692 error ("Too many args in frame specification");
693 /* Parse an argument. */
694 for (p = frame_exp; *p && *p != ' '; p++)
696 addr_string = savestring (frame_exp, p - frame_exp);
701 tmp_cleanup = make_cleanup (xfree, addr_string);
703 /* NOTE: we call parse_and_eval and then both
704 value_as_long and value_as_pointer rather than calling
705 parse_and_eval_long and parse_and_eval_address because
706 of the issue of potential side effects from evaluating
708 vp = parse_and_eval (addr_string);
710 level = value_as_long (vp);
712 args[numargs++] = value_as_pointer (vp);
713 do_cleanups (tmp_cleanup);
716 /* Skip spaces, move to possible next arg. */
726 if (selected_frame == NULL)
727 error ("No selected frame.");
728 return selected_frame;
732 struct frame_info *fid =
733 find_relative_frame (get_current_frame (), &level);
734 struct frame_info *tfid;
737 /* find_relative_frame was successful */
740 /* If SETUP_ARBITRARY_FRAME is defined, then frame specifications
741 take at least 2 addresses. It is important to detect this case
742 here so that "frame 100" does not give a confusing error message
743 like "frame specification requires two addresses". This of course
744 does not solve the "frame 100" problem for machines on which
745 a frame specification can be made with one address. To solve
746 that, we need a new syntax for a specifying a frame by address.
747 I think the cleanest syntax is $frame(0x45) ($frame(0x23,0x45) for
748 two args, etc.), but people might think that is too much typing,
749 so I guess *0x23,0x45 would be a possible alternative (commas
750 really should be used instead of spaces to delimit; using spaces
751 normally works in an expression). */
752 #ifdef SETUP_ARBITRARY_FRAME
753 error ("No frame %d", args[0]);
756 /* If (s)he specifies the frame with an address, he deserves what
757 (s)he gets. Still, give the highest one that matches. */
759 for (fid = get_current_frame ();
760 fid && fid->frame != args[0];
761 fid = get_prev_frame (fid))
765 while ((tfid = get_prev_frame (fid)) &&
766 (tfid->frame == args[0]))
769 /* We couldn't identify the frame as an existing frame, but
770 perhaps we can create one with a single argument. */
774 #ifdef SETUP_ARBITRARY_FRAME
775 return SETUP_ARBITRARY_FRAME (numargs, args);
777 /* Usual case. Do it here rather than have everyone supply
778 a SETUP_ARBITRARY_FRAME that does this. */
780 return create_new_frame (args[0], 0);
781 error ("Too many args in frame specification");
788 /* FRAME_ARGS_ADDRESS_CORRECT is just like FRAME_ARGS_ADDRESS except
789 that if it is unsure about the answer, it returns 0
790 instead of guessing (this happens on the VAX and i960, for example).
792 On most machines, we never have to guess about the args address,
793 so FRAME_ARGS_ADDRESS{,_CORRECT} are the same. */
794 #if !defined (FRAME_ARGS_ADDRESS_CORRECT)
795 #define FRAME_ARGS_ADDRESS_CORRECT FRAME_ARGS_ADDRESS
798 /* Print verbosely the selected frame or the frame at address ADDR.
799 This means absolutely all information in the frame is printed. */
802 frame_info (char *addr_exp, int from_tty)
804 struct frame_info *fi;
805 struct symtab_and_line sal;
808 struct frame_info *calling_frame_info;
809 int i, count, numregs;
811 enum language funlang = language_unknown;
813 if (!target_has_stack)
816 fi = parse_frame_specification (addr_exp);
818 error ("Invalid frame specified.");
820 sal = find_pc_line (fi->pc,
822 && !fi->next->signal_handler_caller
823 && !frame_in_dummy (fi->next));
824 func = get_frame_function (fi);
825 s = find_pc_symtab (fi->pc);
828 /* I'd like to use SYMBOL_SOURCE_NAME() here, to display
829 * the demangled name that we already have stored in
830 * the symbol table, but we stored a version with
831 * DMGL_PARAMS turned on, and here we don't want
832 * to display parameters. So call the demangler again,
833 * with DMGL_ANSI only. RT
834 * (Yes, I know that printf_symbol_filtered() will
835 * again try to demangle the name on the fly, but
836 * the issue is that if cplus_demangle() fails here,
837 * it'll fail there too. So we want to catch the failure
838 * ("demangled==NULL" case below) here, while we still
839 * have our hands on the function symbol.)
842 funname = SYMBOL_NAME (func);
843 funlang = SYMBOL_LANGUAGE (func);
844 if (funlang == language_cplus)
846 demangled = cplus_demangle (funname, DMGL_ANSI);
847 /* If the demangler fails, try the demangled name
848 * from the symbol table. This'll have parameters,
849 * but that's preferable to diplaying a mangled name.
851 if (demangled == NULL)
852 funname = SYMBOL_SOURCE_NAME (func);
857 register struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (fi->pc);
860 funname = SYMBOL_NAME (msymbol);
861 funlang = SYMBOL_LANGUAGE (msymbol);
864 calling_frame_info = get_prev_frame (fi);
866 if (!addr_exp && selected_frame_level >= 0)
868 printf_filtered ("Stack level %d, frame at ", selected_frame_level);
869 print_address_numeric (fi->frame, 1, gdb_stdout);
870 printf_filtered (":\n");
874 printf_filtered ("Stack frame at ");
875 print_address_numeric (fi->frame, 1, gdb_stdout);
876 printf_filtered (":\n");
878 printf_filtered (" %s = ", REGISTER_NAME (PC_REGNUM));
879 print_address_numeric (fi->pc, 1, gdb_stdout);
884 printf_filtered (" in ");
885 fprintf_symbol_filtered (gdb_stdout, funname, funlang,
886 DMGL_ANSI | DMGL_PARAMS);
890 printf_filtered (" (%s:%d)", sal.symtab->filename, sal.line);
891 puts_filtered ("; ");
893 printf_filtered ("saved %s ", REGISTER_NAME (PC_REGNUM));
894 print_address_numeric (FRAME_SAVED_PC (fi), 1, gdb_stdout);
895 printf_filtered ("\n");
899 frameless = FRAMELESS_FUNCTION_INVOCATION (fi);
901 printf_filtered (" (FRAMELESS),");
904 if (calling_frame_info)
906 printf_filtered (" called by frame at ");
907 print_address_numeric (calling_frame_info->frame, 1, gdb_stdout);
909 if (fi->next && calling_frame_info)
914 printf_filtered (" caller of frame at ");
915 print_address_numeric (fi->next->frame, 1, gdb_stdout);
917 if (fi->next || calling_frame_info)
918 puts_filtered ("\n");
920 printf_filtered (" source language %s.\n", language_str (s->language));
922 #ifdef PRINT_EXTRA_FRAME_INFO
923 PRINT_EXTRA_FRAME_INFO (fi);
927 /* Address of the argument list for this frame, or 0. */
928 CORE_ADDR arg_list = FRAME_ARGS_ADDRESS_CORRECT (fi);
929 /* Number of args for this frame, or -1 if unknown. */
933 printf_filtered (" Arglist at unknown address.\n");
936 printf_filtered (" Arglist at ");
937 print_address_numeric (arg_list, 1, gdb_stdout);
938 printf_filtered (",");
940 numargs = FRAME_NUM_ARGS (fi);
942 puts_filtered (" args: ");
943 else if (numargs == 0)
944 puts_filtered (" no args.");
945 else if (numargs == 1)
946 puts_filtered (" 1 arg: ");
948 printf_filtered (" %d args: ", numargs);
949 print_frame_args (func, fi, numargs, gdb_stdout);
950 puts_filtered ("\n");
954 /* Address of the local variables for this frame, or 0. */
955 CORE_ADDR arg_list = FRAME_LOCALS_ADDRESS (fi);
958 printf_filtered (" Locals at unknown address,");
961 printf_filtered (" Locals at ");
962 print_address_numeric (arg_list, 1, gdb_stdout);
963 printf_filtered (",");
967 FRAME_INIT_SAVED_REGS (fi);
968 if (fi->saved_regs != NULL)
970 /* The sp is special; what's returned isn't the save address, but
971 actually the value of the previous frame's sp. */
972 printf_filtered (" Previous frame's sp is ");
973 print_address_numeric (fi->saved_regs[SP_REGNUM], 1, gdb_stdout);
974 printf_filtered ("\n");
976 numregs = NUM_REGS + NUM_PSEUDO_REGS;
977 for (i = 0; i < numregs; i++)
978 if (fi->saved_regs[i] && i != SP_REGNUM)
981 puts_filtered (" Saved registers:\n ");
985 printf_filtered (" %s at ", REGISTER_NAME (i));
986 print_address_numeric (fi->saved_regs[i], 1, gdb_stdout);
990 puts_filtered ("\n");
994 /* We could get some information about saved registers by
995 calling get_saved_register on each register. Which info goes
996 with which frame is necessarily lost, however, and I suspect
997 that the users don't care whether they get the info. */
998 puts_filtered ("\n");
1003 /* Set a limit on the number of frames printed by default in a
1006 static int backtrace_limit;
1009 set_backtrace_limit_command (char *count_exp, int from_tty)
1011 int count = parse_and_eval_long (count_exp);
1014 error ("Negative argument not meaningful as backtrace limit.");
1016 backtrace_limit = count;
1020 backtrace_limit_info (char *arg, int from_tty)
1023 error ("\"Info backtrace-limit\" takes no arguments.");
1025 printf_unfiltered ("Backtrace limit: %d.\n", backtrace_limit);
1029 /* Print briefly all stack frames or just the innermost COUNT frames. */
1031 static void backtrace_command_1 (char *count_exp, int show_locals,
1034 backtrace_command_1 (char *count_exp, int show_locals, int from_tty)
1036 struct frame_info *fi;
1039 register struct frame_info *trailing;
1040 register int trailing_level;
1042 if (!target_has_stack)
1043 error ("No stack.");
1045 /* The following code must do two things. First, it must
1046 set the variable TRAILING to the frame from which we should start
1047 printing. Second, it must set the variable count to the number
1048 of frames which we should print, or -1 if all of them. */
1049 trailing = get_current_frame ();
1051 /* The target can be in a state where there is no valid frames
1052 (e.g., just connected). */
1053 if (trailing == NULL)
1054 error ("No stack.");
1059 count = parse_and_eval_long (count_exp);
1062 struct frame_info *current;
1067 while (current && count--)
1070 current = get_prev_frame (current);
1073 /* Will stop when CURRENT reaches the top of the stack. TRAILING
1074 will be COUNT below it. */
1078 trailing = get_prev_frame (trailing);
1079 current = get_prev_frame (current);
1091 struct partial_symtab *ps;
1093 /* Read in symbols for all of the frames. Need to do this in
1094 a separate pass so that "Reading in symbols for xxx" messages
1095 don't screw up the appearance of the backtrace. Also
1096 if people have strong opinions against reading symbols for
1097 backtrace this may have to be an option. */
1101 fi = get_prev_frame (fi))
1104 ps = find_pc_psymtab (fi->pc);
1106 PSYMTAB_TO_SYMTAB (ps); /* Force syms to come in */
1110 for (i = 0, fi = trailing;
1112 i++, fi = get_prev_frame (fi))
1116 /* Don't use print_stack_frame; if an error() occurs it probably
1117 means further attempts to backtrace would fail (on the other
1118 hand, perhaps the code does or could be fixed to make sure
1119 the frame->prev field gets set to NULL in that case). */
1120 print_frame_info_base (fi, trailing_level + i, 0, 1);
1122 print_frame_local_vars (fi, 1, gdb_stdout);
1125 /* If we've stopped before the end, mention that. */
1127 printf_filtered ("(More stack frames follow...)\n");
1131 backtrace_command (char *arg, int from_tty)
1133 struct cleanup *old_chain = (struct cleanup *) NULL;
1134 char **argv = (char **) NULL;
1135 int argIndicatingFullTrace = (-1), totArgLen = 0, argc = 0;
1138 if (arg != (char *) NULL)
1142 argv = buildargv (arg);
1143 old_chain = make_cleanup_freeargv (argv);
1145 for (i = 0; (argv[i] != (char *) NULL); i++)
1149 for (j = 0; (j < strlen (argv[i])); j++)
1150 argv[i][j] = tolower (argv[i][j]);
1152 if (argIndicatingFullTrace < 0 && subset_compare (argv[i], "full"))
1153 argIndicatingFullTrace = argc;
1157 totArgLen += strlen (argv[i]);
1161 if (argIndicatingFullTrace >= 0)
1165 argPtr = (char *) xmalloc (totArgLen + 1);
1170 memset (argPtr, 0, totArgLen + 1);
1171 for (i = 0; (i < (argc + 1)); i++)
1173 if (i != argIndicatingFullTrace)
1175 strcat (argPtr, argv[i]);
1176 strcat (argPtr, " ");
1182 argPtr = (char *) NULL;
1186 backtrace_command_1 (argPtr, (argIndicatingFullTrace >= 0), from_tty);
1188 if (argIndicatingFullTrace >= 0 && totArgLen > 0)
1192 do_cleanups (old_chain);
1195 static void backtrace_full_command (char *arg, int from_tty);
1197 backtrace_full_command (char *arg, int from_tty)
1199 backtrace_command_1 (arg, 1, from_tty);
1203 /* Print the local variables of a block B active in FRAME.
1204 Return 1 if any variables were printed; 0 otherwise. */
1207 print_block_frame_locals (struct block *b, register struct frame_info *fi,
1208 int num_tabs, register struct ui_file *stream)
1212 register struct symbol *sym;
1213 register int values_printed = 0;
1215 nsyms = BLOCK_NSYMS (b);
1217 for (i = 0; i < nsyms; i++)
1219 sym = BLOCK_SYM (b, i);
1220 switch (SYMBOL_CLASS (sym))
1227 for (j = 0; j < num_tabs; j++)
1228 fputs_filtered ("\t", stream);
1229 fputs_filtered (SYMBOL_SOURCE_NAME (sym), stream);
1230 fputs_filtered (" = ", stream);
1231 print_variable_value (sym, fi, stream);
1232 fprintf_filtered (stream, "\n");
1236 /* Ignore symbols which are not locals. */
1240 return values_printed;
1243 /* Same, but print labels. */
1246 print_block_frame_labels (struct block *b, int *have_default,
1247 register struct ui_file *stream)
1251 register struct symbol *sym;
1252 register int values_printed = 0;
1254 nsyms = BLOCK_NSYMS (b);
1256 for (i = 0; i < nsyms; i++)
1258 sym = BLOCK_SYM (b, i);
1259 if (STREQ (SYMBOL_NAME (sym), "default"))
1265 if (SYMBOL_CLASS (sym) == LOC_LABEL)
1267 struct symtab_and_line sal;
1268 sal = find_pc_line (SYMBOL_VALUE_ADDRESS (sym), 0);
1270 fputs_filtered (SYMBOL_SOURCE_NAME (sym), stream);
1273 fprintf_filtered (stream, " ");
1274 print_address_numeric (SYMBOL_VALUE_ADDRESS (sym), 1, stream);
1276 fprintf_filtered (stream, " in file %s, line %d\n",
1277 sal.symtab->filename, sal.line);
1280 return values_printed;
1283 /* Print on STREAM all the local variables in frame FRAME,
1284 including all the blocks active in that frame
1287 Returns 1 if the job was done,
1288 or 0 if nothing was printed because we have no info
1289 on the function running in FRAME. */
1292 print_frame_local_vars (register struct frame_info *fi, register int num_tabs,
1293 register struct ui_file *stream)
1295 register struct block *block = get_frame_block (fi);
1296 register int values_printed = 0;
1300 fprintf_filtered (stream, "No symbol table info available.\n");
1306 if (print_block_frame_locals (block, fi, num_tabs, stream))
1308 /* After handling the function's top-level block, stop.
1309 Don't continue to its superblock, the block of
1310 per-file symbols. */
1311 if (BLOCK_FUNCTION (block))
1313 block = BLOCK_SUPERBLOCK (block);
1316 if (!values_printed)
1318 fprintf_filtered (stream, "No locals.\n");
1322 /* Same, but print labels. */
1325 print_frame_label_vars (register struct frame_info *fi, int this_level_only,
1326 register struct ui_file *stream)
1328 register struct blockvector *bl;
1329 register struct block *block = get_frame_block (fi);
1330 register int values_printed = 0;
1331 int index, have_default = 0;
1332 char *blocks_printed;
1333 CORE_ADDR pc = fi->pc;
1337 fprintf_filtered (stream, "No symbol table info available.\n");
1341 bl = blockvector_for_pc (BLOCK_END (block) - 4, &index);
1342 blocks_printed = (char *) alloca (BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
1343 memset (blocks_printed, 0, BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
1347 CORE_ADDR end = BLOCK_END (block) - 4;
1350 if (bl != blockvector_for_pc (end, &index))
1351 error ("blockvector blotch");
1352 if (BLOCKVECTOR_BLOCK (bl, index) != block)
1353 error ("blockvector botch");
1354 last_index = BLOCKVECTOR_NBLOCKS (bl);
1357 /* Don't print out blocks that have gone by. */
1358 while (index < last_index
1359 && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < pc)
1362 while (index < last_index
1363 && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < end)
1365 if (blocks_printed[index] == 0)
1367 if (print_block_frame_labels (BLOCKVECTOR_BLOCK (bl, index), &have_default, stream))
1369 blocks_printed[index] = 1;
1375 if (values_printed && this_level_only)
1378 /* After handling the function's top-level block, stop.
1379 Don't continue to its superblock, the block of
1380 per-file symbols. */
1381 if (BLOCK_FUNCTION (block))
1383 block = BLOCK_SUPERBLOCK (block);
1386 if (!values_printed && !this_level_only)
1388 fprintf_filtered (stream, "No catches.\n");
1394 locals_info (char *args, int from_tty)
1396 if (!selected_frame)
1397 error ("No frame selected.");
1398 print_frame_local_vars (selected_frame, 0, gdb_stdout);
1402 catch_info (char *ignore, int from_tty)
1404 struct symtab_and_line *sal;
1406 /* Check for target support for exception handling */
1407 sal = target_enable_exception_callback (EX_EVENT_CATCH, 1);
1410 /* Currently not handling this */
1411 /* Ideally, here we should interact with the C++ runtime
1412 system to find the list of active handlers, etc. */
1413 fprintf_filtered (gdb_stdout, "Info catch not supported with this target/compiler combination.\n");
1415 if (!selected_frame)
1416 error ("No frame selected.");
1421 /* Assume g++ compiled code -- old v 4.16 behaviour */
1422 if (!selected_frame)
1423 error ("No frame selected.");
1425 print_frame_label_vars (selected_frame, 0, gdb_stdout);
1430 print_frame_arg_vars (register struct frame_info *fi,
1431 register struct ui_file *stream)
1433 struct symbol *func = get_frame_function (fi);
1434 register struct block *b;
1437 register struct symbol *sym, *sym2;
1438 register int values_printed = 0;
1442 fprintf_filtered (stream, "No symbol table info available.\n");
1446 b = SYMBOL_BLOCK_VALUE (func);
1447 nsyms = BLOCK_NSYMS (b);
1449 for (i = 0; i < nsyms; i++)
1451 sym = BLOCK_SYM (b, i);
1452 switch (SYMBOL_CLASS (sym))
1458 case LOC_REGPARM_ADDR:
1459 case LOC_BASEREG_ARG:
1461 fputs_filtered (SYMBOL_SOURCE_NAME (sym), stream);
1462 fputs_filtered (" = ", stream);
1464 /* We have to look up the symbol because arguments can have
1465 two entries (one a parameter, one a local) and the one we
1466 want is the local, which lookup_symbol will find for us.
1467 This includes gcc1 (not gcc2) on the sparc when passing a
1468 small structure and gcc2 when the argument type is float
1469 and it is passed as a double and converted to float by
1470 the prologue (in the latter case the type of the LOC_ARG
1471 symbol is double and the type of the LOC_LOCAL symbol is
1472 float). There are also LOC_ARG/LOC_REGISTER pairs which
1473 are not combined in symbol-reading. */
1475 sym2 = lookup_symbol (SYMBOL_NAME (sym),
1476 b, VAR_NAMESPACE, (int *) NULL, (struct symtab **) NULL);
1477 print_variable_value (sym2, fi, stream);
1478 fprintf_filtered (stream, "\n");
1482 /* Don't worry about things which aren't arguments. */
1487 if (!values_printed)
1489 fprintf_filtered (stream, "No arguments.\n");
1494 args_info (char *ignore, int from_tty)
1496 if (!selected_frame)
1497 error ("No frame selected.");
1498 print_frame_arg_vars (selected_frame, gdb_stdout);
1503 args_plus_locals_info (char *ignore, int from_tty)
1505 args_info (ignore, from_tty);
1506 locals_info (ignore, from_tty);
1510 /* Select frame FI, and note that its stack level is LEVEL.
1511 LEVEL may be -1 if an actual level number is not known. */
1514 select_frame (struct frame_info *fi, int level)
1516 register struct symtab *s;
1518 selected_frame = fi;
1519 selected_frame_level = level;
1520 if (selected_frame_level_changed_hook)
1521 selected_frame_level_changed_hook (level);
1523 /* Ensure that symbols for this frame are read in. Also, determine the
1524 source language of this frame, and switch to it if desired. */
1527 s = find_pc_symtab (fi->pc);
1529 && s->language != current_language->la_language
1530 && s->language != language_unknown
1531 && language_mode == language_mode_auto)
1533 set_language (s->language);
1539 /* Select frame FI, noting that its stack level is LEVEL. Also print
1540 the stack frame and show the source if this is the tui version. */
1542 select_and_print_frame (struct frame_info *fi, int level)
1544 select_frame (fi, level);
1547 print_stack_frame (fi, level, 1);
1552 /* Store the selected frame and its level into *FRAMEP and *LEVELP.
1553 If there is no selected frame, *FRAMEP is set to NULL. */
1556 record_selected_frame (CORE_ADDR *frameaddrp, int *levelp)
1558 *frameaddrp = selected_frame ? selected_frame->frame : 0;
1559 *levelp = selected_frame_level;
1562 /* Return the symbol-block in which the selected frame is executing.
1563 Can return zero under various legitimate circumstances. */
1566 get_selected_block (void)
1568 if (!target_has_stack)
1571 if (!selected_frame)
1572 return get_current_block ();
1573 return get_frame_block (selected_frame);
1576 /* Find a frame a certain number of levels away from FRAME.
1577 LEVEL_OFFSET_PTR points to an int containing the number of levels.
1578 Positive means go to earlier frames (up); negative, the reverse.
1579 The int that contains the number of levels is counted toward
1580 zero as the frames for those levels are found.
1581 If the top or bottom frame is reached, that frame is returned,
1582 but the final value of *LEVEL_OFFSET_PTR is nonzero and indicates
1583 how much farther the original request asked to go. */
1586 find_relative_frame (register struct frame_info *frame,
1587 register int *level_offset_ptr)
1589 register struct frame_info *prev;
1590 register struct frame_info *frame1;
1592 /* Going up is simple: just do get_prev_frame enough times
1593 or until initial frame is reached. */
1594 while (*level_offset_ptr > 0)
1596 prev = get_prev_frame (frame);
1599 (*level_offset_ptr)--;
1602 /* Going down is just as simple. */
1603 if (*level_offset_ptr < 0)
1605 while (*level_offset_ptr < 0)
1607 frame1 = get_next_frame (frame);
1611 (*level_offset_ptr)++;
1617 /* The "select_frame" command. With no arg, NOP.
1618 With arg LEVEL_EXP, select the frame at level LEVEL if it is a
1619 valid level. Otherwise, treat level_exp as an address expression
1620 and select it. See parse_frame_specification for more info on proper
1621 frame expressions. */
1626 select_frame_command_wrapper (char *level_exp, int from_tty)
1628 select_frame_command (level_exp, from_tty);
1632 select_frame_command (char *level_exp, int from_tty)
1634 register struct frame_info *frame, *frame1;
1635 unsigned int level = 0;
1637 if (!target_has_stack)
1638 error ("No stack.");
1640 frame = parse_frame_specification (level_exp);
1642 /* Try to figure out what level this frame is. But if there is
1643 no current stack, don't error out -- let the user set one. */
1645 if (get_current_frame ())
1647 for (frame1 = get_prev_frame (0);
1648 frame1 && frame1 != frame;
1649 frame1 = get_prev_frame (frame1))
1656 select_frame (frame, level);
1659 /* The "frame" command. With no arg, print selected frame briefly.
1660 With arg, behaves like select_frame and then prints the selected
1664 frame_command (char *level_exp, int from_tty)
1666 select_frame_command (level_exp, from_tty);
1667 show_and_print_stack_frame (selected_frame, selected_frame_level, 1);
1670 /* The XDB Compatibility command to print the current frame. */
1673 current_frame_command (char *level_exp, int from_tty)
1675 if (target_has_stack == 0 || selected_frame == 0)
1676 error ("No stack.");
1677 print_only_stack_frame (selected_frame, selected_frame_level, 1);
1680 /* Select the frame up one or COUNT stack levels
1681 from the previously selected frame, and print it briefly. */
1685 up_silently_base (char *count_exp)
1687 register struct frame_info *fi;
1688 int count = 1, count1;
1690 count = parse_and_eval_long (count_exp);
1693 if (target_has_stack == 0 || selected_frame == 0)
1694 error ("No stack.");
1696 fi = find_relative_frame (selected_frame, &count1);
1697 if (count1 != 0 && count_exp == 0)
1698 error ("Initial frame selected; you cannot go up.");
1699 select_frame (fi, selected_frame_level + count - count1);
1703 up_silently_command (char *count_exp, int from_tty)
1705 up_silently_base (count_exp);
1709 up_command (char *count_exp, int from_tty)
1711 up_silently_base (count_exp);
1712 show_and_print_stack_frame (selected_frame, selected_frame_level, 1);
1715 /* Select the frame down one or COUNT stack levels
1716 from the previously selected frame, and print it briefly. */
1720 down_silently_base (char *count_exp)
1722 register struct frame_info *frame;
1723 int count = -1, count1;
1725 count = -parse_and_eval_long (count_exp);
1728 if (target_has_stack == 0 || selected_frame == 0)
1729 error ("No stack.");
1731 frame = find_relative_frame (selected_frame, &count1);
1732 if (count1 != 0 && count_exp == 0)
1735 /* We only do this if count_exp is not specified. That way "down"
1736 means to really go down (and let me know if that is
1737 impossible), but "down 9999" can be used to mean go all the way
1738 down without getting an error. */
1740 error ("Bottom (i.e., innermost) frame selected; you cannot go down.");
1743 select_frame (frame, selected_frame_level + count - count1);
1748 down_silently_command (char *count_exp, int from_tty)
1750 down_silently_base (count_exp);
1754 down_command (char *count_exp, int from_tty)
1756 down_silently_base (count_exp);
1757 show_and_print_stack_frame (selected_frame, selected_frame_level, 1);
1762 return_command_wrapper (char *retval_exp, int from_tty)
1764 return_command (retval_exp, from_tty);
1768 return_command (char *retval_exp, int from_tty)
1770 struct symbol *thisfun;
1771 CORE_ADDR selected_frame_addr;
1772 CORE_ADDR selected_frame_pc;
1773 struct frame_info *frame;
1774 value_ptr return_value = NULL;
1776 if (selected_frame == NULL)
1777 error ("No selected frame.");
1778 thisfun = get_frame_function (selected_frame);
1779 selected_frame_addr = FRAME_FP (selected_frame);
1780 selected_frame_pc = selected_frame->pc;
1782 /* Compute the return value (if any -- possibly getting errors here). */
1786 struct type *return_type = NULL;
1788 return_value = parse_and_eval (retval_exp);
1790 /* Cast return value to the return type of the function. */
1791 if (thisfun != NULL)
1792 return_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (thisfun));
1793 if (return_type == NULL)
1794 return_type = builtin_type_int;
1795 return_value = value_cast (return_type, return_value);
1797 /* Make sure we have fully evaluated it, since
1798 it might live in the stack frame we're about to pop. */
1799 if (VALUE_LAZY (return_value))
1800 value_fetch_lazy (return_value);
1803 /* If interactive, require confirmation. */
1809 if (!query ("Make %s return now? ", SYMBOL_SOURCE_NAME (thisfun)))
1811 error ("Not confirmed.");
1815 else if (!query ("Make selected stack frame return now? "))
1816 error ("Not confirmed.");
1819 /* Do the real work. Pop until the specified frame is current. We
1820 use this method because the selected_frame is not valid after
1821 a POP_FRAME. The pc comparison makes this work even if the
1822 selected frame shares its fp with another frame. */
1824 while (selected_frame_addr != (frame = get_current_frame ())->frame
1825 || selected_frame_pc != frame->pc)
1828 /* Then pop that frame. */
1832 /* Compute the return value (if any) and store in the place
1833 for return values. */
1836 set_return_value (return_value);
1838 /* If we are at the end of a call dummy now, pop the dummy frame too. */
1840 if (CALL_DUMMY_HAS_COMPLETED (read_pc(), read_sp (),
1841 FRAME_FP (get_current_frame ())))
1844 /* If interactive, print the frame that is now current. */
1847 frame_command ("0", 1);
1849 select_frame_command ("0", 0);
1852 /* Sets the scope to input function name, provided that the
1853 function is within the current stack frame */
1855 struct function_bounds
1857 CORE_ADDR low, high;
1860 static void func_command (char *arg, int from_tty);
1862 func_command (char *arg, int from_tty)
1864 struct frame_info *fp;
1866 struct symtabs_and_lines sals;
1869 struct function_bounds *func_bounds = (struct function_bounds *) NULL;
1871 if (arg != (char *) NULL)
1874 fp = parse_frame_specification ("0");
1875 sals = decode_line_spec (arg, 1);
1876 func_bounds = (struct function_bounds *) xmalloc (
1877 sizeof (struct function_bounds) * sals.nelts);
1878 for (i = 0; (i < sals.nelts && !found); i++)
1880 if (sals.sals[i].pc == (CORE_ADDR) 0 ||
1881 find_pc_partial_function (sals.sals[i].pc,
1883 &func_bounds[i].low,
1884 &func_bounds[i].high) == 0)
1886 func_bounds[i].low =
1887 func_bounds[i].high = (CORE_ADDR) NULL;
1893 for (i = 0; (i < sals.nelts && !found); i++)
1894 found = (fp->pc >= func_bounds[i].low &&
1895 fp->pc < func_bounds[i].high);
1899 fp = find_relative_frame (fp, &level);
1902 while (!found && level == 0);
1905 xfree (func_bounds);
1908 printf_filtered ("'%s' not within current stack frame.\n", arg);
1909 else if (fp != selected_frame)
1910 select_and_print_frame (fp, level);
1913 /* Gets the language of the current frame. */
1916 get_frame_language (void)
1918 register struct symtab *s;
1919 enum language flang; /* The language of the current frame */
1923 s = find_pc_symtab (selected_frame->pc);
1925 flang = s->language;
1927 flang = language_unknown;
1930 flang = language_unknown;
1936 _initialize_stack (void)
1939 backtrace_limit = 30;
1942 add_com ("return", class_stack, return_command,
1943 "Make selected stack frame return to its caller.\n\
1944 Control remains in the debugger, but when you continue\n\
1945 execution will resume in the frame above the one now selected.\n\
1946 If an argument is given, it is an expression for the value to return.");
1948 add_com ("up", class_stack, up_command,
1949 "Select and print stack frame that called this one.\n\
1950 An argument says how many frames up to go.");
1951 add_com ("up-silently", class_support, up_silently_command,
1952 "Same as the `up' command, but does not print anything.\n\
1953 This is useful in command scripts.");
1955 add_com ("down", class_stack, down_command,
1956 "Select and print stack frame called by this one.\n\
1957 An argument says how many frames down to go.");
1958 add_com_alias ("do", "down", class_stack, 1);
1959 add_com_alias ("dow", "down", class_stack, 1);
1960 add_com ("down-silently", class_support, down_silently_command,
1961 "Same as the `down' command, but does not print anything.\n\
1962 This is useful in command scripts.");
1964 add_com ("frame", class_stack, frame_command,
1965 "Select and print a stack frame.\n\
1966 With no argument, print the selected stack frame. (See also \"info frame\").\n\
1967 An argument specifies the frame to select.\n\
1968 It can be a stack frame number or the address of the frame.\n\
1969 With argument, nothing is printed if input is coming from\n\
1970 a command file or a user-defined command.");
1972 add_com_alias ("f", "frame", class_stack, 1);
1976 add_com ("L", class_stack, current_frame_command,
1977 "Print the current stack frame.\n");
1978 add_com_alias ("V", "frame", class_stack, 1);
1980 add_com ("select-frame", class_stack, select_frame_command,
1981 "Select a stack frame without printing anything.\n\
1982 An argument specifies the frame to select.\n\
1983 It can be a stack frame number or the address of the frame.\n");
1985 add_com ("backtrace", class_stack, backtrace_command,
1986 "Print backtrace of all stack frames, or innermost COUNT frames.\n\
1987 With a negative argument, print outermost -COUNT frames.\n\
1988 Use of the 'full' qualifier also prints the values of the local variables.\n");
1989 add_com_alias ("bt", "backtrace", class_stack, 0);
1992 add_com_alias ("t", "backtrace", class_stack, 0);
1993 add_com ("T", class_stack, backtrace_full_command,
1994 "Print backtrace of all stack frames, or innermost COUNT frames \n\
1995 and the values of the local variables.\n\
1996 With a negative argument, print outermost -COUNT frames.\n\
1997 Usage: T <count>\n");
2000 add_com_alias ("where", "backtrace", class_alias, 0);
2001 add_info ("stack", backtrace_command,
2002 "Backtrace of the stack, or innermost COUNT frames.");
2003 add_info_alias ("s", "stack", 1);
2004 add_info ("frame", frame_info,
2005 "All about selected stack frame, or frame at ADDR.");
2006 add_info_alias ("f", "frame", 1);
2007 add_info ("locals", locals_info,
2008 "Local variables of current stack frame.");
2009 add_info ("args", args_info,
2010 "Argument variables of current stack frame.");
2012 add_com ("l", class_info, args_plus_locals_info,
2013 "Argument and local variables of current stack frame.");
2016 add_com ("func", class_stack, func_command,
2017 "Select the stack frame that contains <func>.\nUsage: func <name>\n");
2019 add_info ("catch", catch_info,
2020 "Exceptions that can be caught in the current stack frame.");
2023 add_cmd ("backtrace-limit", class_stack, set_backtrace_limit_command,
2024 "Specify maximum number of frames for \"backtrace\" to print by default.",
2026 add_info ("backtrace-limit", backtrace_limit_info,
2027 "The maximum number of frames for \"backtrace\" to print by default.");