1 /* Cache and manage frames for GDB, the GNU debugger.
3 Copyright (C) 1986-2013 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24 #include "inferior.h" /* for inferior_ptid */
26 #include "gdb_assert.h"
28 #include "user-regs.h"
29 #include "gdb_obstack.h"
30 #include "dummy-frame.h"
31 #include "sentinel-frame.h"
35 #include "frame-unwind.h"
36 #include "frame-base.h"
41 #include "exceptions.h"
42 #include "gdbthread.h"
44 #include "inline-frame.h"
45 #include "tracepoint.h"
48 static struct frame_info *get_prev_frame_1 (struct frame_info *this_frame);
49 static struct frame_info *get_prev_frame_raw (struct frame_info *this_frame);
51 /* We keep a cache of stack frames, each of which is a "struct
52 frame_info". The innermost one gets allocated (in
53 wait_for_inferior) each time the inferior stops; current_frame
54 points to it. Additional frames get allocated (in get_prev_frame)
55 as needed, and are chained through the next and prev fields. Any
56 time that the frame cache becomes invalid (most notably when we
57 execute something, but also if we change how we interpret the
58 frames (e.g. "set heuristic-fence-post" in mips-tdep.c, or anything
59 which reads new symbols)), we should call reinit_frame_cache. */
63 /* Level of this frame. The inner-most (youngest) frame is at level
64 0. As you move towards the outer-most (oldest) frame, the level
65 increases. This is a cached value. It could just as easily be
66 computed by counting back from the selected frame to the inner
68 /* NOTE: cagney/2002-04-05: Perhaps a level of ``-1'' should be
69 reserved to indicate a bogus frame - one that has been created
70 just to keep GDB happy (GDB always needs a frame). For the
71 moment leave this as speculation. */
74 /* The frame's program space. */
75 struct program_space *pspace;
77 /* The frame's address space. */
78 struct address_space *aspace;
80 /* The frame's low-level unwinder and corresponding cache. The
81 low-level unwinder is responsible for unwinding register values
82 for the previous frame. The low-level unwind methods are
83 selected based on the presence, or otherwise, of register unwind
84 information such as CFI. */
86 const struct frame_unwind *unwind;
88 /* Cached copy of the previous frame's architecture. */
95 /* Cached copy of the previous frame's resume address. */
101 /* Cached copy of the previous frame's function address. */
108 /* This frame's ID. */
112 struct frame_id value;
115 /* The frame's high-level base methods, and corresponding cache.
116 The high level base methods are selected based on the frame's
118 const struct frame_base *base;
121 /* Pointers to the next (down, inner, younger) and previous (up,
122 outer, older) frame_info's in the frame cache. */
123 struct frame_info *next; /* down, inner, younger */
125 struct frame_info *prev; /* up, outer, older */
127 /* The reason why we could not set PREV, or UNWIND_NO_REASON if we
128 could. Only valid when PREV_P is set. */
129 enum unwind_stop_reason stop_reason;
132 /* A frame stash used to speed up frame lookups. Create a hash table
133 to stash frames previously accessed from the frame cache for
134 quicker subsequent retrieval. The hash table is emptied whenever
135 the frame cache is invalidated. */
137 static htab_t frame_stash;
139 /* Internal function to calculate a hash from the frame_id addresses,
140 using as many valid addresses as possible. Frames below level 0
141 are not stored in the hash table. */
144 frame_addr_hash (const void *ap)
146 const struct frame_info *frame = ap;
147 const struct frame_id f_id = frame->this_id.value;
150 gdb_assert (f_id.stack_addr_p || f_id.code_addr_p
151 || f_id.special_addr_p);
153 if (f_id.stack_addr_p)
154 hash = iterative_hash (&f_id.stack_addr,
155 sizeof (f_id.stack_addr), hash);
156 if (f_id.code_addr_p)
157 hash = iterative_hash (&f_id.code_addr,
158 sizeof (f_id.code_addr), hash);
159 if (f_id.special_addr_p)
160 hash = iterative_hash (&f_id.special_addr,
161 sizeof (f_id.special_addr), hash);
166 /* Internal equality function for the hash table. This function
167 defers equality operations to frame_id_eq. */
170 frame_addr_hash_eq (const void *a, const void *b)
172 const struct frame_info *f_entry = a;
173 const struct frame_info *f_element = b;
175 return frame_id_eq (f_entry->this_id.value,
176 f_element->this_id.value);
179 /* Internal function to create the frame_stash hash table. 100 seems
180 to be a good compromise to start the hash table at. */
183 frame_stash_create (void)
185 frame_stash = htab_create (100,
191 /* Internal function to add a frame to the frame_stash hash table. Do
192 not store frames below 0 as they may not have any addresses to
196 frame_stash_add (struct frame_info *frame)
198 /* Do not stash frames below level 0. */
199 if (frame->level >= 0)
201 struct frame_info **slot;
203 slot = (struct frame_info **) htab_find_slot (frame_stash,
210 /* Internal function to search the frame stash for an entry with the
211 given frame ID. If found, return that frame. Otherwise return
214 static struct frame_info *
215 frame_stash_find (struct frame_id id)
217 struct frame_info dummy;
218 struct frame_info *frame;
220 dummy.this_id.value = id;
221 frame = htab_find (frame_stash, &dummy);
225 /* Internal function to invalidate the frame stash by removing all
226 entries in it. This only occurs when the frame cache is
230 frame_stash_invalidate (void)
232 htab_empty (frame_stash);
235 /* Flag to control debugging. */
237 unsigned int frame_debug;
239 show_frame_debug (struct ui_file *file, int from_tty,
240 struct cmd_list_element *c, const char *value)
242 fprintf_filtered (file, _("Frame debugging is %s.\n"), value);
245 /* Flag to indicate whether backtraces should stop at main et.al. */
247 static int backtrace_past_main;
249 show_backtrace_past_main (struct ui_file *file, int from_tty,
250 struct cmd_list_element *c, const char *value)
252 fprintf_filtered (file,
253 _("Whether backtraces should "
254 "continue past \"main\" is %s.\n"),
258 static int backtrace_past_entry;
260 show_backtrace_past_entry (struct ui_file *file, int from_tty,
261 struct cmd_list_element *c, const char *value)
263 fprintf_filtered (file, _("Whether backtraces should continue past the "
264 "entry point of a program is %s.\n"),
268 static unsigned int backtrace_limit = UINT_MAX;
270 show_backtrace_limit (struct ui_file *file, int from_tty,
271 struct cmd_list_element *c, const char *value)
273 fprintf_filtered (file,
274 _("An upper bound on the number "
275 "of backtrace levels is %s.\n"),
281 fprint_field (struct ui_file *file, const char *name, int p, CORE_ADDR addr)
284 fprintf_unfiltered (file, "%s=%s", name, hex_string (addr));
286 fprintf_unfiltered (file, "!%s", name);
290 fprint_frame_id (struct ui_file *file, struct frame_id id)
292 fprintf_unfiltered (file, "{");
293 fprint_field (file, "stack", id.stack_addr_p, id.stack_addr);
294 fprintf_unfiltered (file, ",");
295 fprint_field (file, "code", id.code_addr_p, id.code_addr);
296 fprintf_unfiltered (file, ",");
297 fprint_field (file, "special", id.special_addr_p, id.special_addr);
298 if (id.artificial_depth)
299 fprintf_unfiltered (file, ",artificial=%d", id.artificial_depth);
300 fprintf_unfiltered (file, "}");
304 fprint_frame_type (struct ui_file *file, enum frame_type type)
309 fprintf_unfiltered (file, "NORMAL_FRAME");
312 fprintf_unfiltered (file, "DUMMY_FRAME");
315 fprintf_unfiltered (file, "INLINE_FRAME");
318 fprintf_unfiltered (file, "TAILCALL_FRAME");
321 fprintf_unfiltered (file, "SIGTRAMP_FRAME");
324 fprintf_unfiltered (file, "ARCH_FRAME");
327 fprintf_unfiltered (file, "SENTINEL_FRAME");
330 fprintf_unfiltered (file, "<unknown type>");
336 fprint_frame (struct ui_file *file, struct frame_info *fi)
340 fprintf_unfiltered (file, "<NULL frame>");
343 fprintf_unfiltered (file, "{");
344 fprintf_unfiltered (file, "level=%d", fi->level);
345 fprintf_unfiltered (file, ",");
346 fprintf_unfiltered (file, "type=");
347 if (fi->unwind != NULL)
348 fprint_frame_type (file, fi->unwind->type);
350 fprintf_unfiltered (file, "<unknown>");
351 fprintf_unfiltered (file, ",");
352 fprintf_unfiltered (file, "unwind=");
353 if (fi->unwind != NULL)
354 gdb_print_host_address (fi->unwind, file);
356 fprintf_unfiltered (file, "<unknown>");
357 fprintf_unfiltered (file, ",");
358 fprintf_unfiltered (file, "pc=");
359 if (fi->next != NULL && fi->next->prev_pc.p)
360 fprintf_unfiltered (file, "%s", hex_string (fi->next->prev_pc.value));
362 fprintf_unfiltered (file, "<unknown>");
363 fprintf_unfiltered (file, ",");
364 fprintf_unfiltered (file, "id=");
366 fprint_frame_id (file, fi->this_id.value);
368 fprintf_unfiltered (file, "<unknown>");
369 fprintf_unfiltered (file, ",");
370 fprintf_unfiltered (file, "func=");
371 if (fi->next != NULL && fi->next->prev_func.p)
372 fprintf_unfiltered (file, "%s", hex_string (fi->next->prev_func.addr));
374 fprintf_unfiltered (file, "<unknown>");
375 fprintf_unfiltered (file, "}");
378 /* Given FRAME, return the enclosing frame as found in real frames read-in from
379 inferior memory. Skip any previous frames which were made up by GDB.
380 Return the original frame if no immediate previous frames exist. */
382 static struct frame_info *
383 skip_artificial_frames (struct frame_info *frame)
385 while (get_frame_type (frame) == INLINE_FRAME
386 || get_frame_type (frame) == TAILCALL_FRAME)
387 frame = get_prev_frame (frame);
392 /* Return a frame uniq ID that can be used to, later, re-find the
396 get_frame_id (struct frame_info *fi)
399 return null_frame_id;
404 fprintf_unfiltered (gdb_stdlog, "{ get_frame_id (fi=%d) ",
406 /* Find the unwinder. */
407 if (fi->unwind == NULL)
408 frame_unwind_find_by_frame (fi, &fi->prologue_cache);
409 /* Find THIS frame's ID. */
410 /* Default to outermost if no ID is found. */
411 fi->this_id.value = outer_frame_id;
412 fi->unwind->this_id (fi, &fi->prologue_cache, &fi->this_id.value);
413 gdb_assert (frame_id_p (fi->this_id.value));
417 fprintf_unfiltered (gdb_stdlog, "-> ");
418 fprint_frame_id (gdb_stdlog, fi->this_id.value);
419 fprintf_unfiltered (gdb_stdlog, " }\n");
421 frame_stash_add (fi);
424 return fi->this_id.value;
428 get_stack_frame_id (struct frame_info *next_frame)
430 return get_frame_id (skip_artificial_frames (next_frame));
434 frame_unwind_caller_id (struct frame_info *next_frame)
436 struct frame_info *this_frame;
438 /* Use get_prev_frame_1, and not get_prev_frame. The latter will truncate
439 the frame chain, leading to this function unintentionally
440 returning a null_frame_id (e.g., when a caller requests the frame
441 ID of "main()"s caller. */
443 next_frame = skip_artificial_frames (next_frame);
444 this_frame = get_prev_frame_1 (next_frame);
446 return get_frame_id (skip_artificial_frames (this_frame));
448 return null_frame_id;
451 const struct frame_id null_frame_id; /* All zeros. */
452 const struct frame_id outer_frame_id = { 0, 0, 0, 0, 0, 1, 0 };
455 frame_id_build_special (CORE_ADDR stack_addr, CORE_ADDR code_addr,
456 CORE_ADDR special_addr)
458 struct frame_id id = null_frame_id;
460 id.stack_addr = stack_addr;
462 id.code_addr = code_addr;
464 id.special_addr = special_addr;
465 id.special_addr_p = 1;
470 frame_id_build (CORE_ADDR stack_addr, CORE_ADDR code_addr)
472 struct frame_id id = null_frame_id;
474 id.stack_addr = stack_addr;
476 id.code_addr = code_addr;
482 frame_id_build_wild (CORE_ADDR stack_addr)
484 struct frame_id id = null_frame_id;
486 id.stack_addr = stack_addr;
492 frame_id_p (struct frame_id l)
496 /* The frame is valid iff it has a valid stack address. */
498 /* outer_frame_id is also valid. */
499 if (!p && memcmp (&l, &outer_frame_id, sizeof (l)) == 0)
503 fprintf_unfiltered (gdb_stdlog, "{ frame_id_p (l=");
504 fprint_frame_id (gdb_stdlog, l);
505 fprintf_unfiltered (gdb_stdlog, ") -> %d }\n", p);
511 frame_id_artificial_p (struct frame_id l)
516 return (l.artificial_depth != 0);
520 frame_id_eq (struct frame_id l, struct frame_id r)
524 if (!l.stack_addr_p && l.special_addr_p
525 && !r.stack_addr_p && r.special_addr_p)
526 /* The outermost frame marker is equal to itself. This is the
527 dodgy thing about outer_frame_id, since between execution steps
528 we might step into another function - from which we can't
529 unwind either. More thought required to get rid of
532 else if (!l.stack_addr_p || !r.stack_addr_p)
533 /* Like a NaN, if either ID is invalid, the result is false.
534 Note that a frame ID is invalid iff it is the null frame ID. */
536 else if (l.stack_addr != r.stack_addr)
537 /* If .stack addresses are different, the frames are different. */
539 else if (l.code_addr_p && r.code_addr_p && l.code_addr != r.code_addr)
540 /* An invalid code addr is a wild card. If .code addresses are
541 different, the frames are different. */
543 else if (l.special_addr_p && r.special_addr_p
544 && l.special_addr != r.special_addr)
545 /* An invalid special addr is a wild card (or unused). Otherwise
546 if special addresses are different, the frames are different. */
548 else if (l.artificial_depth != r.artificial_depth)
549 /* If artifical depths are different, the frames must be different. */
552 /* Frames are equal. */
557 fprintf_unfiltered (gdb_stdlog, "{ frame_id_eq (l=");
558 fprint_frame_id (gdb_stdlog, l);
559 fprintf_unfiltered (gdb_stdlog, ",r=");
560 fprint_frame_id (gdb_stdlog, r);
561 fprintf_unfiltered (gdb_stdlog, ") -> %d }\n", eq);
566 /* Safety net to check whether frame ID L should be inner to
567 frame ID R, according to their stack addresses.
569 This method cannot be used to compare arbitrary frames, as the
570 ranges of valid stack addresses may be discontiguous (e.g. due
573 However, it can be used as safety net to discover invalid frame
574 IDs in certain circumstances. Assuming that NEXT is the immediate
575 inner frame to THIS and that NEXT and THIS are both NORMAL frames:
577 * The stack address of NEXT must be inner-than-or-equal to the stack
580 Therefore, if frame_id_inner (THIS, NEXT) holds, some unwind
583 * If NEXT and THIS have different stack addresses, no other frame
584 in the frame chain may have a stack address in between.
586 Therefore, if frame_id_inner (TEST, THIS) holds, but
587 frame_id_inner (TEST, NEXT) does not hold, TEST cannot refer
588 to a valid frame in the frame chain.
590 The sanity checks above cannot be performed when a SIGTRAMP frame
591 is involved, because signal handlers might be executed on a different
592 stack than the stack used by the routine that caused the signal
593 to be raised. This can happen for instance when a thread exceeds
594 its maximum stack size. In this case, certain compilers implement
595 a stack overflow strategy that cause the handler to be run on a
599 frame_id_inner (struct gdbarch *gdbarch, struct frame_id l, struct frame_id r)
603 if (!l.stack_addr_p || !r.stack_addr_p)
604 /* Like NaN, any operation involving an invalid ID always fails. */
606 else if (l.artificial_depth > r.artificial_depth
607 && l.stack_addr == r.stack_addr
608 && l.code_addr_p == r.code_addr_p
609 && l.special_addr_p == r.special_addr_p
610 && l.special_addr == r.special_addr)
612 /* Same function, different inlined functions. */
613 struct block *lb, *rb;
615 gdb_assert (l.code_addr_p && r.code_addr_p);
617 lb = block_for_pc (l.code_addr);
618 rb = block_for_pc (r.code_addr);
620 if (lb == NULL || rb == NULL)
621 /* Something's gone wrong. */
624 /* This will return true if LB and RB are the same block, or
625 if the block with the smaller depth lexically encloses the
626 block with the greater depth. */
627 inner = contained_in (lb, rb);
630 /* Only return non-zero when strictly inner than. Note that, per
631 comment in "frame.h", there is some fuzz here. Frameless
632 functions are not strictly inner than (same .stack but
633 different .code and/or .special address). */
634 inner = gdbarch_inner_than (gdbarch, l.stack_addr, r.stack_addr);
637 fprintf_unfiltered (gdb_stdlog, "{ frame_id_inner (l=");
638 fprint_frame_id (gdb_stdlog, l);
639 fprintf_unfiltered (gdb_stdlog, ",r=");
640 fprint_frame_id (gdb_stdlog, r);
641 fprintf_unfiltered (gdb_stdlog, ") -> %d }\n", inner);
647 frame_find_by_id (struct frame_id id)
649 struct frame_info *frame, *prev_frame;
651 /* ZERO denotes the null frame, let the caller decide what to do
652 about it. Should it instead return get_current_frame()? */
653 if (!frame_id_p (id))
656 /* Try using the frame stash first. Finding it there removes the need
657 to perform the search by looping over all frames, which can be very
658 CPU-intensive if the number of frames is very high (the loop is O(n)
659 and get_prev_frame performs a series of checks that are relatively
660 expensive). This optimization is particularly useful when this function
661 is called from another function (such as value_fetch_lazy, case
662 VALUE_LVAL (val) == lval_register) which already loops over all frames,
663 making the overall behavior O(n^2). */
664 frame = frame_stash_find (id);
668 for (frame = get_current_frame (); ; frame = prev_frame)
670 struct frame_id this = get_frame_id (frame);
672 if (frame_id_eq (id, this))
673 /* An exact match. */
676 prev_frame = get_prev_frame (frame);
680 /* As a safety net to avoid unnecessary backtracing while trying
681 to find an invalid ID, we check for a common situation where
682 we can detect from comparing stack addresses that no other
683 frame in the current frame chain can have this ID. See the
684 comment at frame_id_inner for details. */
685 if (get_frame_type (frame) == NORMAL_FRAME
686 && !frame_id_inner (get_frame_arch (frame), id, this)
687 && frame_id_inner (get_frame_arch (prev_frame), id,
688 get_frame_id (prev_frame)))
695 frame_unwind_pc_if_available (struct frame_info *this_frame, CORE_ADDR *pc)
697 if (!this_frame->prev_pc.p)
699 if (gdbarch_unwind_pc_p (frame_unwind_arch (this_frame)))
701 volatile struct gdb_exception ex;
702 struct gdbarch *prev_gdbarch;
705 /* The right way. The `pure' way. The one true way. This
706 method depends solely on the register-unwind code to
707 determine the value of registers in THIS frame, and hence
708 the value of this frame's PC (resume address). A typical
709 implementation is no more than:
711 frame_unwind_register (this_frame, ISA_PC_REGNUM, buf);
712 return extract_unsigned_integer (buf, size of ISA_PC_REGNUM);
714 Note: this method is very heavily dependent on a correct
715 register-unwind implementation, it pays to fix that
716 method first; this method is frame type agnostic, since
717 it only deals with register values, it works with any
718 frame. This is all in stark contrast to the old
719 FRAME_SAVED_PC which would try to directly handle all the
720 different ways that a PC could be unwound. */
721 prev_gdbarch = frame_unwind_arch (this_frame);
723 TRY_CATCH (ex, RETURN_MASK_ERROR)
725 pc = gdbarch_unwind_pc (prev_gdbarch, this_frame);
727 if (ex.reason < 0 && ex.error == NOT_AVAILABLE_ERROR)
729 this_frame->prev_pc.p = -1;
732 fprintf_unfiltered (gdb_stdlog,
733 "{ frame_unwind_pc (this_frame=%d)"
734 " -> <unavailable> }\n",
737 else if (ex.reason < 0)
739 throw_exception (ex);
743 this_frame->prev_pc.value = pc;
744 this_frame->prev_pc.p = 1;
746 fprintf_unfiltered (gdb_stdlog,
747 "{ frame_unwind_pc (this_frame=%d) "
750 hex_string (this_frame->prev_pc.value));
754 internal_error (__FILE__, __LINE__, _("No unwind_pc method"));
756 if (this_frame->prev_pc.p < 0)
763 *pc = this_frame->prev_pc.value;
769 frame_unwind_pc (struct frame_info *this_frame)
773 if (!frame_unwind_pc_if_available (this_frame, &pc))
774 throw_error (NOT_AVAILABLE_ERROR, _("PC not available"));
780 frame_unwind_caller_pc (struct frame_info *this_frame)
782 return frame_unwind_pc (skip_artificial_frames (this_frame));
786 frame_unwind_caller_pc_if_available (struct frame_info *this_frame,
789 return frame_unwind_pc_if_available (skip_artificial_frames (this_frame), pc);
793 get_frame_func_if_available (struct frame_info *this_frame, CORE_ADDR *pc)
795 struct frame_info *next_frame = this_frame->next;
797 if (!next_frame->prev_func.p)
799 CORE_ADDR addr_in_block;
801 /* Make certain that this, and not the adjacent, function is
803 if (!get_frame_address_in_block_if_available (this_frame, &addr_in_block))
805 next_frame->prev_func.p = -1;
807 fprintf_unfiltered (gdb_stdlog,
808 "{ get_frame_func (this_frame=%d)"
809 " -> unavailable }\n",
814 next_frame->prev_func.p = 1;
815 next_frame->prev_func.addr = get_pc_function_start (addr_in_block);
817 fprintf_unfiltered (gdb_stdlog,
818 "{ get_frame_func (this_frame=%d) -> %s }\n",
820 hex_string (next_frame->prev_func.addr));
824 if (next_frame->prev_func.p < 0)
831 *pc = next_frame->prev_func.addr;
837 get_frame_func (struct frame_info *this_frame)
841 if (!get_frame_func_if_available (this_frame, &pc))
842 throw_error (NOT_AVAILABLE_ERROR, _("PC not available"));
847 static enum register_status
848 do_frame_register_read (void *src, int regnum, gdb_byte *buf)
850 if (!deprecated_frame_register_read (src, regnum, buf))
851 return REG_UNAVAILABLE;
857 frame_save_as_regcache (struct frame_info *this_frame)
859 struct address_space *aspace = get_frame_address_space (this_frame);
860 struct regcache *regcache = regcache_xmalloc (get_frame_arch (this_frame),
862 struct cleanup *cleanups = make_cleanup_regcache_xfree (regcache);
864 regcache_save (regcache, do_frame_register_read, this_frame);
865 discard_cleanups (cleanups);
870 frame_pop (struct frame_info *this_frame)
872 struct frame_info *prev_frame;
873 struct regcache *scratch;
874 struct cleanup *cleanups;
876 if (get_frame_type (this_frame) == DUMMY_FRAME)
878 /* Popping a dummy frame involves restoring more than just registers.
879 dummy_frame_pop does all the work. */
880 dummy_frame_pop (get_frame_id (this_frame));
884 /* Ensure that we have a frame to pop to. */
885 prev_frame = get_prev_frame_1 (this_frame);
888 error (_("Cannot pop the initial frame."));
890 /* Ignore TAILCALL_FRAME type frames, they were executed already before
891 entering THISFRAME. */
892 while (get_frame_type (prev_frame) == TAILCALL_FRAME)
893 prev_frame = get_prev_frame (prev_frame);
895 /* Make a copy of all the register values unwound from this frame.
896 Save them in a scratch buffer so that there isn't a race between
897 trying to extract the old values from the current regcache while
898 at the same time writing new values into that same cache. */
899 scratch = frame_save_as_regcache (prev_frame);
900 cleanups = make_cleanup_regcache_xfree (scratch);
902 /* FIXME: cagney/2003-03-16: It should be possible to tell the
903 target's register cache that it is about to be hit with a burst
904 register transfer and that the sequence of register writes should
905 be batched. The pair target_prepare_to_store() and
906 target_store_registers() kind of suggest this functionality.
907 Unfortunately, they don't implement it. Their lack of a formal
908 definition can lead to targets writing back bogus values
909 (arguably a bug in the target code mind). */
910 /* Now copy those saved registers into the current regcache.
911 Here, regcache_cpy() calls regcache_restore(). */
912 regcache_cpy (get_current_regcache (), scratch);
913 do_cleanups (cleanups);
915 /* We've made right mess of GDB's local state, just discard
917 reinit_frame_cache ();
921 frame_register_unwind (struct frame_info *frame, int regnum,
922 int *optimizedp, int *unavailablep,
923 enum lval_type *lvalp, CORE_ADDR *addrp,
924 int *realnump, gdb_byte *bufferp)
928 /* Require all but BUFFERP to be valid. A NULL BUFFERP indicates
929 that the value proper does not need to be fetched. */
930 gdb_assert (optimizedp != NULL);
931 gdb_assert (lvalp != NULL);
932 gdb_assert (addrp != NULL);
933 gdb_assert (realnump != NULL);
934 /* gdb_assert (bufferp != NULL); */
936 value = frame_unwind_register_value (frame, regnum);
938 gdb_assert (value != NULL);
940 *optimizedp = value_optimized_out (value);
941 *unavailablep = !value_entirely_available (value);
942 *lvalp = VALUE_LVAL (value);
943 *addrp = value_address (value);
944 *realnump = VALUE_REGNUM (value);
948 if (!*optimizedp && !*unavailablep)
949 memcpy (bufferp, value_contents_all (value),
950 TYPE_LENGTH (value_type (value)));
952 memset (bufferp, 0, TYPE_LENGTH (value_type (value)));
955 /* Dispose of the new value. This prevents watchpoints from
956 trying to watch the saved frame pointer. */
957 release_value (value);
962 frame_register (struct frame_info *frame, int regnum,
963 int *optimizedp, int *unavailablep, enum lval_type *lvalp,
964 CORE_ADDR *addrp, int *realnump, gdb_byte *bufferp)
966 /* Require all but BUFFERP to be valid. A NULL BUFFERP indicates
967 that the value proper does not need to be fetched. */
968 gdb_assert (optimizedp != NULL);
969 gdb_assert (lvalp != NULL);
970 gdb_assert (addrp != NULL);
971 gdb_assert (realnump != NULL);
972 /* gdb_assert (bufferp != NULL); */
974 /* Obtain the register value by unwinding the register from the next
975 (more inner frame). */
976 gdb_assert (frame != NULL && frame->next != NULL);
977 frame_register_unwind (frame->next, regnum, optimizedp, unavailablep,
978 lvalp, addrp, realnump, bufferp);
982 frame_unwind_register (struct frame_info *frame, int regnum, gdb_byte *buf)
990 frame_register_unwind (frame, regnum, &optimized, &unavailable,
991 &lval, &addr, &realnum, buf);
994 error (_("Register %d was optimized out"), regnum);
996 throw_error (NOT_AVAILABLE_ERROR,
997 _("Register %d is not available"), regnum);
1001 get_frame_register (struct frame_info *frame,
1002 int regnum, gdb_byte *buf)
1004 frame_unwind_register (frame->next, regnum, buf);
1008 frame_unwind_register_value (struct frame_info *frame, int regnum)
1010 struct gdbarch *gdbarch;
1011 struct value *value;
1013 gdb_assert (frame != NULL);
1014 gdbarch = frame_unwind_arch (frame);
1018 fprintf_unfiltered (gdb_stdlog,
1019 "{ frame_unwind_register_value "
1020 "(frame=%d,regnum=%d(%s),...) ",
1021 frame->level, regnum,
1022 user_reg_map_regnum_to_name (gdbarch, regnum));
1025 /* Find the unwinder. */
1026 if (frame->unwind == NULL)
1027 frame_unwind_find_by_frame (frame, &frame->prologue_cache);
1029 /* Ask this frame to unwind its register. */
1030 value = frame->unwind->prev_register (frame, &frame->prologue_cache, regnum);
1034 fprintf_unfiltered (gdb_stdlog, "->");
1035 if (value_optimized_out (value))
1036 fprintf_unfiltered (gdb_stdlog, " optimized out");
1039 if (VALUE_LVAL (value) == lval_register)
1040 fprintf_unfiltered (gdb_stdlog, " register=%d",
1041 VALUE_REGNUM (value));
1042 else if (VALUE_LVAL (value) == lval_memory)
1043 fprintf_unfiltered (gdb_stdlog, " address=%s",
1045 value_address (value)));
1047 fprintf_unfiltered (gdb_stdlog, " computed");
1049 if (value_lazy (value))
1050 fprintf_unfiltered (gdb_stdlog, " lazy");
1054 const gdb_byte *buf = value_contents (value);
1056 fprintf_unfiltered (gdb_stdlog, " bytes=");
1057 fprintf_unfiltered (gdb_stdlog, "[");
1058 for (i = 0; i < register_size (gdbarch, regnum); i++)
1059 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
1060 fprintf_unfiltered (gdb_stdlog, "]");
1064 fprintf_unfiltered (gdb_stdlog, " }\n");
1071 get_frame_register_value (struct frame_info *frame, int regnum)
1073 return frame_unwind_register_value (frame->next, regnum);
1077 frame_unwind_register_signed (struct frame_info *frame, int regnum)
1079 struct gdbarch *gdbarch = frame_unwind_arch (frame);
1080 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1081 int size = register_size (gdbarch, regnum);
1082 gdb_byte buf[MAX_REGISTER_SIZE];
1084 frame_unwind_register (frame, regnum, buf);
1085 return extract_signed_integer (buf, size, byte_order);
1089 get_frame_register_signed (struct frame_info *frame, int regnum)
1091 return frame_unwind_register_signed (frame->next, regnum);
1095 frame_unwind_register_unsigned (struct frame_info *frame, int regnum)
1097 struct gdbarch *gdbarch = frame_unwind_arch (frame);
1098 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1099 int size = register_size (gdbarch, regnum);
1100 gdb_byte buf[MAX_REGISTER_SIZE];
1102 frame_unwind_register (frame, regnum, buf);
1103 return extract_unsigned_integer (buf, size, byte_order);
1107 get_frame_register_unsigned (struct frame_info *frame, int regnum)
1109 return frame_unwind_register_unsigned (frame->next, regnum);
1113 read_frame_register_unsigned (struct frame_info *frame, int regnum,
1116 struct value *regval = get_frame_register_value (frame, regnum);
1118 if (!value_optimized_out (regval)
1119 && value_entirely_available (regval))
1121 struct gdbarch *gdbarch = get_frame_arch (frame);
1122 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1123 int size = register_size (gdbarch, VALUE_REGNUM (regval));
1125 *val = extract_unsigned_integer (value_contents (regval), size, byte_order);
1133 put_frame_register (struct frame_info *frame, int regnum,
1134 const gdb_byte *buf)
1136 struct gdbarch *gdbarch = get_frame_arch (frame);
1140 enum lval_type lval;
1143 frame_register (frame, regnum, &optim, &unavail,
1144 &lval, &addr, &realnum, NULL);
1146 error (_("Attempt to assign to a register that was not saved."));
1151 write_memory (addr, buf, register_size (gdbarch, regnum));
1155 regcache_cooked_write (get_current_regcache (), realnum, buf);
1158 error (_("Attempt to assign to an unmodifiable value."));
1162 /* This function is deprecated. Use get_frame_register_value instead,
1163 which provides more accurate information.
1165 Find and return the value of REGNUM for the specified stack frame.
1166 The number of bytes copied is REGISTER_SIZE (REGNUM).
1168 Returns 0 if the register value could not be found. */
1171 deprecated_frame_register_read (struct frame_info *frame, int regnum,
1176 enum lval_type lval;
1180 frame_register (frame, regnum, &optimized, &unavailable,
1181 &lval, &addr, &realnum, myaddr);
1183 return !optimized && !unavailable;
1187 get_frame_register_bytes (struct frame_info *frame, int regnum,
1188 CORE_ADDR offset, int len, gdb_byte *myaddr,
1189 int *optimizedp, int *unavailablep)
1191 struct gdbarch *gdbarch = get_frame_arch (frame);
1196 /* Skip registers wholly inside of OFFSET. */
1197 while (offset >= register_size (gdbarch, regnum))
1199 offset -= register_size (gdbarch, regnum);
1203 /* Ensure that we will not read beyond the end of the register file.
1204 This can only ever happen if the debug information is bad. */
1206 numregs = gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
1207 for (i = regnum; i < numregs; i++)
1209 int thissize = register_size (gdbarch, i);
1212 break; /* This register is not available on this architecture. */
1213 maxsize += thissize;
1216 error (_("Bad debug information detected: "
1217 "Attempt to read %d bytes from registers."), len);
1219 /* Copy the data. */
1222 int curr_len = register_size (gdbarch, regnum) - offset;
1227 if (curr_len == register_size (gdbarch, regnum))
1229 enum lval_type lval;
1233 frame_register (frame, regnum, optimizedp, unavailablep,
1234 &lval, &addr, &realnum, myaddr);
1235 if (*optimizedp || *unavailablep)
1240 gdb_byte buf[MAX_REGISTER_SIZE];
1241 enum lval_type lval;
1245 frame_register (frame, regnum, optimizedp, unavailablep,
1246 &lval, &addr, &realnum, buf);
1247 if (*optimizedp || *unavailablep)
1249 memcpy (myaddr, buf + offset, curr_len);
1264 put_frame_register_bytes (struct frame_info *frame, int regnum,
1265 CORE_ADDR offset, int len, const gdb_byte *myaddr)
1267 struct gdbarch *gdbarch = get_frame_arch (frame);
1269 /* Skip registers wholly inside of OFFSET. */
1270 while (offset >= register_size (gdbarch, regnum))
1272 offset -= register_size (gdbarch, regnum);
1276 /* Copy the data. */
1279 int curr_len = register_size (gdbarch, regnum) - offset;
1284 if (curr_len == register_size (gdbarch, regnum))
1286 put_frame_register (frame, regnum, myaddr);
1290 gdb_byte buf[MAX_REGISTER_SIZE];
1292 deprecated_frame_register_read (frame, regnum, buf);
1293 memcpy (buf + offset, myaddr, curr_len);
1294 put_frame_register (frame, regnum, buf);
1304 /* Create a sentinel frame. */
1306 static struct frame_info *
1307 create_sentinel_frame (struct program_space *pspace, struct regcache *regcache)
1309 struct frame_info *frame = FRAME_OBSTACK_ZALLOC (struct frame_info);
1312 frame->pspace = pspace;
1313 frame->aspace = get_regcache_aspace (regcache);
1314 /* Explicitly initialize the sentinel frame's cache. Provide it
1315 with the underlying regcache. In the future additional
1316 information, such as the frame's thread will be added. */
1317 frame->prologue_cache = sentinel_frame_cache (regcache);
1318 /* For the moment there is only one sentinel frame implementation. */
1319 frame->unwind = &sentinel_frame_unwind;
1320 /* Link this frame back to itself. The frame is self referential
1321 (the unwound PC is the same as the pc), so make it so. */
1322 frame->next = frame;
1323 /* Make the sentinel frame's ID valid, but invalid. That way all
1324 comparisons with it should fail. */
1325 frame->this_id.p = 1;
1326 frame->this_id.value = null_frame_id;
1329 fprintf_unfiltered (gdb_stdlog, "{ create_sentinel_frame (...) -> ");
1330 fprint_frame (gdb_stdlog, frame);
1331 fprintf_unfiltered (gdb_stdlog, " }\n");
1336 /* Info about the innermost stack frame (contents of FP register). */
1338 static struct frame_info *current_frame;
1340 /* Cache for frame addresses already read by gdb. Valid only while
1341 inferior is stopped. Control variables for the frame cache should
1342 be local to this module. */
1344 static struct obstack frame_cache_obstack;
1347 frame_obstack_zalloc (unsigned long size)
1349 void *data = obstack_alloc (&frame_cache_obstack, size);
1351 memset (data, 0, size);
1355 /* Return the innermost (currently executing) stack frame. This is
1356 split into two functions. The function unwind_to_current_frame()
1357 is wrapped in catch exceptions so that, even when the unwind of the
1358 sentinel frame fails, the function still returns a stack frame. */
1361 unwind_to_current_frame (struct ui_out *ui_out, void *args)
1363 struct frame_info *frame = get_prev_frame (args);
1365 /* A sentinel frame can fail to unwind, e.g., because its PC value
1366 lands in somewhere like start. */
1369 current_frame = frame;
1374 get_current_frame (void)
1376 /* First check, and report, the lack of registers. Having GDB
1377 report "No stack!" or "No memory" when the target doesn't even
1378 have registers is very confusing. Besides, "printcmd.exp"
1379 explicitly checks that ``print $pc'' with no registers prints "No
1381 if (!target_has_registers)
1382 error (_("No registers."));
1383 if (!target_has_stack)
1384 error (_("No stack."));
1385 if (!target_has_memory)
1386 error (_("No memory."));
1387 /* Traceframes are effectively a substitute for the live inferior. */
1388 if (get_traceframe_number () < 0)
1390 if (ptid_equal (inferior_ptid, null_ptid))
1391 error (_("No selected thread."));
1392 if (is_exited (inferior_ptid))
1393 error (_("Invalid selected thread."));
1394 if (is_executing (inferior_ptid))
1395 error (_("Target is executing."));
1398 if (current_frame == NULL)
1400 struct frame_info *sentinel_frame =
1401 create_sentinel_frame (current_program_space, get_current_regcache ());
1402 if (catch_exceptions (current_uiout, unwind_to_current_frame,
1403 sentinel_frame, RETURN_MASK_ERROR) != 0)
1405 /* Oops! Fake a current frame? Is this useful? It has a PC
1406 of zero, for instance. */
1407 current_frame = sentinel_frame;
1410 return current_frame;
1413 /* The "selected" stack frame is used by default for local and arg
1414 access. May be zero, for no selected frame. */
1416 static struct frame_info *selected_frame;
1419 has_stack_frames (void)
1421 if (!target_has_registers || !target_has_stack || !target_has_memory)
1424 /* Traceframes are effectively a substitute for the live inferior. */
1425 if (get_traceframe_number () < 0)
1427 /* No current inferior, no frame. */
1428 if (ptid_equal (inferior_ptid, null_ptid))
1431 /* Don't try to read from a dead thread. */
1432 if (is_exited (inferior_ptid))
1435 /* ... or from a spinning thread. */
1436 if (is_executing (inferior_ptid))
1443 /* Return the selected frame. Always non-NULL (unless there isn't an
1444 inferior sufficient for creating a frame) in which case an error is
1448 get_selected_frame (const char *message)
1450 if (selected_frame == NULL)
1452 if (message != NULL && !has_stack_frames ())
1453 error (("%s"), message);
1454 /* Hey! Don't trust this. It should really be re-finding the
1455 last selected frame of the currently selected thread. This,
1456 though, is better than nothing. */
1457 select_frame (get_current_frame ());
1459 /* There is always a frame. */
1460 gdb_assert (selected_frame != NULL);
1461 return selected_frame;
1464 /* If there is a selected frame, return it. Otherwise, return NULL. */
1467 get_selected_frame_if_set (void)
1469 return selected_frame;
1472 /* This is a variant of get_selected_frame() which can be called when
1473 the inferior does not have a frame; in that case it will return
1474 NULL instead of calling error(). */
1477 deprecated_safe_get_selected_frame (void)
1479 if (!has_stack_frames ())
1481 return get_selected_frame (NULL);
1484 /* Select frame FI (or NULL - to invalidate the current frame). */
1487 select_frame (struct frame_info *fi)
1489 selected_frame = fi;
1490 /* NOTE: cagney/2002-05-04: FI can be NULL. This occurs when the
1491 frame is being invalidated. */
1492 if (deprecated_selected_frame_level_changed_hook)
1493 deprecated_selected_frame_level_changed_hook (frame_relative_level (fi));
1495 /* FIXME: kseitz/2002-08-28: It would be nice to call
1496 selected_frame_level_changed_event() right here, but due to limitations
1497 in the current interfaces, we would end up flooding UIs with events
1498 because select_frame() is used extensively internally.
1500 Once we have frame-parameterized frame (and frame-related) commands,
1501 the event notification can be moved here, since this function will only
1502 be called when the user's selected frame is being changed. */
1504 /* Ensure that symbols for this frame are read in. Also, determine the
1505 source language of this frame, and switch to it if desired. */
1510 /* We retrieve the frame's symtab by using the frame PC.
1511 However we cannot use the frame PC as-is, because it usually
1512 points to the instruction following the "call", which is
1513 sometimes the first instruction of another function. So we
1514 rely on get_frame_address_in_block() which provides us with a
1515 PC which is guaranteed to be inside the frame's code
1517 if (get_frame_address_in_block_if_available (fi, &pc))
1519 struct symtab *s = find_pc_symtab (pc);
1522 && s->language != current_language->la_language
1523 && s->language != language_unknown
1524 && language_mode == language_mode_auto)
1525 set_language (s->language);
1530 /* Create an arbitrary (i.e. address specified by user) or innermost frame.
1531 Always returns a non-NULL value. */
1534 create_new_frame (CORE_ADDR addr, CORE_ADDR pc)
1536 struct frame_info *fi;
1540 fprintf_unfiltered (gdb_stdlog,
1541 "{ create_new_frame (addr=%s, pc=%s) ",
1542 hex_string (addr), hex_string (pc));
1545 fi = FRAME_OBSTACK_ZALLOC (struct frame_info);
1547 fi->next = create_sentinel_frame (current_program_space,
1548 get_current_regcache ());
1550 /* Set/update this frame's cached PC value, found in the next frame.
1551 Do this before looking for this frame's unwinder. A sniffer is
1552 very likely to read this, and the corresponding unwinder is
1553 entitled to rely that the PC doesn't magically change. */
1554 fi->next->prev_pc.value = pc;
1555 fi->next->prev_pc.p = 1;
1557 /* We currently assume that frame chain's can't cross spaces. */
1558 fi->pspace = fi->next->pspace;
1559 fi->aspace = fi->next->aspace;
1561 /* Select/initialize both the unwind function and the frame's type
1563 frame_unwind_find_by_frame (fi, &fi->prologue_cache);
1566 fi->this_id.value = frame_id_build (addr, pc);
1570 fprintf_unfiltered (gdb_stdlog, "-> ");
1571 fprint_frame (gdb_stdlog, fi);
1572 fprintf_unfiltered (gdb_stdlog, " }\n");
1578 /* Return the frame that THIS_FRAME calls (NULL if THIS_FRAME is the
1579 innermost frame). Be careful to not fall off the bottom of the
1580 frame chain and onto the sentinel frame. */
1583 get_next_frame (struct frame_info *this_frame)
1585 if (this_frame->level > 0)
1586 return this_frame->next;
1591 /* Observer for the target_changed event. */
1594 frame_observer_target_changed (struct target_ops *target)
1596 reinit_frame_cache ();
1599 /* Flush the entire frame cache. */
1602 reinit_frame_cache (void)
1604 struct frame_info *fi;
1606 /* Tear down all frame caches. */
1607 for (fi = current_frame; fi != NULL; fi = fi->prev)
1609 if (fi->prologue_cache && fi->unwind->dealloc_cache)
1610 fi->unwind->dealloc_cache (fi, fi->prologue_cache);
1611 if (fi->base_cache && fi->base->unwind->dealloc_cache)
1612 fi->base->unwind->dealloc_cache (fi, fi->base_cache);
1615 /* Since we can't really be sure what the first object allocated was. */
1616 obstack_free (&frame_cache_obstack, 0);
1617 obstack_init (&frame_cache_obstack);
1619 if (current_frame != NULL)
1620 annotate_frames_invalid ();
1622 current_frame = NULL; /* Invalidate cache */
1623 select_frame (NULL);
1624 frame_stash_invalidate ();
1626 fprintf_unfiltered (gdb_stdlog, "{ reinit_frame_cache () }\n");
1629 /* Find where a register is saved (in memory or another register).
1630 The result of frame_register_unwind is just where it is saved
1631 relative to this particular frame. */
1634 frame_register_unwind_location (struct frame_info *this_frame, int regnum,
1635 int *optimizedp, enum lval_type *lvalp,
1636 CORE_ADDR *addrp, int *realnump)
1638 gdb_assert (this_frame == NULL || this_frame->level >= 0);
1640 while (this_frame != NULL)
1644 frame_register_unwind (this_frame, regnum, optimizedp, &unavailable,
1645 lvalp, addrp, realnump, NULL);
1650 if (*lvalp != lval_register)
1654 this_frame = get_next_frame (this_frame);
1658 /* Return a "struct frame_info" corresponding to the frame that called
1659 THIS_FRAME. Returns NULL if there is no such frame.
1661 Unlike get_prev_frame, this function always tries to unwind the
1664 static struct frame_info *
1665 get_prev_frame_1 (struct frame_info *this_frame)
1667 struct frame_id this_id;
1668 struct gdbarch *gdbarch;
1669 struct frame_info *prev_frame;
1671 gdb_assert (this_frame != NULL);
1672 gdbarch = get_frame_arch (this_frame);
1676 fprintf_unfiltered (gdb_stdlog, "{ get_prev_frame_1 (this_frame=");
1677 if (this_frame != NULL)
1678 fprintf_unfiltered (gdb_stdlog, "%d", this_frame->level);
1680 fprintf_unfiltered (gdb_stdlog, "<NULL>");
1681 fprintf_unfiltered (gdb_stdlog, ") ");
1684 /* Only try to do the unwind once. */
1685 if (this_frame->prev_p)
1689 fprintf_unfiltered (gdb_stdlog, "-> ");
1690 fprint_frame (gdb_stdlog, this_frame->prev);
1691 fprintf_unfiltered (gdb_stdlog, " // cached \n");
1693 return this_frame->prev;
1696 /* If the frame unwinder hasn't been selected yet, we must do so
1697 before setting prev_p; otherwise the check for misbehaved
1698 sniffers will think that this frame's sniffer tried to unwind
1699 further (see frame_cleanup_after_sniffer). */
1700 if (this_frame->unwind == NULL)
1701 frame_unwind_find_by_frame (this_frame, &this_frame->prologue_cache);
1703 this_frame->prev_p = 1;
1704 this_frame->stop_reason = UNWIND_NO_REASON;
1706 /* If we are unwinding from an inline frame, all of the below tests
1707 were already performed when we unwound from the next non-inline
1708 frame. We must skip them, since we can not get THIS_FRAME's ID
1709 until we have unwound all the way down to the previous non-inline
1711 if (get_frame_type (this_frame) == INLINE_FRAME)
1712 return get_prev_frame_raw (this_frame);
1714 /* Check that this frame is unwindable. If it isn't, don't try to
1715 unwind to the prev frame. */
1716 this_frame->stop_reason
1717 = this_frame->unwind->stop_reason (this_frame,
1718 &this_frame->prologue_cache);
1720 if (this_frame->stop_reason != UNWIND_NO_REASON)
1723 /* Check that this frame's ID was valid. If it wasn't, don't try to
1724 unwind to the prev frame. Be careful to not apply this test to
1725 the sentinel frame. */
1726 this_id = get_frame_id (this_frame);
1727 if (this_frame->level >= 0 && frame_id_eq (this_id, outer_frame_id))
1731 fprintf_unfiltered (gdb_stdlog, "-> ");
1732 fprint_frame (gdb_stdlog, NULL);
1733 fprintf_unfiltered (gdb_stdlog, " // this ID is NULL }\n");
1735 this_frame->stop_reason = UNWIND_NULL_ID;
1739 /* Check that this frame's ID isn't inner to (younger, below, next)
1740 the next frame. This happens when a frame unwind goes backwards.
1741 This check is valid only if this frame and the next frame are NORMAL.
1742 See the comment at frame_id_inner for details. */
1743 if (get_frame_type (this_frame) == NORMAL_FRAME
1744 && this_frame->next->unwind->type == NORMAL_FRAME
1745 && frame_id_inner (get_frame_arch (this_frame->next), this_id,
1746 get_frame_id (this_frame->next)))
1748 CORE_ADDR this_pc_in_block;
1749 struct minimal_symbol *morestack_msym;
1750 const char *morestack_name = NULL;
1752 /* gcc -fsplit-stack __morestack can continue the stack anywhere. */
1753 this_pc_in_block = get_frame_address_in_block (this_frame);
1754 morestack_msym = lookup_minimal_symbol_by_pc (this_pc_in_block).minsym;
1756 morestack_name = SYMBOL_LINKAGE_NAME (morestack_msym);
1757 if (!morestack_name || strcmp (morestack_name, "__morestack") != 0)
1761 fprintf_unfiltered (gdb_stdlog, "-> ");
1762 fprint_frame (gdb_stdlog, NULL);
1763 fprintf_unfiltered (gdb_stdlog,
1764 " // this frame ID is inner }\n");
1766 this_frame->stop_reason = UNWIND_INNER_ID;
1771 /* Check that this and the next frame do not unwind the PC register
1772 to the same memory location. If they do, then even though they
1773 have different frame IDs, the new frame will be bogus; two
1774 functions can't share a register save slot for the PC. This can
1775 happen when the prologue analyzer finds a stack adjustment, but
1778 This check does assume that the "PC register" is roughly a
1779 traditional PC, even if the gdbarch_unwind_pc method adjusts
1780 it (we do not rely on the value, only on the unwound PC being
1781 dependent on this value). A potential improvement would be
1782 to have the frame prev_pc method and the gdbarch unwind_pc
1783 method set the same lval and location information as
1784 frame_register_unwind. */
1785 if (this_frame->level > 0
1786 && gdbarch_pc_regnum (gdbarch) >= 0
1787 && get_frame_type (this_frame) == NORMAL_FRAME
1788 && (get_frame_type (this_frame->next) == NORMAL_FRAME
1789 || get_frame_type (this_frame->next) == INLINE_FRAME))
1791 int optimized, realnum, nrealnum;
1792 enum lval_type lval, nlval;
1793 CORE_ADDR addr, naddr;
1795 frame_register_unwind_location (this_frame,
1796 gdbarch_pc_regnum (gdbarch),
1797 &optimized, &lval, &addr, &realnum);
1798 frame_register_unwind_location (get_next_frame (this_frame),
1799 gdbarch_pc_regnum (gdbarch),
1800 &optimized, &nlval, &naddr, &nrealnum);
1802 if ((lval == lval_memory && lval == nlval && addr == naddr)
1803 || (lval == lval_register && lval == nlval && realnum == nrealnum))
1807 fprintf_unfiltered (gdb_stdlog, "-> ");
1808 fprint_frame (gdb_stdlog, NULL);
1809 fprintf_unfiltered (gdb_stdlog, " // no saved PC }\n");
1812 this_frame->stop_reason = UNWIND_NO_SAVED_PC;
1813 this_frame->prev = NULL;
1818 prev_frame = get_prev_frame_raw (this_frame);
1820 /* Check that this and the prev frame are not identical. If they
1821 are, there is most likely a stack cycle. Unlike the tests above,
1822 we do this right after creating the prev frame, to avoid ever
1823 ending up with two frames with the same id in the frame
1825 if (prev_frame != NULL
1826 && frame_id_eq (get_frame_id (prev_frame),
1827 get_frame_id (this_frame)))
1831 fprintf_unfiltered (gdb_stdlog, "-> ");
1832 fprint_frame (gdb_stdlog, NULL);
1833 fprintf_unfiltered (gdb_stdlog, " // this frame has same ID }\n");
1835 this_frame->stop_reason = UNWIND_SAME_ID;
1837 prev_frame->next = NULL;
1838 this_frame->prev = NULL;
1845 /* Construct a new "struct frame_info" and link it previous to
1848 static struct frame_info *
1849 get_prev_frame_raw (struct frame_info *this_frame)
1851 struct frame_info *prev_frame;
1853 /* Allocate the new frame but do not wire it in to the frame chain.
1854 Some (bad) code in INIT_FRAME_EXTRA_INFO tries to look along
1855 frame->next to pull some fancy tricks (of course such code is, by
1856 definition, recursive). Try to prevent it.
1858 There is no reason to worry about memory leaks, should the
1859 remainder of the function fail. The allocated memory will be
1860 quickly reclaimed when the frame cache is flushed, and the `we've
1861 been here before' check above will stop repeated memory
1862 allocation calls. */
1863 prev_frame = FRAME_OBSTACK_ZALLOC (struct frame_info);
1864 prev_frame->level = this_frame->level + 1;
1866 /* For now, assume we don't have frame chains crossing address
1868 prev_frame->pspace = this_frame->pspace;
1869 prev_frame->aspace = this_frame->aspace;
1871 /* Don't yet compute ->unwind (and hence ->type). It is computed
1872 on-demand in get_frame_type, frame_register_unwind, and
1875 /* Don't yet compute the frame's ID. It is computed on-demand by
1878 /* The unwound frame ID is validate at the start of this function,
1879 as part of the logic to decide if that frame should be further
1880 unwound, and not here while the prev frame is being created.
1881 Doing this makes it possible for the user to examine a frame that
1882 has an invalid frame ID.
1884 Some very old VAX code noted: [...] For the sake of argument,
1885 suppose that the stack is somewhat trashed (which is one reason
1886 that "info frame" exists). So, return 0 (indicating we don't
1887 know the address of the arglist) if we don't know what frame this
1891 this_frame->prev = prev_frame;
1892 prev_frame->next = this_frame;
1896 fprintf_unfiltered (gdb_stdlog, "-> ");
1897 fprint_frame (gdb_stdlog, prev_frame);
1898 fprintf_unfiltered (gdb_stdlog, " }\n");
1904 /* Debug routine to print a NULL frame being returned. */
1907 frame_debug_got_null_frame (struct frame_info *this_frame,
1912 fprintf_unfiltered (gdb_stdlog, "{ get_prev_frame (this_frame=");
1913 if (this_frame != NULL)
1914 fprintf_unfiltered (gdb_stdlog, "%d", this_frame->level);
1916 fprintf_unfiltered (gdb_stdlog, "<NULL>");
1917 fprintf_unfiltered (gdb_stdlog, ") -> // %s}\n", reason);
1921 /* Is this (non-sentinel) frame in the "main"() function? */
1924 inside_main_func (struct frame_info *this_frame)
1926 struct minimal_symbol *msymbol;
1929 if (symfile_objfile == 0)
1931 msymbol = lookup_minimal_symbol (main_name (), NULL, symfile_objfile);
1932 if (msymbol == NULL)
1934 /* Make certain that the code, and not descriptor, address is
1936 maddr = gdbarch_convert_from_func_ptr_addr (get_frame_arch (this_frame),
1937 SYMBOL_VALUE_ADDRESS (msymbol),
1939 return maddr == get_frame_func (this_frame);
1942 /* Test whether THIS_FRAME is inside the process entry point function. */
1945 inside_entry_func (struct frame_info *this_frame)
1947 CORE_ADDR entry_point;
1949 if (!entry_point_address_query (&entry_point))
1952 return get_frame_func (this_frame) == entry_point;
1955 /* Return a structure containing various interesting information about
1956 the frame that called THIS_FRAME. Returns NULL if there is entier
1957 no such frame or the frame fails any of a set of target-independent
1958 condition that should terminate the frame chain (e.g., as unwinding
1961 This function should not contain target-dependent tests, such as
1962 checking whether the program-counter is zero. */
1965 get_prev_frame (struct frame_info *this_frame)
1970 /* There is always a frame. If this assertion fails, suspect that
1971 something should be calling get_selected_frame() or
1972 get_current_frame(). */
1973 gdb_assert (this_frame != NULL);
1974 frame_pc_p = get_frame_pc_if_available (this_frame, &frame_pc);
1976 /* tausq/2004-12-07: Dummy frames are skipped because it doesn't make much
1977 sense to stop unwinding at a dummy frame. One place where a dummy
1978 frame may have an address "inside_main_func" is on HPUX. On HPUX, the
1979 pcsqh register (space register for the instruction at the head of the
1980 instruction queue) cannot be written directly; the only way to set it
1981 is to branch to code that is in the target space. In order to implement
1982 frame dummies on HPUX, the called function is made to jump back to where
1983 the inferior was when the user function was called. If gdb was inside
1984 the main function when we created the dummy frame, the dummy frame will
1985 point inside the main function. */
1986 if (this_frame->level >= 0
1987 && get_frame_type (this_frame) == NORMAL_FRAME
1988 && !backtrace_past_main
1990 && inside_main_func (this_frame))
1991 /* Don't unwind past main(). Note, this is done _before_ the
1992 frame has been marked as previously unwound. That way if the
1993 user later decides to enable unwinds past main(), that will
1994 automatically happen. */
1996 frame_debug_got_null_frame (this_frame, "inside main func");
2000 /* If the user's backtrace limit has been exceeded, stop. We must
2001 add two to the current level; one of those accounts for backtrace_limit
2002 being 1-based and the level being 0-based, and the other accounts for
2003 the level of the new frame instead of the level of the current
2005 if (this_frame->level + 2 > backtrace_limit)
2007 frame_debug_got_null_frame (this_frame, "backtrace limit exceeded");
2011 /* If we're already inside the entry function for the main objfile,
2012 then it isn't valid. Don't apply this test to a dummy frame -
2013 dummy frame PCs typically land in the entry func. Don't apply
2014 this test to the sentinel frame. Sentinel frames should always
2015 be allowed to unwind. */
2016 /* NOTE: cagney/2003-07-07: Fixed a bug in inside_main_func() -
2017 wasn't checking for "main" in the minimal symbols. With that
2018 fixed asm-source tests now stop in "main" instead of halting the
2019 backtrace in weird and wonderful ways somewhere inside the entry
2020 file. Suspect that tests for inside the entry file/func were
2021 added to work around that (now fixed) case. */
2022 /* NOTE: cagney/2003-07-15: danielj (if I'm reading it right)
2023 suggested having the inside_entry_func test use the
2024 inside_main_func() msymbol trick (along with entry_point_address()
2025 I guess) to determine the address range of the start function.
2026 That should provide a far better stopper than the current
2028 /* NOTE: tausq/2004-10-09: this is needed if, for example, the compiler
2029 applied tail-call optimizations to main so that a function called
2030 from main returns directly to the caller of main. Since we don't
2031 stop at main, we should at least stop at the entry point of the
2033 if (this_frame->level >= 0
2034 && get_frame_type (this_frame) == NORMAL_FRAME
2035 && !backtrace_past_entry
2037 && inside_entry_func (this_frame))
2039 frame_debug_got_null_frame (this_frame, "inside entry func");
2043 /* Assume that the only way to get a zero PC is through something
2044 like a SIGSEGV or a dummy frame, and hence that NORMAL frames
2045 will never unwind a zero PC. */
2046 if (this_frame->level > 0
2047 && (get_frame_type (this_frame) == NORMAL_FRAME
2048 || get_frame_type (this_frame) == INLINE_FRAME)
2049 && get_frame_type (get_next_frame (this_frame)) == NORMAL_FRAME
2050 && frame_pc_p && frame_pc == 0)
2052 frame_debug_got_null_frame (this_frame, "zero PC");
2056 return get_prev_frame_1 (this_frame);
2060 get_frame_pc (struct frame_info *frame)
2062 gdb_assert (frame->next != NULL);
2063 return frame_unwind_pc (frame->next);
2067 get_frame_pc_if_available (struct frame_info *frame, CORE_ADDR *pc)
2069 volatile struct gdb_exception ex;
2071 gdb_assert (frame->next != NULL);
2073 TRY_CATCH (ex, RETURN_MASK_ERROR)
2075 *pc = frame_unwind_pc (frame->next);
2079 if (ex.error == NOT_AVAILABLE_ERROR)
2082 throw_exception (ex);
2088 /* Return an address that falls within THIS_FRAME's code block. */
2091 get_frame_address_in_block (struct frame_info *this_frame)
2093 /* A draft address. */
2094 CORE_ADDR pc = get_frame_pc (this_frame);
2096 struct frame_info *next_frame = this_frame->next;
2098 /* Calling get_frame_pc returns the resume address for THIS_FRAME.
2099 Normally the resume address is inside the body of the function
2100 associated with THIS_FRAME, but there is a special case: when
2101 calling a function which the compiler knows will never return
2102 (for instance abort), the call may be the very last instruction
2103 in the calling function. The resume address will point after the
2104 call and may be at the beginning of a different function
2107 If THIS_FRAME is a signal frame or dummy frame, then we should
2108 not adjust the unwound PC. For a dummy frame, GDB pushed the
2109 resume address manually onto the stack. For a signal frame, the
2110 OS may have pushed the resume address manually and invoked the
2111 handler (e.g. GNU/Linux), or invoked the trampoline which called
2112 the signal handler - but in either case the signal handler is
2113 expected to return to the trampoline. So in both of these
2114 cases we know that the resume address is executable and
2115 related. So we only need to adjust the PC if THIS_FRAME
2116 is a normal function.
2118 If the program has been interrupted while THIS_FRAME is current,
2119 then clearly the resume address is inside the associated
2120 function. There are three kinds of interruption: debugger stop
2121 (next frame will be SENTINEL_FRAME), operating system
2122 signal or exception (next frame will be SIGTRAMP_FRAME),
2123 or debugger-induced function call (next frame will be
2124 DUMMY_FRAME). So we only need to adjust the PC if
2125 NEXT_FRAME is a normal function.
2127 We check the type of NEXT_FRAME first, since it is already
2128 known; frame type is determined by the unwinder, and since
2129 we have THIS_FRAME we've already selected an unwinder for
2132 If the next frame is inlined, we need to keep going until we find
2133 the real function - for instance, if a signal handler is invoked
2134 while in an inlined function, then the code address of the
2135 "calling" normal function should not be adjusted either. */
2137 while (get_frame_type (next_frame) == INLINE_FRAME)
2138 next_frame = next_frame->next;
2140 if ((get_frame_type (next_frame) == NORMAL_FRAME
2141 || get_frame_type (next_frame) == TAILCALL_FRAME)
2142 && (get_frame_type (this_frame) == NORMAL_FRAME
2143 || get_frame_type (this_frame) == TAILCALL_FRAME
2144 || get_frame_type (this_frame) == INLINE_FRAME))
2151 get_frame_address_in_block_if_available (struct frame_info *this_frame,
2154 volatile struct gdb_exception ex;
2156 TRY_CATCH (ex, RETURN_MASK_ERROR)
2158 *pc = get_frame_address_in_block (this_frame);
2160 if (ex.reason < 0 && ex.error == NOT_AVAILABLE_ERROR)
2162 else if (ex.reason < 0)
2163 throw_exception (ex);
2169 find_frame_sal (struct frame_info *frame, struct symtab_and_line *sal)
2171 struct frame_info *next_frame;
2175 /* If the next frame represents an inlined function call, this frame's
2176 sal is the "call site" of that inlined function, which can not
2177 be inferred from get_frame_pc. */
2178 next_frame = get_next_frame (frame);
2179 if (frame_inlined_callees (frame) > 0)
2184 sym = get_frame_function (next_frame);
2186 sym = inline_skipped_symbol (inferior_ptid);
2188 /* If frame is inline, it certainly has symbols. */
2191 if (SYMBOL_LINE (sym) != 0)
2193 sal->symtab = SYMBOL_SYMTAB (sym);
2194 sal->line = SYMBOL_LINE (sym);
2197 /* If the symbol does not have a location, we don't know where
2198 the call site is. Do not pretend to. This is jarring, but
2199 we can't do much better. */
2200 sal->pc = get_frame_pc (frame);
2202 sal->pspace = get_frame_program_space (frame);
2207 /* If FRAME is not the innermost frame, that normally means that
2208 FRAME->pc points at the return instruction (which is *after* the
2209 call instruction), and we want to get the line containing the
2210 call (because the call is where the user thinks the program is).
2211 However, if the next frame is either a SIGTRAMP_FRAME or a
2212 DUMMY_FRAME, then the next frame will contain a saved interrupt
2213 PC and such a PC indicates the current (rather than next)
2214 instruction/line, consequently, for such cases, want to get the
2215 line containing fi->pc. */
2216 if (!get_frame_pc_if_available (frame, &pc))
2222 notcurrent = (pc != get_frame_address_in_block (frame));
2223 (*sal) = find_pc_line (pc, notcurrent);
2226 /* Per "frame.h", return the ``address'' of the frame. Code should
2227 really be using get_frame_id(). */
2229 get_frame_base (struct frame_info *fi)
2231 return get_frame_id (fi).stack_addr;
2234 /* High-level offsets into the frame. Used by the debug info. */
2237 get_frame_base_address (struct frame_info *fi)
2239 if (get_frame_type (fi) != NORMAL_FRAME)
2241 if (fi->base == NULL)
2242 fi->base = frame_base_find_by_frame (fi);
2243 /* Sneaky: If the low-level unwind and high-level base code share a
2244 common unwinder, let them share the prologue cache. */
2245 if (fi->base->unwind == fi->unwind)
2246 return fi->base->this_base (fi, &fi->prologue_cache);
2247 return fi->base->this_base (fi, &fi->base_cache);
2251 get_frame_locals_address (struct frame_info *fi)
2253 if (get_frame_type (fi) != NORMAL_FRAME)
2255 /* If there isn't a frame address method, find it. */
2256 if (fi->base == NULL)
2257 fi->base = frame_base_find_by_frame (fi);
2258 /* Sneaky: If the low-level unwind and high-level base code share a
2259 common unwinder, let them share the prologue cache. */
2260 if (fi->base->unwind == fi->unwind)
2261 return fi->base->this_locals (fi, &fi->prologue_cache);
2262 return fi->base->this_locals (fi, &fi->base_cache);
2266 get_frame_args_address (struct frame_info *fi)
2268 if (get_frame_type (fi) != NORMAL_FRAME)
2270 /* If there isn't a frame address method, find it. */
2271 if (fi->base == NULL)
2272 fi->base = frame_base_find_by_frame (fi);
2273 /* Sneaky: If the low-level unwind and high-level base code share a
2274 common unwinder, let them share the prologue cache. */
2275 if (fi->base->unwind == fi->unwind)
2276 return fi->base->this_args (fi, &fi->prologue_cache);
2277 return fi->base->this_args (fi, &fi->base_cache);
2280 /* Return true if the frame unwinder for frame FI is UNWINDER; false
2284 frame_unwinder_is (struct frame_info *fi, const struct frame_unwind *unwinder)
2286 if (fi->unwind == NULL)
2287 frame_unwind_find_by_frame (fi, &fi->prologue_cache);
2288 return fi->unwind == unwinder;
2291 /* Level of the selected frame: 0 for innermost, 1 for its caller, ...
2292 or -1 for a NULL frame. */
2295 frame_relative_level (struct frame_info *fi)
2304 get_frame_type (struct frame_info *frame)
2306 if (frame->unwind == NULL)
2307 /* Initialize the frame's unwinder because that's what
2308 provides the frame's type. */
2309 frame_unwind_find_by_frame (frame, &frame->prologue_cache);
2310 return frame->unwind->type;
2313 struct program_space *
2314 get_frame_program_space (struct frame_info *frame)
2316 return frame->pspace;
2319 struct program_space *
2320 frame_unwind_program_space (struct frame_info *this_frame)
2322 gdb_assert (this_frame);
2324 /* This is really a placeholder to keep the API consistent --- we
2325 assume for now that we don't have frame chains crossing
2327 return this_frame->pspace;
2330 struct address_space *
2331 get_frame_address_space (struct frame_info *frame)
2333 return frame->aspace;
2336 /* Memory access methods. */
2339 get_frame_memory (struct frame_info *this_frame, CORE_ADDR addr,
2340 gdb_byte *buf, int len)
2342 read_memory (addr, buf, len);
2346 get_frame_memory_signed (struct frame_info *this_frame, CORE_ADDR addr,
2349 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2350 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
2352 return read_memory_integer (addr, len, byte_order);
2356 get_frame_memory_unsigned (struct frame_info *this_frame, CORE_ADDR addr,
2359 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2360 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
2362 return read_memory_unsigned_integer (addr, len, byte_order);
2366 safe_frame_unwind_memory (struct frame_info *this_frame,
2367 CORE_ADDR addr, gdb_byte *buf, int len)
2369 /* NOTE: target_read_memory returns zero on success! */
2370 return !target_read_memory (addr, buf, len);
2373 /* Architecture methods. */
2376 get_frame_arch (struct frame_info *this_frame)
2378 return frame_unwind_arch (this_frame->next);
2382 frame_unwind_arch (struct frame_info *next_frame)
2384 if (!next_frame->prev_arch.p)
2386 struct gdbarch *arch;
2388 if (next_frame->unwind == NULL)
2389 frame_unwind_find_by_frame (next_frame, &next_frame->prologue_cache);
2391 if (next_frame->unwind->prev_arch != NULL)
2392 arch = next_frame->unwind->prev_arch (next_frame,
2393 &next_frame->prologue_cache);
2395 arch = get_frame_arch (next_frame);
2397 next_frame->prev_arch.arch = arch;
2398 next_frame->prev_arch.p = 1;
2400 fprintf_unfiltered (gdb_stdlog,
2401 "{ frame_unwind_arch (next_frame=%d) -> %s }\n",
2403 gdbarch_bfd_arch_info (arch)->printable_name);
2406 return next_frame->prev_arch.arch;
2410 frame_unwind_caller_arch (struct frame_info *next_frame)
2412 return frame_unwind_arch (skip_artificial_frames (next_frame));
2415 /* Stack pointer methods. */
2418 get_frame_sp (struct frame_info *this_frame)
2420 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2422 /* Normality - an architecture that provides a way of obtaining any
2423 frame inner-most address. */
2424 if (gdbarch_unwind_sp_p (gdbarch))
2425 /* NOTE drow/2008-06-28: gdbarch_unwind_sp could be converted to
2426 operate on THIS_FRAME now. */
2427 return gdbarch_unwind_sp (gdbarch, this_frame->next);
2428 /* Now things are really are grim. Hope that the value returned by
2429 the gdbarch_sp_regnum register is meaningful. */
2430 if (gdbarch_sp_regnum (gdbarch) >= 0)
2431 return get_frame_register_unsigned (this_frame,
2432 gdbarch_sp_regnum (gdbarch));
2433 internal_error (__FILE__, __LINE__, _("Missing unwind SP method"));
2436 /* Return the reason why we can't unwind past FRAME. */
2438 enum unwind_stop_reason
2439 get_frame_unwind_stop_reason (struct frame_info *frame)
2441 /* If we haven't tried to unwind past this point yet, then assume
2442 that unwinding would succeed. */
2443 if (frame->prev_p == 0)
2444 return UNWIND_NO_REASON;
2446 /* Otherwise, we set a reason when we succeeded (or failed) to
2448 return frame->stop_reason;
2451 /* Return a string explaining REASON. */
2454 frame_stop_reason_string (enum unwind_stop_reason reason)
2458 #define SET(name, description) \
2459 case name: return _(description);
2460 #include "unwind_stop_reasons.def"
2464 internal_error (__FILE__, __LINE__,
2465 "Invalid frame stop reason");
2469 /* Clean up after a failed (wrong unwinder) attempt to unwind past
2473 frame_cleanup_after_sniffer (void *arg)
2475 struct frame_info *frame = arg;
2477 /* The sniffer should not allocate a prologue cache if it did not
2478 match this frame. */
2479 gdb_assert (frame->prologue_cache == NULL);
2481 /* No sniffer should extend the frame chain; sniff based on what is
2483 gdb_assert (!frame->prev_p);
2485 /* The sniffer should not check the frame's ID; that's circular. */
2486 gdb_assert (!frame->this_id.p);
2488 /* Clear cached fields dependent on the unwinder.
2490 The previous PC is independent of the unwinder, but the previous
2491 function is not (see get_frame_address_in_block). */
2492 frame->prev_func.p = 0;
2493 frame->prev_func.addr = 0;
2495 /* Discard the unwinder last, so that we can easily find it if an assertion
2496 in this function triggers. */
2497 frame->unwind = NULL;
2500 /* Set FRAME's unwinder temporarily, so that we can call a sniffer.
2501 Return a cleanup which should be called if unwinding fails, and
2502 discarded if it succeeds. */
2505 frame_prepare_for_sniffer (struct frame_info *frame,
2506 const struct frame_unwind *unwind)
2508 gdb_assert (frame->unwind == NULL);
2509 frame->unwind = unwind;
2510 return make_cleanup (frame_cleanup_after_sniffer, frame);
2513 extern initialize_file_ftype _initialize_frame; /* -Wmissing-prototypes */
2515 static struct cmd_list_element *set_backtrace_cmdlist;
2516 static struct cmd_list_element *show_backtrace_cmdlist;
2519 set_backtrace_cmd (char *args, int from_tty)
2521 help_list (set_backtrace_cmdlist, "set backtrace ", -1, gdb_stdout);
2525 show_backtrace_cmd (char *args, int from_tty)
2527 cmd_show_list (show_backtrace_cmdlist, from_tty, "");
2531 _initialize_frame (void)
2533 obstack_init (&frame_cache_obstack);
2535 frame_stash_create ();
2537 observer_attach_target_changed (frame_observer_target_changed);
2539 add_prefix_cmd ("backtrace", class_maintenance, set_backtrace_cmd, _("\
2540 Set backtrace specific variables.\n\
2541 Configure backtrace variables such as the backtrace limit"),
2542 &set_backtrace_cmdlist, "set backtrace ",
2543 0/*allow-unknown*/, &setlist);
2544 add_prefix_cmd ("backtrace", class_maintenance, show_backtrace_cmd, _("\
2545 Show backtrace specific variables\n\
2546 Show backtrace variables such as the backtrace limit"),
2547 &show_backtrace_cmdlist, "show backtrace ",
2548 0/*allow-unknown*/, &showlist);
2550 add_setshow_boolean_cmd ("past-main", class_obscure,
2551 &backtrace_past_main, _("\
2552 Set whether backtraces should continue past \"main\"."), _("\
2553 Show whether backtraces should continue past \"main\"."), _("\
2554 Normally the caller of \"main\" is not of interest, so GDB will terminate\n\
2555 the backtrace at \"main\". Set this variable if you need to see the rest\n\
2556 of the stack trace."),
2558 show_backtrace_past_main,
2559 &set_backtrace_cmdlist,
2560 &show_backtrace_cmdlist);
2562 add_setshow_boolean_cmd ("past-entry", class_obscure,
2563 &backtrace_past_entry, _("\
2564 Set whether backtraces should continue past the entry point of a program."),
2566 Show whether backtraces should continue past the entry point of a program."),
2568 Normally there are no callers beyond the entry point of a program, so GDB\n\
2569 will terminate the backtrace there. Set this variable if you need to see\n\
2570 the rest of the stack trace."),
2572 show_backtrace_past_entry,
2573 &set_backtrace_cmdlist,
2574 &show_backtrace_cmdlist);
2576 add_setshow_uinteger_cmd ("limit", class_obscure,
2577 &backtrace_limit, _("\
2578 Set an upper bound on the number of backtrace levels."), _("\
2579 Show the upper bound on the number of backtrace levels."), _("\
2580 No more than the specified number of frames can be displayed or examined.\n\
2581 Literal \"unlimited\" or zero means no limit."),
2583 show_backtrace_limit,
2584 &set_backtrace_cmdlist,
2585 &show_backtrace_cmdlist);
2587 /* Debug this files internals. */
2588 add_setshow_zuinteger_cmd ("frame", class_maintenance, &frame_debug, _("\
2589 Set frame debugging."), _("\
2590 Show frame debugging."), _("\
2591 When non-zero, frame specific internal debugging is enabled."),
2594 &setdebuglist, &showdebuglist);