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