More uses of ui_out_emit_tuple
[external/binutils.git] / gdb / stack.c
1 /* Print and select stack frames for GDB, the GNU debugger.
2
3    Copyright (C) 1986-2017 Free Software Foundation, Inc.
4
5    This file is part of GDB.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
20 #include "defs.h"
21 #include "value.h"
22 #include "symtab.h"
23 #include "gdbtypes.h"
24 #include "expression.h"
25 #include "language.h"
26 #include "frame.h"
27 #include "gdbcmd.h"
28 #include "gdbcore.h"
29 #include "target.h"
30 #include "source.h"
31 #include "breakpoint.h"
32 #include "demangle.h"
33 #include "inferior.h"
34 #include "annotate.h"
35 #include "ui-out.h"
36 #include "block.h"
37 #include "stack.h"
38 #include "dictionary.h"
39 #include "reggroups.h"
40 #include "regcache.h"
41 #include "solib.h"
42 #include "valprint.h"
43 #include "gdbthread.h"
44 #include "cp-support.h"
45 #include "disasm.h"
46 #include "inline-frame.h"
47 #include "linespec.h"
48 #include "cli/cli-utils.h"
49 #include "objfiles.h"
50
51 #include "safe-ctype.h"
52 #include "symfile.h"
53 #include "extension.h"
54 #include "observer.h"
55
56 /* The possible choices of "set print frame-arguments", and the value
57    of this setting.  */
58
59 static const char *const print_frame_arguments_choices[] =
60   {"all", "scalars", "none", NULL};
61 static const char *print_frame_arguments = "scalars";
62
63 /* If non-zero, don't invoke pretty-printers for frame arguments.  */
64 static int print_raw_frame_arguments;
65
66 /* The possible choices of "set print entry-values", and the value
67    of this setting.  */
68
69 const char print_entry_values_no[] = "no";
70 const char print_entry_values_only[] = "only";
71 const char print_entry_values_preferred[] = "preferred";
72 const char print_entry_values_if_needed[] = "if-needed";
73 const char print_entry_values_both[] = "both";
74 const char print_entry_values_compact[] = "compact";
75 const char print_entry_values_default[] = "default";
76 static const char *const print_entry_values_choices[] =
77 {
78   print_entry_values_no,
79   print_entry_values_only,
80   print_entry_values_preferred,
81   print_entry_values_if_needed,
82   print_entry_values_both,
83   print_entry_values_compact,
84   print_entry_values_default,
85   NULL
86 };
87 const char *print_entry_values = print_entry_values_default;
88
89 /* Prototypes for local functions.  */
90
91 static void print_frame_local_vars (struct frame_info *, int,
92                                     struct ui_file *);
93
94 static void print_frame (struct frame_info *frame, int print_level,
95                          enum print_what print_what,  int print_args,
96                          struct symtab_and_line sal);
97
98 static void set_last_displayed_sal (int valid,
99                                     struct program_space *pspace,
100                                     CORE_ADDR addr,
101                                     struct symtab *symtab,
102                                     int line);
103
104 /* Zero means do things normally; we are interacting directly with the
105    user.  One means print the full filename and linenumber when a
106    frame is printed, and do so in a format emacs18/emacs19.22 can
107    parse.  Two means print similar annotations, but in many more
108    cases and in a slightly different syntax.  */
109
110 int annotation_level = 0;
111
112 /* These variables hold the last symtab and line we displayed to the user.
113  * This is where we insert a breakpoint or a skiplist entry by default.  */
114 static int last_displayed_sal_valid = 0;
115 static struct program_space *last_displayed_pspace = 0;
116 static CORE_ADDR last_displayed_addr = 0;
117 static struct symtab *last_displayed_symtab = 0;
118 static int last_displayed_line = 0;
119 \f
120
121 /* Return 1 if we should display the address in addition to the location,
122    because we are in the middle of a statement.  */
123
124 static int
125 frame_show_address (struct frame_info *frame,
126                     struct symtab_and_line sal)
127 {
128   /* If there is a line number, but no PC, then there is no location
129      information associated with this sal.  The only way that should
130      happen is for the call sites of inlined functions (SAL comes from
131      find_frame_sal).  Otherwise, we would have some PC range if the
132      SAL came from a line table.  */
133   if (sal.line != 0 && sal.pc == 0 && sal.end == 0)
134     {
135       if (get_next_frame (frame) == NULL)
136         gdb_assert (inline_skipped_frames (inferior_ptid) > 0);
137       else
138         gdb_assert (get_frame_type (get_next_frame (frame)) == INLINE_FRAME);
139       return 0;
140     }
141
142   return get_frame_pc (frame) != sal.pc;
143 }
144
145 /* See frame.h.  */
146
147 void
148 print_stack_frame_to_uiout (struct ui_out *uiout, struct frame_info *frame,
149                             int print_level, enum print_what print_what,
150                             int set_current_sal)
151 {
152   scoped_restore save_uiout = make_scoped_restore (&current_uiout, uiout);
153
154   print_stack_frame (frame, print_level, print_what, set_current_sal);
155 }
156
157 /* Show or print a stack frame FRAME briefly.  The output is formatted
158    according to PRINT_LEVEL and PRINT_WHAT printing the frame's
159    relative level, function name, argument list, and file name and
160    line number.  If the frame's PC is not at the beginning of the
161    source line, the actual PC is printed at the beginning.  */
162
163 void
164 print_stack_frame (struct frame_info *frame, int print_level,
165                    enum print_what print_what,
166                    int set_current_sal)
167 {
168
169   /* For mi, alway print location and address.  */
170   if (current_uiout->is_mi_like_p ())
171     print_what = LOC_AND_ADDRESS;
172
173   TRY
174     {
175       print_frame_info (frame, print_level, print_what, 1 /* print_args */,
176                         set_current_sal);
177       if (set_current_sal)
178         set_current_sal_from_frame (frame);
179     }
180   CATCH (e, RETURN_MASK_ERROR)
181     {
182     }
183   END_CATCH
184 }
185
186 /* Print nameless arguments of frame FRAME on STREAM, where START is
187    the offset of the first nameless argument, and NUM is the number of
188    nameless arguments to print.  FIRST is nonzero if this is the first
189    argument (not just the first nameless argument).  */
190
191 static void
192 print_frame_nameless_args (struct frame_info *frame, long start, int num,
193                            int first, struct ui_file *stream)
194 {
195   struct gdbarch *gdbarch = get_frame_arch (frame);
196   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
197   int i;
198   CORE_ADDR argsaddr;
199   long arg_value;
200
201   for (i = 0; i < num; i++)
202     {
203       QUIT;
204       argsaddr = get_frame_args_address (frame);
205       if (!argsaddr)
206         return;
207       arg_value = read_memory_integer (argsaddr + start,
208                                        sizeof (int), byte_order);
209       if (!first)
210         fprintf_filtered (stream, ", ");
211       fprintf_filtered (stream, "%ld", arg_value);
212       first = 0;
213       start += sizeof (int);
214     }
215 }
216
217 /* Print single argument of inferior function.  ARG must be already
218    read in.
219
220    Errors are printed as if they would be the parameter value.  Use zeroed ARG
221    iff it should not be printed accoring to user settings.  */
222
223 static void
224 print_frame_arg (const struct frame_arg *arg)
225 {
226   struct ui_out *uiout = current_uiout;
227   const char *error_message = NULL;
228
229   string_file stb;
230
231   gdb_assert (!arg->val || !arg->error);
232   gdb_assert (arg->entry_kind == print_entry_values_no
233               || arg->entry_kind == print_entry_values_only
234               || (!uiout->is_mi_like_p ()
235                   && arg->entry_kind == print_entry_values_compact));
236
237   annotate_arg_emitter arg_emitter;
238   ui_out_emit_tuple tuple_emitter (uiout, NULL);
239   fprintf_symbol_filtered (&stb, SYMBOL_PRINT_NAME (arg->sym),
240                            SYMBOL_LANGUAGE (arg->sym), DMGL_PARAMS | DMGL_ANSI);
241   if (arg->entry_kind == print_entry_values_compact)
242     {
243       /* It is OK to provide invalid MI-like stream as with
244          PRINT_ENTRY_VALUE_COMPACT we never use MI.  */
245       stb.puts ("=");
246
247       fprintf_symbol_filtered (&stb, SYMBOL_PRINT_NAME (arg->sym),
248                                SYMBOL_LANGUAGE (arg->sym),
249                                DMGL_PARAMS | DMGL_ANSI);
250     }
251   if (arg->entry_kind == print_entry_values_only
252       || arg->entry_kind == print_entry_values_compact)
253     stb.puts ("@entry");
254   uiout->field_stream ("name", stb);
255   annotate_arg_name_end ();
256   uiout->text ("=");
257
258   if (!arg->val && !arg->error)
259     uiout->text ("...");
260   else
261     {
262       if (arg->error)
263         error_message = arg->error;
264       else
265         {
266           TRY
267             {
268               const struct language_defn *language;
269               struct value_print_options opts;
270
271               /* Avoid value_print because it will deref ref parameters.  We
272                  just want to print their addresses.  Print ??? for args whose
273                  address we do not know.  We pass 2 as "recurse" to val_print
274                  because our standard indentation here is 4 spaces, and
275                  val_print indents 2 for each recurse.  */ 
276
277               annotate_arg_value (value_type (arg->val));
278
279               /* Use the appropriate language to display our symbol, unless the
280                  user forced the language to a specific language.  */
281               if (language_mode == language_mode_auto)
282                 language = language_def (SYMBOL_LANGUAGE (arg->sym));
283               else
284                 language = current_language;
285
286               get_no_prettyformat_print_options (&opts);
287               opts.deref_ref = 1;
288               opts.raw = print_raw_frame_arguments;
289
290               /* True in "summary" mode, false otherwise.  */
291               opts.summary = !strcmp (print_frame_arguments, "scalars");
292
293               common_val_print (arg->val, &stb, 2, &opts, language);
294             }
295           CATCH (except, RETURN_MASK_ERROR)
296             {
297               error_message = except.message;
298             }
299           END_CATCH
300         }
301       if (error_message != NULL)
302         stb.printf (_("<error reading variable: %s>"), error_message);
303     }
304
305   uiout->field_stream ("value", stb);
306 }
307
308 /* Read in inferior function local SYM at FRAME into ARGP.  Caller is
309    responsible for xfree of ARGP->ERROR.  This function never throws an
310    exception.  */
311
312 void
313 read_frame_local (struct symbol *sym, struct frame_info *frame,
314                   struct frame_arg *argp)
315 {
316   argp->sym = sym;
317   argp->val = NULL;
318   argp->error = NULL;
319
320   TRY
321     {
322       argp->val = read_var_value (sym, NULL, frame);
323     }
324   CATCH (except, RETURN_MASK_ERROR)
325     {
326       argp->error = xstrdup (except.message);
327     }
328   END_CATCH
329 }
330
331 /* Read in inferior function parameter SYM at FRAME into ARGP.  Caller is
332    responsible for xfree of ARGP->ERROR.  This function never throws an
333    exception.  */
334
335 void
336 read_frame_arg (struct symbol *sym, struct frame_info *frame,
337                 struct frame_arg *argp, struct frame_arg *entryargp)
338 {
339   struct value *val = NULL, *entryval = NULL;
340   char *val_error = NULL, *entryval_error = NULL;
341   int val_equal = 0;
342
343   if (print_entry_values != print_entry_values_only
344       && print_entry_values != print_entry_values_preferred)
345     {
346       TRY
347         {
348           val = read_var_value (sym, NULL, frame);
349         }
350       CATCH (except, RETURN_MASK_ERROR)
351         {
352           val_error = (char *) alloca (strlen (except.message) + 1);
353           strcpy (val_error, except.message);
354         }
355       END_CATCH
356     }
357
358   if (SYMBOL_COMPUTED_OPS (sym) != NULL
359       && SYMBOL_COMPUTED_OPS (sym)->read_variable_at_entry != NULL
360       && print_entry_values != print_entry_values_no
361       && (print_entry_values != print_entry_values_if_needed
362           || !val || value_optimized_out (val)))
363     {
364       TRY
365         {
366           const struct symbol_computed_ops *ops;
367
368           ops = SYMBOL_COMPUTED_OPS (sym);
369           entryval = ops->read_variable_at_entry (sym, frame);
370         }
371       CATCH (except, RETURN_MASK_ERROR)
372         {
373           if (except.error != NO_ENTRY_VALUE_ERROR)
374             {
375               entryval_error = (char *) alloca (strlen (except.message) + 1);
376               strcpy (entryval_error, except.message);
377             }
378         }
379       END_CATCH
380
381       if (entryval != NULL && value_optimized_out (entryval))
382         entryval = NULL;
383
384       if (print_entry_values == print_entry_values_compact
385           || print_entry_values == print_entry_values_default)
386         {
387           /* For MI do not try to use print_entry_values_compact for ARGP.  */
388
389           if (val && entryval && !current_uiout->is_mi_like_p ())
390             {
391               struct type *type = value_type (val);
392
393               if (value_lazy (val))
394                 value_fetch_lazy (val);
395               if (value_lazy (entryval))
396                 value_fetch_lazy (entryval);
397
398               if (value_contents_eq (val, 0, entryval, 0, TYPE_LENGTH (type)))
399                 {
400                   /* Initialize it just to avoid a GCC false warning.  */
401                   struct value *val_deref = NULL, *entryval_deref;
402
403                   /* DW_AT_call_value does match with the current
404                      value.  If it is a reference still try to verify if
405                      dereferenced DW_AT_call_data_value does not differ.  */
406
407                   TRY
408                     {
409                       struct type *type_deref;
410
411                       val_deref = coerce_ref (val);
412                       if (value_lazy (val_deref))
413                         value_fetch_lazy (val_deref);
414                       type_deref = value_type (val_deref);
415
416                       entryval_deref = coerce_ref (entryval);
417                       if (value_lazy (entryval_deref))
418                         value_fetch_lazy (entryval_deref);
419
420                       /* If the reference addresses match but dereferenced
421                          content does not match print them.  */
422                       if (val != val_deref
423                           && value_contents_eq (val_deref, 0,
424                                                 entryval_deref, 0,
425                                                 TYPE_LENGTH (type_deref)))
426                         val_equal = 1;
427                     }
428                   CATCH (except, RETURN_MASK_ERROR)
429                     {
430                       /* If the dereferenced content could not be
431                          fetched do not display anything.  */
432                       if (except.error == NO_ENTRY_VALUE_ERROR)
433                         val_equal = 1;
434                       else if (except.message != NULL)
435                         {
436                           entryval_error = (char *) alloca (strlen (except.message) + 1);
437                           strcpy (entryval_error, except.message);
438                         }
439                     }
440                   END_CATCH
441
442                   /* Value was not a reference; and its content matches.  */
443                   if (val == val_deref)
444                     val_equal = 1;
445
446                   if (val_equal)
447                     entryval = NULL;
448                 }
449             }
450
451           /* Try to remove possibly duplicate error message for ENTRYARGP even
452              in MI mode.  */
453
454           if (val_error && entryval_error
455               && strcmp (val_error, entryval_error) == 0)
456             {
457               entryval_error = NULL;
458
459               /* Do not se VAL_EQUAL as the same error message may be shown for
460                  the entry value even if no entry values are present in the
461                  inferior.  */
462             }
463         }
464     }
465
466   if (entryval == NULL)
467     {
468       if (print_entry_values == print_entry_values_preferred)
469         {
470           gdb_assert (val == NULL);
471
472           TRY
473             {
474               val = read_var_value (sym, NULL, frame);
475             }
476           CATCH (except, RETURN_MASK_ERROR)
477             {
478               val_error = (char *) alloca (strlen (except.message) + 1);
479               strcpy (val_error, except.message);
480             }
481           END_CATCH
482         }
483       if (print_entry_values == print_entry_values_only
484           || print_entry_values == print_entry_values_both
485           || (print_entry_values == print_entry_values_preferred
486               && (!val || value_optimized_out (val))))
487         {
488           entryval = allocate_optimized_out_value (SYMBOL_TYPE (sym));
489           entryval_error = NULL;
490         }
491     }
492   if ((print_entry_values == print_entry_values_compact
493        || print_entry_values == print_entry_values_if_needed
494        || print_entry_values == print_entry_values_preferred)
495       && (!val || value_optimized_out (val)) && entryval != NULL)
496     {
497       val = NULL;
498       val_error = NULL;
499     }
500
501   argp->sym = sym;
502   argp->val = val;
503   argp->error = val_error ? xstrdup (val_error) : NULL;
504   if (!val && !val_error)
505     argp->entry_kind = print_entry_values_only;
506   else if ((print_entry_values == print_entry_values_compact
507            || print_entry_values == print_entry_values_default) && val_equal)
508     {
509       argp->entry_kind = print_entry_values_compact;
510       gdb_assert (!current_uiout->is_mi_like_p ());
511     }
512   else
513     argp->entry_kind = print_entry_values_no;
514
515   entryargp->sym = sym;
516   entryargp->val = entryval;
517   entryargp->error = entryval_error ? xstrdup (entryval_error) : NULL;
518   if (!entryval && !entryval_error)
519     entryargp->entry_kind = print_entry_values_no;
520   else
521     entryargp->entry_kind = print_entry_values_only;
522 }
523
524 /* Print the arguments of frame FRAME on STREAM, given the function
525    FUNC running in that frame (as a symbol), where NUM is the number
526    of arguments according to the stack frame (or -1 if the number of
527    arguments is unknown).  */
528
529 /* Note that currently the "number of arguments according to the
530    stack frame" is only known on VAX where i refers to the "number of
531    ints of arguments according to the stack frame".  */
532
533 static void
534 print_frame_args (struct symbol *func, struct frame_info *frame,
535                   int num, struct ui_file *stream)
536 {
537   struct ui_out *uiout = current_uiout;
538   int first = 1;
539   /* Offset of next stack argument beyond the one we have seen that is
540      at the highest offset, or -1 if we haven't come to a stack
541      argument yet.  */
542   long highest_offset = -1;
543   /* Number of ints of arguments that we have printed so far.  */
544   int args_printed = 0;
545   /* True if we should print arguments, false otherwise.  */
546   int print_args = strcmp (print_frame_arguments, "none");
547
548   if (func)
549     {
550       const struct block *b = SYMBOL_BLOCK_VALUE (func);
551       struct block_iterator iter;
552       struct symbol *sym;
553
554       ALL_BLOCK_SYMBOLS (b, iter, sym)
555         {
556           struct frame_arg arg, entryarg;
557
558           QUIT;
559
560           /* Keep track of the highest stack argument offset seen, and
561              skip over any kinds of symbols we don't care about.  */
562
563           if (!SYMBOL_IS_ARGUMENT (sym))
564             continue;
565
566           switch (SYMBOL_CLASS (sym))
567             {
568             case LOC_ARG:
569             case LOC_REF_ARG:
570               {
571                 long current_offset = SYMBOL_VALUE (sym);
572                 int arg_size = TYPE_LENGTH (SYMBOL_TYPE (sym));
573
574                 /* Compute address of next argument by adding the size of
575                    this argument and rounding to an int boundary.  */
576                 current_offset =
577                   ((current_offset + arg_size + sizeof (int) - 1)
578                    & ~(sizeof (int) - 1));
579
580                 /* If this is the highest offset seen yet, set
581                    highest_offset.  */
582                 if (highest_offset == -1
583                     || (current_offset > highest_offset))
584                   highest_offset = current_offset;
585
586                 /* Add the number of ints we're about to print to
587                    args_printed.  */
588                 args_printed += (arg_size + sizeof (int) - 1) / sizeof (int);
589               }
590
591               /* We care about types of symbols, but don't need to
592                  keep track of stack offsets in them.  */
593             case LOC_REGISTER:
594             case LOC_REGPARM_ADDR:
595             case LOC_COMPUTED:
596             case LOC_OPTIMIZED_OUT:
597             default:
598               break;
599             }
600
601           /* We have to look up the symbol because arguments can have
602              two entries (one a parameter, one a local) and the one we
603              want is the local, which lookup_symbol will find for us.
604              This includes gcc1 (not gcc2) on SPARC when passing a
605              small structure and gcc2 when the argument type is float
606              and it is passed as a double and converted to float by
607              the prologue (in the latter case the type of the LOC_ARG
608              symbol is double and the type of the LOC_LOCAL symbol is
609              float).  */
610           /* But if the parameter name is null, don't try it.  Null
611              parameter names occur on the RS/6000, for traceback
612              tables.  FIXME, should we even print them?  */
613
614           if (*SYMBOL_LINKAGE_NAME (sym))
615             {
616               struct symbol *nsym;
617
618               nsym = lookup_symbol (SYMBOL_LINKAGE_NAME (sym),
619                                     b, VAR_DOMAIN, NULL).symbol;
620               gdb_assert (nsym != NULL);
621               if (SYMBOL_CLASS (nsym) == LOC_REGISTER
622                   && !SYMBOL_IS_ARGUMENT (nsym))
623                 {
624                   /* There is a LOC_ARG/LOC_REGISTER pair.  This means
625                      that it was passed on the stack and loaded into a
626                      register, or passed in a register and stored in a
627                      stack slot.  GDB 3.x used the LOC_ARG; GDB
628                      4.0-4.11 used the LOC_REGISTER.
629
630                      Reasons for using the LOC_ARG:
631
632                      (1) Because find_saved_registers may be slow for
633                          remote debugging.
634
635                      (2) Because registers are often re-used and stack
636                          slots rarely (never?) are.  Therefore using
637                          the stack slot is much less likely to print
638                          garbage.
639
640                      Reasons why we might want to use the LOC_REGISTER:
641
642                      (1) So that the backtrace prints the same value
643                          as "print foo".  I see no compelling reason
644                          why this needs to be the case; having the
645                          backtrace print the value which was passed
646                          in, and "print foo" print the value as
647                          modified within the called function, makes
648                          perfect sense to me.
649
650                      Additional note: It might be nice if "info args"
651                      displayed both values.
652
653                      One more note: There is a case with SPARC
654                      structure passing where we need to use the
655                      LOC_REGISTER, but this is dealt with by creating
656                      a single LOC_REGPARM in symbol reading.  */
657
658                   /* Leave sym (the LOC_ARG) alone.  */
659                   ;
660                 }
661               else
662                 sym = nsym;
663             }
664
665           /* Print the current arg.  */
666           if (!first)
667             uiout->text (", ");
668           uiout->wrap_hint ("    ");
669
670           if (!print_args)
671             {
672               memset (&arg, 0, sizeof (arg));
673               arg.sym = sym;
674               arg.entry_kind = print_entry_values_no;
675               memset (&entryarg, 0, sizeof (entryarg));
676               entryarg.sym = sym;
677               entryarg.entry_kind = print_entry_values_no;
678             }
679           else
680             read_frame_arg (sym, frame, &arg, &entryarg);
681
682           if (arg.entry_kind != print_entry_values_only)
683             print_frame_arg (&arg);
684
685           if (entryarg.entry_kind != print_entry_values_no)
686             {
687               if (arg.entry_kind != print_entry_values_only)
688                 {
689                   uiout->text (", ");
690                   uiout->wrap_hint ("    ");
691                 }
692
693               print_frame_arg (&entryarg);
694             }
695
696           xfree (arg.error);
697           xfree (entryarg.error);
698
699           first = 0;
700         }
701     }
702
703   /* Don't print nameless args in situations where we don't know
704      enough about the stack to find them.  */
705   if (num != -1)
706     {
707       long start;
708
709       if (highest_offset == -1)
710         start = gdbarch_frame_args_skip (get_frame_arch (frame));
711       else
712         start = highest_offset;
713
714       print_frame_nameless_args (frame, start, num - args_printed,
715                                  first, stream);
716     }
717 }
718
719 /* Set the current source and line to the location given by frame
720    FRAME, if possible.  When CENTER is true, adjust so the relevant
721    line is in the center of the next 'list'.  */
722
723 void
724 set_current_sal_from_frame (struct frame_info *frame)
725 {
726   struct symtab_and_line sal;
727
728   find_frame_sal (frame, &sal);
729   if (sal.symtab != NULL)
730     set_current_source_symtab_and_line (&sal);
731 }
732
733 /* If ON, GDB will display disassembly of the next source line when
734    execution of the program being debugged stops.
735    If AUTO (which is the default), or there's no line info to determine
736    the source line of the next instruction, display disassembly of next
737    instruction instead.  */
738
739 static enum auto_boolean disassemble_next_line;
740
741 static void
742 show_disassemble_next_line (struct ui_file *file, int from_tty,
743                                  struct cmd_list_element *c,
744                                  const char *value)
745 {
746   fprintf_filtered (file,
747                     _("Debugger's willingness to use "
748                       "disassemble-next-line is %s.\n"),
749                     value);
750 }
751
752 /* Use TRY_CATCH to catch the exception from the gdb_disassembly
753    because it will be broken by filter sometime.  */
754
755 static void
756 do_gdb_disassembly (struct gdbarch *gdbarch,
757                     int how_many, CORE_ADDR low, CORE_ADDR high)
758 {
759
760   TRY
761     {
762       gdb_disassembly (gdbarch, current_uiout,
763                        DISASSEMBLY_RAW_INSN, how_many,
764                        low, high);
765     }
766   CATCH (exception, RETURN_MASK_ERROR)
767     {
768       /* If an exception was thrown while doing the disassembly, print
769          the error message, to give the user a clue of what happened.  */
770       exception_print (gdb_stderr, exception);
771     }
772   END_CATCH
773 }
774
775 /* Print information about frame FRAME.  The output is format according
776    to PRINT_LEVEL and PRINT_WHAT and PRINT_ARGS.  The meaning of
777    PRINT_WHAT is:
778    
779    SRC_LINE: Print only source line.
780    LOCATION: Print only location.
781    LOC_AND_SRC: Print location and source line.
782
783    Used in "where" output, and to emit breakpoint or step
784    messages.  */
785
786 void
787 print_frame_info (struct frame_info *frame, int print_level,
788                   enum print_what print_what, int print_args,
789                   int set_current_sal)
790 {
791   struct gdbarch *gdbarch = get_frame_arch (frame);
792   struct symtab_and_line sal;
793   int source_print;
794   int location_print;
795   struct ui_out *uiout = current_uiout;
796
797   if (get_frame_type (frame) == DUMMY_FRAME
798       || get_frame_type (frame) == SIGTRAMP_FRAME
799       || get_frame_type (frame) == ARCH_FRAME)
800     {
801       ui_out_emit_tuple tuple_emitter (uiout, "frame");
802
803       annotate_frame_begin (print_level ? frame_relative_level (frame) : 0,
804                             gdbarch, get_frame_pc (frame));
805
806       /* Do this regardless of SOURCE because we don't have any source
807          to list for this frame.  */
808       if (print_level)
809         {
810           uiout->text ("#");
811           uiout->field_fmt_int (2, ui_left, "level",
812                                 frame_relative_level (frame));
813         }
814       if (uiout->is_mi_like_p ())
815         {
816           annotate_frame_address ();
817           uiout->field_core_addr ("addr",
818                                   gdbarch, get_frame_pc (frame));
819           annotate_frame_address_end ();
820         }
821
822       if (get_frame_type (frame) == DUMMY_FRAME)
823         {
824           annotate_function_call ();
825           uiout->field_string ("func", "<function called from gdb>");
826         }
827       else if (get_frame_type (frame) == SIGTRAMP_FRAME)
828         {
829           annotate_signal_handler_caller ();
830           uiout->field_string ("func", "<signal handler called>");
831         }
832       else if (get_frame_type (frame) == ARCH_FRAME)
833         {
834           uiout->field_string ("func", "<cross-architecture call>");
835         }
836       uiout->text ("\n");
837       annotate_frame_end ();
838
839       /* If disassemble-next-line is set to auto or on output the next
840          instruction.  */
841       if (disassemble_next_line == AUTO_BOOLEAN_AUTO
842           || disassemble_next_line == AUTO_BOOLEAN_TRUE)
843         do_gdb_disassembly (get_frame_arch (frame), 1,
844                             get_frame_pc (frame), get_frame_pc (frame) + 1);
845
846       return;
847     }
848
849   /* If FRAME is not the innermost frame, that normally means that
850      FRAME->pc points to *after* the call instruction, and we want to
851      get the line containing the call, never the next line.  But if
852      the next frame is a SIGTRAMP_FRAME or a DUMMY_FRAME, then the
853      next frame was not entered as the result of a call, and we want
854      to get the line containing FRAME->pc.  */
855   find_frame_sal (frame, &sal);
856
857   location_print = (print_what == LOCATION 
858                     || print_what == LOC_AND_ADDRESS
859                     || print_what == SRC_AND_LOC);
860
861   if (location_print || !sal.symtab)
862     print_frame (frame, print_level, print_what, print_args, sal);
863
864   source_print = (print_what == SRC_LINE || print_what == SRC_AND_LOC);
865
866   /* If disassemble-next-line is set to auto or on and doesn't have
867      the line debug messages for $pc, output the next instruction.  */
868   if ((disassemble_next_line == AUTO_BOOLEAN_AUTO
869        || disassemble_next_line == AUTO_BOOLEAN_TRUE)
870       && source_print && !sal.symtab)
871     do_gdb_disassembly (get_frame_arch (frame), 1,
872                         get_frame_pc (frame), get_frame_pc (frame) + 1);
873
874   if (source_print && sal.symtab)
875     {
876       int done = 0;
877       int mid_statement = ((print_what == SRC_LINE)
878                            && frame_show_address (frame, sal));
879
880       if (annotation_level)
881         done = identify_source_line (sal.symtab, sal.line, mid_statement,
882                                      get_frame_pc (frame));
883       if (!done)
884         {
885           if (deprecated_print_frame_info_listing_hook)
886             deprecated_print_frame_info_listing_hook (sal.symtab, 
887                                                       sal.line, 
888                                                       sal.line + 1, 0);
889           else
890             {
891               struct value_print_options opts;
892
893               get_user_print_options (&opts);
894               /* We used to do this earlier, but that is clearly
895                  wrong.  This function is used by many different
896                  parts of gdb, including normal_stop in infrun.c,
897                  which uses this to print out the current PC
898                  when we stepi/nexti into the middle of a source
899                  line.  Only the command line really wants this
900                  behavior.  Other UIs probably would like the
901                  ability to decide for themselves if it is desired.  */
902               if (opts.addressprint && mid_statement)
903                 {
904                   uiout->field_core_addr ("addr",
905                                           gdbarch, get_frame_pc (frame));
906                   uiout->text ("\t");
907                 }
908
909               print_source_lines (sal.symtab, sal.line, sal.line + 1, 0);
910             }
911         }
912
913       /* If disassemble-next-line is set to on and there is line debug
914          messages, output assembly codes for next line.  */
915       if (disassemble_next_line == AUTO_BOOLEAN_TRUE)
916         do_gdb_disassembly (get_frame_arch (frame), -1, sal.pc, sal.end);
917     }
918
919   if (set_current_sal)
920     {
921       CORE_ADDR pc;
922
923       if (get_frame_pc_if_available (frame, &pc))
924         set_last_displayed_sal (1, sal.pspace, pc, sal.symtab, sal.line);
925       else
926         set_last_displayed_sal (0, 0, 0, 0, 0);
927     }
928
929   annotate_frame_end ();
930
931   gdb_flush (gdb_stdout);
932 }
933
934 /* Remember the last symtab and line we displayed, which we use e.g.
935  * as the place to put a breakpoint when the `break' command is
936  * invoked with no arguments.  */
937
938 static void
939 set_last_displayed_sal (int valid, struct program_space *pspace,
940                         CORE_ADDR addr, struct symtab *symtab,
941                         int line)
942 {
943   last_displayed_sal_valid = valid;
944   last_displayed_pspace = pspace;
945   last_displayed_addr = addr;
946   last_displayed_symtab = symtab;
947   last_displayed_line = line;
948   if (valid && pspace == NULL)
949     {
950       clear_last_displayed_sal ();
951       internal_error (__FILE__, __LINE__,
952                       _("Trying to set NULL pspace."));
953     }
954 }
955
956 /* Forget the last sal we displayed.  */
957
958 void
959 clear_last_displayed_sal (void)
960 {
961   last_displayed_sal_valid = 0;
962   last_displayed_pspace = 0;
963   last_displayed_addr = 0;
964   last_displayed_symtab = 0;
965   last_displayed_line = 0;
966 }
967
968 /* Is our record of the last sal we displayed valid?  If not,
969  * the get_last_displayed_* functions will return NULL or 0, as
970  * appropriate.  */
971
972 int
973 last_displayed_sal_is_valid (void)
974 {
975   return last_displayed_sal_valid;
976 }
977
978 /* Get the pspace of the last sal we displayed, if it's valid.  */
979
980 struct program_space *
981 get_last_displayed_pspace (void)
982 {
983   if (last_displayed_sal_valid)
984     return last_displayed_pspace;
985   return 0;
986 }
987
988 /* Get the address of the last sal we displayed, if it's valid.  */
989
990 CORE_ADDR
991 get_last_displayed_addr (void)
992 {
993   if (last_displayed_sal_valid)
994     return last_displayed_addr;
995   return 0;
996 }
997
998 /* Get the symtab of the last sal we displayed, if it's valid.  */
999
1000 struct symtab*
1001 get_last_displayed_symtab (void)
1002 {
1003   if (last_displayed_sal_valid)
1004     return last_displayed_symtab;
1005   return 0;
1006 }
1007
1008 /* Get the line of the last sal we displayed, if it's valid.  */
1009
1010 int
1011 get_last_displayed_line (void)
1012 {
1013   if (last_displayed_sal_valid)
1014     return last_displayed_line;
1015   return 0;
1016 }
1017
1018 /* Get the last sal we displayed, if it's valid.  */
1019
1020 void
1021 get_last_displayed_sal (struct symtab_and_line *sal)
1022 {
1023   if (last_displayed_sal_valid)
1024     {
1025       sal->pspace = last_displayed_pspace;
1026       sal->pc = last_displayed_addr;
1027       sal->symtab = last_displayed_symtab;
1028       sal->line = last_displayed_line;
1029     }
1030   else
1031     {
1032       sal->pspace = 0;
1033       sal->pc = 0;
1034       sal->symtab = 0;
1035       sal->line = 0;
1036     }
1037 }
1038
1039
1040 /* Attempt to obtain the FUNNAME, FUNLANG and optionally FUNCP of the function
1041    corresponding to FRAME.  FUNNAME needs to be freed by the caller.  */
1042
1043 void
1044 find_frame_funname (struct frame_info *frame, char **funname,
1045                     enum language *funlang, struct symbol **funcp)
1046 {
1047   struct symbol *func;
1048
1049   *funname = NULL;
1050   *funlang = language_unknown;
1051   if (funcp)
1052     *funcp = NULL;
1053
1054   func = get_frame_function (frame);
1055   if (func)
1056     {
1057       /* In certain pathological cases, the symtabs give the wrong
1058          function (when we are in the first function in a file which
1059          is compiled without debugging symbols, the previous function
1060          is compiled with debugging symbols, and the "foo.o" symbol
1061          that is supposed to tell us where the file with debugging
1062          symbols ends has been truncated by ar because it is longer
1063          than 15 characters).  This also occurs if the user uses asm()
1064          to create a function but not stabs for it (in a file compiled
1065          with -g).
1066
1067          So look in the minimal symbol tables as well, and if it comes
1068          up with a larger address for the function use that instead.
1069          I don't think this can ever cause any problems; there
1070          shouldn't be any minimal symbols in the middle of a function;
1071          if this is ever changed many parts of GDB will need to be
1072          changed (and we'll create a find_pc_minimal_function or some
1073          such).  */
1074
1075       struct bound_minimal_symbol msymbol;
1076
1077       /* Don't attempt to do this for inlined functions, which do not
1078          have a corresponding minimal symbol.  */
1079       if (!block_inlined_p (SYMBOL_BLOCK_VALUE (func)))
1080         msymbol
1081           = lookup_minimal_symbol_by_pc (get_frame_address_in_block (frame));
1082       else
1083         memset (&msymbol, 0, sizeof (msymbol));
1084
1085       if (msymbol.minsym != NULL
1086           && (BMSYMBOL_VALUE_ADDRESS (msymbol)
1087               > BLOCK_START (SYMBOL_BLOCK_VALUE (func))))
1088         {
1089           /* We also don't know anything about the function besides
1090              its address and name.  */
1091           func = 0;
1092           *funname = xstrdup (MSYMBOL_PRINT_NAME (msymbol.minsym));
1093           *funlang = MSYMBOL_LANGUAGE (msymbol.minsym);
1094         }
1095       else
1096         {
1097           const char *print_name = SYMBOL_PRINT_NAME (func);
1098
1099           *funlang = SYMBOL_LANGUAGE (func);
1100           if (funcp)
1101             *funcp = func;
1102           if (*funlang == language_cplus)
1103             {
1104               /* It seems appropriate to use SYMBOL_PRINT_NAME() here,
1105                  to display the demangled name that we already have
1106                  stored in the symbol table, but we stored a version
1107                  with DMGL_PARAMS turned on, and here we don't want to
1108                  display parameters.  So remove the parameters.  */
1109               char *func_only = cp_remove_params (print_name);
1110
1111               if (func_only)
1112                 *funname = func_only;
1113             }
1114
1115           /* If we didn't hit the C++ case above, set *funname here.
1116              This approach is taken to avoid having to install a
1117              cleanup in case cp_remove_params can throw.  */
1118           if (*funname == NULL)
1119             *funname = xstrdup (print_name);
1120         }
1121     }
1122   else
1123     {
1124       struct bound_minimal_symbol msymbol;
1125       CORE_ADDR pc;
1126
1127       if (!get_frame_address_in_block_if_available (frame, &pc))
1128         return;
1129
1130       msymbol = lookup_minimal_symbol_by_pc (pc);
1131       if (msymbol.minsym != NULL)
1132         {
1133           *funname = xstrdup (MSYMBOL_PRINT_NAME (msymbol.minsym));
1134           *funlang = MSYMBOL_LANGUAGE (msymbol.minsym);
1135         }
1136     }
1137 }
1138
1139 static void
1140 print_frame (struct frame_info *frame, int print_level,
1141              enum print_what print_what, int print_args,
1142              struct symtab_and_line sal)
1143 {
1144   struct gdbarch *gdbarch = get_frame_arch (frame);
1145   struct ui_out *uiout = current_uiout;
1146   char *funname = NULL;
1147   enum language funlang = language_unknown;
1148   struct cleanup *old_chain, *list_chain;
1149   struct value_print_options opts;
1150   struct symbol *func;
1151   CORE_ADDR pc = 0;
1152   int pc_p;
1153
1154   pc_p = get_frame_pc_if_available (frame, &pc);
1155
1156
1157   find_frame_funname (frame, &funname, &funlang, &func);
1158   old_chain = make_cleanup (xfree, funname);
1159
1160   annotate_frame_begin (print_level ? frame_relative_level (frame) : 0,
1161                         gdbarch, pc);
1162
1163   list_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "frame");
1164
1165   if (print_level)
1166     {
1167       uiout->text ("#");
1168       uiout->field_fmt_int (2, ui_left, "level",
1169                             frame_relative_level (frame));
1170     }
1171   get_user_print_options (&opts);
1172   if (opts.addressprint)
1173     if (!sal.symtab
1174         || frame_show_address (frame, sal)
1175         || print_what == LOC_AND_ADDRESS)
1176       {
1177         annotate_frame_address ();
1178         if (pc_p)
1179           uiout->field_core_addr ("addr", gdbarch, pc);
1180         else
1181           uiout->field_string ("addr", "<unavailable>");
1182         annotate_frame_address_end ();
1183         uiout->text (" in ");
1184       }
1185   annotate_frame_function_name ();
1186
1187   string_file stb;
1188   fprintf_symbol_filtered (&stb, funname ? funname : "??",
1189                            funlang, DMGL_ANSI);
1190   uiout->field_stream ("func", stb);
1191   uiout->wrap_hint ("   ");
1192   annotate_frame_args ();
1193       
1194   uiout->text (" (");
1195   if (print_args)
1196     {
1197       struct gdbarch *gdbarch = get_frame_arch (frame);
1198       int numargs;
1199       struct cleanup *args_list_chain;
1200
1201       if (gdbarch_frame_num_args_p (gdbarch))
1202         {
1203           numargs = gdbarch_frame_num_args (gdbarch, frame);
1204           gdb_assert (numargs >= 0);
1205         }
1206       else
1207         numargs = -1;
1208     
1209       args_list_chain = make_cleanup_ui_out_list_begin_end (uiout, "args");
1210       TRY
1211         {
1212           print_frame_args (func, frame, numargs, gdb_stdout);
1213         }
1214       CATCH (e, RETURN_MASK_ERROR)
1215         {
1216         }
1217       END_CATCH
1218
1219       /* FIXME: ARGS must be a list.  If one argument is a string it
1220           will have " that will not be properly escaped.  */
1221       /* Invoke ui_out_tuple_end.  */
1222       do_cleanups (args_list_chain);
1223       QUIT;
1224     }
1225   uiout->text (")");
1226   if (sal.symtab)
1227     {
1228       const char *filename_display;
1229       
1230       filename_display = symtab_to_filename_for_display (sal.symtab);
1231       annotate_frame_source_begin ();
1232       uiout->wrap_hint ("   ");
1233       uiout->text (" at ");
1234       annotate_frame_source_file ();
1235       uiout->field_string ("file", filename_display);
1236       if (uiout->is_mi_like_p ())
1237         {
1238           const char *fullname = symtab_to_fullname (sal.symtab);
1239
1240           uiout->field_string ("fullname", fullname);
1241         }
1242       annotate_frame_source_file_end ();
1243       uiout->text (":");
1244       annotate_frame_source_line ();
1245       uiout->field_int ("line", sal.line);
1246       annotate_frame_source_end ();
1247     }
1248
1249   if (pc_p && (funname == NULL || sal.symtab == NULL))
1250     {
1251       char *lib = solib_name_from_address (get_frame_program_space (frame),
1252                                            get_frame_pc (frame));
1253
1254       if (lib)
1255         {
1256           annotate_frame_where ();
1257           uiout->wrap_hint ("  ");
1258           uiout->text (" from ");
1259           uiout->field_string ("from", lib);
1260         }
1261     }
1262
1263   /* do_cleanups will call ui_out_tuple_end() for us.  */
1264   do_cleanups (list_chain);
1265   uiout->text ("\n");
1266   do_cleanups (old_chain);
1267 }
1268 \f
1269
1270 /* Read a frame specification in whatever the appropriate format is from
1271    FRAME_EXP.  Call error() if the specification is in any way invalid (so
1272    this function never returns NULL).  When SELECTED_FRAME_P is non-NULL
1273    set its target to indicate that the default selected frame was used.  */
1274
1275 static struct frame_info *
1276 parse_frame_specification (const char *frame_exp, int *selected_frame_p)
1277 {
1278   int numargs;
1279   struct value *args[4];
1280   CORE_ADDR addrs[ARRAY_SIZE (args)];
1281
1282   if (frame_exp == NULL)
1283     numargs = 0;
1284   else
1285     {
1286       numargs = 0;
1287       while (1)
1288         {
1289           char *addr_string;
1290           struct cleanup *cleanup;
1291           const char *p;
1292
1293           /* Skip leading white space, bail of EOL.  */
1294           frame_exp = skip_spaces_const (frame_exp);
1295           if (!*frame_exp)
1296             break;
1297
1298           /* Parse the argument, extract it, save it.  */
1299           for (p = frame_exp;
1300                *p && !ISSPACE (*p);
1301                p++);
1302           addr_string = savestring (frame_exp, p - frame_exp);
1303           frame_exp = p;
1304           cleanup = make_cleanup (xfree, addr_string);
1305           
1306           /* NOTE: Parse and evaluate expression, but do not use
1307              functions such as parse_and_eval_long or
1308              parse_and_eval_address to also extract the value.
1309              Instead value_as_long and value_as_address are used.
1310              This avoids problems with expressions that contain
1311              side-effects.  */
1312           if (numargs >= ARRAY_SIZE (args))
1313             error (_("Too many args in frame specification"));
1314           args[numargs++] = parse_and_eval (addr_string);
1315
1316           do_cleanups (cleanup);
1317         }
1318     }
1319
1320   /* If no args, default to the selected frame.  */
1321   if (numargs == 0)
1322     {
1323       if (selected_frame_p != NULL)
1324         (*selected_frame_p) = 1;
1325       return get_selected_frame (_("No stack."));
1326     }
1327
1328   /* None of the remaining use the selected frame.  */
1329   if (selected_frame_p != NULL)
1330     (*selected_frame_p) = 0;
1331
1332   /* Assume the single arg[0] is an integer, and try using that to
1333      select a frame relative to current.  */
1334   if (numargs == 1)
1335     {
1336       struct frame_info *fid;
1337       int level = value_as_long (args[0]);
1338
1339       fid = find_relative_frame (get_current_frame (), &level);
1340       if (level == 0)
1341         /* find_relative_frame was successful.  */
1342         return fid;
1343     }
1344
1345   /* Convert each value into a corresponding address.  */
1346   {
1347     int i;
1348
1349     for (i = 0; i < numargs; i++)
1350       addrs[i] = value_as_address (args[i]);
1351   }
1352
1353   /* Assume that the single arg[0] is an address, use that to identify
1354      a frame with a matching ID.  Should this also accept stack/pc or
1355      stack/pc/special.  */
1356   if (numargs == 1)
1357     {
1358       struct frame_id id = frame_id_build_wild (addrs[0]);
1359       struct frame_info *fid;
1360
1361       /* If (s)he specifies the frame with an address, he deserves
1362          what (s)he gets.  Still, give the highest one that matches.
1363          (NOTE: cagney/2004-10-29: Why highest, or outer-most, I don't
1364          know).  */
1365       for (fid = get_current_frame ();
1366            fid != NULL;
1367            fid = get_prev_frame (fid))
1368         {
1369           if (frame_id_eq (id, get_frame_id (fid)))
1370             {
1371               struct frame_info *prev_frame;
1372
1373               while (1)
1374                 {
1375                   prev_frame = get_prev_frame (fid);
1376                   if (!prev_frame
1377                       || !frame_id_eq (id, get_frame_id (prev_frame)))
1378                     break;
1379                   fid = prev_frame;
1380                 }
1381               return fid;
1382             }
1383         }
1384       }
1385
1386   /* We couldn't identify the frame as an existing frame, but
1387      perhaps we can create one with a single argument.  */
1388   if (numargs == 1)
1389     return create_new_frame (addrs[0], 0);
1390   else if (numargs == 2)
1391     return create_new_frame (addrs[0], addrs[1]);
1392   else
1393     error (_("Too many args in frame specification"));
1394 }
1395
1396 /* Print verbosely the selected frame or the frame at address
1397    ADDR_EXP.  Absolutely all information in the frame is printed.  */
1398
1399 static void
1400 frame_info (char *addr_exp, int from_tty)
1401 {
1402   struct frame_info *fi;
1403   struct symtab_and_line sal;
1404   struct symbol *func;
1405   struct symtab *s;
1406   struct frame_info *calling_frame_info;
1407   int numregs;
1408   const char *funname = 0;
1409   enum language funlang = language_unknown;
1410   const char *pc_regname;
1411   int selected_frame_p;
1412   struct gdbarch *gdbarch;
1413   struct cleanup *back_to = make_cleanup (null_cleanup, NULL);
1414   CORE_ADDR frame_pc;
1415   int frame_pc_p;
1416   /* Initialize it to avoid "may be used uninitialized" warning.  */
1417   CORE_ADDR caller_pc = 0;
1418   int caller_pc_p = 0;
1419
1420   fi = parse_frame_specification (addr_exp, &selected_frame_p);
1421   gdbarch = get_frame_arch (fi);
1422
1423   /* Name of the value returned by get_frame_pc().  Per comments, "pc"
1424      is not a good name.  */
1425   if (gdbarch_pc_regnum (gdbarch) >= 0)
1426     /* OK, this is weird.  The gdbarch_pc_regnum hardware register's value can
1427        easily not match that of the internal value returned by
1428        get_frame_pc().  */
1429     pc_regname = gdbarch_register_name (gdbarch, gdbarch_pc_regnum (gdbarch));
1430   else
1431     /* But then, this is weird to.  Even without gdbarch_pc_regnum, an
1432        architectures will often have a hardware register called "pc",
1433        and that register's value, again, can easily not match
1434        get_frame_pc().  */
1435     pc_regname = "pc";
1436
1437   frame_pc_p = get_frame_pc_if_available (fi, &frame_pc);
1438   find_frame_sal (fi, &sal);
1439   func = get_frame_function (fi);
1440   s = sal.symtab;
1441   if (func)
1442     {
1443       funname = SYMBOL_PRINT_NAME (func);
1444       funlang = SYMBOL_LANGUAGE (func);
1445       if (funlang == language_cplus)
1446         {
1447           /* It seems appropriate to use SYMBOL_PRINT_NAME() here,
1448              to display the demangled name that we already have
1449              stored in the symbol table, but we stored a version
1450              with DMGL_PARAMS turned on, and here we don't want to
1451              display parameters.  So remove the parameters.  */
1452           char *func_only = cp_remove_params (funname);
1453
1454           if (func_only)
1455             {
1456               funname = func_only;
1457               make_cleanup (xfree, func_only);
1458             }
1459         }
1460     }
1461   else if (frame_pc_p)
1462     {
1463       struct bound_minimal_symbol msymbol;
1464
1465       msymbol = lookup_minimal_symbol_by_pc (frame_pc);
1466       if (msymbol.minsym != NULL)
1467         {
1468           funname = MSYMBOL_PRINT_NAME (msymbol.minsym);
1469           funlang = MSYMBOL_LANGUAGE (msymbol.minsym);
1470         }
1471     }
1472   calling_frame_info = get_prev_frame (fi);
1473
1474   if (selected_frame_p && frame_relative_level (fi) >= 0)
1475     {
1476       printf_filtered (_("Stack level %d, frame at "),
1477                        frame_relative_level (fi));
1478     }
1479   else
1480     {
1481       printf_filtered (_("Stack frame at "));
1482     }
1483   fputs_filtered (paddress (gdbarch, get_frame_base (fi)), gdb_stdout);
1484   printf_filtered (":\n");
1485   printf_filtered (" %s = ", pc_regname);
1486   if (frame_pc_p)
1487     fputs_filtered (paddress (gdbarch, get_frame_pc (fi)), gdb_stdout);
1488   else
1489     fputs_filtered ("<unavailable>", gdb_stdout);
1490
1491   wrap_here ("   ");
1492   if (funname)
1493     {
1494       printf_filtered (" in ");
1495       fprintf_symbol_filtered (gdb_stdout, funname, funlang,
1496                                DMGL_ANSI | DMGL_PARAMS);
1497     }
1498   wrap_here ("   ");
1499   if (sal.symtab)
1500     printf_filtered (" (%s:%d)", symtab_to_filename_for_display (sal.symtab),
1501                      sal.line);
1502   puts_filtered ("; ");
1503   wrap_here ("    ");
1504   printf_filtered ("saved %s = ", pc_regname);
1505
1506   if (!frame_id_p (frame_unwind_caller_id (fi)))
1507     val_print_not_saved (gdb_stdout);
1508   else
1509     {
1510       TRY
1511         {
1512           caller_pc = frame_unwind_caller_pc (fi);
1513           caller_pc_p = 1;
1514         }
1515       CATCH (ex, RETURN_MASK_ERROR)
1516         {
1517           switch (ex.error)
1518             {
1519             case NOT_AVAILABLE_ERROR:
1520               val_print_unavailable (gdb_stdout);
1521               break;
1522             case OPTIMIZED_OUT_ERROR:
1523               val_print_not_saved (gdb_stdout);
1524               break;
1525             default:
1526               fprintf_filtered (gdb_stdout, _("<error: %s>"), ex.message);
1527               break;
1528             }
1529         }
1530       END_CATCH
1531     }
1532
1533   if (caller_pc_p)
1534     fputs_filtered (paddress (gdbarch, caller_pc), gdb_stdout);
1535   printf_filtered ("\n");
1536
1537   if (calling_frame_info == NULL)
1538     {
1539       enum unwind_stop_reason reason;
1540
1541       reason = get_frame_unwind_stop_reason (fi);
1542       if (reason != UNWIND_NO_REASON)
1543         printf_filtered (_(" Outermost frame: %s\n"),
1544                          frame_stop_reason_string (fi));
1545     }
1546   else if (get_frame_type (fi) == TAILCALL_FRAME)
1547     puts_filtered (" tail call frame");
1548   else if (get_frame_type (fi) == INLINE_FRAME)
1549     printf_filtered (" inlined into frame %d",
1550                      frame_relative_level (get_prev_frame (fi)));
1551   else
1552     {
1553       printf_filtered (" called by frame at ");
1554       fputs_filtered (paddress (gdbarch, get_frame_base (calling_frame_info)),
1555                       gdb_stdout);
1556     }
1557   if (get_next_frame (fi) && calling_frame_info)
1558     puts_filtered (",");
1559   wrap_here ("   ");
1560   if (get_next_frame (fi))
1561     {
1562       printf_filtered (" caller of frame at ");
1563       fputs_filtered (paddress (gdbarch, get_frame_base (get_next_frame (fi))),
1564                       gdb_stdout);
1565     }
1566   if (get_next_frame (fi) || calling_frame_info)
1567     puts_filtered ("\n");
1568
1569   if (s)
1570     printf_filtered (" source language %s.\n",
1571                      language_str (s->language));
1572
1573   {
1574     /* Address of the argument list for this frame, or 0.  */
1575     CORE_ADDR arg_list = get_frame_args_address (fi);
1576     /* Number of args for this frame, or -1 if unknown.  */
1577     int numargs;
1578
1579     if (arg_list == 0)
1580       printf_filtered (" Arglist at unknown address.\n");
1581     else
1582       {
1583         printf_filtered (" Arglist at ");
1584         fputs_filtered (paddress (gdbarch, arg_list), gdb_stdout);
1585         printf_filtered (",");
1586
1587         if (!gdbarch_frame_num_args_p (gdbarch))
1588           {
1589             numargs = -1;
1590             puts_filtered (" args: ");
1591           }
1592         else
1593           {
1594             numargs = gdbarch_frame_num_args (gdbarch, fi);
1595             gdb_assert (numargs >= 0);
1596             if (numargs == 0)
1597               puts_filtered (" no args.");
1598             else if (numargs == 1)
1599               puts_filtered (" 1 arg: ");
1600             else
1601               printf_filtered (" %d args: ", numargs);
1602           }
1603         print_frame_args (func, fi, numargs, gdb_stdout);
1604         puts_filtered ("\n");
1605       }
1606   }
1607   {
1608     /* Address of the local variables for this frame, or 0.  */
1609     CORE_ADDR arg_list = get_frame_locals_address (fi);
1610
1611     if (arg_list == 0)
1612       printf_filtered (" Locals at unknown address,");
1613     else
1614       {
1615         printf_filtered (" Locals at ");
1616         fputs_filtered (paddress (gdbarch, arg_list), gdb_stdout);
1617         printf_filtered (",");
1618       }
1619   }
1620
1621   /* Print as much information as possible on the location of all the
1622      registers.  */
1623   {
1624     int count;
1625     int i;
1626     int need_nl = 1;
1627     int sp_regnum = gdbarch_sp_regnum (gdbarch);
1628
1629     /* The sp is special; what's displayed isn't the save address, but
1630        the value of the previous frame's sp.  This is a legacy thing,
1631        at one stage the frame cached the previous frame's SP instead
1632        of its address, hence it was easiest to just display the cached
1633        value.  */
1634     if (sp_regnum >= 0)
1635       {
1636         struct value *value = frame_unwind_register_value (fi, sp_regnum);
1637         gdb_assert (value != NULL);
1638
1639         if (!value_optimized_out (value) && value_entirely_available (value))
1640           {
1641             if (VALUE_LVAL (value) == not_lval)
1642               {
1643                 CORE_ADDR sp;
1644                 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1645                 int sp_size = register_size (gdbarch, sp_regnum);
1646
1647                 sp = extract_unsigned_integer (value_contents_all (value),
1648                                                sp_size, byte_order);
1649
1650                 printf_filtered (" Previous frame's sp is ");
1651                 fputs_filtered (paddress (gdbarch, sp), gdb_stdout);
1652                 printf_filtered ("\n");
1653               }
1654             else if (VALUE_LVAL (value) == lval_memory)
1655               {
1656                 printf_filtered (" Previous frame's sp at ");
1657                 fputs_filtered (paddress (gdbarch, value_address (value)),
1658                                 gdb_stdout);
1659                 printf_filtered ("\n");
1660               }
1661             else if (VALUE_LVAL (value) == lval_register)
1662               {
1663                 printf_filtered (" Previous frame's sp in %s\n",
1664                                  gdbarch_register_name (gdbarch,
1665                                                         VALUE_REGNUM (value)));
1666               }
1667
1668             release_value (value);
1669             value_free (value);
1670             need_nl = 0;
1671           }
1672         /* else keep quiet.  */
1673       }
1674
1675     count = 0;
1676     numregs = gdbarch_num_regs (gdbarch)
1677               + gdbarch_num_pseudo_regs (gdbarch);
1678     for (i = 0; i < numregs; i++)
1679       if (i != sp_regnum
1680           && gdbarch_register_reggroup_p (gdbarch, i, all_reggroup))
1681         {
1682           enum lval_type lval;
1683           int optimized;
1684           int unavailable;
1685           CORE_ADDR addr;
1686           int realnum;
1687
1688           /* Find out the location of the saved register without
1689              fetching the corresponding value.  */
1690           frame_register_unwind (fi, i, &optimized, &unavailable,
1691                                  &lval, &addr, &realnum, NULL);
1692           /* For moment, only display registers that were saved on the
1693              stack.  */
1694           if (!optimized && !unavailable && lval == lval_memory)
1695             {
1696               if (count == 0)
1697                 puts_filtered (" Saved registers:\n ");
1698               else
1699                 puts_filtered (",");
1700               wrap_here (" ");
1701               printf_filtered (" %s at ",
1702                                gdbarch_register_name (gdbarch, i));
1703               fputs_filtered (paddress (gdbarch, addr), gdb_stdout);
1704               count++;
1705             }
1706         }
1707     if (count || need_nl)
1708       puts_filtered ("\n");
1709   }
1710
1711   do_cleanups (back_to);
1712 }
1713
1714 /* Print briefly all stack frames or just the innermost COUNT_EXP
1715    frames.  */
1716
1717 static void
1718 backtrace_command_1 (char *count_exp, int show_locals, int no_filters,
1719                      int from_tty)
1720 {
1721   struct frame_info *fi;
1722   int count;
1723   int i;
1724   struct frame_info *trailing;
1725   int trailing_level, py_start = 0, py_end = 0;
1726   enum ext_lang_bt_status result = EXT_LANG_BT_ERROR;
1727
1728   if (!target_has_stack)
1729     error (_("No stack."));
1730
1731   /* The following code must do two things.  First, it must set the
1732      variable TRAILING to the frame from which we should start
1733      printing.  Second, it must set the variable count to the number
1734      of frames which we should print, or -1 if all of them.  */
1735   trailing = get_current_frame ();
1736
1737   trailing_level = 0;
1738   if (count_exp)
1739     {
1740       count = parse_and_eval_long (count_exp);
1741       if (count < 0)
1742         {
1743           struct frame_info *current;
1744
1745           py_start = count;
1746           count = -count;
1747
1748           current = trailing;
1749           while (current && count--)
1750             {
1751               QUIT;
1752               current = get_prev_frame (current);
1753             }
1754
1755           /* Will stop when CURRENT reaches the top of the stack.
1756              TRAILING will be COUNT below it.  */
1757           while (current)
1758             {
1759               QUIT;
1760               trailing = get_prev_frame (trailing);
1761               current = get_prev_frame (current);
1762               trailing_level++;
1763             }
1764
1765           count = -1;
1766         }
1767       else
1768         {
1769           py_start = 0;
1770           py_end = count;
1771         }
1772     }
1773   else
1774     {
1775       py_end = -1;
1776       count = -1;
1777     }
1778
1779   if (info_verbose)
1780     {
1781       /* Read in symbols for all of the frames.  Need to do this in a
1782          separate pass so that "Reading in symbols for xxx" messages
1783          don't screw up the appearance of the backtrace.  Also if
1784          people have strong opinions against reading symbols for
1785          backtrace this may have to be an option.  */
1786       i = count;
1787       for (fi = trailing; fi != NULL && i--; fi = get_prev_frame (fi))
1788         {
1789           CORE_ADDR pc;
1790
1791           QUIT;
1792           pc = get_frame_address_in_block (fi);
1793           expand_symtab_containing_pc (pc, find_pc_mapped_section (pc));
1794         }
1795     }
1796
1797   if (! no_filters)
1798     {
1799       int flags = PRINT_LEVEL | PRINT_FRAME_INFO | PRINT_ARGS;
1800       enum ext_lang_frame_args arg_type;
1801
1802       if (show_locals)
1803         flags |= PRINT_LOCALS;
1804
1805       if (!strcmp (print_frame_arguments, "scalars"))
1806         arg_type = CLI_SCALAR_VALUES;
1807       else if (!strcmp (print_frame_arguments, "all"))
1808         arg_type = CLI_ALL_VALUES;
1809       else
1810         arg_type = NO_VALUES;
1811
1812       result = apply_ext_lang_frame_filter (get_current_frame (), flags,
1813                                             arg_type, current_uiout,
1814                                             py_start, py_end);
1815     }
1816
1817   /* Run the inbuilt backtrace if there are no filters registered, or
1818      "no-filters" has been specified from the command.  */
1819   if (no_filters ||  result == EXT_LANG_BT_NO_FILTERS)
1820     {
1821       for (i = 0, fi = trailing; fi && count--; i++, fi = get_prev_frame (fi))
1822         {
1823           QUIT;
1824
1825           /* Don't use print_stack_frame; if an error() occurs it probably
1826              means further attempts to backtrace would fail (on the other
1827              hand, perhaps the code does or could be fixed to make sure
1828              the frame->prev field gets set to NULL in that case).  */
1829
1830           print_frame_info (fi, 1, LOCATION, 1, 0);
1831           if (show_locals)
1832             {
1833               struct frame_id frame_id = get_frame_id (fi);
1834
1835               print_frame_local_vars (fi, 1, gdb_stdout);
1836
1837               /* print_frame_local_vars invalidates FI.  */
1838               fi = frame_find_by_id (frame_id);
1839               if (fi == NULL)
1840                 {
1841                   trailing = NULL;
1842                   warning (_("Unable to restore previously selected frame."));
1843                   break;
1844                 }
1845             }
1846
1847           /* Save the last frame to check for error conditions.  */
1848           trailing = fi;
1849         }
1850
1851       /* If we've stopped before the end, mention that.  */
1852       if (fi && from_tty)
1853         printf_filtered (_("(More stack frames follow...)\n"));
1854
1855       /* If we've run out of frames, and the reason appears to be an error
1856          condition, print it.  */
1857       if (fi == NULL && trailing != NULL)
1858         {
1859           enum unwind_stop_reason reason;
1860
1861           reason = get_frame_unwind_stop_reason (trailing);
1862           if (reason >= UNWIND_FIRST_ERROR)
1863             printf_filtered (_("Backtrace stopped: %s\n"),
1864                              frame_stop_reason_string (trailing));
1865         }
1866     }
1867 }
1868
1869 static void
1870 backtrace_command (char *arg, int from_tty)
1871 {
1872   struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
1873   int fulltrace_arg = -1, arglen = 0, argc = 0, no_filters  = -1;
1874   int user_arg = 0;
1875
1876   if (arg)
1877     {
1878       char **argv;
1879       int i;
1880
1881       argv = gdb_buildargv (arg);
1882       make_cleanup_freeargv (argv);
1883       argc = 0;
1884       for (i = 0; argv[i]; i++)
1885         {
1886           unsigned int j;
1887
1888           for (j = 0; j < strlen (argv[i]); j++)
1889             argv[i][j] = TOLOWER (argv[i][j]);
1890
1891           if (no_filters < 0 && subset_compare (argv[i], "no-filters"))
1892             no_filters = argc;
1893           else
1894             {
1895               if (fulltrace_arg < 0 && subset_compare (argv[i], "full"))
1896                 fulltrace_arg = argc;
1897               else
1898                 {
1899                   user_arg++;
1900                   arglen += strlen (argv[i]);
1901                 }
1902             }
1903           argc++;
1904         }
1905       arglen += user_arg;
1906       if (fulltrace_arg >= 0 || no_filters >= 0)
1907         {
1908           if (arglen > 0)
1909             {
1910               arg = (char *) xmalloc (arglen + 1);
1911               make_cleanup (xfree, arg);
1912               arg[0] = 0;
1913               for (i = 0; i < argc; i++)
1914                 {
1915                   if (i != fulltrace_arg && i != no_filters)
1916                     {
1917                       strcat (arg, argv[i]);
1918                       strcat (arg, " ");
1919                     }
1920                 }
1921             }
1922           else
1923             arg = NULL;
1924         }
1925     }
1926
1927   backtrace_command_1 (arg, fulltrace_arg >= 0 /* show_locals */,
1928                        no_filters >= 0 /* no frame-filters */, from_tty);
1929
1930   do_cleanups (old_chain);
1931 }
1932
1933 /* Iterate over the local variables of a block B, calling CB with
1934    CB_DATA.  */
1935
1936 static void
1937 iterate_over_block_locals (const struct block *b,
1938                            iterate_over_block_arg_local_vars_cb cb,
1939                            void *cb_data)
1940 {
1941   struct block_iterator iter;
1942   struct symbol *sym;
1943
1944   ALL_BLOCK_SYMBOLS (b, iter, sym)
1945     {
1946       switch (SYMBOL_CLASS (sym))
1947         {
1948         case LOC_LOCAL:
1949         case LOC_REGISTER:
1950         case LOC_STATIC:
1951         case LOC_COMPUTED:
1952           if (SYMBOL_IS_ARGUMENT (sym))
1953             break;
1954           if (SYMBOL_DOMAIN (sym) == COMMON_BLOCK_DOMAIN)
1955             break;
1956           (*cb) (SYMBOL_PRINT_NAME (sym), sym, cb_data);
1957           break;
1958
1959         default:
1960           /* Ignore symbols which are not locals.  */
1961           break;
1962         }
1963     }
1964 }
1965
1966
1967 /* Same, but print labels.  */
1968
1969 #if 0
1970 /* Commented out, as the code using this function has also been
1971    commented out.  FIXME:brobecker/2009-01-13: Find out why the code
1972    was commented out in the first place.  The discussion introducing
1973    this change (2007-12-04: Support lexical blocks and function bodies
1974    that occupy non-contiguous address ranges) did not explain why
1975    this change was made.  */
1976 static int
1977 print_block_frame_labels (struct gdbarch *gdbarch, struct block *b,
1978                           int *have_default, struct ui_file *stream)
1979 {
1980   struct block_iterator iter;
1981   struct symbol *sym;
1982   int values_printed = 0;
1983
1984   ALL_BLOCK_SYMBOLS (b, iter, sym)
1985     {
1986       if (strcmp (SYMBOL_LINKAGE_NAME (sym), "default") == 0)
1987         {
1988           if (*have_default)
1989             continue;
1990           *have_default = 1;
1991         }
1992       if (SYMBOL_CLASS (sym) == LOC_LABEL)
1993         {
1994           struct symtab_and_line sal;
1995           struct value_print_options opts;
1996
1997           sal = find_pc_line (SYMBOL_VALUE_ADDRESS (sym), 0);
1998           values_printed = 1;
1999           fputs_filtered (SYMBOL_PRINT_NAME (sym), stream);
2000           get_user_print_options (&opts);
2001           if (opts.addressprint)
2002             {
2003               fprintf_filtered (stream, " ");
2004               fputs_filtered (paddress (gdbarch, SYMBOL_VALUE_ADDRESS (sym)),
2005                               stream);
2006             }
2007           fprintf_filtered (stream, " in file %s, line %d\n",
2008                             sal.symtab->filename, sal.line);
2009         }
2010     }
2011
2012   return values_printed;
2013 }
2014 #endif
2015
2016 /* Iterate over all the local variables in block B, including all its
2017    superblocks, stopping when the top-level block is reached.  */
2018
2019 void
2020 iterate_over_block_local_vars (const struct block *block,
2021                                iterate_over_block_arg_local_vars_cb cb,
2022                                void *cb_data)
2023 {
2024   while (block)
2025     {
2026       iterate_over_block_locals (block, cb, cb_data);
2027       /* After handling the function's top-level block, stop.  Don't
2028          continue to its superblock, the block of per-file
2029          symbols.  */
2030       if (BLOCK_FUNCTION (block))
2031         break;
2032       block = BLOCK_SUPERBLOCK (block);
2033     }
2034 }
2035
2036 /* Data to be passed around in the calls to the locals and args
2037    iterators.  */
2038
2039 struct print_variable_and_value_data
2040 {
2041   struct frame_id frame_id;
2042   int num_tabs;
2043   struct ui_file *stream;
2044   int values_printed;
2045 };
2046
2047 /* The callback for the locals and args iterators.  */
2048
2049 static void
2050 do_print_variable_and_value (const char *print_name,
2051                              struct symbol *sym,
2052                              void *cb_data)
2053 {
2054   struct print_variable_and_value_data *p
2055     = (struct print_variable_and_value_data *) cb_data;
2056   struct frame_info *frame;
2057
2058   frame = frame_find_by_id (p->frame_id);
2059   if (frame == NULL)
2060     {
2061       warning (_("Unable to restore previously selected frame."));
2062       return;
2063     }
2064
2065   print_variable_and_value (print_name, sym, frame, p->stream, p->num_tabs);
2066
2067   /* print_variable_and_value invalidates FRAME.  */
2068   frame = NULL;
2069
2070   p->values_printed = 1;
2071 }
2072
2073 /* Print all variables from the innermost up to the function block of FRAME.
2074    Print them with values to STREAM indented by NUM_TABS.
2075
2076    This function will invalidate FRAME.  */
2077
2078 static void
2079 print_frame_local_vars (struct frame_info *frame, int num_tabs,
2080                         struct ui_file *stream)
2081 {
2082   struct print_variable_and_value_data cb_data;
2083   const struct block *block;
2084   CORE_ADDR pc;
2085   struct gdb_exception except = exception_none;
2086
2087   if (!get_frame_pc_if_available (frame, &pc))
2088     {
2089       fprintf_filtered (stream,
2090                         _("PC unavailable, cannot determine locals.\n"));
2091       return;
2092     }
2093
2094   block = get_frame_block (frame, 0);
2095   if (block == 0)
2096     {
2097       fprintf_filtered (stream, "No symbol table info available.\n");
2098       return;
2099     }
2100
2101   cb_data.frame_id = get_frame_id (frame);
2102   cb_data.num_tabs = 4 * num_tabs;
2103   cb_data.stream = stream;
2104   cb_data.values_printed = 0;
2105
2106   /* Temporarily change the selected frame to the given FRAME.
2107      This allows routines that rely on the selected frame instead
2108      of being given a frame as parameter to use the correct frame.  */
2109   select_frame (frame);
2110
2111   TRY
2112     {
2113       iterate_over_block_local_vars (block,
2114                                      do_print_variable_and_value,
2115                                      &cb_data);
2116     }
2117   CATCH (ex, RETURN_MASK_ALL)
2118     {
2119       except = ex;
2120     }
2121   END_CATCH
2122
2123   /* Restore the selected frame, and then rethrow if there was a problem.  */
2124   select_frame (frame_find_by_id (cb_data.frame_id));
2125   if (except.reason < 0)
2126     throw_exception (except);
2127
2128   /* do_print_variable_and_value invalidates FRAME.  */
2129   frame = NULL;
2130
2131   if (!cb_data.values_printed)
2132     fprintf_filtered (stream, _("No locals.\n"));
2133 }
2134
2135 void
2136 locals_info (char *args, int from_tty)
2137 {
2138   print_frame_local_vars (get_selected_frame (_("No frame selected.")),
2139                           0, gdb_stdout);
2140 }
2141
2142 /* Iterate over all the argument variables in block B.
2143
2144    Returns 1 if any argument was walked; 0 otherwise.  */
2145
2146 void
2147 iterate_over_block_arg_vars (const struct block *b,
2148                              iterate_over_block_arg_local_vars_cb cb,
2149                              void *cb_data)
2150 {
2151   struct block_iterator iter;
2152   struct symbol *sym, *sym2;
2153
2154   ALL_BLOCK_SYMBOLS (b, iter, sym)
2155     {
2156       /* Don't worry about things which aren't arguments.  */
2157       if (SYMBOL_IS_ARGUMENT (sym))
2158         {
2159           /* We have to look up the symbol because arguments can have
2160              two entries (one a parameter, one a local) and the one we
2161              want is the local, which lookup_symbol will find for us.
2162              This includes gcc1 (not gcc2) on the sparc when passing a
2163              small structure and gcc2 when the argument type is float
2164              and it is passed as a double and converted to float by
2165              the prologue (in the latter case the type of the LOC_ARG
2166              symbol is double and the type of the LOC_LOCAL symbol is
2167              float).  There are also LOC_ARG/LOC_REGISTER pairs which
2168              are not combined in symbol-reading.  */
2169
2170           sym2 = lookup_symbol (SYMBOL_LINKAGE_NAME (sym),
2171                                 b, VAR_DOMAIN, NULL).symbol;
2172           (*cb) (SYMBOL_PRINT_NAME (sym), sym2, cb_data);
2173         }
2174     }
2175 }
2176
2177 /* Print all argument variables of the function of FRAME.
2178    Print them with values to STREAM.
2179
2180    This function will invalidate FRAME.  */
2181
2182 static void
2183 print_frame_arg_vars (struct frame_info *frame, struct ui_file *stream)
2184 {
2185   struct print_variable_and_value_data cb_data;
2186   struct symbol *func;
2187   CORE_ADDR pc;
2188
2189   if (!get_frame_pc_if_available (frame, &pc))
2190     {
2191       fprintf_filtered (stream, _("PC unavailable, cannot determine args.\n"));
2192       return;
2193     }
2194
2195   func = get_frame_function (frame);
2196   if (func == NULL)
2197     {
2198       fprintf_filtered (stream, _("No symbol table info available.\n"));
2199       return;
2200     }
2201
2202   cb_data.frame_id = get_frame_id (frame);
2203   cb_data.num_tabs = 0;
2204   cb_data.stream = gdb_stdout;
2205   cb_data.values_printed = 0;
2206
2207   iterate_over_block_arg_vars (SYMBOL_BLOCK_VALUE (func),
2208                                do_print_variable_and_value, &cb_data);
2209
2210   /* do_print_variable_and_value invalidates FRAME.  */
2211   frame = NULL;
2212
2213   if (!cb_data.values_printed)
2214     fprintf_filtered (stream, _("No arguments.\n"));
2215 }
2216
2217 void
2218 args_info (char *ignore, int from_tty)
2219 {
2220   print_frame_arg_vars (get_selected_frame (_("No frame selected.")),
2221                         gdb_stdout);
2222 }
2223
2224 /* Select frame FRAME.  Also print the stack frame and show the source
2225    if this is the tui version.  */
2226 static void
2227 select_and_print_frame (struct frame_info *frame)
2228 {
2229   select_frame (frame);
2230   if (frame)
2231     print_stack_frame (frame, 1, SRC_AND_LOC, 1);
2232 }
2233 \f
2234 /* Return the symbol-block in which the selected frame is executing.
2235    Can return zero under various legitimate circumstances.
2236
2237    If ADDR_IN_BLOCK is non-zero, set *ADDR_IN_BLOCK to the relevant
2238    code address within the block returned.  We use this to decide
2239    which macros are in scope.  */
2240
2241 const struct block *
2242 get_selected_block (CORE_ADDR *addr_in_block)
2243 {
2244   if (!has_stack_frames ())
2245     return 0;
2246
2247   return get_frame_block (get_selected_frame (NULL), addr_in_block);
2248 }
2249
2250 /* Find a frame a certain number of levels away from FRAME.
2251    LEVEL_OFFSET_PTR points to an int containing the number of levels.
2252    Positive means go to earlier frames (up); negative, the reverse.
2253    The int that contains the number of levels is counted toward
2254    zero as the frames for those levels are found.
2255    If the top or bottom frame is reached, that frame is returned,
2256    but the final value of *LEVEL_OFFSET_PTR is nonzero and indicates
2257    how much farther the original request asked to go.  */
2258
2259 struct frame_info *
2260 find_relative_frame (struct frame_info *frame, int *level_offset_ptr)
2261 {
2262   /* Going up is simple: just call get_prev_frame enough times or
2263      until the initial frame is reached.  */
2264   while (*level_offset_ptr > 0)
2265     {
2266       struct frame_info *prev = get_prev_frame (frame);
2267
2268       if (!prev)
2269         break;
2270       (*level_offset_ptr)--;
2271       frame = prev;
2272     }
2273
2274   /* Going down is just as simple.  */
2275   while (*level_offset_ptr < 0)
2276     {
2277       struct frame_info *next = get_next_frame (frame);
2278
2279       if (!next)
2280         break;
2281       (*level_offset_ptr)++;
2282       frame = next;
2283     }
2284
2285   return frame;
2286 }
2287
2288 /* The "select_frame" command.  With no argument this is a NOP.
2289    Select the frame at level LEVEL_EXP if it is a valid level.
2290    Otherwise, treat LEVEL_EXP as an address expression and select it.
2291
2292    See parse_frame_specification for more info on proper frame
2293    expressions.  */
2294
2295 void
2296 select_frame_command (char *level_exp, int from_tty)
2297 {
2298   struct frame_info *prev_frame = get_selected_frame_if_set ();
2299
2300   select_frame (parse_frame_specification (level_exp, NULL));
2301   if (get_selected_frame_if_set () != prev_frame)
2302     observer_notify_user_selected_context_changed (USER_SELECTED_FRAME);
2303 }
2304
2305 /* The "frame" command.  With no argument, print the selected frame
2306    briefly.  With an argument, behave like select_frame and then print
2307    the selected frame.  */
2308
2309 static void
2310 frame_command (char *level_exp, int from_tty)
2311 {
2312   struct frame_info *prev_frame = get_selected_frame_if_set ();
2313
2314   select_frame (parse_frame_specification (level_exp, NULL));
2315   if (get_selected_frame_if_set () != prev_frame)
2316     observer_notify_user_selected_context_changed (USER_SELECTED_FRAME);
2317   else
2318     print_selected_thread_frame (current_uiout, USER_SELECTED_FRAME);
2319 }
2320
2321 /* Select the frame up one or COUNT_EXP stack levels from the
2322    previously selected frame, and print it briefly.  */
2323
2324 static void
2325 up_silently_base (const char *count_exp)
2326 {
2327   struct frame_info *frame;
2328   int count = 1;
2329
2330   if (count_exp)
2331     count = parse_and_eval_long (count_exp);
2332
2333   frame = find_relative_frame (get_selected_frame ("No stack."), &count);
2334   if (count != 0 && count_exp == NULL)
2335     error (_("Initial frame selected; you cannot go up."));
2336   select_frame (frame);
2337 }
2338
2339 static void
2340 up_silently_command (char *count_exp, int from_tty)
2341 {
2342   up_silently_base (count_exp);
2343 }
2344
2345 static void
2346 up_command (char *count_exp, int from_tty)
2347 {
2348   up_silently_base (count_exp);
2349   observer_notify_user_selected_context_changed (USER_SELECTED_FRAME);
2350 }
2351
2352 /* Select the frame down one or COUNT_EXP stack levels from the previously
2353    selected frame, and print it briefly.  */
2354
2355 static void
2356 down_silently_base (const char *count_exp)
2357 {
2358   struct frame_info *frame;
2359   int count = -1;
2360
2361   if (count_exp)
2362     count = -parse_and_eval_long (count_exp);
2363
2364   frame = find_relative_frame (get_selected_frame ("No stack."), &count);
2365   if (count != 0 && count_exp == NULL)
2366     {
2367       /* We only do this if COUNT_EXP is not specified.  That way
2368          "down" means to really go down (and let me know if that is
2369          impossible), but "down 9999" can be used to mean go all the
2370          way down without getting an error.  */
2371
2372       error (_("Bottom (innermost) frame selected; you cannot go down."));
2373     }
2374
2375   select_frame (frame);
2376 }
2377
2378 static void
2379 down_silently_command (char *count_exp, int from_tty)
2380 {
2381   down_silently_base (count_exp);
2382 }
2383
2384 static void
2385 down_command (char *count_exp, int from_tty)
2386 {
2387   down_silently_base (count_exp);
2388   observer_notify_user_selected_context_changed (USER_SELECTED_FRAME);
2389 }
2390
2391 void
2392 return_command (char *retval_exp, int from_tty)
2393 {
2394   /* Initialize it just to avoid a GCC false warning.  */
2395   enum return_value_convention rv_conv = RETURN_VALUE_STRUCT_CONVENTION;
2396   struct frame_info *thisframe;
2397   struct gdbarch *gdbarch;
2398   struct symbol *thisfun;
2399   struct value *return_value = NULL;
2400   struct value *function = NULL;
2401   const char *query_prefix = "";
2402
2403   thisframe = get_selected_frame ("No selected frame.");
2404   thisfun = get_frame_function (thisframe);
2405   gdbarch = get_frame_arch (thisframe);
2406
2407   if (get_frame_type (get_current_frame ()) == INLINE_FRAME)
2408     error (_("Can not force return from an inlined function."));
2409
2410   /* Compute the return value.  If the computation triggers an error,
2411      let it bail.  If the return type can't be handled, set
2412      RETURN_VALUE to NULL, and QUERY_PREFIX to an informational
2413      message.  */
2414   if (retval_exp)
2415     {
2416       expression_up retval_expr = parse_expression (retval_exp);
2417       struct type *return_type = NULL;
2418
2419       /* Compute the return value.  Should the computation fail, this
2420          call throws an error.  */
2421       return_value = evaluate_expression (retval_expr.get ());
2422
2423       /* Cast return value to the return type of the function.  Should
2424          the cast fail, this call throws an error.  */
2425       if (thisfun != NULL)
2426         return_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (thisfun));
2427       if (return_type == NULL)
2428         {
2429           if (retval_expr->elts[0].opcode != UNOP_CAST
2430               && retval_expr->elts[0].opcode != UNOP_CAST_TYPE)
2431             error (_("Return value type not available for selected "
2432                      "stack frame.\n"
2433                      "Please use an explicit cast of the value to return."));
2434           return_type = value_type (return_value);
2435         }
2436       return_type = check_typedef (return_type);
2437       return_value = value_cast (return_type, return_value);
2438
2439       /* Make sure the value is fully evaluated.  It may live in the
2440          stack frame we're about to pop.  */
2441       if (value_lazy (return_value))
2442         value_fetch_lazy (return_value);
2443
2444       if (thisfun != NULL)
2445         function = read_var_value (thisfun, NULL, thisframe);
2446
2447       rv_conv = RETURN_VALUE_REGISTER_CONVENTION;
2448       if (TYPE_CODE (return_type) == TYPE_CODE_VOID)
2449         /* If the return-type is "void", don't try to find the
2450            return-value's location.  However, do still evaluate the
2451            return expression so that, even when the expression result
2452            is discarded, side effects such as "return i++" still
2453            occur.  */
2454         return_value = NULL;
2455       else if (thisfun != NULL)
2456         {
2457           rv_conv = struct_return_convention (gdbarch, function, return_type);
2458           if (rv_conv == RETURN_VALUE_STRUCT_CONVENTION
2459               || rv_conv == RETURN_VALUE_ABI_RETURNS_ADDRESS)
2460             {
2461               query_prefix = "The location at which to store the "
2462                 "function's return value is unknown.\n"
2463                 "If you continue, the return value "
2464                 "that you specified will be ignored.\n";
2465               return_value = NULL;
2466             }
2467         }
2468     }
2469
2470   /* Does an interactive user really want to do this?  Include
2471      information, such as how well GDB can handle the return value, in
2472      the query message.  */
2473   if (from_tty)
2474     {
2475       int confirmed;
2476
2477       if (thisfun == NULL)
2478         confirmed = query (_("%sMake selected stack frame return now? "),
2479                            query_prefix);
2480       else
2481         {
2482           if (TYPE_NO_RETURN (thisfun->type))
2483             warning (_("Function does not return normally to caller."));
2484           confirmed = query (_("%sMake %s return now? "), query_prefix,
2485                              SYMBOL_PRINT_NAME (thisfun));
2486         }
2487       if (!confirmed)
2488         error (_("Not confirmed"));
2489     }
2490
2491   /* Discard the selected frame and all frames inner-to it.  */
2492   frame_pop (get_selected_frame (NULL));
2493
2494   /* Store RETURN_VALUE in the just-returned register set.  */
2495   if (return_value != NULL)
2496     {
2497       struct type *return_type = value_type (return_value);
2498       struct gdbarch *gdbarch = get_regcache_arch (get_current_regcache ());
2499
2500       gdb_assert (rv_conv != RETURN_VALUE_STRUCT_CONVENTION
2501                   && rv_conv != RETURN_VALUE_ABI_RETURNS_ADDRESS);
2502       gdbarch_return_value (gdbarch, function, return_type,
2503                             get_current_regcache (), NULL /*read*/,
2504                             value_contents (return_value) /*write*/);
2505     }
2506
2507   /* If we are at the end of a call dummy now, pop the dummy frame
2508      too.  */
2509   if (get_frame_type (get_current_frame ()) == DUMMY_FRAME)
2510     frame_pop (get_current_frame ());
2511
2512   select_frame (get_current_frame ());
2513   /* If interactive, print the frame that is now current.  */
2514   if (from_tty)
2515     print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC, 1);
2516 }
2517
2518 /* Sets the scope to input function name, provided that the function
2519    is within the current stack frame.  */
2520
2521 struct function_bounds
2522 {
2523   CORE_ADDR low, high;
2524 };
2525
2526 static void
2527 func_command (char *arg, int from_tty)
2528 {
2529   struct frame_info *frame;
2530   int found = 0;
2531   struct symtabs_and_lines sals;
2532   int i;
2533   int level = 1;
2534   struct function_bounds *func_bounds = NULL;
2535   struct cleanup *cleanups;
2536
2537   if (arg == NULL)
2538     return;
2539
2540   frame = get_current_frame ();
2541   sals = decode_line_with_current_source (arg, DECODE_LINE_FUNFIRSTLINE);
2542   cleanups = make_cleanup (xfree, sals.sals);
2543   func_bounds = XNEWVEC (struct function_bounds, sals.nelts);
2544   make_cleanup (xfree, func_bounds);
2545   for (i = 0; (i < sals.nelts && !found); i++)
2546     {
2547       if (sals.sals[i].pspace != current_program_space)
2548         func_bounds[i].low = func_bounds[i].high = 0;
2549       else if (sals.sals[i].pc == 0
2550                || find_pc_partial_function (sals.sals[i].pc, NULL,
2551                                             &func_bounds[i].low,
2552                                             &func_bounds[i].high) == 0)
2553         {
2554           func_bounds[i].low = func_bounds[i].high = 0;
2555         }
2556     }
2557
2558   do
2559     {
2560       for (i = 0; (i < sals.nelts && !found); i++)
2561         found = (get_frame_pc (frame) >= func_bounds[i].low
2562                  && get_frame_pc (frame) < func_bounds[i].high);
2563       if (!found)
2564         {
2565           level = 1;
2566           frame = find_relative_frame (frame, &level);
2567         }
2568     }
2569   while (!found && level == 0);
2570
2571   do_cleanups (cleanups);
2572
2573   if (!found)
2574     printf_filtered (_("'%s' not within current stack frame.\n"), arg);
2575   else if (frame != get_selected_frame (NULL))
2576     select_and_print_frame (frame);
2577 }
2578 \f
2579
2580 /* Provide a prototype to silence -Wmissing-prototypes.  */
2581 void _initialize_stack (void);
2582
2583 void
2584 _initialize_stack (void)
2585 {
2586   add_com ("return", class_stack, return_command, _("\
2587 Make selected stack frame return to its caller.\n\
2588 Control remains in the debugger, but when you continue\n\
2589 execution will resume in the frame above the one now selected.\n\
2590 If an argument is given, it is an expression for the value to return."));
2591
2592   add_com ("up", class_stack, up_command, _("\
2593 Select and print stack frame that called this one.\n\
2594 An argument says how many frames up to go."));
2595   add_com ("up-silently", class_support, up_silently_command, _("\
2596 Same as the `up' command, but does not print anything.\n\
2597 This is useful in command scripts."));
2598
2599   add_com ("down", class_stack, down_command, _("\
2600 Select and print stack frame called by this one.\n\
2601 An argument says how many frames down to go."));
2602   add_com_alias ("do", "down", class_stack, 1);
2603   add_com_alias ("dow", "down", class_stack, 1);
2604   add_com ("down-silently", class_support, down_silently_command, _("\
2605 Same as the `down' command, but does not print anything.\n\
2606 This is useful in command scripts."));
2607
2608   add_com ("frame", class_stack, frame_command, _("\
2609 Select and print a stack frame.\nWith no argument, \
2610 print the selected stack frame.  (See also \"info frame\").\n\
2611 An argument specifies the frame to select.\n\
2612 It can be a stack frame number or the address of the frame.\n"));
2613
2614   add_com_alias ("f", "frame", class_stack, 1);
2615
2616   add_com_suppress_notification ("select-frame", class_stack, select_frame_command, _("\
2617 Select a stack frame without printing anything.\n\
2618 An argument specifies the frame to select.\n\
2619 It can be a stack frame number or the address of the frame.\n"),
2620                  &cli_suppress_notification.user_selected_context);
2621
2622   add_com ("backtrace", class_stack, backtrace_command, _("\
2623 Print backtrace of all stack frames, or innermost COUNT frames.\n\
2624 With a negative argument, print outermost -COUNT frames.\nUse of the \
2625 'full' qualifier also prints the values of the local variables.\n\
2626 Use of the 'no-filters' qualifier prohibits frame filters from executing\n\
2627 on this backtrace.\n"));
2628   add_com_alias ("bt", "backtrace", class_stack, 0);
2629
2630   add_com_alias ("where", "backtrace", class_alias, 0);
2631   add_info ("stack", backtrace_command,
2632             _("Backtrace of the stack, or innermost COUNT frames."));
2633   add_info_alias ("s", "stack", 1);
2634   add_info ("frame", frame_info,
2635             _("All about selected stack frame, or frame at ADDR."));
2636   add_info_alias ("f", "frame", 1);
2637   add_info ("locals", locals_info,
2638             _("Local variables of current stack frame."));
2639   add_info ("args", args_info,
2640             _("Argument variables of current stack frame."));
2641
2642   if (dbx_commands)
2643     add_com ("func", class_stack, func_command, _("\
2644 Select the stack frame that contains <func>.\n\
2645 Usage: func <name>\n"));
2646
2647   add_setshow_enum_cmd ("frame-arguments", class_stack,
2648                         print_frame_arguments_choices, &print_frame_arguments,
2649                         _("Set printing of non-scalar frame arguments"),
2650                         _("Show printing of non-scalar frame arguments"),
2651                         NULL, NULL, NULL, &setprintlist, &showprintlist);
2652
2653   add_setshow_boolean_cmd ("frame-arguments", no_class,
2654                            &print_raw_frame_arguments, _("\
2655 Set whether to print frame arguments in raw form."), _("\
2656 Show whether to print frame arguments in raw form."), _("\
2657 If set, frame arguments are printed in raw form, bypassing any\n\
2658 pretty-printers for that value."),
2659                            NULL, NULL,
2660                            &setprintrawlist, &showprintrawlist);
2661
2662   add_setshow_auto_boolean_cmd ("disassemble-next-line", class_stack,
2663                                 &disassemble_next_line, _("\
2664 Set whether to disassemble next source line or insn when execution stops."),
2665                                 _("\
2666 Show whether to disassemble next source line or insn when execution stops."),
2667                                 _("\
2668 If ON, GDB will display disassembly of the next source line, in addition\n\
2669 to displaying the source line itself.  If the next source line cannot\n\
2670 be displayed (e.g., source is unavailable or there's no line info), GDB\n\
2671 will display disassembly of next instruction instead of showing the\n\
2672 source line.\n\
2673 If AUTO, display disassembly of next instruction only if the source line\n\
2674 cannot be displayed.\n\
2675 If OFF (which is the default), never display the disassembly of the next\n\
2676 source line."),
2677                                 NULL,
2678                                 show_disassemble_next_line,
2679                                 &setlist, &showlist);
2680   disassemble_next_line = AUTO_BOOLEAN_FALSE;
2681
2682   add_setshow_enum_cmd ("entry-values", class_stack,
2683                         print_entry_values_choices, &print_entry_values,
2684                         _("Set printing of function arguments at function "
2685                           "entry"),
2686                         _("Show printing of function arguments at function "
2687                           "entry"),
2688                         _("\
2689 GDB can sometimes determine the values of function arguments at entry,\n\
2690 in addition to their current values.  This option tells GDB whether\n\
2691 to print the current value, the value at entry (marked as val@entry),\n\
2692 or both.  Note that one or both of these values may be <optimized out>."),
2693                         NULL, NULL, &setprintlist, &showprintlist);
2694 }