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