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