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