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