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