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