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