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