]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/stack.c
[gdb/ada] Handle artificial local symbols
[thirdparty/binutils-gdb.git] / gdb / stack.c
1 /* Print and select stack frames for GDB, the GNU debugger.
2
3 Copyright (C) 1986-2021 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 #include "annotate.h"
51
52 #include "symfile.h"
53 #include "extension.h"
54 #include "observable.h"
55 #include "gdbsupport/def-vector.h"
56 #include "cli/cli-option.h"
57 #include "cli/cli-style.h"
58
59 /* The possible choices of "set print frame-arguments", and the value
60 of this setting. */
61
62 const char print_frame_arguments_all[] = "all";
63 const char print_frame_arguments_scalars[] = "scalars";
64 const char print_frame_arguments_none[] = "none";
65 const char print_frame_arguments_presence[] = "presence";
66
67 static const char *const print_frame_arguments_choices[] =
68 {
69 print_frame_arguments_all,
70 print_frame_arguments_scalars,
71 print_frame_arguments_none,
72 print_frame_arguments_presence,
73 NULL
74 };
75
76 /* The possible choices of "set print frame-info", and the value
77 of this setting. */
78
79 const char print_frame_info_auto[] = "auto";
80 const char print_frame_info_source_line[] = "source-line";
81 const char print_frame_info_location[] = "location";
82 const char print_frame_info_source_and_location[] = "source-and-location";
83 const char print_frame_info_location_and_address[] = "location-and-address";
84 const char print_frame_info_short_location[] = "short-location";
85
86 static const char *const print_frame_info_choices[] =
87 {
88 print_frame_info_auto,
89 print_frame_info_source_line,
90 print_frame_info_location,
91 print_frame_info_source_and_location,
92 print_frame_info_location_and_address,
93 print_frame_info_short_location,
94 NULL
95 };
96
97 /* print_frame_info_print_what[i] maps a choice to the corresponding
98 print_what enum. */
99 static const gdb::optional<enum print_what> print_frame_info_print_what[] =
100 {{}, /* Empty value for "auto". */
101 SRC_LINE, LOCATION, SRC_AND_LOC, LOC_AND_ADDRESS, SHORT_LOCATION};
102
103 /* The possible choices of "set print entry-values", and the value
104 of this setting. */
105
106 const char print_entry_values_no[] = "no";
107 const char print_entry_values_only[] = "only";
108 const char print_entry_values_preferred[] = "preferred";
109 const char print_entry_values_if_needed[] = "if-needed";
110 const char print_entry_values_both[] = "both";
111 const char print_entry_values_compact[] = "compact";
112 const char print_entry_values_default[] = "default";
113 static const char *const print_entry_values_choices[] =
114 {
115 print_entry_values_no,
116 print_entry_values_only,
117 print_entry_values_preferred,
118 print_entry_values_if_needed,
119 print_entry_values_both,
120 print_entry_values_compact,
121 print_entry_values_default,
122 NULL
123 };
124
125 /* See frame.h. */
126 frame_print_options user_frame_print_options;
127
128 /* Option definitions for some frame-related "set print ..."
129 settings. */
130
131 using boolean_option_def
132 = gdb::option::boolean_option_def<frame_print_options>;
133 using enum_option_def
134 = gdb::option::enum_option_def<frame_print_options>;
135
136 static const gdb::option::option_def frame_print_option_defs[] = {
137
138 enum_option_def {
139 "entry-values",
140 print_entry_values_choices,
141 [] (frame_print_options *opt) { return &opt->print_entry_values; },
142 NULL, /* show_cmd_cb */
143 N_("Set printing of function arguments at function entry."),
144 N_("Show printing of function arguments at function entry."),
145 N_("GDB can sometimes determine the values of function arguments at entry,\n\
146 in addition to their current values. This option tells GDB whether\n\
147 to print the current value, the value at entry (marked as val@entry),\n\
148 or both. Note that one or both of these values may be <optimized out>."),
149 },
150
151 enum_option_def {
152 "frame-arguments",
153 print_frame_arguments_choices,
154 [] (frame_print_options *opt) { return &opt->print_frame_arguments; },
155 NULL, /* show_cmd_cb */
156 N_("Set printing of non-scalar frame arguments."),
157 N_("Show printing of non-scalar frame arguments."),
158 NULL /* help_doc */
159 },
160
161 boolean_option_def {
162 "raw-frame-arguments",
163 [] (frame_print_options *opt) { return &opt->print_raw_frame_arguments; },
164 NULL, /* show_cmd_cb */
165 N_("Set whether to print frame arguments in raw form."),
166 N_("Show whether to print frame arguments in raw form."),
167 N_("If set, frame arguments are printed in raw form, bypassing any\n\
168 pretty-printers for that value.")
169 },
170
171 enum_option_def {
172 "frame-info",
173 print_frame_info_choices,
174 [] (frame_print_options *opt) { return &opt->print_frame_info; },
175 NULL, /* show_cmd_cb */
176 N_("Set printing of frame information."),
177 N_("Show printing of frame information."),
178 NULL /* help_doc */
179 }
180
181 };
182
183 /* Options for the "backtrace" command. */
184
185 struct backtrace_cmd_options
186 {
187 bool full = false;
188 bool no_filters = false;
189 bool hide = false;
190 };
191
192 using bt_flag_option_def
193 = gdb::option::flag_option_def<backtrace_cmd_options>;
194
195 static const gdb::option::option_def backtrace_command_option_defs[] = {
196 bt_flag_option_def {
197 "full",
198 [] (backtrace_cmd_options *opt) { return &opt->full; },
199 N_("Print values of local variables.")
200 },
201
202 bt_flag_option_def {
203 "no-filters",
204 [] (backtrace_cmd_options *opt) { return &opt->no_filters; },
205 N_("Prohibit frame filters from executing on a backtrace."),
206 },
207
208 bt_flag_option_def {
209 "hide",
210 [] (backtrace_cmd_options *opt) { return &opt->hide; },
211 N_("Causes Python frame filter elided frames to not be printed."),
212 },
213 };
214
215 /* Prototypes for local functions. */
216
217 static void print_frame_local_vars (struct frame_info *frame,
218 bool quiet,
219 const char *regexp, const char *t_regexp,
220 int num_tabs, struct ui_file *stream);
221
222 static void print_frame (const frame_print_options &opts,
223 frame_info *frame, int print_level,
224 enum print_what print_what, int print_args,
225 struct symtab_and_line sal);
226
227 static struct frame_info *find_frame_for_function (const char *);
228 static struct frame_info *find_frame_for_address (CORE_ADDR);
229
230 /* Zero means do things normally; we are interacting directly with the
231 user. One means print the full filename and linenumber when a
232 frame is printed, and do so in a format emacs18/emacs19.22 can
233 parse. Two means print similar annotations, but in many more
234 cases and in a slightly different syntax. */
235
236 int annotation_level = 0;
237
238 /* Class used to manage tracking the last symtab we displayed. */
239
240 class last_displayed_symtab_info_type
241 {
242 public:
243 /* True if the cached information is valid. */
244 bool is_valid () const
245 { return m_valid; }
246
247 /* Return the cached program_space. If the cache is invalid nullptr is
248 returned. */
249 struct program_space *pspace () const
250 { return m_pspace; }
251
252 /* Return the cached CORE_ADDR address. If the cache is invalid 0 is
253 returned. */
254 CORE_ADDR address () const
255 { return m_address; }
256
257 /* Return the cached symtab. If the cache is invalid nullptr is
258 returned. */
259 struct symtab *symtab () const
260 { return m_symtab; }
261
262 /* Return the cached line number. If the cache is invalid 0 is
263 returned. */
264 int line () const
265 { return m_line; }
266
267 /* Invalidate the cache, reset all the members to their default value. */
268 void invalidate ()
269 {
270 m_valid = false;
271 m_pspace = nullptr;
272 m_address = 0;
273 m_symtab = nullptr;
274 m_line = 0;
275 }
276
277 /* Store a new set of values in the cache. */
278 void set (struct program_space *pspace, CORE_ADDR address,
279 struct symtab *symtab, int line)
280 {
281 gdb_assert (pspace != nullptr);
282
283 m_valid = true;
284 m_pspace = pspace;
285 m_address = address;
286 m_symtab = symtab;
287 m_line = line;
288 }
289
290 private:
291 /* True when the cache is valid. */
292 bool m_valid = false;
293
294 /* The last program space displayed. */
295 struct program_space *m_pspace = nullptr;
296
297 /* The last address displayed. */
298 CORE_ADDR m_address = 0;
299
300 /* The last symtab displayed. */
301 struct symtab *m_symtab = nullptr;
302
303 /* The last line number displayed. */
304 int m_line = 0;
305 };
306
307 /* An actual instance of the cache, holds information about the last symtab
308 displayed. */
309 static last_displayed_symtab_info_type last_displayed_symtab_info;
310
311 \f
312
313 /* See stack.h. */
314
315 bool
316 frame_show_address (struct frame_info *frame,
317 struct symtab_and_line sal)
318 {
319 /* If there is a line number, but no PC, then there is no location
320 information associated with this sal. The only way that should
321 happen is for the call sites of inlined functions (SAL comes from
322 find_frame_sal). Otherwise, we would have some PC range if the
323 SAL came from a line table. */
324 if (sal.line != 0 && sal.pc == 0 && sal.end == 0)
325 {
326 if (get_next_frame (frame) == NULL)
327 gdb_assert (inline_skipped_frames (inferior_thread ()) > 0);
328 else
329 gdb_assert (get_frame_type (get_next_frame (frame)) == INLINE_FRAME);
330 return false;
331 }
332
333 return get_frame_pc (frame) != sal.pc || !sal.is_stmt;
334 }
335
336 /* See frame.h. */
337
338 void
339 print_stack_frame_to_uiout (struct ui_out *uiout, struct frame_info *frame,
340 int print_level, enum print_what print_what,
341 int set_current_sal)
342 {
343 scoped_restore save_uiout = make_scoped_restore (&current_uiout, uiout);
344
345 print_stack_frame (frame, print_level, print_what, set_current_sal);
346 }
347
348 /* Show or print a stack frame FRAME briefly. The output is formatted
349 according to PRINT_LEVEL and PRINT_WHAT printing the frame's
350 relative level, function name, argument list, and file name and
351 line number. If the frame's PC is not at the beginning of the
352 source line, the actual PC is printed at the beginning. */
353
354 void
355 print_stack_frame (struct frame_info *frame, int print_level,
356 enum print_what print_what,
357 int set_current_sal)
358 {
359
360 /* For mi, always print location and address. */
361 if (current_uiout->is_mi_like_p ())
362 print_what = LOC_AND_ADDRESS;
363
364 try
365 {
366 print_frame_info (user_frame_print_options,
367 frame, print_level, print_what, 1 /* print_args */,
368 set_current_sal);
369 if (set_current_sal)
370 set_current_sal_from_frame (frame);
371 }
372 catch (const gdb_exception_error &e)
373 {
374 }
375 }
376
377 /* Print nameless arguments of frame FRAME on STREAM, where START is
378 the offset of the first nameless argument, and NUM is the number of
379 nameless arguments to print. FIRST is nonzero if this is the first
380 argument (not just the first nameless argument). */
381
382 static void
383 print_frame_nameless_args (struct frame_info *frame, long start, int num,
384 int first, struct ui_file *stream)
385 {
386 struct gdbarch *gdbarch = get_frame_arch (frame);
387 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
388 int i;
389 CORE_ADDR argsaddr;
390 long arg_value;
391
392 for (i = 0; i < num; i++)
393 {
394 QUIT;
395 argsaddr = get_frame_args_address (frame);
396 if (!argsaddr)
397 return;
398 arg_value = read_memory_integer (argsaddr + start,
399 sizeof (int), byte_order);
400 if (!first)
401 fprintf_filtered (stream, ", ");
402 fprintf_filtered (stream, "%ld", arg_value);
403 first = 0;
404 start += sizeof (int);
405 }
406 }
407
408 /* Print single argument of inferior function. ARG must be already
409 read in.
410
411 Errors are printed as if they would be the parameter value. Use zeroed ARG
412 iff it should not be printed according to user settings. */
413
414 static void
415 print_frame_arg (const frame_print_options &fp_opts,
416 const struct frame_arg *arg)
417 {
418 struct ui_out *uiout = current_uiout;
419
420 string_file stb;
421
422 gdb_assert (!arg->val || !arg->error);
423 gdb_assert (arg->entry_kind == print_entry_values_no
424 || arg->entry_kind == print_entry_values_only
425 || (!uiout->is_mi_like_p ()
426 && arg->entry_kind == print_entry_values_compact));
427
428 annotate_arg_emitter arg_emitter;
429 ui_out_emit_tuple tuple_emitter (uiout, NULL);
430 fputs_filtered (arg->sym->print_name (), &stb);
431 if (arg->entry_kind == print_entry_values_compact)
432 {
433 /* It is OK to provide invalid MI-like stream as with
434 PRINT_ENTRY_VALUE_COMPACT we never use MI. */
435 stb.puts ("=");
436
437 fputs_filtered (arg->sym->print_name (), &stb);
438 }
439 if (arg->entry_kind == print_entry_values_only
440 || arg->entry_kind == print_entry_values_compact)
441 stb.puts ("@entry");
442 uiout->field_stream ("name", stb, variable_name_style.style ());
443 annotate_arg_name_end ();
444 uiout->text ("=");
445
446 ui_file_style style;
447 if (!arg->val && !arg->error)
448 uiout->text ("...");
449 else
450 {
451 if (arg->error)
452 {
453 stb.printf (_("<error reading variable: %s>"), arg->error.get ());
454 style = metadata_style.style ();
455 }
456 else
457 {
458 try
459 {
460 const struct language_defn *language;
461 struct value_print_options vp_opts;
462
463 /* Avoid value_print because it will deref ref parameters. We
464 just want to print their addresses. Print ??? for args whose
465 address we do not know. We pass 2 as "recurse" to val_print
466 because our standard indentation here is 4 spaces, and
467 val_print indents 2 for each recurse. */
468
469 annotate_arg_value (value_type (arg->val));
470
471 /* Use the appropriate language to display our symbol, unless the
472 user forced the language to a specific language. */
473 if (language_mode == language_mode_auto)
474 language = language_def (arg->sym->language ());
475 else
476 language = current_language;
477
478 get_no_prettyformat_print_options (&vp_opts);
479 vp_opts.deref_ref = 1;
480 vp_opts.raw = fp_opts.print_raw_frame_arguments;
481
482 /* True in "summary" mode, false otherwise. */
483 vp_opts.summary
484 = fp_opts.print_frame_arguments == print_frame_arguments_scalars;
485
486 common_val_print_checked (arg->val, &stb, 2, &vp_opts, language);
487 }
488 catch (const gdb_exception_error &except)
489 {
490 stb.printf (_("<error reading variable: %s>"),
491 except.what ());
492 style = metadata_style.style ();
493 }
494 }
495 }
496
497 uiout->field_stream ("value", stb, style);
498 }
499
500 /* Read in inferior function local SYM at FRAME into ARGP. Caller is
501 responsible for xfree of ARGP->ERROR. This function never throws an
502 exception. */
503
504 void
505 read_frame_local (struct symbol *sym, struct frame_info *frame,
506 struct frame_arg *argp)
507 {
508 argp->sym = sym;
509 argp->val = NULL;
510 argp->error = NULL;
511
512 try
513 {
514 argp->val = read_var_value (sym, NULL, frame);
515 }
516 catch (const gdb_exception_error &except)
517 {
518 argp->error.reset (xstrdup (except.what ()));
519 }
520 }
521
522 /* Read in inferior function parameter SYM at FRAME into ARGP. This
523 function never throws an exception. */
524
525 void
526 read_frame_arg (const frame_print_options &fp_opts,
527 symbol *sym, frame_info *frame,
528 struct frame_arg *argp, struct frame_arg *entryargp)
529 {
530 struct value *val = NULL, *entryval = NULL;
531 char *val_error = NULL, *entryval_error = NULL;
532 int val_equal = 0;
533
534 if (fp_opts.print_entry_values != print_entry_values_only
535 && fp_opts.print_entry_values != print_entry_values_preferred)
536 {
537 try
538 {
539 val = read_var_value (sym, NULL, frame);
540 }
541 catch (const gdb_exception_error &except)
542 {
543 val_error = (char *) alloca (except.message->size () + 1);
544 strcpy (val_error, except.what ());
545 }
546 }
547
548 if (SYMBOL_COMPUTED_OPS (sym) != NULL
549 && SYMBOL_COMPUTED_OPS (sym)->read_variable_at_entry != NULL
550 && fp_opts.print_entry_values != print_entry_values_no
551 && (fp_opts.print_entry_values != print_entry_values_if_needed
552 || !val || value_optimized_out (val)))
553 {
554 try
555 {
556 const struct symbol_computed_ops *ops;
557
558 ops = SYMBOL_COMPUTED_OPS (sym);
559 entryval = ops->read_variable_at_entry (sym, frame);
560 }
561 catch (const gdb_exception_error &except)
562 {
563 if (except.error != NO_ENTRY_VALUE_ERROR)
564 {
565 entryval_error = (char *) alloca (except.message->size () + 1);
566 strcpy (entryval_error, except.what ());
567 }
568 }
569
570 if (entryval != NULL && value_optimized_out (entryval))
571 entryval = NULL;
572
573 if (fp_opts.print_entry_values == print_entry_values_compact
574 || fp_opts.print_entry_values == print_entry_values_default)
575 {
576 /* For MI do not try to use print_entry_values_compact for ARGP. */
577
578 if (val && entryval && !current_uiout->is_mi_like_p ())
579 {
580 struct type *type = value_type (val);
581
582 if (value_lazy (val))
583 value_fetch_lazy (val);
584 if (value_lazy (entryval))
585 value_fetch_lazy (entryval);
586
587 if (value_contents_eq (val, 0, entryval, 0, TYPE_LENGTH (type)))
588 {
589 /* Initialize it just to avoid a GCC false warning. */
590 struct value *val_deref = NULL, *entryval_deref;
591
592 /* DW_AT_call_value does match with the current
593 value. If it is a reference still try to verify if
594 dereferenced DW_AT_call_data_value does not differ. */
595
596 try
597 {
598 struct type *type_deref;
599
600 val_deref = coerce_ref (val);
601 if (value_lazy (val_deref))
602 value_fetch_lazy (val_deref);
603 type_deref = value_type (val_deref);
604
605 entryval_deref = coerce_ref (entryval);
606 if (value_lazy (entryval_deref))
607 value_fetch_lazy (entryval_deref);
608
609 /* If the reference addresses match but dereferenced
610 content does not match print them. */
611 if (val != val_deref
612 && value_contents_eq (val_deref, 0,
613 entryval_deref, 0,
614 TYPE_LENGTH (type_deref)))
615 val_equal = 1;
616 }
617 catch (const gdb_exception_error &except)
618 {
619 /* If the dereferenced content could not be
620 fetched do not display anything. */
621 if (except.error == NO_ENTRY_VALUE_ERROR)
622 val_equal = 1;
623 else if (except.message != NULL)
624 {
625 entryval_error
626 = (char *) alloca (except.message->size () + 1);
627 strcpy (entryval_error, except.what ());
628 }
629 }
630
631 /* Value was not a reference; and its content matches. */
632 if (val == val_deref)
633 val_equal = 1;
634
635 if (val_equal)
636 entryval = NULL;
637 }
638 }
639
640 /* Try to remove possibly duplicate error message for ENTRYARGP even
641 in MI mode. */
642
643 if (val_error && entryval_error
644 && strcmp (val_error, entryval_error) == 0)
645 {
646 entryval_error = NULL;
647
648 /* Do not se VAL_EQUAL as the same error message may be shown for
649 the entry value even if no entry values are present in the
650 inferior. */
651 }
652 }
653 }
654
655 if (entryval == NULL)
656 {
657 if (fp_opts.print_entry_values == print_entry_values_preferred)
658 {
659 gdb_assert (val == NULL);
660
661 try
662 {
663 val = read_var_value (sym, NULL, frame);
664 }
665 catch (const gdb_exception_error &except)
666 {
667 val_error = (char *) alloca (except.message->size () + 1);
668 strcpy (val_error, except.what ());
669 }
670 }
671 if (fp_opts.print_entry_values == print_entry_values_only
672 || fp_opts.print_entry_values == print_entry_values_both
673 || (fp_opts.print_entry_values == print_entry_values_preferred
674 && (!val || value_optimized_out (val))))
675 {
676 entryval = allocate_optimized_out_value (SYMBOL_TYPE (sym));
677 entryval_error = NULL;
678 }
679 }
680 if ((fp_opts.print_entry_values == print_entry_values_compact
681 || fp_opts.print_entry_values == print_entry_values_if_needed
682 || fp_opts.print_entry_values == print_entry_values_preferred)
683 && (!val || value_optimized_out (val)) && entryval != NULL)
684 {
685 val = NULL;
686 val_error = NULL;
687 }
688
689 argp->sym = sym;
690 argp->val = val;
691 argp->error.reset (val_error ? xstrdup (val_error) : NULL);
692 if (!val && !val_error)
693 argp->entry_kind = print_entry_values_only;
694 else if ((fp_opts.print_entry_values == print_entry_values_compact
695 || fp_opts.print_entry_values == print_entry_values_default)
696 && val_equal)
697 {
698 argp->entry_kind = print_entry_values_compact;
699 gdb_assert (!current_uiout->is_mi_like_p ());
700 }
701 else
702 argp->entry_kind = print_entry_values_no;
703
704 entryargp->sym = sym;
705 entryargp->val = entryval;
706 entryargp->error.reset (entryval_error ? xstrdup (entryval_error) : NULL);
707 if (!entryval && !entryval_error)
708 entryargp->entry_kind = print_entry_values_no;
709 else
710 entryargp->entry_kind = print_entry_values_only;
711 }
712
713 /* Print the arguments of frame FRAME on STREAM, given the function
714 FUNC running in that frame (as a symbol), where NUM is the number
715 of arguments according to the stack frame (or -1 if the number of
716 arguments is unknown). */
717
718 /* Note that currently the "number of arguments according to the
719 stack frame" is only known on VAX where i refers to the "number of
720 ints of arguments according to the stack frame". */
721
722 static void
723 print_frame_args (const frame_print_options &fp_opts,
724 struct symbol *func, struct frame_info *frame,
725 int num, struct ui_file *stream)
726 {
727 struct ui_out *uiout = current_uiout;
728 int first = 1;
729 /* Offset of next stack argument beyond the one we have seen that is
730 at the highest offset, or -1 if we haven't come to a stack
731 argument yet. */
732 long highest_offset = -1;
733 /* Number of ints of arguments that we have printed so far. */
734 int args_printed = 0;
735 /* True if we should print arg names. If false, we only indicate
736 the presence of arguments by printing ellipsis. */
737 bool print_names
738 = fp_opts.print_frame_arguments != print_frame_arguments_presence;
739 /* True if we should print arguments, false otherwise. */
740 bool print_args
741 = (print_names
742 && fp_opts.print_frame_arguments != print_frame_arguments_none);
743
744 /* Temporarily change the selected frame to the given FRAME.
745 This allows routines that rely on the selected frame instead
746 of being given a frame as parameter to use the correct frame. */
747 scoped_restore_selected_frame restore_selected_frame;
748 select_frame (frame);
749
750 if (func)
751 {
752 const struct block *b = SYMBOL_BLOCK_VALUE (func);
753 struct block_iterator iter;
754 struct symbol *sym;
755
756 ALL_BLOCK_SYMBOLS (b, iter, sym)
757 {
758 struct frame_arg arg, entryarg;
759
760 QUIT;
761
762 /* Keep track of the highest stack argument offset seen, and
763 skip over any kinds of symbols we don't care about. */
764
765 if (!SYMBOL_IS_ARGUMENT (sym))
766 continue;
767
768 if (!print_names)
769 {
770 uiout->text ("...");
771 first = 0;
772 break;
773 }
774
775 switch (SYMBOL_CLASS (sym))
776 {
777 case LOC_ARG:
778 case LOC_REF_ARG:
779 {
780 long current_offset = SYMBOL_VALUE (sym);
781 int arg_size = TYPE_LENGTH (SYMBOL_TYPE (sym));
782
783 /* Compute address of next argument by adding the size of
784 this argument and rounding to an int boundary. */
785 current_offset =
786 ((current_offset + arg_size + sizeof (int) - 1)
787 & ~(sizeof (int) - 1));
788
789 /* If this is the highest offset seen yet, set
790 highest_offset. */
791 if (highest_offset == -1
792 || (current_offset > highest_offset))
793 highest_offset = current_offset;
794
795 /* Add the number of ints we're about to print to
796 args_printed. */
797 args_printed += (arg_size + sizeof (int) - 1) / sizeof (int);
798 }
799
800 /* We care about types of symbols, but don't need to
801 keep track of stack offsets in them. */
802 case LOC_REGISTER:
803 case LOC_REGPARM_ADDR:
804 case LOC_COMPUTED:
805 case LOC_OPTIMIZED_OUT:
806 default:
807 break;
808 }
809
810 /* We have to look up the symbol because arguments can have
811 two entries (one a parameter, one a local) and the one we
812 want is the local, which lookup_symbol will find for us.
813 This includes gcc1 (not gcc2) on SPARC when passing a
814 small structure and gcc2 when the argument type is float
815 and it is passed as a double and converted to float by
816 the prologue (in the latter case the type of the LOC_ARG
817 symbol is double and the type of the LOC_LOCAL symbol is
818 float). */
819 /* But if the parameter name is null, don't try it. Null
820 parameter names occur on the RS/6000, for traceback
821 tables. FIXME, should we even print them? */
822
823 if (*sym->linkage_name ())
824 {
825 struct symbol *nsym;
826
827 nsym = lookup_symbol_search_name (sym->search_name (),
828 b, VAR_DOMAIN).symbol;
829 gdb_assert (nsym != NULL);
830 if (SYMBOL_CLASS (nsym) == LOC_REGISTER
831 && !SYMBOL_IS_ARGUMENT (nsym))
832 {
833 /* There is a LOC_ARG/LOC_REGISTER pair. This means
834 that it was passed on the stack and loaded into a
835 register, or passed in a register and stored in a
836 stack slot. GDB 3.x used the LOC_ARG; GDB
837 4.0-4.11 used the LOC_REGISTER.
838
839 Reasons for using the LOC_ARG:
840
841 (1) Because find_saved_registers may be slow for
842 remote debugging.
843
844 (2) Because registers are often re-used and stack
845 slots rarely (never?) are. Therefore using
846 the stack slot is much less likely to print
847 garbage.
848
849 Reasons why we might want to use the LOC_REGISTER:
850
851 (1) So that the backtrace prints the same value
852 as "print foo". I see no compelling reason
853 why this needs to be the case; having the
854 backtrace print the value which was passed
855 in, and "print foo" print the value as
856 modified within the called function, makes
857 perfect sense to me.
858
859 Additional note: It might be nice if "info args"
860 displayed both values.
861
862 One more note: There is a case with SPARC
863 structure passing where we need to use the
864 LOC_REGISTER, but this is dealt with by creating
865 a single LOC_REGPARM in symbol reading. */
866
867 /* Leave sym (the LOC_ARG) alone. */
868 ;
869 }
870 else
871 sym = nsym;
872 }
873
874 /* Print the current arg. */
875 if (!first)
876 uiout->text (", ");
877 uiout->wrap_hint (" ");
878
879 if (!print_args)
880 {
881 arg.sym = sym;
882 arg.entry_kind = print_entry_values_no;
883 entryarg.sym = sym;
884 entryarg.entry_kind = print_entry_values_no;
885 }
886 else
887 read_frame_arg (fp_opts, sym, frame, &arg, &entryarg);
888
889 if (arg.entry_kind != print_entry_values_only)
890 print_frame_arg (fp_opts, &arg);
891
892 if (entryarg.entry_kind != print_entry_values_no)
893 {
894 if (arg.entry_kind != print_entry_values_only)
895 {
896 uiout->text (", ");
897 uiout->wrap_hint (" ");
898 }
899
900 print_frame_arg (fp_opts, &entryarg);
901 }
902
903 first = 0;
904 }
905 }
906
907 /* Don't print nameless args in situations where we don't know
908 enough about the stack to find them. */
909 if (num != -1)
910 {
911 long start;
912
913 if (highest_offset == -1)
914 start = gdbarch_frame_args_skip (get_frame_arch (frame));
915 else
916 start = highest_offset;
917
918 if (!print_names && !first && num > 0)
919 uiout->text ("...");
920 else
921 print_frame_nameless_args (frame, start, num - args_printed,
922 first, stream);
923 }
924 }
925
926 /* Set the current source and line to the location given by frame
927 FRAME, if possible. When CENTER is true, adjust so the relevant
928 line is in the center of the next 'list'. */
929
930 void
931 set_current_sal_from_frame (struct frame_info *frame)
932 {
933 symtab_and_line sal = find_frame_sal (frame);
934 if (sal.symtab != NULL)
935 set_current_source_symtab_and_line (sal);
936 }
937
938 /* If ON, GDB will display disassembly of the next source line when
939 execution of the program being debugged stops.
940 If AUTO (which is the default), or there's no line info to determine
941 the source line of the next instruction, display disassembly of next
942 instruction instead. */
943
944 static enum auto_boolean disassemble_next_line;
945
946 static void
947 show_disassemble_next_line (struct ui_file *file, int from_tty,
948 struct cmd_list_element *c,
949 const char *value)
950 {
951 fprintf_filtered (file,
952 _("Debugger's willingness to use "
953 "disassemble-next-line is %s.\n"),
954 value);
955 }
956
957 /* Use TRY_CATCH to catch the exception from the gdb_disassembly
958 because it will be broken by filter sometime. */
959
960 static void
961 do_gdb_disassembly (struct gdbarch *gdbarch,
962 int how_many, CORE_ADDR low, CORE_ADDR high)
963 {
964
965 try
966 {
967 gdb_disassembly (gdbarch, current_uiout,
968 DISASSEMBLY_RAW_INSN, how_many,
969 low, high);
970 }
971 catch (const gdb_exception_error &exception)
972 {
973 /* If an exception was thrown while doing the disassembly, print
974 the error message, to give the user a clue of what happened. */
975 exception_print (gdb_stderr, exception);
976 }
977 }
978
979 /* Converts the PRINT_FRAME_INFO choice to an optional enum print_what.
980 Value not present indicates to the caller to use default values
981 specific to the command being executed. */
982
983 static gdb::optional<enum print_what>
984 print_frame_info_to_print_what (const char *print_frame_info)
985 {
986 for (int i = 0; print_frame_info_choices[i] != NULL; i++)
987 if (print_frame_info == print_frame_info_choices[i])
988 return print_frame_info_print_what[i];
989
990 internal_error (__FILE__, __LINE__,
991 "Unexpected print frame-info value `%s'.",
992 print_frame_info);
993 }
994
995 /* Print the PC from FRAME, plus any flags, to UIOUT. */
996
997 static void
998 print_pc (struct ui_out *uiout, struct gdbarch *gdbarch, frame_info *frame,
999 CORE_ADDR pc)
1000 {
1001 uiout->field_core_addr ("addr", gdbarch, pc);
1002
1003 std::string flags = gdbarch_get_pc_address_flags (gdbarch, frame, pc);
1004 if (!flags.empty ())
1005 {
1006 uiout->text (" [");
1007 uiout->field_string ("addr_flags", flags);
1008 uiout->text ("]");
1009 }
1010 }
1011
1012 /* See stack.h. */
1013
1014 void
1015 get_user_print_what_frame_info (gdb::optional<enum print_what> *what)
1016 {
1017 *what
1018 = print_frame_info_to_print_what
1019 (user_frame_print_options.print_frame_info);
1020 }
1021
1022 /* Print information about frame FRAME. The output is format according
1023 to PRINT_LEVEL and PRINT_WHAT and PRINT_ARGS. For the meaning of
1024 PRINT_WHAT, see enum print_what comments in frame.h.
1025 Note that PRINT_WHAT is overridden if FP_OPTS.print_frame_info
1026 != print_frame_info_auto.
1027
1028 Used in "where" output, and to emit breakpoint or step
1029 messages. */
1030
1031 void
1032 print_frame_info (const frame_print_options &fp_opts,
1033 frame_info *frame, int print_level,
1034 enum print_what print_what, int print_args,
1035 int set_current_sal)
1036 {
1037 struct gdbarch *gdbarch = get_frame_arch (frame);
1038 int source_print;
1039 int location_print;
1040 struct ui_out *uiout = current_uiout;
1041
1042 if (!current_uiout->is_mi_like_p ()
1043 && fp_opts.print_frame_info != print_frame_info_auto)
1044 {
1045 /* Use the specific frame information desired by the user. */
1046 print_what = *print_frame_info_to_print_what (fp_opts.print_frame_info);
1047 }
1048
1049 if (get_frame_type (frame) == DUMMY_FRAME
1050 || get_frame_type (frame) == SIGTRAMP_FRAME
1051 || get_frame_type (frame) == ARCH_FRAME)
1052 {
1053 ui_out_emit_tuple tuple_emitter (uiout, "frame");
1054
1055 annotate_frame_begin (print_level ? frame_relative_level (frame) : 0,
1056 gdbarch, get_frame_pc (frame));
1057
1058 /* Do this regardless of SOURCE because we don't have any source
1059 to list for this frame. */
1060 if (print_level)
1061 {
1062 uiout->text ("#");
1063 uiout->field_fmt_signed (2, ui_left, "level",
1064 frame_relative_level (frame));
1065 }
1066 if (uiout->is_mi_like_p ())
1067 {
1068 annotate_frame_address ();
1069 print_pc (uiout, gdbarch, frame, get_frame_pc (frame));
1070 annotate_frame_address_end ();
1071 }
1072
1073 if (get_frame_type (frame) == DUMMY_FRAME)
1074 {
1075 annotate_function_call ();
1076 uiout->field_string ("func", "<function called from gdb>",
1077 metadata_style.style ());
1078 }
1079 else if (get_frame_type (frame) == SIGTRAMP_FRAME)
1080 {
1081 annotate_signal_handler_caller ();
1082 uiout->field_string ("func", "<signal handler called>",
1083 metadata_style.style ());
1084 }
1085 else if (get_frame_type (frame) == ARCH_FRAME)
1086 {
1087 uiout->field_string ("func", "<cross-architecture call>",
1088 metadata_style.style ());
1089 }
1090 uiout->text ("\n");
1091 annotate_frame_end ();
1092
1093 /* If disassemble-next-line is set to auto or on output the next
1094 instruction. */
1095 if (disassemble_next_line == AUTO_BOOLEAN_AUTO
1096 || disassemble_next_line == AUTO_BOOLEAN_TRUE)
1097 do_gdb_disassembly (get_frame_arch (frame), 1,
1098 get_frame_pc (frame), get_frame_pc (frame) + 1);
1099
1100 return;
1101 }
1102
1103 /* If FRAME is not the innermost frame, that normally means that
1104 FRAME->pc points to *after* the call instruction, and we want to
1105 get the line containing the call, never the next line. But if
1106 the next frame is a SIGTRAMP_FRAME or a DUMMY_FRAME, then the
1107 next frame was not entered as the result of a call, and we want
1108 to get the line containing FRAME->pc. */
1109 symtab_and_line sal = find_frame_sal (frame);
1110
1111 location_print = (print_what == LOCATION
1112 || print_what == SRC_AND_LOC
1113 || print_what == LOC_AND_ADDRESS
1114 || print_what == SHORT_LOCATION);
1115 if (location_print || !sal.symtab)
1116 print_frame (fp_opts, frame, print_level, print_what, print_args, sal);
1117
1118 source_print = (print_what == SRC_LINE || print_what == SRC_AND_LOC);
1119
1120 /* If disassemble-next-line is set to auto or on and doesn't have
1121 the line debug messages for $pc, output the next instruction. */
1122 if ((disassemble_next_line == AUTO_BOOLEAN_AUTO
1123 || disassemble_next_line == AUTO_BOOLEAN_TRUE)
1124 && source_print && !sal.symtab)
1125 do_gdb_disassembly (get_frame_arch (frame), 1,
1126 get_frame_pc (frame), get_frame_pc (frame) + 1);
1127
1128 if (source_print && sal.symtab)
1129 {
1130 int mid_statement = ((print_what == SRC_LINE)
1131 && frame_show_address (frame, sal));
1132 if (annotation_level > 0
1133 && annotate_source_line (sal.symtab, sal.line, mid_statement,
1134 get_frame_pc (frame)))
1135 {
1136 /* The call to ANNOTATE_SOURCE_LINE already printed the
1137 annotation for this source line, so we avoid the two cases
1138 below and do not print the actual source line. The
1139 documentation for annotations makes it clear that the source
1140 line annotation is printed __instead__ of printing the source
1141 line, not as well as.
1142
1143 However, if we fail to print the source line, which usually
1144 means either the source file is missing, or the requested
1145 line is out of range of the file, then we don't print the
1146 source annotation, and will pass through the "normal" print
1147 source line code below, the expectation is that this code
1148 will print an appropriate error. */
1149 }
1150 else if (deprecated_print_frame_info_listing_hook)
1151 deprecated_print_frame_info_listing_hook (sal.symtab, sal.line,
1152 sal.line + 1, 0);
1153 else
1154 {
1155 struct value_print_options opts;
1156
1157 get_user_print_options (&opts);
1158 /* We used to do this earlier, but that is clearly
1159 wrong. This function is used by many different
1160 parts of gdb, including normal_stop in infrun.c,
1161 which uses this to print out the current PC
1162 when we stepi/nexti into the middle of a source
1163 line. Only the command line really wants this
1164 behavior. Other UIs probably would like the
1165 ability to decide for themselves if it is desired. */
1166 if (opts.addressprint && mid_statement)
1167 {
1168 print_pc (uiout, gdbarch, frame, get_frame_pc (frame));
1169 uiout->text ("\t");
1170 }
1171
1172 print_source_lines (sal.symtab, sal.line, sal.line + 1, 0);
1173 }
1174
1175 /* If disassemble-next-line is set to on and there is line debug
1176 messages, output assembly codes for next line. */
1177 if (disassemble_next_line == AUTO_BOOLEAN_TRUE)
1178 do_gdb_disassembly (get_frame_arch (frame), -1, sal.pc, sal.end);
1179 }
1180
1181 if (set_current_sal)
1182 {
1183 CORE_ADDR pc;
1184
1185 if (get_frame_pc_if_available (frame, &pc))
1186 last_displayed_symtab_info.set (sal.pspace, pc, sal.symtab, sal.line);
1187 else
1188 last_displayed_symtab_info.invalidate ();
1189 }
1190
1191 annotate_frame_end ();
1192
1193 gdb_flush (gdb_stdout);
1194 }
1195
1196 /* See stack.h. */
1197
1198 void
1199 clear_last_displayed_sal (void)
1200 {
1201 last_displayed_symtab_info.invalidate ();
1202 }
1203
1204 /* See stack.h. */
1205
1206 bool
1207 last_displayed_sal_is_valid (void)
1208 {
1209 return last_displayed_symtab_info.is_valid ();
1210 }
1211
1212 /* See stack.h. */
1213
1214 struct program_space *
1215 get_last_displayed_pspace (void)
1216 {
1217 return last_displayed_symtab_info.pspace ();
1218 }
1219
1220 /* See stack.h. */
1221
1222 CORE_ADDR
1223 get_last_displayed_addr (void)
1224 {
1225 return last_displayed_symtab_info.address ();
1226 }
1227
1228 /* See stack.h. */
1229
1230 struct symtab*
1231 get_last_displayed_symtab (void)
1232 {
1233 return last_displayed_symtab_info.symtab ();
1234 }
1235
1236 /* See stack.h. */
1237
1238 int
1239 get_last_displayed_line (void)
1240 {
1241 return last_displayed_symtab_info.line ();
1242 }
1243
1244 /* See stack.h. */
1245
1246 symtab_and_line
1247 get_last_displayed_sal ()
1248 {
1249 symtab_and_line sal;
1250
1251 if (last_displayed_symtab_info.is_valid ())
1252 {
1253 sal.pspace = last_displayed_symtab_info.pspace ();
1254 sal.pc = last_displayed_symtab_info.address ();
1255 sal.symtab = last_displayed_symtab_info.symtab ();
1256 sal.line = last_displayed_symtab_info.line ();
1257 }
1258
1259 return sal;
1260 }
1261
1262
1263 /* Attempt to obtain the name, FUNLANG and optionally FUNCP of the function
1264 corresponding to FRAME. */
1265
1266 gdb::unique_xmalloc_ptr<char>
1267 find_frame_funname (struct frame_info *frame, enum language *funlang,
1268 struct symbol **funcp)
1269 {
1270 struct symbol *func;
1271 gdb::unique_xmalloc_ptr<char> funname;
1272
1273 *funlang = language_unknown;
1274 if (funcp)
1275 *funcp = NULL;
1276
1277 func = get_frame_function (frame);
1278 if (func)
1279 {
1280 const char *print_name = func->print_name ();
1281
1282 *funlang = func->language ();
1283 if (funcp)
1284 *funcp = func;
1285 if (*funlang == language_cplus)
1286 {
1287 /* It seems appropriate to use print_name() here,
1288 to display the demangled name that we already have
1289 stored in the symbol table, but we stored a version
1290 with DMGL_PARAMS turned on, and here we don't want to
1291 display parameters. So remove the parameters. */
1292 funname = cp_remove_params (print_name);
1293 }
1294
1295 /* If we didn't hit the C++ case above, set *funname
1296 here. */
1297 if (funname == NULL)
1298 funname.reset (xstrdup (print_name));
1299 }
1300 else
1301 {
1302 struct bound_minimal_symbol msymbol;
1303 CORE_ADDR pc;
1304
1305 if (!get_frame_address_in_block_if_available (frame, &pc))
1306 return funname;
1307
1308 msymbol = lookup_minimal_symbol_by_pc (pc);
1309 if (msymbol.minsym != NULL)
1310 {
1311 funname.reset (xstrdup (msymbol.minsym->print_name ()));
1312 *funlang = msymbol.minsym->language ();
1313 }
1314 }
1315
1316 return funname;
1317 }
1318
1319 static void
1320 print_frame (const frame_print_options &fp_opts,
1321 frame_info *frame, int print_level,
1322 enum print_what print_what, int print_args,
1323 struct symtab_and_line sal)
1324 {
1325 struct gdbarch *gdbarch = get_frame_arch (frame);
1326 struct ui_out *uiout = current_uiout;
1327 enum language funlang = language_unknown;
1328 struct value_print_options opts;
1329 struct symbol *func;
1330 CORE_ADDR pc = 0;
1331 int pc_p;
1332
1333 pc_p = get_frame_pc_if_available (frame, &pc);
1334
1335 gdb::unique_xmalloc_ptr<char> funname
1336 = find_frame_funname (frame, &funlang, &func);
1337
1338 annotate_frame_begin (print_level ? frame_relative_level (frame) : 0,
1339 gdbarch, pc);
1340
1341 {
1342 ui_out_emit_tuple tuple_emitter (uiout, "frame");
1343
1344 if (print_level)
1345 {
1346 uiout->text ("#");
1347 uiout->field_fmt_signed (2, ui_left, "level",
1348 frame_relative_level (frame));
1349 }
1350 get_user_print_options (&opts);
1351 if (opts.addressprint)
1352 if (!sal.symtab
1353 || frame_show_address (frame, sal)
1354 || print_what == LOC_AND_ADDRESS)
1355 {
1356 annotate_frame_address ();
1357 if (pc_p)
1358 print_pc (uiout, gdbarch, frame, pc);
1359 else
1360 uiout->field_string ("addr", "<unavailable>",
1361 metadata_style.style ());
1362 annotate_frame_address_end ();
1363 uiout->text (" in ");
1364 }
1365 annotate_frame_function_name ();
1366
1367 string_file stb;
1368 fputs_filtered (funname ? funname.get () : "??", &stb);
1369 uiout->field_stream ("func", stb, function_name_style.style ());
1370 uiout->wrap_hint (" ");
1371 annotate_frame_args ();
1372
1373 uiout->text (" (");
1374 if (print_args)
1375 {
1376 int numargs;
1377
1378 if (gdbarch_frame_num_args_p (gdbarch))
1379 {
1380 numargs = gdbarch_frame_num_args (gdbarch, frame);
1381 gdb_assert (numargs >= 0);
1382 }
1383 else
1384 numargs = -1;
1385
1386 {
1387 ui_out_emit_list list_emitter (uiout, "args");
1388 try
1389 {
1390 print_frame_args (fp_opts, func, frame, numargs, gdb_stdout);
1391 }
1392 catch (const gdb_exception_error &e)
1393 {
1394 }
1395
1396 /* FIXME: ARGS must be a list. If one argument is a string it
1397 will have " that will not be properly escaped. */
1398 }
1399 QUIT;
1400 }
1401 uiout->text (")");
1402 if (print_what != SHORT_LOCATION && sal.symtab)
1403 {
1404 const char *filename_display;
1405
1406 filename_display = symtab_to_filename_for_display (sal.symtab);
1407 annotate_frame_source_begin ();
1408 uiout->wrap_hint (" ");
1409 uiout->text (" at ");
1410 annotate_frame_source_file ();
1411 uiout->field_string ("file", filename_display,
1412 file_name_style.style ());
1413 if (uiout->is_mi_like_p ())
1414 {
1415 const char *fullname = symtab_to_fullname (sal.symtab);
1416
1417 uiout->field_string ("fullname", fullname);
1418 }
1419 annotate_frame_source_file_end ();
1420 uiout->text (":");
1421 annotate_frame_source_line ();
1422 uiout->field_signed ("line", sal.line);
1423 annotate_frame_source_end ();
1424 }
1425
1426 if (print_what != SHORT_LOCATION
1427 && pc_p && (funname == NULL || sal.symtab == NULL))
1428 {
1429 char *lib = solib_name_from_address (get_frame_program_space (frame),
1430 get_frame_pc (frame));
1431
1432 if (lib)
1433 {
1434 annotate_frame_where ();
1435 uiout->wrap_hint (" ");
1436 uiout->text (" from ");
1437 uiout->field_string ("from", lib, file_name_style.style ());
1438 }
1439 }
1440 if (uiout->is_mi_like_p ())
1441 uiout->field_string ("arch",
1442 (gdbarch_bfd_arch_info (gdbarch))->printable_name);
1443 }
1444
1445 uiout->text ("\n");
1446 }
1447 \f
1448
1449 /* Completion function for "frame function", "info frame function", and
1450 "select-frame function" commands. */
1451
1452 static void
1453 frame_selection_by_function_completer (struct cmd_list_element *ignore,
1454 completion_tracker &tracker,
1455 const char *text, const char *word)
1456 {
1457 /* This is used to complete function names within a stack. It would be
1458 nice if we only offered functions that were actually in the stack.
1459 However, this would mean unwinding the stack to completion, which
1460 could take too long, or on a corrupted stack, possibly not end.
1461 Instead, we offer all symbol names as a safer choice. */
1462 collect_symbol_completion_matches (tracker,
1463 complete_symbol_mode::EXPRESSION,
1464 symbol_name_match_type::EXPRESSION,
1465 text, word);
1466 }
1467
1468 /* Core of all the "info frame" sub-commands. Print information about a
1469 frame FI. If SELECTED_FRAME_P is true then the user didn't provide a
1470 frame specification, they just entered 'info frame'. If the user did
1471 provide a frame specification (for example 'info frame 0', 'info frame
1472 level 1') then SELECTED_FRAME_P will be false. */
1473
1474 static void
1475 info_frame_command_core (struct frame_info *fi, bool selected_frame_p)
1476 {
1477 struct symbol *func;
1478 struct symtab *s;
1479 struct frame_info *calling_frame_info;
1480 int numregs;
1481 const char *funname = 0;
1482 enum language funlang = language_unknown;
1483 const char *pc_regname;
1484 struct gdbarch *gdbarch;
1485 CORE_ADDR frame_pc;
1486 int frame_pc_p;
1487 /* Initialize it to avoid "may be used uninitialized" warning. */
1488 CORE_ADDR caller_pc = 0;
1489 int caller_pc_p = 0;
1490
1491 gdbarch = get_frame_arch (fi);
1492
1493 /* Name of the value returned by get_frame_pc(). Per comments, "pc"
1494 is not a good name. */
1495 if (gdbarch_pc_regnum (gdbarch) >= 0)
1496 /* OK, this is weird. The gdbarch_pc_regnum hardware register's value can
1497 easily not match that of the internal value returned by
1498 get_frame_pc(). */
1499 pc_regname = gdbarch_register_name (gdbarch, gdbarch_pc_regnum (gdbarch));
1500 else
1501 /* But then, this is weird to. Even without gdbarch_pc_regnum, an
1502 architectures will often have a hardware register called "pc",
1503 and that register's value, again, can easily not match
1504 get_frame_pc(). */
1505 pc_regname = "pc";
1506
1507 frame_pc_p = get_frame_pc_if_available (fi, &frame_pc);
1508 func = get_frame_function (fi);
1509 symtab_and_line sal = find_frame_sal (fi);
1510 s = sal.symtab;
1511 gdb::unique_xmalloc_ptr<char> func_only;
1512 if (func)
1513 {
1514 funname = func->print_name ();
1515 funlang = func->language ();
1516 if (funlang == language_cplus)
1517 {
1518 /* It seems appropriate to use print_name() here,
1519 to display the demangled name that we already have
1520 stored in the symbol table, but we stored a version
1521 with DMGL_PARAMS turned on, and here we don't want to
1522 display parameters. So remove the parameters. */
1523 func_only = cp_remove_params (funname);
1524
1525 if (func_only)
1526 funname = func_only.get ();
1527 }
1528 }
1529 else if (frame_pc_p)
1530 {
1531 struct bound_minimal_symbol msymbol;
1532
1533 msymbol = lookup_minimal_symbol_by_pc (frame_pc);
1534 if (msymbol.minsym != NULL)
1535 {
1536 funname = msymbol.minsym->print_name ();
1537 funlang = msymbol.minsym->language ();
1538 }
1539 }
1540 calling_frame_info = get_prev_frame (fi);
1541
1542 if (selected_frame_p && frame_relative_level (fi) >= 0)
1543 {
1544 printf_filtered (_("Stack level %d, frame at "),
1545 frame_relative_level (fi));
1546 }
1547 else
1548 {
1549 printf_filtered (_("Stack frame at "));
1550 }
1551 fputs_filtered (paddress (gdbarch, get_frame_base (fi)), gdb_stdout);
1552 printf_filtered (":\n");
1553 printf_filtered (" %s = ", pc_regname);
1554 if (frame_pc_p)
1555 fputs_filtered (paddress (gdbarch, get_frame_pc (fi)), gdb_stdout);
1556 else
1557 fputs_styled ("<unavailable>", metadata_style.style (), gdb_stdout);
1558
1559 wrap_here (" ");
1560 if (funname)
1561 {
1562 printf_filtered (" in ");
1563 fputs_filtered (funname, gdb_stdout);
1564 }
1565 wrap_here (" ");
1566 if (sal.symtab)
1567 printf_filtered
1568 (" (%ps:%d)",
1569 styled_string (file_name_style.style (),
1570 symtab_to_filename_for_display (sal.symtab)),
1571 sal.line);
1572 puts_filtered ("; ");
1573 wrap_here (" ");
1574 printf_filtered ("saved %s = ", pc_regname);
1575
1576 if (!frame_id_p (frame_unwind_caller_id (fi)))
1577 val_print_not_saved (gdb_stdout);
1578 else
1579 {
1580 try
1581 {
1582 caller_pc = frame_unwind_caller_pc (fi);
1583 caller_pc_p = 1;
1584 }
1585 catch (const gdb_exception_error &ex)
1586 {
1587 switch (ex.error)
1588 {
1589 case NOT_AVAILABLE_ERROR:
1590 val_print_unavailable (gdb_stdout);
1591 break;
1592 case OPTIMIZED_OUT_ERROR:
1593 val_print_not_saved (gdb_stdout);
1594 break;
1595 default:
1596 fprintf_styled (gdb_stdout, metadata_style.style (),
1597 _("<error: %s>"),
1598 ex.what ());
1599 break;
1600 }
1601 }
1602 }
1603
1604 if (caller_pc_p)
1605 fputs_filtered (paddress (gdbarch, caller_pc), gdb_stdout);
1606 printf_filtered ("\n");
1607
1608 if (calling_frame_info == NULL)
1609 {
1610 enum unwind_stop_reason reason;
1611
1612 reason = get_frame_unwind_stop_reason (fi);
1613 if (reason != UNWIND_NO_REASON)
1614 printf_filtered (_(" Outermost frame: %s\n"),
1615 frame_stop_reason_string (fi));
1616 }
1617 else if (get_frame_type (fi) == TAILCALL_FRAME)
1618 puts_filtered (" tail call frame");
1619 else if (get_frame_type (fi) == INLINE_FRAME)
1620 printf_filtered (" inlined into frame %d",
1621 frame_relative_level (get_prev_frame (fi)));
1622 else
1623 {
1624 printf_filtered (" called by frame at ");
1625 fputs_filtered (paddress (gdbarch, get_frame_base (calling_frame_info)),
1626 gdb_stdout);
1627 }
1628 if (get_next_frame (fi) && calling_frame_info)
1629 puts_filtered (",");
1630 wrap_here (" ");
1631 if (get_next_frame (fi))
1632 {
1633 printf_filtered (" caller of frame at ");
1634 fputs_filtered (paddress (gdbarch, get_frame_base (get_next_frame (fi))),
1635 gdb_stdout);
1636 }
1637 if (get_next_frame (fi) || calling_frame_info)
1638 puts_filtered ("\n");
1639
1640 if (s)
1641 printf_filtered (" source language %s.\n",
1642 language_str (s->language));
1643
1644 {
1645 /* Address of the argument list for this frame, or 0. */
1646 CORE_ADDR arg_list = get_frame_args_address (fi);
1647 /* Number of args for this frame, or -1 if unknown. */
1648 int numargs;
1649
1650 if (arg_list == 0)
1651 printf_filtered (" Arglist at unknown address.\n");
1652 else
1653 {
1654 printf_filtered (" Arglist at ");
1655 fputs_filtered (paddress (gdbarch, arg_list), gdb_stdout);
1656 printf_filtered (",");
1657
1658 if (!gdbarch_frame_num_args_p (gdbarch))
1659 {
1660 numargs = -1;
1661 puts_filtered (" args: ");
1662 }
1663 else
1664 {
1665 numargs = gdbarch_frame_num_args (gdbarch, fi);
1666 gdb_assert (numargs >= 0);
1667 if (numargs == 0)
1668 puts_filtered (" no args.");
1669 else if (numargs == 1)
1670 puts_filtered (" 1 arg: ");
1671 else
1672 printf_filtered (" %d args: ", numargs);
1673 }
1674 print_frame_args (user_frame_print_options,
1675 func, fi, numargs, gdb_stdout);
1676 puts_filtered ("\n");
1677 }
1678 }
1679 {
1680 /* Address of the local variables for this frame, or 0. */
1681 CORE_ADDR arg_list = get_frame_locals_address (fi);
1682
1683 if (arg_list == 0)
1684 printf_filtered (" Locals at unknown address,");
1685 else
1686 {
1687 printf_filtered (" Locals at ");
1688 fputs_filtered (paddress (gdbarch, arg_list), gdb_stdout);
1689 printf_filtered (",");
1690 }
1691 }
1692
1693 /* Print as much information as possible on the location of all the
1694 registers. */
1695 {
1696 int count;
1697 int i;
1698 int need_nl = 1;
1699 int sp_regnum = gdbarch_sp_regnum (gdbarch);
1700
1701 /* The sp is special; what's displayed isn't the save address, but
1702 the value of the previous frame's sp. This is a legacy thing,
1703 at one stage the frame cached the previous frame's SP instead
1704 of its address, hence it was easiest to just display the cached
1705 value. */
1706 if (sp_regnum >= 0)
1707 {
1708 struct value *value = frame_unwind_register_value (fi, sp_regnum);
1709 gdb_assert (value != NULL);
1710
1711 if (!value_optimized_out (value) && value_entirely_available (value))
1712 {
1713 if (VALUE_LVAL (value) == not_lval)
1714 {
1715 CORE_ADDR sp;
1716 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1717 int sp_size = register_size (gdbarch, sp_regnum);
1718
1719 sp = extract_unsigned_integer (value_contents_all (value),
1720 sp_size, byte_order);
1721
1722 printf_filtered (" Previous frame's sp is ");
1723 fputs_filtered (paddress (gdbarch, sp), gdb_stdout);
1724 printf_filtered ("\n");
1725 }
1726 else if (VALUE_LVAL (value) == lval_memory)
1727 {
1728 printf_filtered (" Previous frame's sp at ");
1729 fputs_filtered (paddress (gdbarch, value_address (value)),
1730 gdb_stdout);
1731 printf_filtered ("\n");
1732 }
1733 else if (VALUE_LVAL (value) == lval_register)
1734 {
1735 printf_filtered (" Previous frame's sp in %s\n",
1736 gdbarch_register_name (gdbarch,
1737 VALUE_REGNUM (value)));
1738 }
1739
1740 release_value (value);
1741 need_nl = 0;
1742 }
1743 /* else keep quiet. */
1744 }
1745
1746 count = 0;
1747 numregs = gdbarch_num_cooked_regs (gdbarch);
1748 for (i = 0; i < numregs; i++)
1749 if (i != sp_regnum
1750 && gdbarch_register_reggroup_p (gdbarch, i, all_reggroup))
1751 {
1752 enum lval_type lval;
1753 int optimized;
1754 int unavailable;
1755 CORE_ADDR addr;
1756 int realnum;
1757
1758 /* Find out the location of the saved register without
1759 fetching the corresponding value. */
1760 frame_register_unwind (fi, i, &optimized, &unavailable,
1761 &lval, &addr, &realnum, NULL);
1762 /* For moment, only display registers that were saved on the
1763 stack. */
1764 if (!optimized && !unavailable && lval == lval_memory)
1765 {
1766 if (count == 0)
1767 puts_filtered (" Saved registers:\n ");
1768 else
1769 puts_filtered (",");
1770 wrap_here (" ");
1771 printf_filtered (" %s at ",
1772 gdbarch_register_name (gdbarch, i));
1773 fputs_filtered (paddress (gdbarch, addr), gdb_stdout);
1774 count++;
1775 }
1776 }
1777 if (count || need_nl)
1778 puts_filtered ("\n");
1779 }
1780 }
1781
1782 /* Return the innermost frame at level LEVEL. */
1783
1784 static struct frame_info *
1785 leading_innermost_frame (int level)
1786 {
1787 struct frame_info *leading;
1788
1789 leading = get_current_frame ();
1790
1791 gdb_assert (level >= 0);
1792
1793 while (leading != nullptr && level)
1794 {
1795 QUIT;
1796 leading = get_prev_frame (leading);
1797 level--;
1798 }
1799
1800 return leading;
1801 }
1802
1803 /* Return the starting frame needed to handle COUNT outermost frames. */
1804
1805 static struct frame_info *
1806 trailing_outermost_frame (int count)
1807 {
1808 struct frame_info *current;
1809 struct frame_info *trailing;
1810
1811 trailing = get_current_frame ();
1812
1813 gdb_assert (count > 0);
1814
1815 current = trailing;
1816 while (current != nullptr && count--)
1817 {
1818 QUIT;
1819 current = get_prev_frame (current);
1820 }
1821
1822 /* Will stop when CURRENT reaches the top of the stack.
1823 TRAILING will be COUNT below it. */
1824 while (current != nullptr)
1825 {
1826 QUIT;
1827 trailing = get_prev_frame (trailing);
1828 current = get_prev_frame (current);
1829 }
1830
1831 return trailing;
1832 }
1833
1834 /* The core of all the "select-frame" sub-commands. Just wraps a call to
1835 SELECT_FRAME. */
1836
1837 static void
1838 select_frame_command_core (struct frame_info *fi, bool ignored)
1839 {
1840 frame_info *prev_frame = get_selected_frame ();
1841 select_frame (fi);
1842 if (get_selected_frame () != prev_frame)
1843 gdb::observers::user_selected_context_changed.notify (USER_SELECTED_FRAME);
1844 }
1845
1846 /* See stack.h. */
1847
1848 void
1849 select_frame_for_mi (struct frame_info *fi)
1850 {
1851 select_frame_command_core (fi, false /* Ignored. */);
1852 }
1853
1854 /* The core of all the "frame" sub-commands. Select frame FI, and if this
1855 means we change frame send out a change notification (otherwise, just
1856 reprint the current frame summary). */
1857
1858 static void
1859 frame_command_core (struct frame_info *fi, bool ignored)
1860 {
1861 frame_info *prev_frame = get_selected_frame ();
1862 select_frame (fi);
1863 if (get_selected_frame () != prev_frame)
1864 gdb::observers::user_selected_context_changed.notify (USER_SELECTED_FRAME);
1865 else
1866 print_selected_thread_frame (current_uiout, USER_SELECTED_FRAME);
1867 }
1868
1869 /* The three commands 'frame', 'select-frame', and 'info frame' all have a
1870 common set of sub-commands that allow a specific frame to be selected.
1871 All of the sub-command functions are static methods within this class
1872 template which is then instantiated below. The template parameter is a
1873 callback used to implement the functionality of the base command
1874 ('frame', 'select-frame', or 'info frame').
1875
1876 In the template parameter FI is the frame being selected. The
1877 SELECTED_FRAME_P flag is true if the frame being selected was done by
1878 default, which happens when the user uses the base command with no
1879 arguments. For example the commands 'info frame', 'select-frame',
1880 'frame' will all cause SELECTED_FRAME_P to be true. In all other cases
1881 SELECTED_FRAME_P is false. */
1882
1883 template <void (*FPTR) (struct frame_info *fi, bool selected_frame_p)>
1884 class frame_command_helper
1885 {
1886 public:
1887
1888 /* The "frame level" family of commands. The ARG is an integer that is
1889 the frame's level in the stack. */
1890 static void
1891 level (const char *arg, int from_tty)
1892 {
1893 int level = value_as_long (parse_and_eval (arg));
1894 struct frame_info *fid
1895 = find_relative_frame (get_current_frame (), &level);
1896 if (level != 0)
1897 error (_("No frame at level %s."), arg);
1898 FPTR (fid, false);
1899 }
1900
1901 /* The "frame address" family of commands. ARG is a stack-pointer
1902 address for an existing frame. This command does not allow new
1903 frames to be created. */
1904
1905 static void
1906 address (const char *arg, int from_tty)
1907 {
1908 CORE_ADDR addr = value_as_address (parse_and_eval (arg));
1909 struct frame_info *fid = find_frame_for_address (addr);
1910 if (fid == NULL)
1911 error (_("No frame at address %s."), arg);
1912 FPTR (fid, false);
1913 }
1914
1915 /* The "frame view" family of commands. ARG is one or two addresses and
1916 is used to view a frame that might be outside the current backtrace.
1917 The addresses are stack-pointer address, and (optional) pc-address. */
1918
1919 static void
1920 view (const char *args, int from_tty)
1921 {
1922 struct frame_info *fid;
1923
1924 if (args == NULL)
1925 error (_("Missing address argument to view a frame"));
1926
1927 gdb_argv argv (args);
1928
1929 if (argv.count () == 2)
1930 {
1931 CORE_ADDR addr[2];
1932
1933 addr [0] = value_as_address (parse_and_eval (argv[0]));
1934 addr [1] = value_as_address (parse_and_eval (argv[1]));
1935 fid = create_new_frame (addr[0], addr[1]);
1936 }
1937 else
1938 {
1939 CORE_ADDR addr = value_as_address (parse_and_eval (argv[0]));
1940 fid = create_new_frame (addr, false);
1941 }
1942 FPTR (fid, false);
1943 }
1944
1945 /* The "frame function" family of commands. ARG is the name of a
1946 function within the stack, the first function (searching from frame
1947 0) with that name will be selected. */
1948
1949 static void
1950 function (const char *arg, int from_tty)
1951 {
1952 if (arg == NULL)
1953 error (_("Missing function name argument"));
1954 struct frame_info *fid = find_frame_for_function (arg);
1955 if (fid == NULL)
1956 error (_("No frame for function \"%s\"."), arg);
1957 FPTR (fid, false);
1958 }
1959
1960 /* The "frame" base command, that is, when no sub-command is specified.
1961 If one argument is provided then we assume that this is a frame's
1962 level as historically, this was the supported command syntax that was
1963 used most often.
1964
1965 If no argument is provided, then the current frame is selected. */
1966
1967 static void
1968 base_command (const char *arg, int from_tty)
1969 {
1970 if (arg == NULL)
1971 FPTR (get_selected_frame (_("No stack.")), true);
1972 else
1973 level (arg, from_tty);
1974 }
1975 };
1976
1977 /* Instantiate three FRAME_COMMAND_HELPER instances to implement the
1978 sub-commands for 'info frame', 'frame', and 'select-frame' commands. */
1979
1980 static frame_command_helper <info_frame_command_core> info_frame_cmd;
1981 static frame_command_helper <frame_command_core> frame_cmd;
1982 static frame_command_helper <select_frame_command_core> select_frame_cmd;
1983
1984 /* Print briefly all stack frames or just the innermost COUNT_EXP
1985 frames. */
1986
1987 static void
1988 backtrace_command_1 (const frame_print_options &fp_opts,
1989 const backtrace_cmd_options &bt_opts,
1990 const char *count_exp, int from_tty)
1991
1992 {
1993 struct frame_info *fi;
1994 int count;
1995 int py_start = 0, py_end = 0;
1996 enum ext_lang_bt_status result = EXT_LANG_BT_ERROR;
1997
1998 if (!target_has_stack ())
1999 error (_("No stack."));
2000
2001 if (count_exp)
2002 {
2003 count = parse_and_eval_long (count_exp);
2004 if (count < 0)
2005 py_start = count;
2006 else
2007 {
2008 py_start = 0;
2009 /* The argument to apply_ext_lang_frame_filter is the number
2010 of the final frame to print, and frames start at 0. */
2011 py_end = count - 1;
2012 }
2013 }
2014 else
2015 {
2016 py_end = -1;
2017 count = -1;
2018 }
2019
2020 frame_filter_flags flags = 0;
2021
2022 if (bt_opts.full)
2023 flags |= PRINT_LOCALS;
2024 if (bt_opts.hide)
2025 flags |= PRINT_HIDE;
2026
2027 if (!bt_opts.no_filters)
2028 {
2029 enum ext_lang_frame_args arg_type;
2030
2031 flags |= PRINT_LEVEL | PRINT_FRAME_INFO | PRINT_ARGS;
2032 if (from_tty)
2033 flags |= PRINT_MORE_FRAMES;
2034
2035 if (fp_opts.print_frame_arguments == print_frame_arguments_scalars)
2036 arg_type = CLI_SCALAR_VALUES;
2037 else if (fp_opts.print_frame_arguments == print_frame_arguments_all)
2038 arg_type = CLI_ALL_VALUES;
2039 else if (fp_opts.print_frame_arguments == print_frame_arguments_presence)
2040 arg_type = CLI_PRESENCE;
2041 else if (fp_opts.print_frame_arguments == print_frame_arguments_none)
2042 arg_type = NO_VALUES;
2043 else
2044 gdb_assert (0);
2045
2046 result = apply_ext_lang_frame_filter (get_current_frame (), flags,
2047 arg_type, current_uiout,
2048 py_start, py_end);
2049 }
2050
2051 /* Run the inbuilt backtrace if there are no filters registered, or
2052 "-no-filters" has been specified from the command. */
2053 if (bt_opts.no_filters || result == EXT_LANG_BT_NO_FILTERS)
2054 {
2055 struct frame_info *trailing;
2056
2057 /* The following code must do two things. First, it must set the
2058 variable TRAILING to the frame from which we should start
2059 printing. Second, it must set the variable count to the number
2060 of frames which we should print, or -1 if all of them. */
2061
2062 if (count_exp != NULL && count < 0)
2063 {
2064 trailing = trailing_outermost_frame (-count);
2065 count = -1;
2066 }
2067 else
2068 trailing = get_current_frame ();
2069
2070 for (fi = trailing; fi && count--; fi = get_prev_frame (fi))
2071 {
2072 QUIT;
2073
2074 /* Don't use print_stack_frame; if an error() occurs it probably
2075 means further attempts to backtrace would fail (on the other
2076 hand, perhaps the code does or could be fixed to make sure
2077 the frame->prev field gets set to NULL in that case). */
2078
2079 print_frame_info (fp_opts, fi, 1, LOCATION, 1, 0);
2080 if ((flags & PRINT_LOCALS) != 0)
2081 {
2082 struct frame_id frame_id = get_frame_id (fi);
2083
2084 print_frame_local_vars (fi, false, NULL, NULL, 1, gdb_stdout);
2085
2086 /* print_frame_local_vars invalidates FI. */
2087 fi = frame_find_by_id (frame_id);
2088 if (fi == NULL)
2089 {
2090 trailing = NULL;
2091 warning (_("Unable to restore previously selected frame."));
2092 break;
2093 }
2094 }
2095
2096 /* Save the last frame to check for error conditions. */
2097 trailing = fi;
2098 }
2099
2100 /* If we've stopped before the end, mention that. */
2101 if (fi && from_tty)
2102 printf_filtered (_("(More stack frames follow...)\n"));
2103
2104 /* If we've run out of frames, and the reason appears to be an error
2105 condition, print it. */
2106 if (fi == NULL && trailing != NULL)
2107 {
2108 enum unwind_stop_reason reason;
2109
2110 reason = get_frame_unwind_stop_reason (trailing);
2111 if (reason >= UNWIND_FIRST_ERROR)
2112 printf_filtered (_("Backtrace stopped: %s\n"),
2113 frame_stop_reason_string (trailing));
2114 }
2115 }
2116 }
2117
2118 /* Create an option_def_group array grouping all the "backtrace"
2119 options, with FP_OPTS, BT_CMD_OPT, SET_BT_OPTS as contexts. */
2120
2121 static inline std::array<gdb::option::option_def_group, 3>
2122 make_backtrace_options_def_group (frame_print_options *fp_opts,
2123 backtrace_cmd_options *bt_cmd_opts,
2124 set_backtrace_options *set_bt_opts)
2125 {
2126 return {{
2127 { {frame_print_option_defs}, fp_opts },
2128 { {set_backtrace_option_defs}, set_bt_opts },
2129 { {backtrace_command_option_defs}, bt_cmd_opts }
2130 }};
2131 }
2132
2133 /* Parse the backtrace command's qualifiers. Returns ARG advanced
2134 past the qualifiers, if any. BT_CMD_OPTS, if not null, is used to
2135 store the parsed qualifiers. */
2136
2137 static const char *
2138 parse_backtrace_qualifiers (const char *arg,
2139 backtrace_cmd_options *bt_cmd_opts = nullptr)
2140 {
2141 while (true)
2142 {
2143 const char *save_arg = arg;
2144 std::string this_arg = extract_arg (&arg);
2145
2146 if (this_arg.empty ())
2147 return arg;
2148
2149 if (subset_compare (this_arg.c_str (), "no-filters"))
2150 {
2151 if (bt_cmd_opts != nullptr)
2152 bt_cmd_opts->no_filters = true;
2153 }
2154 else if (subset_compare (this_arg.c_str (), "full"))
2155 {
2156 if (bt_cmd_opts != nullptr)
2157 bt_cmd_opts->full = true;
2158 }
2159 else if (subset_compare (this_arg.c_str (), "hide"))
2160 {
2161 if (bt_cmd_opts != nullptr)
2162 bt_cmd_opts->hide = true;
2163 }
2164 else
2165 {
2166 /* Not a recognized qualifier, so stop. */
2167 return save_arg;
2168 }
2169 }
2170 }
2171
2172 static void
2173 backtrace_command (const char *arg, int from_tty)
2174 {
2175 frame_print_options fp_opts = user_frame_print_options;
2176 backtrace_cmd_options bt_cmd_opts;
2177 set_backtrace_options set_bt_opts = user_set_backtrace_options;
2178
2179 auto grp
2180 = make_backtrace_options_def_group (&fp_opts, &bt_cmd_opts, &set_bt_opts);
2181 gdb::option::process_options
2182 (&arg, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND, grp);
2183
2184 /* Parse non-'-'-prefixed qualifiers, for backwards
2185 compatibility. */
2186 if (arg != NULL)
2187 {
2188 arg = parse_backtrace_qualifiers (arg, &bt_cmd_opts);
2189 if (*arg == '\0')
2190 arg = NULL;
2191 }
2192
2193 /* These options are handled quite deep in the unwind machinery, so
2194 we get to pass them down by swapping globals. */
2195 scoped_restore restore_set_backtrace_options
2196 = make_scoped_restore (&user_set_backtrace_options, set_bt_opts);
2197
2198 backtrace_command_1 (fp_opts, bt_cmd_opts, arg, from_tty);
2199 }
2200
2201 /* Completer for the "backtrace" command. */
2202
2203 static void
2204 backtrace_command_completer (struct cmd_list_element *ignore,
2205 completion_tracker &tracker,
2206 const char *text, const char */*word*/)
2207 {
2208 const auto group
2209 = make_backtrace_options_def_group (nullptr, nullptr, nullptr);
2210 if (gdb::option::complete_options
2211 (tracker, &text, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND, group))
2212 return;
2213
2214 if (*text != '\0')
2215 {
2216 const char *p = skip_to_space (text);
2217 if (*p == '\0')
2218 {
2219 static const char *const backtrace_cmd_qualifier_choices[] = {
2220 "full", "no-filters", "hide", nullptr,
2221 };
2222 complete_on_enum (tracker, backtrace_cmd_qualifier_choices,
2223 text, text);
2224
2225 if (tracker.have_completions ())
2226 return;
2227 }
2228 else
2229 {
2230 const char *cmd = parse_backtrace_qualifiers (text);
2231 tracker.advance_custom_word_point_by (cmd - text);
2232 text = cmd;
2233 }
2234 }
2235
2236 const char *word = advance_to_expression_complete_word_point (tracker, text);
2237 expression_completer (ignore, tracker, text, word);
2238 }
2239
2240 /* Iterate over the local variables of a block B, calling CB with
2241 CB_DATA. */
2242
2243 static void
2244 iterate_over_block_locals (const struct block *b,
2245 iterate_over_block_arg_local_vars_cb cb,
2246 void *cb_data)
2247 {
2248 struct block_iterator iter;
2249 struct symbol *sym;
2250
2251 ALL_BLOCK_SYMBOLS (b, iter, sym)
2252 {
2253 switch (SYMBOL_CLASS (sym))
2254 {
2255 case LOC_CONST:
2256 case LOC_LOCAL:
2257 case LOC_REGISTER:
2258 case LOC_STATIC:
2259 case LOC_COMPUTED:
2260 case LOC_OPTIMIZED_OUT:
2261 if (SYMBOL_IS_ARGUMENT (sym))
2262 break;
2263 if (SYMBOL_DOMAIN (sym) == COMMON_BLOCK_DOMAIN)
2264 break;
2265 (*cb) (sym->print_name (), sym, cb_data);
2266 break;
2267
2268 default:
2269 /* Ignore symbols which are not locals. */
2270 break;
2271 }
2272 }
2273 }
2274
2275 /* Iterate over all the local variables in block B, including all its
2276 superblocks, stopping when the top-level block is reached. */
2277
2278 void
2279 iterate_over_block_local_vars (const struct block *block,
2280 iterate_over_block_arg_local_vars_cb cb,
2281 void *cb_data)
2282 {
2283 while (block)
2284 {
2285 iterate_over_block_locals (block, cb, cb_data);
2286 /* After handling the function's top-level block, stop. Don't
2287 continue to its superblock, the block of per-file
2288 symbols. */
2289 if (BLOCK_FUNCTION (block))
2290 break;
2291 block = BLOCK_SUPERBLOCK (block);
2292 }
2293 }
2294
2295 /* Data to be passed around in the calls to the locals and args
2296 iterators. */
2297
2298 struct print_variable_and_value_data
2299 {
2300 gdb::optional<compiled_regex> preg;
2301 gdb::optional<compiled_regex> treg;
2302 struct frame_id frame_id;
2303 int num_tabs;
2304 struct ui_file *stream;
2305 int values_printed;
2306 };
2307
2308 /* The callback for the locals and args iterators. */
2309
2310 static void
2311 do_print_variable_and_value (const char *print_name,
2312 struct symbol *sym,
2313 void *cb_data)
2314 {
2315 struct print_variable_and_value_data *p
2316 = (struct print_variable_and_value_data *) cb_data;
2317 struct frame_info *frame;
2318
2319 if (p->preg.has_value ()
2320 && p->preg->exec (sym->natural_name (), 0, NULL, 0) != 0)
2321 return;
2322 if (p->treg.has_value ()
2323 && !treg_matches_sym_type_name (*p->treg, sym))
2324 return;
2325 if (language_def (sym->language ())->symbol_printing_suppressed (sym))
2326 return;
2327
2328 frame = frame_find_by_id (p->frame_id);
2329 if (frame == NULL)
2330 {
2331 warning (_("Unable to restore previously selected frame."));
2332 return;
2333 }
2334
2335 print_variable_and_value (print_name, sym, frame, p->stream, p->num_tabs);
2336
2337 /* print_variable_and_value invalidates FRAME. */
2338 frame = NULL;
2339
2340 p->values_printed = 1;
2341 }
2342
2343 /* Prepares the regular expression REG from REGEXP.
2344 If REGEXP is NULL, it results in an empty regular expression. */
2345
2346 static void
2347 prepare_reg (const char *regexp, gdb::optional<compiled_regex> *reg)
2348 {
2349 if (regexp != NULL)
2350 {
2351 int cflags = REG_NOSUB | (case_sensitivity == case_sensitive_off
2352 ? REG_ICASE : 0);
2353 reg->emplace (regexp, cflags, _("Invalid regexp"));
2354 }
2355 else
2356 reg->reset ();
2357 }
2358
2359 /* Print all variables from the innermost up to the function block of FRAME.
2360 Print them with values to STREAM indented by NUM_TABS.
2361 If REGEXP is not NULL, only print local variables whose name
2362 matches REGEXP.
2363 If T_REGEXP is not NULL, only print local variables whose type
2364 matches T_REGEXP.
2365 If no local variables have been printed and !QUIET, prints a message
2366 explaining why no local variables could be printed.
2367
2368 This function will invalidate FRAME. */
2369
2370 static void
2371 print_frame_local_vars (struct frame_info *frame,
2372 bool quiet,
2373 const char *regexp, const char *t_regexp,
2374 int num_tabs, struct ui_file *stream)
2375 {
2376 struct print_variable_and_value_data cb_data;
2377 const struct block *block;
2378 CORE_ADDR pc;
2379
2380 if (!get_frame_pc_if_available (frame, &pc))
2381 {
2382 if (!quiet)
2383 fprintf_filtered (stream,
2384 _("PC unavailable, cannot determine locals.\n"));
2385 return;
2386 }
2387
2388 block = get_frame_block (frame, 0);
2389 if (block == 0)
2390 {
2391 if (!quiet)
2392 fprintf_filtered (stream, "No symbol table info available.\n");
2393 return;
2394 }
2395
2396 prepare_reg (regexp, &cb_data.preg);
2397 prepare_reg (t_regexp, &cb_data.treg);
2398 cb_data.frame_id = get_frame_id (frame);
2399 cb_data.num_tabs = 4 * num_tabs;
2400 cb_data.stream = stream;
2401 cb_data.values_printed = 0;
2402
2403 /* Temporarily change the selected frame to the given FRAME.
2404 This allows routines that rely on the selected frame instead
2405 of being given a frame as parameter to use the correct frame. */
2406 scoped_restore_selected_frame restore_selected_frame;
2407 select_frame (frame);
2408
2409 iterate_over_block_local_vars (block,
2410 do_print_variable_and_value,
2411 &cb_data);
2412
2413 if (!cb_data.values_printed && !quiet)
2414 {
2415 if (regexp == NULL && t_regexp == NULL)
2416 fprintf_filtered (stream, _("No locals.\n"));
2417 else
2418 fprintf_filtered (stream, _("No matching locals.\n"));
2419 }
2420 }
2421
2422 /* Structure to hold the values of the options used by the 'info
2423 variables' command and other similar commands. These correspond to the
2424 -q and -t options. */
2425
2426 struct info_print_options
2427 {
2428 bool quiet = false;
2429 char *type_regexp = nullptr;
2430
2431 ~info_print_options ()
2432 {
2433 xfree (type_regexp);
2434 }
2435 };
2436
2437 /* The options used by the 'info locals' and 'info args' commands. */
2438
2439 static const gdb::option::option_def info_print_options_defs[] = {
2440 gdb::option::boolean_option_def<info_print_options> {
2441 "q",
2442 [] (info_print_options *opt) { return &opt->quiet; },
2443 nullptr, /* show_cmd_cb */
2444 nullptr /* set_doc */
2445 },
2446
2447 gdb::option::string_option_def<info_print_options> {
2448 "t",
2449 [] (info_print_options *opt) { return &opt->type_regexp; },
2450 nullptr, /* show_cmd_cb */
2451 nullptr /* set_doc */
2452 }
2453 };
2454
2455 /* Returns the option group used by 'info locals' and 'info args'
2456 commands. */
2457
2458 static gdb::option::option_def_group
2459 make_info_print_options_def_group (info_print_options *opts)
2460 {
2461 return {{info_print_options_defs}, opts};
2462 }
2463
2464 /* Command completer for 'info locals' and 'info args'. */
2465
2466 static void
2467 info_print_command_completer (struct cmd_list_element *ignore,
2468 completion_tracker &tracker,
2469 const char *text, const char * /* word */)
2470 {
2471 const auto group
2472 = make_info_print_options_def_group (nullptr);
2473 if (gdb::option::complete_options
2474 (tracker, &text, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND, group))
2475 return;
2476
2477 const char *word = advance_to_expression_complete_word_point (tracker, text);
2478 symbol_completer (ignore, tracker, text, word);
2479 }
2480
2481 /* Implement the 'info locals' command. */
2482
2483 void
2484 info_locals_command (const char *args, int from_tty)
2485 {
2486 info_print_options opts;
2487 auto grp = make_info_print_options_def_group (&opts);
2488 gdb::option::process_options
2489 (&args, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND, grp);
2490 if (args != nullptr && *args == '\0')
2491 args = nullptr;
2492
2493 print_frame_local_vars (get_selected_frame (_("No frame selected.")),
2494 opts.quiet, args, opts.type_regexp,
2495 0, gdb_stdout);
2496 }
2497
2498 /* Iterate over all the argument variables in block B. */
2499
2500 void
2501 iterate_over_block_arg_vars (const struct block *b,
2502 iterate_over_block_arg_local_vars_cb cb,
2503 void *cb_data)
2504 {
2505 struct block_iterator iter;
2506 struct symbol *sym, *sym2;
2507
2508 ALL_BLOCK_SYMBOLS (b, iter, sym)
2509 {
2510 /* Don't worry about things which aren't arguments. */
2511 if (SYMBOL_IS_ARGUMENT (sym))
2512 {
2513 /* We have to look up the symbol because arguments can have
2514 two entries (one a parameter, one a local) and the one we
2515 want is the local, which lookup_symbol will find for us.
2516 This includes gcc1 (not gcc2) on the sparc when passing a
2517 small structure and gcc2 when the argument type is float
2518 and it is passed as a double and converted to float by
2519 the prologue (in the latter case the type of the LOC_ARG
2520 symbol is double and the type of the LOC_LOCAL symbol is
2521 float). There are also LOC_ARG/LOC_REGISTER pairs which
2522 are not combined in symbol-reading. */
2523
2524 sym2 = lookup_symbol_search_name (sym->search_name (),
2525 b, VAR_DOMAIN).symbol;
2526 (*cb) (sym->print_name (), sym2, cb_data);
2527 }
2528 }
2529 }
2530
2531 /* Print all argument variables of the function of FRAME.
2532 Print them with values to STREAM.
2533 If REGEXP is not NULL, only print argument variables whose name
2534 matches REGEXP.
2535 If T_REGEXP is not NULL, only print argument variables whose type
2536 matches T_REGEXP.
2537 If no argument variables have been printed and !QUIET, prints a message
2538 explaining why no argument variables could be printed.
2539
2540 This function will invalidate FRAME. */
2541
2542 static void
2543 print_frame_arg_vars (struct frame_info *frame,
2544 bool quiet,
2545 const char *regexp, const char *t_regexp,
2546 struct ui_file *stream)
2547 {
2548 struct print_variable_and_value_data cb_data;
2549 struct symbol *func;
2550 CORE_ADDR pc;
2551 gdb::optional<compiled_regex> preg;
2552 gdb::optional<compiled_regex> treg;
2553
2554 if (!get_frame_pc_if_available (frame, &pc))
2555 {
2556 if (!quiet)
2557 fprintf_filtered (stream,
2558 _("PC unavailable, cannot determine args.\n"));
2559 return;
2560 }
2561
2562 func = get_frame_function (frame);
2563 if (func == NULL)
2564 {
2565 if (!quiet)
2566 fprintf_filtered (stream, _("No symbol table info available.\n"));
2567 return;
2568 }
2569
2570 prepare_reg (regexp, &cb_data.preg);
2571 prepare_reg (t_regexp, &cb_data.treg);
2572 cb_data.frame_id = get_frame_id (frame);
2573 cb_data.num_tabs = 0;
2574 cb_data.stream = stream;
2575 cb_data.values_printed = 0;
2576
2577 iterate_over_block_arg_vars (SYMBOL_BLOCK_VALUE (func),
2578 do_print_variable_and_value, &cb_data);
2579
2580 /* do_print_variable_and_value invalidates FRAME. */
2581 frame = NULL;
2582
2583 if (!cb_data.values_printed && !quiet)
2584 {
2585 if (regexp == NULL && t_regexp == NULL)
2586 fprintf_filtered (stream, _("No arguments.\n"));
2587 else
2588 fprintf_filtered (stream, _("No matching arguments.\n"));
2589 }
2590 }
2591
2592 /* Implement the 'info args' command. */
2593
2594 void
2595 info_args_command (const char *args, int from_tty)
2596 {
2597 info_print_options opts;
2598 auto grp = make_info_print_options_def_group (&opts);
2599 gdb::option::process_options
2600 (&args, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND, grp);
2601 if (args != nullptr && *args == '\0')
2602 args = nullptr;
2603
2604 print_frame_arg_vars (get_selected_frame (_("No frame selected.")),
2605 opts.quiet, args, opts.type_regexp, gdb_stdout);
2606 }
2607 \f
2608 /* Return the symbol-block in which the selected frame is executing.
2609 Can return zero under various legitimate circumstances.
2610
2611 If ADDR_IN_BLOCK is non-zero, set *ADDR_IN_BLOCK to the relevant
2612 code address within the block returned. We use this to decide
2613 which macros are in scope. */
2614
2615 const struct block *
2616 get_selected_block (CORE_ADDR *addr_in_block)
2617 {
2618 if (!has_stack_frames ())
2619 return 0;
2620
2621 return get_frame_block (get_selected_frame (NULL), addr_in_block);
2622 }
2623
2624 /* Find a frame a certain number of levels away from FRAME.
2625 LEVEL_OFFSET_PTR points to an int containing the number of levels.
2626 Positive means go to earlier frames (up); negative, the reverse.
2627 The int that contains the number of levels is counted toward
2628 zero as the frames for those levels are found.
2629 If the top or bottom frame is reached, that frame is returned,
2630 but the final value of *LEVEL_OFFSET_PTR is nonzero and indicates
2631 how much farther the original request asked to go. */
2632
2633 struct frame_info *
2634 find_relative_frame (struct frame_info *frame, int *level_offset_ptr)
2635 {
2636 /* Going up is simple: just call get_prev_frame enough times or
2637 until the initial frame is reached. */
2638 while (*level_offset_ptr > 0)
2639 {
2640 struct frame_info *prev = get_prev_frame (frame);
2641
2642 if (!prev)
2643 break;
2644 (*level_offset_ptr)--;
2645 frame = prev;
2646 }
2647
2648 /* Going down is just as simple. */
2649 while (*level_offset_ptr < 0)
2650 {
2651 struct frame_info *next = get_next_frame (frame);
2652
2653 if (!next)
2654 break;
2655 (*level_offset_ptr)++;
2656 frame = next;
2657 }
2658
2659 return frame;
2660 }
2661
2662 /* Select the frame up one or COUNT_EXP stack levels from the
2663 previously selected frame, and print it briefly. */
2664
2665 static void
2666 up_silently_base (const char *count_exp)
2667 {
2668 struct frame_info *frame;
2669 int count = 1;
2670
2671 if (count_exp)
2672 count = parse_and_eval_long (count_exp);
2673
2674 frame = find_relative_frame (get_selected_frame ("No stack."), &count);
2675 if (count != 0 && count_exp == NULL)
2676 error (_("Initial frame selected; you cannot go up."));
2677 select_frame (frame);
2678 }
2679
2680 static void
2681 up_silently_command (const char *count_exp, int from_tty)
2682 {
2683 up_silently_base (count_exp);
2684 }
2685
2686 static void
2687 up_command (const char *count_exp, int from_tty)
2688 {
2689 up_silently_base (count_exp);
2690 gdb::observers::user_selected_context_changed.notify (USER_SELECTED_FRAME);
2691 }
2692
2693 /* Select the frame down one or COUNT_EXP stack levels from the previously
2694 selected frame, and print it briefly. */
2695
2696 static void
2697 down_silently_base (const char *count_exp)
2698 {
2699 struct frame_info *frame;
2700 int count = -1;
2701
2702 if (count_exp)
2703 count = -parse_and_eval_long (count_exp);
2704
2705 frame = find_relative_frame (get_selected_frame ("No stack."), &count);
2706 if (count != 0 && count_exp == NULL)
2707 {
2708 /* We only do this if COUNT_EXP is not specified. That way
2709 "down" means to really go down (and let me know if that is
2710 impossible), but "down 9999" can be used to mean go all the
2711 way down without getting an error. */
2712
2713 error (_("Bottom (innermost) frame selected; you cannot go down."));
2714 }
2715
2716 select_frame (frame);
2717 }
2718
2719 static void
2720 down_silently_command (const char *count_exp, int from_tty)
2721 {
2722 down_silently_base (count_exp);
2723 }
2724
2725 static void
2726 down_command (const char *count_exp, int from_tty)
2727 {
2728 down_silently_base (count_exp);
2729 gdb::observers::user_selected_context_changed.notify (USER_SELECTED_FRAME);
2730 }
2731
2732 void
2733 return_command (const char *retval_exp, int from_tty)
2734 {
2735 /* Initialize it just to avoid a GCC false warning. */
2736 enum return_value_convention rv_conv = RETURN_VALUE_STRUCT_CONVENTION;
2737 struct frame_info *thisframe;
2738 struct gdbarch *gdbarch;
2739 struct symbol *thisfun;
2740 struct value *return_value = NULL;
2741 struct value *function = NULL;
2742 const char *query_prefix = "";
2743
2744 thisframe = get_selected_frame ("No selected frame.");
2745 thisfun = get_frame_function (thisframe);
2746 gdbarch = get_frame_arch (thisframe);
2747
2748 if (get_frame_type (get_current_frame ()) == INLINE_FRAME)
2749 error (_("Can not force return from an inlined function."));
2750
2751 /* Compute the return value. If the computation triggers an error,
2752 let it bail. If the return type can't be handled, set
2753 RETURN_VALUE to NULL, and QUERY_PREFIX to an informational
2754 message. */
2755 if (retval_exp)
2756 {
2757 expression_up retval_expr = parse_expression (retval_exp);
2758 struct type *return_type = NULL;
2759
2760 /* Compute the return value. Should the computation fail, this
2761 call throws an error. */
2762 return_value = evaluate_expression (retval_expr.get ());
2763
2764 /* Cast return value to the return type of the function. Should
2765 the cast fail, this call throws an error. */
2766 if (thisfun != NULL)
2767 return_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (thisfun));
2768 if (return_type == NULL)
2769 {
2770 if (retval_expr->first_opcode () != UNOP_CAST
2771 && retval_expr->first_opcode () != UNOP_CAST_TYPE)
2772 error (_("Return value type not available for selected "
2773 "stack frame.\n"
2774 "Please use an explicit cast of the value to return."));
2775 return_type = value_type (return_value);
2776 }
2777 return_type = check_typedef (return_type);
2778 return_value = value_cast (return_type, return_value);
2779
2780 /* Make sure the value is fully evaluated. It may live in the
2781 stack frame we're about to pop. */
2782 if (value_lazy (return_value))
2783 value_fetch_lazy (return_value);
2784
2785 if (thisfun != NULL)
2786 function = read_var_value (thisfun, NULL, thisframe);
2787
2788 rv_conv = RETURN_VALUE_REGISTER_CONVENTION;
2789 if (return_type->code () == TYPE_CODE_VOID)
2790 /* If the return-type is "void", don't try to find the
2791 return-value's location. However, do still evaluate the
2792 return expression so that, even when the expression result
2793 is discarded, side effects such as "return i++" still
2794 occur. */
2795 return_value = NULL;
2796 else if (thisfun != NULL)
2797 {
2798 rv_conv = struct_return_convention (gdbarch, function, return_type);
2799 if (rv_conv == RETURN_VALUE_STRUCT_CONVENTION
2800 || rv_conv == RETURN_VALUE_ABI_RETURNS_ADDRESS)
2801 {
2802 query_prefix = "The location at which to store the "
2803 "function's return value is unknown.\n"
2804 "If you continue, the return value "
2805 "that you specified will be ignored.\n";
2806 return_value = NULL;
2807 }
2808 }
2809 }
2810
2811 /* Does an interactive user really want to do this? Include
2812 information, such as how well GDB can handle the return value, in
2813 the query message. */
2814 if (from_tty)
2815 {
2816 int confirmed;
2817
2818 if (thisfun == NULL)
2819 confirmed = query (_("%sMake selected stack frame return now? "),
2820 query_prefix);
2821 else
2822 {
2823 if (TYPE_NO_RETURN (thisfun->type))
2824 warning (_("Function does not return normally to caller."));
2825 confirmed = query (_("%sMake %s return now? "), query_prefix,
2826 thisfun->print_name ());
2827 }
2828 if (!confirmed)
2829 error (_("Not confirmed"));
2830 }
2831
2832 /* Discard the selected frame and all frames inner-to it. */
2833 frame_pop (get_selected_frame (NULL));
2834
2835 /* Store RETURN_VALUE in the just-returned register set. */
2836 if (return_value != NULL)
2837 {
2838 struct type *return_type = value_type (return_value);
2839 struct gdbarch *cache_arch = get_current_regcache ()->arch ();
2840
2841 gdb_assert (rv_conv != RETURN_VALUE_STRUCT_CONVENTION
2842 && rv_conv != RETURN_VALUE_ABI_RETURNS_ADDRESS);
2843 gdbarch_return_value (cache_arch, function, return_type,
2844 get_current_regcache (), NULL /*read*/,
2845 value_contents (return_value) /*write*/);
2846 }
2847
2848 /* If we are at the end of a call dummy now, pop the dummy frame
2849 too. */
2850 if (get_frame_type (get_current_frame ()) == DUMMY_FRAME)
2851 frame_pop (get_current_frame ());
2852
2853 select_frame (get_current_frame ());
2854 /* If interactive, print the frame that is now current. */
2855 if (from_tty)
2856 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC, 1);
2857 }
2858
2859 /* Find the most inner frame in the current stack for a function called
2860 FUNCTION_NAME. If no matching frame is found return NULL. */
2861
2862 static struct frame_info *
2863 find_frame_for_function (const char *function_name)
2864 {
2865 /* Used to hold the lower and upper addresses for each of the
2866 SYMTAB_AND_LINEs found for functions matching FUNCTION_NAME. */
2867 struct function_bounds
2868 {
2869 CORE_ADDR low, high;
2870 };
2871 struct frame_info *frame;
2872 bool found = false;
2873 int level = 1;
2874
2875 gdb_assert (function_name != NULL);
2876
2877 frame = get_current_frame ();
2878 std::vector<symtab_and_line> sals
2879 = decode_line_with_current_source (function_name,
2880 DECODE_LINE_FUNFIRSTLINE);
2881 gdb::def_vector<function_bounds> func_bounds (sals.size ());
2882 for (size_t i = 0; i < sals.size (); i++)
2883 {
2884 if (sals[i].pspace != current_program_space)
2885 func_bounds[i].low = func_bounds[i].high = 0;
2886 else if (sals[i].pc == 0
2887 || find_pc_partial_function (sals[i].pc, NULL,
2888 &func_bounds[i].low,
2889 &func_bounds[i].high) == 0)
2890 func_bounds[i].low = func_bounds[i].high = 0;
2891 }
2892
2893 do
2894 {
2895 for (size_t i = 0; (i < sals.size () && !found); i++)
2896 found = (get_frame_pc (frame) >= func_bounds[i].low
2897 && get_frame_pc (frame) < func_bounds[i].high);
2898 if (!found)
2899 {
2900 level = 1;
2901 frame = find_relative_frame (frame, &level);
2902 }
2903 }
2904 while (!found && level == 0);
2905
2906 if (!found)
2907 frame = NULL;
2908
2909 return frame;
2910 }
2911
2912 /* Implements the dbx 'func' command. */
2913
2914 static void
2915 func_command (const char *arg, int from_tty)
2916 {
2917 if (arg == NULL)
2918 return;
2919
2920 struct frame_info *frame = find_frame_for_function (arg);
2921 if (frame == NULL)
2922 error (_("'%s' not within current stack frame."), arg);
2923 if (frame != get_selected_frame (NULL))
2924 {
2925 select_frame (frame);
2926 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC, 1);
2927 }
2928 }
2929
2930 /* The qcs command line flags for the "frame apply" commands. Keep
2931 this in sync with the "thread apply" commands. */
2932
2933 using qcs_flag_option_def
2934 = gdb::option::flag_option_def<qcs_flags>;
2935
2936 static const gdb::option::option_def fr_qcs_flags_option_defs[] = {
2937 qcs_flag_option_def {
2938 "q", [] (qcs_flags *opt) { return &opt->quiet; },
2939 N_("Disables printing the frame location information."),
2940 },
2941
2942 qcs_flag_option_def {
2943 "c", [] (qcs_flags *opt) { return &opt->cont; },
2944 N_("Print any error raised by COMMAND and continue."),
2945 },
2946
2947 qcs_flag_option_def {
2948 "s", [] (qcs_flags *opt) { return &opt->silent; },
2949 N_("Silently ignore any errors or empty output produced by COMMAND."),
2950 },
2951 };
2952
2953 /* Create an option_def_group array for all the "frame apply" options,
2954 with FLAGS and SET_BT_OPTS as context. */
2955
2956 static inline std::array<gdb::option::option_def_group, 2>
2957 make_frame_apply_options_def_group (qcs_flags *flags,
2958 set_backtrace_options *set_bt_opts)
2959 {
2960 return {{
2961 { {fr_qcs_flags_option_defs}, flags },
2962 { {set_backtrace_option_defs}, set_bt_opts },
2963 }};
2964 }
2965
2966 /* Apply a GDB command to all stack frames, or a set of identified frames,
2967 or innermost COUNT frames.
2968 With a negative COUNT, apply command on outermost -COUNT frames.
2969
2970 frame apply 3 info frame Apply 'info frame' to frames 0, 1, 2
2971 frame apply -3 info frame Apply 'info frame' to outermost 3 frames.
2972 frame apply all x/i $pc Apply 'x/i $pc' cmd to all frames.
2973 frame apply all -s p local_var_no_idea_in_which_frame
2974 If a frame has a local variable called
2975 local_var_no_idea_in_which_frame, print frame
2976 and value of local_var_no_idea_in_which_frame.
2977 frame apply all -s -q p local_var_no_idea_in_which_frame
2978 Same as before, but only print the variable value.
2979 frame apply level 2-5 0 4-7 -s p i = i + 1
2980 Adds 1 to the variable i in the specified frames.
2981 Note that i will be incremented twice in
2982 frames 4 and 5. */
2983
2984 /* Apply a GDB command to COUNT stack frames, starting at TRAILING.
2985 CMD starts with 0 or more qcs flags followed by the GDB command to apply.
2986 COUNT -1 means all frames starting at TRAILING. WHICH_COMMAND is used
2987 for error messages. */
2988
2989 static void
2990 frame_apply_command_count (const char *which_command,
2991 const char *cmd, int from_tty,
2992 struct frame_info *trailing, int count)
2993 {
2994 qcs_flags flags;
2995 set_backtrace_options set_bt_opts = user_set_backtrace_options;
2996
2997 auto group = make_frame_apply_options_def_group (&flags, &set_bt_opts);
2998 gdb::option::process_options
2999 (&cmd, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND, group);
3000
3001 validate_flags_qcs (which_command, &flags);
3002
3003 if (cmd == NULL || *cmd == '\0')
3004 error (_("Please specify a command to apply on the selected frames"));
3005
3006 /* The below will restore the current inferior/thread/frame.
3007 Usually, only the frame is effectively to be restored.
3008 But in case CMD switches of inferior/thread, better restore
3009 these also. */
3010 scoped_restore_current_thread restore_thread;
3011
3012 /* These options are handled quite deep in the unwind machinery, so
3013 we get to pass them down by swapping globals. */
3014 scoped_restore restore_set_backtrace_options
3015 = make_scoped_restore (&user_set_backtrace_options, set_bt_opts);
3016
3017 for (frame_info *fi = trailing; fi && count--; fi = get_prev_frame (fi))
3018 {
3019 QUIT;
3020
3021 select_frame (fi);
3022 try
3023 {
3024 std::string cmd_result;
3025 {
3026 /* In case CMD switches of inferior/thread/frame, the below
3027 restores the inferior/thread/frame. FI can then be
3028 set to the selected frame. */
3029 scoped_restore_current_thread restore_fi_current_frame;
3030
3031 cmd_result = execute_command_to_string
3032 (cmd, from_tty, gdb_stdout->term_out ());
3033 }
3034 fi = get_selected_frame (_("frame apply "
3035 "unable to get selected frame."));
3036 if (!flags.silent || cmd_result.length () > 0)
3037 {
3038 if (!flags.quiet)
3039 print_stack_frame (fi, 1, LOCATION, 0);
3040 printf_filtered ("%s", cmd_result.c_str ());
3041 }
3042 }
3043 catch (const gdb_exception_error &ex)
3044 {
3045 fi = get_selected_frame (_("frame apply "
3046 "unable to get selected frame."));
3047 if (!flags.silent)
3048 {
3049 if (!flags.quiet)
3050 print_stack_frame (fi, 1, LOCATION, 0);
3051 if (flags.cont)
3052 printf_filtered ("%s\n", ex.what ());
3053 else
3054 throw;
3055 }
3056 }
3057 }
3058 }
3059
3060 /* Completer for the "frame apply ..." commands. */
3061
3062 static void
3063 frame_apply_completer (completion_tracker &tracker, const char *text)
3064 {
3065 const auto group = make_frame_apply_options_def_group (nullptr, nullptr);
3066 if (gdb::option::complete_options
3067 (tracker, &text, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND, group))
3068 return;
3069
3070 complete_nested_command_line (tracker, text);
3071 }
3072
3073 /* Completer for the "frame apply" commands. */
3074
3075 static void
3076 frame_apply_level_cmd_completer (struct cmd_list_element *ignore,
3077 completion_tracker &tracker,
3078 const char *text, const char */*word*/)
3079 {
3080 /* Do this explicitly because there's an early return below. */
3081 tracker.set_use_custom_word_point (true);
3082
3083 number_or_range_parser levels (text);
3084
3085 /* Skip the LEVEL list to find the options and command args. */
3086 try
3087 {
3088 while (!levels.finished ())
3089 {
3090 /* Call for effect. */
3091 levels.get_number ();
3092
3093 if (levels.in_range ())
3094 levels.skip_range ();
3095 }
3096 }
3097 catch (const gdb_exception_error &ex)
3098 {
3099 /* get_number throws if it parses a negative number, for
3100 example. But a seemingly negative number may be the start of
3101 an option instead. */
3102 }
3103
3104 const char *cmd = levels.cur_tok ();
3105
3106 if (cmd == text)
3107 {
3108 /* No level list yet. */
3109 return;
3110 }
3111
3112 /* Check if we're past a valid LEVEL already. */
3113 if (levels.finished ()
3114 && cmd > text && !isspace (cmd[-1]))
3115 return;
3116
3117 /* We're past LEVELs, advance word point. */
3118 tracker.advance_custom_word_point_by (cmd - text);
3119 text = cmd;
3120
3121 frame_apply_completer (tracker, text);
3122 }
3123
3124 /* Completer for the "frame apply all" command. */
3125
3126 void
3127 frame_apply_all_cmd_completer (struct cmd_list_element *ignore,
3128 completion_tracker &tracker,
3129 const char *text, const char */*word*/)
3130 {
3131 frame_apply_completer (tracker, text);
3132 }
3133
3134 /* Completer for the "frame apply COUNT" command. */
3135
3136 static void
3137 frame_apply_cmd_completer (struct cmd_list_element *ignore,
3138 completion_tracker &tracker,
3139 const char *text, const char */*word*/)
3140 {
3141 const char *cmd = text;
3142
3143 int count = get_number_trailer (&cmd, 0);
3144 if (count == 0)
3145 return;
3146
3147 /* Check if we're past a valid COUNT already. */
3148 if (cmd > text && !isspace (cmd[-1]))
3149 return;
3150
3151 /* We're past COUNT, advance word point. */
3152 tracker.advance_custom_word_point_by (cmd - text);
3153 text = cmd;
3154
3155 frame_apply_completer (tracker, text);
3156 }
3157
3158 /* Implementation of the "frame apply level" command. */
3159
3160 static void
3161 frame_apply_level_command (const char *cmd, int from_tty)
3162 {
3163 if (!target_has_stack ())
3164 error (_("No stack."));
3165
3166 bool level_found = false;
3167 const char *levels_str = cmd;
3168 number_or_range_parser levels (levels_str);
3169
3170 /* Skip the LEVEL list to find the flags and command args. */
3171 while (!levels.finished ())
3172 {
3173 /* Call for effect. */
3174 levels.get_number ();
3175
3176 level_found = true;
3177 if (levels.in_range ())
3178 levels.skip_range ();
3179 }
3180
3181 if (!level_found)
3182 error (_("Missing or invalid LEVEL... argument"));
3183
3184 cmd = levels.cur_tok ();
3185
3186 /* Redo the LEVELS parsing, but applying COMMAND. */
3187 levels.init (levels_str);
3188 while (!levels.finished ())
3189 {
3190 const int level_beg = levels.get_number ();
3191 int n_frames;
3192
3193 if (levels.in_range ())
3194 {
3195 n_frames = levels.end_value () - level_beg + 1;
3196 levels.skip_range ();
3197 }
3198 else
3199 n_frames = 1;
3200
3201 frame_apply_command_count ("frame apply level", cmd, from_tty,
3202 leading_innermost_frame (level_beg), n_frames);
3203 }
3204 }
3205
3206 /* Implementation of the "frame apply all" command. */
3207
3208 static void
3209 frame_apply_all_command (const char *cmd, int from_tty)
3210 {
3211 if (!target_has_stack ())
3212 error (_("No stack."));
3213
3214 frame_apply_command_count ("frame apply all", cmd, from_tty,
3215 get_current_frame (), INT_MAX);
3216 }
3217
3218 /* Implementation of the "frame apply" command. */
3219
3220 static void
3221 frame_apply_command (const char* cmd, int from_tty)
3222 {
3223 int count;
3224 struct frame_info *trailing;
3225
3226 if (!target_has_stack ())
3227 error (_("No stack."));
3228
3229 if (cmd == NULL)
3230 error (_("Missing COUNT argument."));
3231 count = get_number_trailer (&cmd, 0);
3232 if (count == 0)
3233 error (_("Invalid COUNT argument."));
3234
3235 if (count < 0)
3236 {
3237 trailing = trailing_outermost_frame (-count);
3238 count = -1;
3239 }
3240 else
3241 trailing = get_current_frame ();
3242
3243 frame_apply_command_count ("frame apply", cmd, from_tty,
3244 trailing, count);
3245 }
3246
3247 /* Implementation of the "faas" command. */
3248
3249 static void
3250 faas_command (const char *cmd, int from_tty)
3251 {
3252 if (cmd == NULL || *cmd == '\0')
3253 error (_("Please specify a command to apply on all frames"));
3254 std::string expanded = std::string ("frame apply all -s ") + cmd;
3255 execute_command (expanded.c_str (), from_tty);
3256 }
3257
3258
3259 /* Find inner-mode frame with frame address ADDRESS. Return NULL if no
3260 matching frame can be found. */
3261
3262 static struct frame_info *
3263 find_frame_for_address (CORE_ADDR address)
3264 {
3265 struct frame_id id;
3266 struct frame_info *fid;
3267
3268 id = frame_id_build_wild (address);
3269
3270 /* If (s)he specifies the frame with an address, he deserves
3271 what (s)he gets. Still, give the highest one that matches.
3272 (NOTE: cagney/2004-10-29: Why highest, or outer-most, I don't
3273 know). */
3274 for (fid = get_current_frame ();
3275 fid != NULL;
3276 fid = get_prev_frame (fid))
3277 {
3278 if (frame_id_eq (id, get_frame_id (fid)))
3279 {
3280 struct frame_info *prev_frame;
3281
3282 while (1)
3283 {
3284 prev_frame = get_prev_frame (fid);
3285 if (!prev_frame
3286 || !frame_id_eq (id, get_frame_id (prev_frame)))
3287 break;
3288 fid = prev_frame;
3289 }
3290 return fid;
3291 }
3292 }
3293 return NULL;
3294 }
3295
3296 \f
3297
3298 /* Commands with a prefix of `frame apply'. */
3299 static struct cmd_list_element *frame_apply_cmd_list = NULL;
3300
3301 /* Commands with a prefix of `frame'. */
3302 static struct cmd_list_element *frame_cmd_list = NULL;
3303
3304 /* Commands with a prefix of `select frame'. */
3305 static struct cmd_list_element *select_frame_cmd_list = NULL;
3306
3307 /* Commands with a prefix of `info frame'. */
3308 static struct cmd_list_element *info_frame_cmd_list = NULL;
3309
3310 void _initialize_stack ();
3311 void
3312 _initialize_stack ()
3313 {
3314 struct cmd_list_element *cmd;
3315
3316 add_com ("return", class_stack, return_command, _("\
3317 Make selected stack frame return to its caller.\n\
3318 Control remains in the debugger, but when you continue\n\
3319 execution will resume in the frame above the one now selected.\n\
3320 If an argument is given, it is an expression for the value to return."));
3321
3322 add_com ("up", class_stack, up_command, _("\
3323 Select and print stack frame that called this one.\n\
3324 An argument says how many frames up to go."));
3325 add_com ("up-silently", class_support, up_silently_command, _("\
3326 Same as the `up' command, but does not print anything.\n\
3327 This is useful in command scripts."));
3328
3329 cmd_list_element *down_cmd
3330 = add_com ("down", class_stack, down_command, _("\
3331 Select and print stack frame called by this one.\n\
3332 An argument says how many frames down to go."));
3333 add_com_alias ("do", down_cmd, class_stack, 1);
3334 add_com_alias ("dow", down_cmd, class_stack, 1);
3335 add_com ("down-silently", class_support, down_silently_command, _("\
3336 Same as the `down' command, but does not print anything.\n\
3337 This is useful in command scripts."));
3338
3339 cmd_list_element *frame_cmd_el
3340 = add_prefix_cmd ("frame", class_stack,
3341 &frame_cmd.base_command, _("\
3342 Select and print a stack frame.\n\
3343 With no argument, print the selected stack frame. (See also \"info frame\").\n\
3344 A single numerical argument specifies the frame to select."),
3345 &frame_cmd_list, 1, &cmdlist);
3346 add_com_alias ("f", frame_cmd_el, class_stack, 1);
3347
3348 #define FRAME_APPLY_OPTION_HELP "\
3349 Prints the frame location information followed by COMMAND output.\n\
3350 \n\
3351 By default, an error raised during the execution of COMMAND\n\
3352 aborts \"frame apply\".\n\
3353 \n\
3354 Options:\n\
3355 %OPTIONS%"
3356
3357 const auto frame_apply_opts
3358 = make_frame_apply_options_def_group (nullptr, nullptr);
3359
3360 static std::string frame_apply_cmd_help = gdb::option::build_help (_("\
3361 Apply a command to a number of frames.\n\
3362 Usage: frame apply COUNT [OPTION]... COMMAND\n\
3363 With a negative COUNT argument, applies the command on outermost -COUNT frames.\n"
3364 FRAME_APPLY_OPTION_HELP),
3365 frame_apply_opts);
3366
3367 cmd = add_prefix_cmd ("apply", class_stack, frame_apply_command,
3368 frame_apply_cmd_help.c_str (),
3369 &frame_apply_cmd_list, 1,
3370 &frame_cmd_list);
3371 set_cmd_completer_handle_brkchars (cmd, frame_apply_cmd_completer);
3372
3373 static std::string frame_apply_all_cmd_help = gdb::option::build_help (_("\
3374 Apply a command to all frames.\n\
3375 \n\
3376 Usage: frame apply all [OPTION]... COMMAND\n"
3377 FRAME_APPLY_OPTION_HELP),
3378 frame_apply_opts);
3379
3380 cmd = add_cmd ("all", class_stack, frame_apply_all_command,
3381 frame_apply_all_cmd_help.c_str (),
3382 &frame_apply_cmd_list);
3383 set_cmd_completer_handle_brkchars (cmd, frame_apply_all_cmd_completer);
3384
3385 static std::string frame_apply_level_cmd_help = gdb::option::build_help (_("\
3386 Apply a command to a list of frames.\n\
3387 \n\
3388 Usage: frame apply level LEVEL... [OPTION]... COMMAND\n\
3389 LEVEL is a space-separated list of levels of frames to apply COMMAND on.\n"
3390 FRAME_APPLY_OPTION_HELP),
3391 frame_apply_opts);
3392
3393 cmd = add_cmd ("level", class_stack, frame_apply_level_command,
3394 frame_apply_level_cmd_help.c_str (),
3395 &frame_apply_cmd_list);
3396 set_cmd_completer_handle_brkchars (cmd, frame_apply_level_cmd_completer);
3397
3398 cmd = add_com ("faas", class_stack, faas_command, _("\
3399 Apply a command to all frames (ignoring errors and empty output).\n\
3400 Usage: faas [OPTION]... COMMAND\n\
3401 shortcut for 'frame apply all -s [OPTION]... COMMAND'\n\
3402 See \"help frame apply all\" for available options."));
3403 set_cmd_completer_handle_brkchars (cmd, frame_apply_all_cmd_completer);
3404
3405 add_cmd ("address", class_stack, &frame_cmd.address,
3406 _("\
3407 Select and print a stack frame by stack address.\n\
3408 \n\
3409 Usage: frame address STACK-ADDRESS"),
3410 &frame_cmd_list);
3411
3412 add_cmd ("view", class_stack, &frame_cmd.view,
3413 _("\
3414 View a stack frame that might be outside the current backtrace.\n\
3415 \n\
3416 Usage: frame view STACK-ADDRESS\n\
3417 frame view STACK-ADDRESS PC-ADDRESS"),
3418 &frame_cmd_list);
3419
3420 cmd = add_cmd ("function", class_stack, &frame_cmd.function,
3421 _("\
3422 Select and print a stack frame by function name.\n\
3423 \n\
3424 Usage: frame function NAME\n\
3425 \n\
3426 The innermost frame that visited function NAME is selected."),
3427 &frame_cmd_list);
3428 set_cmd_completer (cmd, frame_selection_by_function_completer);
3429
3430
3431 add_cmd ("level", class_stack, &frame_cmd.level,
3432 _("\
3433 Select and print a stack frame by level.\n\
3434 \n\
3435 Usage: frame level LEVEL"),
3436 &frame_cmd_list);
3437
3438 cmd = add_prefix_cmd_suppress_notification ("select-frame", class_stack,
3439 &select_frame_cmd.base_command, _("\
3440 Select a stack frame without printing anything.\n\
3441 A single numerical argument specifies the frame to select."),
3442 &select_frame_cmd_list, 1, &cmdlist,
3443 &cli_suppress_notification.user_selected_context);
3444
3445 add_cmd_suppress_notification ("address", class_stack,
3446 &select_frame_cmd.address, _("\
3447 Select a stack frame by stack address.\n\
3448 \n\
3449 Usage: select-frame address STACK-ADDRESS"),
3450 &select_frame_cmd_list,
3451 &cli_suppress_notification.user_selected_context);
3452
3453
3454 add_cmd_suppress_notification ("view", class_stack,
3455 &select_frame_cmd.view, _("\
3456 Select a stack frame that might be outside the current backtrace.\n\
3457 \n\
3458 Usage: select-frame view STACK-ADDRESS\n\
3459 select-frame view STACK-ADDRESS PC-ADDRESS"),
3460 &select_frame_cmd_list,
3461 &cli_suppress_notification.user_selected_context);
3462
3463 cmd = add_cmd_suppress_notification ("function", class_stack,
3464 &select_frame_cmd.function, _("\
3465 Select a stack frame by function name.\n\
3466 \n\
3467 Usage: select-frame function NAME"),
3468 &select_frame_cmd_list,
3469 &cli_suppress_notification.user_selected_context);
3470 set_cmd_completer (cmd, frame_selection_by_function_completer);
3471
3472 add_cmd_suppress_notification ("level", class_stack,
3473 &select_frame_cmd.level, _("\
3474 Select a stack frame by level.\n\
3475 \n\
3476 Usage: select-frame level LEVEL"),
3477 &select_frame_cmd_list,
3478 &cli_suppress_notification.user_selected_context);
3479
3480 const auto backtrace_opts
3481 = make_backtrace_options_def_group (nullptr, nullptr, nullptr);
3482
3483 static std::string backtrace_help
3484 = gdb::option::build_help (_("\
3485 Print backtrace of all stack frames, or innermost COUNT frames.\n\
3486 Usage: backtrace [OPTION]... [QUALIFIER]... [COUNT | -COUNT]\n\
3487 \n\
3488 Options:\n\
3489 %OPTIONS%\n\
3490 \n\
3491 For backward compatibility, the following qualifiers are supported:\n\
3492 \n\
3493 full - same as -full option.\n\
3494 no-filters - same as -no-filters option.\n\
3495 hide - same as -hide.\n\
3496 \n\
3497 With a negative COUNT, print outermost -COUNT frames."),
3498 backtrace_opts);
3499
3500 cmd_list_element *backtrace_cmd
3501 = add_com ("backtrace", class_stack, backtrace_command,
3502 backtrace_help.c_str ());
3503 set_cmd_completer_handle_brkchars (backtrace_cmd, backtrace_command_completer);
3504
3505 add_com_alias ("bt", backtrace_cmd, class_stack, 0);
3506
3507 add_com_alias ("where", backtrace_cmd, class_stack, 0);
3508 cmd_list_element *info_stack_cmd
3509 = add_info ("stack", backtrace_command,
3510 _("Backtrace of the stack, or innermost COUNT frames."));
3511 add_info_alias ("s", info_stack_cmd, 1);
3512
3513 cmd_list_element *info_frame_cmd_el
3514 = add_prefix_cmd ("frame", class_info, &info_frame_cmd.base_command,
3515 _("All about the selected stack frame.\n\
3516 With no arguments, displays information about the currently selected stack\n\
3517 frame. Alternatively a frame specification may be provided (See \"frame\")\n\
3518 the information is then printed about the specified frame."),
3519 &info_frame_cmd_list, 1, &infolist);
3520 add_info_alias ("f", info_frame_cmd_el, 1);
3521
3522 add_cmd ("address", class_stack, &info_frame_cmd.address,
3523 _("\
3524 Print information about a stack frame selected by stack address.\n\
3525 \n\
3526 Usage: info frame address STACK-ADDRESS"),
3527 &info_frame_cmd_list);
3528
3529 add_cmd ("view", class_stack, &info_frame_cmd.view,
3530 _("\
3531 Print information about a stack frame outside the current backtrace.\n\
3532 \n\
3533 Usage: info frame view STACK-ADDRESS\n\
3534 info frame view STACK-ADDRESS PC-ADDRESS"),
3535 &info_frame_cmd_list);
3536
3537 cmd = add_cmd ("function", class_stack, &info_frame_cmd.function,
3538 _("\
3539 Print information about a stack frame selected by function name.\n\
3540 \n\
3541 Usage: info frame function NAME"),
3542 &info_frame_cmd_list);
3543 set_cmd_completer (cmd, frame_selection_by_function_completer);
3544
3545 add_cmd ("level", class_stack, &info_frame_cmd.level,
3546 _("\
3547 Print information about a stack frame selected by level.\n\
3548 \n\
3549 Usage: info frame level LEVEL"),
3550 &info_frame_cmd_list);
3551
3552 cmd = add_info ("locals", info_locals_command,
3553 info_print_args_help (_("\
3554 All local variables of current stack frame or those matching REGEXPs.\n\
3555 Usage: info locals [-q] [-t TYPEREGEXP] [NAMEREGEXP]\n\
3556 Prints the local variables of the current stack frame.\n"),
3557 _("local variables"),
3558 false));
3559 set_cmd_completer_handle_brkchars (cmd, info_print_command_completer);
3560 cmd = add_info ("args", info_args_command,
3561 info_print_args_help (_("\
3562 All argument variables of current stack frame or those matching REGEXPs.\n\
3563 Usage: info args [-q] [-t TYPEREGEXP] [NAMEREGEXP]\n\
3564 Prints the argument variables of the current stack frame.\n"),
3565 _("argument variables"),
3566 false));
3567 set_cmd_completer_handle_brkchars (cmd, info_print_command_completer);
3568
3569 if (dbx_commands)
3570 add_com ("func", class_stack, func_command, _("\
3571 Select the stack frame that contains NAME.\n\
3572 Usage: func NAME"));
3573
3574 /* Install "set print raw frame-arguments", a deprecated spelling of
3575 "set print raw-frame-arguments". */
3576 set_show_commands set_show_frame_args
3577 = add_setshow_boolean_cmd
3578 ("frame-arguments", no_class,
3579 &user_frame_print_options.print_raw_frame_arguments,
3580 _("\
3581 Set whether to print frame arguments in raw form."), _("\
3582 Show whether to print frame arguments in raw form."), _("\
3583 If set, frame arguments are printed in raw form, bypassing any\n\
3584 pretty-printers for that value."),
3585 NULL, NULL,
3586 &setprintrawlist, &showprintrawlist);
3587 deprecate_cmd (set_show_frame_args.set, "set print raw-frame-arguments");
3588
3589 add_setshow_auto_boolean_cmd ("disassemble-next-line", class_stack,
3590 &disassemble_next_line, _("\
3591 Set whether to disassemble next source line or insn when execution stops."),
3592 _("\
3593 Show whether to disassemble next source line or insn when execution stops."),
3594 _("\
3595 If ON, GDB will display disassembly of the next source line, in addition\n\
3596 to displaying the source line itself. If the next source line cannot\n\
3597 be displayed (e.g., source is unavailable or there's no line info), GDB\n\
3598 will display disassembly of next instruction instead of showing the\n\
3599 source line.\n\
3600 If AUTO, display disassembly of next instruction only if the source line\n\
3601 cannot be displayed.\n\
3602 If OFF (which is the default), never display the disassembly of the next\n\
3603 source line."),
3604 NULL,
3605 show_disassemble_next_line,
3606 &setlist, &showlist);
3607 disassemble_next_line = AUTO_BOOLEAN_FALSE;
3608
3609 gdb::option::add_setshow_cmds_for_options
3610 (class_stack, &user_frame_print_options,
3611 frame_print_option_defs, &setprintlist, &showprintlist);
3612 }