1 /* Cache and manage frames for GDB, the GNU debugger.
3 Copyright (C) 1986, 1987, 1989, 1991, 1994, 1995, 1996, 1998, 2000, 2001,
4 2002, 2003, 2004, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
25 #include "inferior.h" /* for inferior_ptid */
27 #include "gdb_assert.h"
28 #include "gdb_string.h"
29 #include "user-regs.h"
30 #include "gdb_obstack.h"
31 #include "dummy-frame.h"
32 #include "sentinel-frame.h"
36 #include "frame-unwind.h"
37 #include "frame-base.h"
42 #include "exceptions.h"
43 #include "gdbthread.h"
45 #include "inline-frame.h"
47 static struct frame_info
*get_prev_frame_1 (struct frame_info
*this_frame
);
48 static struct frame_info
*get_prev_frame_raw (struct frame_info
*this_frame
);
50 /* We keep a cache of stack frames, each of which is a "struct
51 frame_info". The innermost one gets allocated (in
52 wait_for_inferior) each time the inferior stops; current_frame
53 points to it. Additional frames get allocated (in get_prev_frame)
54 as needed, and are chained through the next and prev fields. Any
55 time that the frame cache becomes invalid (most notably when we
56 execute something, but also if we change how we interpret the
57 frames (e.g. "set heuristic-fence-post" in mips-tdep.c, or anything
58 which reads new symbols)), we should call reinit_frame_cache. */
62 /* Level of this frame. The inner-most (youngest) frame is at level
63 0. As you move towards the outer-most (oldest) frame, the level
64 increases. This is a cached value. It could just as easily be
65 computed by counting back from the selected frame to the inner
67 /* NOTE: cagney/2002-04-05: Perhaps a level of ``-1'' should be
68 reserved to indicate a bogus frame - one that has been created
69 just to keep GDB happy (GDB always needs a frame). For the
70 moment leave this as speculation. */
73 /* The frame's program space. */
74 struct program_space
*pspace
;
76 /* The frame's address space. */
77 struct address_space
*aspace
;
79 /* The frame's low-level unwinder and corresponding cache. The
80 low-level unwinder is responsible for unwinding register values
81 for the previous frame. The low-level unwind methods are
82 selected based on the presence, or otherwise, of register unwind
83 information such as CFI. */
85 const struct frame_unwind
*unwind
;
87 /* Cached copy of the previous frame's architecture. */
94 /* Cached copy of the previous frame's resume address. */
100 /* Cached copy of the previous frame's function address. */
107 /* This frame's ID. */
111 struct frame_id value
;
114 /* The frame's high-level base methods, and corresponding cache.
115 The high level base methods are selected based on the frame's
117 const struct frame_base
*base
;
120 /* Pointers to the next (down, inner, younger) and previous (up,
121 outer, older) frame_info's in the frame cache. */
122 struct frame_info
*next
; /* down, inner, younger */
124 struct frame_info
*prev
; /* up, outer, older */
126 /* The reason why we could not set PREV, or UNWIND_NO_REASON if we
127 could. Only valid when PREV_P is set. */
128 enum unwind_stop_reason stop_reason
;
131 /* A frame stash used to speed up frame lookups. */
133 /* We currently only stash one frame at a time, as this seems to be
134 sufficient for now. */
135 static struct frame_info
*frame_stash
= NULL
;
137 /* Add the following FRAME to the frame stash. */
140 frame_stash_add (struct frame_info
*frame
)
145 /* Search the frame stash for an entry with the given frame ID.
146 If found, return that frame. Otherwise return NULL. */
148 static struct frame_info
*
149 frame_stash_find (struct frame_id id
)
151 if (frame_stash
&& frame_id_eq (frame_stash
->this_id
.value
, id
))
157 /* Invalidate the frame stash by removing all entries in it. */
160 frame_stash_invalidate (void)
165 /* Flag to control debugging. */
169 show_frame_debug (struct ui_file
*file
, int from_tty
,
170 struct cmd_list_element
*c
, const char *value
)
172 fprintf_filtered (file
, _("Frame debugging is %s.\n"), value
);
175 /* Flag to indicate whether backtraces should stop at main et.al. */
177 static int backtrace_past_main
;
179 show_backtrace_past_main (struct ui_file
*file
, int from_tty
,
180 struct cmd_list_element
*c
, const char *value
)
182 fprintf_filtered (file
, _("\
183 Whether backtraces should continue past \"main\" is %s.\n"),
187 static int backtrace_past_entry
;
189 show_backtrace_past_entry (struct ui_file
*file
, int from_tty
,
190 struct cmd_list_element
*c
, const char *value
)
192 fprintf_filtered (file
, _("\
193 Whether backtraces should continue past the entry point of a program is %s.\n"),
197 static int backtrace_limit
= INT_MAX
;
199 show_backtrace_limit (struct ui_file
*file
, int from_tty
,
200 struct cmd_list_element
*c
, const char *value
)
202 fprintf_filtered (file
, _("\
203 An upper bound on the number of backtrace levels is %s.\n"),
209 fprint_field (struct ui_file
*file
, const char *name
, int p
, CORE_ADDR addr
)
212 fprintf_unfiltered (file
, "%s=%s", name
, hex_string (addr
));
214 fprintf_unfiltered (file
, "!%s", name
);
218 fprint_frame_id (struct ui_file
*file
, struct frame_id id
)
220 fprintf_unfiltered (file
, "{");
221 fprint_field (file
, "stack", id
.stack_addr_p
, id
.stack_addr
);
222 fprintf_unfiltered (file
, ",");
223 fprint_field (file
, "code", id
.code_addr_p
, id
.code_addr
);
224 fprintf_unfiltered (file
, ",");
225 fprint_field (file
, "special", id
.special_addr_p
, id
.special_addr
);
227 fprintf_unfiltered (file
, ",inlined=%d", id
.inline_depth
);
228 fprintf_unfiltered (file
, "}");
232 fprint_frame_type (struct ui_file
*file
, enum frame_type type
)
237 fprintf_unfiltered (file
, "NORMAL_FRAME");
240 fprintf_unfiltered (file
, "DUMMY_FRAME");
243 fprintf_unfiltered (file
, "INLINE_FRAME");
246 fprintf_unfiltered (file
, "SENTINEL_FRAME");
249 fprintf_unfiltered (file
, "SIGTRAMP_FRAME");
252 fprintf_unfiltered (file
, "ARCH_FRAME");
255 fprintf_unfiltered (file
, "<unknown type>");
261 fprint_frame (struct ui_file
*file
, struct frame_info
*fi
)
265 fprintf_unfiltered (file
, "<NULL frame>");
268 fprintf_unfiltered (file
, "{");
269 fprintf_unfiltered (file
, "level=%d", fi
->level
);
270 fprintf_unfiltered (file
, ",");
271 fprintf_unfiltered (file
, "type=");
272 if (fi
->unwind
!= NULL
)
273 fprint_frame_type (file
, fi
->unwind
->type
);
275 fprintf_unfiltered (file
, "<unknown>");
276 fprintf_unfiltered (file
, ",");
277 fprintf_unfiltered (file
, "unwind=");
278 if (fi
->unwind
!= NULL
)
279 gdb_print_host_address (fi
->unwind
, file
);
281 fprintf_unfiltered (file
, "<unknown>");
282 fprintf_unfiltered (file
, ",");
283 fprintf_unfiltered (file
, "pc=");
284 if (fi
->next
!= NULL
&& fi
->next
->prev_pc
.p
)
285 fprintf_unfiltered (file
, "%s", hex_string (fi
->next
->prev_pc
.value
));
287 fprintf_unfiltered (file
, "<unknown>");
288 fprintf_unfiltered (file
, ",");
289 fprintf_unfiltered (file
, "id=");
291 fprint_frame_id (file
, fi
->this_id
.value
);
293 fprintf_unfiltered (file
, "<unknown>");
294 fprintf_unfiltered (file
, ",");
295 fprintf_unfiltered (file
, "func=");
296 if (fi
->next
!= NULL
&& fi
->next
->prev_func
.p
)
297 fprintf_unfiltered (file
, "%s", hex_string (fi
->next
->prev_func
.addr
));
299 fprintf_unfiltered (file
, "<unknown>");
300 fprintf_unfiltered (file
, "}");
303 /* Given FRAME, return the enclosing normal frame for inlined
304 function frames. Otherwise return the original frame. */
306 static struct frame_info
*
307 skip_inlined_frames (struct frame_info
*frame
)
309 while (get_frame_type (frame
) == INLINE_FRAME
)
310 frame
= get_prev_frame (frame
);
315 /* Return a frame uniq ID that can be used to, later, re-find the
319 get_frame_id (struct frame_info
*fi
)
322 return null_frame_id
;
327 fprintf_unfiltered (gdb_stdlog
, "{ get_frame_id (fi=%d) ",
329 /* Find the unwinder. */
330 if (fi
->unwind
== NULL
)
331 fi
->unwind
= frame_unwind_find_by_frame (fi
, &fi
->prologue_cache
);
332 /* Find THIS frame's ID. */
333 /* Default to outermost if no ID is found. */
334 fi
->this_id
.value
= outer_frame_id
;
335 fi
->unwind
->this_id (fi
, &fi
->prologue_cache
, &fi
->this_id
.value
);
336 gdb_assert (frame_id_p (fi
->this_id
.value
));
340 fprintf_unfiltered (gdb_stdlog
, "-> ");
341 fprint_frame_id (gdb_stdlog
, fi
->this_id
.value
);
342 fprintf_unfiltered (gdb_stdlog
, " }\n");
346 frame_stash_add (fi
);
348 return fi
->this_id
.value
;
352 get_stack_frame_id (struct frame_info
*next_frame
)
354 return get_frame_id (skip_inlined_frames (next_frame
));
358 frame_unwind_caller_id (struct frame_info
*next_frame
)
360 struct frame_info
*this_frame
;
362 /* Use get_prev_frame_1, and not get_prev_frame. The latter will truncate
363 the frame chain, leading to this function unintentionally
364 returning a null_frame_id (e.g., when a caller requests the frame
365 ID of "main()"s caller. */
367 next_frame
= skip_inlined_frames (next_frame
);
368 this_frame
= get_prev_frame_1 (next_frame
);
370 return get_frame_id (skip_inlined_frames (this_frame
));
372 return null_frame_id
;
375 const struct frame_id null_frame_id
; /* All zeros. */
376 const struct frame_id outer_frame_id
= { 0, 0, 0, 0, 0, 1, 0 };
379 frame_id_build_special (CORE_ADDR stack_addr
, CORE_ADDR code_addr
,
380 CORE_ADDR special_addr
)
382 struct frame_id id
= null_frame_id
;
383 id
.stack_addr
= stack_addr
;
385 id
.code_addr
= code_addr
;
387 id
.special_addr
= special_addr
;
388 id
.special_addr_p
= 1;
393 frame_id_build (CORE_ADDR stack_addr
, CORE_ADDR code_addr
)
395 struct frame_id id
= null_frame_id
;
396 id
.stack_addr
= stack_addr
;
398 id
.code_addr
= code_addr
;
404 frame_id_build_wild (CORE_ADDR stack_addr
)
406 struct frame_id id
= null_frame_id
;
407 id
.stack_addr
= stack_addr
;
413 frame_id_p (struct frame_id l
)
416 /* The frame is valid iff it has a valid stack address. */
418 /* outer_frame_id is also valid. */
419 if (!p
&& memcmp (&l
, &outer_frame_id
, sizeof (l
)) == 0)
423 fprintf_unfiltered (gdb_stdlog
, "{ frame_id_p (l=");
424 fprint_frame_id (gdb_stdlog
, l
);
425 fprintf_unfiltered (gdb_stdlog
, ") -> %d }\n", p
);
431 frame_id_inlined_p (struct frame_id l
)
436 return (l
.inline_depth
!= 0);
440 frame_id_eq (struct frame_id l
, struct frame_id r
)
443 if (!l
.stack_addr_p
&& l
.special_addr_p
&& !r
.stack_addr_p
&& r
.special_addr_p
)
444 /* The outermost frame marker is equal to itself. This is the
445 dodgy thing about outer_frame_id, since between execution steps
446 we might step into another function - from which we can't
447 unwind either. More thought required to get rid of
450 else if (!l
.stack_addr_p
|| !r
.stack_addr_p
)
451 /* Like a NaN, if either ID is invalid, the result is false.
452 Note that a frame ID is invalid iff it is the null frame ID. */
454 else if (l
.stack_addr
!= r
.stack_addr
)
455 /* If .stack addresses are different, the frames are different. */
457 else if (l
.code_addr_p
&& r
.code_addr_p
&& l
.code_addr
!= r
.code_addr
)
458 /* An invalid code addr is a wild card. If .code addresses are
459 different, the frames are different. */
461 else if (l
.special_addr_p
&& r
.special_addr_p
462 && l
.special_addr
!= r
.special_addr
)
463 /* An invalid special addr is a wild card (or unused). Otherwise
464 if special addresses are different, the frames are different. */
466 else if (l
.inline_depth
!= r
.inline_depth
)
467 /* If inline depths are different, the frames must be different. */
470 /* Frames are equal. */
475 fprintf_unfiltered (gdb_stdlog
, "{ frame_id_eq (l=");
476 fprint_frame_id (gdb_stdlog
, l
);
477 fprintf_unfiltered (gdb_stdlog
, ",r=");
478 fprint_frame_id (gdb_stdlog
, r
);
479 fprintf_unfiltered (gdb_stdlog
, ") -> %d }\n", eq
);
484 /* Safety net to check whether frame ID L should be inner to
485 frame ID R, according to their stack addresses.
487 This method cannot be used to compare arbitrary frames, as the
488 ranges of valid stack addresses may be discontiguous (e.g. due
491 However, it can be used as safety net to discover invalid frame
492 IDs in certain circumstances. Assuming that NEXT is the immediate
493 inner frame to THIS and that NEXT and THIS are both NORMAL frames:
495 * The stack address of NEXT must be inner-than-or-equal to the stack
498 Therefore, if frame_id_inner (THIS, NEXT) holds, some unwind
501 * If NEXT and THIS have different stack addresses, no other frame
502 in the frame chain may have a stack address in between.
504 Therefore, if frame_id_inner (TEST, THIS) holds, but
505 frame_id_inner (TEST, NEXT) does not hold, TEST cannot refer
506 to a valid frame in the frame chain.
508 The sanity checks above cannot be performed when a SIGTRAMP frame
509 is involved, because signal handlers might be executed on a different
510 stack than the stack used by the routine that caused the signal
511 to be raised. This can happen for instance when a thread exceeds
512 its maximum stack size. In this case, certain compilers implement
513 a stack overflow strategy that cause the handler to be run on a
517 frame_id_inner (struct gdbarch
*gdbarch
, struct frame_id l
, struct frame_id r
)
520 if (!l
.stack_addr_p
|| !r
.stack_addr_p
)
521 /* Like NaN, any operation involving an invalid ID always fails. */
523 else if (l
.inline_depth
> r
.inline_depth
524 && l
.stack_addr
== r
.stack_addr
525 && l
.code_addr_p
== r
.code_addr_p
526 && l
.special_addr_p
== r
.special_addr_p
527 && l
.special_addr
== r
.special_addr
)
529 /* Same function, different inlined functions. */
530 struct block
*lb
, *rb
;
532 gdb_assert (l
.code_addr_p
&& r
.code_addr_p
);
534 lb
= block_for_pc (l
.code_addr
);
535 rb
= block_for_pc (r
.code_addr
);
537 if (lb
== NULL
|| rb
== NULL
)
538 /* Something's gone wrong. */
541 /* This will return true if LB and RB are the same block, or
542 if the block with the smaller depth lexically encloses the
543 block with the greater depth. */
544 inner
= contained_in (lb
, rb
);
547 /* Only return non-zero when strictly inner than. Note that, per
548 comment in "frame.h", there is some fuzz here. Frameless
549 functions are not strictly inner than (same .stack but
550 different .code and/or .special address). */
551 inner
= gdbarch_inner_than (gdbarch
, l
.stack_addr
, r
.stack_addr
);
554 fprintf_unfiltered (gdb_stdlog
, "{ frame_id_inner (l=");
555 fprint_frame_id (gdb_stdlog
, l
);
556 fprintf_unfiltered (gdb_stdlog
, ",r=");
557 fprint_frame_id (gdb_stdlog
, r
);
558 fprintf_unfiltered (gdb_stdlog
, ") -> %d }\n", inner
);
564 frame_find_by_id (struct frame_id id
)
566 struct frame_info
*frame
, *prev_frame
;
568 /* ZERO denotes the null frame, let the caller decide what to do
569 about it. Should it instead return get_current_frame()? */
570 if (!frame_id_p (id
))
573 /* Try using the frame stash first. Finding it there removes the need
574 to perform the search by looping over all frames, which can be very
575 CPU-intensive if the number of frames is very high (the loop is O(n)
576 and get_prev_frame performs a series of checks that are relatively
577 expensive). This optimization is particularly useful when this function
578 is called from another function (such as value_fetch_lazy, case
579 VALUE_LVAL (val) == lval_register) which already loops over all frames,
580 making the overall behavior O(n^2). */
581 frame
= frame_stash_find (id
);
585 for (frame
= get_current_frame (); ; frame
= prev_frame
)
587 struct frame_id
this = get_frame_id (frame
);
588 if (frame_id_eq (id
, this))
589 /* An exact match. */
592 prev_frame
= get_prev_frame (frame
);
596 /* As a safety net to avoid unnecessary backtracing while trying
597 to find an invalid ID, we check for a common situation where
598 we can detect from comparing stack addresses that no other
599 frame in the current frame chain can have this ID. See the
600 comment at frame_id_inner for details. */
601 if (get_frame_type (frame
) == NORMAL_FRAME
602 && !frame_id_inner (get_frame_arch (frame
), id
, this)
603 && frame_id_inner (get_frame_arch (prev_frame
), id
,
604 get_frame_id (prev_frame
)))
611 frame_unwind_pc (struct frame_info
*this_frame
)
613 if (!this_frame
->prev_pc
.p
)
616 if (gdbarch_unwind_pc_p (frame_unwind_arch (this_frame
)))
618 /* The right way. The `pure' way. The one true way. This
619 method depends solely on the register-unwind code to
620 determine the value of registers in THIS frame, and hence
621 the value of this frame's PC (resume address). A typical
622 implementation is no more than:
624 frame_unwind_register (this_frame, ISA_PC_REGNUM, buf);
625 return extract_unsigned_integer (buf, size of ISA_PC_REGNUM);
627 Note: this method is very heavily dependent on a correct
628 register-unwind implementation, it pays to fix that
629 method first; this method is frame type agnostic, since
630 it only deals with register values, it works with any
631 frame. This is all in stark contrast to the old
632 FRAME_SAVED_PC which would try to directly handle all the
633 different ways that a PC could be unwound. */
634 pc
= gdbarch_unwind_pc (frame_unwind_arch (this_frame
), this_frame
);
637 internal_error (__FILE__
, __LINE__
, _("No unwind_pc method"));
638 this_frame
->prev_pc
.value
= pc
;
639 this_frame
->prev_pc
.p
= 1;
641 fprintf_unfiltered (gdb_stdlog
,
642 "{ frame_unwind_caller_pc (this_frame=%d) -> %s }\n",
644 hex_string (this_frame
->prev_pc
.value
));
646 return this_frame
->prev_pc
.value
;
650 frame_unwind_caller_pc (struct frame_info
*this_frame
)
652 return frame_unwind_pc (skip_inlined_frames (this_frame
));
656 get_frame_func (struct frame_info
*this_frame
)
658 struct frame_info
*next_frame
= this_frame
->next
;
660 if (!next_frame
->prev_func
.p
)
662 /* Make certain that this, and not the adjacent, function is
664 CORE_ADDR addr_in_block
= get_frame_address_in_block (this_frame
);
665 next_frame
->prev_func
.p
= 1;
666 next_frame
->prev_func
.addr
= get_pc_function_start (addr_in_block
);
668 fprintf_unfiltered (gdb_stdlog
,
669 "{ get_frame_func (this_frame=%d) -> %s }\n",
671 hex_string (next_frame
->prev_func
.addr
));
673 return next_frame
->prev_func
.addr
;
677 do_frame_register_read (void *src
, int regnum
, gdb_byte
*buf
)
679 return frame_register_read (src
, regnum
, buf
);
683 frame_save_as_regcache (struct frame_info
*this_frame
)
685 struct address_space
*aspace
= get_frame_address_space (this_frame
);
686 struct regcache
*regcache
= regcache_xmalloc (get_frame_arch (this_frame
),
688 struct cleanup
*cleanups
= make_cleanup_regcache_xfree (regcache
);
689 regcache_save (regcache
, do_frame_register_read
, this_frame
);
690 discard_cleanups (cleanups
);
695 frame_pop (struct frame_info
*this_frame
)
697 struct frame_info
*prev_frame
;
698 struct regcache
*scratch
;
699 struct cleanup
*cleanups
;
701 if (get_frame_type (this_frame
) == DUMMY_FRAME
)
703 /* Popping a dummy frame involves restoring more than just registers.
704 dummy_frame_pop does all the work. */
705 dummy_frame_pop (get_frame_id (this_frame
));
709 /* Ensure that we have a frame to pop to. */
710 prev_frame
= get_prev_frame_1 (this_frame
);
713 error (_("Cannot pop the initial frame."));
715 /* Make a copy of all the register values unwound from this frame.
716 Save them in a scratch buffer so that there isn't a race between
717 trying to extract the old values from the current regcache while
718 at the same time writing new values into that same cache. */
719 scratch
= frame_save_as_regcache (prev_frame
);
720 cleanups
= make_cleanup_regcache_xfree (scratch
);
722 /* FIXME: cagney/2003-03-16: It should be possible to tell the
723 target's register cache that it is about to be hit with a burst
724 register transfer and that the sequence of register writes should
725 be batched. The pair target_prepare_to_store() and
726 target_store_registers() kind of suggest this functionality.
727 Unfortunately, they don't implement it. Their lack of a formal
728 definition can lead to targets writing back bogus values
729 (arguably a bug in the target code mind). */
730 /* Now copy those saved registers into the current regcache.
731 Here, regcache_cpy() calls regcache_restore(). */
732 regcache_cpy (get_current_regcache (), scratch
);
733 do_cleanups (cleanups
);
735 /* We've made right mess of GDB's local state, just discard
737 reinit_frame_cache ();
741 frame_register_unwind (struct frame_info
*frame
, int regnum
,
742 int *optimizedp
, enum lval_type
*lvalp
,
743 CORE_ADDR
*addrp
, int *realnump
, gdb_byte
*bufferp
)
747 /* Require all but BUFFERP to be valid. A NULL BUFFERP indicates
748 that the value proper does not need to be fetched. */
749 gdb_assert (optimizedp
!= NULL
);
750 gdb_assert (lvalp
!= NULL
);
751 gdb_assert (addrp
!= NULL
);
752 gdb_assert (realnump
!= NULL
);
753 /* gdb_assert (bufferp != NULL); */
755 value
= frame_unwind_register_value (frame
, regnum
);
757 gdb_assert (value
!= NULL
);
759 *optimizedp
= value_optimized_out (value
);
760 *lvalp
= VALUE_LVAL (value
);
761 *addrp
= value_address (value
);
762 *realnump
= VALUE_REGNUM (value
);
765 memcpy (bufferp
, value_contents_all (value
),
766 TYPE_LENGTH (value_type (value
)));
768 /* Dispose of the new value. This prevents watchpoints from
769 trying to watch the saved frame pointer. */
770 release_value (value
);
775 frame_register (struct frame_info
*frame
, int regnum
,
776 int *optimizedp
, enum lval_type
*lvalp
,
777 CORE_ADDR
*addrp
, int *realnump
, gdb_byte
*bufferp
)
779 /* Require all but BUFFERP to be valid. A NULL BUFFERP indicates
780 that the value proper does not need to be fetched. */
781 gdb_assert (optimizedp
!= NULL
);
782 gdb_assert (lvalp
!= NULL
);
783 gdb_assert (addrp
!= NULL
);
784 gdb_assert (realnump
!= NULL
);
785 /* gdb_assert (bufferp != NULL); */
787 /* Obtain the register value by unwinding the register from the next
788 (more inner frame). */
789 gdb_assert (frame
!= NULL
&& frame
->next
!= NULL
);
790 frame_register_unwind (frame
->next
, regnum
, optimizedp
, lvalp
, addrp
,
795 frame_unwind_register (struct frame_info
*frame
, int regnum
, gdb_byte
*buf
)
801 frame_register_unwind (frame
, regnum
, &optimized
, &lval
, &addr
,
806 get_frame_register (struct frame_info
*frame
,
807 int regnum
, gdb_byte
*buf
)
809 frame_unwind_register (frame
->next
, regnum
, buf
);
813 frame_unwind_register_value (struct frame_info
*frame
, int regnum
)
815 struct gdbarch
*gdbarch
;
818 gdb_assert (frame
!= NULL
);
819 gdbarch
= frame_unwind_arch (frame
);
823 fprintf_unfiltered (gdb_stdlog
, "\
824 { frame_unwind_register_value (frame=%d,regnum=%d(%s),...) ",
825 frame
->level
, regnum
,
826 user_reg_map_regnum_to_name (gdbarch
, regnum
));
829 /* Find the unwinder. */
830 if (frame
->unwind
== NULL
)
831 frame
->unwind
= frame_unwind_find_by_frame (frame
, &frame
->prologue_cache
);
833 /* Ask this frame to unwind its register. */
834 value
= frame
->unwind
->prev_register (frame
, &frame
->prologue_cache
, regnum
);
838 fprintf_unfiltered (gdb_stdlog
, "->");
839 if (value_optimized_out (value
))
840 fprintf_unfiltered (gdb_stdlog
, " optimized out");
843 if (VALUE_LVAL (value
) == lval_register
)
844 fprintf_unfiltered (gdb_stdlog
, " register=%d",
845 VALUE_REGNUM (value
));
846 else if (VALUE_LVAL (value
) == lval_memory
)
847 fprintf_unfiltered (gdb_stdlog
, " address=%s",
849 value_address (value
)));
851 fprintf_unfiltered (gdb_stdlog
, " computed");
853 if (value_lazy (value
))
854 fprintf_unfiltered (gdb_stdlog
, " lazy");
858 const gdb_byte
*buf
= value_contents (value
);
860 fprintf_unfiltered (gdb_stdlog
, " bytes=");
861 fprintf_unfiltered (gdb_stdlog
, "[");
862 for (i
= 0; i
< register_size (gdbarch
, regnum
); i
++)
863 fprintf_unfiltered (gdb_stdlog
, "%02x", buf
[i
]);
864 fprintf_unfiltered (gdb_stdlog
, "]");
868 fprintf_unfiltered (gdb_stdlog
, " }\n");
875 get_frame_register_value (struct frame_info
*frame
, int regnum
)
877 return frame_unwind_register_value (frame
->next
, regnum
);
881 frame_unwind_register_signed (struct frame_info
*frame
, int regnum
)
883 struct gdbarch
*gdbarch
= frame_unwind_arch (frame
);
884 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
885 int size
= register_size (gdbarch
, regnum
);
886 gdb_byte buf
[MAX_REGISTER_SIZE
];
887 frame_unwind_register (frame
, regnum
, buf
);
888 return extract_signed_integer (buf
, size
, byte_order
);
892 get_frame_register_signed (struct frame_info
*frame
, int regnum
)
894 return frame_unwind_register_signed (frame
->next
, regnum
);
898 frame_unwind_register_unsigned (struct frame_info
*frame
, int regnum
)
900 struct gdbarch
*gdbarch
= frame_unwind_arch (frame
);
901 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
902 int size
= register_size (gdbarch
, regnum
);
903 gdb_byte buf
[MAX_REGISTER_SIZE
];
904 frame_unwind_register (frame
, regnum
, buf
);
905 return extract_unsigned_integer (buf
, size
, byte_order
);
909 get_frame_register_unsigned (struct frame_info
*frame
, int regnum
)
911 return frame_unwind_register_unsigned (frame
->next
, regnum
);
915 put_frame_register (struct frame_info
*frame
, int regnum
,
918 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
923 frame_register (frame
, regnum
, &optim
, &lval
, &addr
, &realnum
, NULL
);
925 error (_("Attempt to assign to a value that was optimized out."));
930 /* FIXME: write_memory doesn't yet take constant buffers.
932 gdb_byte tmp
[MAX_REGISTER_SIZE
];
933 memcpy (tmp
, buf
, register_size (gdbarch
, regnum
));
934 write_memory (addr
, tmp
, register_size (gdbarch
, regnum
));
938 regcache_cooked_write (get_current_regcache (), realnum
, buf
);
941 error (_("Attempt to assign to an unmodifiable value."));
945 /* frame_register_read ()
947 Find and return the value of REGNUM for the specified stack frame.
948 The number of bytes copied is REGISTER_SIZE (REGNUM).
950 Returns 0 if the register value could not be found. */
953 frame_register_read (struct frame_info
*frame
, int regnum
,
960 frame_register (frame
, regnum
, &optimized
, &lval
, &addr
, &realnum
, myaddr
);
966 get_frame_register_bytes (struct frame_info
*frame
, int regnum
,
967 CORE_ADDR offset
, int len
, gdb_byte
*myaddr
)
969 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
974 /* Skip registers wholly inside of OFFSET. */
975 while (offset
>= register_size (gdbarch
, regnum
))
977 offset
-= register_size (gdbarch
, regnum
);
981 /* Ensure that we will not read beyond the end of the register file.
982 This can only ever happen if the debug information is bad. */
984 numregs
= gdbarch_num_regs (gdbarch
) + gdbarch_num_pseudo_regs (gdbarch
);
985 for (i
= regnum
; i
< numregs
; i
++)
987 int thissize
= register_size (gdbarch
, i
);
989 break; /* This register is not available on this architecture. */
994 warning (_("Bad debug information detected: "
995 "Attempt to read %d bytes from registers."), len
);
1002 int curr_len
= register_size (gdbarch
, regnum
) - offset
;
1006 if (curr_len
== register_size (gdbarch
, regnum
))
1008 if (!frame_register_read (frame
, regnum
, myaddr
))
1013 gdb_byte buf
[MAX_REGISTER_SIZE
];
1014 if (!frame_register_read (frame
, regnum
, buf
))
1016 memcpy (myaddr
, buf
+ offset
, curr_len
);
1029 put_frame_register_bytes (struct frame_info
*frame
, int regnum
,
1030 CORE_ADDR offset
, int len
, const gdb_byte
*myaddr
)
1032 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
1034 /* Skip registers wholly inside of OFFSET. */
1035 while (offset
>= register_size (gdbarch
, regnum
))
1037 offset
-= register_size (gdbarch
, regnum
);
1041 /* Copy the data. */
1044 int curr_len
= register_size (gdbarch
, regnum
) - offset
;
1048 if (curr_len
== register_size (gdbarch
, regnum
))
1050 put_frame_register (frame
, regnum
, myaddr
);
1054 gdb_byte buf
[MAX_REGISTER_SIZE
];
1055 frame_register_read (frame
, regnum
, buf
);
1056 memcpy (buf
+ offset
, myaddr
, curr_len
);
1057 put_frame_register (frame
, regnum
, buf
);
1067 /* Create a sentinel frame. */
1069 static struct frame_info
*
1070 create_sentinel_frame (struct program_space
*pspace
, struct regcache
*regcache
)
1072 struct frame_info
*frame
= FRAME_OBSTACK_ZALLOC (struct frame_info
);
1074 frame
->pspace
= pspace
;
1075 frame
->aspace
= get_regcache_aspace (regcache
);
1076 /* Explicitly initialize the sentinel frame's cache. Provide it
1077 with the underlying regcache. In the future additional
1078 information, such as the frame's thread will be added. */
1079 frame
->prologue_cache
= sentinel_frame_cache (regcache
);
1080 /* For the moment there is only one sentinel frame implementation. */
1081 frame
->unwind
= sentinel_frame_unwind
;
1082 /* Link this frame back to itself. The frame is self referential
1083 (the unwound PC is the same as the pc), so make it so. */
1084 frame
->next
= frame
;
1085 /* Make the sentinel frame's ID valid, but invalid. That way all
1086 comparisons with it should fail. */
1087 frame
->this_id
.p
= 1;
1088 frame
->this_id
.value
= null_frame_id
;
1091 fprintf_unfiltered (gdb_stdlog
, "{ create_sentinel_frame (...) -> ");
1092 fprint_frame (gdb_stdlog
, frame
);
1093 fprintf_unfiltered (gdb_stdlog
, " }\n");
1098 /* Info about the innermost stack frame (contents of FP register) */
1100 static struct frame_info
*current_frame
;
1102 /* Cache for frame addresses already read by gdb. Valid only while
1103 inferior is stopped. Control variables for the frame cache should
1104 be local to this module. */
1106 static struct obstack frame_cache_obstack
;
1109 frame_obstack_zalloc (unsigned long size
)
1111 void *data
= obstack_alloc (&frame_cache_obstack
, size
);
1112 memset (data
, 0, size
);
1116 /* Return the innermost (currently executing) stack frame. This is
1117 split into two functions. The function unwind_to_current_frame()
1118 is wrapped in catch exceptions so that, even when the unwind of the
1119 sentinel frame fails, the function still returns a stack frame. */
1122 unwind_to_current_frame (struct ui_out
*ui_out
, void *args
)
1124 struct frame_info
*frame
= get_prev_frame (args
);
1125 /* A sentinel frame can fail to unwind, e.g., because its PC value
1126 lands in somewhere like start. */
1129 current_frame
= frame
;
1134 get_current_frame (void)
1136 /* First check, and report, the lack of registers. Having GDB
1137 report "No stack!" or "No memory" when the target doesn't even
1138 have registers is very confusing. Besides, "printcmd.exp"
1139 explicitly checks that ``print $pc'' with no registers prints "No
1141 if (!target_has_registers
)
1142 error (_("No registers."));
1143 if (!target_has_stack
)
1144 error (_("No stack."));
1145 if (!target_has_memory
)
1146 error (_("No memory."));
1147 if (ptid_equal (inferior_ptid
, null_ptid
))
1148 error (_("No selected thread."));
1149 if (is_exited (inferior_ptid
))
1150 error (_("Invalid selected thread."));
1151 if (is_executing (inferior_ptid
))
1152 error (_("Target is executing."));
1154 if (current_frame
== NULL
)
1156 struct frame_info
*sentinel_frame
=
1157 create_sentinel_frame (current_program_space
, get_current_regcache ());
1158 if (catch_exceptions (uiout
, unwind_to_current_frame
, sentinel_frame
,
1159 RETURN_MASK_ERROR
) != 0)
1161 /* Oops! Fake a current frame? Is this useful? It has a PC
1162 of zero, for instance. */
1163 current_frame
= sentinel_frame
;
1166 return current_frame
;
1169 /* The "selected" stack frame is used by default for local and arg
1170 access. May be zero, for no selected frame. */
1172 static struct frame_info
*selected_frame
;
1175 has_stack_frames (void)
1177 if (!target_has_registers
|| !target_has_stack
|| !target_has_memory
)
1180 /* No current inferior, no frame. */
1181 if (ptid_equal (inferior_ptid
, null_ptid
))
1184 /* Don't try to read from a dead thread. */
1185 if (is_exited (inferior_ptid
))
1188 /* ... or from a spinning thread. */
1189 if (is_executing (inferior_ptid
))
1195 /* Return the selected frame. Always non-NULL (unless there isn't an
1196 inferior sufficient for creating a frame) in which case an error is
1200 get_selected_frame (const char *message
)
1202 if (selected_frame
== NULL
)
1204 if (message
!= NULL
&& !has_stack_frames ())
1205 error (("%s"), message
);
1206 /* Hey! Don't trust this. It should really be re-finding the
1207 last selected frame of the currently selected thread. This,
1208 though, is better than nothing. */
1209 select_frame (get_current_frame ());
1211 /* There is always a frame. */
1212 gdb_assert (selected_frame
!= NULL
);
1213 return selected_frame
;
1216 /* This is a variant of get_selected_frame() which can be called when
1217 the inferior does not have a frame; in that case it will return
1218 NULL instead of calling error(). */
1221 deprecated_safe_get_selected_frame (void)
1223 if (!has_stack_frames ())
1225 return get_selected_frame (NULL
);
1228 /* Select frame FI (or NULL - to invalidate the current frame). */
1231 select_frame (struct frame_info
*fi
)
1235 selected_frame
= fi
;
1236 /* NOTE: cagney/2002-05-04: FI can be NULL. This occurs when the
1237 frame is being invalidated. */
1238 if (deprecated_selected_frame_level_changed_hook
)
1239 deprecated_selected_frame_level_changed_hook (frame_relative_level (fi
));
1241 /* FIXME: kseitz/2002-08-28: It would be nice to call
1242 selected_frame_level_changed_event() right here, but due to limitations
1243 in the current interfaces, we would end up flooding UIs with events
1244 because select_frame() is used extensively internally.
1246 Once we have frame-parameterized frame (and frame-related) commands,
1247 the event notification can be moved here, since this function will only
1248 be called when the user's selected frame is being changed. */
1250 /* Ensure that symbols for this frame are read in. Also, determine the
1251 source language of this frame, and switch to it if desired. */
1254 /* We retrieve the frame's symtab by using the frame PC. However
1255 we cannot use the frame PC as-is, because it usually points to
1256 the instruction following the "call", which is sometimes the
1257 first instruction of another function. So we rely on
1258 get_frame_address_in_block() which provides us with a PC which
1259 is guaranteed to be inside the frame's code block. */
1260 s
= find_pc_symtab (get_frame_address_in_block (fi
));
1262 && s
->language
!= current_language
->la_language
1263 && s
->language
!= language_unknown
1264 && language_mode
== language_mode_auto
)
1266 set_language (s
->language
);
1271 /* Create an arbitrary (i.e. address specified by user) or innermost frame.
1272 Always returns a non-NULL value. */
1275 create_new_frame (CORE_ADDR addr
, CORE_ADDR pc
)
1277 struct frame_info
*fi
;
1281 fprintf_unfiltered (gdb_stdlog
,
1282 "{ create_new_frame (addr=%s, pc=%s) ",
1283 hex_string (addr
), hex_string (pc
));
1286 fi
= FRAME_OBSTACK_ZALLOC (struct frame_info
);
1288 fi
->next
= create_sentinel_frame (current_program_space
, get_current_regcache ());
1290 /* Set/update this frame's cached PC value, found in the next frame.
1291 Do this before looking for this frame's unwinder. A sniffer is
1292 very likely to read this, and the corresponding unwinder is
1293 entitled to rely that the PC doesn't magically change. */
1294 fi
->next
->prev_pc
.value
= pc
;
1295 fi
->next
->prev_pc
.p
= 1;
1297 /* We currently assume that frame chain's can't cross spaces. */
1298 fi
->pspace
= fi
->next
->pspace
;
1299 fi
->aspace
= fi
->next
->aspace
;
1301 /* Select/initialize both the unwind function and the frame's type
1303 fi
->unwind
= frame_unwind_find_by_frame (fi
, &fi
->prologue_cache
);
1306 fi
->this_id
.value
= frame_id_build (addr
, pc
);
1310 fprintf_unfiltered (gdb_stdlog
, "-> ");
1311 fprint_frame (gdb_stdlog
, fi
);
1312 fprintf_unfiltered (gdb_stdlog
, " }\n");
1318 /* Return the frame that THIS_FRAME calls (NULL if THIS_FRAME is the
1319 innermost frame). Be careful to not fall off the bottom of the
1320 frame chain and onto the sentinel frame. */
1323 get_next_frame (struct frame_info
*this_frame
)
1325 if (this_frame
->level
> 0)
1326 return this_frame
->next
;
1331 /* Observer for the target_changed event. */
1334 frame_observer_target_changed (struct target_ops
*target
)
1336 reinit_frame_cache ();
1339 /* Flush the entire frame cache. */
1342 reinit_frame_cache (void)
1344 struct frame_info
*fi
;
1346 /* Tear down all frame caches. */
1347 for (fi
= current_frame
; fi
!= NULL
; fi
= fi
->prev
)
1349 if (fi
->prologue_cache
&& fi
->unwind
->dealloc_cache
)
1350 fi
->unwind
->dealloc_cache (fi
, fi
->prologue_cache
);
1351 if (fi
->base_cache
&& fi
->base
->unwind
->dealloc_cache
)
1352 fi
->base
->unwind
->dealloc_cache (fi
, fi
->base_cache
);
1355 /* Since we can't really be sure what the first object allocated was */
1356 obstack_free (&frame_cache_obstack
, 0);
1357 obstack_init (&frame_cache_obstack
);
1359 if (current_frame
!= NULL
)
1360 annotate_frames_invalid ();
1362 current_frame
= NULL
; /* Invalidate cache */
1363 select_frame (NULL
);
1364 frame_stash_invalidate ();
1366 fprintf_unfiltered (gdb_stdlog
, "{ reinit_frame_cache () }\n");
1369 /* Find where a register is saved (in memory or another register).
1370 The result of frame_register_unwind is just where it is saved
1371 relative to this particular frame. */
1374 frame_register_unwind_location (struct frame_info
*this_frame
, int regnum
,
1375 int *optimizedp
, enum lval_type
*lvalp
,
1376 CORE_ADDR
*addrp
, int *realnump
)
1378 gdb_assert (this_frame
== NULL
|| this_frame
->level
>= 0);
1380 while (this_frame
!= NULL
)
1382 frame_register_unwind (this_frame
, regnum
, optimizedp
, lvalp
,
1383 addrp
, realnump
, NULL
);
1388 if (*lvalp
!= lval_register
)
1392 this_frame
= get_next_frame (this_frame
);
1396 /* Return a "struct frame_info" corresponding to the frame that called
1397 THIS_FRAME. Returns NULL if there is no such frame.
1399 Unlike get_prev_frame, this function always tries to unwind the
1402 static struct frame_info
*
1403 get_prev_frame_1 (struct frame_info
*this_frame
)
1405 struct frame_id this_id
;
1406 struct gdbarch
*gdbarch
;
1408 gdb_assert (this_frame
!= NULL
);
1409 gdbarch
= get_frame_arch (this_frame
);
1413 fprintf_unfiltered (gdb_stdlog
, "{ get_prev_frame_1 (this_frame=");
1414 if (this_frame
!= NULL
)
1415 fprintf_unfiltered (gdb_stdlog
, "%d", this_frame
->level
);
1417 fprintf_unfiltered (gdb_stdlog
, "<NULL>");
1418 fprintf_unfiltered (gdb_stdlog
, ") ");
1421 /* Only try to do the unwind once. */
1422 if (this_frame
->prev_p
)
1426 fprintf_unfiltered (gdb_stdlog
, "-> ");
1427 fprint_frame (gdb_stdlog
, this_frame
->prev
);
1428 fprintf_unfiltered (gdb_stdlog
, " // cached \n");
1430 return this_frame
->prev
;
1433 /* If the frame unwinder hasn't been selected yet, we must do so
1434 before setting prev_p; otherwise the check for misbehaved
1435 sniffers will think that this frame's sniffer tried to unwind
1436 further (see frame_cleanup_after_sniffer). */
1437 if (this_frame
->unwind
== NULL
)
1439 = frame_unwind_find_by_frame (this_frame
, &this_frame
->prologue_cache
);
1441 this_frame
->prev_p
= 1;
1442 this_frame
->stop_reason
= UNWIND_NO_REASON
;
1444 /* If we are unwinding from an inline frame, all of the below tests
1445 were already performed when we unwound from the next non-inline
1446 frame. We must skip them, since we can not get THIS_FRAME's ID
1447 until we have unwound all the way down to the previous non-inline
1449 if (get_frame_type (this_frame
) == INLINE_FRAME
)
1450 return get_prev_frame_raw (this_frame
);
1452 /* Check that this frame's ID was valid. If it wasn't, don't try to
1453 unwind to the prev frame. Be careful to not apply this test to
1454 the sentinel frame. */
1455 this_id
= get_frame_id (this_frame
);
1456 if (this_frame
->level
>= 0 && frame_id_eq (this_id
, outer_frame_id
))
1460 fprintf_unfiltered (gdb_stdlog
, "-> ");
1461 fprint_frame (gdb_stdlog
, NULL
);
1462 fprintf_unfiltered (gdb_stdlog
, " // this ID is NULL }\n");
1464 this_frame
->stop_reason
= UNWIND_NULL_ID
;
1468 /* Check that this frame's ID isn't inner to (younger, below, next)
1469 the next frame. This happens when a frame unwind goes backwards.
1470 This check is valid only if this frame and the next frame are NORMAL.
1471 See the comment at frame_id_inner for details. */
1472 if (get_frame_type (this_frame
) == NORMAL_FRAME
1473 && this_frame
->next
->unwind
->type
== NORMAL_FRAME
1474 && frame_id_inner (get_frame_arch (this_frame
->next
), this_id
,
1475 get_frame_id (this_frame
->next
)))
1479 fprintf_unfiltered (gdb_stdlog
, "-> ");
1480 fprint_frame (gdb_stdlog
, NULL
);
1481 fprintf_unfiltered (gdb_stdlog
, " // this frame ID is inner }\n");
1483 this_frame
->stop_reason
= UNWIND_INNER_ID
;
1487 /* Check that this and the next frame are not identical. If they
1488 are, there is most likely a stack cycle. As with the inner-than
1489 test above, avoid comparing the inner-most and sentinel frames. */
1490 if (this_frame
->level
> 0
1491 && frame_id_eq (this_id
, get_frame_id (this_frame
->next
)))
1495 fprintf_unfiltered (gdb_stdlog
, "-> ");
1496 fprint_frame (gdb_stdlog
, NULL
);
1497 fprintf_unfiltered (gdb_stdlog
, " // this frame has same ID }\n");
1499 this_frame
->stop_reason
= UNWIND_SAME_ID
;
1503 /* Check that this and the next frame do not unwind the PC register
1504 to the same memory location. If they do, then even though they
1505 have different frame IDs, the new frame will be bogus; two
1506 functions can't share a register save slot for the PC. This can
1507 happen when the prologue analyzer finds a stack adjustment, but
1510 This check does assume that the "PC register" is roughly a
1511 traditional PC, even if the gdbarch_unwind_pc method adjusts
1512 it (we do not rely on the value, only on the unwound PC being
1513 dependent on this value). A potential improvement would be
1514 to have the frame prev_pc method and the gdbarch unwind_pc
1515 method set the same lval and location information as
1516 frame_register_unwind. */
1517 if (this_frame
->level
> 0
1518 && gdbarch_pc_regnum (gdbarch
) >= 0
1519 && get_frame_type (this_frame
) == NORMAL_FRAME
1520 && (get_frame_type (this_frame
->next
) == NORMAL_FRAME
1521 || get_frame_type (this_frame
->next
) == INLINE_FRAME
))
1523 int optimized
, realnum
, nrealnum
;
1524 enum lval_type lval
, nlval
;
1525 CORE_ADDR addr
, naddr
;
1527 frame_register_unwind_location (this_frame
,
1528 gdbarch_pc_regnum (gdbarch
),
1529 &optimized
, &lval
, &addr
, &realnum
);
1530 frame_register_unwind_location (get_next_frame (this_frame
),
1531 gdbarch_pc_regnum (gdbarch
),
1532 &optimized
, &nlval
, &naddr
, &nrealnum
);
1534 if ((lval
== lval_memory
&& lval
== nlval
&& addr
== naddr
)
1535 || (lval
== lval_register
&& lval
== nlval
&& realnum
== nrealnum
))
1539 fprintf_unfiltered (gdb_stdlog
, "-> ");
1540 fprint_frame (gdb_stdlog
, NULL
);
1541 fprintf_unfiltered (gdb_stdlog
, " // no saved PC }\n");
1544 this_frame
->stop_reason
= UNWIND_NO_SAVED_PC
;
1545 this_frame
->prev
= NULL
;
1550 return get_prev_frame_raw (this_frame
);
1553 /* Construct a new "struct frame_info" and link it previous to
1556 static struct frame_info
*
1557 get_prev_frame_raw (struct frame_info
*this_frame
)
1559 struct frame_info
*prev_frame
;
1561 /* Allocate the new frame but do not wire it in to the frame chain.
1562 Some (bad) code in INIT_FRAME_EXTRA_INFO tries to look along
1563 frame->next to pull some fancy tricks (of course such code is, by
1564 definition, recursive). Try to prevent it.
1566 There is no reason to worry about memory leaks, should the
1567 remainder of the function fail. The allocated memory will be
1568 quickly reclaimed when the frame cache is flushed, and the `we've
1569 been here before' check above will stop repeated memory
1570 allocation calls. */
1571 prev_frame
= FRAME_OBSTACK_ZALLOC (struct frame_info
);
1572 prev_frame
->level
= this_frame
->level
+ 1;
1574 /* For now, assume we don't have frame chains crossing address
1576 prev_frame
->pspace
= this_frame
->pspace
;
1577 prev_frame
->aspace
= this_frame
->aspace
;
1579 /* Don't yet compute ->unwind (and hence ->type). It is computed
1580 on-demand in get_frame_type, frame_register_unwind, and
1583 /* Don't yet compute the frame's ID. It is computed on-demand by
1586 /* The unwound frame ID is validate at the start of this function,
1587 as part of the logic to decide if that frame should be further
1588 unwound, and not here while the prev frame is being created.
1589 Doing this makes it possible for the user to examine a frame that
1590 has an invalid frame ID.
1592 Some very old VAX code noted: [...] For the sake of argument,
1593 suppose that the stack is somewhat trashed (which is one reason
1594 that "info frame" exists). So, return 0 (indicating we don't
1595 know the address of the arglist) if we don't know what frame this
1599 this_frame
->prev
= prev_frame
;
1600 prev_frame
->next
= this_frame
;
1604 fprintf_unfiltered (gdb_stdlog
, "-> ");
1605 fprint_frame (gdb_stdlog
, prev_frame
);
1606 fprintf_unfiltered (gdb_stdlog
, " }\n");
1612 /* Debug routine to print a NULL frame being returned. */
1615 frame_debug_got_null_frame (struct frame_info
*this_frame
,
1620 fprintf_unfiltered (gdb_stdlog
, "{ get_prev_frame (this_frame=");
1621 if (this_frame
!= NULL
)
1622 fprintf_unfiltered (gdb_stdlog
, "%d", this_frame
->level
);
1624 fprintf_unfiltered (gdb_stdlog
, "<NULL>");
1625 fprintf_unfiltered (gdb_stdlog
, ") -> // %s}\n", reason
);
1629 /* Is this (non-sentinel) frame in the "main"() function? */
1632 inside_main_func (struct frame_info
*this_frame
)
1634 struct minimal_symbol
*msymbol
;
1637 if (symfile_objfile
== 0)
1639 msymbol
= lookup_minimal_symbol (main_name (), NULL
, symfile_objfile
);
1640 if (msymbol
== NULL
)
1642 /* Make certain that the code, and not descriptor, address is
1644 maddr
= gdbarch_convert_from_func_ptr_addr (get_frame_arch (this_frame
),
1645 SYMBOL_VALUE_ADDRESS (msymbol
),
1647 return maddr
== get_frame_func (this_frame
);
1650 /* Test whether THIS_FRAME is inside the process entry point function. */
1653 inside_entry_func (struct frame_info
*this_frame
)
1655 CORE_ADDR entry_point
;
1657 if (!entry_point_address_query (&entry_point
))
1660 return get_frame_func (this_frame
) == entry_point
;
1663 /* Return a structure containing various interesting information about
1664 the frame that called THIS_FRAME. Returns NULL if there is entier
1665 no such frame or the frame fails any of a set of target-independent
1666 condition that should terminate the frame chain (e.g., as unwinding
1669 This function should not contain target-dependent tests, such as
1670 checking whether the program-counter is zero. */
1673 get_prev_frame (struct frame_info
*this_frame
)
1675 struct frame_info
*prev_frame
;
1677 /* There is always a frame. If this assertion fails, suspect that
1678 something should be calling get_selected_frame() or
1679 get_current_frame(). */
1680 gdb_assert (this_frame
!= NULL
);
1682 /* tausq/2004-12-07: Dummy frames are skipped because it doesn't make much
1683 sense to stop unwinding at a dummy frame. One place where a dummy
1684 frame may have an address "inside_main_func" is on HPUX. On HPUX, the
1685 pcsqh register (space register for the instruction at the head of the
1686 instruction queue) cannot be written directly; the only way to set it
1687 is to branch to code that is in the target space. In order to implement
1688 frame dummies on HPUX, the called function is made to jump back to where
1689 the inferior was when the user function was called. If gdb was inside
1690 the main function when we created the dummy frame, the dummy frame will
1691 point inside the main function. */
1692 if (this_frame
->level
>= 0
1693 && get_frame_type (this_frame
) == NORMAL_FRAME
1694 && !backtrace_past_main
1695 && inside_main_func (this_frame
))
1696 /* Don't unwind past main(). Note, this is done _before_ the
1697 frame has been marked as previously unwound. That way if the
1698 user later decides to enable unwinds past main(), that will
1699 automatically happen. */
1701 frame_debug_got_null_frame (this_frame
, "inside main func");
1705 /* If the user's backtrace limit has been exceeded, stop. We must
1706 add two to the current level; one of those accounts for backtrace_limit
1707 being 1-based and the level being 0-based, and the other accounts for
1708 the level of the new frame instead of the level of the current
1710 if (this_frame
->level
+ 2 > backtrace_limit
)
1712 frame_debug_got_null_frame (this_frame
, "backtrace limit exceeded");
1716 /* If we're already inside the entry function for the main objfile,
1717 then it isn't valid. Don't apply this test to a dummy frame -
1718 dummy frame PCs typically land in the entry func. Don't apply
1719 this test to the sentinel frame. Sentinel frames should always
1720 be allowed to unwind. */
1721 /* NOTE: cagney/2003-07-07: Fixed a bug in inside_main_func() -
1722 wasn't checking for "main" in the minimal symbols. With that
1723 fixed asm-source tests now stop in "main" instead of halting the
1724 backtrace in weird and wonderful ways somewhere inside the entry
1725 file. Suspect that tests for inside the entry file/func were
1726 added to work around that (now fixed) case. */
1727 /* NOTE: cagney/2003-07-15: danielj (if I'm reading it right)
1728 suggested having the inside_entry_func test use the
1729 inside_main_func() msymbol trick (along with entry_point_address()
1730 I guess) to determine the address range of the start function.
1731 That should provide a far better stopper than the current
1733 /* NOTE: tausq/2004-10-09: this is needed if, for example, the compiler
1734 applied tail-call optimizations to main so that a function called
1735 from main returns directly to the caller of main. Since we don't
1736 stop at main, we should at least stop at the entry point of the
1738 if (this_frame
->level
>= 0
1739 && get_frame_type (this_frame
) == NORMAL_FRAME
1740 && !backtrace_past_entry
1741 && inside_entry_func (this_frame
))
1743 frame_debug_got_null_frame (this_frame
, "inside entry func");
1747 /* Assume that the only way to get a zero PC is through something
1748 like a SIGSEGV or a dummy frame, and hence that NORMAL frames
1749 will never unwind a zero PC. */
1750 if (this_frame
->level
> 0
1751 && (get_frame_type (this_frame
) == NORMAL_FRAME
1752 || get_frame_type (this_frame
) == INLINE_FRAME
)
1753 && get_frame_type (get_next_frame (this_frame
)) == NORMAL_FRAME
1754 && get_frame_pc (this_frame
) == 0)
1756 frame_debug_got_null_frame (this_frame
, "zero PC");
1760 return get_prev_frame_1 (this_frame
);
1764 get_frame_pc (struct frame_info
*frame
)
1766 gdb_assert (frame
->next
!= NULL
);
1767 return frame_unwind_pc (frame
->next
);
1770 /* Return an address that falls within THIS_FRAME's code block. */
1773 get_frame_address_in_block (struct frame_info
*this_frame
)
1775 /* A draft address. */
1776 CORE_ADDR pc
= get_frame_pc (this_frame
);
1778 struct frame_info
*next_frame
= this_frame
->next
;
1780 /* Calling get_frame_pc returns the resume address for THIS_FRAME.
1781 Normally the resume address is inside the body of the function
1782 associated with THIS_FRAME, but there is a special case: when
1783 calling a function which the compiler knows will never return
1784 (for instance abort), the call may be the very last instruction
1785 in the calling function. The resume address will point after the
1786 call and may be at the beginning of a different function
1789 If THIS_FRAME is a signal frame or dummy frame, then we should
1790 not adjust the unwound PC. For a dummy frame, GDB pushed the
1791 resume address manually onto the stack. For a signal frame, the
1792 OS may have pushed the resume address manually and invoked the
1793 handler (e.g. GNU/Linux), or invoked the trampoline which called
1794 the signal handler - but in either case the signal handler is
1795 expected to return to the trampoline. So in both of these
1796 cases we know that the resume address is executable and
1797 related. So we only need to adjust the PC if THIS_FRAME
1798 is a normal function.
1800 If the program has been interrupted while THIS_FRAME is current,
1801 then clearly the resume address is inside the associated
1802 function. There are three kinds of interruption: debugger stop
1803 (next frame will be SENTINEL_FRAME), operating system
1804 signal or exception (next frame will be SIGTRAMP_FRAME),
1805 or debugger-induced function call (next frame will be
1806 DUMMY_FRAME). So we only need to adjust the PC if
1807 NEXT_FRAME is a normal function.
1809 We check the type of NEXT_FRAME first, since it is already
1810 known; frame type is determined by the unwinder, and since
1811 we have THIS_FRAME we've already selected an unwinder for
1814 If the next frame is inlined, we need to keep going until we find
1815 the real function - for instance, if a signal handler is invoked
1816 while in an inlined function, then the code address of the
1817 "calling" normal function should not be adjusted either. */
1819 while (get_frame_type (next_frame
) == INLINE_FRAME
)
1820 next_frame
= next_frame
->next
;
1822 if (get_frame_type (next_frame
) == NORMAL_FRAME
1823 && (get_frame_type (this_frame
) == NORMAL_FRAME
1824 || get_frame_type (this_frame
) == INLINE_FRAME
))
1831 find_frame_sal (struct frame_info
*frame
, struct symtab_and_line
*sal
)
1833 struct frame_info
*next_frame
;
1836 /* If the next frame represents an inlined function call, this frame's
1837 sal is the "call site" of that inlined function, which can not
1838 be inferred from get_frame_pc. */
1839 next_frame
= get_next_frame (frame
);
1840 if (frame_inlined_callees (frame
) > 0)
1845 sym
= get_frame_function (next_frame
);
1847 sym
= inline_skipped_symbol (inferior_ptid
);
1850 if (SYMBOL_LINE (sym
) != 0)
1852 sal
->symtab
= SYMBOL_SYMTAB (sym
);
1853 sal
->line
= SYMBOL_LINE (sym
);
1856 /* If the symbol does not have a location, we don't know where
1857 the call site is. Do not pretend to. This is jarring, but
1858 we can't do much better. */
1859 sal
->pc
= get_frame_pc (frame
);
1864 /* If FRAME is not the innermost frame, that normally means that
1865 FRAME->pc points at the return instruction (which is *after* the
1866 call instruction), and we want to get the line containing the
1867 call (because the call is where the user thinks the program is).
1868 However, if the next frame is either a SIGTRAMP_FRAME or a
1869 DUMMY_FRAME, then the next frame will contain a saved interrupt
1870 PC and such a PC indicates the current (rather than next)
1871 instruction/line, consequently, for such cases, want to get the
1872 line containing fi->pc. */
1873 notcurrent
= (get_frame_pc (frame
) != get_frame_address_in_block (frame
));
1874 (*sal
) = find_pc_line (get_frame_pc (frame
), notcurrent
);
1877 /* Per "frame.h", return the ``address'' of the frame. Code should
1878 really be using get_frame_id(). */
1880 get_frame_base (struct frame_info
*fi
)
1882 return get_frame_id (fi
).stack_addr
;
1885 /* High-level offsets into the frame. Used by the debug info. */
1888 get_frame_base_address (struct frame_info
*fi
)
1890 if (get_frame_type (fi
) != NORMAL_FRAME
)
1892 if (fi
->base
== NULL
)
1893 fi
->base
= frame_base_find_by_frame (fi
);
1894 /* Sneaky: If the low-level unwind and high-level base code share a
1895 common unwinder, let them share the prologue cache. */
1896 if (fi
->base
->unwind
== fi
->unwind
)
1897 return fi
->base
->this_base (fi
, &fi
->prologue_cache
);
1898 return fi
->base
->this_base (fi
, &fi
->base_cache
);
1902 get_frame_locals_address (struct frame_info
*fi
)
1905 if (get_frame_type (fi
) != NORMAL_FRAME
)
1907 /* If there isn't a frame address method, find it. */
1908 if (fi
->base
== NULL
)
1909 fi
->base
= frame_base_find_by_frame (fi
);
1910 /* Sneaky: If the low-level unwind and high-level base code share a
1911 common unwinder, let them share the prologue cache. */
1912 if (fi
->base
->unwind
== fi
->unwind
)
1913 return fi
->base
->this_locals (fi
, &fi
->prologue_cache
);
1914 return fi
->base
->this_locals (fi
, &fi
->base_cache
);
1918 get_frame_args_address (struct frame_info
*fi
)
1921 if (get_frame_type (fi
) != NORMAL_FRAME
)
1923 /* If there isn't a frame address method, find it. */
1924 if (fi
->base
== NULL
)
1925 fi
->base
= frame_base_find_by_frame (fi
);
1926 /* Sneaky: If the low-level unwind and high-level base code share a
1927 common unwinder, let them share the prologue cache. */
1928 if (fi
->base
->unwind
== fi
->unwind
)
1929 return fi
->base
->this_args (fi
, &fi
->prologue_cache
);
1930 return fi
->base
->this_args (fi
, &fi
->base_cache
);
1933 /* Return true if the frame unwinder for frame FI is UNWINDER; false
1937 frame_unwinder_is (struct frame_info
*fi
, const struct frame_unwind
*unwinder
)
1939 if (fi
->unwind
== NULL
)
1940 fi
->unwind
= frame_unwind_find_by_frame (fi
, &fi
->prologue_cache
);
1941 return fi
->unwind
== unwinder
;
1944 /* Level of the selected frame: 0 for innermost, 1 for its caller, ...
1945 or -1 for a NULL frame. */
1948 frame_relative_level (struct frame_info
*fi
)
1957 get_frame_type (struct frame_info
*frame
)
1959 if (frame
->unwind
== NULL
)
1960 /* Initialize the frame's unwinder because that's what
1961 provides the frame's type. */
1962 frame
->unwind
= frame_unwind_find_by_frame (frame
, &frame
->prologue_cache
);
1963 return frame
->unwind
->type
;
1966 struct program_space
*
1967 get_frame_program_space (struct frame_info
*frame
)
1969 return frame
->pspace
;
1972 struct program_space
*
1973 frame_unwind_program_space (struct frame_info
*this_frame
)
1975 gdb_assert (this_frame
);
1977 /* This is really a placeholder to keep the API consistent --- we
1978 assume for now that we don't have frame chains crossing
1980 return this_frame
->pspace
;
1983 struct address_space
*
1984 get_frame_address_space (struct frame_info
*frame
)
1986 return frame
->aspace
;
1989 /* Memory access methods. */
1992 get_frame_memory (struct frame_info
*this_frame
, CORE_ADDR addr
,
1993 gdb_byte
*buf
, int len
)
1995 read_memory (addr
, buf
, len
);
1999 get_frame_memory_signed (struct frame_info
*this_frame
, CORE_ADDR addr
,
2002 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
2003 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
2004 return read_memory_integer (addr
, len
, byte_order
);
2008 get_frame_memory_unsigned (struct frame_info
*this_frame
, CORE_ADDR addr
,
2011 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
2012 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
2013 return read_memory_unsigned_integer (addr
, len
, byte_order
);
2017 safe_frame_unwind_memory (struct frame_info
*this_frame
,
2018 CORE_ADDR addr
, gdb_byte
*buf
, int len
)
2020 /* NOTE: target_read_memory returns zero on success! */
2021 return !target_read_memory (addr
, buf
, len
);
2024 /* Architecture methods. */
2027 get_frame_arch (struct frame_info
*this_frame
)
2029 return frame_unwind_arch (this_frame
->next
);
2033 frame_unwind_arch (struct frame_info
*next_frame
)
2035 if (!next_frame
->prev_arch
.p
)
2037 struct gdbarch
*arch
;
2039 if (next_frame
->unwind
== NULL
)
2041 = frame_unwind_find_by_frame (next_frame
,
2042 &next_frame
->prologue_cache
);
2044 if (next_frame
->unwind
->prev_arch
!= NULL
)
2045 arch
= next_frame
->unwind
->prev_arch (next_frame
,
2046 &next_frame
->prologue_cache
);
2048 arch
= get_frame_arch (next_frame
);
2050 next_frame
->prev_arch
.arch
= arch
;
2051 next_frame
->prev_arch
.p
= 1;
2053 fprintf_unfiltered (gdb_stdlog
,
2054 "{ frame_unwind_arch (next_frame=%d) -> %s }\n",
2056 gdbarch_bfd_arch_info (arch
)->printable_name
);
2059 return next_frame
->prev_arch
.arch
;
2063 frame_unwind_caller_arch (struct frame_info
*next_frame
)
2065 return frame_unwind_arch (skip_inlined_frames (next_frame
));
2068 /* Stack pointer methods. */
2071 get_frame_sp (struct frame_info
*this_frame
)
2073 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
2074 /* Normality - an architecture that provides a way of obtaining any
2075 frame inner-most address. */
2076 if (gdbarch_unwind_sp_p (gdbarch
))
2077 /* NOTE drow/2008-06-28: gdbarch_unwind_sp could be converted to
2078 operate on THIS_FRAME now. */
2079 return gdbarch_unwind_sp (gdbarch
, this_frame
->next
);
2080 /* Now things are really are grim. Hope that the value returned by
2081 the gdbarch_sp_regnum register is meaningful. */
2082 if (gdbarch_sp_regnum (gdbarch
) >= 0)
2083 return get_frame_register_unsigned (this_frame
,
2084 gdbarch_sp_regnum (gdbarch
));
2085 internal_error (__FILE__
, __LINE__
, _("Missing unwind SP method"));
2088 /* Return the reason why we can't unwind past FRAME. */
2090 enum unwind_stop_reason
2091 get_frame_unwind_stop_reason (struct frame_info
*frame
)
2093 /* If we haven't tried to unwind past this point yet, then assume
2094 that unwinding would succeed. */
2095 if (frame
->prev_p
== 0)
2096 return UNWIND_NO_REASON
;
2098 /* Otherwise, we set a reason when we succeeded (or failed) to
2100 return frame
->stop_reason
;
2103 /* Return a string explaining REASON. */
2106 frame_stop_reason_string (enum unwind_stop_reason reason
)
2110 case UNWIND_NULL_ID
:
2111 return _("unwinder did not report frame ID");
2113 case UNWIND_INNER_ID
:
2114 return _("previous frame inner to this frame (corrupt stack?)");
2116 case UNWIND_SAME_ID
:
2117 return _("previous frame identical to this frame (corrupt stack?)");
2119 case UNWIND_NO_SAVED_PC
:
2120 return _("frame did not save the PC");
2122 case UNWIND_NO_REASON
:
2123 case UNWIND_FIRST_ERROR
:
2125 internal_error (__FILE__
, __LINE__
,
2126 "Invalid frame stop reason");
2130 /* Clean up after a failed (wrong unwinder) attempt to unwind past
2134 frame_cleanup_after_sniffer (void *arg
)
2136 struct frame_info
*frame
= arg
;
2138 /* The sniffer should not allocate a prologue cache if it did not
2139 match this frame. */
2140 gdb_assert (frame
->prologue_cache
== NULL
);
2142 /* No sniffer should extend the frame chain; sniff based on what is
2144 gdb_assert (!frame
->prev_p
);
2146 /* The sniffer should not check the frame's ID; that's circular. */
2147 gdb_assert (!frame
->this_id
.p
);
2149 /* Clear cached fields dependent on the unwinder.
2151 The previous PC is independent of the unwinder, but the previous
2152 function is not (see get_frame_address_in_block). */
2153 frame
->prev_func
.p
= 0;
2154 frame
->prev_func
.addr
= 0;
2156 /* Discard the unwinder last, so that we can easily find it if an assertion
2157 in this function triggers. */
2158 frame
->unwind
= NULL
;
2161 /* Set FRAME's unwinder temporarily, so that we can call a sniffer.
2162 Return a cleanup which should be called if unwinding fails, and
2163 discarded if it succeeds. */
2166 frame_prepare_for_sniffer (struct frame_info
*frame
,
2167 const struct frame_unwind
*unwind
)
2169 gdb_assert (frame
->unwind
== NULL
);
2170 frame
->unwind
= unwind
;
2171 return make_cleanup (frame_cleanup_after_sniffer
, frame
);
2174 extern initialize_file_ftype _initialize_frame
; /* -Wmissing-prototypes */
2176 static struct cmd_list_element
*set_backtrace_cmdlist
;
2177 static struct cmd_list_element
*show_backtrace_cmdlist
;
2180 set_backtrace_cmd (char *args
, int from_tty
)
2182 help_list (set_backtrace_cmdlist
, "set backtrace ", -1, gdb_stdout
);
2186 show_backtrace_cmd (char *args
, int from_tty
)
2188 cmd_show_list (show_backtrace_cmdlist
, from_tty
, "");
2192 _initialize_frame (void)
2194 obstack_init (&frame_cache_obstack
);
2196 observer_attach_target_changed (frame_observer_target_changed
);
2198 add_prefix_cmd ("backtrace", class_maintenance
, set_backtrace_cmd
, _("\
2199 Set backtrace specific variables.\n\
2200 Configure backtrace variables such as the backtrace limit"),
2201 &set_backtrace_cmdlist
, "set backtrace ",
2202 0/*allow-unknown*/, &setlist
);
2203 add_prefix_cmd ("backtrace", class_maintenance
, show_backtrace_cmd
, _("\
2204 Show backtrace specific variables\n\
2205 Show backtrace variables such as the backtrace limit"),
2206 &show_backtrace_cmdlist
, "show backtrace ",
2207 0/*allow-unknown*/, &showlist
);
2209 add_setshow_boolean_cmd ("past-main", class_obscure
,
2210 &backtrace_past_main
, _("\
2211 Set whether backtraces should continue past \"main\"."), _("\
2212 Show whether backtraces should continue past \"main\"."), _("\
2213 Normally the caller of \"main\" is not of interest, so GDB will terminate\n\
2214 the backtrace at \"main\". Set this variable if you need to see the rest\n\
2215 of the stack trace."),
2217 show_backtrace_past_main
,
2218 &set_backtrace_cmdlist
,
2219 &show_backtrace_cmdlist
);
2221 add_setshow_boolean_cmd ("past-entry", class_obscure
,
2222 &backtrace_past_entry
, _("\
2223 Set whether backtraces should continue past the entry point of a program."),
2225 Show whether backtraces should continue past the entry point of a program."),
2227 Normally there are no callers beyond the entry point of a program, so GDB\n\
2228 will terminate the backtrace there. Set this variable if you need to see \n\
2229 the rest of the stack trace."),
2231 show_backtrace_past_entry
,
2232 &set_backtrace_cmdlist
,
2233 &show_backtrace_cmdlist
);
2235 add_setshow_integer_cmd ("limit", class_obscure
,
2236 &backtrace_limit
, _("\
2237 Set an upper bound on the number of backtrace levels."), _("\
2238 Show the upper bound on the number of backtrace levels."), _("\
2239 No more than the specified number of frames can be displayed or examined.\n\
2240 Zero is unlimited."),
2242 show_backtrace_limit
,
2243 &set_backtrace_cmdlist
,
2244 &show_backtrace_cmdlist
);
2246 /* Debug this files internals. */
2247 add_setshow_zinteger_cmd ("frame", class_maintenance
, &frame_debug
, _("\
2248 Set frame debugging."), _("\
2249 Show frame debugging."), _("\
2250 When non-zero, frame specific internal debugging is enabled."),
2253 &setdebuglist
, &showdebuglist
);