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