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, 2011
5 Free Software Foundation, Inc.
7 This file is part of GDB.
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 3 of the License, or
12 (at your option) any later version.
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.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
26 #include "inferior.h" /* for inferior_ptid */
28 #include "gdb_assert.h"
29 #include "gdb_string.h"
30 #include "user-regs.h"
31 #include "gdb_obstack.h"
32 #include "dummy-frame.h"
33 #include "sentinel-frame.h"
37 #include "frame-unwind.h"
38 #include "frame-base.h"
43 #include "exceptions.h"
44 #include "gdbthread.h"
46 #include "inline-frame.h"
47 #include "tracepoint.h"
49 static struct frame_info
*get_prev_frame_1 (struct frame_info
*this_frame
);
50 static struct frame_info
*get_prev_frame_raw (struct frame_info
*this_frame
);
52 /* We keep a cache of stack frames, each of which is a "struct
53 frame_info". The innermost one gets allocated (in
54 wait_for_inferior) each time the inferior stops; current_frame
55 points to it. Additional frames get allocated (in get_prev_frame)
56 as needed, and are chained through the next and prev fields. Any
57 time that the frame cache becomes invalid (most notably when we
58 execute something, but also if we change how we interpret the
59 frames (e.g. "set heuristic-fence-post" in mips-tdep.c, or anything
60 which reads new symbols)), we should call reinit_frame_cache. */
64 /* Level of this frame. The inner-most (youngest) frame is at level
65 0. As you move towards the outer-most (oldest) frame, the level
66 increases. This is a cached value. It could just as easily be
67 computed by counting back from the selected frame to the inner
69 /* NOTE: cagney/2002-04-05: Perhaps a level of ``-1'' should be
70 reserved to indicate a bogus frame - one that has been created
71 just to keep GDB happy (GDB always needs a frame). For the
72 moment leave this as speculation. */
75 /* The frame's program space. */
76 struct program_space
*pspace
;
78 /* The frame's address space. */
79 struct address_space
*aspace
;
81 /* The frame's low-level unwinder and corresponding cache. The
82 low-level unwinder is responsible for unwinding register values
83 for the previous frame. The low-level unwind methods are
84 selected based on the presence, or otherwise, of register unwind
85 information such as CFI. */
87 const struct frame_unwind
*unwind
;
89 /* Cached copy of the previous frame's architecture. */
96 /* Cached copy of the previous frame's resume address. */
102 /* Cached copy of the previous frame's function address. */
109 /* This frame's ID. */
113 struct frame_id value
;
116 /* The frame's high-level base methods, and corresponding cache.
117 The high level base methods are selected based on the frame's
119 const struct frame_base
*base
;
122 /* Pointers to the next (down, inner, younger) and previous (up,
123 outer, older) frame_info's in the frame cache. */
124 struct frame_info
*next
; /* down, inner, younger */
126 struct frame_info
*prev
; /* up, outer, older */
128 /* The reason why we could not set PREV, or UNWIND_NO_REASON if we
129 could. Only valid when PREV_P is set. */
130 enum unwind_stop_reason stop_reason
;
133 /* A frame stash used to speed up frame lookups. */
135 /* We currently only stash one frame at a time, as this seems to be
136 sufficient for now. */
137 static struct frame_info
*frame_stash
= NULL
;
139 /* Add the following FRAME to the frame stash. */
142 frame_stash_add (struct frame_info
*frame
)
147 /* Search the frame stash for an entry with the given frame ID.
148 If found, return that frame. Otherwise return NULL. */
150 static struct frame_info
*
151 frame_stash_find (struct frame_id id
)
153 if (frame_stash
&& frame_id_eq (frame_stash
->this_id
.value
, id
))
159 /* Invalidate the frame stash by removing all entries in it. */
162 frame_stash_invalidate (void)
167 /* Flag to control debugging. */
171 show_frame_debug (struct ui_file
*file
, int from_tty
,
172 struct cmd_list_element
*c
, const char *value
)
174 fprintf_filtered (file
, _("Frame debugging is %s.\n"), value
);
177 /* Flag to indicate whether backtraces should stop at main et.al. */
179 static int backtrace_past_main
;
181 show_backtrace_past_main (struct ui_file
*file
, int from_tty
,
182 struct cmd_list_element
*c
, const char *value
)
184 fprintf_filtered (file
,
185 _("Whether backtraces should "
186 "continue past \"main\" is %s.\n"),
190 static int backtrace_past_entry
;
192 show_backtrace_past_entry (struct ui_file
*file
, int from_tty
,
193 struct cmd_list_element
*c
, const char *value
)
195 fprintf_filtered (file
, _("Whether backtraces should continue past the "
196 "entry point of a program is %s.\n"),
200 static int backtrace_limit
= INT_MAX
;
202 show_backtrace_limit (struct ui_file
*file
, int from_tty
,
203 struct cmd_list_element
*c
, const char *value
)
205 fprintf_filtered (file
,
206 _("An upper bound on the number "
207 "of backtrace levels is %s.\n"),
213 fprint_field (struct ui_file
*file
, const char *name
, int p
, CORE_ADDR addr
)
216 fprintf_unfiltered (file
, "%s=%s", name
, hex_string (addr
));
218 fprintf_unfiltered (file
, "!%s", name
);
222 fprint_frame_id (struct ui_file
*file
, struct frame_id id
)
224 fprintf_unfiltered (file
, "{");
225 fprint_field (file
, "stack", id
.stack_addr_p
, id
.stack_addr
);
226 fprintf_unfiltered (file
, ",");
227 fprint_field (file
, "code", id
.code_addr_p
, id
.code_addr
);
228 fprintf_unfiltered (file
, ",");
229 fprint_field (file
, "special", id
.special_addr_p
, id
.special_addr
);
231 fprintf_unfiltered (file
, ",inlined=%d", id
.inline_depth
);
232 fprintf_unfiltered (file
, "}");
236 fprint_frame_type (struct ui_file
*file
, enum frame_type type
)
241 fprintf_unfiltered (file
, "NORMAL_FRAME");
244 fprintf_unfiltered (file
, "DUMMY_FRAME");
247 fprintf_unfiltered (file
, "INLINE_FRAME");
250 fprintf_unfiltered (file
, "SENTINEL_FRAME");
253 fprintf_unfiltered (file
, "SIGTRAMP_FRAME");
256 fprintf_unfiltered (file
, "ARCH_FRAME");
259 fprintf_unfiltered (file
, "<unknown type>");
265 fprint_frame (struct ui_file
*file
, struct frame_info
*fi
)
269 fprintf_unfiltered (file
, "<NULL frame>");
272 fprintf_unfiltered (file
, "{");
273 fprintf_unfiltered (file
, "level=%d", fi
->level
);
274 fprintf_unfiltered (file
, ",");
275 fprintf_unfiltered (file
, "type=");
276 if (fi
->unwind
!= NULL
)
277 fprint_frame_type (file
, fi
->unwind
->type
);
279 fprintf_unfiltered (file
, "<unknown>");
280 fprintf_unfiltered (file
, ",");
281 fprintf_unfiltered (file
, "unwind=");
282 if (fi
->unwind
!= NULL
)
283 gdb_print_host_address (fi
->unwind
, file
);
285 fprintf_unfiltered (file
, "<unknown>");
286 fprintf_unfiltered (file
, ",");
287 fprintf_unfiltered (file
, "pc=");
288 if (fi
->next
!= NULL
&& fi
->next
->prev_pc
.p
)
289 fprintf_unfiltered (file
, "%s", hex_string (fi
->next
->prev_pc
.value
));
291 fprintf_unfiltered (file
, "<unknown>");
292 fprintf_unfiltered (file
, ",");
293 fprintf_unfiltered (file
, "id=");
295 fprint_frame_id (file
, fi
->this_id
.value
);
297 fprintf_unfiltered (file
, "<unknown>");
298 fprintf_unfiltered (file
, ",");
299 fprintf_unfiltered (file
, "func=");
300 if (fi
->next
!= NULL
&& fi
->next
->prev_func
.p
)
301 fprintf_unfiltered (file
, "%s", hex_string (fi
->next
->prev_func
.addr
));
303 fprintf_unfiltered (file
, "<unknown>");
304 fprintf_unfiltered (file
, "}");
307 /* Given FRAME, return the enclosing normal frame for inlined
308 function frames. Otherwise return the original frame. */
310 static struct frame_info
*
311 skip_inlined_frames (struct frame_info
*frame
)
313 while (get_frame_type (frame
) == INLINE_FRAME
)
314 frame
= get_prev_frame (frame
);
319 /* Return a frame uniq ID that can be used to, later, re-find the
323 get_frame_id (struct frame_info
*fi
)
326 return null_frame_id
;
331 fprintf_unfiltered (gdb_stdlog
, "{ get_frame_id (fi=%d) ",
333 /* Find the unwinder. */
334 if (fi
->unwind
== NULL
)
335 frame_unwind_find_by_frame (fi
, &fi
->prologue_cache
);
336 /* Find THIS frame's ID. */
337 /* Default to outermost if no ID is found. */
338 fi
->this_id
.value
= outer_frame_id
;
339 fi
->unwind
->this_id (fi
, &fi
->prologue_cache
, &fi
->this_id
.value
);
340 gdb_assert (frame_id_p (fi
->this_id
.value
));
344 fprintf_unfiltered (gdb_stdlog
, "-> ");
345 fprint_frame_id (gdb_stdlog
, fi
->this_id
.value
);
346 fprintf_unfiltered (gdb_stdlog
, " }\n");
350 frame_stash_add (fi
);
352 return fi
->this_id
.value
;
356 get_stack_frame_id (struct frame_info
*next_frame
)
358 return get_frame_id (skip_inlined_frames (next_frame
));
362 frame_unwind_caller_id (struct frame_info
*next_frame
)
364 struct frame_info
*this_frame
;
366 /* Use get_prev_frame_1, and not get_prev_frame. The latter will truncate
367 the frame chain, leading to this function unintentionally
368 returning a null_frame_id (e.g., when a caller requests the frame
369 ID of "main()"s caller. */
371 next_frame
= skip_inlined_frames (next_frame
);
372 this_frame
= get_prev_frame_1 (next_frame
);
374 return get_frame_id (skip_inlined_frames (this_frame
));
376 return null_frame_id
;
379 const struct frame_id null_frame_id
; /* All zeros. */
380 const struct frame_id outer_frame_id
= { 0, 0, 0, 0, 0, 1, 0 };
383 frame_id_build_special (CORE_ADDR stack_addr
, CORE_ADDR code_addr
,
384 CORE_ADDR special_addr
)
386 struct frame_id id
= null_frame_id
;
388 id
.stack_addr
= stack_addr
;
390 id
.code_addr
= code_addr
;
392 id
.special_addr
= special_addr
;
393 id
.special_addr_p
= 1;
398 frame_id_build (CORE_ADDR stack_addr
, CORE_ADDR code_addr
)
400 struct frame_id id
= null_frame_id
;
402 id
.stack_addr
= stack_addr
;
404 id
.code_addr
= code_addr
;
410 frame_id_build_wild (CORE_ADDR stack_addr
)
412 struct frame_id id
= null_frame_id
;
414 id
.stack_addr
= stack_addr
;
420 frame_id_p (struct frame_id l
)
424 /* The frame is valid iff it has a valid stack address. */
426 /* outer_frame_id is also valid. */
427 if (!p
&& memcmp (&l
, &outer_frame_id
, sizeof (l
)) == 0)
431 fprintf_unfiltered (gdb_stdlog
, "{ frame_id_p (l=");
432 fprint_frame_id (gdb_stdlog
, l
);
433 fprintf_unfiltered (gdb_stdlog
, ") -> %d }\n", p
);
439 frame_id_inlined_p (struct frame_id l
)
444 return (l
.inline_depth
!= 0);
448 frame_id_eq (struct frame_id l
, struct frame_id r
)
452 if (!l
.stack_addr_p
&& l
.special_addr_p
453 && !r
.stack_addr_p
&& r
.special_addr_p
)
454 /* The outermost frame marker is equal to itself. This is the
455 dodgy thing about outer_frame_id, since between execution steps
456 we might step into another function - from which we can't
457 unwind either. More thought required to get rid of
460 else if (!l
.stack_addr_p
|| !r
.stack_addr_p
)
461 /* Like a NaN, if either ID is invalid, the result is false.
462 Note that a frame ID is invalid iff it is the null frame ID. */
464 else if (l
.stack_addr
!= r
.stack_addr
)
465 /* If .stack addresses are different, the frames are different. */
467 else if (l
.code_addr_p
&& r
.code_addr_p
&& l
.code_addr
!= r
.code_addr
)
468 /* An invalid code addr is a wild card. If .code addresses are
469 different, the frames are different. */
471 else if (l
.special_addr_p
&& r
.special_addr_p
472 && l
.special_addr
!= r
.special_addr
)
473 /* An invalid special addr is a wild card (or unused). Otherwise
474 if special addresses are different, the frames are different. */
476 else if (l
.inline_depth
!= r
.inline_depth
)
477 /* If inline depths are different, the frames must be different. */
480 /* Frames are equal. */
485 fprintf_unfiltered (gdb_stdlog
, "{ frame_id_eq (l=");
486 fprint_frame_id (gdb_stdlog
, l
);
487 fprintf_unfiltered (gdb_stdlog
, ",r=");
488 fprint_frame_id (gdb_stdlog
, r
);
489 fprintf_unfiltered (gdb_stdlog
, ") -> %d }\n", eq
);
494 /* Safety net to check whether frame ID L should be inner to
495 frame ID R, according to their stack addresses.
497 This method cannot be used to compare arbitrary frames, as the
498 ranges of valid stack addresses may be discontiguous (e.g. due
501 However, it can be used as safety net to discover invalid frame
502 IDs in certain circumstances. Assuming that NEXT is the immediate
503 inner frame to THIS and that NEXT and THIS are both NORMAL frames:
505 * The stack address of NEXT must be inner-than-or-equal to the stack
508 Therefore, if frame_id_inner (THIS, NEXT) holds, some unwind
511 * If NEXT and THIS have different stack addresses, no other frame
512 in the frame chain may have a stack address in between.
514 Therefore, if frame_id_inner (TEST, THIS) holds, but
515 frame_id_inner (TEST, NEXT) does not hold, TEST cannot refer
516 to a valid frame in the frame chain.
518 The sanity checks above cannot be performed when a SIGTRAMP frame
519 is involved, because signal handlers might be executed on a different
520 stack than the stack used by the routine that caused the signal
521 to be raised. This can happen for instance when a thread exceeds
522 its maximum stack size. In this case, certain compilers implement
523 a stack overflow strategy that cause the handler to be run on a
527 frame_id_inner (struct gdbarch
*gdbarch
, struct frame_id l
, struct frame_id r
)
531 if (!l
.stack_addr_p
|| !r
.stack_addr_p
)
532 /* Like NaN, any operation involving an invalid ID always fails. */
534 else if (l
.inline_depth
> r
.inline_depth
535 && l
.stack_addr
== r
.stack_addr
536 && l
.code_addr_p
== r
.code_addr_p
537 && l
.special_addr_p
== r
.special_addr_p
538 && l
.special_addr
== r
.special_addr
)
540 /* Same function, different inlined functions. */
541 struct block
*lb
, *rb
;
543 gdb_assert (l
.code_addr_p
&& r
.code_addr_p
);
545 lb
= block_for_pc (l
.code_addr
);
546 rb
= block_for_pc (r
.code_addr
);
548 if (lb
== NULL
|| rb
== NULL
)
549 /* Something's gone wrong. */
552 /* This will return true if LB and RB are the same block, or
553 if the block with the smaller depth lexically encloses the
554 block with the greater depth. */
555 inner
= contained_in (lb
, rb
);
558 /* Only return non-zero when strictly inner than. Note that, per
559 comment in "frame.h", there is some fuzz here. Frameless
560 functions are not strictly inner than (same .stack but
561 different .code and/or .special address). */
562 inner
= gdbarch_inner_than (gdbarch
, l
.stack_addr
, r
.stack_addr
);
565 fprintf_unfiltered (gdb_stdlog
, "{ frame_id_inner (l=");
566 fprint_frame_id (gdb_stdlog
, l
);
567 fprintf_unfiltered (gdb_stdlog
, ",r=");
568 fprint_frame_id (gdb_stdlog
, r
);
569 fprintf_unfiltered (gdb_stdlog
, ") -> %d }\n", inner
);
575 frame_find_by_id (struct frame_id id
)
577 struct frame_info
*frame
, *prev_frame
;
579 /* ZERO denotes the null frame, let the caller decide what to do
580 about it. Should it instead return get_current_frame()? */
581 if (!frame_id_p (id
))
584 /* Try using the frame stash first. Finding it there removes the need
585 to perform the search by looping over all frames, which can be very
586 CPU-intensive if the number of frames is very high (the loop is O(n)
587 and get_prev_frame performs a series of checks that are relatively
588 expensive). This optimization is particularly useful when this function
589 is called from another function (such as value_fetch_lazy, case
590 VALUE_LVAL (val) == lval_register) which already loops over all frames,
591 making the overall behavior O(n^2). */
592 frame
= frame_stash_find (id
);
596 for (frame
= get_current_frame (); ; frame
= prev_frame
)
598 struct frame_id
this = get_frame_id (frame
);
600 if (frame_id_eq (id
, this))
601 /* An exact match. */
604 prev_frame
= get_prev_frame (frame
);
608 /* As a safety net to avoid unnecessary backtracing while trying
609 to find an invalid ID, we check for a common situation where
610 we can detect from comparing stack addresses that no other
611 frame in the current frame chain can have this ID. See the
612 comment at frame_id_inner for details. */
613 if (get_frame_type (frame
) == NORMAL_FRAME
614 && !frame_id_inner (get_frame_arch (frame
), id
, this)
615 && frame_id_inner (get_frame_arch (prev_frame
), id
,
616 get_frame_id (prev_frame
)))
623 frame_unwind_pc_if_available (struct frame_info
*this_frame
, CORE_ADDR
*pc
)
625 if (!this_frame
->prev_pc
.p
)
627 if (gdbarch_unwind_pc_p (frame_unwind_arch (this_frame
)))
629 volatile struct gdb_exception ex
;
630 struct gdbarch
*prev_gdbarch
;
633 /* The right way. The `pure' way. The one true way. This
634 method depends solely on the register-unwind code to
635 determine the value of registers in THIS frame, and hence
636 the value of this frame's PC (resume address). A typical
637 implementation is no more than:
639 frame_unwind_register (this_frame, ISA_PC_REGNUM, buf);
640 return extract_unsigned_integer (buf, size of ISA_PC_REGNUM);
642 Note: this method is very heavily dependent on a correct
643 register-unwind implementation, it pays to fix that
644 method first; this method is frame type agnostic, since
645 it only deals with register values, it works with any
646 frame. This is all in stark contrast to the old
647 FRAME_SAVED_PC which would try to directly handle all the
648 different ways that a PC could be unwound. */
649 prev_gdbarch
= frame_unwind_arch (this_frame
);
651 TRY_CATCH (ex
, RETURN_MASK_ERROR
)
653 pc
= gdbarch_unwind_pc (prev_gdbarch
, this_frame
);
655 if (ex
.reason
< 0 && ex
.error
== NOT_AVAILABLE_ERROR
)
657 this_frame
->prev_pc
.p
= -1;
660 fprintf_unfiltered (gdb_stdlog
,
661 "{ frame_unwind_pc (this_frame=%d)"
662 " -> <unavailable> }\n",
665 else if (ex
.reason
< 0)
667 throw_exception (ex
);
671 this_frame
->prev_pc
.value
= pc
;
672 this_frame
->prev_pc
.p
= 1;
674 fprintf_unfiltered (gdb_stdlog
,
675 "{ frame_unwind_pc (this_frame=%d) "
678 hex_string (this_frame
->prev_pc
.value
));
682 internal_error (__FILE__
, __LINE__
, _("No unwind_pc method"));
684 if (this_frame
->prev_pc
.p
< 0)
691 *pc
= this_frame
->prev_pc
.value
;
697 frame_unwind_pc (struct frame_info
*this_frame
)
701 if (!frame_unwind_pc_if_available (this_frame
, &pc
))
702 throw_error (NOT_AVAILABLE_ERROR
, _("PC not available"));
708 frame_unwind_caller_pc (struct frame_info
*this_frame
)
710 return frame_unwind_pc (skip_inlined_frames (this_frame
));
714 get_frame_func_if_available (struct frame_info
*this_frame
, CORE_ADDR
*pc
)
716 struct frame_info
*next_frame
= this_frame
->next
;
718 if (!next_frame
->prev_func
.p
)
720 CORE_ADDR addr_in_block
;
722 /* Make certain that this, and not the adjacent, function is
724 if (!get_frame_address_in_block_if_available (this_frame
, &addr_in_block
))
726 next_frame
->prev_func
.p
= -1;
728 fprintf_unfiltered (gdb_stdlog
,
729 "{ get_frame_func (this_frame=%d)"
730 " -> unavailable }\n",
735 next_frame
->prev_func
.p
= 1;
736 next_frame
->prev_func
.addr
= get_pc_function_start (addr_in_block
);
738 fprintf_unfiltered (gdb_stdlog
,
739 "{ get_frame_func (this_frame=%d) -> %s }\n",
741 hex_string (next_frame
->prev_func
.addr
));
745 if (next_frame
->prev_func
.p
< 0)
752 *pc
= next_frame
->prev_func
.addr
;
758 get_frame_func (struct frame_info
*this_frame
)
762 if (!get_frame_func_if_available (this_frame
, &pc
))
763 throw_error (NOT_AVAILABLE_ERROR
, _("PC not available"));
768 static enum register_status
769 do_frame_register_read (void *src
, int regnum
, gdb_byte
*buf
)
771 if (!frame_register_read (src
, regnum
, buf
))
772 return REG_UNAVAILABLE
;
778 frame_save_as_regcache (struct frame_info
*this_frame
)
780 struct address_space
*aspace
= get_frame_address_space (this_frame
);
781 struct regcache
*regcache
= regcache_xmalloc (get_frame_arch (this_frame
),
783 struct cleanup
*cleanups
= make_cleanup_regcache_xfree (regcache
);
785 regcache_save (regcache
, do_frame_register_read
, this_frame
);
786 discard_cleanups (cleanups
);
791 frame_pop (struct frame_info
*this_frame
)
793 struct frame_info
*prev_frame
;
794 struct regcache
*scratch
;
795 struct cleanup
*cleanups
;
797 if (get_frame_type (this_frame
) == DUMMY_FRAME
)
799 /* Popping a dummy frame involves restoring more than just registers.
800 dummy_frame_pop does all the work. */
801 dummy_frame_pop (get_frame_id (this_frame
));
805 /* Ensure that we have a frame to pop to. */
806 prev_frame
= get_prev_frame_1 (this_frame
);
809 error (_("Cannot pop the initial frame."));
811 /* Make a copy of all the register values unwound from this frame.
812 Save them in a scratch buffer so that there isn't a race between
813 trying to extract the old values from the current regcache while
814 at the same time writing new values into that same cache. */
815 scratch
= frame_save_as_regcache (prev_frame
);
816 cleanups
= make_cleanup_regcache_xfree (scratch
);
818 /* FIXME: cagney/2003-03-16: It should be possible to tell the
819 target's register cache that it is about to be hit with a burst
820 register transfer and that the sequence of register writes should
821 be batched. The pair target_prepare_to_store() and
822 target_store_registers() kind of suggest this functionality.
823 Unfortunately, they don't implement it. Their lack of a formal
824 definition can lead to targets writing back bogus values
825 (arguably a bug in the target code mind). */
826 /* Now copy those saved registers into the current regcache.
827 Here, regcache_cpy() calls regcache_restore(). */
828 regcache_cpy (get_current_regcache (), scratch
);
829 do_cleanups (cleanups
);
831 /* We've made right mess of GDB's local state, just discard
833 reinit_frame_cache ();
837 frame_register_unwind (struct frame_info
*frame
, int regnum
,
838 int *optimizedp
, int *unavailablep
,
839 enum lval_type
*lvalp
, CORE_ADDR
*addrp
,
840 int *realnump
, gdb_byte
*bufferp
)
844 /* Require all but BUFFERP to be valid. A NULL BUFFERP indicates
845 that the value proper does not need to be fetched. */
846 gdb_assert (optimizedp
!= NULL
);
847 gdb_assert (lvalp
!= NULL
);
848 gdb_assert (addrp
!= NULL
);
849 gdb_assert (realnump
!= NULL
);
850 /* gdb_assert (bufferp != NULL); */
852 value
= frame_unwind_register_value (frame
, regnum
);
854 gdb_assert (value
!= NULL
);
856 *optimizedp
= value_optimized_out (value
);
857 *unavailablep
= !value_entirely_available (value
);
858 *lvalp
= VALUE_LVAL (value
);
859 *addrp
= value_address (value
);
860 *realnump
= VALUE_REGNUM (value
);
864 if (!*optimizedp
&& !*unavailablep
)
865 memcpy (bufferp
, value_contents_all (value
),
866 TYPE_LENGTH (value_type (value
)));
868 memset (bufferp
, 0, TYPE_LENGTH (value_type (value
)));
871 /* Dispose of the new value. This prevents watchpoints from
872 trying to watch the saved frame pointer. */
873 release_value (value
);
878 frame_register (struct frame_info
*frame
, int regnum
,
879 int *optimizedp
, int *unavailablep
, enum lval_type
*lvalp
,
880 CORE_ADDR
*addrp
, int *realnump
, gdb_byte
*bufferp
)
882 /* Require all but BUFFERP to be valid. A NULL BUFFERP indicates
883 that the value proper does not need to be fetched. */
884 gdb_assert (optimizedp
!= NULL
);
885 gdb_assert (lvalp
!= NULL
);
886 gdb_assert (addrp
!= NULL
);
887 gdb_assert (realnump
!= NULL
);
888 /* gdb_assert (bufferp != NULL); */
890 /* Obtain the register value by unwinding the register from the next
891 (more inner frame). */
892 gdb_assert (frame
!= NULL
&& frame
->next
!= NULL
);
893 frame_register_unwind (frame
->next
, regnum
, optimizedp
, unavailablep
,
894 lvalp
, addrp
, realnump
, bufferp
);
898 frame_unwind_register (struct frame_info
*frame
, int regnum
, gdb_byte
*buf
)
906 frame_register_unwind (frame
, regnum
, &optimized
, &unavailable
,
907 &lval
, &addr
, &realnum
, buf
);
911 get_frame_register (struct frame_info
*frame
,
912 int regnum
, gdb_byte
*buf
)
914 frame_unwind_register (frame
->next
, regnum
, buf
);
918 frame_unwind_register_value (struct frame_info
*frame
, int regnum
)
920 struct gdbarch
*gdbarch
;
923 gdb_assert (frame
!= NULL
);
924 gdbarch
= frame_unwind_arch (frame
);
928 fprintf_unfiltered (gdb_stdlog
,
929 "{ frame_unwind_register_value "
930 "(frame=%d,regnum=%d(%s),...) ",
931 frame
->level
, regnum
,
932 user_reg_map_regnum_to_name (gdbarch
, regnum
));
935 /* Find the unwinder. */
936 if (frame
->unwind
== NULL
)
937 frame_unwind_find_by_frame (frame
, &frame
->prologue_cache
);
939 /* Ask this frame to unwind its register. */
940 value
= frame
->unwind
->prev_register (frame
, &frame
->prologue_cache
, regnum
);
944 fprintf_unfiltered (gdb_stdlog
, "->");
945 if (value_optimized_out (value
))
946 fprintf_unfiltered (gdb_stdlog
, " optimized out");
949 if (VALUE_LVAL (value
) == lval_register
)
950 fprintf_unfiltered (gdb_stdlog
, " register=%d",
951 VALUE_REGNUM (value
));
952 else if (VALUE_LVAL (value
) == lval_memory
)
953 fprintf_unfiltered (gdb_stdlog
, " address=%s",
955 value_address (value
)));
957 fprintf_unfiltered (gdb_stdlog
, " computed");
959 if (value_lazy (value
))
960 fprintf_unfiltered (gdb_stdlog
, " lazy");
964 const gdb_byte
*buf
= value_contents (value
);
966 fprintf_unfiltered (gdb_stdlog
, " bytes=");
967 fprintf_unfiltered (gdb_stdlog
, "[");
968 for (i
= 0; i
< register_size (gdbarch
, regnum
); i
++)
969 fprintf_unfiltered (gdb_stdlog
, "%02x", buf
[i
]);
970 fprintf_unfiltered (gdb_stdlog
, "]");
974 fprintf_unfiltered (gdb_stdlog
, " }\n");
981 get_frame_register_value (struct frame_info
*frame
, int regnum
)
983 return frame_unwind_register_value (frame
->next
, regnum
);
987 frame_unwind_register_signed (struct frame_info
*frame
, int regnum
)
989 struct gdbarch
*gdbarch
= frame_unwind_arch (frame
);
990 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
991 int size
= register_size (gdbarch
, regnum
);
992 gdb_byte buf
[MAX_REGISTER_SIZE
];
994 frame_unwind_register (frame
, regnum
, buf
);
995 return extract_signed_integer (buf
, size
, byte_order
);
999 get_frame_register_signed (struct frame_info
*frame
, int regnum
)
1001 return frame_unwind_register_signed (frame
->next
, regnum
);
1005 frame_unwind_register_unsigned (struct frame_info
*frame
, int regnum
)
1007 struct gdbarch
*gdbarch
= frame_unwind_arch (frame
);
1008 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
1009 int size
= register_size (gdbarch
, regnum
);
1010 gdb_byte buf
[MAX_REGISTER_SIZE
];
1012 frame_unwind_register (frame
, regnum
, buf
);
1013 return extract_unsigned_integer (buf
, size
, byte_order
);
1017 get_frame_register_unsigned (struct frame_info
*frame
, int regnum
)
1019 return frame_unwind_register_unsigned (frame
->next
, regnum
);
1023 put_frame_register (struct frame_info
*frame
, int regnum
,
1024 const gdb_byte
*buf
)
1026 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
1030 enum lval_type lval
;
1033 frame_register (frame
, regnum
, &optim
, &unavail
,
1034 &lval
, &addr
, &realnum
, NULL
);
1036 error (_("Attempt to assign to a value that was optimized out."));
1041 /* FIXME: write_memory doesn't yet take constant buffers.
1043 gdb_byte tmp
[MAX_REGISTER_SIZE
];
1045 memcpy (tmp
, buf
, register_size (gdbarch
, regnum
));
1046 write_memory (addr
, tmp
, register_size (gdbarch
, regnum
));
1050 regcache_cooked_write (get_current_regcache (), realnum
, buf
);
1053 error (_("Attempt to assign to an unmodifiable value."));
1057 /* frame_register_read ()
1059 Find and return the value of REGNUM for the specified stack frame.
1060 The number of bytes copied is REGISTER_SIZE (REGNUM).
1062 Returns 0 if the register value could not be found. */
1065 frame_register_read (struct frame_info
*frame
, int regnum
,
1070 enum lval_type lval
;
1074 frame_register (frame
, regnum
, &optimized
, &unavailable
,
1075 &lval
, &addr
, &realnum
, myaddr
);
1077 return !optimized
&& !unavailable
;
1081 get_frame_register_bytes (struct frame_info
*frame
, int regnum
,
1082 CORE_ADDR offset
, int len
, gdb_byte
*myaddr
,
1083 int *optimizedp
, int *unavailablep
)
1085 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
1090 /* Skip registers wholly inside of OFFSET. */
1091 while (offset
>= register_size (gdbarch
, regnum
))
1093 offset
-= register_size (gdbarch
, regnum
);
1097 /* Ensure that we will not read beyond the end of the register file.
1098 This can only ever happen if the debug information is bad. */
1100 numregs
= gdbarch_num_regs (gdbarch
) + gdbarch_num_pseudo_regs (gdbarch
);
1101 for (i
= regnum
; i
< numregs
; i
++)
1103 int thissize
= register_size (gdbarch
, i
);
1106 break; /* This register is not available on this architecture. */
1107 maxsize
+= thissize
;
1110 error (_("Bad debug information detected: "
1111 "Attempt to read %d bytes from registers."), len
);
1113 /* Copy the data. */
1116 int curr_len
= register_size (gdbarch
, regnum
) - offset
;
1121 if (curr_len
== register_size (gdbarch
, regnum
))
1123 enum lval_type lval
;
1127 frame_register (frame
, regnum
, optimizedp
, unavailablep
,
1128 &lval
, &addr
, &realnum
, myaddr
);
1129 if (*optimizedp
|| *unavailablep
)
1134 gdb_byte buf
[MAX_REGISTER_SIZE
];
1135 enum lval_type lval
;
1139 frame_register (frame
, regnum
, optimizedp
, unavailablep
,
1140 &lval
, &addr
, &realnum
, buf
);
1141 if (*optimizedp
|| *unavailablep
)
1143 memcpy (myaddr
, buf
+ offset
, curr_len
);
1158 put_frame_register_bytes (struct frame_info
*frame
, int regnum
,
1159 CORE_ADDR offset
, int len
, const gdb_byte
*myaddr
)
1161 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
1163 /* Skip registers wholly inside of OFFSET. */
1164 while (offset
>= register_size (gdbarch
, regnum
))
1166 offset
-= register_size (gdbarch
, regnum
);
1170 /* Copy the data. */
1173 int curr_len
= register_size (gdbarch
, regnum
) - offset
;
1178 if (curr_len
== register_size (gdbarch
, regnum
))
1180 put_frame_register (frame
, regnum
, myaddr
);
1184 gdb_byte buf
[MAX_REGISTER_SIZE
];
1186 frame_register_read (frame
, regnum
, buf
);
1187 memcpy (buf
+ offset
, myaddr
, curr_len
);
1188 put_frame_register (frame
, regnum
, buf
);
1198 /* Create a sentinel frame. */
1200 static struct frame_info
*
1201 create_sentinel_frame (struct program_space
*pspace
, struct regcache
*regcache
)
1203 struct frame_info
*frame
= FRAME_OBSTACK_ZALLOC (struct frame_info
);
1206 frame
->pspace
= pspace
;
1207 frame
->aspace
= get_regcache_aspace (regcache
);
1208 /* Explicitly initialize the sentinel frame's cache. Provide it
1209 with the underlying regcache. In the future additional
1210 information, such as the frame's thread will be added. */
1211 frame
->prologue_cache
= sentinel_frame_cache (regcache
);
1212 /* For the moment there is only one sentinel frame implementation. */
1213 frame
->unwind
= &sentinel_frame_unwind
;
1214 /* Link this frame back to itself. The frame is self referential
1215 (the unwound PC is the same as the pc), so make it so. */
1216 frame
->next
= frame
;
1217 /* Make the sentinel frame's ID valid, but invalid. That way all
1218 comparisons with it should fail. */
1219 frame
->this_id
.p
= 1;
1220 frame
->this_id
.value
= null_frame_id
;
1223 fprintf_unfiltered (gdb_stdlog
, "{ create_sentinel_frame (...) -> ");
1224 fprint_frame (gdb_stdlog
, frame
);
1225 fprintf_unfiltered (gdb_stdlog
, " }\n");
1230 /* Info about the innermost stack frame (contents of FP register). */
1232 static struct frame_info
*current_frame
;
1234 /* Cache for frame addresses already read by gdb. Valid only while
1235 inferior is stopped. Control variables for the frame cache should
1236 be local to this module. */
1238 static struct obstack frame_cache_obstack
;
1241 frame_obstack_zalloc (unsigned long size
)
1243 void *data
= obstack_alloc (&frame_cache_obstack
, size
);
1245 memset (data
, 0, size
);
1249 /* Return the innermost (currently executing) stack frame. This is
1250 split into two functions. The function unwind_to_current_frame()
1251 is wrapped in catch exceptions so that, even when the unwind of the
1252 sentinel frame fails, the function still returns a stack frame. */
1255 unwind_to_current_frame (struct ui_out
*ui_out
, void *args
)
1257 struct frame_info
*frame
= get_prev_frame (args
);
1259 /* A sentinel frame can fail to unwind, e.g., because its PC value
1260 lands in somewhere like start. */
1263 current_frame
= frame
;
1268 get_current_frame (void)
1270 /* First check, and report, the lack of registers. Having GDB
1271 report "No stack!" or "No memory" when the target doesn't even
1272 have registers is very confusing. Besides, "printcmd.exp"
1273 explicitly checks that ``print $pc'' with no registers prints "No
1275 if (!target_has_registers
)
1276 error (_("No registers."));
1277 if (!target_has_stack
)
1278 error (_("No stack."));
1279 if (!target_has_memory
)
1280 error (_("No memory."));
1281 /* Traceframes are effectively a substitute for the live inferior. */
1282 if (get_traceframe_number () < 0)
1284 if (ptid_equal (inferior_ptid
, null_ptid
))
1285 error (_("No selected thread."));
1286 if (is_exited (inferior_ptid
))
1287 error (_("Invalid selected thread."));
1288 if (is_executing (inferior_ptid
))
1289 error (_("Target is executing."));
1292 if (current_frame
== NULL
)
1294 struct frame_info
*sentinel_frame
=
1295 create_sentinel_frame (current_program_space
, get_current_regcache ());
1296 if (catch_exceptions (uiout
, unwind_to_current_frame
, sentinel_frame
,
1297 RETURN_MASK_ERROR
) != 0)
1299 /* Oops! Fake a current frame? Is this useful? It has a PC
1300 of zero, for instance. */
1301 current_frame
= sentinel_frame
;
1304 return current_frame
;
1307 /* The "selected" stack frame is used by default for local and arg
1308 access. May be zero, for no selected frame. */
1310 static struct frame_info
*selected_frame
;
1313 has_stack_frames (void)
1315 if (!target_has_registers
|| !target_has_stack
|| !target_has_memory
)
1318 /* No current inferior, no frame. */
1319 if (ptid_equal (inferior_ptid
, null_ptid
))
1322 /* Don't try to read from a dead thread. */
1323 if (is_exited (inferior_ptid
))
1326 /* ... or from a spinning thread. */
1327 if (is_executing (inferior_ptid
))
1333 /* Return the selected frame. Always non-NULL (unless there isn't an
1334 inferior sufficient for creating a frame) in which case an error is
1338 get_selected_frame (const char *message
)
1340 if (selected_frame
== NULL
)
1342 if (message
!= NULL
&& !has_stack_frames ())
1343 error (("%s"), message
);
1344 /* Hey! Don't trust this. It should really be re-finding the
1345 last selected frame of the currently selected thread. This,
1346 though, is better than nothing. */
1347 select_frame (get_current_frame ());
1349 /* There is always a frame. */
1350 gdb_assert (selected_frame
!= NULL
);
1351 return selected_frame
;
1354 /* If there is a selected frame, return it. Otherwise, return NULL. */
1357 get_selected_frame_if_set (void)
1359 return selected_frame
;
1362 /* This is a variant of get_selected_frame() which can be called when
1363 the inferior does not have a frame; in that case it will return
1364 NULL instead of calling error(). */
1367 deprecated_safe_get_selected_frame (void)
1369 if (!has_stack_frames ())
1371 return get_selected_frame (NULL
);
1374 /* Select frame FI (or NULL - to invalidate the current frame). */
1377 select_frame (struct frame_info
*fi
)
1379 selected_frame
= fi
;
1380 /* NOTE: cagney/2002-05-04: FI can be NULL. This occurs when the
1381 frame is being invalidated. */
1382 if (deprecated_selected_frame_level_changed_hook
)
1383 deprecated_selected_frame_level_changed_hook (frame_relative_level (fi
));
1385 /* FIXME: kseitz/2002-08-28: It would be nice to call
1386 selected_frame_level_changed_event() right here, but due to limitations
1387 in the current interfaces, we would end up flooding UIs with events
1388 because select_frame() is used extensively internally.
1390 Once we have frame-parameterized frame (and frame-related) commands,
1391 the event notification can be moved here, since this function will only
1392 be called when the user's selected frame is being changed. */
1394 /* Ensure that symbols for this frame are read in. Also, determine the
1395 source language of this frame, and switch to it if desired. */
1400 /* We retrieve the frame's symtab by using the frame PC.
1401 However we cannot use the frame PC as-is, because it usually
1402 points to the instruction following the "call", which is
1403 sometimes the first instruction of another function. So we
1404 rely on get_frame_address_in_block() which provides us with a
1405 PC which is guaranteed to be inside the frame's code
1407 if (get_frame_address_in_block_if_available (fi
, &pc
))
1409 struct symtab
*s
= find_pc_symtab (pc
);
1412 && s
->language
!= current_language
->la_language
1413 && s
->language
!= language_unknown
1414 && language_mode
== language_mode_auto
)
1415 set_language (s
->language
);
1420 /* Create an arbitrary (i.e. address specified by user) or innermost frame.
1421 Always returns a non-NULL value. */
1424 create_new_frame (CORE_ADDR addr
, CORE_ADDR pc
)
1426 struct frame_info
*fi
;
1430 fprintf_unfiltered (gdb_stdlog
,
1431 "{ create_new_frame (addr=%s, pc=%s) ",
1432 hex_string (addr
), hex_string (pc
));
1435 fi
= FRAME_OBSTACK_ZALLOC (struct frame_info
);
1437 fi
->next
= create_sentinel_frame (current_program_space
,
1438 get_current_regcache ());
1440 /* Set/update this frame's cached PC value, found in the next frame.
1441 Do this before looking for this frame's unwinder. A sniffer is
1442 very likely to read this, and the corresponding unwinder is
1443 entitled to rely that the PC doesn't magically change. */
1444 fi
->next
->prev_pc
.value
= pc
;
1445 fi
->next
->prev_pc
.p
= 1;
1447 /* We currently assume that frame chain's can't cross spaces. */
1448 fi
->pspace
= fi
->next
->pspace
;
1449 fi
->aspace
= fi
->next
->aspace
;
1451 /* Select/initialize both the unwind function and the frame's type
1453 frame_unwind_find_by_frame (fi
, &fi
->prologue_cache
);
1456 fi
->this_id
.value
= frame_id_build (addr
, pc
);
1460 fprintf_unfiltered (gdb_stdlog
, "-> ");
1461 fprint_frame (gdb_stdlog
, fi
);
1462 fprintf_unfiltered (gdb_stdlog
, " }\n");
1468 /* Return the frame that THIS_FRAME calls (NULL if THIS_FRAME is the
1469 innermost frame). Be careful to not fall off the bottom of the
1470 frame chain and onto the sentinel frame. */
1473 get_next_frame (struct frame_info
*this_frame
)
1475 if (this_frame
->level
> 0)
1476 return this_frame
->next
;
1481 /* Observer for the target_changed event. */
1484 frame_observer_target_changed (struct target_ops
*target
)
1486 reinit_frame_cache ();
1489 /* Flush the entire frame cache. */
1492 reinit_frame_cache (void)
1494 struct frame_info
*fi
;
1496 /* Tear down all frame caches. */
1497 for (fi
= current_frame
; fi
!= NULL
; fi
= fi
->prev
)
1499 if (fi
->prologue_cache
&& fi
->unwind
->dealloc_cache
)
1500 fi
->unwind
->dealloc_cache (fi
, fi
->prologue_cache
);
1501 if (fi
->base_cache
&& fi
->base
->unwind
->dealloc_cache
)
1502 fi
->base
->unwind
->dealloc_cache (fi
, fi
->base_cache
);
1505 /* Since we can't really be sure what the first object allocated was. */
1506 obstack_free (&frame_cache_obstack
, 0);
1507 obstack_init (&frame_cache_obstack
);
1509 if (current_frame
!= NULL
)
1510 annotate_frames_invalid ();
1512 current_frame
= NULL
; /* Invalidate cache */
1513 select_frame (NULL
);
1514 frame_stash_invalidate ();
1516 fprintf_unfiltered (gdb_stdlog
, "{ reinit_frame_cache () }\n");
1519 /* Find where a register is saved (in memory or another register).
1520 The result of frame_register_unwind is just where it is saved
1521 relative to this particular frame. */
1524 frame_register_unwind_location (struct frame_info
*this_frame
, int regnum
,
1525 int *optimizedp
, enum lval_type
*lvalp
,
1526 CORE_ADDR
*addrp
, int *realnump
)
1528 gdb_assert (this_frame
== NULL
|| this_frame
->level
>= 0);
1530 while (this_frame
!= NULL
)
1534 frame_register_unwind (this_frame
, regnum
, optimizedp
, &unavailable
,
1535 lvalp
, addrp
, realnump
, NULL
);
1540 if (*lvalp
!= lval_register
)
1544 this_frame
= get_next_frame (this_frame
);
1548 /* Return a "struct frame_info" corresponding to the frame that called
1549 THIS_FRAME. Returns NULL if there is no such frame.
1551 Unlike get_prev_frame, this function always tries to unwind the
1554 static struct frame_info
*
1555 get_prev_frame_1 (struct frame_info
*this_frame
)
1557 struct frame_id this_id
;
1558 struct gdbarch
*gdbarch
;
1560 gdb_assert (this_frame
!= NULL
);
1561 gdbarch
= get_frame_arch (this_frame
);
1565 fprintf_unfiltered (gdb_stdlog
, "{ get_prev_frame_1 (this_frame=");
1566 if (this_frame
!= NULL
)
1567 fprintf_unfiltered (gdb_stdlog
, "%d", this_frame
->level
);
1569 fprintf_unfiltered (gdb_stdlog
, "<NULL>");
1570 fprintf_unfiltered (gdb_stdlog
, ") ");
1573 /* Only try to do the unwind once. */
1574 if (this_frame
->prev_p
)
1578 fprintf_unfiltered (gdb_stdlog
, "-> ");
1579 fprint_frame (gdb_stdlog
, this_frame
->prev
);
1580 fprintf_unfiltered (gdb_stdlog
, " // cached \n");
1582 return this_frame
->prev
;
1585 /* If the frame unwinder hasn't been selected yet, we must do so
1586 before setting prev_p; otherwise the check for misbehaved
1587 sniffers will think that this frame's sniffer tried to unwind
1588 further (see frame_cleanup_after_sniffer). */
1589 if (this_frame
->unwind
== NULL
)
1590 frame_unwind_find_by_frame (this_frame
, &this_frame
->prologue_cache
);
1592 this_frame
->prev_p
= 1;
1593 this_frame
->stop_reason
= UNWIND_NO_REASON
;
1595 /* If we are unwinding from an inline frame, all of the below tests
1596 were already performed when we unwound from the next non-inline
1597 frame. We must skip them, since we can not get THIS_FRAME's ID
1598 until we have unwound all the way down to the previous non-inline
1600 if (get_frame_type (this_frame
) == INLINE_FRAME
)
1601 return get_prev_frame_raw (this_frame
);
1603 /* Check that this frame's ID was valid. If it wasn't, don't try to
1604 unwind to the prev frame. Be careful to not apply this test to
1605 the sentinel frame. */
1606 this_id
= get_frame_id (this_frame
);
1607 if (this_frame
->level
>= 0 && frame_id_eq (this_id
, outer_frame_id
))
1611 fprintf_unfiltered (gdb_stdlog
, "-> ");
1612 fprint_frame (gdb_stdlog
, NULL
);
1613 fprintf_unfiltered (gdb_stdlog
, " // this ID is NULL }\n");
1615 this_frame
->stop_reason
= UNWIND_NULL_ID
;
1619 /* Check that this frame's ID isn't inner to (younger, below, next)
1620 the next frame. This happens when a frame unwind goes backwards.
1621 This check is valid only if this frame and the next frame are NORMAL.
1622 See the comment at frame_id_inner for details. */
1623 if (get_frame_type (this_frame
) == NORMAL_FRAME
1624 && this_frame
->next
->unwind
->type
== NORMAL_FRAME
1625 && frame_id_inner (get_frame_arch (this_frame
->next
), this_id
,
1626 get_frame_id (this_frame
->next
)))
1628 CORE_ADDR this_pc_in_block
;
1629 struct minimal_symbol
*morestack_msym
;
1630 const char *morestack_name
= NULL
;
1632 /* gcc -fsplit-stack __morestack can continue the stack anywhere. */
1633 this_pc_in_block
= get_frame_address_in_block (this_frame
);
1634 morestack_msym
= lookup_minimal_symbol_by_pc (this_pc_in_block
);
1636 morestack_name
= SYMBOL_LINKAGE_NAME (morestack_msym
);
1637 if (!morestack_name
|| strcmp (morestack_name
, "__morestack") != 0)
1641 fprintf_unfiltered (gdb_stdlog
, "-> ");
1642 fprint_frame (gdb_stdlog
, NULL
);
1643 fprintf_unfiltered (gdb_stdlog
,
1644 " // this frame ID is inner }\n");
1646 this_frame
->stop_reason
= UNWIND_INNER_ID
;
1651 /* Check that this and the next frame are not identical. If they
1652 are, there is most likely a stack cycle. As with the inner-than
1653 test above, avoid comparing the inner-most and sentinel frames. */
1654 if (this_frame
->level
> 0
1655 && frame_id_eq (this_id
, get_frame_id (this_frame
->next
)))
1659 fprintf_unfiltered (gdb_stdlog
, "-> ");
1660 fprint_frame (gdb_stdlog
, NULL
);
1661 fprintf_unfiltered (gdb_stdlog
, " // this frame has same ID }\n");
1663 this_frame
->stop_reason
= UNWIND_SAME_ID
;
1667 /* Check that this and the next frame do not unwind the PC register
1668 to the same memory location. If they do, then even though they
1669 have different frame IDs, the new frame will be bogus; two
1670 functions can't share a register save slot for the PC. This can
1671 happen when the prologue analyzer finds a stack adjustment, but
1674 This check does assume that the "PC register" is roughly a
1675 traditional PC, even if the gdbarch_unwind_pc method adjusts
1676 it (we do not rely on the value, only on the unwound PC being
1677 dependent on this value). A potential improvement would be
1678 to have the frame prev_pc method and the gdbarch unwind_pc
1679 method set the same lval and location information as
1680 frame_register_unwind. */
1681 if (this_frame
->level
> 0
1682 && gdbarch_pc_regnum (gdbarch
) >= 0
1683 && get_frame_type (this_frame
) == NORMAL_FRAME
1684 && (get_frame_type (this_frame
->next
) == NORMAL_FRAME
1685 || get_frame_type (this_frame
->next
) == INLINE_FRAME
))
1687 int optimized
, realnum
, nrealnum
;
1688 enum lval_type lval
, nlval
;
1689 CORE_ADDR addr
, naddr
;
1691 frame_register_unwind_location (this_frame
,
1692 gdbarch_pc_regnum (gdbarch
),
1693 &optimized
, &lval
, &addr
, &realnum
);
1694 frame_register_unwind_location (get_next_frame (this_frame
),
1695 gdbarch_pc_regnum (gdbarch
),
1696 &optimized
, &nlval
, &naddr
, &nrealnum
);
1698 if ((lval
== lval_memory
&& lval
== nlval
&& addr
== naddr
)
1699 || (lval
== lval_register
&& lval
== nlval
&& realnum
== nrealnum
))
1703 fprintf_unfiltered (gdb_stdlog
, "-> ");
1704 fprint_frame (gdb_stdlog
, NULL
);
1705 fprintf_unfiltered (gdb_stdlog
, " // no saved PC }\n");
1708 this_frame
->stop_reason
= UNWIND_NO_SAVED_PC
;
1709 this_frame
->prev
= NULL
;
1714 return get_prev_frame_raw (this_frame
);
1717 /* Construct a new "struct frame_info" and link it previous to
1720 static struct frame_info
*
1721 get_prev_frame_raw (struct frame_info
*this_frame
)
1723 struct frame_info
*prev_frame
;
1725 /* Allocate the new frame but do not wire it in to the frame chain.
1726 Some (bad) code in INIT_FRAME_EXTRA_INFO tries to look along
1727 frame->next to pull some fancy tricks (of course such code is, by
1728 definition, recursive). Try to prevent it.
1730 There is no reason to worry about memory leaks, should the
1731 remainder of the function fail. The allocated memory will be
1732 quickly reclaimed when the frame cache is flushed, and the `we've
1733 been here before' check above will stop repeated memory
1734 allocation calls. */
1735 prev_frame
= FRAME_OBSTACK_ZALLOC (struct frame_info
);
1736 prev_frame
->level
= this_frame
->level
+ 1;
1738 /* For now, assume we don't have frame chains crossing address
1740 prev_frame
->pspace
= this_frame
->pspace
;
1741 prev_frame
->aspace
= this_frame
->aspace
;
1743 /* Don't yet compute ->unwind (and hence ->type). It is computed
1744 on-demand in get_frame_type, frame_register_unwind, and
1747 /* Don't yet compute the frame's ID. It is computed on-demand by
1750 /* The unwound frame ID is validate at the start of this function,
1751 as part of the logic to decide if that frame should be further
1752 unwound, and not here while the prev frame is being created.
1753 Doing this makes it possible for the user to examine a frame that
1754 has an invalid frame ID.
1756 Some very old VAX code noted: [...] For the sake of argument,
1757 suppose that the stack is somewhat trashed (which is one reason
1758 that "info frame" exists). So, return 0 (indicating we don't
1759 know the address of the arglist) if we don't know what frame this
1763 this_frame
->prev
= prev_frame
;
1764 prev_frame
->next
= this_frame
;
1768 fprintf_unfiltered (gdb_stdlog
, "-> ");
1769 fprint_frame (gdb_stdlog
, prev_frame
);
1770 fprintf_unfiltered (gdb_stdlog
, " }\n");
1776 /* Debug routine to print a NULL frame being returned. */
1779 frame_debug_got_null_frame (struct frame_info
*this_frame
,
1784 fprintf_unfiltered (gdb_stdlog
, "{ get_prev_frame (this_frame=");
1785 if (this_frame
!= NULL
)
1786 fprintf_unfiltered (gdb_stdlog
, "%d", this_frame
->level
);
1788 fprintf_unfiltered (gdb_stdlog
, "<NULL>");
1789 fprintf_unfiltered (gdb_stdlog
, ") -> // %s}\n", reason
);
1793 /* Is this (non-sentinel) frame in the "main"() function? */
1796 inside_main_func (struct frame_info
*this_frame
)
1798 struct minimal_symbol
*msymbol
;
1801 if (symfile_objfile
== 0)
1803 msymbol
= lookup_minimal_symbol (main_name (), NULL
, symfile_objfile
);
1804 if (msymbol
== NULL
)
1806 /* Make certain that the code, and not descriptor, address is
1808 maddr
= gdbarch_convert_from_func_ptr_addr (get_frame_arch (this_frame
),
1809 SYMBOL_VALUE_ADDRESS (msymbol
),
1811 return maddr
== get_frame_func (this_frame
);
1814 /* Test whether THIS_FRAME is inside the process entry point function. */
1817 inside_entry_func (struct frame_info
*this_frame
)
1819 CORE_ADDR entry_point
;
1821 if (!entry_point_address_query (&entry_point
))
1824 return get_frame_func (this_frame
) == entry_point
;
1827 /* Return a structure containing various interesting information about
1828 the frame that called THIS_FRAME. Returns NULL if there is entier
1829 no such frame or the frame fails any of a set of target-independent
1830 condition that should terminate the frame chain (e.g., as unwinding
1833 This function should not contain target-dependent tests, such as
1834 checking whether the program-counter is zero. */
1837 get_prev_frame (struct frame_info
*this_frame
)
1842 /* There is always a frame. If this assertion fails, suspect that
1843 something should be calling get_selected_frame() or
1844 get_current_frame(). */
1845 gdb_assert (this_frame
!= NULL
);
1846 frame_pc_p
= get_frame_pc_if_available (this_frame
, &frame_pc
);
1848 /* tausq/2004-12-07: Dummy frames are skipped because it doesn't make much
1849 sense to stop unwinding at a dummy frame. One place where a dummy
1850 frame may have an address "inside_main_func" is on HPUX. On HPUX, the
1851 pcsqh register (space register for the instruction at the head of the
1852 instruction queue) cannot be written directly; the only way to set it
1853 is to branch to code that is in the target space. In order to implement
1854 frame dummies on HPUX, the called function is made to jump back to where
1855 the inferior was when the user function was called. If gdb was inside
1856 the main function when we created the dummy frame, the dummy frame will
1857 point inside the main function. */
1858 if (this_frame
->level
>= 0
1859 && get_frame_type (this_frame
) == NORMAL_FRAME
1860 && !backtrace_past_main
1862 && inside_main_func (this_frame
))
1863 /* Don't unwind past main(). Note, this is done _before_ the
1864 frame has been marked as previously unwound. That way if the
1865 user later decides to enable unwinds past main(), that will
1866 automatically happen. */
1868 frame_debug_got_null_frame (this_frame
, "inside main func");
1872 /* If the user's backtrace limit has been exceeded, stop. We must
1873 add two to the current level; one of those accounts for backtrace_limit
1874 being 1-based and the level being 0-based, and the other accounts for
1875 the level of the new frame instead of the level of the current
1877 if (this_frame
->level
+ 2 > backtrace_limit
)
1879 frame_debug_got_null_frame (this_frame
, "backtrace limit exceeded");
1883 /* If we're already inside the entry function for the main objfile,
1884 then it isn't valid. Don't apply this test to a dummy frame -
1885 dummy frame PCs typically land in the entry func. Don't apply
1886 this test to the sentinel frame. Sentinel frames should always
1887 be allowed to unwind. */
1888 /* NOTE: cagney/2003-07-07: Fixed a bug in inside_main_func() -
1889 wasn't checking for "main" in the minimal symbols. With that
1890 fixed asm-source tests now stop in "main" instead of halting the
1891 backtrace in weird and wonderful ways somewhere inside the entry
1892 file. Suspect that tests for inside the entry file/func were
1893 added to work around that (now fixed) case. */
1894 /* NOTE: cagney/2003-07-15: danielj (if I'm reading it right)
1895 suggested having the inside_entry_func test use the
1896 inside_main_func() msymbol trick (along with entry_point_address()
1897 I guess) to determine the address range of the start function.
1898 That should provide a far better stopper than the current
1900 /* NOTE: tausq/2004-10-09: this is needed if, for example, the compiler
1901 applied tail-call optimizations to main so that a function called
1902 from main returns directly to the caller of main. Since we don't
1903 stop at main, we should at least stop at the entry point of the
1905 if (this_frame
->level
>= 0
1906 && get_frame_type (this_frame
) == NORMAL_FRAME
1907 && !backtrace_past_entry
1909 && inside_entry_func (this_frame
))
1911 frame_debug_got_null_frame (this_frame
, "inside entry func");
1915 /* Assume that the only way to get a zero PC is through something
1916 like a SIGSEGV or a dummy frame, and hence that NORMAL frames
1917 will never unwind a zero PC. */
1918 if (this_frame
->level
> 0
1919 && (get_frame_type (this_frame
) == NORMAL_FRAME
1920 || get_frame_type (this_frame
) == INLINE_FRAME
)
1921 && get_frame_type (get_next_frame (this_frame
)) == NORMAL_FRAME
1922 && frame_pc_p
&& frame_pc
== 0)
1924 frame_debug_got_null_frame (this_frame
, "zero PC");
1928 return get_prev_frame_1 (this_frame
);
1932 get_frame_pc (struct frame_info
*frame
)
1934 gdb_assert (frame
->next
!= NULL
);
1935 return frame_unwind_pc (frame
->next
);
1939 get_frame_pc_if_available (struct frame_info
*frame
, CORE_ADDR
*pc
)
1941 volatile struct gdb_exception ex
;
1943 gdb_assert (frame
->next
!= NULL
);
1945 TRY_CATCH (ex
, RETURN_MASK_ERROR
)
1947 *pc
= frame_unwind_pc (frame
->next
);
1951 if (ex
.error
== NOT_AVAILABLE_ERROR
)
1954 throw_exception (ex
);
1960 /* Return an address that falls within THIS_FRAME's code block. */
1963 get_frame_address_in_block (struct frame_info
*this_frame
)
1965 /* A draft address. */
1966 CORE_ADDR pc
= get_frame_pc (this_frame
);
1968 struct frame_info
*next_frame
= this_frame
->next
;
1970 /* Calling get_frame_pc returns the resume address for THIS_FRAME.
1971 Normally the resume address is inside the body of the function
1972 associated with THIS_FRAME, but there is a special case: when
1973 calling a function which the compiler knows will never return
1974 (for instance abort), the call may be the very last instruction
1975 in the calling function. The resume address will point after the
1976 call and may be at the beginning of a different function
1979 If THIS_FRAME is a signal frame or dummy frame, then we should
1980 not adjust the unwound PC. For a dummy frame, GDB pushed the
1981 resume address manually onto the stack. For a signal frame, the
1982 OS may have pushed the resume address manually and invoked the
1983 handler (e.g. GNU/Linux), or invoked the trampoline which called
1984 the signal handler - but in either case the signal handler is
1985 expected to return to the trampoline. So in both of these
1986 cases we know that the resume address is executable and
1987 related. So we only need to adjust the PC if THIS_FRAME
1988 is a normal function.
1990 If the program has been interrupted while THIS_FRAME is current,
1991 then clearly the resume address is inside the associated
1992 function. There are three kinds of interruption: debugger stop
1993 (next frame will be SENTINEL_FRAME), operating system
1994 signal or exception (next frame will be SIGTRAMP_FRAME),
1995 or debugger-induced function call (next frame will be
1996 DUMMY_FRAME). So we only need to adjust the PC if
1997 NEXT_FRAME is a normal function.
1999 We check the type of NEXT_FRAME first, since it is already
2000 known; frame type is determined by the unwinder, and since
2001 we have THIS_FRAME we've already selected an unwinder for
2004 If the next frame is inlined, we need to keep going until we find
2005 the real function - for instance, if a signal handler is invoked
2006 while in an inlined function, then the code address of the
2007 "calling" normal function should not be adjusted either. */
2009 while (get_frame_type (next_frame
) == INLINE_FRAME
)
2010 next_frame
= next_frame
->next
;
2012 if (get_frame_type (next_frame
) == NORMAL_FRAME
2013 && (get_frame_type (this_frame
) == NORMAL_FRAME
2014 || get_frame_type (this_frame
) == INLINE_FRAME
))
2021 get_frame_address_in_block_if_available (struct frame_info
*this_frame
,
2024 volatile struct gdb_exception ex
;
2026 TRY_CATCH (ex
, RETURN_MASK_ERROR
)
2028 *pc
= get_frame_address_in_block (this_frame
);
2030 if (ex
.reason
< 0 && ex
.error
== NOT_AVAILABLE_ERROR
)
2032 else if (ex
.reason
< 0)
2033 throw_exception (ex
);
2039 find_frame_sal (struct frame_info
*frame
, struct symtab_and_line
*sal
)
2041 struct frame_info
*next_frame
;
2045 /* If the next frame represents an inlined function call, this frame's
2046 sal is the "call site" of that inlined function, which can not
2047 be inferred from get_frame_pc. */
2048 next_frame
= get_next_frame (frame
);
2049 if (frame_inlined_callees (frame
) > 0)
2054 sym
= get_frame_function (next_frame
);
2056 sym
= inline_skipped_symbol (inferior_ptid
);
2058 /* If frame is inline, it certainly has symbols. */
2061 if (SYMBOL_LINE (sym
) != 0)
2063 sal
->symtab
= SYMBOL_SYMTAB (sym
);
2064 sal
->line
= SYMBOL_LINE (sym
);
2067 /* If the symbol does not have a location, we don't know where
2068 the call site is. Do not pretend to. This is jarring, but
2069 we can't do much better. */
2070 sal
->pc
= get_frame_pc (frame
);
2075 /* If FRAME is not the innermost frame, that normally means that
2076 FRAME->pc points at the return instruction (which is *after* the
2077 call instruction), and we want to get the line containing the
2078 call (because the call is where the user thinks the program is).
2079 However, if the next frame is either a SIGTRAMP_FRAME or a
2080 DUMMY_FRAME, then the next frame will contain a saved interrupt
2081 PC and such a PC indicates the current (rather than next)
2082 instruction/line, consequently, for such cases, want to get the
2083 line containing fi->pc. */
2084 if (!get_frame_pc_if_available (frame
, &pc
))
2090 notcurrent
= (pc
!= get_frame_address_in_block (frame
));
2091 (*sal
) = find_pc_line (pc
, notcurrent
);
2094 /* Per "frame.h", return the ``address'' of the frame. Code should
2095 really be using get_frame_id(). */
2097 get_frame_base (struct frame_info
*fi
)
2099 return get_frame_id (fi
).stack_addr
;
2102 /* High-level offsets into the frame. Used by the debug info. */
2105 get_frame_base_address (struct frame_info
*fi
)
2107 if (get_frame_type (fi
) != NORMAL_FRAME
)
2109 if (fi
->base
== NULL
)
2110 fi
->base
= frame_base_find_by_frame (fi
);
2111 /* Sneaky: If the low-level unwind and high-level base code share a
2112 common unwinder, let them share the prologue cache. */
2113 if (fi
->base
->unwind
== fi
->unwind
)
2114 return fi
->base
->this_base (fi
, &fi
->prologue_cache
);
2115 return fi
->base
->this_base (fi
, &fi
->base_cache
);
2119 get_frame_locals_address (struct frame_info
*fi
)
2121 if (get_frame_type (fi
) != NORMAL_FRAME
)
2123 /* If there isn't a frame address method, find it. */
2124 if (fi
->base
== NULL
)
2125 fi
->base
= frame_base_find_by_frame (fi
);
2126 /* Sneaky: If the low-level unwind and high-level base code share a
2127 common unwinder, let them share the prologue cache. */
2128 if (fi
->base
->unwind
== fi
->unwind
)
2129 return fi
->base
->this_locals (fi
, &fi
->prologue_cache
);
2130 return fi
->base
->this_locals (fi
, &fi
->base_cache
);
2134 get_frame_args_address (struct frame_info
*fi
)
2136 if (get_frame_type (fi
) != NORMAL_FRAME
)
2138 /* If there isn't a frame address method, find it. */
2139 if (fi
->base
== NULL
)
2140 fi
->base
= frame_base_find_by_frame (fi
);
2141 /* Sneaky: If the low-level unwind and high-level base code share a
2142 common unwinder, let them share the prologue cache. */
2143 if (fi
->base
->unwind
== fi
->unwind
)
2144 return fi
->base
->this_args (fi
, &fi
->prologue_cache
);
2145 return fi
->base
->this_args (fi
, &fi
->base_cache
);
2148 /* Return true if the frame unwinder for frame FI is UNWINDER; false
2152 frame_unwinder_is (struct frame_info
*fi
, const struct frame_unwind
*unwinder
)
2154 if (fi
->unwind
== NULL
)
2155 frame_unwind_find_by_frame (fi
, &fi
->prologue_cache
);
2156 return fi
->unwind
== unwinder
;
2159 /* Level of the selected frame: 0 for innermost, 1 for its caller, ...
2160 or -1 for a NULL frame. */
2163 frame_relative_level (struct frame_info
*fi
)
2172 get_frame_type (struct frame_info
*frame
)
2174 if (frame
->unwind
== NULL
)
2175 /* Initialize the frame's unwinder because that's what
2176 provides the frame's type. */
2177 frame_unwind_find_by_frame (frame
, &frame
->prologue_cache
);
2178 return frame
->unwind
->type
;
2181 struct program_space
*
2182 get_frame_program_space (struct frame_info
*frame
)
2184 return frame
->pspace
;
2187 struct program_space
*
2188 frame_unwind_program_space (struct frame_info
*this_frame
)
2190 gdb_assert (this_frame
);
2192 /* This is really a placeholder to keep the API consistent --- we
2193 assume for now that we don't have frame chains crossing
2195 return this_frame
->pspace
;
2198 struct address_space
*
2199 get_frame_address_space (struct frame_info
*frame
)
2201 return frame
->aspace
;
2204 /* Memory access methods. */
2207 get_frame_memory (struct frame_info
*this_frame
, CORE_ADDR addr
,
2208 gdb_byte
*buf
, int len
)
2210 read_memory (addr
, buf
, len
);
2214 get_frame_memory_signed (struct frame_info
*this_frame
, CORE_ADDR addr
,
2217 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
2218 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
2220 return read_memory_integer (addr
, len
, byte_order
);
2224 get_frame_memory_unsigned (struct frame_info
*this_frame
, CORE_ADDR addr
,
2227 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
2228 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
2230 return read_memory_unsigned_integer (addr
, len
, byte_order
);
2234 safe_frame_unwind_memory (struct frame_info
*this_frame
,
2235 CORE_ADDR addr
, gdb_byte
*buf
, int len
)
2237 /* NOTE: target_read_memory returns zero on success! */
2238 return !target_read_memory (addr
, buf
, len
);
2241 /* Architecture methods. */
2244 get_frame_arch (struct frame_info
*this_frame
)
2246 return frame_unwind_arch (this_frame
->next
);
2250 frame_unwind_arch (struct frame_info
*next_frame
)
2252 if (!next_frame
->prev_arch
.p
)
2254 struct gdbarch
*arch
;
2256 if (next_frame
->unwind
== NULL
)
2257 frame_unwind_find_by_frame (next_frame
, &next_frame
->prologue_cache
);
2259 if (next_frame
->unwind
->prev_arch
!= NULL
)
2260 arch
= next_frame
->unwind
->prev_arch (next_frame
,
2261 &next_frame
->prologue_cache
);
2263 arch
= get_frame_arch (next_frame
);
2265 next_frame
->prev_arch
.arch
= arch
;
2266 next_frame
->prev_arch
.p
= 1;
2268 fprintf_unfiltered (gdb_stdlog
,
2269 "{ frame_unwind_arch (next_frame=%d) -> %s }\n",
2271 gdbarch_bfd_arch_info (arch
)->printable_name
);
2274 return next_frame
->prev_arch
.arch
;
2278 frame_unwind_caller_arch (struct frame_info
*next_frame
)
2280 return frame_unwind_arch (skip_inlined_frames (next_frame
));
2283 /* Stack pointer methods. */
2286 get_frame_sp (struct frame_info
*this_frame
)
2288 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
2290 /* Normality - an architecture that provides a way of obtaining any
2291 frame inner-most address. */
2292 if (gdbarch_unwind_sp_p (gdbarch
))
2293 /* NOTE drow/2008-06-28: gdbarch_unwind_sp could be converted to
2294 operate on THIS_FRAME now. */
2295 return gdbarch_unwind_sp (gdbarch
, this_frame
->next
);
2296 /* Now things are really are grim. Hope that the value returned by
2297 the gdbarch_sp_regnum register is meaningful. */
2298 if (gdbarch_sp_regnum (gdbarch
) >= 0)
2299 return get_frame_register_unsigned (this_frame
,
2300 gdbarch_sp_regnum (gdbarch
));
2301 internal_error (__FILE__
, __LINE__
, _("Missing unwind SP method"));
2304 /* Return the reason why we can't unwind past FRAME. */
2306 enum unwind_stop_reason
2307 get_frame_unwind_stop_reason (struct frame_info
*frame
)
2309 /* If we haven't tried to unwind past this point yet, then assume
2310 that unwinding would succeed. */
2311 if (frame
->prev_p
== 0)
2312 return UNWIND_NO_REASON
;
2314 /* Otherwise, we set a reason when we succeeded (or failed) to
2316 return frame
->stop_reason
;
2319 /* Return a string explaining REASON. */
2322 frame_stop_reason_string (enum unwind_stop_reason reason
)
2326 case UNWIND_NULL_ID
:
2327 return _("unwinder did not report frame ID");
2329 case UNWIND_INNER_ID
:
2330 return _("previous frame inner to this frame (corrupt stack?)");
2332 case UNWIND_SAME_ID
:
2333 return _("previous frame identical to this frame (corrupt stack?)");
2335 case UNWIND_NO_SAVED_PC
:
2336 return _("frame did not save the PC");
2338 case UNWIND_NO_REASON
:
2339 case UNWIND_FIRST_ERROR
:
2341 internal_error (__FILE__
, __LINE__
,
2342 "Invalid frame stop reason");
2346 /* Clean up after a failed (wrong unwinder) attempt to unwind past
2350 frame_cleanup_after_sniffer (void *arg
)
2352 struct frame_info
*frame
= arg
;
2354 /* The sniffer should not allocate a prologue cache if it did not
2355 match this frame. */
2356 gdb_assert (frame
->prologue_cache
== NULL
);
2358 /* No sniffer should extend the frame chain; sniff based on what is
2360 gdb_assert (!frame
->prev_p
);
2362 /* The sniffer should not check the frame's ID; that's circular. */
2363 gdb_assert (!frame
->this_id
.p
);
2365 /* Clear cached fields dependent on the unwinder.
2367 The previous PC is independent of the unwinder, but the previous
2368 function is not (see get_frame_address_in_block). */
2369 frame
->prev_func
.p
= 0;
2370 frame
->prev_func
.addr
= 0;
2372 /* Discard the unwinder last, so that we can easily find it if an assertion
2373 in this function triggers. */
2374 frame
->unwind
= NULL
;
2377 /* Set FRAME's unwinder temporarily, so that we can call a sniffer.
2378 Return a cleanup which should be called if unwinding fails, and
2379 discarded if it succeeds. */
2382 frame_prepare_for_sniffer (struct frame_info
*frame
,
2383 const struct frame_unwind
*unwind
)
2385 gdb_assert (frame
->unwind
== NULL
);
2386 frame
->unwind
= unwind
;
2387 return make_cleanup (frame_cleanup_after_sniffer
, frame
);
2390 extern initialize_file_ftype _initialize_frame
; /* -Wmissing-prototypes */
2392 static struct cmd_list_element
*set_backtrace_cmdlist
;
2393 static struct cmd_list_element
*show_backtrace_cmdlist
;
2396 set_backtrace_cmd (char *args
, int from_tty
)
2398 help_list (set_backtrace_cmdlist
, "set backtrace ", -1, gdb_stdout
);
2402 show_backtrace_cmd (char *args
, int from_tty
)
2404 cmd_show_list (show_backtrace_cmdlist
, from_tty
, "");
2408 _initialize_frame (void)
2410 obstack_init (&frame_cache_obstack
);
2412 observer_attach_target_changed (frame_observer_target_changed
);
2414 add_prefix_cmd ("backtrace", class_maintenance
, set_backtrace_cmd
, _("\
2415 Set backtrace specific variables.\n\
2416 Configure backtrace variables such as the backtrace limit"),
2417 &set_backtrace_cmdlist
, "set backtrace ",
2418 0/*allow-unknown*/, &setlist
);
2419 add_prefix_cmd ("backtrace", class_maintenance
, show_backtrace_cmd
, _("\
2420 Show backtrace specific variables\n\
2421 Show backtrace variables such as the backtrace limit"),
2422 &show_backtrace_cmdlist
, "show backtrace ",
2423 0/*allow-unknown*/, &showlist
);
2425 add_setshow_boolean_cmd ("past-main", class_obscure
,
2426 &backtrace_past_main
, _("\
2427 Set whether backtraces should continue past \"main\"."), _("\
2428 Show whether backtraces should continue past \"main\"."), _("\
2429 Normally the caller of \"main\" is not of interest, so GDB will terminate\n\
2430 the backtrace at \"main\". Set this variable if you need to see the rest\n\
2431 of the stack trace."),
2433 show_backtrace_past_main
,
2434 &set_backtrace_cmdlist
,
2435 &show_backtrace_cmdlist
);
2437 add_setshow_boolean_cmd ("past-entry", class_obscure
,
2438 &backtrace_past_entry
, _("\
2439 Set whether backtraces should continue past the entry point of a program."),
2441 Show whether backtraces should continue past the entry point of a program."),
2443 Normally there are no callers beyond the entry point of a program, so GDB\n\
2444 will terminate the backtrace there. Set this variable if you need to see\n\
2445 the rest of the stack trace."),
2447 show_backtrace_past_entry
,
2448 &set_backtrace_cmdlist
,
2449 &show_backtrace_cmdlist
);
2451 add_setshow_integer_cmd ("limit", class_obscure
,
2452 &backtrace_limit
, _("\
2453 Set an upper bound on the number of backtrace levels."), _("\
2454 Show the upper bound on the number of backtrace levels."), _("\
2455 No more than the specified number of frames can be displayed or examined.\n\
2456 Zero is unlimited."),
2458 show_backtrace_limit
,
2459 &set_backtrace_cmdlist
,
2460 &show_backtrace_cmdlist
);
2462 /* Debug this files internals. */
2463 add_setshow_zinteger_cmd ("frame", class_maintenance
, &frame_debug
, _("\
2464 Set frame debugging."), _("\
2465 Show frame debugging."), _("\
2466 When non-zero, frame specific internal debugging is enabled."),
2469 &setdebuglist
, &showdebuglist
);