]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/stack.c
DWARF-5 basic functionality
[thirdparty/binutils-gdb.git] / gdb / stack.c
CommitLineData
c906108c 1/* Print and select stack frames for GDB, the GNU debugger.
8926118c 2
61baf725 3 Copyright (C) 1986-2017 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c 19
c906108c 20#include "defs.h"
c906108c
SS
21#include "value.h"
22#include "symtab.h"
23#include "gdbtypes.h"
24#include "expression.h"
25#include "language.h"
26#include "frame.h"
27#include "gdbcmd.h"
28#include "gdbcore.h"
29#include "target.h"
0378c332 30#include "source.h"
c906108c
SS
31#include "breakpoint.h"
32#include "demangle.h"
33#include "inferior.h"
34#include "annotate.h"
8b93c638 35#include "ui-out.h"
fe898f56 36#include "block.h"
b9362cc7 37#include "stack.h"
de4f826b 38#include "dictionary.h"
898c62f5 39#include "reggroups.h"
fc70c2a0 40#include "regcache.h"
a77053c2 41#include "solib.h"
033a42c2 42#include "valprint.h"
8ea051c5 43#include "gdbthread.h"
3567439c 44#include "cp-support.h"
30c33a9f 45#include "disasm.h"
edb3359d 46#include "inline-frame.h"
f8eba3c6 47#include "linespec.h"
529480d0 48#include "cli/cli-utils.h"
77e371c0 49#include "objfiles.h"
c906108c 50
8d3fea16 51#include "safe-ctype.h"
ccefe4c4 52#include "symfile.h"
6dddc817 53#include "extension.h"
4034d0ff 54#include "observer.h"
ccefe4c4 55
2421fe6f 56/* The possible choices of "set print frame-arguments", and the value
88408340
JB
57 of this setting. */
58
40478521 59static const char *const print_frame_arguments_choices[] =
88408340 60 {"all", "scalars", "none", NULL};
476f7b68 61static const char *print_frame_arguments = "scalars";
88408340 62
e7045703
DE
63/* If non-zero, don't invoke pretty-printers for frame arguments. */
64static int print_raw_frame_arguments;
65
e18b2753
JK
66/* The possible choices of "set print entry-values", and the value
67 of this setting. */
68
69const char print_entry_values_no[] = "no";
70const char print_entry_values_only[] = "only";
71const char print_entry_values_preferred[] = "preferred";
72const char print_entry_values_if_needed[] = "if-needed";
73const char print_entry_values_both[] = "both";
74const char print_entry_values_compact[] = "compact";
75const char print_entry_values_default[] = "default";
40478521 76static const char *const print_entry_values_choices[] =
e18b2753
JK
77{
78 print_entry_values_no,
79 print_entry_values_only,
80 print_entry_values_preferred,
81 print_entry_values_if_needed,
82 print_entry_values_both,
83 print_entry_values_compact,
84 print_entry_values_default,
85 NULL
86};
87const char *print_entry_values = print_entry_values_default;
88
c378eb4e 89/* Prototypes for local functions. */
c906108c 90
d9fcf2fb
JM
91static void print_frame_local_vars (struct frame_info *, int,
92 struct ui_file *);
c906108c 93
033a42c2
MK
94static void print_frame (struct frame_info *frame, int print_level,
95 enum print_what print_what, int print_args,
c5394b80
JM
96 struct symtab_and_line sal);
97
1bfeeb0f
JL
98static void set_last_displayed_sal (int valid,
99 struct program_space *pspace,
100 CORE_ADDR addr,
101 struct symtab *symtab,
102 int line);
103
c906108c
SS
104/* Zero means do things normally; we are interacting directly with the
105 user. One means print the full filename and linenumber when a
106 frame is printed, and do so in a format emacs18/emacs19.22 can
107 parse. Two means print similar annotations, but in many more
108 cases and in a slightly different syntax. */
109
110int annotation_level = 0;
1bfeeb0f
JL
111
112/* These variables hold the last symtab and line we displayed to the user.
113 * This is where we insert a breakpoint or a skiplist entry by default. */
114static int last_displayed_sal_valid = 0;
115static struct program_space *last_displayed_pspace = 0;
116static CORE_ADDR last_displayed_addr = 0;
117static struct symtab *last_displayed_symtab = 0;
118static int last_displayed_line = 0;
c906108c 119\f
c5aa993b 120
edb3359d
DJ
121/* Return 1 if we should display the address in addition to the location,
122 because we are in the middle of a statement. */
123
124static int
125frame_show_address (struct frame_info *frame,
126 struct symtab_and_line sal)
127{
128 /* If there is a line number, but no PC, then there is no location
129 information associated with this sal. The only way that should
130 happen is for the call sites of inlined functions (SAL comes from
131 find_frame_sal). Otherwise, we would have some PC range if the
132 SAL came from a line table. */
133 if (sal.line != 0 && sal.pc == 0 && sal.end == 0)
134 {
135 if (get_next_frame (frame) == NULL)
136 gdb_assert (inline_skipped_frames (inferior_ptid) > 0);
137 else
138 gdb_assert (get_frame_type (get_next_frame (frame)) == INLINE_FRAME);
139 return 0;
140 }
141
142 return get_frame_pc (frame) != sal.pc;
143}
144
4034d0ff
AT
145/* See frame.h. */
146
147void
148print_stack_frame_to_uiout (struct ui_out *uiout, struct frame_info *frame,
149 int print_level, enum print_what print_what,
150 int set_current_sal)
151{
67ad9399 152 scoped_restore save_uiout = make_scoped_restore (&current_uiout, uiout);
4034d0ff
AT
153
154 print_stack_frame (frame, print_level, print_what, set_current_sal);
4034d0ff
AT
155}
156
f9acce4a 157/* Show or print a stack frame FRAME briefly. The output is formatted
d762c46a
AC
158 according to PRINT_LEVEL and PRINT_WHAT printing the frame's
159 relative level, function name, argument list, and file name and
160 line number. If the frame's PC is not at the beginning of the
161 source line, the actual PC is printed at the beginning. */
c906108c
SS
162
163void
033a42c2 164print_stack_frame (struct frame_info *frame, int print_level,
08d72866
PA
165 enum print_what print_what,
166 int set_current_sal)
c906108c 167{
c906108c 168
aaf9e9fd 169 /* For mi, alway print location and address. */
112e8700 170 if (current_uiout->is_mi_like_p ())
311b5970 171 print_what = LOC_AND_ADDRESS;
c906108c 172
492d29ea 173 TRY
311b5970 174 {
08d72866
PA
175 print_frame_info (frame, print_level, print_what, 1 /* print_args */,
176 set_current_sal);
177 if (set_current_sal)
5166082f 178 set_current_sal_from_frame (frame);
311b5970 179 }
492d29ea
PA
180 CATCH (e, RETURN_MASK_ERROR)
181 {
182 }
183 END_CATCH
311b5970 184}
c906108c 185
033a42c2
MK
186/* Print nameless arguments of frame FRAME on STREAM, where START is
187 the offset of the first nameless argument, and NUM is the number of
188 nameless arguments to print. FIRST is nonzero if this is the first
189 argument (not just the first nameless argument). */
8d3b0994
AC
190
191static void
033a42c2 192print_frame_nameless_args (struct frame_info *frame, long start, int num,
8d3b0994
AC
193 int first, struct ui_file *stream)
194{
e17a4113
UW
195 struct gdbarch *gdbarch = get_frame_arch (frame);
196 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
8d3b0994
AC
197 int i;
198 CORE_ADDR argsaddr;
199 long arg_value;
200
201 for (i = 0; i < num; i++)
202 {
203 QUIT;
033a42c2 204 argsaddr = get_frame_args_address (frame);
8d3b0994
AC
205 if (!argsaddr)
206 return;
e17a4113
UW
207 arg_value = read_memory_integer (argsaddr + start,
208 sizeof (int), byte_order);
8d3b0994
AC
209 if (!first)
210 fprintf_filtered (stream, ", ");
211 fprintf_filtered (stream, "%ld", arg_value);
212 first = 0;
213 start += sizeof (int);
214 }
215}
216
93d86cef
JK
217/* Print single argument of inferior function. ARG must be already
218 read in.
219
220 Errors are printed as if they would be the parameter value. Use zeroed ARG
221 iff it should not be printed accoring to user settings. */
222
223static void
224print_frame_arg (const struct frame_arg *arg)
225{
226 struct ui_out *uiout = current_uiout;
93d86cef 227 struct cleanup *old_chain;
492d29ea 228 const char *error_message = NULL;
93d86cef 229
d7e74731 230 string_file stb;
93d86cef
JK
231
232 gdb_assert (!arg->val || !arg->error);
e18b2753
JK
233 gdb_assert (arg->entry_kind == print_entry_values_no
234 || arg->entry_kind == print_entry_values_only
112e8700 235 || (!uiout->is_mi_like_p ()
e18b2753 236 && arg->entry_kind == print_entry_values_compact));
93d86cef
JK
237
238 annotate_arg_begin ();
239
d7e74731
PA
240 old_chain = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
241 fprintf_symbol_filtered (&stb, SYMBOL_PRINT_NAME (arg->sym),
93d86cef 242 SYMBOL_LANGUAGE (arg->sym), DMGL_PARAMS | DMGL_ANSI);
e18b2753
JK
243 if (arg->entry_kind == print_entry_values_compact)
244 {
245 /* It is OK to provide invalid MI-like stream as with
246 PRINT_ENTRY_VALUE_COMPACT we never use MI. */
d7e74731 247 stb.puts ("=");
e18b2753 248
d7e74731 249 fprintf_symbol_filtered (&stb, SYMBOL_PRINT_NAME (arg->sym),
e18b2753
JK
250 SYMBOL_LANGUAGE (arg->sym),
251 DMGL_PARAMS | DMGL_ANSI);
252 }
253 if (arg->entry_kind == print_entry_values_only
254 || arg->entry_kind == print_entry_values_compact)
d7e74731 255 stb.puts ("@entry");
112e8700 256 uiout->field_stream ("name", stb);
93d86cef 257 annotate_arg_name_end ();
112e8700 258 uiout->text ("=");
93d86cef
JK
259
260 if (!arg->val && !arg->error)
112e8700 261 uiout->text ("...");
93d86cef
JK
262 else
263 {
264 if (arg->error)
492d29ea 265 error_message = arg->error;
93d86cef
JK
266 else
267 {
492d29ea 268 TRY
93d86cef
JK
269 {
270 const struct language_defn *language;
271 struct value_print_options opts;
272
273 /* Avoid value_print because it will deref ref parameters. We
274 just want to print their addresses. Print ??? for args whose
275 address we do not know. We pass 2 as "recurse" to val_print
276 because our standard indentation here is 4 spaces, and
277 val_print indents 2 for each recurse. */
278
279 annotate_arg_value (value_type (arg->val));
280
281 /* Use the appropriate language to display our symbol, unless the
282 user forced the language to a specific language. */
283 if (language_mode == language_mode_auto)
284 language = language_def (SYMBOL_LANGUAGE (arg->sym));
285 else
286 language = current_language;
287
2a998fc0 288 get_no_prettyformat_print_options (&opts);
3343315b 289 opts.deref_ref = 1;
e7045703 290 opts.raw = print_raw_frame_arguments;
93d86cef
JK
291
292 /* True in "summary" mode, false otherwise. */
293 opts.summary = !strcmp (print_frame_arguments, "scalars");
294
d7e74731 295 common_val_print (arg->val, &stb, 2, &opts, language);
93d86cef 296 }
492d29ea
PA
297 CATCH (except, RETURN_MASK_ERROR)
298 {
299 error_message = except.message;
300 }
301 END_CATCH
93d86cef 302 }
492d29ea 303 if (error_message != NULL)
d7e74731 304 stb.printf (_("<error reading variable: %s>"), error_message);
93d86cef
JK
305 }
306
112e8700 307 uiout->field_stream ("value", stb);
93d86cef 308
f99d8bf4 309 /* Also invoke ui_out_tuple_end. */
93d86cef
JK
310 do_cleanups (old_chain);
311
312 annotate_arg_end ();
313}
314
82a0a75f
YQ
315/* Read in inferior function local SYM at FRAME into ARGP. Caller is
316 responsible for xfree of ARGP->ERROR. This function never throws an
317 exception. */
318
319void
320read_frame_local (struct symbol *sym, struct frame_info *frame,
321 struct frame_arg *argp)
322{
492d29ea
PA
323 argp->sym = sym;
324 argp->val = NULL;
325 argp->error = NULL;
326
327 TRY
82a0a75f 328 {
63e43d3a 329 argp->val = read_var_value (sym, NULL, frame);
82a0a75f 330 }
492d29ea
PA
331 CATCH (except, RETURN_MASK_ERROR)
332 {
333 argp->error = xstrdup (except.message);
334 }
335 END_CATCH
82a0a75f
YQ
336}
337
93d86cef
JK
338/* Read in inferior function parameter SYM at FRAME into ARGP. Caller is
339 responsible for xfree of ARGP->ERROR. This function never throws an
340 exception. */
341
342void
343read_frame_arg (struct symbol *sym, struct frame_info *frame,
e18b2753 344 struct frame_arg *argp, struct frame_arg *entryargp)
93d86cef 345{
e18b2753
JK
346 struct value *val = NULL, *entryval = NULL;
347 char *val_error = NULL, *entryval_error = NULL;
348 int val_equal = 0;
93d86cef 349
e18b2753
JK
350 if (print_entry_values != print_entry_values_only
351 && print_entry_values != print_entry_values_preferred)
352 {
492d29ea 353 TRY
e18b2753 354 {
63e43d3a 355 val = read_var_value (sym, NULL, frame);
e18b2753 356 }
492d29ea 357 CATCH (except, RETURN_MASK_ERROR)
e18b2753 358 {
224c3ddb 359 val_error = (char *) alloca (strlen (except.message) + 1);
e18b2753
JK
360 strcpy (val_error, except.message);
361 }
492d29ea 362 END_CATCH
e18b2753
JK
363 }
364
24d6c2a0
TT
365 if (SYMBOL_COMPUTED_OPS (sym) != NULL
366 && SYMBOL_COMPUTED_OPS (sym)->read_variable_at_entry != NULL
e18b2753
JK
367 && print_entry_values != print_entry_values_no
368 && (print_entry_values != print_entry_values_if_needed
369 || !val || value_optimized_out (val)))
370 {
492d29ea 371 TRY
e18b2753
JK
372 {
373 const struct symbol_computed_ops *ops;
374
375 ops = SYMBOL_COMPUTED_OPS (sym);
376 entryval = ops->read_variable_at_entry (sym, frame);
377 }
492d29ea 378 CATCH (except, RETURN_MASK_ERROR)
e18b2753 379 {
492d29ea
PA
380 if (except.error != NO_ENTRY_VALUE_ERROR)
381 {
382 entryval_error = (char *) alloca (strlen (except.message) + 1);
383 strcpy (entryval_error, except.message);
384 }
e18b2753 385 }
492d29ea 386 END_CATCH
e18b2753 387
492d29ea
PA
388 if (entryval != NULL && value_optimized_out (entryval))
389 entryval = NULL;
e18b2753
JK
390
391 if (print_entry_values == print_entry_values_compact
392 || print_entry_values == print_entry_values_default)
393 {
394 /* For MI do not try to use print_entry_values_compact for ARGP. */
395
112e8700 396 if (val && entryval && !current_uiout->is_mi_like_p ())
e18b2753 397 {
744a8059 398 struct type *type = value_type (val);
e18b2753 399
9a0dc9e3
PA
400 if (value_lazy (val))
401 value_fetch_lazy (val);
402 if (value_lazy (entryval))
403 value_fetch_lazy (entryval);
404
405 if (value_contents_eq (val, 0, entryval, 0, TYPE_LENGTH (type)))
e18b2753 406 {
509f0fd9
JK
407 /* Initialize it just to avoid a GCC false warning. */
408 struct value *val_deref = NULL, *entryval_deref;
a471c594
JK
409
410 /* DW_AT_GNU_call_site_value does match with the current
411 value. If it is a reference still try to verify if
412 dereferenced DW_AT_GNU_call_site_data_value does not
413 differ. */
414
492d29ea 415 TRY
a471c594 416 {
744a8059 417 struct type *type_deref;
a471c594
JK
418
419 val_deref = coerce_ref (val);
420 if (value_lazy (val_deref))
421 value_fetch_lazy (val_deref);
744a8059 422 type_deref = value_type (val_deref);
a471c594
JK
423
424 entryval_deref = coerce_ref (entryval);
425 if (value_lazy (entryval_deref))
426 value_fetch_lazy (entryval_deref);
427
428 /* If the reference addresses match but dereferenced
429 content does not match print them. */
430 if (val != val_deref
9a0dc9e3
PA
431 && value_contents_eq (val_deref, 0,
432 entryval_deref, 0,
433 TYPE_LENGTH (type_deref)))
a471c594
JK
434 val_equal = 1;
435 }
492d29ea
PA
436 CATCH (except, RETURN_MASK_ERROR)
437 {
438 /* If the dereferenced content could not be
439 fetched do not display anything. */
440 if (except.error == NO_ENTRY_VALUE_ERROR)
441 val_equal = 1;
442 else if (except.message != NULL)
443 {
444 entryval_error = (char *) alloca (strlen (except.message) + 1);
445 strcpy (entryval_error, except.message);
446 }
447 }
448 END_CATCH
a471c594
JK
449
450 /* Value was not a reference; and its content matches. */
451 if (val == val_deref)
452 val_equal = 1;
a471c594
JK
453
454 if (val_equal)
455 entryval = NULL;
e18b2753
JK
456 }
457 }
458
459 /* Try to remove possibly duplicate error message for ENTRYARGP even
460 in MI mode. */
461
462 if (val_error && entryval_error
463 && strcmp (val_error, entryval_error) == 0)
464 {
465 entryval_error = NULL;
466
467 /* Do not se VAL_EQUAL as the same error message may be shown for
468 the entry value even if no entry values are present in the
469 inferior. */
470 }
471 }
472 }
473
474 if (entryval == NULL)
93d86cef 475 {
e18b2753
JK
476 if (print_entry_values == print_entry_values_preferred)
477 {
492d29ea
PA
478 gdb_assert (val == NULL);
479
480 TRY
e18b2753 481 {
63e43d3a 482 val = read_var_value (sym, NULL, frame);
e18b2753 483 }
492d29ea 484 CATCH (except, RETURN_MASK_ERROR)
e18b2753 485 {
224c3ddb 486 val_error = (char *) alloca (strlen (except.message) + 1);
e18b2753
JK
487 strcpy (val_error, except.message);
488 }
492d29ea 489 END_CATCH
e18b2753
JK
490 }
491 if (print_entry_values == print_entry_values_only
492 || print_entry_values == print_entry_values_both
493 || (print_entry_values == print_entry_values_preferred
494 && (!val || value_optimized_out (val))))
1ed8d800
YQ
495 {
496 entryval = allocate_optimized_out_value (SYMBOL_TYPE (sym));
497 entryval_error = NULL;
498 }
93d86cef 499 }
e18b2753
JK
500 if ((print_entry_values == print_entry_values_compact
501 || print_entry_values == print_entry_values_if_needed
502 || print_entry_values == print_entry_values_preferred)
503 && (!val || value_optimized_out (val)) && entryval != NULL)
93d86cef 504 {
e18b2753
JK
505 val = NULL;
506 val_error = NULL;
93d86cef
JK
507 }
508
509 argp->sym = sym;
510 argp->val = val;
511 argp->error = val_error ? xstrdup (val_error) : NULL;
e18b2753
JK
512 if (!val && !val_error)
513 argp->entry_kind = print_entry_values_only;
514 else if ((print_entry_values == print_entry_values_compact
515 || print_entry_values == print_entry_values_default) && val_equal)
516 {
517 argp->entry_kind = print_entry_values_compact;
112e8700 518 gdb_assert (!current_uiout->is_mi_like_p ());
e18b2753
JK
519 }
520 else
521 argp->entry_kind = print_entry_values_no;
522
523 entryargp->sym = sym;
524 entryargp->val = entryval;
525 entryargp->error = entryval_error ? xstrdup (entryval_error) : NULL;
526 if (!entryval && !entryval_error)
527 entryargp->entry_kind = print_entry_values_no;
528 else
529 entryargp->entry_kind = print_entry_values_only;
93d86cef
JK
530}
531
033a42c2
MK
532/* Print the arguments of frame FRAME on STREAM, given the function
533 FUNC running in that frame (as a symbol), where NUM is the number
534 of arguments according to the stack frame (or -1 if the number of
535 arguments is unknown). */
8d3b0994 536
e3168615 537/* Note that currently the "number of arguments according to the
033a42c2 538 stack frame" is only known on VAX where i refers to the "number of
e3168615 539 ints of arguments according to the stack frame". */
8d3b0994
AC
540
541static void
033a42c2
MK
542print_frame_args (struct symbol *func, struct frame_info *frame,
543 int num, struct ui_file *stream)
8d3b0994 544{
79a45e25 545 struct ui_out *uiout = current_uiout;
8d3b0994 546 int first = 1;
8d3b0994 547 /* Offset of next stack argument beyond the one we have seen that is
033a42c2
MK
548 at the highest offset, or -1 if we haven't come to a stack
549 argument yet. */
8d3b0994 550 long highest_offset = -1;
8d3b0994
AC
551 /* Number of ints of arguments that we have printed so far. */
552 int args_printed = 0;
a6bac58e
TT
553 /* True if we should print arguments, false otherwise. */
554 int print_args = strcmp (print_frame_arguments, "none");
8d3b0994 555
8d3b0994
AC
556 if (func)
557 {
3977b71f 558 const struct block *b = SYMBOL_BLOCK_VALUE (func);
8157b174 559 struct block_iterator iter;
033a42c2 560 struct symbol *sym;
8d3b0994 561
de4f826b 562 ALL_BLOCK_SYMBOLS (b, iter, sym)
8d3b0994 563 {
e18b2753 564 struct frame_arg arg, entryarg;
93d86cef 565
8d3b0994
AC
566 QUIT;
567
568 /* Keep track of the highest stack argument offset seen, and
569 skip over any kinds of symbols we don't care about. */
570
2a2d4dc3
AS
571 if (!SYMBOL_IS_ARGUMENT (sym))
572 continue;
573
8d3b0994
AC
574 switch (SYMBOL_CLASS (sym))
575 {
576 case LOC_ARG:
577 case LOC_REF_ARG:
578 {
579 long current_offset = SYMBOL_VALUE (sym);
033a42c2 580 int arg_size = TYPE_LENGTH (SYMBOL_TYPE (sym));
8d3b0994
AC
581
582 /* Compute address of next argument by adding the size of
583 this argument and rounding to an int boundary. */
584 current_offset =
585 ((current_offset + arg_size + sizeof (int) - 1)
586 & ~(sizeof (int) - 1));
587
033a42c2
MK
588 /* If this is the highest offset seen yet, set
589 highest_offset. */
8d3b0994
AC
590 if (highest_offset == -1
591 || (current_offset > highest_offset))
592 highest_offset = current_offset;
593
033a42c2
MK
594 /* Add the number of ints we're about to print to
595 args_printed. */
8d3b0994
AC
596 args_printed += (arg_size + sizeof (int) - 1) / sizeof (int);
597 }
598
033a42c2
MK
599 /* We care about types of symbols, but don't need to
600 keep track of stack offsets in them. */
2a2d4dc3 601 case LOC_REGISTER:
8d3b0994 602 case LOC_REGPARM_ADDR:
2a2d4dc3
AS
603 case LOC_COMPUTED:
604 case LOC_OPTIMIZED_OUT:
8d3b0994 605 default:
2a2d4dc3 606 break;
8d3b0994
AC
607 }
608
609 /* We have to look up the symbol because arguments can have
610 two entries (one a parameter, one a local) and the one we
611 want is the local, which lookup_symbol will find for us.
033a42c2 612 This includes gcc1 (not gcc2) on SPARC when passing a
8d3b0994
AC
613 small structure and gcc2 when the argument type is float
614 and it is passed as a double and converted to float by
615 the prologue (in the latter case the type of the LOC_ARG
616 symbol is double and the type of the LOC_LOCAL symbol is
617 float). */
033a42c2
MK
618 /* But if the parameter name is null, don't try it. Null
619 parameter names occur on the RS/6000, for traceback
620 tables. FIXME, should we even print them? */
8d3b0994 621
3567439c 622 if (*SYMBOL_LINKAGE_NAME (sym))
8d3b0994
AC
623 {
624 struct symbol *nsym;
433759f7 625
3567439c 626 nsym = lookup_symbol (SYMBOL_LINKAGE_NAME (sym),
d12307c1 627 b, VAR_DOMAIN, NULL).symbol;
55765a25 628 gdb_assert (nsym != NULL);
2a2d4dc3
AS
629 if (SYMBOL_CLASS (nsym) == LOC_REGISTER
630 && !SYMBOL_IS_ARGUMENT (nsym))
8d3b0994 631 {
033a42c2
MK
632 /* There is a LOC_ARG/LOC_REGISTER pair. This means
633 that it was passed on the stack and loaded into a
634 register, or passed in a register and stored in a
635 stack slot. GDB 3.x used the LOC_ARG; GDB
636 4.0-4.11 used the LOC_REGISTER.
8d3b0994
AC
637
638 Reasons for using the LOC_ARG:
033a42c2
MK
639
640 (1) Because find_saved_registers may be slow for
641 remote debugging.
642
643 (2) Because registers are often re-used and stack
644 slots rarely (never?) are. Therefore using
645 the stack slot is much less likely to print
646 garbage.
8d3b0994
AC
647
648 Reasons why we might want to use the LOC_REGISTER:
033a42c2
MK
649
650 (1) So that the backtrace prints the same value
651 as "print foo". I see no compelling reason
652 why this needs to be the case; having the
653 backtrace print the value which was passed
654 in, and "print foo" print the value as
655 modified within the called function, makes
656 perfect sense to me.
657
658 Additional note: It might be nice if "info args"
659 displayed both values.
660
661 One more note: There is a case with SPARC
662 structure passing where we need to use the
663 LOC_REGISTER, but this is dealt with by creating
664 a single LOC_REGPARM in symbol reading. */
8d3b0994
AC
665
666 /* Leave sym (the LOC_ARG) alone. */
667 ;
668 }
669 else
670 sym = nsym;
671 }
672
673 /* Print the current arg. */
674 if (!first)
112e8700
SM
675 uiout->text (", ");
676 uiout->wrap_hint (" ");
8d3b0994 677
93d86cef
JK
678 if (!print_args)
679 {
680 memset (&arg, 0, sizeof (arg));
681 arg.sym = sym;
e18b2753
JK
682 arg.entry_kind = print_entry_values_no;
683 memset (&entryarg, 0, sizeof (entryarg));
684 entryarg.sym = sym;
685 entryarg.entry_kind = print_entry_values_no;
93d86cef
JK
686 }
687 else
e18b2753 688 read_frame_arg (sym, frame, &arg, &entryarg);
8d3b0994 689
e18b2753
JK
690 if (arg.entry_kind != print_entry_values_only)
691 print_frame_arg (&arg);
692
693 if (entryarg.entry_kind != print_entry_values_no)
694 {
695 if (arg.entry_kind != print_entry_values_only)
696 {
112e8700
SM
697 uiout->text (", ");
698 uiout->wrap_hint (" ");
e18b2753
JK
699 }
700
701 print_frame_arg (&entryarg);
702 }
8d3b0994 703
93d86cef 704 xfree (arg.error);
e18b2753 705 xfree (entryarg.error);
8d3b0994
AC
706
707 first = 0;
708 }
709 }
710
711 /* Don't print nameless args in situations where we don't know
712 enough about the stack to find them. */
713 if (num != -1)
714 {
715 long start;
716
717 if (highest_offset == -1)
7500260a 718 start = gdbarch_frame_args_skip (get_frame_arch (frame));
8d3b0994
AC
719 else
720 start = highest_offset;
721
033a42c2 722 print_frame_nameless_args (frame, start, num - args_printed,
8d3b0994
AC
723 first, stream);
724 }
8d3b0994
AC
725}
726
033a42c2
MK
727/* Set the current source and line to the location given by frame
728 FRAME, if possible. When CENTER is true, adjust so the relevant
729 line is in the center of the next 'list'. */
c789492a 730
7abfe014 731void
5166082f 732set_current_sal_from_frame (struct frame_info *frame)
c789492a
FL
733{
734 struct symtab_and_line sal;
735
033a42c2 736 find_frame_sal (frame, &sal);
5166082f
PA
737 if (sal.symtab != NULL)
738 set_current_source_symtab_and_line (&sal);
c789492a
FL
739}
740
30c33a9f
HZ
741/* If ON, GDB will display disassembly of the next source line when
742 execution of the program being debugged stops.
481df73e
HZ
743 If AUTO (which is the default), or there's no line info to determine
744 the source line of the next instruction, display disassembly of next
745 instruction instead. */
30c33a9f
HZ
746
747static enum auto_boolean disassemble_next_line;
748
749static void
750show_disassemble_next_line (struct ui_file *file, int from_tty,
751 struct cmd_list_element *c,
752 const char *value)
753{
3e43a32a
MS
754 fprintf_filtered (file,
755 _("Debugger's willingness to use "
756 "disassemble-next-line is %s.\n"),
30c33a9f
HZ
757 value);
758}
759
30c33a9f
HZ
760/* Use TRY_CATCH to catch the exception from the gdb_disassembly
761 because it will be broken by filter sometime. */
762
763static void
13274fc3
UW
764do_gdb_disassembly (struct gdbarch *gdbarch,
765 int how_many, CORE_ADDR low, CORE_ADDR high)
30c33a9f 766{
30c33a9f 767
492d29ea 768 TRY
30c33a9f 769 {
7a8eb317 770 gdb_disassembly (gdbarch, current_uiout,
79a45e25
PA
771 DISASSEMBLY_RAW_INSN, how_many,
772 low, high);
30c33a9f 773 }
492d29ea 774 CATCH (exception, RETURN_MASK_ERROR)
b1d288d3
JK
775 {
776 /* If an exception was thrown while doing the disassembly, print
777 the error message, to give the user a clue of what happened. */
778 exception_print (gdb_stderr, exception);
779 }
492d29ea 780 END_CATCH
30c33a9f
HZ
781}
782
033a42c2 783/* Print information about frame FRAME. The output is format according
65aa373f 784 to PRINT_LEVEL and PRINT_WHAT and PRINT_ARGS. The meaning of
033a42c2
MK
785 PRINT_WHAT is:
786
787 SRC_LINE: Print only source line.
788 LOCATION: Print only location.
789 LOC_AND_SRC: Print location and source line.
790
791 Used in "where" output, and to emit breakpoint or step
792 messages. */
c906108c 793
7789c6f5 794void
033a42c2 795print_frame_info (struct frame_info *frame, int print_level,
08d72866
PA
796 enum print_what print_what, int print_args,
797 int set_current_sal)
c906108c 798{
5af949e3 799 struct gdbarch *gdbarch = get_frame_arch (frame);
c906108c 800 struct symtab_and_line sal;
c5394b80
JM
801 int source_print;
802 int location_print;
79a45e25 803 struct ui_out *uiout = current_uiout;
c906108c 804
033a42c2 805 if (get_frame_type (frame) == DUMMY_FRAME
36f15f55
UW
806 || get_frame_type (frame) == SIGTRAMP_FRAME
807 || get_frame_type (frame) == ARCH_FRAME)
c906108c 808 {
075559bc
AC
809 struct cleanup *uiout_cleanup
810 = make_cleanup_ui_out_tuple_begin_end (uiout, "frame");
c906108c 811
033a42c2 812 annotate_frame_begin (print_level ? frame_relative_level (frame) : 0,
5af949e3 813 gdbarch, get_frame_pc (frame));
6a3fe0a4 814
c906108c 815 /* Do this regardless of SOURCE because we don't have any source
c5aa993b 816 to list for this frame. */
0faf0076 817 if (print_level)
52c6a6ac 818 {
112e8700
SM
819 uiout->text ("#");
820 uiout->field_fmt_int (2, ui_left, "level",
033a42c2 821 frame_relative_level (frame));
52c6a6ac 822 }
112e8700 823 if (uiout->is_mi_like_p ())
52c6a6ac 824 {
075559bc 825 annotate_frame_address ();
112e8700 826 uiout->field_core_addr ("addr",
5af949e3 827 gdbarch, get_frame_pc (frame));
075559bc 828 annotate_frame_address_end ();
52c6a6ac 829 }
6a3fe0a4 830
033a42c2 831 if (get_frame_type (frame) == DUMMY_FRAME)
075559bc
AC
832 {
833 annotate_function_call ();
112e8700 834 uiout->field_string ("func", "<function called from gdb>");
075559bc 835 }
033a42c2 836 else if (get_frame_type (frame) == SIGTRAMP_FRAME)
075559bc
AC
837 {
838 annotate_signal_handler_caller ();
112e8700 839 uiout->field_string ("func", "<signal handler called>");
075559bc 840 }
36f15f55
UW
841 else if (get_frame_type (frame) == ARCH_FRAME)
842 {
112e8700 843 uiout->field_string ("func", "<cross-architecture call>");
36f15f55 844 }
112e8700 845 uiout->text ("\n");
c906108c 846 annotate_frame_end ();
075559bc 847
433e77fa
HZ
848 /* If disassemble-next-line is set to auto or on output the next
849 instruction. */
850 if (disassemble_next_line == AUTO_BOOLEAN_AUTO
851 || disassemble_next_line == AUTO_BOOLEAN_TRUE)
852 do_gdb_disassembly (get_frame_arch (frame), 1,
853 get_frame_pc (frame), get_frame_pc (frame) + 1);
854
075559bc 855 do_cleanups (uiout_cleanup);
c906108c
SS
856 return;
857 }
858
033a42c2
MK
859 /* If FRAME is not the innermost frame, that normally means that
860 FRAME->pc points to *after* the call instruction, and we want to
861 get the line containing the call, never the next line. But if
862 the next frame is a SIGTRAMP_FRAME or a DUMMY_FRAME, then the
863 next frame was not entered as the result of a call, and we want
864 to get the line containing FRAME->pc. */
865 find_frame_sal (frame, &sal);
c906108c 866
0faf0076
AC
867 location_print = (print_what == LOCATION
868 || print_what == LOC_AND_ADDRESS
869 || print_what == SRC_AND_LOC);
c5394b80
JM
870
871 if (location_print || !sal.symtab)
033a42c2 872 print_frame (frame, print_level, print_what, print_args, sal);
c5394b80 873
0faf0076 874 source_print = (print_what == SRC_LINE || print_what == SRC_AND_LOC);
0378c332 875
30c33a9f
HZ
876 /* If disassemble-next-line is set to auto or on and doesn't have
877 the line debug messages for $pc, output the next instruction. */
878 if ((disassemble_next_line == AUTO_BOOLEAN_AUTO
879 || disassemble_next_line == AUTO_BOOLEAN_TRUE)
880 && source_print && !sal.symtab)
13274fc3
UW
881 do_gdb_disassembly (get_frame_arch (frame), 1,
882 get_frame_pc (frame), get_frame_pc (frame) + 1);
30c33a9f 883
c5394b80
JM
884 if (source_print && sal.symtab)
885 {
886 int done = 0;
0faf0076 887 int mid_statement = ((print_what == SRC_LINE)
edb3359d 888 && frame_show_address (frame, sal));
c5394b80
JM
889
890 if (annotation_level)
891 done = identify_source_line (sal.symtab, sal.line, mid_statement,
033a42c2 892 get_frame_pc (frame));
c5394b80
JM
893 if (!done)
894 {
9a4105ab 895 if (deprecated_print_frame_info_listing_hook)
cbd3c883
MS
896 deprecated_print_frame_info_listing_hook (sal.symtab,
897 sal.line,
898 sal.line + 1, 0);
ba4bbdcb 899 else
c5394b80 900 {
79a45b7d 901 struct value_print_options opts;
433759f7 902
79a45b7d 903 get_user_print_options (&opts);
ba4bbdcb 904 /* We used to do this earlier, but that is clearly
c378eb4e 905 wrong. This function is used by many different
ba4bbdcb
KS
906 parts of gdb, including normal_stop in infrun.c,
907 which uses this to print out the current PC
908 when we stepi/nexti into the middle of a source
c378eb4e
MS
909 line. Only the command line really wants this
910 behavior. Other UIs probably would like the
cbd3c883 911 ability to decide for themselves if it is desired. */
79a45b7d 912 if (opts.addressprint && mid_statement)
ba4bbdcb 913 {
112e8700 914 uiout->field_core_addr ("addr",
5af949e3 915 gdbarch, get_frame_pc (frame));
112e8700 916 uiout->text ("\t");
ba4bbdcb
KS
917 }
918
919 print_source_lines (sal.symtab, sal.line, sal.line + 1, 0);
c5394b80 920 }
c5394b80 921 }
30c33a9f
HZ
922
923 /* If disassemble-next-line is set to on and there is line debug
924 messages, output assembly codes for next line. */
925 if (disassemble_next_line == AUTO_BOOLEAN_TRUE)
2b28d209 926 do_gdb_disassembly (get_frame_arch (frame), -1, sal.pc, sal.end);
c5394b80
JM
927 }
928
08d72866 929 if (set_current_sal)
e3eebbd7
PA
930 {
931 CORE_ADDR pc;
932
933 if (get_frame_pc_if_available (frame, &pc))
1bfeeb0f 934 set_last_displayed_sal (1, sal.pspace, pc, sal.symtab, sal.line);
e3eebbd7 935 else
1bfeeb0f 936 set_last_displayed_sal (0, 0, 0, 0, 0);
e3eebbd7 937 }
c5394b80
JM
938
939 annotate_frame_end ();
940
941 gdb_flush (gdb_stdout);
942}
943
1bfeeb0f
JL
944/* Remember the last symtab and line we displayed, which we use e.g.
945 * as the place to put a breakpoint when the `break' command is
946 * invoked with no arguments. */
947
948static void
949set_last_displayed_sal (int valid, struct program_space *pspace,
950 CORE_ADDR addr, struct symtab *symtab,
951 int line)
952{
953 last_displayed_sal_valid = valid;
954 last_displayed_pspace = pspace;
955 last_displayed_addr = addr;
956 last_displayed_symtab = symtab;
957 last_displayed_line = line;
4cb6da1c
AR
958 if (valid && pspace == NULL)
959 {
4cb6da1c 960 clear_last_displayed_sal ();
e36930bb
PA
961 internal_error (__FILE__, __LINE__,
962 _("Trying to set NULL pspace."));
4cb6da1c 963 }
1bfeeb0f
JL
964}
965
966/* Forget the last sal we displayed. */
967
968void
969clear_last_displayed_sal (void)
970{
971 last_displayed_sal_valid = 0;
972 last_displayed_pspace = 0;
973 last_displayed_addr = 0;
974 last_displayed_symtab = 0;
975 last_displayed_line = 0;
976}
977
978/* Is our record of the last sal we displayed valid? If not,
979 * the get_last_displayed_* functions will return NULL or 0, as
980 * appropriate. */
981
982int
983last_displayed_sal_is_valid (void)
984{
985 return last_displayed_sal_valid;
986}
987
988/* Get the pspace of the last sal we displayed, if it's valid. */
989
990struct program_space *
991get_last_displayed_pspace (void)
992{
993 if (last_displayed_sal_valid)
994 return last_displayed_pspace;
995 return 0;
996}
997
998/* Get the address of the last sal we displayed, if it's valid. */
999
1000CORE_ADDR
1001get_last_displayed_addr (void)
1002{
1003 if (last_displayed_sal_valid)
1004 return last_displayed_addr;
1005 return 0;
1006}
1007
1008/* Get the symtab of the last sal we displayed, if it's valid. */
1009
1010struct symtab*
1011get_last_displayed_symtab (void)
1012{
1013 if (last_displayed_sal_valid)
1014 return last_displayed_symtab;
1015 return 0;
1016}
1017
1018/* Get the line of the last sal we displayed, if it's valid. */
1019
1020int
1021get_last_displayed_line (void)
1022{
1023 if (last_displayed_sal_valid)
1024 return last_displayed_line;
1025 return 0;
1026}
1027
1028/* Get the last sal we displayed, if it's valid. */
1029
1030void
1031get_last_displayed_sal (struct symtab_and_line *sal)
1032{
1033 if (last_displayed_sal_valid)
1034 {
1035 sal->pspace = last_displayed_pspace;
1036 sal->pc = last_displayed_addr;
1037 sal->symtab = last_displayed_symtab;
1038 sal->line = last_displayed_line;
1039 }
1040 else
1041 {
1042 sal->pspace = 0;
1043 sal->pc = 0;
1044 sal->symtab = 0;
1045 sal->line = 0;
1046 }
1047}
1048
1049
e9e07ba6 1050/* Attempt to obtain the FUNNAME, FUNLANG and optionally FUNCP of the function
55b87a52 1051 corresponding to FRAME. FUNNAME needs to be freed by the caller. */
e9e07ba6 1052
f8f6f20b 1053void
55b87a52 1054find_frame_funname (struct frame_info *frame, char **funname,
e9e07ba6 1055 enum language *funlang, struct symbol **funcp)
c5394b80
JM
1056{
1057 struct symbol *func;
8b93c638 1058
f8f6f20b
TJB
1059 *funname = NULL;
1060 *funlang = language_unknown;
e9e07ba6
JK
1061 if (funcp)
1062 *funcp = NULL;
c5394b80 1063
edb3359d 1064 func = get_frame_function (frame);
c906108c
SS
1065 if (func)
1066 {
1067 /* In certain pathological cases, the symtabs give the wrong
c5aa993b
JM
1068 function (when we are in the first function in a file which
1069 is compiled without debugging symbols, the previous function
1070 is compiled with debugging symbols, and the "foo.o" symbol
033a42c2
MK
1071 that is supposed to tell us where the file with debugging
1072 symbols ends has been truncated by ar because it is longer
1073 than 15 characters). This also occurs if the user uses asm()
1074 to create a function but not stabs for it (in a file compiled
1075 with -g).
c5aa993b
JM
1076
1077 So look in the minimal symbol tables as well, and if it comes
1078 up with a larger address for the function use that instead.
033a42c2
MK
1079 I don't think this can ever cause any problems; there
1080 shouldn't be any minimal symbols in the middle of a function;
1081 if this is ever changed many parts of GDB will need to be
1082 changed (and we'll create a find_pc_minimal_function or some
1083 such). */
1084
7cbd4a93 1085 struct bound_minimal_symbol msymbol;
edb3359d
DJ
1086
1087 /* Don't attempt to do this for inlined functions, which do not
1088 have a corresponding minimal symbol. */
1089 if (!block_inlined_p (SYMBOL_BLOCK_VALUE (func)))
1090 msymbol
1091 = lookup_minimal_symbol_by_pc (get_frame_address_in_block (frame));
7cbd4a93
TT
1092 else
1093 memset (&msymbol, 0, sizeof (msymbol));
c906108c 1094
7cbd4a93 1095 if (msymbol.minsym != NULL
77e371c0 1096 && (BMSYMBOL_VALUE_ADDRESS (msymbol)
c906108c
SS
1097 > BLOCK_START (SYMBOL_BLOCK_VALUE (func))))
1098 {
c906108c
SS
1099 /* We also don't know anything about the function besides
1100 its address and name. */
1101 func = 0;
efd66ac6
TT
1102 *funname = xstrdup (MSYMBOL_PRINT_NAME (msymbol.minsym));
1103 *funlang = MSYMBOL_LANGUAGE (msymbol.minsym);
c906108c
SS
1104 }
1105 else
1106 {
d10153cf
TT
1107 const char *print_name = SYMBOL_PRINT_NAME (func);
1108
f8f6f20b 1109 *funlang = SYMBOL_LANGUAGE (func);
e9e07ba6
JK
1110 if (funcp)
1111 *funcp = func;
f8f6f20b 1112 if (*funlang == language_cplus)
c5aa993b 1113 {
033a42c2
MK
1114 /* It seems appropriate to use SYMBOL_PRINT_NAME() here,
1115 to display the demangled name that we already have
1116 stored in the symbol table, but we stored a version
1117 with DMGL_PARAMS turned on, and here we don't want to
3567439c 1118 display parameters. So remove the parameters. */
d10153cf 1119 char *func_only = cp_remove_params (print_name);
433759f7 1120
3567439c 1121 if (func_only)
d10153cf 1122 *funname = func_only;
c5aa993b 1123 }
d10153cf
TT
1124
1125 /* If we didn't hit the C++ case above, set *funname here.
1126 This approach is taken to avoid having to install a
1127 cleanup in case cp_remove_params can throw. */
1128 if (*funname == NULL)
1129 *funname = xstrdup (print_name);
c906108c
SS
1130 }
1131 }
1132 else
1133 {
7cbd4a93 1134 struct bound_minimal_symbol msymbol;
e3eebbd7 1135 CORE_ADDR pc;
033a42c2 1136
e3eebbd7
PA
1137 if (!get_frame_address_in_block_if_available (frame, &pc))
1138 return;
1139
1140 msymbol = lookup_minimal_symbol_by_pc (pc);
7cbd4a93 1141 if (msymbol.minsym != NULL)
c906108c 1142 {
efd66ac6
TT
1143 *funname = xstrdup (MSYMBOL_PRINT_NAME (msymbol.minsym));
1144 *funlang = MSYMBOL_LANGUAGE (msymbol.minsym);
c906108c
SS
1145 }
1146 }
f8f6f20b
TJB
1147}
1148
1149static void
1150print_frame (struct frame_info *frame, int print_level,
1151 enum print_what print_what, int print_args,
1152 struct symtab_and_line sal)
1153{
5af949e3 1154 struct gdbarch *gdbarch = get_frame_arch (frame);
79a45e25 1155 struct ui_out *uiout = current_uiout;
55b87a52 1156 char *funname = NULL;
f8f6f20b 1157 enum language funlang = language_unknown;
f8f6f20b
TJB
1158 struct cleanup *old_chain, *list_chain;
1159 struct value_print_options opts;
e9e07ba6 1160 struct symbol *func;
e3eebbd7
PA
1161 CORE_ADDR pc = 0;
1162 int pc_p;
1163
1164 pc_p = get_frame_pc_if_available (frame, &pc);
f8f6f20b 1165
f8f6f20b 1166
e9e07ba6 1167 find_frame_funname (frame, &funname, &funlang, &func);
d7e74731 1168 old_chain = make_cleanup (xfree, funname);
c906108c 1169
033a42c2 1170 annotate_frame_begin (print_level ? frame_relative_level (frame) : 0,
e3eebbd7 1171 gdbarch, pc);
c5394b80 1172
666547aa 1173 list_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "frame");
c5394b80 1174
0faf0076 1175 if (print_level)
8b93c638 1176 {
112e8700
SM
1177 uiout->text ("#");
1178 uiout->field_fmt_int (2, ui_left, "level",
033a42c2 1179 frame_relative_level (frame));
8b93c638 1180 }
79a45b7d
TT
1181 get_user_print_options (&opts);
1182 if (opts.addressprint)
e3eebbd7
PA
1183 if (!sal.symtab
1184 || frame_show_address (frame, sal)
0faf0076 1185 || print_what == LOC_AND_ADDRESS)
c5394b80
JM
1186 {
1187 annotate_frame_address ();
e3eebbd7 1188 if (pc_p)
112e8700 1189 uiout->field_core_addr ("addr", gdbarch, pc);
e3eebbd7 1190 else
112e8700 1191 uiout->field_string ("addr", "<unavailable>");
8b93c638 1192 annotate_frame_address_end ();
112e8700 1193 uiout->text (" in ");
c5394b80
JM
1194 }
1195 annotate_frame_function_name ();
d7e74731
PA
1196
1197 string_file stb;
1198 fprintf_symbol_filtered (&stb, funname ? funname : "??",
033a42c2 1199 funlang, DMGL_ANSI);
112e8700
SM
1200 uiout->field_stream ("func", stb);
1201 uiout->wrap_hint (" ");
c5394b80
JM
1202 annotate_frame_args ();
1203
112e8700 1204 uiout->text (" (");
0faf0076 1205 if (print_args)
c906108c 1206 {
311b5970
JK
1207 struct gdbarch *gdbarch = get_frame_arch (frame);
1208 int numargs;
d493eb33 1209 struct cleanup *args_list_chain;
433759f7 1210
311b5970
JK
1211 if (gdbarch_frame_num_args_p (gdbarch))
1212 {
1213 numargs = gdbarch_frame_num_args (gdbarch, frame);
1214 gdb_assert (numargs >= 0);
1215 }
1216 else
1217 numargs = -1;
1218
68c81b54 1219 args_list_chain = make_cleanup_ui_out_list_begin_end (uiout, "args");
492d29ea 1220 TRY
311b5970
JK
1221 {
1222 print_frame_args (func, frame, numargs, gdb_stdout);
1223 }
492d29ea
PA
1224 CATCH (e, RETURN_MASK_ERROR)
1225 {
1226 }
1227 END_CATCH
1228
c378eb4e 1229 /* FIXME: ARGS must be a list. If one argument is a string it
033a42c2 1230 will have " that will not be properly escaped. */
666547aa 1231 /* Invoke ui_out_tuple_end. */
d493eb33 1232 do_cleanups (args_list_chain);
c5394b80
JM
1233 QUIT;
1234 }
112e8700 1235 uiout->text (")");
4e04028d 1236 if (sal.symtab)
c5394b80 1237 {
1b56eb55
JK
1238 const char *filename_display;
1239
1240 filename_display = symtab_to_filename_for_display (sal.symtab);
c5394b80 1241 annotate_frame_source_begin ();
112e8700
SM
1242 uiout->wrap_hint (" ");
1243 uiout->text (" at ");
8b93c638 1244 annotate_frame_source_file ();
112e8700
SM
1245 uiout->field_string ("file", filename_display);
1246 if (uiout->is_mi_like_p ())
76ff342d
DJ
1247 {
1248 const char *fullname = symtab_to_fullname (sal.symtab);
433759f7 1249
112e8700 1250 uiout->field_string ("fullname", fullname);
76ff342d 1251 }
8b93c638 1252 annotate_frame_source_file_end ();
112e8700 1253 uiout->text (":");
8b93c638 1254 annotate_frame_source_line ();
112e8700 1255 uiout->field_int ("line", sal.line);
c5394b80
JM
1256 annotate_frame_source_end ();
1257 }
c906108c 1258
4e04028d 1259 if (pc_p && (funname == NULL || sal.symtab == NULL))
c906108c 1260 {
6c95b8df
PA
1261 char *lib = solib_name_from_address (get_frame_program_space (frame),
1262 get_frame_pc (frame));
4d1eb6b4 1263
c5394b80 1264 if (lib)
c906108c 1265 {
c5394b80 1266 annotate_frame_where ();
112e8700
SM
1267 uiout->wrap_hint (" ");
1268 uiout->text (" from ");
1269 uiout->field_string ("from", lib);
c906108c 1270 }
c906108c 1271 }
e514a9d6 1272
666547aa 1273 /* do_cleanups will call ui_out_tuple_end() for us. */
e6e0bfab 1274 do_cleanups (list_chain);
112e8700 1275 uiout->text ("\n");
8b93c638 1276 do_cleanups (old_chain);
c906108c
SS
1277}
1278\f
c5aa993b 1279
a0d34a39
AB
1280/* Read a frame specification in whatever the appropriate format is from
1281 FRAME_EXP. Call error() if the specification is in any way invalid (so
34f81801
SM
1282 this function never returns NULL). When SELECTED_FRAME_P is non-NULL
1283 set its target to indicate that the default selected frame was used. */
c906108c 1284
1c8831c5 1285static struct frame_info *
a0d34a39 1286parse_frame_specification (const char *frame_exp, int *selected_frame_p)
c906108c 1287{
1c8831c5
AC
1288 int numargs;
1289 struct value *args[4];
1290 CORE_ADDR addrs[ARRAY_SIZE (args)];
c5aa993b 1291
1c8831c5
AC
1292 if (frame_exp == NULL)
1293 numargs = 0;
1294 else
c906108c 1295 {
1c8831c5
AC
1296 numargs = 0;
1297 while (1)
c906108c 1298 {
1c8831c5
AC
1299 char *addr_string;
1300 struct cleanup *cleanup;
1301 const char *p;
1302
1303 /* Skip leading white space, bail of EOL. */
529480d0 1304 frame_exp = skip_spaces_const (frame_exp);
1c8831c5
AC
1305 if (!*frame_exp)
1306 break;
c906108c 1307
1c8831c5
AC
1308 /* Parse the argument, extract it, save it. */
1309 for (p = frame_exp;
8d3fea16 1310 *p && !ISSPACE (*p);
1c8831c5
AC
1311 p++);
1312 addr_string = savestring (frame_exp, p - frame_exp);
c906108c 1313 frame_exp = p;
1c8831c5
AC
1314 cleanup = make_cleanup (xfree, addr_string);
1315
1316 /* NOTE: Parse and evaluate expression, but do not use
1317 functions such as parse_and_eval_long or
1318 parse_and_eval_address to also extract the value.
1319 Instead value_as_long and value_as_address are used.
1320 This avoids problems with expressions that contain
1321 side-effects. */
1322 if (numargs >= ARRAY_SIZE (args))
8a3fe4f8 1323 error (_("Too many args in frame specification"));
1c8831c5
AC
1324 args[numargs++] = parse_and_eval (addr_string);
1325
1326 do_cleanups (cleanup);
c906108c
SS
1327 }
1328 }
1329
1c8831c5
AC
1330 /* If no args, default to the selected frame. */
1331 if (numargs == 0)
c906108c 1332 {
1c8831c5
AC
1333 if (selected_frame_p != NULL)
1334 (*selected_frame_p) = 1;
a0d34a39 1335 return get_selected_frame (_("No stack."));
1c8831c5 1336 }
c906108c 1337
1c8831c5
AC
1338 /* None of the remaining use the selected frame. */
1339 if (selected_frame_p != NULL)
98f276a0 1340 (*selected_frame_p) = 0;
c906108c 1341
1c8831c5
AC
1342 /* Assume the single arg[0] is an integer, and try using that to
1343 select a frame relative to current. */
1344 if (numargs == 1)
1345 {
1346 struct frame_info *fid;
1347 int level = value_as_long (args[0]);
433759f7 1348
1c8831c5
AC
1349 fid = find_relative_frame (get_current_frame (), &level);
1350 if (level == 0)
c378eb4e 1351 /* find_relative_frame was successful. */
1c8831c5
AC
1352 return fid;
1353 }
c906108c 1354
1c8831c5
AC
1355 /* Convert each value into a corresponding address. */
1356 {
1357 int i;
433759f7 1358
1c8831c5 1359 for (i = 0; i < numargs; i++)
1e275f79 1360 addrs[i] = value_as_address (args[i]);
1c8831c5 1361 }
c5aa993b 1362
1c8831c5
AC
1363 /* Assume that the single arg[0] is an address, use that to identify
1364 a frame with a matching ID. Should this also accept stack/pc or
1365 stack/pc/special. */
1366 if (numargs == 1)
1367 {
1368 struct frame_id id = frame_id_build_wild (addrs[0]);
1369 struct frame_info *fid;
1370
1c8831c5
AC
1371 /* If (s)he specifies the frame with an address, he deserves
1372 what (s)he gets. Still, give the highest one that matches.
1373 (NOTE: cagney/2004-10-29: Why highest, or outer-most, I don't
1374 know). */
1375 for (fid = get_current_frame ();
1376 fid != NULL;
1377 fid = get_prev_frame (fid))
1378 {
1379 if (frame_id_eq (id, get_frame_id (fid)))
1380 {
c7ce8faa
DJ
1381 struct frame_info *prev_frame;
1382
1383 while (1)
1384 {
1385 prev_frame = get_prev_frame (fid);
1386 if (!prev_frame
1387 || !frame_id_eq (id, get_frame_id (prev_frame)))
1388 break;
1389 fid = prev_frame;
1390 }
1c8831c5
AC
1391 return fid;
1392 }
1393 }
c906108c
SS
1394 }
1395
1c8831c5
AC
1396 /* We couldn't identify the frame as an existing frame, but
1397 perhaps we can create one with a single argument. */
1c8831c5
AC
1398 if (numargs == 1)
1399 return create_new_frame (addrs[0], 0);
cd65c8f6
AC
1400 else if (numargs == 2)
1401 return create_new_frame (addrs[0], addrs[1]);
1402 else
8a3fe4f8 1403 error (_("Too many args in frame specification"));
1c8831c5
AC
1404}
1405
033a42c2
MK
1406/* Print verbosely the selected frame or the frame at address
1407 ADDR_EXP. Absolutely all information in the frame is printed. */
c906108c
SS
1408
1409static void
fba45db2 1410frame_info (char *addr_exp, int from_tty)
c906108c
SS
1411{
1412 struct frame_info *fi;
1413 struct symtab_and_line sal;
1414 struct symbol *func;
1415 struct symtab *s;
1416 struct frame_info *calling_frame_info;
167e4384 1417 int numregs;
0d5cff50 1418 const char *funname = 0;
c906108c 1419 enum language funlang = language_unknown;
82de1e5b 1420 const char *pc_regname;
1c8831c5 1421 int selected_frame_p;
7500260a 1422 struct gdbarch *gdbarch;
3567439c 1423 struct cleanup *back_to = make_cleanup (null_cleanup, NULL);
008f8f2e
PA
1424 CORE_ADDR frame_pc;
1425 int frame_pc_p;
e5e6f788
YQ
1426 /* Initialize it to avoid "may be used uninitialized" warning. */
1427 CORE_ADDR caller_pc = 0;
492d29ea 1428 int caller_pc_p = 0;
c906108c 1429
a0d34a39 1430 fi = parse_frame_specification (addr_exp, &selected_frame_p);
12368003 1431 gdbarch = get_frame_arch (fi);
c906108c 1432
82de1e5b
AC
1433 /* Name of the value returned by get_frame_pc(). Per comments, "pc"
1434 is not a good name. */
12368003 1435 if (gdbarch_pc_regnum (gdbarch) >= 0)
3e8c568d 1436 /* OK, this is weird. The gdbarch_pc_regnum hardware register's value can
82de1e5b
AC
1437 easily not match that of the internal value returned by
1438 get_frame_pc(). */
12368003 1439 pc_regname = gdbarch_register_name (gdbarch, gdbarch_pc_regnum (gdbarch));
82de1e5b 1440 else
3e8c568d 1441 /* But then, this is weird to. Even without gdbarch_pc_regnum, an
82de1e5b
AC
1442 architectures will often have a hardware register called "pc",
1443 and that register's value, again, can easily not match
1444 get_frame_pc(). */
1445 pc_regname = "pc";
1446
008f8f2e 1447 frame_pc_p = get_frame_pc_if_available (fi, &frame_pc);
1058bca7 1448 find_frame_sal (fi, &sal);
c906108c 1449 func = get_frame_function (fi);
008f8f2e 1450 s = sal.symtab;
c906108c
SS
1451 if (func)
1452 {
3567439c 1453 funname = SYMBOL_PRINT_NAME (func);
c5aa993b
JM
1454 funlang = SYMBOL_LANGUAGE (func);
1455 if (funlang == language_cplus)
1456 {
3567439c
DJ
1457 /* It seems appropriate to use SYMBOL_PRINT_NAME() here,
1458 to display the demangled name that we already have
1459 stored in the symbol table, but we stored a version
1460 with DMGL_PARAMS turned on, and here we don't want to
1461 display parameters. So remove the parameters. */
1462 char *func_only = cp_remove_params (funname);
433759f7 1463
3567439c
DJ
1464 if (func_only)
1465 {
1466 funname = func_only;
1467 make_cleanup (xfree, func_only);
1468 }
c5aa993b 1469 }
c906108c 1470 }
008f8f2e 1471 else if (frame_pc_p)
c906108c 1472 {
7cbd4a93 1473 struct bound_minimal_symbol msymbol;
033a42c2 1474
008f8f2e 1475 msymbol = lookup_minimal_symbol_by_pc (frame_pc);
7cbd4a93 1476 if (msymbol.minsym != NULL)
c906108c 1477 {
efd66ac6
TT
1478 funname = MSYMBOL_PRINT_NAME (msymbol.minsym);
1479 funlang = MSYMBOL_LANGUAGE (msymbol.minsym);
c906108c
SS
1480 }
1481 }
1482 calling_frame_info = get_prev_frame (fi);
1483
1c8831c5 1484 if (selected_frame_p && frame_relative_level (fi) >= 0)
c906108c 1485 {
a3f17187 1486 printf_filtered (_("Stack level %d, frame at "),
1c8831c5 1487 frame_relative_level (fi));
c906108c
SS
1488 }
1489 else
1490 {
a3f17187 1491 printf_filtered (_("Stack frame at "));
c906108c 1492 }
5af949e3 1493 fputs_filtered (paddress (gdbarch, get_frame_base (fi)), gdb_stdout);
9c833c82 1494 printf_filtered (":\n");
82de1e5b 1495 printf_filtered (" %s = ", pc_regname);
008f8f2e
PA
1496 if (frame_pc_p)
1497 fputs_filtered (paddress (gdbarch, get_frame_pc (fi)), gdb_stdout);
1498 else
1499 fputs_filtered ("<unavailable>", gdb_stdout);
c906108c
SS
1500
1501 wrap_here (" ");
1502 if (funname)
1503 {
1504 printf_filtered (" in ");
1505 fprintf_symbol_filtered (gdb_stdout, funname, funlang,
1506 DMGL_ANSI | DMGL_PARAMS);
1507 }
1508 wrap_here (" ");
1509 if (sal.symtab)
05cba821
JK
1510 printf_filtered (" (%s:%d)", symtab_to_filename_for_display (sal.symtab),
1511 sal.line);
c906108c
SS
1512 puts_filtered ("; ");
1513 wrap_here (" ");
782d47df
PA
1514 printf_filtered ("saved %s = ", pc_regname);
1515
a038fa3e 1516 if (!frame_id_p (frame_unwind_caller_id (fi)))
c620c3e4 1517 val_print_not_saved (gdb_stdout);
a038fa3e 1518 else
782d47df 1519 {
a038fa3e 1520 TRY
782d47df 1521 {
a038fa3e
MM
1522 caller_pc = frame_unwind_caller_pc (fi);
1523 caller_pc_p = 1;
782d47df 1524 }
a038fa3e
MM
1525 CATCH (ex, RETURN_MASK_ERROR)
1526 {
1527 switch (ex.error)
1528 {
1529 case NOT_AVAILABLE_ERROR:
1530 val_print_unavailable (gdb_stdout);
1531 break;
1532 case OPTIMIZED_OUT_ERROR:
1533 val_print_not_saved (gdb_stdout);
1534 break;
1535 default:
1536 fprintf_filtered (gdb_stdout, _("<error: %s>"), ex.message);
1537 break;
1538 }
1539 }
1540 END_CATCH
782d47df 1541 }
492d29ea
PA
1542
1543 if (caller_pc_p)
782d47df 1544 fputs_filtered (paddress (gdbarch, caller_pc), gdb_stdout);
c906108c
SS
1545 printf_filtered ("\n");
1546
55feb689
DJ
1547 if (calling_frame_info == NULL)
1548 {
1549 enum unwind_stop_reason reason;
1550
1551 reason = get_frame_unwind_stop_reason (fi);
1552 if (reason != UNWIND_NO_REASON)
1553 printf_filtered (_(" Outermost frame: %s\n"),
53e8a631 1554 frame_stop_reason_string (fi));
55feb689 1555 }
111c6489
JK
1556 else if (get_frame_type (fi) == TAILCALL_FRAME)
1557 puts_filtered (" tail call frame");
edb3359d
DJ
1558 else if (get_frame_type (fi) == INLINE_FRAME)
1559 printf_filtered (" inlined into frame %d",
1560 frame_relative_level (get_prev_frame (fi)));
1561 else
c906108c
SS
1562 {
1563 printf_filtered (" called by frame at ");
5af949e3 1564 fputs_filtered (paddress (gdbarch, get_frame_base (calling_frame_info)),
ed49a04f 1565 gdb_stdout);
c906108c 1566 }
75e3c1f9 1567 if (get_next_frame (fi) && calling_frame_info)
c906108c
SS
1568 puts_filtered (",");
1569 wrap_here (" ");
75e3c1f9 1570 if (get_next_frame (fi))
c906108c
SS
1571 {
1572 printf_filtered (" caller of frame at ");
5af949e3 1573 fputs_filtered (paddress (gdbarch, get_frame_base (get_next_frame (fi))),
ed49a04f 1574 gdb_stdout);
c906108c 1575 }
75e3c1f9 1576 if (get_next_frame (fi) || calling_frame_info)
c906108c 1577 puts_filtered ("\n");
55feb689 1578
c906108c 1579 if (s)
1058bca7
AC
1580 printf_filtered (" source language %s.\n",
1581 language_str (s->language));
c906108c 1582
c906108c
SS
1583 {
1584 /* Address of the argument list for this frame, or 0. */
da62e633 1585 CORE_ADDR arg_list = get_frame_args_address (fi);
c906108c
SS
1586 /* Number of args for this frame, or -1 if unknown. */
1587 int numargs;
1588
1589 if (arg_list == 0)
1590 printf_filtered (" Arglist at unknown address.\n");
1591 else
1592 {
1593 printf_filtered (" Arglist at ");
5af949e3 1594 fputs_filtered (paddress (gdbarch, arg_list), gdb_stdout);
c906108c
SS
1595 printf_filtered (",");
1596
7500260a 1597 if (!gdbarch_frame_num_args_p (gdbarch))
983a287a
AC
1598 {
1599 numargs = -1;
1600 puts_filtered (" args: ");
1601 }
c906108c 1602 else
983a287a 1603 {
7500260a 1604 numargs = gdbarch_frame_num_args (gdbarch, fi);
983a287a
AC
1605 gdb_assert (numargs >= 0);
1606 if (numargs == 0)
1607 puts_filtered (" no args.");
1608 else if (numargs == 1)
1609 puts_filtered (" 1 arg: ");
1610 else
1611 printf_filtered (" %d args: ", numargs);
1612 }
c906108c
SS
1613 print_frame_args (func, fi, numargs, gdb_stdout);
1614 puts_filtered ("\n");
1615 }
1616 }
1617 {
1618 /* Address of the local variables for this frame, or 0. */
da62e633 1619 CORE_ADDR arg_list = get_frame_locals_address (fi);
c906108c
SS
1620
1621 if (arg_list == 0)
1622 printf_filtered (" Locals at unknown address,");
1623 else
1624 {
1625 printf_filtered (" Locals at ");
5af949e3 1626 fputs_filtered (paddress (gdbarch, arg_list), gdb_stdout);
c906108c
SS
1627 printf_filtered (",");
1628 }
1629 }
1630
4f460812
AC
1631 /* Print as much information as possible on the location of all the
1632 registers. */
1633 {
1634 enum lval_type lval;
1635 int optimized;
0fdb4f18 1636 int unavailable;
4f460812
AC
1637 CORE_ADDR addr;
1638 int realnum;
1639 int count;
1640 int i;
1641 int need_nl = 1;
1642
1643 /* The sp is special; what's displayed isn't the save address, but
1644 the value of the previous frame's sp. This is a legacy thing,
1645 at one stage the frame cached the previous frame's SP instead
1646 of its address, hence it was easiest to just display the cached
1647 value. */
7500260a 1648 if (gdbarch_sp_regnum (gdbarch) >= 0)
4f460812
AC
1649 {
1650 /* Find out the location of the saved stack pointer with out
1651 actually evaluating it. */
7500260a 1652 frame_register_unwind (fi, gdbarch_sp_regnum (gdbarch),
0fdb4f18 1653 &optimized, &unavailable, &lval, &addr,
4f460812 1654 &realnum, NULL);
0fdb4f18 1655 if (!optimized && !unavailable && lval == not_lval)
c906108c 1656 {
e17a4113
UW
1657 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1658 int sp_size = register_size (gdbarch, gdbarch_sp_regnum (gdbarch));
10c42a71 1659 gdb_byte value[MAX_REGISTER_SIZE];
4f460812 1660 CORE_ADDR sp;
433759f7 1661
7500260a 1662 frame_register_unwind (fi, gdbarch_sp_regnum (gdbarch),
0fdb4f18 1663 &optimized, &unavailable, &lval, &addr,
4f460812 1664 &realnum, value);
af1342ab
AC
1665 /* NOTE: cagney/2003-05-22: This is assuming that the
1666 stack pointer was packed as an unsigned integer. That
1667 may or may not be valid. */
e17a4113 1668 sp = extract_unsigned_integer (value, sp_size, byte_order);
4f460812 1669 printf_filtered (" Previous frame's sp is ");
5af949e3 1670 fputs_filtered (paddress (gdbarch, sp), gdb_stdout);
4f460812
AC
1671 printf_filtered ("\n");
1672 need_nl = 0;
c906108c 1673 }
0fdb4f18 1674 else if (!optimized && !unavailable && lval == lval_memory)
4f460812
AC
1675 {
1676 printf_filtered (" Previous frame's sp at ");
5af949e3 1677 fputs_filtered (paddress (gdbarch, addr), gdb_stdout);
4f460812
AC
1678 printf_filtered ("\n");
1679 need_nl = 0;
1680 }
0fdb4f18 1681 else if (!optimized && !unavailable && lval == lval_register)
4f460812
AC
1682 {
1683 printf_filtered (" Previous frame's sp in %s\n",
7500260a 1684 gdbarch_register_name (gdbarch, realnum));
4f460812
AC
1685 need_nl = 0;
1686 }
1687 /* else keep quiet. */
1688 }
1689
1690 count = 0;
7500260a
UW
1691 numregs = gdbarch_num_regs (gdbarch)
1692 + gdbarch_num_pseudo_regs (gdbarch);
4f460812 1693 for (i = 0; i < numregs; i++)
7500260a
UW
1694 if (i != gdbarch_sp_regnum (gdbarch)
1695 && gdbarch_register_reggroup_p (gdbarch, i, all_reggroup))
4f460812
AC
1696 {
1697 /* Find out the location of the saved register without
1698 fetching the corresponding value. */
0fdb4f18
PA
1699 frame_register_unwind (fi, i, &optimized, &unavailable,
1700 &lval, &addr, &realnum, NULL);
4f460812
AC
1701 /* For moment, only display registers that were saved on the
1702 stack. */
0fdb4f18 1703 if (!optimized && !unavailable && lval == lval_memory)
4f460812
AC
1704 {
1705 if (count == 0)
1706 puts_filtered (" Saved registers:\n ");
1707 else
1708 puts_filtered (",");
1709 wrap_here (" ");
c9f4d572 1710 printf_filtered (" %s at ",
7500260a 1711 gdbarch_register_name (gdbarch, i));
5af949e3 1712 fputs_filtered (paddress (gdbarch, addr), gdb_stdout);
4f460812
AC
1713 count++;
1714 }
1715 }
1716 if (count || need_nl)
c906108c 1717 puts_filtered ("\n");
4f460812 1718 }
3567439c
DJ
1719
1720 do_cleanups (back_to);
c906108c
SS
1721}
1722
033a42c2
MK
1723/* Print briefly all stack frames or just the innermost COUNT_EXP
1724 frames. */
c906108c
SS
1725
1726static void
1e611234
PM
1727backtrace_command_1 (char *count_exp, int show_locals, int no_filters,
1728 int from_tty)
c906108c
SS
1729{
1730 struct frame_info *fi;
52f0bd74
AC
1731 int count;
1732 int i;
1733 struct frame_info *trailing;
1e611234 1734 int trailing_level, py_start = 0, py_end = 0;
6dddc817 1735 enum ext_lang_bt_status result = EXT_LANG_BT_ERROR;
c906108c
SS
1736
1737 if (!target_has_stack)
8a3fe4f8 1738 error (_("No stack."));
c906108c 1739
033a42c2
MK
1740 /* The following code must do two things. First, it must set the
1741 variable TRAILING to the frame from which we should start
c906108c
SS
1742 printing. Second, it must set the variable count to the number
1743 of frames which we should print, or -1 if all of them. */
1744 trailing = get_current_frame ();
d082b2bb 1745
c906108c
SS
1746 trailing_level = 0;
1747 if (count_exp)
1748 {
bb518678 1749 count = parse_and_eval_long (count_exp);
c906108c
SS
1750 if (count < 0)
1751 {
1752 struct frame_info *current;
1753
1e611234 1754 py_start = count;
c906108c
SS
1755 count = -count;
1756
1757 current = trailing;
1758 while (current && count--)
1759 {
1760 QUIT;
1761 current = get_prev_frame (current);
1762 }
c5aa993b 1763
033a42c2
MK
1764 /* Will stop when CURRENT reaches the top of the stack.
1765 TRAILING will be COUNT below it. */
c906108c
SS
1766 while (current)
1767 {
1768 QUIT;
1769 trailing = get_prev_frame (trailing);
1770 current = get_prev_frame (current);
1771 trailing_level++;
1772 }
c5aa993b 1773
c906108c
SS
1774 count = -1;
1775 }
1e611234
PM
1776 else
1777 {
1778 py_start = 0;
1779 py_end = count;
1780 }
c906108c
SS
1781 }
1782 else
1e611234
PM
1783 {
1784 py_end = -1;
1785 count = -1;
1786 }
c906108c
SS
1787
1788 if (info_verbose)
1789 {
033a42c2
MK
1790 /* Read in symbols for all of the frames. Need to do this in a
1791 separate pass so that "Reading in symbols for xxx" messages
1792 don't screw up the appearance of the backtrace. Also if
1793 people have strong opinions against reading symbols for
c5aa993b 1794 backtrace this may have to be an option. */
c906108c 1795 i = count;
033a42c2 1796 for (fi = trailing; fi != NULL && i--; fi = get_prev_frame (fi))
c906108c 1797 {
ccefe4c4 1798 CORE_ADDR pc;
433759f7 1799
c906108c 1800 QUIT;
ccefe4c4 1801 pc = get_frame_address_in_block (fi);
2097ae25 1802 expand_symtab_containing_pc (pc, find_pc_mapped_section (pc));
c906108c
SS
1803 }
1804 }
1805
1e611234 1806 if (! no_filters)
c906108c 1807 {
1e611234 1808 int flags = PRINT_LEVEL | PRINT_FRAME_INFO | PRINT_ARGS;
6dddc817 1809 enum ext_lang_frame_args arg_type;
c906108c 1810
c906108c 1811 if (show_locals)
1e611234
PM
1812 flags |= PRINT_LOCALS;
1813
1814 if (!strcmp (print_frame_arguments, "scalars"))
1815 arg_type = CLI_SCALAR_VALUES;
1816 else if (!strcmp (print_frame_arguments, "all"))
1817 arg_type = CLI_ALL_VALUES;
1818 else
1819 arg_type = NO_VALUES;
1820
6dddc817
DE
1821 result = apply_ext_lang_frame_filter (get_current_frame (), flags,
1822 arg_type, current_uiout,
1823 py_start, py_end);
1e611234 1824 }
6dddc817 1825
1e611234
PM
1826 /* Run the inbuilt backtrace if there are no filters registered, or
1827 "no-filters" has been specified from the command. */
6dddc817 1828 if (no_filters || result == EXT_LANG_BT_NO_FILTERS)
1e611234
PM
1829 {
1830 for (i = 0, fi = trailing; fi && count--; i++, fi = get_prev_frame (fi))
1831 {
1832 QUIT;
1833
1834 /* Don't use print_stack_frame; if an error() occurs it probably
1835 means further attempts to backtrace would fail (on the other
1836 hand, perhaps the code does or could be fixed to make sure
1837 the frame->prev field gets set to NULL in that case). */
1838
08d72866 1839 print_frame_info (fi, 1, LOCATION, 1, 0);
1e611234 1840 if (show_locals)
d0548fa2
PM
1841 {
1842 struct frame_id frame_id = get_frame_id (fi);
8f043999 1843
d0548fa2 1844 print_frame_local_vars (fi, 1, gdb_stdout);
8f043999 1845
d0548fa2
PM
1846 /* print_frame_local_vars invalidates FI. */
1847 fi = frame_find_by_id (frame_id);
1848 if (fi == NULL)
1849 {
1850 trailing = NULL;
1851 warning (_("Unable to restore previously selected frame."));
1852 break;
1853 }
8f043999 1854 }
55feb689 1855
1e611234
PM
1856 /* Save the last frame to check for error conditions. */
1857 trailing = fi;
1858 }
c906108c 1859
1e611234
PM
1860 /* If we've stopped before the end, mention that. */
1861 if (fi && from_tty)
1862 printf_filtered (_("(More stack frames follow...)\n"));
55feb689 1863
1e611234
PM
1864 /* If we've run out of frames, and the reason appears to be an error
1865 condition, print it. */
1866 if (fi == NULL && trailing != NULL)
1867 {
1868 enum unwind_stop_reason reason;
55feb689 1869
1e611234
PM
1870 reason = get_frame_unwind_stop_reason (trailing);
1871 if (reason >= UNWIND_FIRST_ERROR)
1872 printf_filtered (_("Backtrace stopped: %s\n"),
53e8a631 1873 frame_stop_reason_string (trailing));
1e611234 1874 }
55feb689 1875 }
c906108c
SS
1876}
1877
1878static void
fba45db2 1879backtrace_command (char *arg, int from_tty)
c906108c 1880{
5fe41fbf 1881 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
1e611234
PM
1882 int fulltrace_arg = -1, arglen = 0, argc = 0, no_filters = -1;
1883 int user_arg = 0;
c906108c 1884
033a42c2 1885 if (arg)
c906108c 1886 {
033a42c2 1887 char **argv;
c906108c
SS
1888 int i;
1889
d1a41061 1890 argv = gdb_buildargv (arg);
5fe41fbf 1891 make_cleanup_freeargv (argv);
c906108c 1892 argc = 0;
033a42c2 1893 for (i = 0; argv[i]; i++)
c5aa993b 1894 {
745b8ca0 1895 unsigned int j;
c5aa993b 1896
033a42c2 1897 for (j = 0; j < strlen (argv[i]); j++)
8d3fea16 1898 argv[i][j] = TOLOWER (argv[i][j]);
c5aa993b 1899
1e611234
PM
1900 if (no_filters < 0 && subset_compare (argv[i], "no-filters"))
1901 no_filters = argc;
c5aa993b
JM
1902 else
1903 {
1e611234
PM
1904 if (fulltrace_arg < 0 && subset_compare (argv[i], "full"))
1905 fulltrace_arg = argc;
1906 else
1907 {
1908 user_arg++;
1909 arglen += strlen (argv[i]);
1910 }
c5aa993b 1911 }
1e611234 1912 argc++;
c5aa993b 1913 }
1e611234
PM
1914 arglen += user_arg;
1915 if (fulltrace_arg >= 0 || no_filters >= 0)
c5aa993b 1916 {
033a42c2 1917 if (arglen > 0)
c5aa993b 1918 {
224c3ddb 1919 arg = (char *) xmalloc (arglen + 1);
b1d288d3
JK
1920 make_cleanup (xfree, arg);
1921 arg[0] = 0;
1e611234 1922 for (i = 0; i < argc; i++)
c5aa993b 1923 {
1e611234 1924 if (i != fulltrace_arg && i != no_filters)
c5aa993b 1925 {
033a42c2
MK
1926 strcat (arg, argv[i]);
1927 strcat (arg, " ");
c5aa993b
JM
1928 }
1929 }
1930 }
1931 else
033a42c2 1932 arg = NULL;
c5aa993b 1933 }
c906108c
SS
1934 }
1935
1e611234
PM
1936 backtrace_command_1 (arg, fulltrace_arg >= 0 /* show_locals */,
1937 no_filters >= 0 /* no frame-filters */, from_tty);
c906108c 1938
5fe41fbf 1939 do_cleanups (old_chain);
c906108c
SS
1940}
1941
2c58c0a9
PA
1942/* Iterate over the local variables of a block B, calling CB with
1943 CB_DATA. */
c906108c 1944
2c58c0a9 1945static void
3977b71f 1946iterate_over_block_locals (const struct block *b,
2c58c0a9
PA
1947 iterate_over_block_arg_local_vars_cb cb,
1948 void *cb_data)
c906108c 1949{
8157b174 1950 struct block_iterator iter;
de4f826b 1951 struct symbol *sym;
c906108c 1952
de4f826b 1953 ALL_BLOCK_SYMBOLS (b, iter, sym)
c906108c 1954 {
c906108c
SS
1955 switch (SYMBOL_CLASS (sym))
1956 {
1957 case LOC_LOCAL:
1958 case LOC_REGISTER:
1959 case LOC_STATIC:
4c2df51b 1960 case LOC_COMPUTED:
2a2d4dc3
AS
1961 if (SYMBOL_IS_ARGUMENT (sym))
1962 break;
4357ac6c
TT
1963 if (SYMBOL_DOMAIN (sym) == COMMON_BLOCK_DOMAIN)
1964 break;
2c58c0a9 1965 (*cb) (SYMBOL_PRINT_NAME (sym), sym, cb_data);
c906108c
SS
1966 break;
1967
1968 default:
1969 /* Ignore symbols which are not locals. */
1970 break;
1971 }
1972 }
c906108c
SS
1973}
1974
65c06092 1975
c906108c
SS
1976/* Same, but print labels. */
1977
65c06092
JB
1978#if 0
1979/* Commented out, as the code using this function has also been
1980 commented out. FIXME:brobecker/2009-01-13: Find out why the code
1981 was commented out in the first place. The discussion introducing
1982 this change (2007-12-04: Support lexical blocks and function bodies
1983 that occupy non-contiguous address ranges) did not explain why
1984 this change was made. */
c906108c 1985static int
5af949e3
UW
1986print_block_frame_labels (struct gdbarch *gdbarch, struct block *b,
1987 int *have_default, struct ui_file *stream)
c906108c 1988{
8157b174 1989 struct block_iterator iter;
52f0bd74
AC
1990 struct symbol *sym;
1991 int values_printed = 0;
c906108c 1992
de4f826b 1993 ALL_BLOCK_SYMBOLS (b, iter, sym)
c906108c 1994 {
3567439c 1995 if (strcmp (SYMBOL_LINKAGE_NAME (sym), "default") == 0)
c906108c
SS
1996 {
1997 if (*have_default)
1998 continue;
1999 *have_default = 1;
2000 }
2001 if (SYMBOL_CLASS (sym) == LOC_LABEL)
2002 {
2003 struct symtab_and_line sal;
79a45b7d 2004 struct value_print_options opts;
433759f7 2005
c906108c
SS
2006 sal = find_pc_line (SYMBOL_VALUE_ADDRESS (sym), 0);
2007 values_printed = 1;
de5ad195 2008 fputs_filtered (SYMBOL_PRINT_NAME (sym), stream);
79a45b7d
TT
2009 get_user_print_options (&opts);
2010 if (opts.addressprint)
c906108c
SS
2011 {
2012 fprintf_filtered (stream, " ");
5af949e3
UW
2013 fputs_filtered (paddress (gdbarch, SYMBOL_VALUE_ADDRESS (sym)),
2014 stream);
c906108c
SS
2015 }
2016 fprintf_filtered (stream, " in file %s, line %d\n",
2017 sal.symtab->filename, sal.line);
2018 }
2019 }
033a42c2 2020
c906108c
SS
2021 return values_printed;
2022}
65c06092 2023#endif
c906108c 2024
2c58c0a9
PA
2025/* Iterate over all the local variables in block B, including all its
2026 superblocks, stopping when the top-level block is reached. */
2027
2028void
3977b71f 2029iterate_over_block_local_vars (const struct block *block,
2c58c0a9
PA
2030 iterate_over_block_arg_local_vars_cb cb,
2031 void *cb_data)
2032{
2033 while (block)
2034 {
2035 iterate_over_block_locals (block, cb, cb_data);
2036 /* After handling the function's top-level block, stop. Don't
2037 continue to its superblock, the block of per-file
2038 symbols. */
2039 if (BLOCK_FUNCTION (block))
2040 break;
2041 block = BLOCK_SUPERBLOCK (block);
2042 }
2043}
2044
2045/* Data to be passed around in the calls to the locals and args
2046 iterators. */
c906108c 2047
2c58c0a9
PA
2048struct print_variable_and_value_data
2049{
8f043999 2050 struct frame_id frame_id;
2c58c0a9
PA
2051 int num_tabs;
2052 struct ui_file *stream;
2053 int values_printed;
2054};
2055
c378eb4e 2056/* The callback for the locals and args iterators. */
2c58c0a9
PA
2057
2058static void
2059do_print_variable_and_value (const char *print_name,
2060 struct symbol *sym,
2061 void *cb_data)
2062{
19ba03f4
SM
2063 struct print_variable_and_value_data *p
2064 = (struct print_variable_and_value_data *) cb_data;
8f043999
JK
2065 struct frame_info *frame;
2066
2067 frame = frame_find_by_id (p->frame_id);
2068 if (frame == NULL)
2069 {
2070 warning (_("Unable to restore previously selected frame."));
2071 return;
2072 }
2073
2074 print_variable_and_value (print_name, sym, frame, p->stream, p->num_tabs);
2075
2076 /* print_variable_and_value invalidates FRAME. */
2077 frame = NULL;
2c58c0a9 2078
2c58c0a9
PA
2079 p->values_printed = 1;
2080}
c906108c 2081
8f043999
JK
2082/* Print all variables from the innermost up to the function block of FRAME.
2083 Print them with values to STREAM indented by NUM_TABS.
2084
2085 This function will invalidate FRAME. */
2086
c906108c 2087static void
033a42c2 2088print_frame_local_vars (struct frame_info *frame, int num_tabs,
aa1ee363 2089 struct ui_file *stream)
c906108c 2090{
2c58c0a9 2091 struct print_variable_and_value_data cb_data;
3977b71f 2092 const struct block *block;
1d4f5741 2093 CORE_ADDR pc;
16c3b12f 2094 struct gdb_exception except = exception_none;
1d4f5741
PA
2095
2096 if (!get_frame_pc_if_available (frame, &pc))
2097 {
2098 fprintf_filtered (stream,
2099 _("PC unavailable, cannot determine locals.\n"));
2100 return;
2101 }
c906108c 2102
2c58c0a9 2103 block = get_frame_block (frame, 0);
c906108c
SS
2104 if (block == 0)
2105 {
2106 fprintf_filtered (stream, "No symbol table info available.\n");
2107 return;
2108 }
c5aa993b 2109
8f043999 2110 cb_data.frame_id = get_frame_id (frame);
2c58c0a9
PA
2111 cb_data.num_tabs = 4 * num_tabs;
2112 cb_data.stream = stream;
2113 cb_data.values_printed = 0;
2114
16c3b12f
JB
2115 /* Temporarily change the selected frame to the given FRAME.
2116 This allows routines that rely on the selected frame instead
2117 of being given a frame as parameter to use the correct frame. */
2118 select_frame (frame);
2119
2120 TRY
2121 {
2122 iterate_over_block_local_vars (block,
2123 do_print_variable_and_value,
2124 &cb_data);
2125 }
2126 CATCH (ex, RETURN_MASK_ALL)
2127 {
2128 except = ex;
2129 }
2130 END_CATCH
2131
2132 /* Restore the selected frame, and then rethrow if there was a problem. */
2133 select_frame (frame_find_by_id (cb_data.frame_id));
2134 if (except.reason < 0)
2135 throw_exception (except);
c906108c 2136
8f043999
JK
2137 /* do_print_variable_and_value invalidates FRAME. */
2138 frame = NULL;
2139
2c58c0a9 2140 if (!cb_data.values_printed)
033a42c2 2141 fprintf_filtered (stream, _("No locals.\n"));
c906108c
SS
2142}
2143
c906108c 2144void
fba45db2 2145locals_info (char *args, int from_tty)
c906108c 2146{
033a42c2 2147 print_frame_local_vars (get_selected_frame (_("No frame selected.")),
b04f3ab4 2148 0, gdb_stdout);
c906108c
SS
2149}
2150
2c58c0a9
PA
2151/* Iterate over all the argument variables in block B.
2152
2153 Returns 1 if any argument was walked; 0 otherwise. */
2154
2155void
3977b71f 2156iterate_over_block_arg_vars (const struct block *b,
2c58c0a9
PA
2157 iterate_over_block_arg_local_vars_cb cb,
2158 void *cb_data)
c906108c 2159{
8157b174 2160 struct block_iterator iter;
52f0bd74 2161 struct symbol *sym, *sym2;
c906108c 2162
de4f826b 2163 ALL_BLOCK_SYMBOLS (b, iter, sym)
c906108c 2164 {
2a2d4dc3
AS
2165 /* Don't worry about things which aren't arguments. */
2166 if (SYMBOL_IS_ARGUMENT (sym))
c906108c 2167 {
c906108c
SS
2168 /* We have to look up the symbol because arguments can have
2169 two entries (one a parameter, one a local) and the one we
2170 want is the local, which lookup_symbol will find for us.
2171 This includes gcc1 (not gcc2) on the sparc when passing a
2172 small structure and gcc2 when the argument type is float
2173 and it is passed as a double and converted to float by
2174 the prologue (in the latter case the type of the LOC_ARG
2175 symbol is double and the type of the LOC_LOCAL symbol is
2176 float). There are also LOC_ARG/LOC_REGISTER pairs which
2177 are not combined in symbol-reading. */
2178
3567439c 2179 sym2 = lookup_symbol (SYMBOL_LINKAGE_NAME (sym),
d12307c1 2180 b, VAR_DOMAIN, NULL).symbol;
2c58c0a9 2181 (*cb) (SYMBOL_PRINT_NAME (sym), sym2, cb_data);
c906108c
SS
2182 }
2183 }
2c58c0a9
PA
2184}
2185
8f043999
JK
2186/* Print all argument variables of the function of FRAME.
2187 Print them with values to STREAM.
2188
2189 This function will invalidate FRAME. */
2190
2c58c0a9
PA
2191static void
2192print_frame_arg_vars (struct frame_info *frame, struct ui_file *stream)
2193{
2194 struct print_variable_and_value_data cb_data;
2195 struct symbol *func;
1d4f5741
PA
2196 CORE_ADDR pc;
2197
2198 if (!get_frame_pc_if_available (frame, &pc))
2199 {
2200 fprintf_filtered (stream, _("PC unavailable, cannot determine args.\n"));
2201 return;
2202 }
2c58c0a9
PA
2203
2204 func = get_frame_function (frame);
2205 if (func == NULL)
2206 {
2207 fprintf_filtered (stream, _("No symbol table info available.\n"));
2208 return;
2209 }
2210
8f043999 2211 cb_data.frame_id = get_frame_id (frame);
2c58c0a9
PA
2212 cb_data.num_tabs = 0;
2213 cb_data.stream = gdb_stdout;
2214 cb_data.values_printed = 0;
2215
2216 iterate_over_block_arg_vars (SYMBOL_BLOCK_VALUE (func),
2217 do_print_variable_and_value, &cb_data);
033a42c2 2218
8f043999
JK
2219 /* do_print_variable_and_value invalidates FRAME. */
2220 frame = NULL;
2221
2c58c0a9 2222 if (!cb_data.values_printed)
033a42c2 2223 fprintf_filtered (stream, _("No arguments.\n"));
c906108c
SS
2224}
2225
2226void
fba45db2 2227args_info (char *ignore, int from_tty)
c906108c 2228{
033a42c2 2229 print_frame_arg_vars (get_selected_frame (_("No frame selected.")),
b04f3ab4 2230 gdb_stdout);
c906108c
SS
2231}
2232
033a42c2
MK
2233/* Select frame FRAME. Also print the stack frame and show the source
2234 if this is the tui version. */
bedfa57b 2235static void
033a42c2 2236select_and_print_frame (struct frame_info *frame)
c906108c 2237{
033a42c2
MK
2238 select_frame (frame);
2239 if (frame)
08d72866 2240 print_stack_frame (frame, 1, SRC_AND_LOC, 1);
c906108c 2241}
c906108c 2242\f
c906108c 2243/* Return the symbol-block in which the selected frame is executing.
ae767bfb
JB
2244 Can return zero under various legitimate circumstances.
2245
2246 If ADDR_IN_BLOCK is non-zero, set *ADDR_IN_BLOCK to the relevant
2247 code address within the block returned. We use this to decide
2248 which macros are in scope. */
c906108c 2249
3977b71f 2250const struct block *
ae767bfb 2251get_selected_block (CORE_ADDR *addr_in_block)
c906108c 2252{
d729566a 2253 if (!has_stack_frames ())
8ea051c5
PA
2254 return 0;
2255
206415a3 2256 return get_frame_block (get_selected_frame (NULL), addr_in_block);
c906108c
SS
2257}
2258
2259/* Find a frame a certain number of levels away from FRAME.
2260 LEVEL_OFFSET_PTR points to an int containing the number of levels.
2261 Positive means go to earlier frames (up); negative, the reverse.
2262 The int that contains the number of levels is counted toward
2263 zero as the frames for those levels are found.
2264 If the top or bottom frame is reached, that frame is returned,
2265 but the final value of *LEVEL_OFFSET_PTR is nonzero and indicates
2266 how much farther the original request asked to go. */
2267
2268struct frame_info *
033a42c2 2269find_relative_frame (struct frame_info *frame, int *level_offset_ptr)
c906108c 2270{
033a42c2
MK
2271 /* Going up is simple: just call get_prev_frame enough times or
2272 until the initial frame is reached. */
c906108c
SS
2273 while (*level_offset_ptr > 0)
2274 {
033a42c2 2275 struct frame_info *prev = get_prev_frame (frame);
433759f7 2276
033a42c2 2277 if (!prev)
c906108c
SS
2278 break;
2279 (*level_offset_ptr)--;
2280 frame = prev;
2281 }
033a42c2 2282
c906108c 2283 /* Going down is just as simple. */
033a42c2 2284 while (*level_offset_ptr < 0)
c906108c 2285 {
033a42c2 2286 struct frame_info *next = get_next_frame (frame);
433759f7 2287
033a42c2
MK
2288 if (!next)
2289 break;
2290 (*level_offset_ptr)++;
2291 frame = next;
c906108c 2292 }
033a42c2 2293
c906108c
SS
2294 return frame;
2295}
2296
033a42c2
MK
2297/* The "select_frame" command. With no argument this is a NOP.
2298 Select the frame at level LEVEL_EXP if it is a valid level.
2299 Otherwise, treat LEVEL_EXP as an address expression and select it.
2300
2301 See parse_frame_specification for more info on proper frame
2302 expressions. */
c906108c 2303
8b93c638 2304void
fba45db2 2305select_frame_command (char *level_exp, int from_tty)
c906108c 2306{
4034d0ff
AT
2307 struct frame_info *prev_frame = get_selected_frame_if_set ();
2308
a0d34a39 2309 select_frame (parse_frame_specification (level_exp, NULL));
4034d0ff
AT
2310 if (get_selected_frame_if_set () != prev_frame)
2311 observer_notify_user_selected_context_changed (USER_SELECTED_FRAME);
c906108c
SS
2312}
2313
033a42c2
MK
2314/* The "frame" command. With no argument, print the selected frame
2315 briefly. With an argument, behave like select_frame and then print
2316 the selected frame. */
c906108c 2317
033a42c2 2318static void
fba45db2 2319frame_command (char *level_exp, int from_tty)
c906108c 2320{
4034d0ff
AT
2321 struct frame_info *prev_frame = get_selected_frame_if_set ();
2322
2323 select_frame (parse_frame_specification (level_exp, NULL));
2324 if (get_selected_frame_if_set () != prev_frame)
2325 observer_notify_user_selected_context_changed (USER_SELECTED_FRAME);
2326 else
2327 print_selected_thread_frame (current_uiout, USER_SELECTED_FRAME);
c906108c
SS
2328}
2329
033a42c2
MK
2330/* Select the frame up one or COUNT_EXP stack levels from the
2331 previously selected frame, and print it briefly. */
c906108c 2332
c906108c 2333static void
d3d3328b 2334up_silently_base (const char *count_exp)
c906108c 2335{
033a42c2
MK
2336 struct frame_info *frame;
2337 int count = 1;
2338
c906108c 2339 if (count_exp)
bb518678 2340 count = parse_and_eval_long (count_exp);
c5aa993b 2341
033a42c2
MK
2342 frame = find_relative_frame (get_selected_frame ("No stack."), &count);
2343 if (count != 0 && count_exp == NULL)
8a3fe4f8 2344 error (_("Initial frame selected; you cannot go up."));
033a42c2 2345 select_frame (frame);
c906108c
SS
2346}
2347
2348static void
fba45db2 2349up_silently_command (char *count_exp, int from_tty)
c906108c 2350{
c5aa993b 2351 up_silently_base (count_exp);
c906108c
SS
2352}
2353
2354static void
fba45db2 2355up_command (char *count_exp, int from_tty)
c906108c
SS
2356{
2357 up_silently_base (count_exp);
4034d0ff 2358 observer_notify_user_selected_context_changed (USER_SELECTED_FRAME);
c906108c
SS
2359}
2360
033a42c2
MK
2361/* Select the frame down one or COUNT_EXP stack levels from the previously
2362 selected frame, and print it briefly. */
c906108c 2363
c906108c 2364static void
d3d3328b 2365down_silently_base (const char *count_exp)
c906108c 2366{
52f0bd74 2367 struct frame_info *frame;
033a42c2 2368 int count = -1;
f89b749f 2369
c906108c 2370 if (count_exp)
bb518678 2371 count = -parse_and_eval_long (count_exp);
c5aa993b 2372
033a42c2
MK
2373 frame = find_relative_frame (get_selected_frame ("No stack."), &count);
2374 if (count != 0 && count_exp == NULL)
c906108c 2375 {
033a42c2
MK
2376 /* We only do this if COUNT_EXP is not specified. That way
2377 "down" means to really go down (and let me know if that is
2378 impossible), but "down 9999" can be used to mean go all the
2379 way down without getting an error. */
c906108c 2380
033a42c2 2381 error (_("Bottom (innermost) frame selected; you cannot go down."));
c906108c
SS
2382 }
2383
0f7d239c 2384 select_frame (frame);
c906108c
SS
2385}
2386
c906108c 2387static void
fba45db2 2388down_silently_command (char *count_exp, int from_tty)
c906108c
SS
2389{
2390 down_silently_base (count_exp);
c906108c
SS
2391}
2392
2393static void
fba45db2 2394down_command (char *count_exp, int from_tty)
c906108c
SS
2395{
2396 down_silently_base (count_exp);
4034d0ff 2397 observer_notify_user_selected_context_changed (USER_SELECTED_FRAME);
c906108c 2398}
033a42c2 2399
8b93c638 2400void
fba45db2 2401return_command (char *retval_exp, int from_tty)
c906108c 2402{
901900c4
MGD
2403 /* Initialize it just to avoid a GCC false warning. */
2404 enum return_value_convention rv_conv = RETURN_VALUE_STRUCT_CONVENTION;
5ed92fa8 2405 struct frame_info *thisframe;
d80b854b 2406 struct gdbarch *gdbarch;
c906108c 2407 struct symbol *thisfun;
3d6d86c6 2408 struct value *return_value = NULL;
6a3a010b 2409 struct value *function = NULL;
fc70c2a0 2410 const char *query_prefix = "";
c906108c 2411
5ed92fa8
UW
2412 thisframe = get_selected_frame ("No selected frame.");
2413 thisfun = get_frame_function (thisframe);
d80b854b 2414 gdbarch = get_frame_arch (thisframe);
c906108c 2415
edb3359d
DJ
2416 if (get_frame_type (get_current_frame ()) == INLINE_FRAME)
2417 error (_("Can not force return from an inlined function."));
2418
fc70c2a0
AC
2419 /* Compute the return value. If the computation triggers an error,
2420 let it bail. If the return type can't be handled, set
2421 RETURN_VALUE to NULL, and QUERY_PREFIX to an informational
2422 message. */
c906108c
SS
2423 if (retval_exp)
2424 {
4d01a485 2425 expression_up retval_expr = parse_expression (retval_exp);
c906108c
SS
2426 struct type *return_type = NULL;
2427
fc70c2a0
AC
2428 /* Compute the return value. Should the computation fail, this
2429 call throws an error. */
4d01a485 2430 return_value = evaluate_expression (retval_expr.get ());
c906108c 2431
fc70c2a0
AC
2432 /* Cast return value to the return type of the function. Should
2433 the cast fail, this call throws an error. */
c906108c
SS
2434 if (thisfun != NULL)
2435 return_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (thisfun));
2436 if (return_type == NULL)
61ff14c6 2437 {
9eaf6705
TT
2438 if (retval_expr->elts[0].opcode != UNOP_CAST
2439 && retval_expr->elts[0].opcode != UNOP_CAST_TYPE)
61ff14c6
JK
2440 error (_("Return value type not available for selected "
2441 "stack frame.\n"
2442 "Please use an explicit cast of the value to return."));
2443 return_type = value_type (return_value);
2444 }
f168693b 2445 return_type = check_typedef (return_type);
c906108c
SS
2446 return_value = value_cast (return_type, return_value);
2447
fc70c2a0
AC
2448 /* Make sure the value is fully evaluated. It may live in the
2449 stack frame we're about to pop. */
d69fe07e 2450 if (value_lazy (return_value))
c906108c 2451 value_fetch_lazy (return_value);
c906108c 2452
6a3a010b 2453 if (thisfun != NULL)
63e43d3a 2454 function = read_var_value (thisfun, NULL, thisframe);
6a3a010b 2455
bbfdfe1c 2456 rv_conv = RETURN_VALUE_REGISTER_CONVENTION;
667e784f
AC
2457 if (TYPE_CODE (return_type) == TYPE_CODE_VOID)
2458 /* If the return-type is "void", don't try to find the
2459 return-value's location. However, do still evaluate the
2460 return expression so that, even when the expression result
2461 is discarded, side effects such as "return i++" still
033a42c2 2462 occur. */
667e784f 2463 return_value = NULL;
bbfdfe1c 2464 else if (thisfun != NULL)
fc70c2a0 2465 {
bbfdfe1c
DM
2466 rv_conv = struct_return_convention (gdbarch, function, return_type);
2467 if (rv_conv == RETURN_VALUE_STRUCT_CONVENTION
2468 || rv_conv == RETURN_VALUE_ABI_RETURNS_ADDRESS)
2469 {
2470 query_prefix = "The location at which to store the "
2471 "function's return value is unknown.\n"
2472 "If you continue, the return value "
2473 "that you specified will be ignored.\n";
2474 return_value = NULL;
2475 }
fc70c2a0 2476 }
c906108c
SS
2477 }
2478
fc70c2a0
AC
2479 /* Does an interactive user really want to do this? Include
2480 information, such as how well GDB can handle the return value, in
2481 the query message. */
2482 if (from_tty)
2483 {
2484 int confirmed;
433759f7 2485
fc70c2a0 2486 if (thisfun == NULL)
e2e0b3e5 2487 confirmed = query (_("%sMake selected stack frame return now? "),
fc70c2a0
AC
2488 query_prefix);
2489 else
743649fd
MW
2490 {
2491 if (TYPE_NO_RETURN (thisfun->type))
d35b90fb 2492 warning (_("Function does not return normally to caller."));
743649fd
MW
2493 confirmed = query (_("%sMake %s return now? "), query_prefix,
2494 SYMBOL_PRINT_NAME (thisfun));
2495 }
fc70c2a0 2496 if (!confirmed)
8a3fe4f8 2497 error (_("Not confirmed"));
fc70c2a0 2498 }
c906108c 2499
a45ae3ed
UW
2500 /* Discard the selected frame and all frames inner-to it. */
2501 frame_pop (get_selected_frame (NULL));
c906108c 2502
a1f5b845 2503 /* Store RETURN_VALUE in the just-returned register set. */
fc70c2a0
AC
2504 if (return_value != NULL)
2505 {
df407dfe 2506 struct type *return_type = value_type (return_value);
7500260a 2507 struct gdbarch *gdbarch = get_regcache_arch (get_current_regcache ());
42e2132c 2508
bbfdfe1c
DM
2509 gdb_assert (rv_conv != RETURN_VALUE_STRUCT_CONVENTION
2510 && rv_conv != RETURN_VALUE_ABI_RETURNS_ADDRESS);
6a3a010b 2511 gdbarch_return_value (gdbarch, function, return_type,
594f7785 2512 get_current_regcache (), NULL /*read*/,
0fd88904 2513 value_contents (return_value) /*write*/);
fc70c2a0 2514 }
1a2aab69 2515
fc70c2a0
AC
2516 /* If we are at the end of a call dummy now, pop the dummy frame
2517 too. */
e8bcf01f
AC
2518 if (get_frame_type (get_current_frame ()) == DUMMY_FRAME)
2519 frame_pop (get_current_frame ());
1a2aab69 2520
edbbff4a 2521 select_frame (get_current_frame ());
c906108c 2522 /* If interactive, print the frame that is now current. */
c906108c 2523 if (from_tty)
edbbff4a 2524 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC, 1);
c906108c
SS
2525}
2526
033a42c2 2527/* Sets the scope to input function name, provided that the function
c378eb4e 2528 is within the current stack frame. */
c906108c
SS
2529
2530struct function_bounds
2531{
2532 CORE_ADDR low, high;
2533};
2534
2535static void
fba45db2 2536func_command (char *arg, int from_tty)
c906108c 2537{
033a42c2 2538 struct frame_info *frame;
c906108c
SS
2539 int found = 0;
2540 struct symtabs_and_lines sals;
2541 int i;
2542 int level = 1;
033a42c2 2543 struct function_bounds *func_bounds = NULL;
f8eba3c6 2544 struct cleanup *cleanups;
c906108c 2545
9d622bda 2546 if (arg == NULL)
c906108c
SS
2547 return;
2548
edbbff4a 2549 frame = get_current_frame ();
39cf75f7 2550 sals = decode_line_with_current_source (arg, DECODE_LINE_FUNFIRSTLINE);
f8eba3c6 2551 cleanups = make_cleanup (xfree, sals.sals);
8d749320 2552 func_bounds = XNEWVEC (struct function_bounds, sals.nelts);
f8eba3c6 2553 make_cleanup (xfree, func_bounds);
c906108c
SS
2554 for (i = 0; (i < sals.nelts && !found); i++)
2555 {
f8eba3c6
TT
2556 if (sals.sals[i].pspace != current_program_space)
2557 func_bounds[i].low = func_bounds[i].high = 0;
2558 else if (sals.sals[i].pc == 0
2559 || find_pc_partial_function (sals.sals[i].pc, NULL,
2560 &func_bounds[i].low,
2561 &func_bounds[i].high) == 0)
c906108c 2562 {
033a42c2 2563 func_bounds[i].low = func_bounds[i].high = 0;
c906108c
SS
2564 }
2565 }
2566
2567 do
2568 {
2569 for (i = 0; (i < sals.nelts && !found); i++)
033a42c2
MK
2570 found = (get_frame_pc (frame) >= func_bounds[i].low
2571 && get_frame_pc (frame) < func_bounds[i].high);
c906108c
SS
2572 if (!found)
2573 {
2574 level = 1;
033a42c2 2575 frame = find_relative_frame (frame, &level);
c906108c
SS
2576 }
2577 }
2578 while (!found && level == 0);
2579
f8eba3c6 2580 do_cleanups (cleanups);
c906108c
SS
2581
2582 if (!found)
a3f17187 2583 printf_filtered (_("'%s' not within current stack frame.\n"), arg);
206415a3 2584 else if (frame != get_selected_frame (NULL))
033a42c2 2585 select_and_print_frame (frame);
c906108c 2586}
c906108c 2587\f
033a42c2
MK
2588
2589/* Provide a prototype to silence -Wmissing-prototypes. */
2590void _initialize_stack (void);
2591
c906108c 2592void
fba45db2 2593_initialize_stack (void)
c906108c 2594{
1bedd215
AC
2595 add_com ("return", class_stack, return_command, _("\
2596Make selected stack frame return to its caller.\n\
c906108c
SS
2597Control remains in the debugger, but when you continue\n\
2598execution will resume in the frame above the one now selected.\n\
1bedd215
AC
2599If an argument is given, it is an expression for the value to return."));
2600
2601 add_com ("up", class_stack, up_command, _("\
2602Select and print stack frame that called this one.\n\
2603An argument says how many frames up to go."));
2604 add_com ("up-silently", class_support, up_silently_command, _("\
2605Same as the `up' command, but does not print anything.\n\
2606This is useful in command scripts."));
2607
2608 add_com ("down", class_stack, down_command, _("\
2609Select and print stack frame called by this one.\n\
2610An argument says how many frames down to go."));
c906108c
SS
2611 add_com_alias ("do", "down", class_stack, 1);
2612 add_com_alias ("dow", "down", class_stack, 1);
1bedd215
AC
2613 add_com ("down-silently", class_support, down_silently_command, _("\
2614Same as the `down' command, but does not print anything.\n\
2615This is useful in command scripts."));
c906108c 2616
1bedd215 2617 add_com ("frame", class_stack, frame_command, _("\
3e43a32a
MS
2618Select and print a stack frame.\nWith no argument, \
2619print the selected stack frame. (See also \"info frame\").\n\
c906108c 2620An argument specifies the frame to select.\n\
df294654 2621It can be a stack frame number or the address of the frame.\n"));
c906108c
SS
2622
2623 add_com_alias ("f", "frame", class_stack, 1);
2624
4034d0ff 2625 add_com_suppress_notification ("select-frame", class_stack, select_frame_command, _("\
1bedd215 2626Select a stack frame without printing anything.\n\
c906108c 2627An argument specifies the frame to select.\n\
4034d0ff
AT
2628It can be a stack frame number or the address of the frame.\n"),
2629 &cli_suppress_notification.user_selected_context);
c906108c 2630
1bedd215
AC
2631 add_com ("backtrace", class_stack, backtrace_command, _("\
2632Print backtrace of all stack frames, or innermost COUNT frames.\n\
3e43a32a 2633With a negative argument, print outermost -COUNT frames.\nUse of the \
1e611234
PM
2634'full' qualifier also prints the values of the local variables.\n\
2635Use of the 'no-filters' qualifier prohibits frame filters from executing\n\
2636on this backtrace.\n"));
c906108c 2637 add_com_alias ("bt", "backtrace", class_stack, 0);
c906108c
SS
2638
2639 add_com_alias ("where", "backtrace", class_alias, 0);
2640 add_info ("stack", backtrace_command,
1bedd215 2641 _("Backtrace of the stack, or innermost COUNT frames."));
c906108c
SS
2642 add_info_alias ("s", "stack", 1);
2643 add_info ("frame", frame_info,
1bedd215 2644 _("All about selected stack frame, or frame at ADDR."));
c906108c
SS
2645 add_info_alias ("f", "frame", 1);
2646 add_info ("locals", locals_info,
1bedd215 2647 _("Local variables of current stack frame."));
c906108c 2648 add_info ("args", args_info,
1bedd215 2649 _("Argument variables of current stack frame."));
c906108c
SS
2650
2651 if (dbx_commands)
1bedd215
AC
2652 add_com ("func", class_stack, func_command, _("\
2653Select the stack frame that contains <func>.\n\
2654Usage: func <name>\n"));
c906108c 2655
88408340
JB
2656 add_setshow_enum_cmd ("frame-arguments", class_stack,
2657 print_frame_arguments_choices, &print_frame_arguments,
2658 _("Set printing of non-scalar frame arguments"),
2659 _("Show printing of non-scalar frame arguments"),
2660 NULL, NULL, NULL, &setprintlist, &showprintlist);
2661
e7045703
DE
2662 add_setshow_boolean_cmd ("frame-arguments", no_class,
2663 &print_raw_frame_arguments, _("\
2664Set whether to print frame arguments in raw form."), _("\
2665Show whether to print frame arguments in raw form."), _("\
2666If set, frame arguments are printed in raw form, bypassing any\n\
2667pretty-printers for that value."),
2668 NULL, NULL,
2669 &setprintrawlist, &showprintrawlist);
2670
30c33a9f
HZ
2671 add_setshow_auto_boolean_cmd ("disassemble-next-line", class_stack,
2672 &disassemble_next_line, _("\
3e43a32a
MS
2673Set whether to disassemble next source line or insn when execution stops."),
2674 _("\
2675Show whether to disassemble next source line or insn when execution stops."),
2676 _("\
80a0ea0f
EZ
2677If ON, GDB will display disassembly of the next source line, in addition\n\
2678to displaying the source line itself. If the next source line cannot\n\
2679be displayed (e.g., source is unavailable or there's no line info), GDB\n\
2680will display disassembly of next instruction instead of showing the\n\
2681source line.\n\
2682If AUTO, display disassembly of next instruction only if the source line\n\
2683cannot be displayed.\n\
2684If OFF (which is the default), never display the disassembly of the next\n\
2685source line."),
30c33a9f
HZ
2686 NULL,
2687 show_disassemble_next_line,
2688 &setlist, &showlist);
a362e3d3 2689 disassemble_next_line = AUTO_BOOLEAN_FALSE;
e18b2753
JK
2690
2691 add_setshow_enum_cmd ("entry-values", class_stack,
2692 print_entry_values_choices, &print_entry_values,
2693 _("Set printing of function arguments at function "
2694 "entry"),
2695 _("Show printing of function arguments at function "
2696 "entry"),
2697 _("\
2698GDB can sometimes determine the values of function arguments at entry,\n\
2699in addition to their current values. This option tells GDB whether\n\
2700to print the current value, the value at entry (marked as val@entry),\n\
2701or both. Note that one or both of these values may be <optimized out>."),
2702 NULL, NULL, &setprintlist, &showprintlist);
c906108c 2703}