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