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