1 /* Print and select stack frames for GDB, the GNU debugger.
3 Copyright (C) 1986-2019 Free Software Foundation, Inc.
5 This file is part of GDB.
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.
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.
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/>. */
24 #include "expression.h"
31 #include "breakpoint.h"
38 #include "dictionary.h"
39 #include "reggroups.h"
43 #include "gdbthread.h"
44 #include "cp-support.h"
46 #include "inline-frame.h"
48 #include "cli/cli-utils.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"
59 /* The possible choices of "set print frame-arguments", and the value
62 const char print_frame_arguments_all
[] = "all";
63 const char print_frame_arguments_scalars
[] = "scalars";
64 const char print_frame_arguments_none
[] = "none";
65 const char print_frame_arguments_presence
[] = "presence";
67 static const char *const print_frame_arguments_choices
[] =
69 print_frame_arguments_all
,
70 print_frame_arguments_scalars
,
71 print_frame_arguments_none
,
72 print_frame_arguments_presence
,
76 /* The possible choices of "set print frame-info", and the value
79 const char print_frame_info_auto
[] = "auto";
80 const char print_frame_info_source_line
[] = "source-line";
81 const char print_frame_info_location
[] = "location";
82 const char print_frame_info_source_and_location
[] = "source-and-location";
83 const char print_frame_info_location_and_address
[] = "location-and-address";
84 const char print_frame_info_short_location
[] = "short-location";
86 static const char *const print_frame_info_choices
[] =
88 print_frame_info_auto
,
89 print_frame_info_source_line
,
90 print_frame_info_location
,
91 print_frame_info_source_and_location
,
92 print_frame_info_location_and_address
,
93 print_frame_info_short_location
,
97 /* print_frame_info_print_what[i] maps a choice to the corresponding
99 static const gdb::optional
<enum print_what
> print_frame_info_print_what
[] =
100 {{}, /* Empty value for "auto". */
101 SRC_LINE
, LOCATION
, SRC_AND_LOC
, LOC_AND_ADDRESS
, SHORT_LOCATION
};
103 /* The possible choices of "set print entry-values", and the value
106 const char print_entry_values_no
[] = "no";
107 const char print_entry_values_only
[] = "only";
108 const char print_entry_values_preferred
[] = "preferred";
109 const char print_entry_values_if_needed
[] = "if-needed";
110 const char print_entry_values_both
[] = "both";
111 const char print_entry_values_compact
[] = "compact";
112 const char print_entry_values_default
[] = "default";
113 static const char *const print_entry_values_choices
[] =
115 print_entry_values_no
,
116 print_entry_values_only
,
117 print_entry_values_preferred
,
118 print_entry_values_if_needed
,
119 print_entry_values_both
,
120 print_entry_values_compact
,
121 print_entry_values_default
,
126 frame_print_options user_frame_print_options
;
128 /* Option definitions for some frame-related "set print ..."
131 using boolean_option_def
132 = gdb::option::boolean_option_def
<frame_print_options
>;
133 using enum_option_def
134 = gdb::option::enum_option_def
<frame_print_options
>;
136 static const gdb::option::option_def frame_print_option_defs
[] = {
140 print_entry_values_choices
,
141 [] (frame_print_options
*opt
) { return &opt
->print_entry_values
; },
142 NULL
, /* show_cmd_cb */
143 N_("Set printing of function arguments at function entry."),
144 N_("Show printing of function arguments at function entry."),
145 N_("GDB can sometimes determine the values of function arguments at entry,\n\
146 in addition to their current values. This option tells GDB whether\n\
147 to print the current value, the value at entry (marked as val@entry),\n\
148 or both. Note that one or both of these values may be <optimized out>."),
153 print_frame_arguments_choices
,
154 [] (frame_print_options
*opt
) { return &opt
->print_frame_arguments
; },
155 NULL
, /* show_cmd_cb */
156 N_("Set printing of non-scalar frame arguments."),
157 N_("Show printing of non-scalar frame arguments."),
162 "raw-frame-arguments",
163 [] (frame_print_options
*opt
) { return &opt
->print_raw_frame_arguments
; },
164 NULL
, /* show_cmd_cb */
165 N_("Set whether to print frame arguments in raw form."),
166 N_("Show whether to print frame arguments in raw form."),
167 N_("If set, frame arguments are printed in raw form, bypassing any\n\
168 pretty-printers for that value.")
173 print_frame_info_choices
,
174 [] (frame_print_options
*opt
) { return &opt
->print_frame_info
; },
175 NULL
, /* show_cmd_cb */
176 N_("Set printing of frame information."),
177 N_("Show printing of frame information."),
183 /* Options for the "backtrace" command. */
185 struct backtrace_cmd_options
188 bool no_filters
= false;
192 using bt_flag_option_def
193 = gdb::option::flag_option_def
<backtrace_cmd_options
>;
195 static const gdb::option::option_def backtrace_command_option_defs
[] = {
198 [] (backtrace_cmd_options
*opt
) { return &opt
->full
; },
199 N_("Print values of local variables.")
204 [] (backtrace_cmd_options
*opt
) { return &opt
->no_filters
; },
205 N_("Prohibit frame filters from executing on a backtrace."),
210 [] (backtrace_cmd_options
*opt
) { return &opt
->hide
; },
211 N_("Causes Python frame filter elided frames to not be printed."),
215 /* Prototypes for local functions. */
217 static void print_frame_local_vars (struct frame_info
*frame
,
219 const char *regexp
, const char *t_regexp
,
220 int num_tabs
, struct ui_file
*stream
);
222 static void print_frame (const frame_print_options
&opts
,
223 frame_info
*frame
, int print_level
,
224 enum print_what print_what
, int print_args
,
225 struct symtab_and_line sal
);
227 static struct frame_info
*find_frame_for_function (const char *);
228 static struct frame_info
*find_frame_for_address (CORE_ADDR
);
230 /* Zero means do things normally; we are interacting directly with the
231 user. One means print the full filename and linenumber when a
232 frame is printed, and do so in a format emacs18/emacs19.22 can
233 parse. Two means print similar annotations, but in many more
234 cases and in a slightly different syntax. */
236 int annotation_level
= 0;
238 /* Class used to manage tracking the last symtab we displayed. */
240 class last_displayed_symtab_info_type
243 /* True if the cached information is valid. */
244 bool is_valid () const
247 /* Return the cached program_space. If the cache is invalid nullptr is
249 struct program_space
*pspace () const
252 /* Return the cached CORE_ADDR address. If the cache is invalid 0 is
254 CORE_ADDR
address () const
255 { return m_address
; }
257 /* Return the cached symtab. If the cache is invalid nullptr is
259 struct symtab
*symtab () const
262 /* Return the cached line number. If the cache is invalid 0 is
267 /* Invalidate the cache, reset all the members to their default value. */
277 /* Store a new set of values in the cache. */
278 void set (struct program_space
*pspace
, CORE_ADDR address
,
279 struct symtab
*symtab
, int line
)
281 gdb_assert (pspace
!= nullptr);
291 /* True when the cache is valid. */
292 bool m_valid
= false;
294 /* The last program space displayed. */
295 struct program_space
*m_pspace
= nullptr;
297 /* The last address displayed. */
298 CORE_ADDR m_address
= 0;
300 /* The last symtab displayed. */
301 struct symtab
*m_symtab
= nullptr;
303 /* The last line number displayed. */
307 /* An actual instance of the cache, holds information about the last symtab
309 static last_displayed_symtab_info_type last_displayed_symtab_info
;
316 frame_show_address (struct frame_info
*frame
,
317 struct symtab_and_line sal
)
319 /* If there is a line number, but no PC, then there is no location
320 information associated with this sal. The only way that should
321 happen is for the call sites of inlined functions (SAL comes from
322 find_frame_sal). Otherwise, we would have some PC range if the
323 SAL came from a line table. */
324 if (sal
.line
!= 0 && sal
.pc
== 0 && sal
.end
== 0)
326 if (get_next_frame (frame
) == NULL
)
327 gdb_assert (inline_skipped_frames (inferior_thread ()) > 0);
329 gdb_assert (get_frame_type (get_next_frame (frame
)) == INLINE_FRAME
);
333 return get_frame_pc (frame
) != sal
.pc
;
339 print_stack_frame_to_uiout (struct ui_out
*uiout
, struct frame_info
*frame
,
340 int print_level
, enum print_what print_what
,
343 scoped_restore save_uiout
= make_scoped_restore (¤t_uiout
, uiout
);
345 print_stack_frame (frame
, print_level
, print_what
, set_current_sal
);
348 /* Show or print a stack frame FRAME briefly. The output is formatted
349 according to PRINT_LEVEL and PRINT_WHAT printing the frame's
350 relative level, function name, argument list, and file name and
351 line number. If the frame's PC is not at the beginning of the
352 source line, the actual PC is printed at the beginning. */
355 print_stack_frame (struct frame_info
*frame
, int print_level
,
356 enum print_what print_what
,
360 /* For mi, always print location and address. */
361 if (current_uiout
->is_mi_like_p ())
362 print_what
= LOC_AND_ADDRESS
;
366 print_frame_info (user_frame_print_options
,
367 frame
, print_level
, print_what
, 1 /* print_args */,
370 set_current_sal_from_frame (frame
);
372 catch (const gdb_exception_error
&e
)
377 /* Print nameless arguments of frame FRAME on STREAM, where START is
378 the offset of the first nameless argument, and NUM is the number of
379 nameless arguments to print. FIRST is nonzero if this is the first
380 argument (not just the first nameless argument). */
383 print_frame_nameless_args (struct frame_info
*frame
, long start
, int num
,
384 int first
, struct ui_file
*stream
)
386 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
387 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
392 for (i
= 0; i
< num
; i
++)
395 argsaddr
= get_frame_args_address (frame
);
398 arg_value
= read_memory_integer (argsaddr
+ start
,
399 sizeof (int), byte_order
);
401 fprintf_filtered (stream
, ", ");
402 fprintf_filtered (stream
, "%ld", arg_value
);
404 start
+= sizeof (int);
408 /* Print single argument of inferior function. ARG must be already
411 Errors are printed as if they would be the parameter value. Use zeroed ARG
412 iff it should not be printed according to user settings. */
415 print_frame_arg (const frame_print_options
&fp_opts
,
416 const struct frame_arg
*arg
)
418 struct ui_out
*uiout
= current_uiout
;
422 gdb_assert (!arg
->val
|| !arg
->error
);
423 gdb_assert (arg
->entry_kind
== print_entry_values_no
424 || arg
->entry_kind
== print_entry_values_only
425 || (!uiout
->is_mi_like_p ()
426 && arg
->entry_kind
== print_entry_values_compact
));
428 annotate_arg_emitter arg_emitter
;
429 ui_out_emit_tuple
tuple_emitter (uiout
, NULL
);
430 fprintf_symbol_filtered (&stb
, arg
->sym
->print_name (),
431 arg
->sym
->language (), DMGL_PARAMS
| DMGL_ANSI
);
432 if (arg
->entry_kind
== print_entry_values_compact
)
434 /* It is OK to provide invalid MI-like stream as with
435 PRINT_ENTRY_VALUE_COMPACT we never use MI. */
438 fprintf_symbol_filtered (&stb
, arg
->sym
->print_name (),
439 arg
->sym
->language (),
440 DMGL_PARAMS
| DMGL_ANSI
);
442 if (arg
->entry_kind
== print_entry_values_only
443 || arg
->entry_kind
== print_entry_values_compact
)
445 uiout
->field_stream ("name", stb
, variable_name_style
.style ());
446 annotate_arg_name_end ();
450 if (!arg
->val
&& !arg
->error
)
456 stb
.printf (_("<error reading variable: %s>"), arg
->error
.get ());
457 style
= metadata_style
.style ();
463 const struct language_defn
*language
;
464 struct value_print_options vp_opts
;
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. */
472 annotate_arg_value (value_type (arg
->val
));
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 ());
479 language
= current_language
;
481 get_no_prettyformat_print_options (&vp_opts
);
482 vp_opts
.deref_ref
= 1;
483 vp_opts
.raw
= fp_opts
.print_raw_frame_arguments
;
485 /* True in "summary" mode, false otherwise. */
487 = fp_opts
.print_frame_arguments
== print_frame_arguments_scalars
;
489 common_val_print (arg
->val
, &stb
, 2, &vp_opts
, language
);
491 catch (const gdb_exception_error
&except
)
493 stb
.printf (_("<error reading variable: %s>"),
495 style
= metadata_style
.style ();
500 uiout
->field_stream ("value", stb
, style
);
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
508 read_frame_local (struct symbol
*sym
, struct frame_info
*frame
,
509 struct frame_arg
*argp
)
517 argp
->val
= read_var_value (sym
, NULL
, frame
);
519 catch (const gdb_exception_error
&except
)
521 argp
->error
.reset (xstrdup (except
.what ()));
525 /* Read in inferior function parameter SYM at FRAME into ARGP. This
526 function never throws an exception. */
529 read_frame_arg (const frame_print_options
&fp_opts
,
530 symbol
*sym
, frame_info
*frame
,
531 struct frame_arg
*argp
, struct frame_arg
*entryargp
)
533 struct value
*val
= NULL
, *entryval
= NULL
;
534 char *val_error
= NULL
, *entryval_error
= NULL
;
537 if (fp_opts
.print_entry_values
!= print_entry_values_only
538 && fp_opts
.print_entry_values
!= print_entry_values_preferred
)
542 val
= read_var_value (sym
, NULL
, frame
);
544 catch (const gdb_exception_error
&except
)
546 val_error
= (char *) alloca (except
.message
->size () + 1);
547 strcpy (val_error
, except
.what ());
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
)))
559 const struct symbol_computed_ops
*ops
;
561 ops
= SYMBOL_COMPUTED_OPS (sym
);
562 entryval
= ops
->read_variable_at_entry (sym
, frame
);
564 catch (const gdb_exception_error
&except
)
566 if (except
.error
!= NO_ENTRY_VALUE_ERROR
)
568 entryval_error
= (char *) alloca (except
.message
->size () + 1);
569 strcpy (entryval_error
, except
.what ());
573 if (entryval
!= NULL
&& value_optimized_out (entryval
))
576 if (fp_opts
.print_entry_values
== print_entry_values_compact
577 || fp_opts
.print_entry_values
== print_entry_values_default
)
579 /* For MI do not try to use print_entry_values_compact for ARGP. */
581 if (val
&& entryval
&& !current_uiout
->is_mi_like_p ())
583 struct type
*type
= value_type (val
);
585 if (value_lazy (val
))
586 value_fetch_lazy (val
);
587 if (value_lazy (entryval
))
588 value_fetch_lazy (entryval
);
590 if (value_contents_eq (val
, 0, entryval
, 0, TYPE_LENGTH (type
)))
592 /* Initialize it just to avoid a GCC false warning. */
593 struct value
*val_deref
= NULL
, *entryval_deref
;
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. */
601 struct type
*type_deref
;
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
);
608 entryval_deref
= coerce_ref (entryval
);
609 if (value_lazy (entryval_deref
))
610 value_fetch_lazy (entryval_deref
);
612 /* If the reference addresses match but dereferenced
613 content does not match print them. */
615 && value_contents_eq (val_deref
, 0,
617 TYPE_LENGTH (type_deref
)))
620 catch (const gdb_exception_error
&except
)
622 /* If the dereferenced content could not be
623 fetched do not display anything. */
624 if (except
.error
== NO_ENTRY_VALUE_ERROR
)
626 else if (except
.message
!= NULL
)
629 = (char *) alloca (except
.message
->size () + 1);
630 strcpy (entryval_error
, except
.what ());
634 /* Value was not a reference; and its content matches. */
635 if (val
== val_deref
)
643 /* Try to remove possibly duplicate error message for ENTRYARGP even
646 if (val_error
&& entryval_error
647 && strcmp (val_error
, entryval_error
) == 0)
649 entryval_error
= NULL
;
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
658 if (entryval
== NULL
)
660 if (fp_opts
.print_entry_values
== print_entry_values_preferred
)
662 gdb_assert (val
== NULL
);
666 val
= read_var_value (sym
, NULL
, frame
);
668 catch (const gdb_exception_error
&except
)
670 val_error
= (char *) alloca (except
.message
->size () + 1);
671 strcpy (val_error
, except
.what ());
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
))))
679 entryval
= allocate_optimized_out_value (SYMBOL_TYPE (sym
));
680 entryval_error
= NULL
;
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
)
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
)
701 argp
->entry_kind
= print_entry_values_compact
;
702 gdb_assert (!current_uiout
->is_mi_like_p ());
705 argp
->entry_kind
= print_entry_values_no
;
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
;
713 entryargp
->entry_kind
= print_entry_values_only
;
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). */
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". */
726 print_frame_args (const frame_print_options
&fp_opts
,
727 struct symbol
*func
, struct frame_info
*frame
,
728 int num
, struct ui_file
*stream
)
730 struct ui_out
*uiout
= current_uiout
;
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
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. */
741 = fp_opts
.print_frame_arguments
!= print_frame_arguments_presence
;
742 /* True if we should print arguments, false otherwise. */
745 && fp_opts
.print_frame_arguments
!= print_frame_arguments_none
);
749 const struct block
*b
= SYMBOL_BLOCK_VALUE (func
);
750 struct block_iterator iter
;
753 ALL_BLOCK_SYMBOLS (b
, iter
, sym
)
755 struct frame_arg arg
, entryarg
;
759 /* Keep track of the highest stack argument offset seen, and
760 skip over any kinds of symbols we don't care about. */
762 if (!SYMBOL_IS_ARGUMENT (sym
))
772 switch (SYMBOL_CLASS (sym
))
777 long current_offset
= SYMBOL_VALUE (sym
);
778 int arg_size
= TYPE_LENGTH (SYMBOL_TYPE (sym
));
780 /* Compute address of next argument by adding the size of
781 this argument and rounding to an int boundary. */
783 ((current_offset
+ arg_size
+ sizeof (int) - 1)
784 & ~(sizeof (int) - 1));
786 /* If this is the highest offset seen yet, set
788 if (highest_offset
== -1
789 || (current_offset
> highest_offset
))
790 highest_offset
= current_offset
;
792 /* Add the number of ints we're about to print to
794 args_printed
+= (arg_size
+ sizeof (int) - 1) / sizeof (int);
797 /* We care about types of symbols, but don't need to
798 keep track of stack offsets in them. */
800 case LOC_REGPARM_ADDR
:
802 case LOC_OPTIMIZED_OUT
:
807 /* We have to look up the symbol because arguments can have
808 two entries (one a parameter, one a local) and the one we
809 want is the local, which lookup_symbol will find for us.
810 This includes gcc1 (not gcc2) on SPARC when passing a
811 small structure and gcc2 when the argument type is float
812 and it is passed as a double and converted to float by
813 the prologue (in the latter case the type of the LOC_ARG
814 symbol is double and the type of the LOC_LOCAL symbol is
816 /* But if the parameter name is null, don't try it. Null
817 parameter names occur on the RS/6000, for traceback
818 tables. FIXME, should we even print them? */
820 if (*sym
->linkage_name ())
824 nsym
= lookup_symbol_search_name (sym
->search_name (),
825 b
, VAR_DOMAIN
).symbol
;
826 gdb_assert (nsym
!= NULL
);
827 if (SYMBOL_CLASS (nsym
) == LOC_REGISTER
828 && !SYMBOL_IS_ARGUMENT (nsym
))
830 /* There is a LOC_ARG/LOC_REGISTER pair. This means
831 that it was passed on the stack and loaded into a
832 register, or passed in a register and stored in a
833 stack slot. GDB 3.x used the LOC_ARG; GDB
834 4.0-4.11 used the LOC_REGISTER.
836 Reasons for using the LOC_ARG:
838 (1) Because find_saved_registers may be slow for
841 (2) Because registers are often re-used and stack
842 slots rarely (never?) are. Therefore using
843 the stack slot is much less likely to print
846 Reasons why we might want to use the LOC_REGISTER:
848 (1) So that the backtrace prints the same value
849 as "print foo". I see no compelling reason
850 why this needs to be the case; having the
851 backtrace print the value which was passed
852 in, and "print foo" print the value as
853 modified within the called function, makes
856 Additional note: It might be nice if "info args"
857 displayed both values.
859 One more note: There is a case with SPARC
860 structure passing where we need to use the
861 LOC_REGISTER, but this is dealt with by creating
862 a single LOC_REGPARM in symbol reading. */
864 /* Leave sym (the LOC_ARG) alone. */
871 /* Print the current arg. */
874 uiout
->wrap_hint (" ");
879 arg
.entry_kind
= print_entry_values_no
;
881 entryarg
.entry_kind
= print_entry_values_no
;
884 read_frame_arg (fp_opts
, sym
, frame
, &arg
, &entryarg
);
886 if (arg
.entry_kind
!= print_entry_values_only
)
887 print_frame_arg (fp_opts
, &arg
);
889 if (entryarg
.entry_kind
!= print_entry_values_no
)
891 if (arg
.entry_kind
!= print_entry_values_only
)
894 uiout
->wrap_hint (" ");
897 print_frame_arg (fp_opts
, &entryarg
);
904 /* Don't print nameless args in situations where we don't know
905 enough about the stack to find them. */
910 if (highest_offset
== -1)
911 start
= gdbarch_frame_args_skip (get_frame_arch (frame
));
913 start
= highest_offset
;
915 if (!print_names
&& !first
&& num
> 0)
918 print_frame_nameless_args (frame
, start
, num
- args_printed
,
923 /* Set the current source and line to the location given by frame
924 FRAME, if possible. When CENTER is true, adjust so the relevant
925 line is in the center of the next 'list'. */
928 set_current_sal_from_frame (struct frame_info
*frame
)
930 symtab_and_line sal
= find_frame_sal (frame
);
931 if (sal
.symtab
!= NULL
)
932 set_current_source_symtab_and_line (sal
);
935 /* If ON, GDB will display disassembly of the next source line when
936 execution of the program being debugged stops.
937 If AUTO (which is the default), or there's no line info to determine
938 the source line of the next instruction, display disassembly of next
939 instruction instead. */
941 static enum auto_boolean disassemble_next_line
;
944 show_disassemble_next_line (struct ui_file
*file
, int from_tty
,
945 struct cmd_list_element
*c
,
948 fprintf_filtered (file
,
949 _("Debugger's willingness to use "
950 "disassemble-next-line is %s.\n"),
954 /* Use TRY_CATCH to catch the exception from the gdb_disassembly
955 because it will be broken by filter sometime. */
958 do_gdb_disassembly (struct gdbarch
*gdbarch
,
959 int how_many
, CORE_ADDR low
, CORE_ADDR high
)
964 gdb_disassembly (gdbarch
, current_uiout
,
965 DISASSEMBLY_RAW_INSN
, how_many
,
968 catch (const gdb_exception_error
&exception
)
970 /* If an exception was thrown while doing the disassembly, print
971 the error message, to give the user a clue of what happened. */
972 exception_print (gdb_stderr
, exception
);
976 /* Converts the PRINT_FRAME_INFO choice to an optional enum print_what.
977 Value not present indicates to the caller to use default values
978 specific to the command being executed. */
980 static gdb::optional
<enum print_what
>
981 print_frame_info_to_print_what (const char *print_frame_info
)
983 for (int i
= 0; print_frame_info_choices
[i
] != NULL
; i
++)
984 if (print_frame_info
== print_frame_info_choices
[i
])
985 return print_frame_info_print_what
[i
];
987 internal_error (__FILE__
, __LINE__
,
988 "Unexpected print frame-info value `%s'.",
992 /* Print the PC from FRAME, plus any flags, to UIOUT. */
995 print_pc (struct ui_out
*uiout
, struct gdbarch
*gdbarch
, frame_info
*frame
,
998 uiout
->field_core_addr ("addr", gdbarch
, pc
);
1000 std::string flags
= gdbarch_get_pc_address_flags (gdbarch
, frame
, pc
);
1001 if (!flags
.empty ())
1004 uiout
->field_string ("addr_flags", flags
);
1012 get_user_print_what_frame_info (gdb::optional
<enum print_what
> *what
)
1015 = print_frame_info_to_print_what
1016 (user_frame_print_options
.print_frame_info
);
1019 /* Print information about frame FRAME. The output is format according
1020 to PRINT_LEVEL and PRINT_WHAT and PRINT_ARGS. For the meaning of
1021 PRINT_WHAT, see enum print_what comments in frame.h.
1022 Note that PRINT_WHAT is overridden if FP_OPTS.print_frame_info
1023 != print_frame_info_auto.
1025 Used in "where" output, and to emit breakpoint or step
1029 print_frame_info (const frame_print_options
&fp_opts
,
1030 frame_info
*frame
, int print_level
,
1031 enum print_what print_what
, int print_args
,
1032 int set_current_sal
)
1034 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
1037 struct ui_out
*uiout
= current_uiout
;
1039 if (!current_uiout
->is_mi_like_p ()
1040 && fp_opts
.print_frame_info
!= print_frame_info_auto
)
1042 /* Use the specific frame information desired by the user. */
1043 print_what
= *print_frame_info_to_print_what (fp_opts
.print_frame_info
);
1046 if (get_frame_type (frame
) == DUMMY_FRAME
1047 || get_frame_type (frame
) == SIGTRAMP_FRAME
1048 || get_frame_type (frame
) == ARCH_FRAME
)
1050 ui_out_emit_tuple
tuple_emitter (uiout
, "frame");
1052 annotate_frame_begin (print_level
? frame_relative_level (frame
) : 0,
1053 gdbarch
, get_frame_pc (frame
));
1055 /* Do this regardless of SOURCE because we don't have any source
1056 to list for this frame. */
1060 uiout
->field_fmt_signed (2, ui_left
, "level",
1061 frame_relative_level (frame
));
1063 if (uiout
->is_mi_like_p ())
1065 annotate_frame_address ();
1066 print_pc (uiout
, gdbarch
, frame
, get_frame_pc (frame
));
1067 annotate_frame_address_end ();
1070 if (get_frame_type (frame
) == DUMMY_FRAME
)
1072 annotate_function_call ();
1073 uiout
->field_string ("func", "<function called from gdb>",
1074 metadata_style
.style ());
1076 else if (get_frame_type (frame
) == SIGTRAMP_FRAME
)
1078 annotate_signal_handler_caller ();
1079 uiout
->field_string ("func", "<signal handler called>",
1080 metadata_style
.style ());
1082 else if (get_frame_type (frame
) == ARCH_FRAME
)
1084 uiout
->field_string ("func", "<cross-architecture call>",
1085 metadata_style
.style ());
1088 annotate_frame_end ();
1090 /* If disassemble-next-line is set to auto or on output the next
1092 if (disassemble_next_line
== AUTO_BOOLEAN_AUTO
1093 || disassemble_next_line
== AUTO_BOOLEAN_TRUE
)
1094 do_gdb_disassembly (get_frame_arch (frame
), 1,
1095 get_frame_pc (frame
), get_frame_pc (frame
) + 1);
1100 /* If FRAME is not the innermost frame, that normally means that
1101 FRAME->pc points to *after* the call instruction, and we want to
1102 get the line containing the call, never the next line. But if
1103 the next frame is a SIGTRAMP_FRAME or a DUMMY_FRAME, then the
1104 next frame was not entered as the result of a call, and we want
1105 to get the line containing FRAME->pc. */
1106 symtab_and_line sal
= find_frame_sal (frame
);
1108 location_print
= (print_what
== LOCATION
1109 || print_what
== SRC_AND_LOC
1110 || print_what
== LOC_AND_ADDRESS
1111 || print_what
== SHORT_LOCATION
);
1112 if (location_print
|| !sal
.symtab
)
1113 print_frame (fp_opts
, frame
, print_level
, print_what
, print_args
, sal
);
1115 source_print
= (print_what
== SRC_LINE
|| print_what
== SRC_AND_LOC
);
1117 /* If disassemble-next-line is set to auto or on and doesn't have
1118 the line debug messages for $pc, output the next instruction. */
1119 if ((disassemble_next_line
== AUTO_BOOLEAN_AUTO
1120 || disassemble_next_line
== AUTO_BOOLEAN_TRUE
)
1121 && source_print
&& !sal
.symtab
)
1122 do_gdb_disassembly (get_frame_arch (frame
), 1,
1123 get_frame_pc (frame
), get_frame_pc (frame
) + 1);
1125 if (source_print
&& sal
.symtab
)
1127 int mid_statement
= ((print_what
== SRC_LINE
)
1128 && frame_show_address (frame
, sal
));
1129 annotate_source_line (sal
.symtab
, sal
.line
, mid_statement
,
1130 get_frame_pc (frame
));
1132 if (deprecated_print_frame_info_listing_hook
)
1133 deprecated_print_frame_info_listing_hook (sal
.symtab
, sal
.line
,
1137 struct value_print_options opts
;
1139 get_user_print_options (&opts
);
1140 /* We used to do this earlier, but that is clearly
1141 wrong. This function is used by many different
1142 parts of gdb, including normal_stop in infrun.c,
1143 which uses this to print out the current PC
1144 when we stepi/nexti into the middle of a source
1145 line. Only the command line really wants this
1146 behavior. Other UIs probably would like the
1147 ability to decide for themselves if it is desired. */
1148 if (opts
.addressprint
&& mid_statement
)
1150 print_pc (uiout
, gdbarch
, frame
, get_frame_pc (frame
));
1154 print_source_lines (sal
.symtab
, sal
.line
, sal
.line
+ 1, 0);
1158 /* If disassemble-next-line is set to on and there is line debug
1159 messages, output assembly codes for next line. */
1160 if (disassemble_next_line
== AUTO_BOOLEAN_TRUE
)
1161 do_gdb_disassembly (get_frame_arch (frame
), -1, sal
.pc
, sal
.end
);
1163 if (set_current_sal
)
1167 if (get_frame_pc_if_available (frame
, &pc
))
1168 last_displayed_symtab_info
.set (sal
.pspace
, pc
, sal
.symtab
, sal
.line
);
1170 last_displayed_symtab_info
.invalidate ();
1173 annotate_frame_end ();
1175 gdb_flush (gdb_stdout
);
1181 clear_last_displayed_sal (void)
1183 last_displayed_symtab_info
.invalidate ();
1189 last_displayed_sal_is_valid (void)
1191 return last_displayed_symtab_info
.is_valid ();
1196 struct program_space
*
1197 get_last_displayed_pspace (void)
1199 return last_displayed_symtab_info
.pspace ();
1205 get_last_displayed_addr (void)
1207 return last_displayed_symtab_info
.address ();
1213 get_last_displayed_symtab (void)
1215 return last_displayed_symtab_info
.symtab ();
1221 get_last_displayed_line (void)
1223 return last_displayed_symtab_info
.line ();
1229 get_last_displayed_sal ()
1231 symtab_and_line sal
;
1233 if (last_displayed_symtab_info
.is_valid ())
1235 sal
.pspace
= last_displayed_symtab_info
.pspace ();
1236 sal
.pc
= last_displayed_symtab_info
.address ();
1237 sal
.symtab
= last_displayed_symtab_info
.symtab ();
1238 sal
.line
= last_displayed_symtab_info
.line ();
1245 /* Attempt to obtain the name, FUNLANG and optionally FUNCP of the function
1246 corresponding to FRAME. */
1248 gdb::unique_xmalloc_ptr
<char>
1249 find_frame_funname (struct frame_info
*frame
, enum language
*funlang
,
1250 struct symbol
**funcp
)
1252 struct symbol
*func
;
1253 gdb::unique_xmalloc_ptr
<char> funname
;
1255 *funlang
= language_unknown
;
1259 func
= get_frame_function (frame
);
1262 const char *print_name
= func
->print_name ();
1264 *funlang
= func
->language ();
1267 if (*funlang
== language_cplus
)
1269 /* It seems appropriate to use print_name() here,
1270 to display the demangled name that we already have
1271 stored in the symbol table, but we stored a version
1272 with DMGL_PARAMS turned on, and here we don't want to
1273 display parameters. So remove the parameters. */
1274 funname
= cp_remove_params (print_name
);
1277 /* If we didn't hit the C++ case above, set *funname
1279 if (funname
== NULL
)
1280 funname
.reset (xstrdup (print_name
));
1284 struct bound_minimal_symbol msymbol
;
1287 if (!get_frame_address_in_block_if_available (frame
, &pc
))
1290 msymbol
= lookup_minimal_symbol_by_pc (pc
);
1291 if (msymbol
.minsym
!= NULL
)
1293 funname
.reset (xstrdup (msymbol
.minsym
->print_name ()));
1294 *funlang
= msymbol
.minsym
->language ();
1302 print_frame (const frame_print_options
&fp_opts
,
1303 frame_info
*frame
, int print_level
,
1304 enum print_what print_what
, int print_args
,
1305 struct symtab_and_line sal
)
1307 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
1308 struct ui_out
*uiout
= current_uiout
;
1309 enum language funlang
= language_unknown
;
1310 struct value_print_options opts
;
1311 struct symbol
*func
;
1315 pc_p
= get_frame_pc_if_available (frame
, &pc
);
1317 gdb::unique_xmalloc_ptr
<char> funname
1318 = find_frame_funname (frame
, &funlang
, &func
);
1320 annotate_frame_begin (print_level
? frame_relative_level (frame
) : 0,
1324 ui_out_emit_tuple
tuple_emitter (uiout
, "frame");
1329 uiout
->field_fmt_signed (2, ui_left
, "level",
1330 frame_relative_level (frame
));
1332 get_user_print_options (&opts
);
1333 if (opts
.addressprint
)
1335 || frame_show_address (frame
, sal
)
1336 || print_what
== LOC_AND_ADDRESS
)
1338 annotate_frame_address ();
1340 print_pc (uiout
, gdbarch
, frame
, pc
);
1342 uiout
->field_string ("addr", "<unavailable>",
1343 metadata_style
.style ());
1344 annotate_frame_address_end ();
1345 uiout
->text (" in ");
1347 annotate_frame_function_name ();
1350 fprintf_symbol_filtered (&stb
, funname
? funname
.get () : "??",
1351 funlang
, DMGL_ANSI
);
1352 uiout
->field_stream ("func", stb
, function_name_style
.style ());
1353 uiout
->wrap_hint (" ");
1354 annotate_frame_args ();
1361 if (gdbarch_frame_num_args_p (gdbarch
))
1363 numargs
= gdbarch_frame_num_args (gdbarch
, frame
);
1364 gdb_assert (numargs
>= 0);
1370 ui_out_emit_list
list_emitter (uiout
, "args");
1373 print_frame_args (fp_opts
, func
, frame
, numargs
, gdb_stdout
);
1375 catch (const gdb_exception_error
&e
)
1379 /* FIXME: ARGS must be a list. If one argument is a string it
1380 will have " that will not be properly escaped. */
1385 if (print_what
!= SHORT_LOCATION
&& sal
.symtab
)
1387 const char *filename_display
;
1389 filename_display
= symtab_to_filename_for_display (sal
.symtab
);
1390 annotate_frame_source_begin ();
1391 uiout
->wrap_hint (" ");
1392 uiout
->text (" at ");
1393 annotate_frame_source_file ();
1394 uiout
->field_string ("file", filename_display
,
1395 file_name_style
.style ());
1396 if (uiout
->is_mi_like_p ())
1398 const char *fullname
= symtab_to_fullname (sal
.symtab
);
1400 uiout
->field_string ("fullname", fullname
);
1402 annotate_frame_source_file_end ();
1404 annotate_frame_source_line ();
1405 uiout
->field_signed ("line", sal
.line
);
1406 annotate_frame_source_end ();
1409 if (print_what
!= SHORT_LOCATION
1410 && pc_p
&& (funname
== NULL
|| sal
.symtab
== NULL
))
1412 char *lib
= solib_name_from_address (get_frame_program_space (frame
),
1413 get_frame_pc (frame
));
1417 annotate_frame_where ();
1418 uiout
->wrap_hint (" ");
1419 uiout
->text (" from ");
1420 uiout
->field_string ("from", lib
, file_name_style
.style ());
1423 if (uiout
->is_mi_like_p ())
1424 uiout
->field_string ("arch",
1425 (gdbarch_bfd_arch_info (gdbarch
))->printable_name
);
1432 /* Completion function for "frame function", "info frame function", and
1433 "select-frame function" commands. */
1436 frame_selection_by_function_completer (struct cmd_list_element
*ignore
,
1437 completion_tracker
&tracker
,
1438 const char *text
, const char *word
)
1440 /* This is used to complete function names within a stack. It would be
1441 nice if we only offered functions that were actually in the stack.
1442 However, this would mean unwinding the stack to completion, which
1443 could take too long, or on a corrupted stack, possibly not end.
1444 Instead, we offer all symbol names as a safer choice. */
1445 collect_symbol_completion_matches (tracker
,
1446 complete_symbol_mode::EXPRESSION
,
1447 symbol_name_match_type::EXPRESSION
,
1451 /* Core of all the "info frame" sub-commands. Print information about a
1452 frame FI. If SELECTED_FRAME_P is true then the user didn't provide a
1453 frame specification, they just entered 'info frame'. If the user did
1454 provide a frame specification (for example 'info frame 0', 'info frame
1455 level 1') then SELECTED_FRAME_P will be false. */
1458 info_frame_command_core (struct frame_info
*fi
, bool selected_frame_p
)
1460 struct symbol
*func
;
1462 struct frame_info
*calling_frame_info
;
1464 const char *funname
= 0;
1465 enum language funlang
= language_unknown
;
1466 const char *pc_regname
;
1467 struct gdbarch
*gdbarch
;
1470 /* Initialize it to avoid "may be used uninitialized" warning. */
1471 CORE_ADDR caller_pc
= 0;
1472 int caller_pc_p
= 0;
1474 gdbarch
= get_frame_arch (fi
);
1476 /* Name of the value returned by get_frame_pc(). Per comments, "pc"
1477 is not a good name. */
1478 if (gdbarch_pc_regnum (gdbarch
) >= 0)
1479 /* OK, this is weird. The gdbarch_pc_regnum hardware register's value can
1480 easily not match that of the internal value returned by
1482 pc_regname
= gdbarch_register_name (gdbarch
, gdbarch_pc_regnum (gdbarch
));
1484 /* But then, this is weird to. Even without gdbarch_pc_regnum, an
1485 architectures will often have a hardware register called "pc",
1486 and that register's value, again, can easily not match
1490 frame_pc_p
= get_frame_pc_if_available (fi
, &frame_pc
);
1491 func
= get_frame_function (fi
);
1492 symtab_and_line sal
= find_frame_sal (fi
);
1494 gdb::unique_xmalloc_ptr
<char> func_only
;
1497 funname
= func
->print_name ();
1498 funlang
= func
->language ();
1499 if (funlang
== language_cplus
)
1501 /* It seems appropriate to use print_name() here,
1502 to display the demangled name that we already have
1503 stored in the symbol table, but we stored a version
1504 with DMGL_PARAMS turned on, and here we don't want to
1505 display parameters. So remove the parameters. */
1506 func_only
= cp_remove_params (funname
);
1509 funname
= func_only
.get ();
1512 else if (frame_pc_p
)
1514 struct bound_minimal_symbol msymbol
;
1516 msymbol
= lookup_minimal_symbol_by_pc (frame_pc
);
1517 if (msymbol
.minsym
!= NULL
)
1519 funname
= msymbol
.minsym
->print_name ();
1520 funlang
= msymbol
.minsym
->language ();
1523 calling_frame_info
= get_prev_frame (fi
);
1525 if (selected_frame_p
&& frame_relative_level (fi
) >= 0)
1527 printf_filtered (_("Stack level %d, frame at "),
1528 frame_relative_level (fi
));
1532 printf_filtered (_("Stack frame at "));
1534 fputs_filtered (paddress (gdbarch
, get_frame_base (fi
)), gdb_stdout
);
1535 printf_filtered (":\n");
1536 printf_filtered (" %s = ", pc_regname
);
1538 fputs_filtered (paddress (gdbarch
, get_frame_pc (fi
)), gdb_stdout
);
1540 fputs_styled ("<unavailable>", metadata_style
.style (), gdb_stdout
);
1545 printf_filtered (" in ");
1546 fprintf_symbol_filtered (gdb_stdout
, funname
, funlang
,
1547 DMGL_ANSI
| DMGL_PARAMS
);
1553 styled_string (file_name_style
.style (),
1554 symtab_to_filename_for_display (sal
.symtab
)),
1556 puts_filtered ("; ");
1558 printf_filtered ("saved %s = ", pc_regname
);
1560 if (!frame_id_p (frame_unwind_caller_id (fi
)))
1561 val_print_not_saved (gdb_stdout
);
1566 caller_pc
= frame_unwind_caller_pc (fi
);
1569 catch (const gdb_exception_error
&ex
)
1573 case NOT_AVAILABLE_ERROR
:
1574 val_print_unavailable (gdb_stdout
);
1576 case OPTIMIZED_OUT_ERROR
:
1577 val_print_not_saved (gdb_stdout
);
1580 fprintf_styled (gdb_stdout
, metadata_style
.style (),
1589 fputs_filtered (paddress (gdbarch
, caller_pc
), gdb_stdout
);
1590 printf_filtered ("\n");
1592 if (calling_frame_info
== NULL
)
1594 enum unwind_stop_reason reason
;
1596 reason
= get_frame_unwind_stop_reason (fi
);
1597 if (reason
!= UNWIND_NO_REASON
)
1598 printf_filtered (_(" Outermost frame: %s\n"),
1599 frame_stop_reason_string (fi
));
1601 else if (get_frame_type (fi
) == TAILCALL_FRAME
)
1602 puts_filtered (" tail call frame");
1603 else if (get_frame_type (fi
) == INLINE_FRAME
)
1604 printf_filtered (" inlined into frame %d",
1605 frame_relative_level (get_prev_frame (fi
)));
1608 printf_filtered (" called by frame at ");
1609 fputs_filtered (paddress (gdbarch
, get_frame_base (calling_frame_info
)),
1612 if (get_next_frame (fi
) && calling_frame_info
)
1613 puts_filtered (",");
1615 if (get_next_frame (fi
))
1617 printf_filtered (" caller of frame at ");
1618 fputs_filtered (paddress (gdbarch
, get_frame_base (get_next_frame (fi
))),
1621 if (get_next_frame (fi
) || calling_frame_info
)
1622 puts_filtered ("\n");
1625 printf_filtered (" source language %s.\n",
1626 language_str (s
->language
));
1629 /* Address of the argument list for this frame, or 0. */
1630 CORE_ADDR arg_list
= get_frame_args_address (fi
);
1631 /* Number of args for this frame, or -1 if unknown. */
1635 printf_filtered (" Arglist at unknown address.\n");
1638 printf_filtered (" Arglist at ");
1639 fputs_filtered (paddress (gdbarch
, arg_list
), gdb_stdout
);
1640 printf_filtered (",");
1642 if (!gdbarch_frame_num_args_p (gdbarch
))
1645 puts_filtered (" args: ");
1649 numargs
= gdbarch_frame_num_args (gdbarch
, fi
);
1650 gdb_assert (numargs
>= 0);
1652 puts_filtered (" no args.");
1653 else if (numargs
== 1)
1654 puts_filtered (" 1 arg: ");
1656 printf_filtered (" %d args: ", numargs
);
1658 print_frame_args (user_frame_print_options
,
1659 func
, fi
, numargs
, gdb_stdout
);
1660 puts_filtered ("\n");
1664 /* Address of the local variables for this frame, or 0. */
1665 CORE_ADDR arg_list
= get_frame_locals_address (fi
);
1668 printf_filtered (" Locals at unknown address,");
1671 printf_filtered (" Locals at ");
1672 fputs_filtered (paddress (gdbarch
, arg_list
), gdb_stdout
);
1673 printf_filtered (",");
1677 /* Print as much information as possible on the location of all the
1683 int sp_regnum
= gdbarch_sp_regnum (gdbarch
);
1685 /* The sp is special; what's displayed isn't the save address, but
1686 the value of the previous frame's sp. This is a legacy thing,
1687 at one stage the frame cached the previous frame's SP instead
1688 of its address, hence it was easiest to just display the cached
1692 struct value
*value
= frame_unwind_register_value (fi
, sp_regnum
);
1693 gdb_assert (value
!= NULL
);
1695 if (!value_optimized_out (value
) && value_entirely_available (value
))
1697 if (VALUE_LVAL (value
) == not_lval
)
1700 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
1701 int sp_size
= register_size (gdbarch
, sp_regnum
);
1703 sp
= extract_unsigned_integer (value_contents_all (value
),
1704 sp_size
, byte_order
);
1706 printf_filtered (" Previous frame's sp is ");
1707 fputs_filtered (paddress (gdbarch
, sp
), gdb_stdout
);
1708 printf_filtered ("\n");
1710 else if (VALUE_LVAL (value
) == lval_memory
)
1712 printf_filtered (" Previous frame's sp at ");
1713 fputs_filtered (paddress (gdbarch
, value_address (value
)),
1715 printf_filtered ("\n");
1717 else if (VALUE_LVAL (value
) == lval_register
)
1719 printf_filtered (" Previous frame's sp in %s\n",
1720 gdbarch_register_name (gdbarch
,
1721 VALUE_REGNUM (value
)));
1724 release_value (value
);
1727 /* else keep quiet. */
1731 numregs
= gdbarch_num_cooked_regs (gdbarch
);
1732 for (i
= 0; i
< numregs
; i
++)
1734 && gdbarch_register_reggroup_p (gdbarch
, i
, all_reggroup
))
1736 enum lval_type lval
;
1742 /* Find out the location of the saved register without
1743 fetching the corresponding value. */
1744 frame_register_unwind (fi
, i
, &optimized
, &unavailable
,
1745 &lval
, &addr
, &realnum
, NULL
);
1746 /* For moment, only display registers that were saved on the
1748 if (!optimized
&& !unavailable
&& lval
== lval_memory
)
1751 puts_filtered (" Saved registers:\n ");
1753 puts_filtered (",");
1755 printf_filtered (" %s at ",
1756 gdbarch_register_name (gdbarch
, i
));
1757 fputs_filtered (paddress (gdbarch
, addr
), gdb_stdout
);
1761 if (count
|| need_nl
)
1762 puts_filtered ("\n");
1766 /* Return the innermost frame at level LEVEL. */
1768 static struct frame_info
*
1769 leading_innermost_frame (int level
)
1771 struct frame_info
*leading
;
1773 leading
= get_current_frame ();
1775 gdb_assert (level
>= 0);
1777 while (leading
!= nullptr && level
)
1780 leading
= get_prev_frame (leading
);
1787 /* Return the starting frame needed to handle COUNT outermost frames. */
1789 static struct frame_info
*
1790 trailing_outermost_frame (int count
)
1792 struct frame_info
*current
;
1793 struct frame_info
*trailing
;
1795 trailing
= get_current_frame ();
1797 gdb_assert (count
> 0);
1800 while (current
!= nullptr && count
--)
1803 current
= get_prev_frame (current
);
1806 /* Will stop when CURRENT reaches the top of the stack.
1807 TRAILING will be COUNT below it. */
1808 while (current
!= nullptr)
1811 trailing
= get_prev_frame (trailing
);
1812 current
= get_prev_frame (current
);
1818 /* The core of all the "select-frame" sub-commands. Just wraps a call to
1822 select_frame_command_core (struct frame_info
*fi
, bool ignored
)
1824 struct frame_info
*prev_frame
= get_selected_frame_if_set ();
1826 if (get_selected_frame_if_set () != prev_frame
)
1827 gdb::observers::user_selected_context_changed
.notify (USER_SELECTED_FRAME
);
1833 select_frame_for_mi (struct frame_info
*fi
)
1835 select_frame_command_core (fi
, false /* Ignored. */);
1838 /* The core of all the "frame" sub-commands. Select frame FI, and if this
1839 means we change frame send out a change notification (otherwise, just
1840 reprint the current frame summary). */
1843 frame_command_core (struct frame_info
*fi
, bool ignored
)
1845 struct frame_info
*prev_frame
= get_selected_frame_if_set ();
1848 if (get_selected_frame_if_set () != prev_frame
)
1849 gdb::observers::user_selected_context_changed
.notify (USER_SELECTED_FRAME
);
1851 print_selected_thread_frame (current_uiout
, USER_SELECTED_FRAME
);
1854 /* The three commands 'frame', 'select-frame', and 'info frame' all have a
1855 common set of sub-commands that allow a specific frame to be selected.
1856 All of the sub-command functions are static methods within this class
1857 template which is then instantiated below. The template parameter is a
1858 callback used to implement the functionality of the base command
1859 ('frame', 'select-frame', or 'info frame').
1861 In the template parameter FI is the frame being selected. The
1862 SELECTED_FRAME_P flag is true if the frame being selected was done by
1863 default, which happens when the user uses the base command with no
1864 arguments. For example the commands 'info frame', 'select-frame',
1865 'frame' will all cause SELECTED_FRAME_P to be true. In all other cases
1866 SELECTED_FRAME_P is false. */
1868 template <void (*FPTR
) (struct frame_info
*fi
, bool selected_frame_p
)>
1869 class frame_command_helper
1873 /* The "frame level" family of commands. The ARG is an integer that is
1874 the frame's level in the stack. */
1876 level (const char *arg
, int from_tty
)
1878 int level
= value_as_long (parse_and_eval (arg
));
1879 struct frame_info
*fid
1880 = find_relative_frame (get_current_frame (), &level
);
1882 error (_("No frame at level %s."), arg
);
1886 /* The "frame address" family of commands. ARG is a stack-pointer
1887 address for an existing frame. This command does not allow new
1888 frames to be created. */
1891 address (const char *arg
, int from_tty
)
1893 CORE_ADDR addr
= value_as_address (parse_and_eval (arg
));
1894 struct frame_info
*fid
= find_frame_for_address (addr
);
1896 error (_("No frame at address %s."), arg
);
1900 /* The "frame view" family of commands. ARG is one or two addresses and
1901 is used to view a frame that might be outside the current backtrace.
1902 The addresses are stack-pointer address, and (optional) pc-address. */
1905 view (const char *args
, int from_tty
)
1907 struct frame_info
*fid
;
1910 error (_("Missing address argument to view a frame"));
1912 gdb_argv
argv (args
);
1914 if (argv
.count () == 2)
1918 addr
[0] = value_as_address (parse_and_eval (argv
[0]));
1919 addr
[1] = value_as_address (parse_and_eval (argv
[1]));
1920 fid
= create_new_frame (addr
[0], addr
[1]);
1924 CORE_ADDR addr
= value_as_address (parse_and_eval (argv
[0]));
1925 fid
= create_new_frame (addr
, false);
1930 /* The "frame function" family of commands. ARG is the name of a
1931 function within the stack, the first function (searching from frame
1932 0) with that name will be selected. */
1935 function (const char *arg
, int from_tty
)
1938 error (_("Missing function name argument"));
1939 struct frame_info
*fid
= find_frame_for_function (arg
);
1941 error (_("No frame for function \"%s\"."), arg
);
1945 /* The "frame" base command, that is, when no sub-command is specified.
1946 If one argument is provided then we assume that this is a frame's
1947 level as historically, this was the supported command syntax that was
1950 If no argument is provided, then the current frame is selected. */
1953 base_command (const char *arg
, int from_tty
)
1956 FPTR (get_selected_frame (_("No stack.")), true);
1958 level (arg
, from_tty
);
1962 /* Instantiate three FRAME_COMMAND_HELPER instances to implement the
1963 sub-commands for 'info frame', 'frame', and 'select-frame' commands. */
1965 static frame_command_helper
<info_frame_command_core
> info_frame_cmd
;
1966 static frame_command_helper
<frame_command_core
> frame_cmd
;
1967 static frame_command_helper
<select_frame_command_core
> select_frame_cmd
;
1969 /* Print briefly all stack frames or just the innermost COUNT_EXP
1973 backtrace_command_1 (const frame_print_options
&fp_opts
,
1974 const backtrace_cmd_options
&bt_opts
,
1975 const char *count_exp
, int from_tty
)
1978 struct frame_info
*fi
;
1980 int py_start
= 0, py_end
= 0;
1981 enum ext_lang_bt_status result
= EXT_LANG_BT_ERROR
;
1983 if (!target_has_stack
)
1984 error (_("No stack."));
1988 count
= parse_and_eval_long (count_exp
);
1994 /* The argument to apply_ext_lang_frame_filter is the number
1995 of the final frame to print, and frames start at 0. */
2005 frame_filter_flags flags
= 0;
2008 flags
|= PRINT_LOCALS
;
2010 flags
|= PRINT_HIDE
;
2012 if (!bt_opts
.no_filters
)
2014 enum ext_lang_frame_args arg_type
;
2016 flags
|= PRINT_LEVEL
| PRINT_FRAME_INFO
| PRINT_ARGS
;
2018 flags
|= PRINT_MORE_FRAMES
;
2020 if (fp_opts
.print_frame_arguments
== print_frame_arguments_scalars
)
2021 arg_type
= CLI_SCALAR_VALUES
;
2022 else if (fp_opts
.print_frame_arguments
== print_frame_arguments_all
)
2023 arg_type
= CLI_ALL_VALUES
;
2024 else if (fp_opts
.print_frame_arguments
== print_frame_arguments_presence
)
2025 arg_type
= CLI_PRESENCE
;
2026 else if (fp_opts
.print_frame_arguments
== print_frame_arguments_none
)
2027 arg_type
= NO_VALUES
;
2031 result
= apply_ext_lang_frame_filter (get_current_frame (), flags
,
2032 arg_type
, current_uiout
,
2036 /* Run the inbuilt backtrace if there are no filters registered, or
2037 "-no-filters" has been specified from the command. */
2038 if (bt_opts
.no_filters
|| result
== EXT_LANG_BT_NO_FILTERS
)
2040 struct frame_info
*trailing
;
2042 /* The following code must do two things. First, it must set the
2043 variable TRAILING to the frame from which we should start
2044 printing. Second, it must set the variable count to the number
2045 of frames which we should print, or -1 if all of them. */
2047 if (count_exp
!= NULL
&& count
< 0)
2049 trailing
= trailing_outermost_frame (-count
);
2053 trailing
= get_current_frame ();
2055 for (fi
= trailing
; fi
&& count
--; fi
= get_prev_frame (fi
))
2059 /* Don't use print_stack_frame; if an error() occurs it probably
2060 means further attempts to backtrace would fail (on the other
2061 hand, perhaps the code does or could be fixed to make sure
2062 the frame->prev field gets set to NULL in that case). */
2064 print_frame_info (fp_opts
, fi
, 1, LOCATION
, 1, 0);
2065 if ((flags
& PRINT_LOCALS
) != 0)
2067 struct frame_id frame_id
= get_frame_id (fi
);
2069 print_frame_local_vars (fi
, false, NULL
, NULL
, 1, gdb_stdout
);
2071 /* print_frame_local_vars invalidates FI. */
2072 fi
= frame_find_by_id (frame_id
);
2076 warning (_("Unable to restore previously selected frame."));
2081 /* Save the last frame to check for error conditions. */
2085 /* If we've stopped before the end, mention that. */
2087 printf_filtered (_("(More stack frames follow...)\n"));
2089 /* If we've run out of frames, and the reason appears to be an error
2090 condition, print it. */
2091 if (fi
== NULL
&& trailing
!= NULL
)
2093 enum unwind_stop_reason reason
;
2095 reason
= get_frame_unwind_stop_reason (trailing
);
2096 if (reason
>= UNWIND_FIRST_ERROR
)
2097 printf_filtered (_("Backtrace stopped: %s\n"),
2098 frame_stop_reason_string (trailing
));
2103 /* Create an option_def_group array grouping all the "backtrace"
2104 options, with FP_OPTS, BT_CMD_OPT, SET_BT_OPTS as contexts. */
2106 static inline std::array
<gdb::option::option_def_group
, 3>
2107 make_backtrace_options_def_group (frame_print_options
*fp_opts
,
2108 backtrace_cmd_options
*bt_cmd_opts
,
2109 set_backtrace_options
*set_bt_opts
)
2112 { {frame_print_option_defs
}, fp_opts
},
2113 { {set_backtrace_option_defs
}, set_bt_opts
},
2114 { {backtrace_command_option_defs
}, bt_cmd_opts
}
2118 /* Parse the backtrace command's qualifiers. Returns ARG advanced
2119 past the qualifiers, if any. BT_CMD_OPTS, if not null, is used to
2120 store the parsed qualifiers. */
2123 parse_backtrace_qualifiers (const char *arg
,
2124 backtrace_cmd_options
*bt_cmd_opts
= nullptr)
2128 const char *save_arg
= arg
;
2129 std::string this_arg
= extract_arg (&arg
);
2131 if (this_arg
.empty ())
2134 if (subset_compare (this_arg
.c_str (), "no-filters"))
2136 if (bt_cmd_opts
!= nullptr)
2137 bt_cmd_opts
->no_filters
= true;
2139 else if (subset_compare (this_arg
.c_str (), "full"))
2141 if (bt_cmd_opts
!= nullptr)
2142 bt_cmd_opts
->full
= true;
2144 else if (subset_compare (this_arg
.c_str (), "hide"))
2146 if (bt_cmd_opts
!= nullptr)
2147 bt_cmd_opts
->hide
= true;
2151 /* Not a recognized qualifier, so stop. */
2158 backtrace_command (const char *arg
, int from_tty
)
2160 frame_print_options fp_opts
= user_frame_print_options
;
2161 backtrace_cmd_options bt_cmd_opts
;
2162 set_backtrace_options set_bt_opts
= user_set_backtrace_options
;
2165 = make_backtrace_options_def_group (&fp_opts
, &bt_cmd_opts
, &set_bt_opts
);
2166 gdb::option::process_options
2167 (&arg
, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND
, grp
);
2169 /* Parse non-'-'-prefixed qualifiers, for backwards
2173 arg
= parse_backtrace_qualifiers (arg
, &bt_cmd_opts
);
2178 /* These options are handled quite deep in the unwind machinery, so
2179 we get to pass them down by swapping globals. */
2180 scoped_restore restore_set_backtrace_options
2181 = make_scoped_restore (&user_set_backtrace_options
, set_bt_opts
);
2183 backtrace_command_1 (fp_opts
, bt_cmd_opts
, arg
, from_tty
);
2186 /* Completer for the "backtrace" command. */
2189 backtrace_command_completer (struct cmd_list_element
*ignore
,
2190 completion_tracker
&tracker
,
2191 const char *text
, const char */
*word*/
)
2194 = make_backtrace_options_def_group (nullptr, nullptr, nullptr);
2195 if (gdb::option::complete_options
2196 (tracker
, &text
, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND
, group
))
2201 const char *p
= skip_to_space (text
);
2204 static const char *const backtrace_cmd_qualifier_choices
[] = {
2205 "full", "no-filters", "hide", nullptr,
2207 complete_on_enum (tracker
, backtrace_cmd_qualifier_choices
,
2210 if (tracker
.have_completions ())
2215 const char *cmd
= parse_backtrace_qualifiers (text
);
2216 tracker
.advance_custom_word_point_by (cmd
- text
);
2221 const char *word
= advance_to_expression_complete_word_point (tracker
, text
);
2222 expression_completer (ignore
, tracker
, text
, word
);
2225 /* Iterate over the local variables of a block B, calling CB with
2229 iterate_over_block_locals (const struct block
*b
,
2230 iterate_over_block_arg_local_vars_cb cb
,
2233 struct block_iterator iter
;
2236 ALL_BLOCK_SYMBOLS (b
, iter
, sym
)
2238 switch (SYMBOL_CLASS (sym
))
2244 case LOC_OPTIMIZED_OUT
:
2245 if (SYMBOL_IS_ARGUMENT (sym
))
2247 if (SYMBOL_DOMAIN (sym
) == COMMON_BLOCK_DOMAIN
)
2249 (*cb
) (sym
->print_name (), sym
, cb_data
);
2253 /* Ignore symbols which are not locals. */
2260 /* Same, but print labels. */
2263 /* Commented out, as the code using this function has also been
2264 commented out. FIXME:brobecker/2009-01-13: Find out why the code
2265 was commented out in the first place. The discussion introducing
2266 this change (2007-12-04: Support lexical blocks and function bodies
2267 that occupy non-contiguous address ranges) did not explain why
2268 this change was made. */
2270 print_block_frame_labels (struct gdbarch
*gdbarch
, struct block
*b
,
2271 int *have_default
, struct ui_file
*stream
)
2273 struct block_iterator iter
;
2275 int values_printed
= 0;
2277 ALL_BLOCK_SYMBOLS (b
, iter
, sym
)
2279 if (strcmp (sym
->linkage_name (), "default") == 0)
2285 if (SYMBOL_CLASS (sym
) == LOC_LABEL
)
2287 struct symtab_and_line sal
;
2288 struct value_print_options opts
;
2290 sal
= find_pc_line (SYMBOL_VALUE_ADDRESS (sym
), 0);
2292 fputs_filtered (sym
->print_name (), stream
);
2293 get_user_print_options (&opts
);
2294 if (opts
.addressprint
)
2296 fprintf_filtered (stream
, " ");
2297 fputs_filtered (paddress (gdbarch
, SYMBOL_VALUE_ADDRESS (sym
)),
2300 fprintf_filtered (stream
, " in file %s, line %d\n",
2301 sal
.symtab
->filename
, sal
.line
);
2305 return values_printed
;
2309 /* Iterate over all the local variables in block B, including all its
2310 superblocks, stopping when the top-level block is reached. */
2313 iterate_over_block_local_vars (const struct block
*block
,
2314 iterate_over_block_arg_local_vars_cb cb
,
2319 iterate_over_block_locals (block
, cb
, cb_data
);
2320 /* After handling the function's top-level block, stop. Don't
2321 continue to its superblock, the block of per-file
2323 if (BLOCK_FUNCTION (block
))
2325 block
= BLOCK_SUPERBLOCK (block
);
2329 /* Data to be passed around in the calls to the locals and args
2332 struct print_variable_and_value_data
2334 gdb::optional
<compiled_regex
> preg
;
2335 gdb::optional
<compiled_regex
> treg
;
2336 struct frame_id frame_id
;
2338 struct ui_file
*stream
;
2342 /* The callback for the locals and args iterators. */
2345 do_print_variable_and_value (const char *print_name
,
2349 struct print_variable_and_value_data
*p
2350 = (struct print_variable_and_value_data
*) cb_data
;
2351 struct frame_info
*frame
;
2353 if (p
->preg
.has_value ()
2354 && p
->preg
->exec (sym
->natural_name (), 0, NULL
, 0) != 0)
2356 if (p
->treg
.has_value ()
2357 && !treg_matches_sym_type_name (*p
->treg
, sym
))
2360 frame
= frame_find_by_id (p
->frame_id
);
2363 warning (_("Unable to restore previously selected frame."));
2367 print_variable_and_value (print_name
, sym
, frame
, p
->stream
, p
->num_tabs
);
2369 /* print_variable_and_value invalidates FRAME. */
2372 p
->values_printed
= 1;
2375 /* Prepares the regular expression REG from REGEXP.
2376 If REGEXP is NULL, it results in an empty regular expression. */
2379 prepare_reg (const char *regexp
, gdb::optional
<compiled_regex
> *reg
)
2383 int cflags
= REG_NOSUB
| (case_sensitivity
== case_sensitive_off
2385 reg
->emplace (regexp
, cflags
, _("Invalid regexp"));
2391 /* Print all variables from the innermost up to the function block of FRAME.
2392 Print them with values to STREAM indented by NUM_TABS.
2393 If REGEXP is not NULL, only print local variables whose name
2395 If T_REGEXP is not NULL, only print local variables whose type
2397 If no local variables have been printed and !QUIET, prints a message
2398 explaining why no local variables could be printed.
2400 This function will invalidate FRAME. */
2403 print_frame_local_vars (struct frame_info
*frame
,
2405 const char *regexp
, const char *t_regexp
,
2406 int num_tabs
, struct ui_file
*stream
)
2408 struct print_variable_and_value_data cb_data
;
2409 const struct block
*block
;
2412 if (!get_frame_pc_if_available (frame
, &pc
))
2415 fprintf_filtered (stream
,
2416 _("PC unavailable, cannot determine locals.\n"));
2420 block
= get_frame_block (frame
, 0);
2424 fprintf_filtered (stream
, "No symbol table info available.\n");
2428 prepare_reg (regexp
, &cb_data
.preg
);
2429 prepare_reg (t_regexp
, &cb_data
.treg
);
2430 cb_data
.frame_id
= get_frame_id (frame
);
2431 cb_data
.num_tabs
= 4 * num_tabs
;
2432 cb_data
.stream
= stream
;
2433 cb_data
.values_printed
= 0;
2435 /* Temporarily change the selected frame to the given FRAME.
2436 This allows routines that rely on the selected frame instead
2437 of being given a frame as parameter to use the correct frame. */
2438 scoped_restore_selected_frame restore_selected_frame
;
2439 select_frame (frame
);
2441 iterate_over_block_local_vars (block
,
2442 do_print_variable_and_value
,
2445 if (!cb_data
.values_printed
&& !quiet
)
2447 if (regexp
== NULL
&& t_regexp
== NULL
)
2448 fprintf_filtered (stream
, _("No locals.\n"));
2450 fprintf_filtered (stream
, _("No matching locals.\n"));
2454 /* Structure to hold the values of the options used by the 'info
2455 variables' command and other similar commands. These correspond to the
2456 -q and -t options. */
2458 struct info_print_options
2461 char *type_regexp
= nullptr;
2463 ~info_print_options ()
2465 xfree (type_regexp
);
2469 /* The options used by the 'info locals' and 'info args' commands. */
2471 static const gdb::option::option_def info_print_options_defs
[] = {
2472 gdb::option::boolean_option_def
<info_print_options
> {
2474 [] (info_print_options
*opt
) { return &opt
->quiet
; },
2475 nullptr, /* show_cmd_cb */
2476 nullptr /* set_doc */
2479 gdb::option::string_option_def
<info_print_options
> {
2481 [] (info_print_options
*opt
) { return &opt
->type_regexp
; },
2482 nullptr, /* show_cmd_cb */
2483 nullptr /* set_doc */
2487 /* Returns the option group used by 'info locals' and 'info args'
2490 static gdb::option::option_def_group
2491 make_info_print_options_def_group (info_print_options
*opts
)
2493 return {{info_print_options_defs
}, opts
};
2496 /* Command completer for 'info locals' and 'info args'. */
2499 info_print_command_completer (struct cmd_list_element
*ignore
,
2500 completion_tracker
&tracker
,
2501 const char *text
, const char * /* word */)
2504 = make_info_print_options_def_group (nullptr);
2505 if (gdb::option::complete_options
2506 (tracker
, &text
, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND
, group
))
2509 const char *word
= advance_to_expression_complete_word_point (tracker
, text
);
2510 symbol_completer (ignore
, tracker
, text
, word
);
2513 /* Implement the 'info locals' command. */
2516 info_locals_command (const char *args
, int from_tty
)
2518 info_print_options opts
;
2519 auto grp
= make_info_print_options_def_group (&opts
);
2520 gdb::option::process_options
2521 (&args
, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND
, grp
);
2522 if (args
!= nullptr && *args
== '\0')
2525 print_frame_local_vars (get_selected_frame (_("No frame selected.")),
2526 opts
.quiet
, args
, opts
.type_regexp
,
2530 /* Iterate over all the argument variables in block B. */
2533 iterate_over_block_arg_vars (const struct block
*b
,
2534 iterate_over_block_arg_local_vars_cb cb
,
2537 struct block_iterator iter
;
2538 struct symbol
*sym
, *sym2
;
2540 ALL_BLOCK_SYMBOLS (b
, iter
, sym
)
2542 /* Don't worry about things which aren't arguments. */
2543 if (SYMBOL_IS_ARGUMENT (sym
))
2545 /* We have to look up the symbol because arguments can have
2546 two entries (one a parameter, one a local) and the one we
2547 want is the local, which lookup_symbol will find for us.
2548 This includes gcc1 (not gcc2) on the sparc when passing a
2549 small structure and gcc2 when the argument type is float
2550 and it is passed as a double and converted to float by
2551 the prologue (in the latter case the type of the LOC_ARG
2552 symbol is double and the type of the LOC_LOCAL symbol is
2553 float). There are also LOC_ARG/LOC_REGISTER pairs which
2554 are not combined in symbol-reading. */
2556 sym2
= lookup_symbol_search_name (sym
->search_name (),
2557 b
, VAR_DOMAIN
).symbol
;
2558 (*cb
) (sym
->print_name (), sym2
, cb_data
);
2563 /* Print all argument variables of the function of FRAME.
2564 Print them with values to STREAM.
2565 If REGEXP is not NULL, only print argument variables whose name
2567 If T_REGEXP is not NULL, only print argument variables whose type
2569 If no argument variables have been printed and !QUIET, prints a message
2570 explaining why no argument variables could be printed.
2572 This function will invalidate FRAME. */
2575 print_frame_arg_vars (struct frame_info
*frame
,
2577 const char *regexp
, const char *t_regexp
,
2578 struct ui_file
*stream
)
2580 struct print_variable_and_value_data cb_data
;
2581 struct symbol
*func
;
2583 gdb::optional
<compiled_regex
> preg
;
2584 gdb::optional
<compiled_regex
> treg
;
2586 if (!get_frame_pc_if_available (frame
, &pc
))
2589 fprintf_filtered (stream
,
2590 _("PC unavailable, cannot determine args.\n"));
2594 func
= get_frame_function (frame
);
2598 fprintf_filtered (stream
, _("No symbol table info available.\n"));
2602 prepare_reg (regexp
, &cb_data
.preg
);
2603 prepare_reg (t_regexp
, &cb_data
.treg
);
2604 cb_data
.frame_id
= get_frame_id (frame
);
2605 cb_data
.num_tabs
= 0;
2606 cb_data
.stream
= stream
;
2607 cb_data
.values_printed
= 0;
2609 iterate_over_block_arg_vars (SYMBOL_BLOCK_VALUE (func
),
2610 do_print_variable_and_value
, &cb_data
);
2612 /* do_print_variable_and_value invalidates FRAME. */
2615 if (!cb_data
.values_printed
&& !quiet
)
2617 if (regexp
== NULL
&& t_regexp
== NULL
)
2618 fprintf_filtered (stream
, _("No arguments.\n"));
2620 fprintf_filtered (stream
, _("No matching arguments.\n"));
2624 /* Implement the 'info args' command. */
2627 info_args_command (const char *args
, int from_tty
)
2629 info_print_options opts
;
2630 auto grp
= make_info_print_options_def_group (&opts
);
2631 gdb::option::process_options
2632 (&args
, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND
, grp
);
2633 if (args
!= nullptr && *args
== '\0')
2636 print_frame_arg_vars (get_selected_frame (_("No frame selected.")),
2637 opts
.quiet
, args
, opts
.type_regexp
, gdb_stdout
);
2640 /* Return the symbol-block in which the selected frame is executing.
2641 Can return zero under various legitimate circumstances.
2643 If ADDR_IN_BLOCK is non-zero, set *ADDR_IN_BLOCK to the relevant
2644 code address within the block returned. We use this to decide
2645 which macros are in scope. */
2647 const struct block
*
2648 get_selected_block (CORE_ADDR
*addr_in_block
)
2650 if (!has_stack_frames ())
2653 return get_frame_block (get_selected_frame (NULL
), addr_in_block
);
2656 /* Find a frame a certain number of levels away from FRAME.
2657 LEVEL_OFFSET_PTR points to an int containing the number of levels.
2658 Positive means go to earlier frames (up); negative, the reverse.
2659 The int that contains the number of levels is counted toward
2660 zero as the frames for those levels are found.
2661 If the top or bottom frame is reached, that frame is returned,
2662 but the final value of *LEVEL_OFFSET_PTR is nonzero and indicates
2663 how much farther the original request asked to go. */
2666 find_relative_frame (struct frame_info
*frame
, int *level_offset_ptr
)
2668 /* Going up is simple: just call get_prev_frame enough times or
2669 until the initial frame is reached. */
2670 while (*level_offset_ptr
> 0)
2672 struct frame_info
*prev
= get_prev_frame (frame
);
2676 (*level_offset_ptr
)--;
2680 /* Going down is just as simple. */
2681 while (*level_offset_ptr
< 0)
2683 struct frame_info
*next
= get_next_frame (frame
);
2687 (*level_offset_ptr
)++;
2694 /* Select the frame up one or COUNT_EXP stack levels from the
2695 previously selected frame, and print it briefly. */
2698 up_silently_base (const char *count_exp
)
2700 struct frame_info
*frame
;
2704 count
= parse_and_eval_long (count_exp
);
2706 frame
= find_relative_frame (get_selected_frame ("No stack."), &count
);
2707 if (count
!= 0 && count_exp
== NULL
)
2708 error (_("Initial frame selected; you cannot go up."));
2709 select_frame (frame
);
2713 up_silently_command (const char *count_exp
, int from_tty
)
2715 up_silently_base (count_exp
);
2719 up_command (const char *count_exp
, int from_tty
)
2721 up_silently_base (count_exp
);
2722 gdb::observers::user_selected_context_changed
.notify (USER_SELECTED_FRAME
);
2725 /* Select the frame down one or COUNT_EXP stack levels from the previously
2726 selected frame, and print it briefly. */
2729 down_silently_base (const char *count_exp
)
2731 struct frame_info
*frame
;
2735 count
= -parse_and_eval_long (count_exp
);
2737 frame
= find_relative_frame (get_selected_frame ("No stack."), &count
);
2738 if (count
!= 0 && count_exp
== NULL
)
2740 /* We only do this if COUNT_EXP is not specified. That way
2741 "down" means to really go down (and let me know if that is
2742 impossible), but "down 9999" can be used to mean go all the
2743 way down without getting an error. */
2745 error (_("Bottom (innermost) frame selected; you cannot go down."));
2748 select_frame (frame
);
2752 down_silently_command (const char *count_exp
, int from_tty
)
2754 down_silently_base (count_exp
);
2758 down_command (const char *count_exp
, int from_tty
)
2760 down_silently_base (count_exp
);
2761 gdb::observers::user_selected_context_changed
.notify (USER_SELECTED_FRAME
);
2765 return_command (const char *retval_exp
, int from_tty
)
2767 /* Initialize it just to avoid a GCC false warning. */
2768 enum return_value_convention rv_conv
= RETURN_VALUE_STRUCT_CONVENTION
;
2769 struct frame_info
*thisframe
;
2770 struct gdbarch
*gdbarch
;
2771 struct symbol
*thisfun
;
2772 struct value
*return_value
= NULL
;
2773 struct value
*function
= NULL
;
2774 const char *query_prefix
= "";
2776 thisframe
= get_selected_frame ("No selected frame.");
2777 thisfun
= get_frame_function (thisframe
);
2778 gdbarch
= get_frame_arch (thisframe
);
2780 if (get_frame_type (get_current_frame ()) == INLINE_FRAME
)
2781 error (_("Can not force return from an inlined function."));
2783 /* Compute the return value. If the computation triggers an error,
2784 let it bail. If the return type can't be handled, set
2785 RETURN_VALUE to NULL, and QUERY_PREFIX to an informational
2789 expression_up retval_expr
= parse_expression (retval_exp
);
2790 struct type
*return_type
= NULL
;
2792 /* Compute the return value. Should the computation fail, this
2793 call throws an error. */
2794 return_value
= evaluate_expression (retval_expr
.get ());
2796 /* Cast return value to the return type of the function. Should
2797 the cast fail, this call throws an error. */
2798 if (thisfun
!= NULL
)
2799 return_type
= TYPE_TARGET_TYPE (SYMBOL_TYPE (thisfun
));
2800 if (return_type
== NULL
)
2802 if (retval_expr
->elts
[0].opcode
!= UNOP_CAST
2803 && retval_expr
->elts
[0].opcode
!= UNOP_CAST_TYPE
)
2804 error (_("Return value type not available for selected "
2806 "Please use an explicit cast of the value to return."));
2807 return_type
= value_type (return_value
);
2809 return_type
= check_typedef (return_type
);
2810 return_value
= value_cast (return_type
, return_value
);
2812 /* Make sure the value is fully evaluated. It may live in the
2813 stack frame we're about to pop. */
2814 if (value_lazy (return_value
))
2815 value_fetch_lazy (return_value
);
2817 if (thisfun
!= NULL
)
2818 function
= read_var_value (thisfun
, NULL
, thisframe
);
2820 rv_conv
= RETURN_VALUE_REGISTER_CONVENTION
;
2821 if (TYPE_CODE (return_type
) == TYPE_CODE_VOID
)
2822 /* If the return-type is "void", don't try to find the
2823 return-value's location. However, do still evaluate the
2824 return expression so that, even when the expression result
2825 is discarded, side effects such as "return i++" still
2827 return_value
= NULL
;
2828 else if (thisfun
!= NULL
)
2830 rv_conv
= struct_return_convention (gdbarch
, function
, return_type
);
2831 if (rv_conv
== RETURN_VALUE_STRUCT_CONVENTION
2832 || rv_conv
== RETURN_VALUE_ABI_RETURNS_ADDRESS
)
2834 query_prefix
= "The location at which to store the "
2835 "function's return value is unknown.\n"
2836 "If you continue, the return value "
2837 "that you specified will be ignored.\n";
2838 return_value
= NULL
;
2843 /* Does an interactive user really want to do this? Include
2844 information, such as how well GDB can handle the return value, in
2845 the query message. */
2850 if (thisfun
== NULL
)
2851 confirmed
= query (_("%sMake selected stack frame return now? "),
2855 if (TYPE_NO_RETURN (thisfun
->type
))
2856 warning (_("Function does not return normally to caller."));
2857 confirmed
= query (_("%sMake %s return now? "), query_prefix
,
2858 thisfun
->print_name ());
2861 error (_("Not confirmed"));
2864 /* Discard the selected frame and all frames inner-to it. */
2865 frame_pop (get_selected_frame (NULL
));
2867 /* Store RETURN_VALUE in the just-returned register set. */
2868 if (return_value
!= NULL
)
2870 struct type
*return_type
= value_type (return_value
);
2871 struct gdbarch
*cache_arch
= get_current_regcache ()->arch ();
2873 gdb_assert (rv_conv
!= RETURN_VALUE_STRUCT_CONVENTION
2874 && rv_conv
!= RETURN_VALUE_ABI_RETURNS_ADDRESS
);
2875 gdbarch_return_value (cache_arch
, function
, return_type
,
2876 get_current_regcache (), NULL
/*read*/,
2877 value_contents (return_value
) /*write*/);
2880 /* If we are at the end of a call dummy now, pop the dummy frame
2882 if (get_frame_type (get_current_frame ()) == DUMMY_FRAME
)
2883 frame_pop (get_current_frame ());
2885 select_frame (get_current_frame ());
2886 /* If interactive, print the frame that is now current. */
2888 print_stack_frame (get_selected_frame (NULL
), 1, SRC_AND_LOC
, 1);
2891 /* Find the most inner frame in the current stack for a function called
2892 FUNCTION_NAME. If no matching frame is found return NULL. */
2894 static struct frame_info
*
2895 find_frame_for_function (const char *function_name
)
2897 /* Used to hold the lower and upper addresses for each of the
2898 SYMTAB_AND_LINEs found for functions matching FUNCTION_NAME. */
2899 struct function_bounds
2901 CORE_ADDR low
, high
;
2903 struct frame_info
*frame
;
2907 gdb_assert (function_name
!= NULL
);
2909 frame
= get_current_frame ();
2910 std::vector
<symtab_and_line
> sals
2911 = decode_line_with_current_source (function_name
,
2912 DECODE_LINE_FUNFIRSTLINE
);
2913 gdb::def_vector
<function_bounds
> func_bounds (sals
.size ());
2914 for (size_t i
= 0; i
< sals
.size (); i
++)
2916 if (sals
[i
].pspace
!= current_program_space
)
2917 func_bounds
[i
].low
= func_bounds
[i
].high
= 0;
2918 else if (sals
[i
].pc
== 0
2919 || find_pc_partial_function (sals
[i
].pc
, NULL
,
2920 &func_bounds
[i
].low
,
2921 &func_bounds
[i
].high
) == 0)
2922 func_bounds
[i
].low
= func_bounds
[i
].high
= 0;
2927 for (size_t i
= 0; (i
< sals
.size () && !found
); i
++)
2928 found
= (get_frame_pc (frame
) >= func_bounds
[i
].low
2929 && get_frame_pc (frame
) < func_bounds
[i
].high
);
2933 frame
= find_relative_frame (frame
, &level
);
2936 while (!found
&& level
== 0);
2944 /* Implements the dbx 'func' command. */
2947 func_command (const char *arg
, int from_tty
)
2952 struct frame_info
*frame
= find_frame_for_function (arg
);
2954 error (_("'%s' not within current stack frame."), arg
);
2955 if (frame
!= get_selected_frame (NULL
))
2957 select_frame (frame
);
2958 print_stack_frame (get_selected_frame (NULL
), 1, SRC_AND_LOC
, 1);
2962 /* The qcs command line flags for the "frame apply" commands. Keep
2963 this in sync with the "thread apply" commands. */
2965 using qcs_flag_option_def
2966 = gdb::option::flag_option_def
<qcs_flags
>;
2968 static const gdb::option::option_def fr_qcs_flags_option_defs
[] = {
2969 qcs_flag_option_def
{
2970 "q", [] (qcs_flags
*opt
) { return &opt
->quiet
; },
2971 N_("Disables printing the frame location information."),
2974 qcs_flag_option_def
{
2975 "c", [] (qcs_flags
*opt
) { return &opt
->cont
; },
2976 N_("Print any error raised by COMMAND and continue."),
2979 qcs_flag_option_def
{
2980 "s", [] (qcs_flags
*opt
) { return &opt
->silent
; },
2981 N_("Silently ignore any errors or empty output produced by COMMAND."),
2985 /* Create an option_def_group array for all the "frame apply" options,
2986 with FLAGS and SET_BT_OPTS as context. */
2988 static inline std::array
<gdb::option::option_def_group
, 2>
2989 make_frame_apply_options_def_group (qcs_flags
*flags
,
2990 set_backtrace_options
*set_bt_opts
)
2993 { {fr_qcs_flags_option_defs
}, flags
},
2994 { {set_backtrace_option_defs
}, set_bt_opts
},
2998 /* Apply a GDB command to all stack frames, or a set of identified frames,
2999 or innermost COUNT frames.
3000 With a negative COUNT, apply command on outermost -COUNT frames.
3002 frame apply 3 info frame Apply 'info frame' to frames 0, 1, 2
3003 frame apply -3 info frame Apply 'info frame' to outermost 3 frames.
3004 frame apply all x/i $pc Apply 'x/i $pc' cmd to all frames.
3005 frame apply all -s p local_var_no_idea_in_which_frame
3006 If a frame has a local variable called
3007 local_var_no_idea_in_which_frame, print frame
3008 and value of local_var_no_idea_in_which_frame.
3009 frame apply all -s -q p local_var_no_idea_in_which_frame
3010 Same as before, but only print the variable value.
3011 frame apply level 2-5 0 4-7 -s p i = i + 1
3012 Adds 1 to the variable i in the specified frames.
3013 Note that i will be incremented twice in
3016 /* Apply a GDB command to COUNT stack frames, starting at TRAILING.
3017 CMD starts with 0 or more qcs flags followed by the GDB command to apply.
3018 COUNT -1 means all frames starting at TRAILING. WHICH_COMMAND is used
3019 for error messages. */
3022 frame_apply_command_count (const char *which_command
,
3023 const char *cmd
, int from_tty
,
3024 struct frame_info
*trailing
, int count
)
3027 set_backtrace_options set_bt_opts
= user_set_backtrace_options
;
3029 auto group
= make_frame_apply_options_def_group (&flags
, &set_bt_opts
);
3030 gdb::option::process_options
3031 (&cmd
, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND
, group
);
3033 validate_flags_qcs (which_command
, &flags
);
3035 if (cmd
== NULL
|| *cmd
== '\0')
3036 error (_("Please specify a command to apply on the selected frames"));
3038 /* The below will restore the current inferior/thread/frame.
3039 Usually, only the frame is effectively to be restored.
3040 But in case CMD switches of inferior/thread, better restore
3042 scoped_restore_current_thread restore_thread
;
3044 /* These options are handled quite deep in the unwind machinery, so
3045 we get to pass them down by swapping globals. */
3046 scoped_restore restore_set_backtrace_options
3047 = make_scoped_restore (&user_set_backtrace_options
, set_bt_opts
);
3049 for (frame_info
*fi
= trailing
; fi
&& count
--; fi
= get_prev_frame (fi
))
3056 std::string cmd_result
;
3058 /* In case CMD switches of inferior/thread/frame, the below
3059 restores the inferior/thread/frame. FI can then be
3060 set to the selected frame. */
3061 scoped_restore_current_thread restore_fi_current_frame
;
3063 cmd_result
= execute_command_to_string
3064 (cmd
, from_tty
, gdb_stdout
->term_out ());
3066 fi
= get_selected_frame (_("frame apply "
3067 "unable to get selected frame."));
3068 if (!flags
.silent
|| cmd_result
.length () > 0)
3071 print_stack_frame (fi
, 1, LOCATION
, 0);
3072 printf_filtered ("%s", cmd_result
.c_str ());
3075 catch (const gdb_exception_error
&ex
)
3077 fi
= get_selected_frame (_("frame apply "
3078 "unable to get selected frame."));
3082 print_stack_frame (fi
, 1, LOCATION
, 0);
3084 printf_filtered ("%s\n", ex
.what ());
3092 /* Completer for the "frame apply ..." commands. */
3095 frame_apply_completer (completion_tracker
&tracker
, const char *text
)
3097 const auto group
= make_frame_apply_options_def_group (nullptr, nullptr);
3098 if (gdb::option::complete_options
3099 (tracker
, &text
, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND
, group
))
3102 complete_nested_command_line (tracker
, text
);
3105 /* Completer for the "frame apply" commands. */
3108 frame_apply_level_cmd_completer (struct cmd_list_element
*ignore
,
3109 completion_tracker
&tracker
,
3110 const char *text
, const char */
*word*/
)
3112 /* Do this explicitly because there's an early return below. */
3113 tracker
.set_use_custom_word_point (true);
3115 number_or_range_parser
levels (text
);
3117 /* Skip the LEVEL list to find the options and command args. */
3120 while (!levels
.finished ())
3122 /* Call for effect. */
3123 levels
.get_number ();
3125 if (levels
.in_range ())
3126 levels
.skip_range ();
3129 catch (const gdb_exception_error
&ex
)
3131 /* get_number throws if it parses a negative number, for
3132 example. But a seemingly negative number may be the start of
3133 an option instead. */
3136 const char *cmd
= levels
.cur_tok ();
3140 /* No level list yet. */
3144 /* Check if we're past a valid LEVEL already. */
3145 if (levels
.finished ()
3146 && cmd
> text
&& !isspace (cmd
[-1]))
3149 /* We're past LEVELs, advance word point. */
3150 tracker
.advance_custom_word_point_by (cmd
- text
);
3153 frame_apply_completer (tracker
, text
);
3156 /* Completer for the "frame apply all" command. */
3159 frame_apply_all_cmd_completer (struct cmd_list_element
*ignore
,
3160 completion_tracker
&tracker
,
3161 const char *text
, const char */
*word*/
)
3163 frame_apply_completer (tracker
, text
);
3166 /* Completer for the "frame apply COUNT" command. */
3169 frame_apply_cmd_completer (struct cmd_list_element
*ignore
,
3170 completion_tracker
&tracker
,
3171 const char *text
, const char */
*word*/
)
3173 const char *cmd
= text
;
3175 int count
= get_number_trailer (&cmd
, 0);
3179 /* Check if we're past a valid COUNT already. */
3180 if (cmd
> text
&& !isspace (cmd
[-1]))
3183 /* We're past COUNT, advance word point. */
3184 tracker
.advance_custom_word_point_by (cmd
- text
);
3187 frame_apply_completer (tracker
, text
);
3190 /* Implementation of the "frame apply level" command. */
3193 frame_apply_level_command (const char *cmd
, int from_tty
)
3195 if (!target_has_stack
)
3196 error (_("No stack."));
3198 bool level_found
= false;
3199 const char *levels_str
= cmd
;
3200 number_or_range_parser
levels (levels_str
);
3202 /* Skip the LEVEL list to find the flags and command args. */
3203 while (!levels
.finished ())
3205 /* Call for effect. */
3206 levels
.get_number ();
3209 if (levels
.in_range ())
3210 levels
.skip_range ();
3214 error (_("Missing or invalid LEVEL... argument"));
3216 cmd
= levels
.cur_tok ();
3218 /* Redo the LEVELS parsing, but applying COMMAND. */
3219 levels
.init (levels_str
);
3220 while (!levels
.finished ())
3222 const int level_beg
= levels
.get_number ();
3225 if (levels
.in_range ())
3227 n_frames
= levels
.end_value () - level_beg
+ 1;
3228 levels
.skip_range ();
3233 frame_apply_command_count ("frame apply level", cmd
, from_tty
,
3234 leading_innermost_frame (level_beg
), n_frames
);
3238 /* Implementation of the "frame apply all" command. */
3241 frame_apply_all_command (const char *cmd
, int from_tty
)
3243 if (!target_has_stack
)
3244 error (_("No stack."));
3246 frame_apply_command_count ("frame apply all", cmd
, from_tty
,
3247 get_current_frame (), INT_MAX
);
3250 /* Implementation of the "frame apply" command. */
3253 frame_apply_command (const char* cmd
, int from_tty
)
3256 struct frame_info
*trailing
;
3258 if (!target_has_stack
)
3259 error (_("No stack."));
3262 error (_("Missing COUNT argument."));
3263 count
= get_number_trailer (&cmd
, 0);
3265 error (_("Invalid COUNT argument."));
3269 trailing
= trailing_outermost_frame (-count
);
3273 trailing
= get_current_frame ();
3275 frame_apply_command_count ("frame apply", cmd
, from_tty
,
3279 /* Implementation of the "faas" command. */
3282 faas_command (const char *cmd
, int from_tty
)
3284 if (cmd
== NULL
|| *cmd
== '\0')
3285 error (_("Please specify a command to apply on all frames"));
3286 std::string expanded
= std::string ("frame apply all -s ") + cmd
;
3287 execute_command (expanded
.c_str (), from_tty
);
3291 /* Find inner-mode frame with frame address ADDRESS. Return NULL if no
3292 matching frame can be found. */
3294 static struct frame_info
*
3295 find_frame_for_address (CORE_ADDR address
)
3298 struct frame_info
*fid
;
3300 id
= frame_id_build_wild (address
);
3302 /* If (s)he specifies the frame with an address, he deserves
3303 what (s)he gets. Still, give the highest one that matches.
3304 (NOTE: cagney/2004-10-29: Why highest, or outer-most, I don't
3306 for (fid
= get_current_frame ();
3308 fid
= get_prev_frame (fid
))
3310 if (frame_id_eq (id
, get_frame_id (fid
)))
3312 struct frame_info
*prev_frame
;
3316 prev_frame
= get_prev_frame (fid
);
3318 || !frame_id_eq (id
, get_frame_id (prev_frame
)))
3330 /* Commands with a prefix of `frame apply'. */
3331 static struct cmd_list_element
*frame_apply_cmd_list
= NULL
;
3333 /* Commands with a prefix of `frame'. */
3334 static struct cmd_list_element
*frame_cmd_list
= NULL
;
3336 /* Commands with a prefix of `select frame'. */
3337 static struct cmd_list_element
*select_frame_cmd_list
= NULL
;
3339 /* Commands with a prefix of `info frame'. */
3340 static struct cmd_list_element
*info_frame_cmd_list
= NULL
;
3343 _initialize_stack (void)
3345 struct cmd_list_element
*cmd
;
3347 add_com ("return", class_stack
, return_command
, _("\
3348 Make selected stack frame return to its caller.\n\
3349 Control remains in the debugger, but when you continue\n\
3350 execution will resume in the frame above the one now selected.\n\
3351 If an argument is given, it is an expression for the value to return."));
3353 add_com ("up", class_stack
, up_command
, _("\
3354 Select and print stack frame that called this one.\n\
3355 An argument says how many frames up to go."));
3356 add_com ("up-silently", class_support
, up_silently_command
, _("\
3357 Same as the `up' command, but does not print anything.\n\
3358 This is useful in command scripts."));
3360 add_com ("down", class_stack
, down_command
, _("\
3361 Select and print stack frame called by this one.\n\
3362 An argument says how many frames down to go."));
3363 add_com_alias ("do", "down", class_stack
, 1);
3364 add_com_alias ("dow", "down", class_stack
, 1);
3365 add_com ("down-silently", class_support
, down_silently_command
, _("\
3366 Same as the `down' command, but does not print anything.\n\
3367 This is useful in command scripts."));
3369 add_prefix_cmd ("frame", class_stack
,
3370 &frame_cmd
.base_command
, _("\
3371 Select and print a stack frame.\n\
3372 With no argument, print the selected stack frame. (See also \"info frame\").\n\
3373 A single numerical argument specifies the frame to select."),
3374 &frame_cmd_list
, "frame ", 1, &cmdlist
);
3376 add_com_alias ("f", "frame", class_stack
, 1);
3378 #define FRAME_APPLY_OPTION_HELP "\
3379 Prints the frame location information followed by COMMAND output.\n\
3381 By default, an error raised during the execution of COMMAND\n\
3382 aborts \"frame apply\".\n\
3387 const auto frame_apply_opts
3388 = make_frame_apply_options_def_group (nullptr, nullptr);
3390 static std::string frame_apply_cmd_help
= gdb::option::build_help (_("\
3391 Apply a command to a number of frames.\n\
3392 Usage: frame apply COUNT [OPTION]... COMMAND\n\
3393 With a negative COUNT argument, applies the command on outermost -COUNT frames.\n"
3394 FRAME_APPLY_OPTION_HELP
),
3397 cmd
= add_prefix_cmd ("apply", class_stack
, frame_apply_command
,
3398 frame_apply_cmd_help
.c_str (),
3399 &frame_apply_cmd_list
, "frame apply ", 1,
3401 set_cmd_completer_handle_brkchars (cmd
, frame_apply_cmd_completer
);
3403 static std::string frame_apply_all_cmd_help
= gdb::option::build_help (_("\
3404 Apply a command to all frames.\n\
3406 Usage: frame apply all [OPTION]... COMMAND\n"
3407 FRAME_APPLY_OPTION_HELP
),
3410 cmd
= add_cmd ("all", class_stack
, frame_apply_all_command
,
3411 frame_apply_all_cmd_help
.c_str (),
3412 &frame_apply_cmd_list
);
3413 set_cmd_completer_handle_brkchars (cmd
, frame_apply_all_cmd_completer
);
3415 static std::string frame_apply_level_cmd_help
= gdb::option::build_help (_("\
3416 Apply a command to a list of frames.\n\
3418 Usage: frame apply level LEVEL... [OPTION]... COMMAND\n\
3419 LEVEL is a space-separated list of levels of frames to apply COMMAND on.\n"
3420 FRAME_APPLY_OPTION_HELP
),
3423 cmd
= add_cmd ("level", class_stack
, frame_apply_level_command
,
3424 frame_apply_level_cmd_help
.c_str (),
3425 &frame_apply_cmd_list
);
3426 set_cmd_completer_handle_brkchars (cmd
, frame_apply_level_cmd_completer
);
3428 cmd
= add_com ("faas", class_stack
, faas_command
, _("\
3429 Apply a command to all frames (ignoring errors and empty output).\n\
3430 Usage: faas [OPTION]... COMMAND\n\
3431 shortcut for 'frame apply all -s [OPTION]... COMMAND'\n\
3432 See \"help frame apply all\" for available options."));
3433 set_cmd_completer_handle_brkchars (cmd
, frame_apply_all_cmd_completer
);
3435 add_prefix_cmd ("frame", class_stack
,
3436 &frame_cmd
.base_command
, _("\
3437 Select and print a stack frame.\n\
3438 With no argument, print the selected stack frame. (See also \"info frame\").\n\
3439 A single numerical argument specifies the frame to select."),
3440 &frame_cmd_list
, "frame ", 1, &cmdlist
);
3441 add_com_alias ("f", "frame", class_stack
, 1);
3443 add_cmd ("address", class_stack
, &frame_cmd
.address
,
3445 Select and print a stack frame by stack address.\n\
3447 Usage: frame address STACK-ADDRESS"),
3450 add_cmd ("view", class_stack
, &frame_cmd
.view
,
3452 View a stack frame that might be outside the current backtrace.\n\
3454 Usage: frame view STACK-ADDRESS\n\
3455 frame view STACK-ADDRESS PC-ADDRESS"),
3458 cmd
= add_cmd ("function", class_stack
, &frame_cmd
.function
,
3460 Select and print a stack frame by function name.\n\
3462 Usage: frame function NAME\n\
3464 The innermost frame that visited function NAME is selected."),
3466 set_cmd_completer (cmd
, frame_selection_by_function_completer
);
3469 add_cmd ("level", class_stack
, &frame_cmd
.level
,
3471 Select and print a stack frame by level.\n\
3473 Usage: frame level LEVEL"),
3476 cmd
= add_prefix_cmd_suppress_notification ("select-frame", class_stack
,
3477 &select_frame_cmd
.base_command
, _("\
3478 Select a stack frame without printing anything.\n\
3479 A single numerical argument specifies the frame to select."),
3480 &select_frame_cmd_list
, "select-frame ", 1, &cmdlist
,
3481 &cli_suppress_notification
.user_selected_context
);
3483 add_cmd_suppress_notification ("address", class_stack
,
3484 &select_frame_cmd
.address
, _("\
3485 Select a stack frame by stack address.\n\
3487 Usage: select-frame address STACK-ADDRESS"),
3488 &select_frame_cmd_list
,
3489 &cli_suppress_notification
.user_selected_context
);
3492 add_cmd_suppress_notification ("view", class_stack
,
3493 &select_frame_cmd
.view
, _("\
3494 Select a stack frame that might be outside the current backtrace.\n\
3496 Usage: select-frame view STACK-ADDRESS\n\
3497 select-frame view STACK-ADDRESS PC-ADDRESS"),
3498 &select_frame_cmd_list
,
3499 &cli_suppress_notification
.user_selected_context
);
3501 cmd
= add_cmd_suppress_notification ("function", class_stack
,
3502 &select_frame_cmd
.function
, _("\
3503 Select a stack frame by function name.\n\
3505 Usage: select-frame function NAME"),
3506 &select_frame_cmd_list
,
3507 &cli_suppress_notification
.user_selected_context
);
3508 set_cmd_completer (cmd
, frame_selection_by_function_completer
);
3510 add_cmd_suppress_notification ("level", class_stack
,
3511 &select_frame_cmd
.level
, _("\
3512 Select a stack frame by level.\n\
3514 Usage: select-frame level LEVEL"),
3515 &select_frame_cmd_list
,
3516 &cli_suppress_notification
.user_selected_context
);
3518 const auto backtrace_opts
3519 = make_backtrace_options_def_group (nullptr, nullptr, nullptr);
3521 static std::string backtrace_help
3522 = gdb::option::build_help (_("\
3523 Print backtrace of all stack frames, or innermost COUNT frames.\n\
3524 Usage: backtrace [OPTION]... [QUALIFIER]... [COUNT | -COUNT]\n\
3529 For backward compatibility, the following qualifiers are supported:\n\
3531 full - same as -full option.\n\
3532 no-filters - same as -no-filters option.\n\
3533 hide - same as -hide.\n\
3535 With a negative COUNT, print outermost -COUNT frames."),
3538 cmd_list_element
*c
= add_com ("backtrace", class_stack
,
3540 backtrace_help
.c_str ());
3541 set_cmd_completer_handle_brkchars (c
, backtrace_command_completer
);
3543 add_com_alias ("bt", "backtrace", class_stack
, 0);
3545 add_com_alias ("where", "backtrace", class_alias
, 0);
3546 add_info ("stack", backtrace_command
,
3547 _("Backtrace of the stack, or innermost COUNT frames."));
3548 add_info_alias ("s", "stack", 1);
3550 add_prefix_cmd ("frame", class_info
, &info_frame_cmd
.base_command
,
3551 _("All about the selected stack frame.\n\
3552 With no arguments, displays information about the currently selected stack\n\
3553 frame. Alternatively a frame specification may be provided (See \"frame\")\n\
3554 the information is then printed about the specified frame."),
3555 &info_frame_cmd_list
, "info frame ", 1, &infolist
);
3556 add_info_alias ("f", "frame", 1);
3558 add_cmd ("address", class_stack
, &info_frame_cmd
.address
,
3560 Print information about a stack frame selected by stack address.\n\
3562 Usage: info frame address STACK-ADDRESS"),
3563 &info_frame_cmd_list
);
3565 add_cmd ("view", class_stack
, &info_frame_cmd
.view
,
3567 Print information about a stack frame outside the current backtrace.\n\
3569 Usage: info frame view STACK-ADDRESS\n\
3570 info frame view STACK-ADDRESS PC-ADDRESS"),
3571 &info_frame_cmd_list
);
3573 cmd
= add_cmd ("function", class_stack
, &info_frame_cmd
.function
,
3575 Print information about a stack frame selected by function name.\n\
3577 Usage: info frame function NAME"),
3578 &info_frame_cmd_list
);
3579 set_cmd_completer (cmd
, frame_selection_by_function_completer
);
3581 add_cmd ("level", class_stack
, &info_frame_cmd
.level
,
3583 Print information about a stack frame selected by level.\n\
3585 Usage: info frame level LEVEL"),
3586 &info_frame_cmd_list
);
3588 cmd
= add_info ("locals", info_locals_command
,
3589 info_print_args_help (_("\
3590 All local variables of current stack frame or those matching REGEXPs.\n\
3591 Usage: info locals [-q] [-t TYPEREGEXP] [NAMEREGEXP]\n\
3592 Prints the local variables of the current stack frame.\n"),
3593 _("local variables"),
3595 set_cmd_completer_handle_brkchars (cmd
, info_print_command_completer
);
3596 cmd
= add_info ("args", info_args_command
,
3597 info_print_args_help (_("\
3598 All argument variables of current stack frame or those matching REGEXPs.\n\
3599 Usage: info args [-q] [-t TYPEREGEXP] [NAMEREGEXP]\n\
3600 Prints the argument variables of the current stack frame.\n"),
3601 _("argument variables"),
3603 set_cmd_completer_handle_brkchars (cmd
, info_print_command_completer
);
3606 add_com ("func", class_stack
, func_command
, _("\
3607 Select the stack frame that contains NAME.\n\
3608 Usage: func NAME"));
3610 /* Install "set print raw frame-arguments", a deprecated spelling of
3611 "set print raw-frame-arguments". */
3612 cmd
= add_setshow_boolean_cmd
3613 ("frame-arguments", no_class
,
3614 &user_frame_print_options
.print_raw_frame_arguments
,
3616 Set whether to print frame arguments in raw form."), _("\
3617 Show whether to print frame arguments in raw form."), _("\
3618 If set, frame arguments are printed in raw form, bypassing any\n\
3619 pretty-printers for that value."),
3621 &setprintrawlist
, &showprintrawlist
);
3622 deprecate_cmd (cmd
, "set print raw-frame-arguments");
3624 add_setshow_auto_boolean_cmd ("disassemble-next-line", class_stack
,
3625 &disassemble_next_line
, _("\
3626 Set whether to disassemble next source line or insn when execution stops."),
3628 Show whether to disassemble next source line or insn when execution stops."),
3630 If ON, GDB will display disassembly of the next source line, in addition\n\
3631 to displaying the source line itself. If the next source line cannot\n\
3632 be displayed (e.g., source is unavailable or there's no line info), GDB\n\
3633 will display disassembly of next instruction instead of showing the\n\
3635 If AUTO, display disassembly of next instruction only if the source line\n\
3636 cannot be displayed.\n\
3637 If OFF (which is the default), never display the disassembly of the next\n\
3640 show_disassemble_next_line
,
3641 &setlist
, &showlist
);
3642 disassemble_next_line
= AUTO_BOOLEAN_FALSE
;
3644 gdb::option::add_setshow_cmds_for_options
3645 (class_stack
, &user_frame_print_options
,
3646 frame_print_option_defs
, &setprintlist
, &showprintlist
);