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