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