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