* symfile.h (struct sym_fns): Add new field sym_read_linetable.
[deliverable/binutils-gdb.git] / gdb / stack.c
CommitLineData
c906108c 1/* Print and select stack frames for GDB, the GNU debugger.
8926118c 2
6aba47ca
DJ
3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007
0fd88904 5 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"
c906108c 46
033a42c2
MK
47#include "gdb_assert.h"
48#include <ctype.h>
49#include "gdb_string.h"
c906108c 50
9a4105ab 51void (*deprecated_selected_frame_level_changed_hook) (int);
c906108c 52
a58dd373 53/* Prototypes for local functions. */
c906108c 54
d9fcf2fb
JM
55static void print_frame_local_vars (struct frame_info *, int,
56 struct ui_file *);
c906108c 57
033a42c2
MK
58static void print_frame (struct frame_info *frame, int print_level,
59 enum print_what print_what, int print_args,
c5394b80
JM
60 struct symtab_and_line sal);
61
c906108c
SS
62/* Zero means do things normally; we are interacting directly with the
63 user. One means print the full filename and linenumber when a
64 frame is printed, and do so in a format emacs18/emacs19.22 can
65 parse. Two means print similar annotations, but in many more
66 cases and in a slightly different syntax. */
67
68int annotation_level = 0;
c906108c 69\f
c5aa993b
JM
70
71struct print_stack_frame_args
033a42c2
MK
72{
73 struct frame_info *frame;
74 int print_level;
75 enum print_what print_what;
76 int print_args;
77};
78
79/* Show or print the frame arguments; stub for catch_errors. */
80
c906108c 81static int
fba45db2 82print_stack_frame_stub (void *args)
c906108c 83{
c789492a 84 struct print_stack_frame_args *p = args;
033a42c2 85 int center = (p->print_what == SRC_LINE || p->print_what == SRC_AND_LOC);
c906108c 86
033a42c2
MK
87 print_frame_info (p->frame, p->print_level, p->print_what, p->print_args);
88 set_current_sal_from_frame (p->frame, center);
c906108c
SS
89 return 0;
90}
91
033a42c2 92/* Show or print a stack frame FRAME briefly. The output is format
d762c46a
AC
93 according to PRINT_LEVEL and PRINT_WHAT printing the frame's
94 relative level, function name, argument list, and file name and
95 line number. If the frame's PC is not at the beginning of the
96 source line, the actual PC is printed at the beginning. */
c906108c
SS
97
98void
033a42c2 99print_stack_frame (struct frame_info *frame, int print_level,
0faf0076 100 enum print_what print_what)
c906108c
SS
101{
102 struct print_stack_frame_args args;
103
033a42c2 104 args.frame = frame;
0faf0076
AC
105 args.print_level = print_level;
106 args.print_what = print_what;
aaf9e9fd
DP
107 /* For mi, alway print location and address. */
108 args.print_what = ui_out_is_mi_like_p (uiout) ? LOC_AND_ADDRESS : print_what;
0faf0076 109 args.print_args = 1;
c906108c 110
033a42c2 111 catch_errors (print_stack_frame_stub, &args, "", RETURN_MASK_ALL);
7789c6f5 112}
c906108c 113
c5aa993b
JM
114struct print_args_args
115{
c906108c 116 struct symbol *func;
033a42c2 117 struct frame_info *frame;
d9fcf2fb 118 struct ui_file *stream;
c906108c
SS
119};
120
033a42c2 121static int print_args_stub (void *args);
c906108c 122
033a42c2
MK
123/* Print nameless arguments of frame FRAME on STREAM, where START is
124 the offset of the first nameless argument, and NUM is the number of
125 nameless arguments to print. FIRST is nonzero if this is the first
126 argument (not just the first nameless argument). */
8d3b0994
AC
127
128static void
033a42c2 129print_frame_nameless_args (struct frame_info *frame, long start, int num,
8d3b0994
AC
130 int first, struct ui_file *stream)
131{
132 int i;
133 CORE_ADDR argsaddr;
134 long arg_value;
135
136 for (i = 0; i < num; i++)
137 {
138 QUIT;
033a42c2 139 argsaddr = get_frame_args_address (frame);
8d3b0994
AC
140 if (!argsaddr)
141 return;
142 arg_value = read_memory_integer (argsaddr + start, sizeof (int));
143 if (!first)
144 fprintf_filtered (stream, ", ");
145 fprintf_filtered (stream, "%ld", arg_value);
146 first = 0;
147 start += sizeof (int);
148 }
149}
150
033a42c2
MK
151/* Print the arguments of frame FRAME on STREAM, given the function
152 FUNC running in that frame (as a symbol), where NUM is the number
153 of arguments according to the stack frame (or -1 if the number of
154 arguments is unknown). */
8d3b0994 155
033a42c2
MK
156/* Note that currently the "number of argumentss according to the
157 stack frame" is only known on VAX where i refers to the "number of
158 ints of argumentss according to the stack frame". */
8d3b0994
AC
159
160static void
033a42c2
MK
161print_frame_args (struct symbol *func, struct frame_info *frame,
162 int num, struct ui_file *stream)
8d3b0994 163{
8d3b0994 164 int first = 1;
8d3b0994 165 /* Offset of next stack argument beyond the one we have seen that is
033a42c2
MK
166 at the highest offset, or -1 if we haven't come to a stack
167 argument yet. */
8d3b0994 168 long highest_offset = -1;
8d3b0994
AC
169 /* Number of ints of arguments that we have printed so far. */
170 int args_printed = 0;
171 struct cleanup *old_chain, *list_chain;
172 struct ui_stream *stb;
173
174 stb = ui_out_stream_new (uiout);
175 old_chain = make_cleanup_ui_out_stream_delete (stb);
176
177 if (func)
178 {
033a42c2
MK
179 struct block *b = SYMBOL_BLOCK_VALUE (func);
180 struct dict_iterator iter;
181 struct symbol *sym;
182 struct value *val;
8d3b0994 183
de4f826b 184 ALL_BLOCK_SYMBOLS (b, iter, sym)
8d3b0994
AC
185 {
186 QUIT;
187
188 /* Keep track of the highest stack argument offset seen, and
189 skip over any kinds of symbols we don't care about. */
190
191 switch (SYMBOL_CLASS (sym))
192 {
193 case LOC_ARG:
194 case LOC_REF_ARG:
195 {
196 long current_offset = SYMBOL_VALUE (sym);
033a42c2 197 int arg_size = TYPE_LENGTH (SYMBOL_TYPE (sym));
8d3b0994
AC
198
199 /* Compute address of next argument by adding the size of
200 this argument and rounding to an int boundary. */
201 current_offset =
202 ((current_offset + arg_size + sizeof (int) - 1)
203 & ~(sizeof (int) - 1));
204
033a42c2
MK
205 /* If this is the highest offset seen yet, set
206 highest_offset. */
8d3b0994
AC
207 if (highest_offset == -1
208 || (current_offset > highest_offset))
209 highest_offset = current_offset;
210
033a42c2
MK
211 /* Add the number of ints we're about to print to
212 args_printed. */
8d3b0994
AC
213 args_printed += (arg_size + sizeof (int) - 1) / sizeof (int);
214 }
215
033a42c2
MK
216 /* We care about types of symbols, but don't need to
217 keep track of stack offsets in them. */
8d3b0994
AC
218 case LOC_REGPARM:
219 case LOC_REGPARM_ADDR:
220 case LOC_LOCAL_ARG:
221 case LOC_BASEREG_ARG:
222 case LOC_COMPUTED_ARG:
223 break;
224
225 /* Other types of symbols we just skip over. */
226 default:
227 continue;
228 }
229
230 /* We have to look up the symbol because arguments can have
231 two entries (one a parameter, one a local) and the one we
232 want is the local, which lookup_symbol will find for us.
033a42c2 233 This includes gcc1 (not gcc2) on SPARC when passing a
8d3b0994
AC
234 small structure and gcc2 when the argument type is float
235 and it is passed as a double and converted to float by
236 the prologue (in the latter case the type of the LOC_ARG
237 symbol is double and the type of the LOC_LOCAL symbol is
238 float). */
033a42c2
MK
239 /* But if the parameter name is null, don't try it. Null
240 parameter names occur on the RS/6000, for traceback
241 tables. FIXME, should we even print them? */
8d3b0994
AC
242
243 if (*DEPRECATED_SYMBOL_NAME (sym))
244 {
245 struct symbol *nsym;
033a42c2
MK
246 nsym = lookup_symbol (DEPRECATED_SYMBOL_NAME (sym),
247 b, VAR_DOMAIN, NULL, NULL);
55765a25 248 gdb_assert (nsym != NULL);
8d3b0994
AC
249 if (SYMBOL_CLASS (nsym) == LOC_REGISTER)
250 {
033a42c2
MK
251 /* There is a LOC_ARG/LOC_REGISTER pair. This means
252 that it was passed on the stack and loaded into a
253 register, or passed in a register and stored in a
254 stack slot. GDB 3.x used the LOC_ARG; GDB
255 4.0-4.11 used the LOC_REGISTER.
8d3b0994
AC
256
257 Reasons for using the LOC_ARG:
033a42c2
MK
258
259 (1) Because find_saved_registers may be slow for
260 remote debugging.
261
262 (2) Because registers are often re-used and stack
263 slots rarely (never?) are. Therefore using
264 the stack slot is much less likely to print
265 garbage.
8d3b0994
AC
266
267 Reasons why we might want to use the LOC_REGISTER:
033a42c2
MK
268
269 (1) So that the backtrace prints the same value
270 as "print foo". I see no compelling reason
271 why this needs to be the case; having the
272 backtrace print the value which was passed
273 in, and "print foo" print the value as
274 modified within the called function, makes
275 perfect sense to me.
276
277 Additional note: It might be nice if "info args"
278 displayed both values.
279
280 One more note: There is a case with SPARC
281 structure passing where we need to use the
282 LOC_REGISTER, but this is dealt with by creating
283 a single LOC_REGPARM in symbol reading. */
8d3b0994
AC
284
285 /* Leave sym (the LOC_ARG) alone. */
286 ;
287 }
288 else
289 sym = nsym;
290 }
291
292 /* Print the current arg. */
293 if (!first)
294 ui_out_text (uiout, ", ");
295 ui_out_wrap_hint (uiout, " ");
296
297 annotate_arg_begin ();
298
299 list_chain = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
300 fprintf_symbol_filtered (stb->stream, SYMBOL_PRINT_NAME (sym),
033a42c2
MK
301 SYMBOL_LANGUAGE (sym),
302 DMGL_PARAMS | DMGL_ANSI);
8d3b0994
AC
303 ui_out_field_stream (uiout, "name", stb);
304 annotate_arg_name_end ();
305 ui_out_text (uiout, "=");
306
033a42c2
MK
307 /* Avoid value_print because it will deref ref parameters.
308 We just want to print their addresses. Print ??? for
309 args whose address we do not know. We pass 2 as
310 "recurse" to val_print because our standard indentation
311 here is 4 spaces, and val_print indents 2 for each
312 recurse. */
313 val = read_var_value (sym, frame);
8d3b0994 314
df407dfe 315 annotate_arg_value (val == NULL ? NULL : value_type (val));
8d3b0994
AC
316
317 if (val)
318 {
806048c6 319 common_val_print (val, stb->stream, 0, 0, 2, Val_no_prettyprint);
8d3b0994
AC
320 ui_out_field_stream (uiout, "value", stb);
321 }
322 else
323 ui_out_text (uiout, "???");
324
325 /* Invoke ui_out_tuple_end. */
326 do_cleanups (list_chain);
327
328 annotate_arg_end ();
329
330 first = 0;
331 }
332 }
333
334 /* Don't print nameless args in situations where we don't know
335 enough about the stack to find them. */
336 if (num != -1)
337 {
338 long start;
339
340 if (highest_offset == -1)
bbcf301a 341 start = gdbarch_frame_args_skip (current_gdbarch);
8d3b0994
AC
342 else
343 start = highest_offset;
344
033a42c2 345 print_frame_nameless_args (frame, start, num - args_printed,
8d3b0994
AC
346 first, stream);
347 }
033a42c2 348
8d3b0994
AC
349 do_cleanups (old_chain);
350}
351
033a42c2 352/* Stub for catch_errors. */
c906108c
SS
353
354static int
4efb68b1 355print_args_stub (void *args)
c906108c 356{
033a42c2 357 struct print_args_args *p = args;
c906108c 358 int numargs;
c906108c 359
bbcf301a 360 if (gdbarch_frame_num_args_p (current_gdbarch))
983a287a 361 {
bbcf301a 362 numargs = gdbarch_frame_num_args (current_gdbarch, p->frame);
983a287a
AC
363 gdb_assert (numargs >= 0);
364 }
365 else
366 numargs = -1;
033a42c2 367 print_frame_args (p->func, p->frame, numargs, p->stream);
c906108c
SS
368 return 0;
369}
370
033a42c2
MK
371/* Set the current source and line to the location given by frame
372 FRAME, if possible. When CENTER is true, adjust so the relevant
373 line is in the center of the next 'list'. */
c789492a 374
7abfe014 375void
033a42c2 376set_current_sal_from_frame (struct frame_info *frame, int center)
c789492a
FL
377{
378 struct symtab_and_line sal;
379
033a42c2 380 find_frame_sal (frame, &sal);
c789492a
FL
381 if (sal.symtab)
382 {
383 if (center)
384 sal.line = max (sal.line - get_lines_to_list () / 2, 1);
385 set_current_source_symtab_and_line (&sal);
386 }
387}
388
033a42c2
MK
389/* Print information about frame FRAME. The output is format according
390 to PRINT_LEVEL and PRINT_WHAT and PRINT ARGS. The meaning of
391 PRINT_WHAT is:
392
393 SRC_LINE: Print only source line.
394 LOCATION: Print only location.
395 LOC_AND_SRC: Print location and source line.
396
397 Used in "where" output, and to emit breakpoint or step
398 messages. */
c906108c 399
7789c6f5 400void
033a42c2 401print_frame_info (struct frame_info *frame, int print_level,
0faf0076 402 enum print_what print_what, int print_args)
c906108c
SS
403{
404 struct symtab_and_line sal;
c5394b80
JM
405 int source_print;
406 int location_print;
c906108c 407
033a42c2
MK
408 if (get_frame_type (frame) == DUMMY_FRAME
409 || get_frame_type (frame) == SIGTRAMP_FRAME)
c906108c 410 {
075559bc
AC
411 struct cleanup *uiout_cleanup
412 = make_cleanup_ui_out_tuple_begin_end (uiout, "frame");
c906108c 413
033a42c2
MK
414 annotate_frame_begin (print_level ? frame_relative_level (frame) : 0,
415 get_frame_pc (frame));
6a3fe0a4 416
c906108c 417 /* Do this regardless of SOURCE because we don't have any source
c5aa993b 418 to list for this frame. */
0faf0076 419 if (print_level)
52c6a6ac
JJ
420 {
421 ui_out_text (uiout, "#");
0faf0076 422 ui_out_field_fmt_int (uiout, 2, ui_left, "level",
033a42c2 423 frame_relative_level (frame));
52c6a6ac 424 }
075559bc 425 if (ui_out_is_mi_like_p (uiout))
52c6a6ac 426 {
075559bc 427 annotate_frame_address ();
033a42c2 428 ui_out_field_core_addr (uiout, "addr", get_frame_pc (frame));
075559bc 429 annotate_frame_address_end ();
52c6a6ac 430 }
6a3fe0a4 431
033a42c2 432 if (get_frame_type (frame) == DUMMY_FRAME)
075559bc
AC
433 {
434 annotate_function_call ();
435 ui_out_field_string (uiout, "func", "<function called from gdb>");
436 }
033a42c2 437 else if (get_frame_type (frame) == SIGTRAMP_FRAME)
075559bc
AC
438 {
439 annotate_signal_handler_caller ();
440 ui_out_field_string (uiout, "func", "<signal handler called>");
441 }
442 ui_out_text (uiout, "\n");
c906108c 443 annotate_frame_end ();
075559bc
AC
444
445 do_cleanups (uiout_cleanup);
c906108c
SS
446 return;
447 }
448
033a42c2
MK
449 /* If FRAME is not the innermost frame, that normally means that
450 FRAME->pc points to *after* the call instruction, and we want to
451 get the line containing the call, never the next line. But if
452 the next frame is a SIGTRAMP_FRAME or a DUMMY_FRAME, then the
453 next frame was not entered as the result of a call, and we want
454 to get the line containing FRAME->pc. */
455 find_frame_sal (frame, &sal);
c906108c 456
0faf0076
AC
457 location_print = (print_what == LOCATION
458 || print_what == LOC_AND_ADDRESS
459 || print_what == SRC_AND_LOC);
c5394b80
JM
460
461 if (location_print || !sal.symtab)
033a42c2 462 print_frame (frame, print_level, print_what, print_args, sal);
c5394b80 463
0faf0076 464 source_print = (print_what == SRC_LINE || print_what == SRC_AND_LOC);
0378c332 465
c5394b80
JM
466 if (source_print && sal.symtab)
467 {
468 int done = 0;
0faf0076 469 int mid_statement = ((print_what == SRC_LINE)
033a42c2 470 && (get_frame_pc (frame) != sal.pc));
c5394b80
JM
471
472 if (annotation_level)
473 done = identify_source_line (sal.symtab, sal.line, mid_statement,
033a42c2 474 get_frame_pc (frame));
c5394b80
JM
475 if (!done)
476 {
9a4105ab 477 if (deprecated_print_frame_info_listing_hook)
cbd3c883
MS
478 deprecated_print_frame_info_listing_hook (sal.symtab,
479 sal.line,
480 sal.line + 1, 0);
ba4bbdcb 481 else
c5394b80 482 {
ba4bbdcb
KS
483 /* We used to do this earlier, but that is clearly
484 wrong. This function is used by many different
485 parts of gdb, including normal_stop in infrun.c,
486 which uses this to print out the current PC
487 when we stepi/nexti into the middle of a source
488 line. Only the command line really wants this
489 behavior. Other UIs probably would like the
cbd3c883 490 ability to decide for themselves if it is desired. */
ba4bbdcb
KS
491 if (addressprint && mid_statement)
492 {
033a42c2 493 ui_out_field_core_addr (uiout, "addr", get_frame_pc (frame));
ba4bbdcb 494 ui_out_text (uiout, "\t");
ba4bbdcb
KS
495 }
496
497 print_source_lines (sal.symtab, sal.line, sal.line + 1, 0);
c5394b80 498 }
c5394b80 499 }
c5394b80
JM
500 }
501
0faf0076 502 if (print_what != LOCATION)
033a42c2 503 set_default_breakpoint (1, get_frame_pc (frame), sal.symtab, sal.line);
c5394b80
JM
504
505 annotate_frame_end ();
506
507 gdb_flush (gdb_stdout);
508}
509
510static void
033a42c2
MK
511print_frame (struct frame_info *frame, int print_level,
512 enum print_what print_what, int print_args,
c5394b80
JM
513 struct symtab_and_line sal)
514{
515 struct symbol *func;
033a42c2 516 char *funname = NULL;
c5394b80 517 enum language funlang = language_unknown;
8b93c638 518 struct ui_stream *stb;
033a42c2 519 struct cleanup *old_chain, *list_chain;
8b93c638
JM
520
521 stb = ui_out_stream_new (uiout);
b02eeafb 522 old_chain = make_cleanup_ui_out_stream_delete (stb);
c5394b80 523
033a42c2 524 func = find_pc_function (get_frame_address_in_block (frame));
c906108c
SS
525 if (func)
526 {
527 /* In certain pathological cases, the symtabs give the wrong
c5aa993b
JM
528 function (when we are in the first function in a file which
529 is compiled without debugging symbols, the previous function
530 is compiled with debugging symbols, and the "foo.o" symbol
033a42c2
MK
531 that is supposed to tell us where the file with debugging
532 symbols ends has been truncated by ar because it is longer
533 than 15 characters). This also occurs if the user uses asm()
534 to create a function but not stabs for it (in a file compiled
535 with -g).
c5aa993b
JM
536
537 So look in the minimal symbol tables as well, and if it comes
538 up with a larger address for the function use that instead.
033a42c2
MK
539 I don't think this can ever cause any problems; there
540 shouldn't be any minimal symbols in the middle of a function;
541 if this is ever changed many parts of GDB will need to be
542 changed (and we'll create a find_pc_minimal_function or some
543 such). */
544
545 struct minimal_symbol *msymbol =
546 lookup_minimal_symbol_by_pc (get_frame_address_in_block (frame));
c906108c 547
c906108c 548 if (msymbol != NULL
c5aa993b 549 && (SYMBOL_VALUE_ADDRESS (msymbol)
c906108c
SS
550 > BLOCK_START (SYMBOL_BLOCK_VALUE (func))))
551 {
c906108c
SS
552 /* We also don't know anything about the function besides
553 its address and name. */
554 func = 0;
22abf04a 555 funname = DEPRECATED_SYMBOL_NAME (msymbol);
c906108c
SS
556 funlang = SYMBOL_LANGUAGE (msymbol);
557 }
558 else
559 {
22abf04a 560 funname = DEPRECATED_SYMBOL_NAME (func);
c906108c 561 funlang = SYMBOL_LANGUAGE (func);
c5aa993b
JM
562 if (funlang == language_cplus)
563 {
033a42c2
MK
564 /* It seems appropriate to use SYMBOL_PRINT_NAME() here,
565 to display the demangled name that we already have
566 stored in the symbol table, but we stored a version
567 with DMGL_PARAMS turned on, and here we don't want to
568 display parameters. So call the demangler again, with
569 DMGL_ANSI only.
570
571 Yes, printf_symbol_filtered() will again try to
572 demangle the name on the fly, but the issue is that
573 if cplus_demangle() fails here, it will fail there
574 too. So we want to catch the failure (where DEMANGLED
575 is NULL below) here, while we still have our hands on
576 the function symbol.) */
577 char *demangled = cplus_demangle (funname, DMGL_ANSI);
c5aa993b 578 if (demangled == NULL)
c5394b80 579 /* If the demangler fails, try the demangled name from
033a42c2
MK
580 the symbol table. That'll have parameters, but
581 that's preferable to displaying a mangled name. */
de5ad195 582 funname = SYMBOL_PRINT_NAME (func);
f91162e1
MS
583 else
584 xfree (demangled);
c5aa993b 585 }
c906108c
SS
586 }
587 }
588 else
589 {
033a42c2
MK
590 struct minimal_symbol *msymbol =
591 lookup_minimal_symbol_by_pc (get_frame_address_in_block (frame));
592
c906108c
SS
593 if (msymbol != NULL)
594 {
22abf04a 595 funname = DEPRECATED_SYMBOL_NAME (msymbol);
c906108c
SS
596 funlang = SYMBOL_LANGUAGE (msymbol);
597 }
598 }
599
033a42c2
MK
600 annotate_frame_begin (print_level ? frame_relative_level (frame) : 0,
601 get_frame_pc (frame));
c5394b80 602
666547aa 603 list_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "frame");
c5394b80 604
0faf0076 605 if (print_level)
8b93c638 606 {
8b93c638 607 ui_out_text (uiout, "#");
0faf0076 608 ui_out_field_fmt_int (uiout, 2, ui_left, "level",
033a42c2 609 frame_relative_level (frame));
8b93c638 610 }
c5394b80 611 if (addressprint)
033a42c2 612 if (get_frame_pc (frame) != sal.pc || !sal.symtab
0faf0076 613 || print_what == LOC_AND_ADDRESS)
c5394b80
JM
614 {
615 annotate_frame_address ();
033a42c2 616 ui_out_field_core_addr (uiout, "addr", get_frame_pc (frame));
8b93c638
JM
617 annotate_frame_address_end ();
618 ui_out_text (uiout, " in ");
c5394b80
JM
619 }
620 annotate_frame_function_name ();
033a42c2
MK
621 fprintf_symbol_filtered (stb->stream, funname ? funname : "??",
622 funlang, DMGL_ANSI);
8b93c638
JM
623 ui_out_field_stream (uiout, "func", stb);
624 ui_out_wrap_hint (uiout, " ");
c5394b80
JM
625 annotate_frame_args ();
626
8b93c638 627 ui_out_text (uiout, " (");
0faf0076 628 if (print_args)
c906108c 629 {
c5394b80 630 struct print_args_args args;
d493eb33 631 struct cleanup *args_list_chain;
033a42c2 632 args.frame = frame;
c5394b80
JM
633 args.func = func;
634 args.stream = gdb_stdout;
68c81b54 635 args_list_chain = make_cleanup_ui_out_list_begin_end (uiout, "args");
c5394b80 636 catch_errors (print_args_stub, &args, "", RETURN_MASK_ALL);
033a42c2
MK
637 /* FIXME: ARGS must be a list. If one argument is a string it
638 will have " that will not be properly escaped. */
666547aa 639 /* Invoke ui_out_tuple_end. */
d493eb33 640 do_cleanups (args_list_chain);
c5394b80
JM
641 QUIT;
642 }
8b93c638 643 ui_out_text (uiout, ")");
c5394b80
JM
644 if (sal.symtab && sal.symtab->filename)
645 {
646 annotate_frame_source_begin ();
8b93c638
JM
647 ui_out_wrap_hint (uiout, " ");
648 ui_out_text (uiout, " at ");
649 annotate_frame_source_file ();
650 ui_out_field_string (uiout, "file", sal.symtab->filename);
76ff342d
DJ
651 if (ui_out_is_mi_like_p (uiout))
652 {
653 const char *fullname = symtab_to_fullname (sal.symtab);
654 if (fullname != NULL)
655 ui_out_field_string (uiout, "fullname", fullname);
656 }
8b93c638
JM
657 annotate_frame_source_file_end ();
658 ui_out_text (uiout, ":");
659 annotate_frame_source_line ();
660 ui_out_field_int (uiout, "line", sal.line);
c5394b80
JM
661 annotate_frame_source_end ();
662 }
c906108c 663
c5394b80 664 if (!funname || (!sal.symtab || !sal.symtab->filename))
c906108c 665 {
a77053c2 666#ifdef PC_SOLIB
033a42c2 667 char *lib = PC_SOLIB (get_frame_pc (frame));
a77053c2 668#else
033a42c2 669 char *lib = solib_address (get_frame_pc (frame));
a77053c2 670#endif
c5394b80 671 if (lib)
c906108c 672 {
c5394b80 673 annotate_frame_where ();
8b93c638
JM
674 ui_out_wrap_hint (uiout, " ");
675 ui_out_text (uiout, " from ");
676 ui_out_field_string (uiout, "from", lib);
c906108c 677 }
c906108c 678 }
e514a9d6 679
666547aa 680 /* do_cleanups will call ui_out_tuple_end() for us. */
e6e0bfab 681 do_cleanups (list_chain);
8b93c638
JM
682 ui_out_text (uiout, "\n");
683 do_cleanups (old_chain);
c906108c
SS
684}
685\f
033a42c2
MK
686/* Show the frame info. If this is the tui, it will be shown in the
687 source display otherwise, nothing is done. */
688
c906108c 689void
033a42c2 690show_stack_frame (struct frame_info *frame)
c906108c 691{
c906108c 692}
c906108c 693\f
c5aa993b 694
033a42c2
MK
695/* Read a frame specification in whatever the appropriate format is
696 from FRAME_EXP. Call error(), printing MESSAGE, if the
697 specification is in any way invalid (so this function never returns
698 NULL). When SEPECTED_P is non-NULL set its target to indicate that
699 the default selected frame was used. */
c906108c 700
1c8831c5
AC
701static struct frame_info *
702parse_frame_specification_1 (const char *frame_exp, const char *message,
703 int *selected_frame_p)
c906108c 704{
1c8831c5
AC
705 int numargs;
706 struct value *args[4];
707 CORE_ADDR addrs[ARRAY_SIZE (args)];
c5aa993b 708
1c8831c5
AC
709 if (frame_exp == NULL)
710 numargs = 0;
711 else
c906108c 712 {
1c8831c5 713 char *addr_string;
c906108c
SS
714 struct cleanup *tmp_cleanup;
715
1c8831c5
AC
716 numargs = 0;
717 while (1)
c906108c 718 {
1c8831c5
AC
719 char *addr_string;
720 struct cleanup *cleanup;
721 const char *p;
722
723 /* Skip leading white space, bail of EOL. */
724 while (isspace (*frame_exp))
725 frame_exp++;
726 if (!*frame_exp)
727 break;
c906108c 728
1c8831c5
AC
729 /* Parse the argument, extract it, save it. */
730 for (p = frame_exp;
731 *p && !isspace (*p);
732 p++);
733 addr_string = savestring (frame_exp, p - frame_exp);
c906108c 734 frame_exp = p;
1c8831c5
AC
735 cleanup = make_cleanup (xfree, addr_string);
736
737 /* NOTE: Parse and evaluate expression, but do not use
738 functions such as parse_and_eval_long or
739 parse_and_eval_address to also extract the value.
740 Instead value_as_long and value_as_address are used.
741 This avoids problems with expressions that contain
742 side-effects. */
743 if (numargs >= ARRAY_SIZE (args))
8a3fe4f8 744 error (_("Too many args in frame specification"));
1c8831c5
AC
745 args[numargs++] = parse_and_eval (addr_string);
746
747 do_cleanups (cleanup);
c906108c
SS
748 }
749 }
750
1c8831c5
AC
751 /* If no args, default to the selected frame. */
752 if (numargs == 0)
c906108c 753 {
1c8831c5
AC
754 if (selected_frame_p != NULL)
755 (*selected_frame_p) = 1;
756 return get_selected_frame (message);
757 }
c906108c 758
1c8831c5
AC
759 /* None of the remaining use the selected frame. */
760 if (selected_frame_p != NULL)
98f276a0 761 (*selected_frame_p) = 0;
c906108c 762
1c8831c5
AC
763 /* Assume the single arg[0] is an integer, and try using that to
764 select a frame relative to current. */
765 if (numargs == 1)
766 {
767 struct frame_info *fid;
768 int level = value_as_long (args[0]);
769 fid = find_relative_frame (get_current_frame (), &level);
770 if (level == 0)
771 /* find_relative_frame was successful */
772 return fid;
773 }
c906108c 774
1c8831c5
AC
775 /* Convert each value into a corresponding address. */
776 {
777 int i;
778 for (i = 0; i < numargs; i++)
779 addrs[i] = value_as_address (args[0]);
780 }
c5aa993b 781
1c8831c5
AC
782 /* Assume that the single arg[0] is an address, use that to identify
783 a frame with a matching ID. Should this also accept stack/pc or
784 stack/pc/special. */
785 if (numargs == 1)
786 {
787 struct frame_id id = frame_id_build_wild (addrs[0]);
788 struct frame_info *fid;
789
1c8831c5
AC
790 /* If (s)he specifies the frame with an address, he deserves
791 what (s)he gets. Still, give the highest one that matches.
792 (NOTE: cagney/2004-10-29: Why highest, or outer-most, I don't
793 know). */
794 for (fid = get_current_frame ();
795 fid != NULL;
796 fid = get_prev_frame (fid))
797 {
798 if (frame_id_eq (id, get_frame_id (fid)))
799 {
800 while (frame_id_eq (id, frame_unwind_id (fid)))
801 fid = get_prev_frame (fid);
802 return fid;
803 }
804 }
c906108c
SS
805 }
806
1c8831c5
AC
807 /* We couldn't identify the frame as an existing frame, but
808 perhaps we can create one with a single argument. */
1c8831c5
AC
809 if (numargs == 1)
810 return create_new_frame (addrs[0], 0);
cd65c8f6
AC
811 else if (numargs == 2)
812 return create_new_frame (addrs[0], addrs[1]);
813 else
8a3fe4f8 814 error (_("Too many args in frame specification"));
1c8831c5
AC
815}
816
9c833c82 817static struct frame_info *
1c8831c5
AC
818parse_frame_specification (char *frame_exp)
819{
820 return parse_frame_specification_1 (frame_exp, NULL, NULL);
c906108c
SS
821}
822
033a42c2
MK
823/* Print verbosely the selected frame or the frame at address
824 ADDR_EXP. Absolutely all information in the frame is printed. */
c906108c
SS
825
826static void
fba45db2 827frame_info (char *addr_exp, int from_tty)
c906108c
SS
828{
829 struct frame_info *fi;
830 struct symtab_and_line sal;
831 struct symbol *func;
832 struct symtab *s;
833 struct frame_info *calling_frame_info;
834 int i, count, numregs;
835 char *funname = 0;
836 enum language funlang = language_unknown;
82de1e5b 837 const char *pc_regname;
1c8831c5 838 int selected_frame_p;
c906108c 839
1c8831c5 840 fi = parse_frame_specification_1 (addr_exp, "No stack.", &selected_frame_p);
c906108c 841
82de1e5b
AC
842 /* Name of the value returned by get_frame_pc(). Per comments, "pc"
843 is not a good name. */
3e8c568d
UW
844 if (gdbarch_pc_regnum (current_gdbarch) >= 0)
845 /* OK, this is weird. The gdbarch_pc_regnum hardware register's value can
82de1e5b
AC
846 easily not match that of the internal value returned by
847 get_frame_pc(). */
3e8c568d
UW
848 pc_regname = gdbarch_register_name (current_gdbarch,
849 gdbarch_pc_regnum (current_gdbarch));
82de1e5b 850 else
3e8c568d 851 /* But then, this is weird to. Even without gdbarch_pc_regnum, an
82de1e5b
AC
852 architectures will often have a hardware register called "pc",
853 and that register's value, again, can easily not match
854 get_frame_pc(). */
855 pc_regname = "pc";
856
1058bca7 857 find_frame_sal (fi, &sal);
c906108c 858 func = get_frame_function (fi);
1058bca7 859 /* FIXME: cagney/2002-11-28: Why bother? Won't sal.symtab contain
033a42c2 860 the same value? */
bdd78e62 861 s = find_pc_symtab (get_frame_pc (fi));
c906108c
SS
862 if (func)
863 {
033a42c2
MK
864 /* It seems appropriate to use SYMBOL_PRINT_NAME() here, to
865 display the demangled name that we already have stored in the
866 symbol table, but we stored a version with DMGL_PARAMS turned
867 on, and here we don't want to display parameters. So call the
868 demangler again, with DMGL_ANSI only.
869
870 Yes, printf_symbol_filtered() will again try to demangle the
871 name on the fly, but the issue is that if cplus_demangle()
872 fails here, it will fail there too. So we want to catch the
873 failure (where DEMANGLED is NULL below) here, while we still
874 have our hands on the function symbol.) */
22abf04a 875 funname = DEPRECATED_SYMBOL_NAME (func);
c5aa993b
JM
876 funlang = SYMBOL_LANGUAGE (func);
877 if (funlang == language_cplus)
878 {
033a42c2
MK
879 char *demangled = cplus_demangle (funname, DMGL_ANSI);
880 /* If the demangler fails, try the demangled name from the
881 symbol table. That'll have parameters, but that's
882 preferable to displaying a mangled name. */
c5aa993b 883 if (demangled == NULL)
de5ad195 884 funname = SYMBOL_PRINT_NAME (func);
f91162e1
MS
885 else
886 xfree (demangled);
c5aa993b 887 }
c906108c
SS
888 }
889 else
890 {
033a42c2
MK
891 struct minimal_symbol *msymbol;
892
893 msymbol = lookup_minimal_symbol_by_pc (get_frame_pc (fi));
c906108c
SS
894 if (msymbol != NULL)
895 {
22abf04a 896 funname = DEPRECATED_SYMBOL_NAME (msymbol);
c906108c
SS
897 funlang = SYMBOL_LANGUAGE (msymbol);
898 }
899 }
900 calling_frame_info = get_prev_frame (fi);
901
1c8831c5 902 if (selected_frame_p && frame_relative_level (fi) >= 0)
c906108c 903 {
a3f17187 904 printf_filtered (_("Stack level %d, frame at "),
1c8831c5 905 frame_relative_level (fi));
c906108c
SS
906 }
907 else
908 {
a3f17187 909 printf_filtered (_("Stack frame at "));
c906108c 910 }
9c833c82
FF
911 deprecated_print_address_numeric (get_frame_base (fi), 1, gdb_stdout);
912 printf_filtered (":\n");
82de1e5b 913 printf_filtered (" %s = ", pc_regname);
66bf4b3a 914 deprecated_print_address_numeric (get_frame_pc (fi), 1, gdb_stdout);
c906108c
SS
915
916 wrap_here (" ");
917 if (funname)
918 {
919 printf_filtered (" in ");
920 fprintf_symbol_filtered (gdb_stdout, funname, funlang,
921 DMGL_ANSI | DMGL_PARAMS);
922 }
923 wrap_here (" ");
924 if (sal.symtab)
925 printf_filtered (" (%s:%d)", sal.symtab->filename, sal.line);
926 puts_filtered ("; ");
927 wrap_here (" ");
82de1e5b 928 printf_filtered ("saved %s ", pc_regname);
66bf4b3a 929 deprecated_print_address_numeric (frame_pc_unwind (fi), 1, gdb_stdout);
c906108c
SS
930 printf_filtered ("\n");
931
55feb689
DJ
932 if (calling_frame_info == NULL)
933 {
934 enum unwind_stop_reason reason;
935
936 reason = get_frame_unwind_stop_reason (fi);
937 if (reason != UNWIND_NO_REASON)
938 printf_filtered (_(" Outermost frame: %s\n"),
939 frame_stop_reason_string (reason));
940 }
941
c906108c
SS
942 if (calling_frame_info)
943 {
944 printf_filtered (" called by frame at ");
66bf4b3a 945 deprecated_print_address_numeric (get_frame_base (calling_frame_info),
8b36eed8 946 1, gdb_stdout);
c906108c 947 }
75e3c1f9 948 if (get_next_frame (fi) && calling_frame_info)
c906108c
SS
949 puts_filtered (",");
950 wrap_here (" ");
75e3c1f9 951 if (get_next_frame (fi))
c906108c
SS
952 {
953 printf_filtered (" caller of frame at ");
66bf4b3a 954 deprecated_print_address_numeric (get_frame_base (get_next_frame (fi)), 1,
8b36eed8 955 gdb_stdout);
c906108c 956 }
75e3c1f9 957 if (get_next_frame (fi) || calling_frame_info)
c906108c 958 puts_filtered ("\n");
55feb689 959
c906108c 960 if (s)
1058bca7
AC
961 printf_filtered (" source language %s.\n",
962 language_str (s->language));
c906108c 963
c906108c
SS
964 {
965 /* Address of the argument list for this frame, or 0. */
da62e633 966 CORE_ADDR arg_list = get_frame_args_address (fi);
c906108c
SS
967 /* Number of args for this frame, or -1 if unknown. */
968 int numargs;
969
970 if (arg_list == 0)
971 printf_filtered (" Arglist at unknown address.\n");
972 else
973 {
974 printf_filtered (" Arglist at ");
66bf4b3a 975 deprecated_print_address_numeric (arg_list, 1, gdb_stdout);
c906108c
SS
976 printf_filtered (",");
977
bbcf301a 978 if (!gdbarch_frame_num_args_p (current_gdbarch))
983a287a
AC
979 {
980 numargs = -1;
981 puts_filtered (" args: ");
982 }
c906108c 983 else
983a287a 984 {
bbcf301a 985 numargs = gdbarch_frame_num_args (current_gdbarch, fi);
983a287a
AC
986 gdb_assert (numargs >= 0);
987 if (numargs == 0)
988 puts_filtered (" no args.");
989 else if (numargs == 1)
990 puts_filtered (" 1 arg: ");
991 else
992 printf_filtered (" %d args: ", numargs);
993 }
c906108c
SS
994 print_frame_args (func, fi, numargs, gdb_stdout);
995 puts_filtered ("\n");
996 }
997 }
998 {
999 /* Address of the local variables for this frame, or 0. */
da62e633 1000 CORE_ADDR arg_list = get_frame_locals_address (fi);
c906108c
SS
1001
1002 if (arg_list == 0)
1003 printf_filtered (" Locals at unknown address,");
1004 else
1005 {
1006 printf_filtered (" Locals at ");
66bf4b3a 1007 deprecated_print_address_numeric (arg_list, 1, gdb_stdout);
c906108c
SS
1008 printf_filtered (",");
1009 }
1010 }
1011
4f460812
AC
1012 /* Print as much information as possible on the location of all the
1013 registers. */
1014 {
1015 enum lval_type lval;
1016 int optimized;
1017 CORE_ADDR addr;
1018 int realnum;
1019 int count;
1020 int i;
1021 int need_nl = 1;
1022
1023 /* The sp is special; what's displayed isn't the save address, but
1024 the value of the previous frame's sp. This is a legacy thing,
1025 at one stage the frame cached the previous frame's SP instead
1026 of its address, hence it was easiest to just display the cached
1027 value. */
3e8c568d 1028 if (gdbarch_sp_regnum (current_gdbarch) >= 0)
4f460812
AC
1029 {
1030 /* Find out the location of the saved stack pointer with out
1031 actually evaluating it. */
3e8c568d
UW
1032 frame_register_unwind (fi, gdbarch_sp_regnum (current_gdbarch),
1033 &optimized, &lval, &addr,
4f460812
AC
1034 &realnum, NULL);
1035 if (!optimized && lval == not_lval)
c906108c 1036 {
10c42a71 1037 gdb_byte value[MAX_REGISTER_SIZE];
4f460812 1038 CORE_ADDR sp;
3e8c568d
UW
1039 frame_register_unwind (fi, gdbarch_sp_regnum (current_gdbarch),
1040 &optimized, &lval, &addr,
4f460812 1041 &realnum, value);
af1342ab
AC
1042 /* NOTE: cagney/2003-05-22: This is assuming that the
1043 stack pointer was packed as an unsigned integer. That
1044 may or may not be valid. */
3e8c568d
UW
1045 sp = extract_unsigned_integer (value,
1046 register_size (current_gdbarch,
1047 gdbarch_sp_regnum (current_gdbarch)));
4f460812 1048 printf_filtered (" Previous frame's sp is ");
66bf4b3a 1049 deprecated_print_address_numeric (sp, 1, gdb_stdout);
4f460812
AC
1050 printf_filtered ("\n");
1051 need_nl = 0;
c906108c 1052 }
4f460812
AC
1053 else if (!optimized && lval == lval_memory)
1054 {
1055 printf_filtered (" Previous frame's sp at ");
66bf4b3a 1056 deprecated_print_address_numeric (addr, 1, gdb_stdout);
4f460812
AC
1057 printf_filtered ("\n");
1058 need_nl = 0;
1059 }
1060 else if (!optimized && lval == lval_register)
1061 {
1062 printf_filtered (" Previous frame's sp in %s\n",
c9f4d572 1063 gdbarch_register_name (current_gdbarch, realnum));
4f460812
AC
1064 need_nl = 0;
1065 }
1066 /* else keep quiet. */
1067 }
1068
1069 count = 0;
f57d151a
UW
1070 numregs = gdbarch_num_regs (current_gdbarch)
1071 + gdbarch_num_pseudo_regs (current_gdbarch);
4f460812 1072 for (i = 0; i < numregs; i++)
3e8c568d 1073 if (i != gdbarch_sp_regnum (current_gdbarch)
898c62f5 1074 && gdbarch_register_reggroup_p (current_gdbarch, i, all_reggroup))
4f460812
AC
1075 {
1076 /* Find out the location of the saved register without
1077 fetching the corresponding value. */
1078 frame_register_unwind (fi, i, &optimized, &lval, &addr, &realnum,
1079 NULL);
1080 /* For moment, only display registers that were saved on the
1081 stack. */
1082 if (!optimized && lval == lval_memory)
1083 {
1084 if (count == 0)
1085 puts_filtered (" Saved registers:\n ");
1086 else
1087 puts_filtered (",");
1088 wrap_here (" ");
c9f4d572
UW
1089 printf_filtered (" %s at ",
1090 gdbarch_register_name (current_gdbarch, i));
66bf4b3a 1091 deprecated_print_address_numeric (addr, 1, gdb_stdout);
4f460812
AC
1092 count++;
1093 }
1094 }
1095 if (count || need_nl)
c906108c 1096 puts_filtered ("\n");
4f460812 1097 }
c906108c
SS
1098}
1099
033a42c2
MK
1100/* Print briefly all stack frames or just the innermost COUNT_EXP
1101 frames. */
c906108c
SS
1102
1103static void
fba45db2 1104backtrace_command_1 (char *count_exp, int show_locals, int from_tty)
c906108c
SS
1105{
1106 struct frame_info *fi;
52f0bd74
AC
1107 int count;
1108 int i;
1109 struct frame_info *trailing;
1110 int trailing_level;
c906108c
SS
1111
1112 if (!target_has_stack)
8a3fe4f8 1113 error (_("No stack."));
c906108c 1114
033a42c2
MK
1115 /* The following code must do two things. First, it must set the
1116 variable TRAILING to the frame from which we should start
c906108c
SS
1117 printing. Second, it must set the variable count to the number
1118 of frames which we should print, or -1 if all of them. */
1119 trailing = get_current_frame ();
d082b2bb
AC
1120
1121 /* The target can be in a state where there is no valid frames
1122 (e.g., just connected). */
1123 if (trailing == NULL)
8a3fe4f8 1124 error (_("No stack."));
d082b2bb 1125
c906108c
SS
1126 trailing_level = 0;
1127 if (count_exp)
1128 {
bb518678 1129 count = parse_and_eval_long (count_exp);
c906108c
SS
1130 if (count < 0)
1131 {
1132 struct frame_info *current;
1133
1134 count = -count;
1135
1136 current = trailing;
1137 while (current && count--)
1138 {
1139 QUIT;
1140 current = get_prev_frame (current);
1141 }
c5aa993b 1142
033a42c2
MK
1143 /* Will stop when CURRENT reaches the top of the stack.
1144 TRAILING will be COUNT below it. */
c906108c
SS
1145 while (current)
1146 {
1147 QUIT;
1148 trailing = get_prev_frame (trailing);
1149 current = get_prev_frame (current);
1150 trailing_level++;
1151 }
c5aa993b 1152
c906108c
SS
1153 count = -1;
1154 }
1155 }
1156 else
1157 count = -1;
1158
1159 if (info_verbose)
1160 {
1161 struct partial_symtab *ps;
c5aa993b 1162
033a42c2
MK
1163 /* Read in symbols for all of the frames. Need to do this in a
1164 separate pass so that "Reading in symbols for xxx" messages
1165 don't screw up the appearance of the backtrace. Also if
1166 people have strong opinions against reading symbols for
c5aa993b 1167 backtrace this may have to be an option. */
c906108c 1168 i = count;
033a42c2 1169 for (fi = trailing; fi != NULL && i--; fi = get_prev_frame (fi))
c906108c
SS
1170 {
1171 QUIT;
c4a09524 1172 ps = find_pc_psymtab (get_frame_address_in_block (fi));
c906108c 1173 if (ps)
033a42c2 1174 PSYMTAB_TO_SYMTAB (ps); /* Force syms to come in. */
c906108c
SS
1175 }
1176 }
1177
033a42c2 1178 for (i = 0, fi = trailing; fi && count--; i++, fi = get_prev_frame (fi))
c906108c
SS
1179 {
1180 QUIT;
1181
1182 /* Don't use print_stack_frame; if an error() occurs it probably
c5aa993b
JM
1183 means further attempts to backtrace would fail (on the other
1184 hand, perhaps the code does or could be fixed to make sure
1185 the frame->prev field gets set to NULL in that case). */
0faf0076 1186 print_frame_info (fi, 1, LOCATION, 1);
c906108c 1187 if (show_locals)
c5aa993b 1188 print_frame_local_vars (fi, 1, gdb_stdout);
55feb689
DJ
1189
1190 /* Save the last frame to check for error conditions. */
1191 trailing = fi;
c906108c
SS
1192 }
1193
1194 /* If we've stopped before the end, mention that. */
1195 if (fi && from_tty)
a3f17187 1196 printf_filtered (_("(More stack frames follow...)\n"));
55feb689
DJ
1197
1198 /* If we've run out of frames, and the reason appears to be an error
1199 condition, print it. */
1200 if (fi == NULL && trailing != NULL)
1201 {
1202 enum unwind_stop_reason reason;
1203
1204 reason = get_frame_unwind_stop_reason (trailing);
1205 if (reason > UNWIND_FIRST_ERROR)
1206 printf_filtered (_("Backtrace stopped: %s\n"),
1207 frame_stop_reason_string (reason));
1208 }
c906108c
SS
1209}
1210
d75e3c94 1211struct backtrace_command_args
033a42c2
MK
1212{
1213 char *count_exp;
1214 int show_locals;
1215 int from_tty;
1216};
1217
1218/* Stub for catch_errors. */
d75e3c94 1219
d75e3c94
JJ
1220static int
1221backtrace_command_stub (void *data)
1222{
033a42c2 1223 struct backtrace_command_args *args = data;
d75e3c94
JJ
1224 backtrace_command_1 (args->count_exp, args->show_locals, args->from_tty);
1225 return 0;
1226}
1227
c906108c 1228static void
fba45db2 1229backtrace_command (char *arg, int from_tty)
c906108c 1230{
033a42c2
MK
1231 struct cleanup *old_chain = NULL;
1232 int fulltrace_arg = -1, arglen = 0, argc = 0;
d75e3c94 1233 struct backtrace_command_args btargs;
c906108c 1234
033a42c2 1235 if (arg)
c906108c 1236 {
033a42c2 1237 char **argv;
c906108c
SS
1238 int i;
1239
c5aa993b 1240 argv = buildargv (arg);
7a292a7a 1241 old_chain = make_cleanup_freeargv (argv);
c906108c 1242 argc = 0;
033a42c2 1243 for (i = 0; argv[i]; i++)
c5aa993b 1244 {
745b8ca0 1245 unsigned int j;
c5aa993b 1246
033a42c2 1247 for (j = 0; j < strlen (argv[i]); j++)
c5aa993b
JM
1248 argv[i][j] = tolower (argv[i][j]);
1249
033a42c2
MK
1250 if (fulltrace_arg < 0 && subset_compare (argv[i], "full"))
1251 fulltrace_arg = argc;
c5aa993b
JM
1252 else
1253 {
033a42c2 1254 arglen += strlen (argv[i]);
c5aa993b 1255 argc++;
c5aa993b
JM
1256 }
1257 }
033a42c2
MK
1258 arglen += argc;
1259 if (fulltrace_arg >= 0)
c5aa993b 1260 {
033a42c2 1261 if (arglen > 0)
c5aa993b 1262 {
033a42c2
MK
1263 arg = xmalloc (arglen + 1);
1264 memset (arg, 0, arglen + 1);
1265 for (i = 0; i < (argc + 1); i++)
c5aa993b 1266 {
033a42c2 1267 if (i != fulltrace_arg)
c5aa993b 1268 {
033a42c2
MK
1269 strcat (arg, argv[i]);
1270 strcat (arg, " ");
c5aa993b
JM
1271 }
1272 }
1273 }
1274 else
033a42c2 1275 arg = NULL;
c5aa993b 1276 }
c906108c
SS
1277 }
1278
033a42c2
MK
1279 btargs.count_exp = arg;
1280 btargs.show_locals = (fulltrace_arg >= 0);
d75e3c94 1281 btargs.from_tty = from_tty;
033a42c2 1282 catch_errors (backtrace_command_stub, &btargs, "", RETURN_MASK_ERROR);
c906108c 1283
033a42c2
MK
1284 if (fulltrace_arg >= 0 && arglen > 0)
1285 xfree (arg);
c906108c
SS
1286
1287 if (old_chain)
c5aa993b 1288 do_cleanups (old_chain);
c906108c
SS
1289}
1290
1291static void
fba45db2 1292backtrace_full_command (char *arg, int from_tty)
c906108c 1293{
d75e3c94
JJ
1294 struct backtrace_command_args btargs;
1295 btargs.count_exp = arg;
1296 btargs.show_locals = 1;
1297 btargs.from_tty = from_tty;
033a42c2 1298 catch_errors (backtrace_command_stub, &btargs, "", RETURN_MASK_ERROR);
c906108c 1299}
c906108c 1300\f
c5aa993b 1301
033a42c2 1302/* Print the local variables of a block B active in FRAME on STREAM.
c906108c
SS
1303 Return 1 if any variables were printed; 0 otherwise. */
1304
1305static int
033a42c2 1306print_block_frame_locals (struct block *b, struct frame_info *frame,
de4f826b 1307 int num_tabs, struct ui_file *stream)
c906108c 1308{
de4f826b 1309 struct dict_iterator iter;
de4f826b
DC
1310 struct symbol *sym;
1311 int values_printed = 0;
033a42c2 1312 int j;
c906108c 1313
de4f826b 1314 ALL_BLOCK_SYMBOLS (b, iter, sym)
c906108c 1315 {
c906108c
SS
1316 switch (SYMBOL_CLASS (sym))
1317 {
1318 case LOC_LOCAL:
1319 case LOC_REGISTER:
1320 case LOC_STATIC:
1321 case LOC_BASEREG:
4c2df51b 1322 case LOC_COMPUTED:
c906108c
SS
1323 values_printed = 1;
1324 for (j = 0; j < num_tabs; j++)
c5aa993b 1325 fputs_filtered ("\t", stream);
de5ad195 1326 fputs_filtered (SYMBOL_PRINT_NAME (sym), stream);
c906108c 1327 fputs_filtered (" = ", stream);
033a42c2 1328 print_variable_value (sym, frame, stream);
c906108c
SS
1329 fprintf_filtered (stream, "\n");
1330 break;
1331
1332 default:
1333 /* Ignore symbols which are not locals. */
1334 break;
1335 }
1336 }
033a42c2 1337
c906108c
SS
1338 return values_printed;
1339}
1340
1341/* Same, but print labels. */
1342
1343static int
fba45db2 1344print_block_frame_labels (struct block *b, int *have_default,
aa1ee363 1345 struct ui_file *stream)
c906108c 1346{
de4f826b 1347 struct dict_iterator iter;
52f0bd74
AC
1348 struct symbol *sym;
1349 int values_printed = 0;
c906108c 1350
de4f826b 1351 ALL_BLOCK_SYMBOLS (b, iter, sym)
c906108c 1352 {
acd8056e 1353 if (strcmp (DEPRECATED_SYMBOL_NAME (sym), "default") == 0)
c906108c
SS
1354 {
1355 if (*have_default)
1356 continue;
1357 *have_default = 1;
1358 }
1359 if (SYMBOL_CLASS (sym) == LOC_LABEL)
1360 {
1361 struct symtab_and_line sal;
1362 sal = find_pc_line (SYMBOL_VALUE_ADDRESS (sym), 0);
1363 values_printed = 1;
de5ad195 1364 fputs_filtered (SYMBOL_PRINT_NAME (sym), stream);
c906108c
SS
1365 if (addressprint)
1366 {
1367 fprintf_filtered (stream, " ");
66bf4b3a 1368 deprecated_print_address_numeric (SYMBOL_VALUE_ADDRESS (sym), 1, stream);
c906108c
SS
1369 }
1370 fprintf_filtered (stream, " in file %s, line %d\n",
1371 sal.symtab->filename, sal.line);
1372 }
1373 }
033a42c2 1374
c906108c
SS
1375 return values_printed;
1376}
1377
033a42c2
MK
1378/* Print on STREAM all the local variables in frame FRAME, including
1379 all the blocks active in that frame at its current PC.
c906108c 1380
033a42c2
MK
1381 Returns 1 if the job was done, or 0 if nothing was printed because
1382 we have no info on the function running in FRAME. */
c906108c
SS
1383
1384static void
033a42c2 1385print_frame_local_vars (struct frame_info *frame, int num_tabs,
aa1ee363 1386 struct ui_file *stream)
c906108c 1387{
033a42c2 1388 struct block *block = get_frame_block (frame, 0);
52f0bd74 1389 int values_printed = 0;
c906108c
SS
1390
1391 if (block == 0)
1392 {
1393 fprintf_filtered (stream, "No symbol table info available.\n");
1394 return;
1395 }
c5aa993b 1396
033a42c2 1397 while (block)
c906108c 1398 {
033a42c2 1399 if (print_block_frame_locals (block, frame, num_tabs, stream))
c906108c 1400 values_printed = 1;
033a42c2
MK
1401 /* After handling the function's top-level block, stop. Don't
1402 continue to its superblock, the block of per-file symbols. */
c906108c
SS
1403 if (BLOCK_FUNCTION (block))
1404 break;
1405 block = BLOCK_SUPERBLOCK (block);
1406 }
1407
1408 if (!values_printed)
033a42c2 1409 fprintf_filtered (stream, _("No locals.\n"));
c906108c
SS
1410}
1411
1412/* Same, but print labels. */
1413
1414static void
033a42c2 1415print_frame_label_vars (struct frame_info *frame, int this_level_only,
aa1ee363 1416 struct ui_file *stream)
c906108c 1417{
52f0bd74 1418 struct blockvector *bl;
033a42c2 1419 struct block *block = get_frame_block (frame, 0);
52f0bd74 1420 int values_printed = 0;
c906108c
SS
1421 int index, have_default = 0;
1422 char *blocks_printed;
033a42c2 1423 CORE_ADDR pc = get_frame_pc (frame);
c906108c
SS
1424
1425 if (block == 0)
1426 {
1427 fprintf_filtered (stream, "No symbol table info available.\n");
1428 return;
1429 }
1430
1431 bl = blockvector_for_pc (BLOCK_END (block) - 4, &index);
033a42c2 1432 blocks_printed = alloca (BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
c906108c
SS
1433 memset (blocks_printed, 0, BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
1434
1435 while (block != 0)
1436 {
1437 CORE_ADDR end = BLOCK_END (block) - 4;
1438 int last_index;
1439
1440 if (bl != blockvector_for_pc (end, &index))
8a3fe4f8 1441 error (_("blockvector blotch"));
c906108c 1442 if (BLOCKVECTOR_BLOCK (bl, index) != block)
8a3fe4f8 1443 error (_("blockvector botch"));
c906108c
SS
1444 last_index = BLOCKVECTOR_NBLOCKS (bl);
1445 index += 1;
1446
1447 /* Don't print out blocks that have gone by. */
1448 while (index < last_index
1449 && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < pc)
1450 index++;
1451
1452 while (index < last_index
1453 && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < end)
1454 {
1455 if (blocks_printed[index] == 0)
1456 {
033a42c2
MK
1457 if (print_block_frame_labels (BLOCKVECTOR_BLOCK (bl, index),
1458 &have_default, stream))
c906108c
SS
1459 values_printed = 1;
1460 blocks_printed[index] = 1;
1461 }
1462 index++;
1463 }
1464 if (have_default)
1465 return;
1466 if (values_printed && this_level_only)
1467 return;
1468
033a42c2
MK
1469 /* After handling the function's top-level block, stop. Don't
1470 continue to its superblock, the block of per-file symbols. */
c906108c
SS
1471 if (BLOCK_FUNCTION (block))
1472 break;
1473 block = BLOCK_SUPERBLOCK (block);
1474 }
1475
1476 if (!values_printed && !this_level_only)
033a42c2 1477 fprintf_filtered (stream, _("No catches.\n"));
c906108c
SS
1478}
1479
c906108c 1480void
fba45db2 1481locals_info (char *args, int from_tty)
c906108c 1482{
033a42c2 1483 print_frame_local_vars (get_selected_frame (_("No frame selected.")),
b04f3ab4 1484 0, gdb_stdout);
c906108c
SS
1485}
1486
1487static void
fba45db2 1488catch_info (char *ignore, int from_tty)
c906108c 1489{
c5aa993b 1490 struct symtab_and_line *sal;
c906108c 1491
c5aa993b 1492 /* Check for target support for exception handling */
c906108c
SS
1493 sal = target_enable_exception_callback (EX_EVENT_CATCH, 1);
1494 if (sal)
1495 {
033a42c2
MK
1496 /* Currently not handling this. Ideally, here we should
1497 interact with the C++ runtime system to find the list of
1498 active handlers, etc. */
1499 fprintf_filtered (gdb_stdout, _("\
1500Info catch not supported with this target/compiler combination.\n"));
c906108c
SS
1501 }
1502 else
1503 {
033a42c2
MK
1504 /* Assume g++ compiled code; old GDB 4.16 behaviour. */
1505 print_frame_label_vars (get_selected_frame (_("No frame selected.")),
b04f3ab4 1506 0, gdb_stdout);
c906108c
SS
1507 }
1508}
1509
1510static void
033a42c2 1511print_frame_arg_vars (struct frame_info *frame, struct ui_file *stream)
c906108c 1512{
033a42c2 1513 struct symbol *func = get_frame_function (frame);
52f0bd74 1514 struct block *b;
de4f826b 1515 struct dict_iterator iter;
52f0bd74
AC
1516 struct symbol *sym, *sym2;
1517 int values_printed = 0;
c906108c
SS
1518
1519 if (func == 0)
1520 {
033a42c2 1521 fprintf_filtered (stream, _("No symbol table info available.\n"));
c906108c
SS
1522 return;
1523 }
1524
1525 b = SYMBOL_BLOCK_VALUE (func);
de4f826b 1526 ALL_BLOCK_SYMBOLS (b, iter, sym)
c906108c 1527 {
c906108c
SS
1528 switch (SYMBOL_CLASS (sym))
1529 {
1530 case LOC_ARG:
1531 case LOC_LOCAL_ARG:
1532 case LOC_REF_ARG:
1533 case LOC_REGPARM:
1534 case LOC_REGPARM_ADDR:
1535 case LOC_BASEREG_ARG:
4c2df51b 1536 case LOC_COMPUTED_ARG:
c906108c 1537 values_printed = 1;
de5ad195 1538 fputs_filtered (SYMBOL_PRINT_NAME (sym), stream);
c906108c
SS
1539 fputs_filtered (" = ", stream);
1540
1541 /* We have to look up the symbol because arguments can have
1542 two entries (one a parameter, one a local) and the one we
1543 want is the local, which lookup_symbol will find for us.
1544 This includes gcc1 (not gcc2) on the sparc when passing a
1545 small structure and gcc2 when the argument type is float
1546 and it is passed as a double and converted to float by
1547 the prologue (in the latter case the type of the LOC_ARG
1548 symbol is double and the type of the LOC_LOCAL symbol is
1549 float). There are also LOC_ARG/LOC_REGISTER pairs which
1550 are not combined in symbol-reading. */
1551
22abf04a 1552 sym2 = lookup_symbol (DEPRECATED_SYMBOL_NAME (sym),
033a42c2
MK
1553 b, VAR_DOMAIN, NULL, NULL);
1554 print_variable_value (sym2, frame, stream);
c906108c
SS
1555 fprintf_filtered (stream, "\n");
1556 break;
1557
1558 default:
1559 /* Don't worry about things which aren't arguments. */
1560 break;
1561 }
1562 }
033a42c2 1563
c906108c 1564 if (!values_printed)
033a42c2 1565 fprintf_filtered (stream, _("No arguments.\n"));
c906108c
SS
1566}
1567
1568void
fba45db2 1569args_info (char *ignore, int from_tty)
c906108c 1570{
033a42c2 1571 print_frame_arg_vars (get_selected_frame (_("No frame selected.")),
b04f3ab4 1572 gdb_stdout);
c906108c
SS
1573}
1574
1575
1576static void
fba45db2 1577args_plus_locals_info (char *ignore, int from_tty)
c906108c 1578{
c5aa993b
JM
1579 args_info (ignore, from_tty);
1580 locals_info (ignore, from_tty);
c906108c 1581}
c906108c 1582\f
c5aa993b 1583
033a42c2
MK
1584/* Select frame FRAME. Also print the stack frame and show the source
1585 if this is the tui version. */
bedfa57b 1586static void
033a42c2 1587select_and_print_frame (struct frame_info *frame)
c906108c 1588{
033a42c2
MK
1589 select_frame (frame);
1590 if (frame)
1591 print_stack_frame (frame, 1, SRC_AND_LOC);
c906108c 1592}
c906108c 1593\f
c906108c 1594/* Return the symbol-block in which the selected frame is executing.
ae767bfb
JB
1595 Can return zero under various legitimate circumstances.
1596
1597 If ADDR_IN_BLOCK is non-zero, set *ADDR_IN_BLOCK to the relevant
1598 code address within the block returned. We use this to decide
1599 which macros are in scope. */
c906108c
SS
1600
1601struct block *
ae767bfb 1602get_selected_block (CORE_ADDR *addr_in_block)
c906108c
SS
1603{
1604 if (!target_has_stack)
1605 return 0;
1606
206415a3 1607 return get_frame_block (get_selected_frame (NULL), addr_in_block);
c906108c
SS
1608}
1609
1610/* Find a frame a certain number of levels away from FRAME.
1611 LEVEL_OFFSET_PTR points to an int containing the number of levels.
1612 Positive means go to earlier frames (up); negative, the reverse.
1613 The int that contains the number of levels is counted toward
1614 zero as the frames for those levels are found.
1615 If the top or bottom frame is reached, that frame is returned,
1616 but the final value of *LEVEL_OFFSET_PTR is nonzero and indicates
1617 how much farther the original request asked to go. */
1618
1619struct frame_info *
033a42c2 1620find_relative_frame (struct frame_info *frame, int *level_offset_ptr)
c906108c 1621{
033a42c2
MK
1622 /* Going up is simple: just call get_prev_frame enough times or
1623 until the initial frame is reached. */
c906108c
SS
1624 while (*level_offset_ptr > 0)
1625 {
033a42c2
MK
1626 struct frame_info *prev = get_prev_frame (frame);
1627 if (!prev)
c906108c
SS
1628 break;
1629 (*level_offset_ptr)--;
1630 frame = prev;
1631 }
033a42c2 1632
c906108c 1633 /* Going down is just as simple. */
033a42c2 1634 while (*level_offset_ptr < 0)
c906108c 1635 {
033a42c2
MK
1636 struct frame_info *next = get_next_frame (frame);
1637 if (!next)
1638 break;
1639 (*level_offset_ptr)++;
1640 frame = next;
c906108c 1641 }
033a42c2 1642
c906108c
SS
1643 return frame;
1644}
1645
033a42c2
MK
1646/* The "select_frame" command. With no argument this is a NOP.
1647 Select the frame at level LEVEL_EXP if it is a valid level.
1648 Otherwise, treat LEVEL_EXP as an address expression and select it.
1649
1650 See parse_frame_specification for more info on proper frame
1651 expressions. */
c906108c 1652
8b93c638 1653void
fba45db2 1654select_frame_command (char *level_exp, int from_tty)
c906108c 1655{
1c8831c5 1656 select_frame (parse_frame_specification_1 (level_exp, "No stack.", NULL));
c906108c
SS
1657}
1658
033a42c2
MK
1659/* The "frame" command. With no argument, print the selected frame
1660 briefly. With an argument, behave like select_frame and then print
1661 the selected frame. */
c906108c 1662
033a42c2 1663static void
fba45db2 1664frame_command (char *level_exp, int from_tty)
c906108c
SS
1665{
1666 select_frame_command (level_exp, from_tty);
b04f3ab4 1667 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC);
c906108c
SS
1668}
1669
033a42c2 1670/* The XDB Compatibility command to print the current frame. */
c906108c 1671
7a292a7a 1672static void
fba45db2 1673current_frame_command (char *level_exp, int from_tty)
c906108c 1674{
033a42c2 1675 print_stack_frame (get_selected_frame (_("No stack.")), 1, SRC_AND_LOC);
7a292a7a 1676}
c906108c 1677
033a42c2
MK
1678/* Select the frame up one or COUNT_EXP stack levels from the
1679 previously selected frame, and print it briefly. */
c906108c 1680
c906108c 1681static void
fba45db2 1682up_silently_base (char *count_exp)
c906108c 1683{
033a42c2
MK
1684 struct frame_info *frame;
1685 int count = 1;
1686
c906108c 1687 if (count_exp)
bb518678 1688 count = parse_and_eval_long (count_exp);
c5aa993b 1689
033a42c2
MK
1690 frame = find_relative_frame (get_selected_frame ("No stack."), &count);
1691 if (count != 0 && count_exp == NULL)
8a3fe4f8 1692 error (_("Initial frame selected; you cannot go up."));
033a42c2 1693 select_frame (frame);
c906108c
SS
1694}
1695
1696static void
fba45db2 1697up_silently_command (char *count_exp, int from_tty)
c906108c 1698{
c5aa993b 1699 up_silently_base (count_exp);
c906108c
SS
1700}
1701
1702static void
fba45db2 1703up_command (char *count_exp, int from_tty)
c906108c
SS
1704{
1705 up_silently_base (count_exp);
b04f3ab4 1706 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC);
c906108c
SS
1707}
1708
033a42c2
MK
1709/* Select the frame down one or COUNT_EXP stack levels from the previously
1710 selected frame, and print it briefly. */
c906108c 1711
c906108c 1712static void
fba45db2 1713down_silently_base (char *count_exp)
c906108c 1714{
52f0bd74 1715 struct frame_info *frame;
033a42c2 1716 int count = -1;
c906108c 1717 if (count_exp)
bb518678 1718 count = -parse_and_eval_long (count_exp);
c5aa993b 1719
033a42c2
MK
1720 frame = find_relative_frame (get_selected_frame ("No stack."), &count);
1721 if (count != 0 && count_exp == NULL)
c906108c 1722 {
033a42c2
MK
1723 /* We only do this if COUNT_EXP is not specified. That way
1724 "down" means to really go down (and let me know if that is
1725 impossible), but "down 9999" can be used to mean go all the
1726 way down without getting an error. */
c906108c 1727
033a42c2 1728 error (_("Bottom (innermost) frame selected; you cannot go down."));
c906108c
SS
1729 }
1730
0f7d239c 1731 select_frame (frame);
c906108c
SS
1732}
1733
c906108c 1734static void
fba45db2 1735down_silently_command (char *count_exp, int from_tty)
c906108c
SS
1736{
1737 down_silently_base (count_exp);
c906108c
SS
1738}
1739
1740static void
fba45db2 1741down_command (char *count_exp, int from_tty)
c906108c
SS
1742{
1743 down_silently_base (count_exp);
b04f3ab4 1744 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC);
c906108c
SS
1745}
1746\f
033a42c2 1747
8b93c638 1748void
fba45db2 1749return_command (char *retval_exp, int from_tty)
c906108c
SS
1750{
1751 struct symbol *thisfun;
3d6d86c6 1752 struct value *return_value = NULL;
fc70c2a0 1753 const char *query_prefix = "";
c906108c 1754
b04f3ab4 1755 thisfun = get_frame_function (get_selected_frame ("No selected frame."));
c906108c 1756
fc70c2a0
AC
1757 /* Compute the return value. If the computation triggers an error,
1758 let it bail. If the return type can't be handled, set
1759 RETURN_VALUE to NULL, and QUERY_PREFIX to an informational
1760 message. */
c906108c
SS
1761 if (retval_exp)
1762 {
1763 struct type *return_type = NULL;
1764
fc70c2a0
AC
1765 /* Compute the return value. Should the computation fail, this
1766 call throws an error. */
c906108c
SS
1767 return_value = parse_and_eval (retval_exp);
1768
fc70c2a0
AC
1769 /* Cast return value to the return type of the function. Should
1770 the cast fail, this call throws an error. */
c906108c
SS
1771 if (thisfun != NULL)
1772 return_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (thisfun));
1773 if (return_type == NULL)
1774 return_type = builtin_type_int;
3e9a183c 1775 CHECK_TYPEDEF (return_type);
c906108c
SS
1776 return_value = value_cast (return_type, return_value);
1777
fc70c2a0
AC
1778 /* Make sure the value is fully evaluated. It may live in the
1779 stack frame we're about to pop. */
d69fe07e 1780 if (value_lazy (return_value))
c906108c 1781 value_fetch_lazy (return_value);
c906108c 1782
667e784f
AC
1783 if (TYPE_CODE (return_type) == TYPE_CODE_VOID)
1784 /* If the return-type is "void", don't try to find the
1785 return-value's location. However, do still evaluate the
1786 return expression so that, even when the expression result
1787 is discarded, side effects such as "return i++" still
033a42c2 1788 occur. */
667e784f 1789 return_value = NULL;
74055713
AC
1790 /* FIXME: cagney/2004-01-17: If the architecture implements both
1791 return_value and extract_returned_value_address, should allow
1792 "return" to work - don't set return_value to NULL. */
667e784f
AC
1793 else if (!gdbarch_return_value_p (current_gdbarch)
1794 && (TYPE_CODE (return_type) == TYPE_CODE_STRUCT
1795 || TYPE_CODE (return_type) == TYPE_CODE_UNION))
c906108c 1796 {
667e784f 1797 /* NOTE: cagney/2003-10-20: Compatibility hack for legacy
82d1552e 1798 code. Old architectures don't expect gdbarch_store_return_value
667e784f
AC
1799 to be called with with a small struct that needs to be
1800 stored in registers. Don't start doing it now. */
1801 query_prefix = "\
1802A structure or union return type is not supported by this architecture.\n\
1803If you continue, the return value that you specified will be ignored.\n";
1804 return_value = NULL;
c906108c 1805 }
667e784f 1806 else if (using_struct_return (return_type, 0))
fc70c2a0 1807 {
667e784f
AC
1808 query_prefix = "\
1809The location at which to store the function's return value is unknown.\n\
1810If you continue, the return value that you specified will be ignored.\n";
1811 return_value = NULL;
fc70c2a0 1812 }
c906108c
SS
1813 }
1814
fc70c2a0
AC
1815 /* Does an interactive user really want to do this? Include
1816 information, such as how well GDB can handle the return value, in
1817 the query message. */
1818 if (from_tty)
1819 {
1820 int confirmed;
1821 if (thisfun == NULL)
e2e0b3e5 1822 confirmed = query (_("%sMake selected stack frame return now? "),
fc70c2a0
AC
1823 query_prefix);
1824 else
e2e0b3e5 1825 confirmed = query (_("%sMake %s return now? "), query_prefix,
fc70c2a0
AC
1826 SYMBOL_PRINT_NAME (thisfun));
1827 if (!confirmed)
8a3fe4f8 1828 error (_("Not confirmed"));
fc70c2a0 1829 }
c906108c 1830
fc70c2a0
AC
1831 /* NOTE: cagney/2003-01-18: Is this silly? Rather than pop each
1832 frame in turn, should this code just go straight to the relevant
1833 frame and pop that? */
c906108c 1834
fc70c2a0
AC
1835 /* First discard all frames inner-to the selected frame (making the
1836 selected frame current). */
1837 {
b04f3ab4 1838 struct frame_id selected_id = get_frame_id (get_selected_frame (NULL));
fc70c2a0
AC
1839 while (!frame_id_eq (selected_id, get_frame_id (get_current_frame ())))
1840 {
1841 if (frame_id_inner (selected_id, get_frame_id (get_current_frame ())))
1842 /* Caught in the safety net, oops! We've gone way past the
1843 selected frame. */
8a3fe4f8 1844 error (_("Problem while popping stack frames (corrupt stack?)"));
fc70c2a0
AC
1845 frame_pop (get_current_frame ());
1846 }
1847 }
c906108c 1848
fc70c2a0
AC
1849 /* Second discard the selected frame (which is now also the current
1850 frame). */
dbe9fe58 1851 frame_pop (get_current_frame ());
c906108c 1852
a1f5b845 1853 /* Store RETURN_VALUE in the just-returned register set. */
fc70c2a0
AC
1854 if (return_value != NULL)
1855 {
df407dfe 1856 struct type *return_type = value_type (return_value);
750eb019
AC
1857 gdb_assert (gdbarch_return_value (current_gdbarch, return_type,
1858 NULL, NULL, NULL)
1859 == RETURN_VALUE_REGISTER_CONVENTION);
1860 gdbarch_return_value (current_gdbarch, return_type,
594f7785 1861 get_current_regcache (), NULL /*read*/,
0fd88904 1862 value_contents (return_value) /*write*/);
fc70c2a0 1863 }
1a2aab69 1864
fc70c2a0
AC
1865 /* If we are at the end of a call dummy now, pop the dummy frame
1866 too. */
e8bcf01f
AC
1867 if (get_frame_type (get_current_frame ()) == DUMMY_FRAME)
1868 frame_pop (get_current_frame ());
1a2aab69 1869
c906108c 1870 /* If interactive, print the frame that is now current. */
c906108c
SS
1871 if (from_tty)
1872 frame_command ("0", 1);
1873 else
1874 select_frame_command ("0", 0);
1875}
1876
033a42c2
MK
1877/* Sets the scope to input function name, provided that the function
1878 is within the current stack frame */
c906108c
SS
1879
1880struct function_bounds
1881{
1882 CORE_ADDR low, high;
1883};
1884
1885static void
fba45db2 1886func_command (char *arg, int from_tty)
c906108c 1887{
033a42c2 1888 struct frame_info *frame;
c906108c
SS
1889 int found = 0;
1890 struct symtabs_and_lines sals;
1891 int i;
1892 int level = 1;
033a42c2 1893 struct function_bounds *func_bounds = NULL;
c906108c 1894
033a42c2 1895 if (arg != NULL)
c906108c
SS
1896 return;
1897
033a42c2 1898 frame = parse_frame_specification ("0");
c906108c
SS
1899 sals = decode_line_spec (arg, 1);
1900 func_bounds = (struct function_bounds *) xmalloc (
1901 sizeof (struct function_bounds) * sals.nelts);
1902 for (i = 0; (i < sals.nelts && !found); i++)
1903 {
033a42c2
MK
1904 if (sals.sals[i].pc == 0
1905 || find_pc_partial_function (sals.sals[i].pc, NULL,
1906 &func_bounds[i].low,
1907 &func_bounds[i].high) == 0)
c906108c 1908 {
033a42c2 1909 func_bounds[i].low = func_bounds[i].high = 0;
c906108c
SS
1910 }
1911 }
1912
1913 do
1914 {
1915 for (i = 0; (i < sals.nelts && !found); i++)
033a42c2
MK
1916 found = (get_frame_pc (frame) >= func_bounds[i].low
1917 && get_frame_pc (frame) < func_bounds[i].high);
c906108c
SS
1918 if (!found)
1919 {
1920 level = 1;
033a42c2 1921 frame = find_relative_frame (frame, &level);
c906108c
SS
1922 }
1923 }
1924 while (!found && level == 0);
1925
1926 if (func_bounds)
b8c9b27d 1927 xfree (func_bounds);
c906108c
SS
1928
1929 if (!found)
a3f17187 1930 printf_filtered (_("'%s' not within current stack frame.\n"), arg);
206415a3 1931 else if (frame != get_selected_frame (NULL))
033a42c2 1932 select_and_print_frame (frame);
c906108c
SS
1933}
1934
1935/* Gets the language of the current frame. */
1936
1937enum language
fba45db2 1938get_frame_language (void)
c906108c 1939{
206415a3 1940 struct frame_info *frame = deprecated_safe_get_selected_frame ();
c5aa993b 1941
033a42c2 1942 if (frame)
c906108c 1943 {
7ae4c3a5 1944 /* We determine the current frame language by looking up its
033a42c2
MK
1945 associated symtab. To retrieve this symtab, we use the frame
1946 PC. However we cannot use the frame PC as is, because it
1947 usually points to the instruction following the "call", which
1948 is sometimes the first instruction of another function. So
1949 we rely on get_frame_address_in_block(), it provides us with
1950 a PC that is guaranteed to be inside the frame's code
1951 block. */
1952 CORE_ADDR pc = get_frame_address_in_block (frame);
1953 struct symtab *s = find_pc_symtab (pc);
1954
c906108c 1955 if (s)
033a42c2 1956 return s->language;
c906108c 1957 }
c906108c 1958
033a42c2 1959 return language_unknown;
c906108c
SS
1960}
1961\f
033a42c2
MK
1962
1963/* Provide a prototype to silence -Wmissing-prototypes. */
1964void _initialize_stack (void);
1965
c906108c 1966void
fba45db2 1967_initialize_stack (void)
c906108c 1968{
c5aa993b 1969#if 0
c906108c
SS
1970 backtrace_limit = 30;
1971#endif
1972
1bedd215
AC
1973 add_com ("return", class_stack, return_command, _("\
1974Make selected stack frame return to its caller.\n\
c906108c
SS
1975Control remains in the debugger, but when you continue\n\
1976execution will resume in the frame above the one now selected.\n\
1bedd215
AC
1977If an argument is given, it is an expression for the value to return."));
1978
1979 add_com ("up", class_stack, up_command, _("\
1980Select and print stack frame that called this one.\n\
1981An argument says how many frames up to go."));
1982 add_com ("up-silently", class_support, up_silently_command, _("\
1983Same as the `up' command, but does not print anything.\n\
1984This is useful in command scripts."));
1985
1986 add_com ("down", class_stack, down_command, _("\
1987Select and print stack frame called by this one.\n\
1988An argument says how many frames down to go."));
c906108c
SS
1989 add_com_alias ("do", "down", class_stack, 1);
1990 add_com_alias ("dow", "down", class_stack, 1);
1bedd215
AC
1991 add_com ("down-silently", class_support, down_silently_command, _("\
1992Same as the `down' command, but does not print anything.\n\
1993This is useful in command scripts."));
c906108c 1994
1bedd215
AC
1995 add_com ("frame", class_stack, frame_command, _("\
1996Select and print a stack frame.\n\
c906108c
SS
1997With no argument, print the selected stack frame. (See also \"info frame\").\n\
1998An argument specifies the frame to select.\n\
1999It can be a stack frame number or the address of the frame.\n\
2000With argument, nothing is printed if input is coming from\n\
1bedd215 2001a command file or a user-defined command."));
c906108c
SS
2002
2003 add_com_alias ("f", "frame", class_stack, 1);
2004
2005 if (xdb_commands)
2006 {
c5aa993b 2007 add_com ("L", class_stack, current_frame_command,
1bedd215 2008 _("Print the current stack frame.\n"));
c906108c
SS
2009 add_com_alias ("V", "frame", class_stack, 1);
2010 }
1bedd215
AC
2011 add_com ("select-frame", class_stack, select_frame_command, _("\
2012Select a stack frame without printing anything.\n\
c906108c 2013An argument specifies the frame to select.\n\
1bedd215 2014It can be a stack frame number or the address of the frame.\n"));
c906108c 2015
1bedd215
AC
2016 add_com ("backtrace", class_stack, backtrace_command, _("\
2017Print backtrace of all stack frames, or innermost COUNT frames.\n\
c906108c 2018With a negative argument, print outermost -COUNT frames.\n\
1bedd215 2019Use of the 'full' qualifier also prints the values of the local variables.\n"));
c906108c
SS
2020 add_com_alias ("bt", "backtrace", class_stack, 0);
2021 if (xdb_commands)
2022 {
2023 add_com_alias ("t", "backtrace", class_stack, 0);
1bedd215
AC
2024 add_com ("T", class_stack, backtrace_full_command, _("\
2025Print backtrace of all stack frames, or innermost COUNT frames \n\
c906108c
SS
2026and the values of the local variables.\n\
2027With a negative argument, print outermost -COUNT frames.\n\
1bedd215 2028Usage: T <count>\n"));
c906108c
SS
2029 }
2030
2031 add_com_alias ("where", "backtrace", class_alias, 0);
2032 add_info ("stack", backtrace_command,
1bedd215 2033 _("Backtrace of the stack, or innermost COUNT frames."));
c906108c
SS
2034 add_info_alias ("s", "stack", 1);
2035 add_info ("frame", frame_info,
1bedd215 2036 _("All about selected stack frame, or frame at ADDR."));
c906108c
SS
2037 add_info_alias ("f", "frame", 1);
2038 add_info ("locals", locals_info,
1bedd215 2039 _("Local variables of current stack frame."));
c906108c 2040 add_info ("args", args_info,
1bedd215 2041 _("Argument variables of current stack frame."));
c906108c 2042 if (xdb_commands)
c5aa993b 2043 add_com ("l", class_info, args_plus_locals_info,
1bedd215 2044 _("Argument and local variables of current stack frame."));
c906108c
SS
2045
2046 if (dbx_commands)
1bedd215
AC
2047 add_com ("func", class_stack, func_command, _("\
2048Select the stack frame that contains <func>.\n\
2049Usage: func <name>\n"));
c906108c
SS
2050
2051 add_info ("catch", catch_info,
1bedd215 2052 _("Exceptions that can be caught in the current stack frame."));
c906108c
SS
2053
2054#if 0
1a966eab
AC
2055 add_cmd ("backtrace-limit", class_stack, set_backtrace_limit_command, _(\
2056"Specify maximum number of frames for \"backtrace\" to print by default."),
c906108c 2057 &setlist);
1bedd215
AC
2058 add_info ("backtrace-limit", backtrace_limit_info, _("\
2059The maximum number of frames for \"backtrace\" to print by default."));
c906108c
SS
2060#endif
2061}
This page took 1.342875 seconds and 4 git commands to generate.