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