1 /* Cache and manage frames for GDB, the GNU debugger.
3 Copyright 1986, 1987, 1989, 1991, 1994, 1995, 1996, 1998, 2000,
4 2001, 2002, 2003 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
27 #include "inferior.h" /* for inferior_ptid */
29 #include "gdb_assert.h"
30 #include "gdb_string.h"
31 #include "builtin-regs.h"
32 #include "gdb_obstack.h"
33 #include "dummy-frame.h"
34 #include "sentinel-frame.h"
38 #include "frame-unwind.h"
39 #include "frame-base.h"
43 /* Flag to control debugging. */
45 static int frame_debug;
47 /* Flag to indicate whether backtraces should stop at main. */
49 static int backtrace_below_main;
51 /* Return a frame uniq ID that can be used to, later, re-find the
55 get_frame_id (struct frame_info *fi)
63 gdb_assert (!legacy_frame_p (current_gdbarch));
64 /* Find THIS frame's ID. */
65 fi->unwind->this_id (fi->next, &fi->prologue_cache, &fi->id);
67 /* FIXME: cagney/2002-12-18: Instead of this hack, should only
68 store the frame ID in PREV_FRAME. */
69 fi->frame = fi->id.base;
71 return frame_id_build (fi->frame, get_frame_pc (fi));
74 const struct frame_id null_frame_id; /* All zeros. */
77 frame_id_build (CORE_ADDR base, CORE_ADDR func_or_pc)
86 frame_id_p (struct frame_id l)
88 /* The .func can be NULL but the .base cannot. */
93 frame_id_eq (struct frame_id l, struct frame_id r)
95 /* If .base is different, the frames are different. */
98 /* Add a test to check that the frame ID's are for the same function
104 frame_id_inner (struct frame_id l, struct frame_id r)
106 /* Only return non-zero when strictly inner than. Note that, per
107 comment in "frame.h", there is some fuzz here. Frameless
108 functions are not strictly inner than (same .base but different
110 return INNER_THAN (l.base, r.base);
114 frame_find_by_id (struct frame_id id)
116 struct frame_info *frame;
118 /* ZERO denotes the null frame, let the caller decide what to do
119 about it. Should it instead return get_current_frame()? */
120 if (!frame_id_p (id))
123 for (frame = get_current_frame ();
125 frame = get_prev_frame (frame))
127 struct frame_id this = get_frame_id (frame);
128 if (frame_id_eq (id, this))
129 /* An exact match. */
131 if (frame_id_inner (id, this))
134 /* Either, we're not yet gone far enough out along the frame
135 chain (inner(this,id), or we're comparing frameless functions
136 (same .base, different .func, no test available). Struggle
137 on until we've definitly gone to far. */
143 frame_pc_unwind (struct frame_info *this_frame)
145 if (!this_frame->pc_unwind_cache_p)
148 if (gdbarch_unwind_pc_p (current_gdbarch))
150 /* The right way. The `pure' way. The one true way. This
151 method depends solely on the register-unwind code to
152 determine the value of registers in THIS frame, and hence
153 the value of this frame's PC (resume address). A typical
154 implementation is no more than:
156 frame_unwind_register (this_frame, ISA_PC_REGNUM, buf);
157 return extract_address (buf, size of ISA_PC_REGNUM);
159 Note: this method is very heavily dependent on a correct
160 register-unwind implementation, it pays to fix that
161 method first; this method is frame type agnostic, since
162 it only deals with register values, it works with any
163 frame. This is all in stark contrast to the old
164 FRAME_SAVED_PC which would try to directly handle all the
165 different ways that a PC could be unwound. */
166 pc = gdbarch_unwind_pc (current_gdbarch, this_frame);
168 else if (this_frame->level < 0)
170 /* FIXME: cagney/2003-03-06: Old code and and a sentinel
171 frame. Do like was always done. Fetch the PC's value
172 direct from the global registers array (via read_pc).
173 This assumes that this frame belongs to the current
174 global register cache. The assumption is dangerous. */
177 else if (DEPRECATED_FRAME_SAVED_PC_P ())
179 /* FIXME: cagney/2003-03-06: Old code, but not a sentinel
180 frame. Do like was always done. Note that this method,
181 unlike unwind_pc(), tries to handle all the different
182 frame cases directly. It fails. */
183 pc = DEPRECATED_FRAME_SAVED_PC (this_frame);
186 internal_error (__FILE__, __LINE__, "No gdbarch_unwind_pc method");
187 this_frame->pc_unwind_cache = pc;
188 this_frame->pc_unwind_cache_p = 1;
190 return this_frame->pc_unwind_cache;
194 do_frame_unwind_register (void *src, int regnum, void *buf)
196 frame_unwind_register (src, regnum, buf);
201 frame_pop (struct frame_info *this_frame)
203 struct regcache *scratch_regcache;
204 struct cleanup *cleanups;
206 if (DEPRECATED_POP_FRAME_P ())
208 /* A legacy architecture that has implemented a custom pop
209 function. All new architectures should instead be using the
210 generic code below. */
211 DEPRECATED_POP_FRAME;
215 /* Make a copy of all the register values unwound from this
216 frame. Save them in a scratch buffer so that there isn't a
217 race betweening trying to extract the old values from the
218 current_regcache while, at the same time writing new values
219 into that same cache. */
220 struct regcache *scratch = regcache_xmalloc (current_gdbarch);
221 struct cleanup *cleanups = make_cleanup_regcache_xfree (scratch);
222 regcache_save (scratch, do_frame_unwind_register, this_frame);
223 /* FIXME: cagney/2003-03-16: It should be possible to tell the
224 target's register cache that it is about to be hit with a
225 burst register transfer and that the sequence of register
226 writes should be batched. The pair target_prepare_to_store()
227 and target_store_registers() kind of suggest this
228 functionality. Unfortunatly, they don't implement it. Their
229 lack of a formal definition can lead to targets writing back
230 bogus values (arguably a bug in the target code mind). */
231 /* Now copy those saved registers into the current regcache.
232 Here, regcache_cpy() calls regcache_restore(). */
233 regcache_cpy (current_regcache, scratch);
234 do_cleanups (cleanups);
236 /* We've made right mess of GDB's local state, just discard
238 flush_cached_frames ();
242 frame_register_unwind (struct frame_info *frame, int regnum,
243 int *optimizedp, enum lval_type *lvalp,
244 CORE_ADDR *addrp, int *realnump, void *bufferp)
246 struct frame_unwind_cache *cache;
248 /* Require all but BUFFERP to be valid. A NULL BUFFERP indicates
249 that the value proper does not need to be fetched. */
250 gdb_assert (optimizedp != NULL);
251 gdb_assert (lvalp != NULL);
252 gdb_assert (addrp != NULL);
253 gdb_assert (realnump != NULL);
254 /* gdb_assert (bufferp != NULL); */
256 /* NOTE: cagney/2002-11-27: A program trying to unwind a NULL frame
257 is broken. There is always a frame. If there, for some reason,
258 isn't, there is some pretty busted code as it should have
259 detected the problem before calling here. */
260 gdb_assert (frame != NULL);
262 /* Ask this frame to unwind its register. See comment in
263 "frame-unwind.h" for why NEXT frame and this unwind cace are
265 frame->unwind->prev_register (frame->next, &frame->prologue_cache, regnum,
266 optimizedp, lvalp, addrp, realnump, bufferp);
271 frame_register (struct frame_info *frame, int regnum,
272 int *optimizedp, enum lval_type *lvalp,
273 CORE_ADDR *addrp, int *realnump, void *bufferp)
275 /* Require all but BUFFERP to be valid. A NULL BUFFERP indicates
276 that the value proper does not need to be fetched. */
277 gdb_assert (optimizedp != NULL);
278 gdb_assert (lvalp != NULL);
279 gdb_assert (addrp != NULL);
280 gdb_assert (realnump != NULL);
281 /* gdb_assert (bufferp != NULL); */
283 /* Ulgh! Old code that, for lval_register, sets ADDRP to the offset
284 of the register in the register cache. It should instead return
285 the REGNUM corresponding to that register. Translate the . */
286 if (DEPRECATED_GET_SAVED_REGISTER_P ())
288 DEPRECATED_GET_SAVED_REGISTER (bufferp, optimizedp, addrp, frame,
290 /* Compute the REALNUM if the caller wants it. */
291 if (*lvalp == lval_register)
294 for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
296 if (*addrp == register_offset_hack (current_gdbarch, regnum))
302 internal_error (__FILE__, __LINE__,
303 "Failed to compute the register number corresponding"
304 " to 0x%s", paddr_d (*addrp));
310 /* Obtain the register value by unwinding the register from the next
311 (more inner frame). */
312 gdb_assert (frame != NULL && frame->next != NULL);
313 frame_register_unwind (frame->next, regnum, optimizedp, lvalp, addrp,
318 frame_unwind_register (struct frame_info *frame, int regnum, void *buf)
324 frame_register_unwind (frame, regnum, &optimized, &lval, &addr,
329 frame_unwind_signed_register (struct frame_info *frame, int regnum,
332 void *buf = alloca (MAX_REGISTER_RAW_SIZE);
333 frame_unwind_register (frame, regnum, buf);
334 (*val) = extract_signed_integer (buf, REGISTER_VIRTUAL_SIZE (regnum));
338 frame_unwind_unsigned_register (struct frame_info *frame, int regnum,
341 void *buf = alloca (MAX_REGISTER_RAW_SIZE);
342 frame_unwind_register (frame, regnum, buf);
343 (*val) = extract_unsigned_integer (buf, REGISTER_VIRTUAL_SIZE (regnum));
347 frame_read_register (struct frame_info *frame, int regnum, void *buf)
349 gdb_assert (frame != NULL && frame->next != NULL);
350 frame_unwind_register (frame->next, regnum, buf);
354 frame_read_unsigned_register (struct frame_info *frame, int regnum,
357 /* NOTE: cagney/2002-10-31: There is a bit of dogma here - there is
358 always a frame. Both this, and the equivalent
359 frame_read_signed_register() function, can only be called with a
360 valid frame. If, for some reason, this function is called
361 without a frame then the problem isn't here, but rather in the
362 caller. It should of first created a frame and then passed that
364 /* NOTE: cagney/2002-10-31: As a side bar, keep in mind that the
365 ``current_frame'' should not be treated as a special case. While
366 ``get_next_frame (current_frame) == NULL'' currently holds, it
367 should, as far as possible, not be relied upon. In the future,
368 ``get_next_frame (current_frame)'' may instead simply return a
369 normal frame object that simply always gets register values from
370 the register cache. Consequently, frame code should try to avoid
371 tests like ``if get_next_frame() == NULL'' and instead just rely
372 on recursive frame calls (like the below code) when manipulating
374 gdb_assert (frame != NULL && frame->next != NULL);
375 frame_unwind_unsigned_register (frame->next, regnum, val);
379 frame_read_signed_register (struct frame_info *frame, int regnum,
382 /* See note above in frame_read_unsigned_register(). */
383 gdb_assert (frame != NULL && frame->next != NULL);
384 frame_unwind_signed_register (frame->next, regnum, val);
388 generic_unwind_get_saved_register (char *raw_buffer,
391 struct frame_info *frame,
393 enum lval_type *lvalp)
398 enum lval_type lvalx;
400 if (!target_has_registers)
401 error ("No registers.");
403 /* Keep things simple, ensure that all the pointers (except valuep)
405 if (optimizedp == NULL)
406 optimizedp = &optimizedx;
412 gdb_assert (frame != NULL && frame->next != NULL);
413 frame_register_unwind (frame->next, regnum, optimizedp, lvalp, addrp,
414 &realnumx, raw_buffer);
417 /* frame_register_read ()
419 Find and return the value of REGNUM for the specified stack frame.
420 The number of bytes copied is REGISTER_RAW_SIZE (REGNUM).
422 Returns 0 if the register value could not be found. */
425 frame_register_read (struct frame_info *frame, int regnum, void *myaddr)
431 frame_register (frame, regnum, &optimized, &lval, &addr, &realnum, myaddr);
433 /* FIXME: cagney/2002-05-15: This test, is just bogus.
435 It indicates that the target failed to supply a value for a
436 register because it was "not available" at this time. Problem
437 is, the target still has the register and so get saved_register()
438 may be returning a value saved on the stack. */
440 if (register_cached (regnum) < 0)
441 return 0; /* register value not available */
447 /* Map between a frame register number and its name. A frame register
448 space is a superset of the cooked register space --- it also
449 includes builtin registers. */
452 frame_map_name_to_regnum (const char *name, int len)
459 /* Search register name space. */
460 for (i = 0; i < NUM_REGS + NUM_PSEUDO_REGS; i++)
461 if (REGISTER_NAME (i) && len == strlen (REGISTER_NAME (i))
462 && strncmp (name, REGISTER_NAME (i), len) == 0)
467 /* Try builtin registers. */
468 i = builtin_reg_map_name_to_regnum (name, len);
471 /* A builtin register doesn't fall into the architecture's
473 gdb_assert (i >= NUM_REGS + NUM_PSEUDO_REGS);
481 frame_map_regnum_to_name (int regnum)
485 if (regnum < NUM_REGS + NUM_PSEUDO_REGS)
486 return REGISTER_NAME (regnum);
487 return builtin_reg_map_regnum_to_name (regnum);
490 /* Create a sentinel frame. */
493 create_sentinel_frame (struct regcache *regcache)
495 struct frame_info *frame = FRAME_OBSTACK_ZALLOC (struct frame_info);
496 frame->type = NORMAL_FRAME;
498 /* Explicitly initialize the sentinel frame's cache. Provide it
499 with the underlying regcache. In the future additional
500 information, such as the frame's thread will be added. */
501 frame->prologue_cache = sentinel_frame_cache (regcache);
502 /* For the moment there is only one sentinel frame implementation. */
503 frame->unwind = sentinel_frame_unwind;
504 /* Link this frame back to itself. The frame is self referential
505 (the unwound PC is the same as the pc), so make it so. */
507 /* Always unwind the PC as part of creating this frame. This
508 ensures that the frame's PC points at something valid. */
509 /* FIXME: cagney/2003-01-10: Problem here. Unwinding a sentinel
510 frame's PC may require information such as the frame's thread's
511 stop reason. Is it possible to get to that? */
512 /* FIXME: cagney/2003-04-04: Once ->pc is eliminated, this
513 assignment can go away. */
514 frame->pc = frame_pc_unwind (frame);
515 /* Make the sentinel frame's ID valid, but invalid. That way all
516 comparisons with it should fail. */
518 frame->id = null_frame_id;
522 /* Info about the innermost stack frame (contents of FP register) */
524 static struct frame_info *current_frame;
526 /* Cache for frame addresses already read by gdb. Valid only while
527 inferior is stopped. Control variables for the frame cache should
528 be local to this module. */
530 static struct obstack frame_cache_obstack;
533 frame_obstack_zalloc (unsigned long size)
535 void *data = obstack_alloc (&frame_cache_obstack, size);
536 memset (data, 0, size);
541 frame_saved_regs_zalloc (struct frame_info *fi)
543 fi->saved_regs = (CORE_ADDR *)
544 frame_obstack_zalloc (SIZEOF_FRAME_SAVED_REGS);
545 return fi->saved_regs;
549 get_frame_saved_regs (struct frame_info *fi)
551 return fi->saved_regs;
554 /* Return the innermost (currently executing) stack frame. This is
555 split into two functions. The function unwind_to_current_frame()
556 is wrapped in catch exceptions so that, even when the unwind of the
557 sentinel frame fails, the function still returns a stack frame. */
560 unwind_to_current_frame (struct ui_out *ui_out, void *args)
562 struct frame_info *frame = get_prev_frame (args);
563 /* A sentinel frame can fail to unwind, eg, because it's PC value
564 lands in somewhere like start. */
567 current_frame = frame;
572 get_current_frame (void)
574 /* First check, and report, the lack of registers. Having GDB
575 report "No stack!" or "No memory" when the target doesn't even
576 have registers is very confusing. Besides, "printcmd.exp"
577 explicitly checks that ``print $pc'' with no registers prints "No
579 if (!target_has_registers)
580 error ("No registers.");
581 if (!target_has_stack)
583 if (!target_has_memory)
584 error ("No memory.");
585 if (current_frame == NULL)
587 struct frame_info *sentinel_frame =
588 create_sentinel_frame (current_regcache);
589 if (catch_exceptions (uiout, unwind_to_current_frame, sentinel_frame,
590 NULL, RETURN_MASK_ERROR) != 0)
592 /* Oops! Fake a current frame? Is this useful? It has a PC
593 of zero, for instance. */
594 current_frame = sentinel_frame;
597 return current_frame;
600 /* The "selected" stack frame is used by default for local and arg
601 access. May be zero, for no selected frame. */
603 struct frame_info *deprecated_selected_frame;
605 /* Return the selected frame. Always non-null (unless there isn't an
606 inferior sufficient for creating a frame) in which case an error is
610 get_selected_frame (void)
612 if (deprecated_selected_frame == NULL)
613 /* Hey! Don't trust this. It should really be re-finding the
614 last selected frame of the currently selected thread. This,
615 though, is better than nothing. */
616 select_frame (get_current_frame ());
617 /* There is always a frame. */
618 gdb_assert (deprecated_selected_frame != NULL);
619 return deprecated_selected_frame;
622 /* Select frame FI (or NULL - to invalidate the current frame). */
625 select_frame (struct frame_info *fi)
627 register struct symtab *s;
629 deprecated_selected_frame = fi;
630 /* NOTE: cagney/2002-05-04: FI can be NULL. This occures when the
631 frame is being invalidated. */
632 if (selected_frame_level_changed_hook)
633 selected_frame_level_changed_hook (frame_relative_level (fi));
635 /* FIXME: kseitz/2002-08-28: It would be nice to call
636 selected_frame_level_changed_event right here, but due to limitations
637 in the current interfaces, we would end up flooding UIs with events
638 because select_frame is used extensively internally.
640 Once we have frame-parameterized frame (and frame-related) commands,
641 the event notification can be moved here, since this function will only
642 be called when the users selected frame is being changed. */
644 /* Ensure that symbols for this frame are read in. Also, determine the
645 source language of this frame, and switch to it if desired. */
648 s = find_pc_symtab (get_frame_pc (fi));
650 && s->language != current_language->la_language
651 && s->language != language_unknown
652 && language_mode == language_mode_auto)
654 set_language (s->language);
659 /* Return the register saved in the simplistic ``saved_regs'' cache.
660 If the value isn't here AND a value is needed, try the next inner
664 legacy_saved_regs_prev_register (struct frame_info *next_frame,
665 void **this_prologue_cache,
666 int regnum, int *optimizedp,
667 enum lval_type *lvalp, CORE_ADDR *addrp,
668 int *realnump, void *bufferp)
670 /* HACK: New code is passed the next frame and this cache.
671 Unfortunatly, old code expects this frame. Since this is a
672 backward compatibility hack, cheat by walking one level along the
673 prologue chain to the frame the old code expects.
675 Do not try this at home. Professional driver, closed course. */
676 struct frame_info *frame = next_frame->prev;
677 gdb_assert (frame != NULL);
679 /* Only (older) architectures that implement the
680 DEPRECATED_FRAME_INIT_SAVED_REGS method should be using this
682 gdb_assert (DEPRECATED_FRAME_INIT_SAVED_REGS_P ());
684 /* Load the saved_regs register cache. */
685 if (get_frame_saved_regs (frame) == NULL)
686 DEPRECATED_FRAME_INIT_SAVED_REGS (frame);
688 if (get_frame_saved_regs (frame) != NULL
689 && get_frame_saved_regs (frame)[regnum] != 0)
691 if (regnum == SP_REGNUM)
693 /* SP register treated specially. */
699 store_address (bufferp, REGISTER_RAW_SIZE (regnum),
700 get_frame_saved_regs (frame)[regnum]);
704 /* Any other register is saved in memory, fetch it but cache
705 a local copy of its value. */
707 *lvalp = lval_memory;
708 *addrp = get_frame_saved_regs (frame)[regnum];
713 /* Save each register value, as it is read in, in a
714 frame based cache. */
715 void **regs = (*this_prologue_cache);
718 int sizeof_cache = ((NUM_REGS + NUM_PSEUDO_REGS)
720 regs = frame_obstack_zalloc (sizeof_cache);
721 (*this_prologue_cache) = regs;
723 if (regs[regnum] == NULL)
726 = frame_obstack_zalloc (REGISTER_RAW_SIZE (regnum));
727 read_memory (get_frame_saved_regs (frame)[regnum], regs[regnum],
728 REGISTER_RAW_SIZE (regnum));
730 memcpy (bufferp, regs[regnum], REGISTER_RAW_SIZE (regnum));
732 /* Read the value in from memory. */
733 read_memory (get_frame_saved_regs (frame)[regnum], bufferp,
734 REGISTER_RAW_SIZE (regnum));
741 /* No luck. Assume this and the next frame have the same register
742 value. Pass the unwind request down the frame chain to the next
743 frame. Hopefully that frame will find the register's location. */
744 frame_register_unwind (next_frame, regnum, optimizedp, lvalp, addrp,
749 legacy_saved_regs_this_id (struct frame_info *next_frame,
750 void **this_prologue_cache,
757 if (frame_relative_level (next_frame) < 0)
759 /* FIXME: cagney/2003-03-14: We've got the extra special case of
760 unwinding a sentinel frame, the PC of which is pointing at a
761 stack dummy. Fake up the dummy frame's ID using the same
762 sequence as is found a traditional unwinder. */
763 (*id) = frame_id_build (read_fp (), read_pc ());
767 /* Start out by assuming it's NULL. */
768 (*id) = null_frame_id;
770 if (frame_relative_level (next_frame) <= 0)
771 /* FIXME: 2002-11-09: Frameless functions can occure anywhere in
772 the frame chain, not just the inner most frame! The generic,
773 per-architecture, frame code should handle this and the below
774 should simply be removed. */
775 fromleaf = FRAMELESS_FUNCTION_INVOCATION (next_frame);
780 /* A frameless inner-most frame. The `FP' (which isn't an
781 architecture frame-pointer register!) of the caller is the same
783 /* FIXME: 2002-11-09: There isn't any reason to special case this
784 edge condition. Instead the per-architecture code should hande
786 base = get_frame_base (next_frame);
789 /* Two macros defined in tm.h specify the machine-dependent
790 actions to be performed here.
792 First, get the frame's chain-pointer.
794 If that is zero, the frame is the outermost frame or a leaf
795 called by the outermost frame. This means that if start
796 calls main without a frame, we'll return 0 (which is fine
799 Nope; there's a problem. This also returns when the current
800 routine is a leaf of main. This is unacceptable. We move
801 this to after the ffi test; I'd rather have backtraces from
802 start go curfluy than have an abort called from main not show
804 gdb_assert (DEPRECATED_FRAME_CHAIN_P ());
805 base = DEPRECATED_FRAME_CHAIN (next_frame);
807 if (!frame_chain_valid (base, next_frame))
813 /* FIXME: cagney/2002-06-08: This should probably return the frame's
814 function and not the PC (a.k.a. resume address). */
815 pc = frame_pc_unwind (next_frame);
816 (*id) = frame_id_build (base, pc);
819 const struct frame_unwind legacy_saved_regs_unwinder = {
820 /* Not really. It gets overridden by legacy_get_prev_frame. */
822 legacy_saved_regs_this_id,
823 legacy_saved_regs_prev_register
825 const struct frame_unwind *legacy_saved_regs_unwind = &legacy_saved_regs_unwinder;
828 /* Function: deprecated_generic_get_saved_register
829 Find register number REGNUM relative to FRAME and put its (raw,
830 target format) contents in *RAW_BUFFER.
832 Set *OPTIMIZED if the variable was optimized out (and thus can't be
833 fetched). Note that this is never set to anything other than zero
834 in this implementation.
836 Set *LVAL to lval_memory, lval_register, or not_lval, depending on
837 whether the value was fetched from memory, from a register, or in a
838 strange and non-modifiable way (e.g. a frame pointer which was
839 calculated rather than fetched). We will use not_lval for values
840 fetched from generic dummy frames.
842 Set *ADDRP to the address, either in memory or as a REGISTER_BYTE
843 offset into the registers array. If the value is stored in a dummy
844 frame, set *ADDRP to zero.
846 The argument RAW_BUFFER must point to aligned memory. */
849 deprecated_generic_get_saved_register (char *raw_buffer, int *optimized,
851 struct frame_info *frame, int regnum,
852 enum lval_type *lval)
854 if (!target_has_registers)
855 error ("No registers.");
857 gdb_assert (DEPRECATED_FRAME_INIT_SAVED_REGS_P ());
859 /* Normal systems don't optimize out things with register numbers. */
860 if (optimized != NULL)
863 if (addrp) /* default assumption: not found in memory */
866 /* Note: since the current frame's registers could only have been
867 saved by frames INTERIOR TO the current frame, we skip examining
868 the current frame itself: otherwise, we would be getting the
869 previous frame's registers which were saved by the current frame. */
873 for (frame = get_next_frame (frame);
874 frame_relative_level (frame) >= 0;
875 frame = get_next_frame (frame))
877 if (get_frame_type (frame) == DUMMY_FRAME)
879 if (lval) /* found it in a CALL_DUMMY frame */
882 /* FIXME: cagney/2002-06-26: This should be via the
883 gdbarch_register_read() method so that it, on the
884 fly, constructs either a raw or pseudo register
885 from the raw register cache. */
887 (generic_find_dummy_frame (get_frame_pc (frame),
888 get_frame_base (frame)),
893 DEPRECATED_FRAME_INIT_SAVED_REGS (frame);
894 if (get_frame_saved_regs (frame) != NULL
895 && get_frame_saved_regs (frame)[regnum] != 0)
897 if (lval) /* found it saved on the stack */
899 if (regnum == SP_REGNUM)
901 if (raw_buffer) /* SP register treated specially */
902 store_address (raw_buffer, REGISTER_RAW_SIZE (regnum),
903 get_frame_saved_regs (frame)[regnum]);
907 if (addrp) /* any other register */
908 *addrp = get_frame_saved_regs (frame)[regnum];
910 read_memory (get_frame_saved_regs (frame)[regnum], raw_buffer,
911 REGISTER_RAW_SIZE (regnum));
918 /* If we get thru the loop to this point, it means the register was
919 not saved in any frame. Return the actual live-register value. */
921 if (lval) /* found it in a live register */
922 *lval = lval_register;
924 *addrp = REGISTER_BYTE (regnum);
926 deprecated_read_register_gen (regnum, raw_buffer);
929 /* Determine the frame's type based on its PC. */
931 static enum frame_type
932 frame_type_from_pc (CORE_ADDR pc)
934 /* FIXME: cagney/2002-11-24: Can't yet directly call
935 pc_in_dummy_frame() as some architectures don't set
936 PC_IN_CALL_DUMMY() to generic_pc_in_call_dummy() (remember the
937 latter is implemented by simply calling pc_in_dummy_frame). */
938 if (DEPRECATED_USE_GENERIC_DUMMY_FRAMES
939 && DEPRECATED_PC_IN_CALL_DUMMY (pc, 0, 0))
944 find_pc_partial_function (pc, &name, NULL, NULL);
945 if (PC_IN_SIGTRAMP (pc, name))
946 return SIGTRAMP_FRAME;
952 /* Create an arbitrary (i.e. address specified by user) or innermost frame.
953 Always returns a non-NULL value. */
956 create_new_frame (CORE_ADDR addr, CORE_ADDR pc)
958 struct frame_info *fi;
960 fi = frame_obstack_zalloc (sizeof (struct frame_info));
962 fi->next = create_sentinel_frame (current_regcache);
964 /* Select/initialize both the unwind function and the frame's type
966 fi->unwind = frame_unwind_find_by_pc (current_gdbarch, fi->pc);
967 if (fi->unwind->type != UNKNOWN_FRAME)
968 fi->type = fi->unwind->type;
970 fi->type = frame_type_from_pc (pc);
972 deprecated_update_frame_base_hack (fi, addr);
973 deprecated_update_frame_pc_hack (fi, pc);
975 if (DEPRECATED_INIT_EXTRA_FRAME_INFO_P ())
976 DEPRECATED_INIT_EXTRA_FRAME_INFO (0, fi);
981 /* Return the frame that THIS_FRAME calls (NULL if THIS_FRAME is the
982 innermost frame). Be careful to not fall off the bottom of the
983 frame chain and onto the sentinel frame. */
986 get_next_frame (struct frame_info *this_frame)
988 if (this_frame->level > 0)
989 return this_frame->next;
994 /* Flush the entire frame cache. */
997 flush_cached_frames (void)
999 /* Since we can't really be sure what the first object allocated was */
1000 obstack_free (&frame_cache_obstack, 0);
1001 obstack_init (&frame_cache_obstack);
1003 current_frame = NULL; /* Invalidate cache */
1004 select_frame (NULL);
1005 annotate_frames_invalid ();
1008 /* Flush the frame cache, and start a new one if necessary. */
1011 reinit_frame_cache (void)
1013 flush_cached_frames ();
1015 /* FIXME: The inferior_ptid test is wrong if there is a corefile. */
1016 if (PIDGET (inferior_ptid) != 0)
1018 select_frame (get_current_frame ());
1022 /* Create the previous frame using the deprecated methods
1023 INIT_EXTRA_INFO, INIT_FRAME_PC and INIT_FRAME_PC_FIRST. */
1025 static struct frame_info *
1026 legacy_get_prev_frame (struct frame_info *this_frame)
1028 CORE_ADDR address = 0;
1029 struct frame_info *prev;
1032 /* Allocate the new frame but do not wire it in to the frame chain.
1033 Some (bad) code in INIT_FRAME_EXTRA_INFO tries to look along
1034 frame->next to pull some fancy tricks (of course such code is, by
1035 definition, recursive). Try to prevent it.
1037 There is no reason to worry about memory leaks, should the
1038 remainder of the function fail. The allocated memory will be
1039 quickly reclaimed when the frame cache is flushed, and the `we've
1040 been here before' check, in get_prev_frame will stop repeated
1041 memory allocation calls. */
1042 prev = FRAME_OBSTACK_ZALLOC (struct frame_info);
1043 prev->level = this_frame->level + 1;
1045 /* NOTE: cagney/2002-11-18: Should have been correctly setting the
1046 frame's type here, before anything else, and not last, at the
1047 bottom of this function. The various
1048 DEPRECATED_INIT_EXTRA_FRAME_INFO, DEPRECATED_INIT_FRAME_PC,
1049 DEPRECATED_INIT_FRAME_PC_FIRST and
1050 DEPRECATED_FRAME_INIT_SAVED_REGS methods are full of work-arounds
1051 that handle the frame not being correctly set from the start.
1052 Unfortunatly those same work-arounds rely on the type defaulting
1053 to NORMAL_FRAME. Ulgh! The new frame code does not have this
1055 prev->type = UNKNOWN_FRAME;
1057 /* A legacy frame's ID is always computed here. Mark it as valid. */
1060 /* Handle sentinel frame unwind as a special case. */
1061 if (this_frame->level < 0)
1063 /* Try to unwind the PC. If that doesn't work, assume we've reached
1064 the oldest frame and simply return. Is there a better sentinal
1065 value? The unwound PC value is then used to initialize the new
1066 previous frame's type.
1068 Note that the pc-unwind is intentionally performed before the
1069 frame chain. This is ok since, for old targets, both
1070 frame_pc_unwind (nee, DEPRECATED_FRAME_SAVED_PC) and
1071 DEPRECATED_FRAME_CHAIN()) assume THIS_FRAME's data structures
1072 have already been initialized (using
1073 DEPRECATED_INIT_EXTRA_FRAME_INFO) and hence the call order
1076 By unwinding the PC first, it becomes possible to, in the case of
1077 a dummy frame, avoid also unwinding the frame ID. This is
1078 because (well ignoring the PPC) a dummy frame can be located
1079 using THIS_FRAME's frame ID. */
1081 deprecated_update_frame_pc_hack (prev, frame_pc_unwind (this_frame));
1082 if (get_frame_pc (prev) == 0)
1084 /* The allocated PREV_FRAME will be reclaimed when the frame
1085 obstack is next purged. */
1087 fprintf_unfiltered (gdb_stdlog,
1088 "Outermost frame - unwound PC zero\n");
1092 /* Set the unwind functions based on that identified PC. Ditto
1093 for the "type" but strongly prefer the unwinder's frame type. */
1094 prev->unwind = frame_unwind_find_by_pc (current_gdbarch, prev->pc);
1095 if (prev->unwind->type == UNKNOWN_FRAME)
1096 prev->type = frame_type_from_pc (prev->pc);
1098 prev->type = prev->unwind->type;
1100 /* Find the prev's frame's ID. */
1101 if (prev->type == DUMMY_FRAME
1102 && gdbarch_unwind_dummy_id_p (current_gdbarch))
1104 /* When unwinding a normal frame, the stack structure is
1105 determined by analyzing the frame's function's code (be
1106 it using brute force prologue analysis, or the dwarf2
1107 CFI). In the case of a dummy frame, that simply isn't
1108 possible. The The PC is either the program entry point,
1109 or some random address on the stack. Trying to use that
1110 PC to apply standard frame ID unwind techniques is just
1111 asking for trouble. */
1112 /* Assume call_function_by_hand(), via SAVE_DUMMY_FRAME_TOS,
1113 previously saved the dummy frame's ID. Things only work
1114 if the two return the same value. */
1115 gdb_assert (SAVE_DUMMY_FRAME_TOS_P ());
1116 /* Use an architecture specific method to extract the prev's
1117 dummy ID from the next frame. Note that this method uses
1118 frame_register_unwind to obtain the register values
1119 needed to determine the dummy frame's ID. */
1120 prev->id = gdbarch_unwind_dummy_id (current_gdbarch, this_frame);
1124 /* We're unwinding a sentinel frame, the PC of which is
1125 pointing at a stack dummy. Fake up the dummy frame's ID
1126 using the same sequence as is found a traditional
1127 unwinder. Once all architectures supply the
1128 unwind_dummy_id method, this code can go away. */
1129 prev->id = frame_id_build (read_fp (), read_pc ());
1132 /* Check that the unwound ID is valid. */
1133 if (!frame_id_p (prev->id))
1136 fprintf_unfiltered (gdb_stdlog,
1137 "Outermost legacy sentinel frame - unwound frame ID invalid\n");
1141 /* Check that the new frame isn't inner to (younger, below,
1142 next) the old frame. If that happens the frame unwind is
1144 /* FIXME: cagney/2003-02-25: Ignore the sentinel frame since
1145 that doesn't have a valid frame ID. Should instead set the
1146 sentinel frame's frame ID to a `sentinel'. Leave it until
1147 after the switch to storing the frame ID, instead of the
1148 frame base, in the frame object. */
1150 /* FIXME: cagney/2002-12-18: Instead of this hack, should only
1151 store the frame ID in PREV_FRAME. */
1152 /* FIXME: cagney/2003-04-04: Once ->frame is eliminated, this
1153 assignment can go. */
1154 prev->frame = prev->id.base;
1157 this_frame->prev = prev;
1158 prev->next = this_frame;
1160 /* FIXME: cagney/2002-01-19: This call will go away. Instead of
1161 initializing extra info, all frames will use the frame_cache
1162 (passed to the unwind functions) to store additional frame
1163 info. Unfortunatly legacy targets can't use
1164 legacy_get_prev_frame() to unwind the sentinel frame and,
1165 consequently, are forced to take this code path and rely on
1166 the below call to DEPRECATED_INIT_EXTRA_FRAME_INFO to
1167 initialize the inner-most frame. */
1168 if (DEPRECATED_INIT_EXTRA_FRAME_INFO_P ())
1170 DEPRECATED_INIT_EXTRA_FRAME_INFO (0, prev);
1175 /* This code only works on normal frames. A sentinel frame, where
1176 the level is -1, should never reach this code. */
1177 gdb_assert (this_frame->level >= 0);
1179 /* On some machines it is possible to call a function without
1180 setting up a stack frame for it. On these machines, we
1181 define this macro to take two args; a frameinfo pointer
1182 identifying a frame and a variable to set or clear if it is
1183 or isn't leafless. */
1185 /* Still don't want to worry about this except on the innermost
1186 frame. This macro will set FROMLEAF if THIS_FRAME is a frameless
1187 function invocation. */
1188 if (this_frame->level == 0)
1189 /* FIXME: 2002-11-09: Frameless functions can occure anywhere in
1190 the frame chain, not just the inner most frame! The generic,
1191 per-architecture, frame code should handle this and the below
1192 should simply be removed. */
1193 fromleaf = FRAMELESS_FUNCTION_INVOCATION (this_frame);
1198 /* A frameless inner-most frame. The `FP' (which isn't an
1199 architecture frame-pointer register!) of the caller is the same
1201 /* FIXME: 2002-11-09: There isn't any reason to special case this
1202 edge condition. Instead the per-architecture code should hande
1204 address = get_frame_base (this_frame);
1207 /* Two macros defined in tm.h specify the machine-dependent
1208 actions to be performed here.
1210 First, get the frame's chain-pointer.
1212 If that is zero, the frame is the outermost frame or a leaf
1213 called by the outermost frame. This means that if start
1214 calls main without a frame, we'll return 0 (which is fine
1217 Nope; there's a problem. This also returns when the current
1218 routine is a leaf of main. This is unacceptable. We move
1219 this to after the ffi test; I'd rather have backtraces from
1220 start go curfluy than have an abort called from main not show
1222 gdb_assert (DEPRECATED_FRAME_CHAIN_P ());
1223 address = DEPRECATED_FRAME_CHAIN (this_frame);
1225 if (!frame_chain_valid (address, this_frame))
1231 /* Link in the already allocated prev frame. */
1232 this_frame->prev = prev;
1233 prev->next = this_frame;
1234 deprecated_update_frame_base_hack (prev, address);
1236 /* This change should not be needed, FIXME! We should determine
1237 whether any targets *need* DEPRECATED_INIT_FRAME_PC to happen
1238 after DEPRECATED_INIT_EXTRA_FRAME_INFO and come up with a simple
1239 way to express what goes on here.
1241 DEPRECATED_INIT_EXTRA_FRAME_INFO is called from two places:
1242 create_new_frame (where the PC is already set up) and here (where
1243 it isn't). DEPRECATED_INIT_FRAME_PC is only called from here,
1244 always after DEPRECATED_INIT_EXTRA_FRAME_INFO.
1246 The catch is the MIPS, where DEPRECATED_INIT_EXTRA_FRAME_INFO
1247 requires the PC value (which hasn't been set yet). Some other
1248 machines appear to require DEPRECATED_INIT_EXTRA_FRAME_INFO
1249 before they can do DEPRECATED_INIT_FRAME_PC. Phoo.
1251 We shouldn't need DEPRECATED_INIT_FRAME_PC_FIRST to add more
1252 complication to an already overcomplicated part of GDB.
1255 Assuming that some machines need DEPRECATED_INIT_FRAME_PC after
1256 DEPRECATED_INIT_EXTRA_FRAME_INFO, one possible scheme:
1258 SETUP_INNERMOST_FRAME(): Default version is just create_new_frame
1259 (read_fp ()), read_pc ()). Machines with extra frame info would
1260 do that (or the local equivalent) and then set the extra fields.
1262 SETUP_ARBITRARY_FRAME(argc, argv): Only change here is that
1263 create_new_frame would no longer init extra frame info;
1264 SETUP_ARBITRARY_FRAME would have to do that.
1266 INIT_PREV_FRAME(fromleaf, prev) Replace
1267 DEPRECATED_INIT_EXTRA_FRAME_INFO and DEPRECATED_INIT_FRAME_PC.
1268 This should also return a flag saying whether to keep the new
1269 frame, or whether to discard it, because on some machines (e.g.
1270 mips) it is really awkward to have DEPRECATED_FRAME_CHAIN_VALID
1271 called BEFORE DEPRECATED_INIT_EXTRA_FRAME_INFO (there is no good
1272 way to get information deduced in DEPRECATED_FRAME_CHAIN_VALID
1273 into the extra fields of the new frame). std_frame_pc(fromleaf,
1276 This is the default setting for INIT_PREV_FRAME. It just does
1277 what the default DEPRECATED_INIT_FRAME_PC does. Some machines
1278 will call it from INIT_PREV_FRAME (either at the beginning, the
1279 end, or in the middle). Some machines won't use it.
1283 /* NOTE: cagney/2002-11-09: Just ignore the above! There is no
1284 reason for things to be this complicated.
1286 The trick is to assume that there is always a frame. Instead of
1287 special casing the inner-most frame, create fake frame
1288 (containing the hardware registers) that is inner to the
1289 user-visible inner-most frame (...) and then unwind from that.
1290 That way architecture code can use use the standard
1291 frame_XX_unwind() functions and not differentiate between the
1292 inner most and any other case.
1294 Since there is always a frame to unwind from, there is always
1295 somewhere (THIS_FRAME) to store all the info needed to construct
1296 a new (previous) frame without having to first create it. This
1297 means that the convolution below - needing to carefully order a
1298 frame's initialization - isn't needed.
1300 The irony here though, is that DEPRECATED_FRAME_CHAIN(), at least
1301 for a more up-to-date architecture, always calls
1302 FRAME_SAVED_PC(), and FRAME_SAVED_PC() computes the PC but
1303 without first needing the frame! Instead of the convolution
1304 below, we could have simply called FRAME_SAVED_PC() and been done
1305 with it! Note that FRAME_SAVED_PC() is being superseed by
1306 frame_pc_unwind() and that function does have somewhere to cache
1309 if (DEPRECATED_INIT_FRAME_PC_FIRST_P ())
1310 deprecated_update_frame_pc_hack (prev,
1311 DEPRECATED_INIT_FRAME_PC_FIRST (fromleaf,
1314 if (DEPRECATED_INIT_EXTRA_FRAME_INFO_P ())
1315 DEPRECATED_INIT_EXTRA_FRAME_INFO (fromleaf, prev);
1317 /* This entry is in the frame queue now, which is good since
1318 FRAME_SAVED_PC may use that queue to figure out its value (see
1319 tm-sparc.h). We want the pc saved in the inferior frame. */
1320 if (DEPRECATED_INIT_FRAME_PC_P ())
1321 deprecated_update_frame_pc_hack (prev,
1322 DEPRECATED_INIT_FRAME_PC (fromleaf,
1325 /* If ->frame and ->pc are unchanged, we are in the process of
1326 getting ourselves into an infinite backtrace. Some architectures
1327 check this in DEPRECATED_FRAME_CHAIN or thereabouts, but it seems
1328 like there is no reason this can't be an architecture-independent
1330 if (get_frame_base (prev) == get_frame_base (this_frame)
1331 && get_frame_pc (prev) == get_frame_pc (this_frame))
1333 this_frame->prev = NULL;
1334 obstack_free (&frame_cache_obstack, prev);
1338 /* Initialize the code used to unwind the frame PREV based on the PC
1339 (and probably other architectural information). The PC lets you
1340 check things like the debug info at that point (dwarf2cfi?) and
1341 use that to decide how the frame should be unwound. */
1342 prev->unwind = frame_unwind_find_by_pc (current_gdbarch,
1343 get_frame_pc (prev));
1345 /* If the unwinder provides a frame type, use it. Otherwize
1346 continue on to that heuristic mess. */
1347 if (prev->unwind->type != UNKNOWN_FRAME)
1349 prev->type = prev->unwind->type;
1353 /* NOTE: cagney/2002-11-18: The code segments, found in
1354 create_new_frame and get_prev_frame(), that initializes the
1355 frames type is subtly different. The latter only updates ->type
1356 when it encounters a SIGTRAMP_FRAME or DUMMY_FRAME. This stops
1357 get_prev_frame() overriding the frame's type when the INIT code
1358 has previously set it. This is really somewhat bogus. The
1359 initialization, as seen in create_new_frame(), should occur
1360 before the INIT function has been called. */
1361 if (DEPRECATED_USE_GENERIC_DUMMY_FRAMES
1362 && (DEPRECATED_PC_IN_CALL_DUMMY_P ()
1363 ? DEPRECATED_PC_IN_CALL_DUMMY (get_frame_pc (prev), 0, 0)
1364 : pc_in_dummy_frame (get_frame_pc (prev))))
1365 prev->type = DUMMY_FRAME;
1368 /* FIXME: cagney/2002-11-10: This should be moved to before the
1369 INIT code above so that the INIT code knows what the frame's
1370 type is (in fact, for a [generic] dummy-frame, the type can
1371 be set and then the entire initialization can be skipped.
1372 Unforunatly, its the INIT code that sets the PC (Hmm, catch
1375 find_pc_partial_function (get_frame_pc (prev), &name, NULL, NULL);
1376 if (PC_IN_SIGTRAMP (get_frame_pc (prev), name))
1377 prev->type = SIGTRAMP_FRAME;
1378 /* FIXME: cagney/2002-11-11: Leave prev->type alone. Some
1379 architectures are forcing the frame's type in INIT so we
1380 don't want to override it here. Remember, NORMAL_FRAME == 0,
1381 so it all works (just :-/). Once this initialization is
1382 moved to the start of this function, all this nastness will
1389 /* Return a structure containing various interesting information
1390 about the frame that called THIS_FRAME. Returns NULL
1391 if there is no such frame. */
1394 get_prev_frame (struct frame_info *this_frame)
1396 struct frame_info *prev_frame;
1398 /* Return the inner-most frame, when the caller passes in NULL. */
1399 /* NOTE: cagney/2002-11-09: Not sure how this would happen. The
1400 caller should have previously obtained a valid frame using
1401 get_selected_frame() and then called this code - only possibility
1402 I can think of is code behaving badly.
1404 NOTE: cagney/2003-01-10: Talk about code behaving badly. Check
1405 block_innermost_frame(). It does the sequence: frame = NULL;
1406 while (1) { frame = get_prev_frame (frame); .... }. Ulgh! Why
1407 it couldn't be written better, I don't know.
1409 NOTE: cagney/2003-01-11: I suspect what is happening is
1410 block_innermost_frame() is, when the target has no state
1411 (registers, memory, ...), still calling this function. The
1412 assumption being that this function will return NULL indicating
1413 that a frame isn't possible, rather than checking that the target
1414 has state and then calling get_current_frame() and
1415 get_prev_frame(). This is a guess mind. */
1416 if (this_frame == NULL)
1418 /* NOTE: cagney/2002-11-09: There was a code segment here that
1419 would error out when CURRENT_FRAME was NULL. The comment
1420 that went with it made the claim ...
1422 ``This screws value_of_variable, which just wants a nice
1423 clean NULL return from block_innermost_frame if there are no
1424 frames. I don't think I've ever seen this message happen
1425 otherwise. And returning NULL here is a perfectly legitimate
1428 Per the above, this code shouldn't even be called with a NULL
1430 return current_frame;
1433 /* There is always a frame. If this assertion fails, suspect that
1434 something should be calling get_selected_frame() or
1435 get_current_frame(). */
1436 gdb_assert (this_frame != NULL);
1438 if (this_frame->level >= 0
1439 && !backtrace_below_main
1440 && inside_main_func (get_frame_pc (this_frame)))
1441 /* Don't unwind past main(), bug always unwind the sentinel frame.
1442 Note, this is done _before_ the frame has been marked as
1443 previously unwound. That way if the user later decides to
1444 allow unwinds past main(), that just happens. */
1447 fprintf_unfiltered (gdb_stdlog,
1448 "Outermost frame - inside main func.\n");
1452 /* Only try to do the unwind once. */
1453 if (this_frame->prev_p)
1454 return this_frame->prev;
1455 this_frame->prev_p = 1;
1458 /* If we're inside the entry file, it isn't valid. Don't apply this
1459 test to a dummy frame - dummy frame PC's typically land in the
1460 entry file. Don't apply this test to the sentinel frame.
1461 Sentinel frames should always be allowed to unwind. */
1462 /* NOTE: drow/2002-12-25: should there be a way to disable this
1463 check? It assumes a single small entry file, and the way some
1464 debug readers (e.g. dbxread) figure out which object is the
1465 entry file is somewhat hokey. */
1466 /* NOTE: cagney/2003-01-10: If there is a way of disabling this test
1467 then it should probably be moved to before the ->prev_p test,
1469 /* NOTE: vinschen/2003-04-01: Disabled. It turns out that the call to
1470 inside_entry_file destroys a meaningful backtrace under some
1471 conditions. E. g. the backtrace tests in the asm-source testcase
1472 are broken for some targets. In this test the functions are all
1473 implemented as part of one file and the testcase is not necessarily
1474 linked with a start file (depending on the target). What happens is,
1475 that the first frame is printed normaly and following frames are
1476 treated as being inside the enttry file then. This way, only the
1477 #0 frame is printed in the backtrace output. */
1478 if (this_frame->type != DUMMY_FRAME && this_frame->level >= 0
1479 && inside_entry_file (get_frame_pc (this_frame)))
1482 fprintf_unfiltered (gdb_stdlog,
1483 "Outermost frame - inside entry file\n");
1488 /* If we're already inside the entry function for the main objfile,
1489 then it isn't valid. Don't apply this test to a dummy frame -
1490 dummy frame PC's typically land in the entry func. Don't apply
1491 this test to the sentinel frame. Sentinel frames should always
1492 be allowed to unwind. */
1493 /* NOTE: cagney/2003-02-25: Don't enable until someone has found
1494 hard evidence that this is needed. */
1496 && this_frame->type != DUMMY_FRAME && this_frame->level >= 0
1497 && inside_entry_func (get_frame_pc (this_frame)))
1500 fprintf_unfiltered (gdb_stdlog,
1501 "Outermost frame - inside entry func\n");
1505 /* If any of the old frame initialization methods are around, use
1506 the legacy get_prev_frame method. */
1507 if (legacy_frame_p (current_gdbarch))
1509 prev_frame = legacy_get_prev_frame (this_frame);
1510 if (frame_debug && prev_frame == NULL)
1511 fprintf_unfiltered (gdb_stdlog,
1512 "Outermost frame - legacy_get_prev_frame NULL.\n");
1516 /* Check that this frame's ID was valid. If it wasn't, don't try to
1517 unwind to the prev frame. Be careful to not apply this test to
1518 the sentinel frame. */
1519 if (this_frame->level >= 0 && !frame_id_p (get_frame_id (this_frame)))
1522 fprintf_filtered (gdb_stdlog,
1523 "Outermost frame - this ID is NULL\n");
1527 /* Check that this frame's ID isn't inner to (younger, below, next)
1528 the next frame. This happens when frame unwind goes backwards.
1529 Since the sentinel frame isn't valid, don't apply this if this
1530 frame is entier the inner-most or sentinel frame. */
1531 if (this_frame->level > 0
1532 && frame_id_inner (get_frame_id (this_frame),
1533 get_frame_id (this_frame->next)))
1534 error ("This frame inner-to next frame (corrupt stack?)");
1536 /* Check that this and the next frame are different. If they are
1537 not, there is most likely a stack cycle. As with the inner-than
1538 test, avoid the inner-most and sentinel frames. */
1539 /* FIXME: cagney/2003-03-17: Can't yet enable this this check. The
1540 frame_id_eq() method doesn't yet use function addresses when
1541 comparing frame IDs. */
1543 && this_frame->level > 0
1544 && frame_id_eq (get_frame_id (this_frame),
1545 get_frame_id (this_frame->next)))
1546 error ("This frame identical to next frame (corrupt stack?)");
1548 /* Allocate the new frame but do not wire it in to the frame chain.
1549 Some (bad) code in INIT_FRAME_EXTRA_INFO tries to look along
1550 frame->next to pull some fancy tricks (of course such code is, by
1551 definition, recursive). Try to prevent it.
1553 There is no reason to worry about memory leaks, should the
1554 remainder of the function fail. The allocated memory will be
1555 quickly reclaimed when the frame cache is flushed, and the `we've
1556 been here before' check above will stop repeated memory
1557 allocation calls. */
1558 prev_frame = FRAME_OBSTACK_ZALLOC (struct frame_info);
1559 prev_frame->level = this_frame->level + 1;
1561 /* Try to unwind the PC. If that doesn't work, assume we've reached
1562 the oldest frame and simply return. Is there a better sentinal
1563 value? The unwound PC value is then used to initialize the new
1564 previous frame's type.
1566 Note that the pc-unwind is intentionally performed before the
1567 frame chain. This is ok since, for old targets, both
1568 frame_pc_unwind (nee, FRAME_SAVED_PC) and
1569 DEPRECATED_FRAME_CHAIN()) assume THIS_FRAME's data structures
1570 have already been initialized (using
1571 DEPRECATED_INIT_EXTRA_FRAME_INFO) and hence the call order
1574 By unwinding the PC first, it becomes possible to, in the case of
1575 a dummy frame, avoid also unwinding the frame ID. This is
1576 because (well ignoring the PPC) a dummy frame can be located
1577 using THIS_FRAME's frame ID. */
1579 /* FIXME: cagney/2003-04-04: Once ->pc is eliminated, this
1580 assignment can go away. */
1581 prev_frame->pc = frame_pc_unwind (this_frame);
1582 if (prev_frame->pc == 0)
1584 /* The allocated PREV_FRAME will be reclaimed when the frame
1585 obstack is next purged. */
1587 fprintf_unfiltered (gdb_stdlog,
1588 "Outermost frame - unwound PC zero\n");
1592 /* Set the unwind functions based on that identified PC. */
1593 prev_frame->unwind = frame_unwind_find_by_pc (current_gdbarch,
1596 /* FIXME: cagney/2003-04-02: Rather than storing the frame's type in
1597 the frame, the unwinder's type should be returned directly.
1598 Unfortunatly, legacy code, called by legacy_get_prev_frame,
1599 explicitly set the frames type using the method
1600 deprecated_set_frame_type(). */
1601 gdb_assert (prev_frame->unwind->type != UNKNOWN_FRAME);
1602 prev_frame->type = prev_frame->unwind->type;
1604 /* Can the frame's type and unwinder be computed on demand? That
1605 would make a frame's creation really really lite! */
1607 /* The prev's frame's ID is computed by demand in get_frame_id(). */
1609 /* The unwound frame ID is validate at the start of this function,
1610 as part of the logic to decide if that frame should be further
1611 unwound, and not here while the prev frame is being created.
1612 Doing this makes it possible for the user to examine a frame that
1613 has an invalid frame ID.
1615 The very old VAX frame_args_address_correct() method noted: [...]
1616 For the sake of argument, suppose that the stack is somewhat
1617 trashed (which is one reason that "info frame" exists). So,
1618 return 0 (indicating we don't know the address of the arglist) if
1619 we don't know what frame this frame calls. */
1622 this_frame->prev = prev_frame;
1623 prev_frame->next = this_frame;
1629 get_frame_pc (struct frame_info *frame)
1635 pc_notcurrent (struct frame_info *frame)
1637 /* If FRAME is not the innermost frame, that normally means that
1638 FRAME->pc points at the return instruction (which is *after* the
1639 call instruction), and we want to get the line containing the
1640 call (because the call is where the user thinks the program is).
1641 However, if the next frame is either a SIGTRAMP_FRAME or a
1642 DUMMY_FRAME, then the next frame will contain a saved interrupt
1643 PC and such a PC indicates the current (rather than next)
1644 instruction/line, consequently, for such cases, want to get the
1645 line containing fi->pc. */
1646 struct frame_info *next = get_next_frame (frame);
1647 int notcurrent = (next != NULL && get_frame_type (next) == NORMAL_FRAME);
1652 find_frame_sal (struct frame_info *frame, struct symtab_and_line *sal)
1654 (*sal) = find_pc_line (get_frame_pc (frame), pc_notcurrent (frame));
1657 /* Per "frame.h", return the ``address'' of the frame. Code should
1658 really be using get_frame_id(). */
1660 get_frame_base (struct frame_info *fi)
1664 /* HACK: Force the ID code to (indirectly) initialize the
1671 /* High-level offsets into the frame. Used by the debug info. */
1674 get_frame_base_address (struct frame_info *fi)
1676 if (get_frame_type (fi) != NORMAL_FRAME)
1678 if (fi->base == NULL)
1679 fi->base = frame_base_find_by_pc (current_gdbarch, get_frame_pc (fi));
1680 /* Sneaky: If the low-level unwind and high-level base code share a
1681 common unwinder, let them share the prologue cache. */
1682 if (fi->base->unwind == fi->unwind)
1683 return fi->base->this_base (fi->next, &fi->prologue_cache);
1684 return fi->base->this_base (fi->next, &fi->base_cache);
1688 get_frame_locals_address (struct frame_info *fi)
1691 if (get_frame_type (fi) != NORMAL_FRAME)
1693 /* If there isn't a frame address method, find it. */
1694 if (fi->base == NULL)
1695 fi->base = frame_base_find_by_pc (current_gdbarch, get_frame_pc (fi));
1696 /* Sneaky: If the low-level unwind and high-level base code share a
1697 common unwinder, let them share the prologue cache. */
1698 if (fi->base->unwind == fi->unwind)
1699 cache = &fi->prologue_cache;
1701 cache = &fi->base_cache;
1702 return fi->base->this_locals (fi->next, cache);
1706 get_frame_args_address (struct frame_info *fi)
1709 if (get_frame_type (fi) != NORMAL_FRAME)
1711 /* If there isn't a frame address method, find it. */
1712 if (fi->base == NULL)
1713 fi->base = frame_base_find_by_pc (current_gdbarch, get_frame_pc (fi));
1714 /* Sneaky: If the low-level unwind and high-level base code share a
1715 common unwinder, let them share the prologue cache. */
1716 if (fi->base->unwind == fi->unwind)
1717 cache = &fi->prologue_cache;
1719 cache = &fi->base_cache;
1720 return fi->base->this_args (fi->next, cache);
1723 /* Level of the selected frame: 0 for innermost, 1 for its caller, ...
1724 or -1 for a NULL frame. */
1727 frame_relative_level (struct frame_info *fi)
1736 get_frame_type (struct frame_info *frame)
1738 /* Some targets still don't use [generic] dummy frames. Catch them
1740 if (!DEPRECATED_USE_GENERIC_DUMMY_FRAMES
1741 && deprecated_frame_in_dummy (frame))
1743 if (frame->type == UNKNOWN_FRAME)
1744 return NORMAL_FRAME;
1750 deprecated_set_frame_type (struct frame_info *frame, enum frame_type type)
1752 /* Arrrg! See comment in "frame.h". */
1756 #ifdef FRAME_FIND_SAVED_REGS
1757 /* XXX - deprecated. This is a compatibility function for targets
1758 that do not yet implement DEPRECATED_FRAME_INIT_SAVED_REGS. */
1759 /* Find the addresses in which registers are saved in FRAME. */
1762 deprecated_get_frame_saved_regs (struct frame_info *frame,
1763 struct frame_saved_regs *saved_regs_addr)
1765 if (frame->saved_regs == NULL)
1767 frame->saved_regs = (CORE_ADDR *)
1768 frame_obstack_zalloc (SIZEOF_FRAME_SAVED_REGS);
1770 if (saved_regs_addr == NULL)
1772 struct frame_saved_regs saved_regs;
1773 FRAME_FIND_SAVED_REGS (frame, saved_regs);
1774 memcpy (frame->saved_regs, &saved_regs, SIZEOF_FRAME_SAVED_REGS);
1778 FRAME_FIND_SAVED_REGS (frame, *saved_regs_addr);
1779 memcpy (frame->saved_regs, saved_regs_addr, SIZEOF_FRAME_SAVED_REGS);
1784 struct frame_extra_info *
1785 get_frame_extra_info (struct frame_info *fi)
1787 return fi->extra_info;
1790 struct frame_extra_info *
1791 frame_extra_info_zalloc (struct frame_info *fi, long size)
1793 fi->extra_info = frame_obstack_zalloc (size);
1794 return fi->extra_info;
1798 deprecated_update_frame_pc_hack (struct frame_info *frame, CORE_ADDR pc)
1800 /* See comment in "frame.h". */
1802 /* NOTE: cagney/2003-03-11: Some architectures (e.g., Arm) are
1803 maintaining a locally allocated frame object. Since such frame's
1804 are not in the frame chain, it isn't possible to assume that the
1805 frame has a next. Sigh. */
1806 if (frame->next != NULL)
1808 /* While we're at it, update this frame's cached PC value, found
1809 in the next frame. Oh for the day when "struct frame_info"
1810 is opaque and this hack on hack can just go away. */
1811 frame->next->pc_unwind_cache = pc;
1812 frame->next->pc_unwind_cache_p = 1;
1817 deprecated_update_frame_base_hack (struct frame_info *frame, CORE_ADDR base)
1819 /* See comment in "frame.h". */
1820 frame->frame = base;
1824 deprecated_set_frame_saved_regs_hack (struct frame_info *frame,
1825 CORE_ADDR *saved_regs)
1827 frame->saved_regs = saved_regs;
1831 deprecated_set_frame_extra_info_hack (struct frame_info *frame,
1832 struct frame_extra_info *extra_info)
1834 frame->extra_info = extra_info;
1838 deprecated_set_frame_next_hack (struct frame_info *fi,
1839 struct frame_info *next)
1845 deprecated_set_frame_prev_hack (struct frame_info *fi,
1846 struct frame_info *prev)
1852 deprecated_get_frame_context (struct frame_info *fi)
1858 deprecated_set_frame_context (struct frame_info *fi,
1859 struct context *context)
1861 fi->context = context;
1865 deprecated_frame_xmalloc (void)
1867 struct frame_info *frame = XMALLOC (struct frame_info);
1868 memset (frame, 0, sizeof (struct frame_info));
1873 deprecated_frame_xmalloc_with_cleanup (long sizeof_saved_regs,
1874 long sizeof_extra_info)
1876 struct frame_info *frame = deprecated_frame_xmalloc ();
1877 make_cleanup (xfree, frame);
1878 if (sizeof_saved_regs > 0)
1880 frame->saved_regs = xcalloc (1, sizeof_saved_regs);
1881 make_cleanup (xfree, frame->saved_regs);
1883 if (sizeof_extra_info > 0)
1885 frame->extra_info = xcalloc (1, sizeof_extra_info);
1886 make_cleanup (xfree, frame->extra_info);
1892 legacy_frame_p (struct gdbarch *current_gdbarch)
1894 return (DEPRECATED_INIT_FRAME_PC_P ()
1895 || DEPRECATED_INIT_FRAME_PC_FIRST_P ()
1896 || DEPRECATED_INIT_EXTRA_FRAME_INFO_P ()
1897 || DEPRECATED_FRAME_CHAIN_P ()
1898 || !gdbarch_unwind_dummy_id_p (current_gdbarch)
1899 || !SAVE_DUMMY_FRAME_TOS_P ());
1903 _initialize_frame (void)
1905 obstack_init (&frame_cache_obstack);
1907 /* FIXME: cagney/2003-01-19: This command needs a rename. Suggest
1908 `set backtrace {past,beyond,...}-main'. Also suggest adding `set
1909 backtrace ...-start' to control backtraces past start. The
1910 problem with `below' is that it stops the `up' command. */
1912 add_setshow_boolean_cmd ("backtrace-below-main", class_obscure,
1913 &backtrace_below_main, "\
1914 Set whether backtraces should continue past \"main\".\n\
1915 Normally the caller of \"main\" is not of interest, so GDB will terminate\n\
1916 the backtrace at \"main\". Set this variable if you need to see the rest\n\
1917 of the stack trace.", "\
1918 Show whether backtraces should continue past \"main\".\n\
1919 Normally the caller of \"main\" is not of interest, so GDB will terminate\n\
1920 the backtrace at \"main\". Set this variable if you need to see the rest\n\
1921 of the stack trace.",
1922 NULL, NULL, &setlist, &showlist);
1925 /* Debug this files internals. */
1926 add_show_from_set (add_set_cmd ("frame", class_maintenance, var_zinteger,
1927 &frame_debug, "Set frame debugging.\n\
1928 When non-zero, frame specific internal debugging is enabled.", &setdebuglist),