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