OSDN Git Service

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