1999-04-16 03:35:26 +02:00
|
|
|
/* Definitions for dealing with stack frames, for GDB, the GNU debugger.
|
2002-04-11 00:14:02 +02:00
|
|
|
|
|
|
|
Copyright 1986, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996,
|
2004-02-12 01:17:53 +01:00
|
|
|
1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This file is part of GDB.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
Boston, MA 02111-1307, USA. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
#if !defined (FRAME_H)
|
|
|
|
#define FRAME_H 1
|
|
|
|
|
2003-06-21 18:26:02 +02:00
|
|
|
/* The following is the intended naming schema for frame functions.
|
|
|
|
It isn't 100% consistent, but it is aproaching that. Frame naming
|
|
|
|
schema:
|
|
|
|
|
|
|
|
Prefixes:
|
|
|
|
|
|
|
|
get_frame_WHAT...(): Get WHAT from the THIS frame (functionaly
|
|
|
|
equivalent to THIS->next->unwind->what)
|
|
|
|
|
|
|
|
frame_unwind_WHAT...(): Unwind THIS frame's WHAT from the NEXT
|
|
|
|
frame.
|
|
|
|
|
|
|
|
put_frame_WHAT...(): Put a value into this frame (unsafe, need to
|
|
|
|
invalidate the frame / regcache afterwards) (better name more
|
|
|
|
strongly hinting at its unsafeness)
|
|
|
|
|
|
|
|
safe_....(): Safer version of various functions, doesn't throw an
|
2004-04-02 21:44:25 +02:00
|
|
|
error (leave this for later?). Returns non-zero / non-NULL if the
|
|
|
|
request succeeds, zero / NULL otherwize.
|
2003-06-21 18:26:02 +02:00
|
|
|
|
|
|
|
Suffixes:
|
|
|
|
|
|
|
|
void /frame/_WHAT(): Read WHAT's value into the buffer parameter.
|
|
|
|
|
|
|
|
ULONGEST /frame/_WHAT_unsigned(): Return an unsigned value (the
|
|
|
|
alternative is *frame_unsigned_WHAT).
|
|
|
|
|
|
|
|
LONGEST /frame/_WHAT_signed(): Return WHAT signed value.
|
|
|
|
|
|
|
|
What:
|
|
|
|
|
|
|
|
/frame/_memory* (frame, coreaddr, len [, buf]): Extract/return
|
|
|
|
*memory.
|
|
|
|
|
|
|
|
/frame/_register* (frame, regnum [, buf]): extract/return register.
|
|
|
|
|
|
|
|
CORE_ADDR /frame/_{pc,sp,...} (frame): Resume address, innner most
|
|
|
|
stack *address, ...
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2002-11-29 02:52:02 +01:00
|
|
|
struct symtab_and_line;
|
2003-01-18 Andrew Cagney <ac131313@redhat.com>
* dummy-frame.h (dummy_frame_id_unwind): Delete declaration.
(dummy_frame_pc_unwind, dummy_frame_register_unwind): Ditto.
(struct frame_unwind): Declare opaque.
(dummy_frame_p): Declare function.
* dummy-frame.c (dummy_frame_id_unwind): Make static.
(dummy_frame_pc_unwind, dummy_frame_register_unwind): Ditto.
* dummy-frame.c: Include "frame-unwind.h".
(dummy_frame_p): New function.
(dummy_frame_unwind): New variable.
* frame.c: Include "frame-unwind.h".
(frame_pc_unwind, frame_id_unwind, frame_register_unwind): Update
to use the new unwind field.
(set_unwind_by_pc): Delete function.
(create_new_frame, get_prev_frame): Set unwind field using
frame_unwind_find_by_pc.
(trad_frame_unwind, trad_frame_unwinder): New variables.
* frame.h (trad_frame_unwind): Declare variable.
(frame_id_unwind_ftype): Delete declaration.
(frame_pc_unwind_ftype, frame_register_unwind_ftype): Ditto.
(struct frame_unwind): Declare opaque.
(struct frame_info): Replace the fields id_unwind, pc_unwind and
register_unwind with a single unwind pointer.
* frame-unwind.h, frame-unwind.c: New files.
* Makefile.in (SFILES): Add frame-unwind.c.
(frame_unwind_h): Define.
(COMMON_OBS): Add frame-unwind.o.
(frame-unwind.o): Specify dependencies.
(frame.o, dummy-frame.o): Update dependencies.
2003-01-18 18:25:23 +01:00
|
|
|
struct frame_unwind;
|
2003-04-01 21:11:01 +02:00
|
|
|
struct frame_base;
|
2003-02-19 David Carlton <carlton@math.stanford.edu>
* Makefile.in (SFILES): Add block.c.
(block_h): New.
(COMMON_OBS): Add block.o.
(block.o): New.
(x86-64-tdep.o): Add $(block_h).
(values.o, valops.o, tracepoint.o, symtab.o, symmisc.o, symfile.o)
(stack.o, printcmd.o, p-exp.tab.o, parse.o, objfiles.o)
(objc-exp.tab.o, objc-lang.o, nlmread.o, mips-tdep.o, mdebugread.o)
(m2-exp.tab.o, linespec.o, jv-lang.o, jv-exp.tab.o, infcmd.o)
(f-valprint.o, findvar.o, f-exp.tab.o, expprint.o, coffread.o)
(c-exp.tab.o, buildsym.o, breakpoint.o, blockframe.o, ax-gdb.o)
(alpha-tdep.o, ada-lang.o, ada-exp.tab.o, mi-cmd-stack.o): Ditto.
* value.h: Add opaque declaration for struct block.
* parser-defs.h, objc-lang.h, buildsym.h, breakpoint.h: Ditto.
* ada-lang.h: Ditto.
* x86-64-tdep.c: #include "block.h"
* values.c, valops.c, tracepoint.c, symtab.c, symmisc.c: Ditto.
* symfile.c, stack.c, printcmd.c, p-exp.y, parse.c: Ditto.
* objfiles.c, objc-exp.y, objc-lang.c, nlmread.c: Ditto.
* mips-tdep.c, mdebugread.c, m2-exp.y, linespec.c: Ditto.
* jv-lang.c, jv-exp.y, infcmd.c, f-valprint.c: Ditto.
* findvar.c, f-exp.y, expprint.c, coffread.c, c-exp.y: Ditto.
* buildsym.c, breakpoint.c, blockframe.c, ax-gdb.c: Ditto.
* alpha-tdep.c, ada-lang.c, ada-exp.y: Ditto.
* blockframe.c (blockvector_for_pc_sect): Move to "block.c".
(blockvector_for_pc, block_for_pc_sect, block_for_pc): Ditto.
* symtab.c (block_function): Ditto.
(contained_in): Ditto.
* frame.h: Move block_for_pc and block_for_pc_sect declarations to
block.h. Add opaque declaration for struct block.
* symtab.h: Move block_function and contained_in declarations to
block.h. Add opaque declarations for struct block, struct
blockvector.
(struct block): Move to block.h.
(struct blockvector): Ditto.
(BLOCK_START, BLOCK_END, BLOCK_FUNCTION, BLOCK_SUPERBLOCK)
(BLOCK_GCC_COMPILED, BLOCK_HASHTABLE, BLOCK_NSYMS, BLOCK_SYM)
(BLOCK_BUCKETS, BLOCK_BUCKET, BLOCK_HASHTABLE_SIZE)
(ALL_BLOCK_SYMBOLS, BLOCK_SHOULD_SORT, BLOCKVECTOR_NBLOCKS)
(BLOCKVECTOR_BLOCK, GLOBAL_BLOCK, STATIC_BLOCK, FIRST_LOCAL_BLOCK):
Ditto.
* block.c: New file.
* block.h: New file.
2003-02-19 David Carlton <carlton@math.stanford.edu>
* mi-cmd-stack.c: #include "block.h"
2003-02-20 01:01:07 +01:00
|
|
|
struct block;
|
2003-04-09 23:53:28 +02:00
|
|
|
struct gdbarch;
|
2003-05-12 02:26:19 +02:00
|
|
|
struct ui_file;
|
2003-01-18 Andrew Cagney <ac131313@redhat.com>
* dummy-frame.h (dummy_frame_id_unwind): Delete declaration.
(dummy_frame_pc_unwind, dummy_frame_register_unwind): Ditto.
(struct frame_unwind): Declare opaque.
(dummy_frame_p): Declare function.
* dummy-frame.c (dummy_frame_id_unwind): Make static.
(dummy_frame_pc_unwind, dummy_frame_register_unwind): Ditto.
* dummy-frame.c: Include "frame-unwind.h".
(dummy_frame_p): New function.
(dummy_frame_unwind): New variable.
* frame.c: Include "frame-unwind.h".
(frame_pc_unwind, frame_id_unwind, frame_register_unwind): Update
to use the new unwind field.
(set_unwind_by_pc): Delete function.
(create_new_frame, get_prev_frame): Set unwind field using
frame_unwind_find_by_pc.
(trad_frame_unwind, trad_frame_unwinder): New variables.
* frame.h (trad_frame_unwind): Declare variable.
(frame_id_unwind_ftype): Delete declaration.
(frame_pc_unwind_ftype, frame_register_unwind_ftype): Ditto.
(struct frame_unwind): Declare opaque.
(struct frame_info): Replace the fields id_unwind, pc_unwind and
register_unwind with a single unwind pointer.
* frame-unwind.h, frame-unwind.c: New files.
* Makefile.in (SFILES): Add frame-unwind.c.
(frame_unwind_h): Define.
(COMMON_OBS): Add frame-unwind.o.
(frame-unwind.o): Specify dependencies.
(frame.o, dummy-frame.o): Update dependencies.
2003-01-18 18:25:23 +01:00
|
|
|
|
2002-11-15 16:50:21 +01:00
|
|
|
/* The frame object. */
|
|
|
|
|
|
|
|
struct frame_info;
|
|
|
|
|
|
|
|
/* The frame object's ID. This provides a per-frame unique identifier
|
|
|
|
that can be used to relocate a `struct frame_info' after a target
|
2002-12-04 01:05:54 +01:00
|
|
|
resume or a frame cache destruct. It of course assumes that the
|
|
|
|
inferior hasn't unwound the stack past that frame. */
|
2002-11-15 16:50:21 +01:00
|
|
|
|
|
|
|
struct frame_id
|
|
|
|
{
|
2003-04-10 05:30:36 +02:00
|
|
|
/* The frame's stack address. This shall be constant through out
|
|
|
|
the lifetime of a frame. Note that this requirement applies to
|
|
|
|
not just the function body, but also the prologue and (in theory
|
|
|
|
at least) the epilogue. Since that value needs to fall either on
|
|
|
|
the boundary, or within the frame's address range, the frame's
|
|
|
|
outer-most address (the inner-most address of the previous frame)
|
|
|
|
is used. Watch out for all the legacy targets that still use the
|
|
|
|
function pointer register or stack pointer register. They are
|
2004-06-27 22:45:05 +02:00
|
|
|
wrong.
|
|
|
|
|
|
|
|
This field is valid only if stack_addr_p is true. Otherwise, this
|
|
|
|
frame represents the null frame. */
|
2003-04-10 05:30:36 +02:00
|
|
|
CORE_ADDR stack_addr;
|
2004-06-27 22:45:05 +02:00
|
|
|
|
2003-04-10 05:30:36 +02:00
|
|
|
/* The frame's code address. This shall be constant through out the
|
|
|
|
lifetime of the frame. While the PC (a.k.a. resume address)
|
|
|
|
changes as the function is executed, this code address cannot.
|
|
|
|
Typically, it is set to the address of the entry point of the
|
2004-06-27 22:45:05 +02:00
|
|
|
frame's function (as returned by frame_func_unwind().
|
|
|
|
|
|
|
|
This field is valid only if code_addr_p is true. Otherwise, this
|
|
|
|
frame is considered to have a wildcard code address, i.e. one that
|
|
|
|
matches every address value in frame comparisons. */
|
2003-04-10 05:30:36 +02:00
|
|
|
CORE_ADDR code_addr;
|
2004-06-27 22:45:05 +02:00
|
|
|
|
2003-10-17 18:32:17 +02:00
|
|
|
/* The frame's special address. This shall be constant through out the
|
|
|
|
lifetime of the frame. This is used for architectures that may have
|
|
|
|
frames that do not change the stack but are still distinct and have
|
|
|
|
some form of distinct identifier (e.g. the ia64 which uses a 2nd
|
|
|
|
stack for registers). This field is treated as unordered - i.e. will
|
|
|
|
not be used in frame ordering comparisons such as frame_id_inner().
|
2004-06-27 22:45:05 +02:00
|
|
|
|
|
|
|
This field is valid only if special_addr_p is true. Otherwise, this
|
|
|
|
frame is considered to have a wildcard special address, i.e. one that
|
|
|
|
matches every address value in frame comparisons. */
|
2003-10-17 18:32:17 +02:00
|
|
|
CORE_ADDR special_addr;
|
2004-06-27 22:45:05 +02:00
|
|
|
|
|
|
|
/* Flags to indicate the above fields have valid contents. */
|
2004-06-28 00:26:34 +02:00
|
|
|
unsigned int stack_addr_p : 1;
|
|
|
|
unsigned int code_addr_p : 1;
|
|
|
|
unsigned int special_addr_p : 1;
|
2002-11-15 16:50:21 +01:00
|
|
|
};
|
|
|
|
|
2002-12-04 01:05:54 +01:00
|
|
|
/* Methods for constructing and comparing Frame IDs.
|
|
|
|
|
2003-10-17 18:32:17 +02:00
|
|
|
NOTE: Given stackless functions A and B, where A calls B (and hence
|
2002-12-04 01:05:54 +01:00
|
|
|
B is inner-to A). The relationships: !eq(A,B); !eq(B,A);
|
2003-10-17 18:32:17 +02:00
|
|
|
!inner(A,B); !inner(B,A); all hold.
|
|
|
|
|
|
|
|
This is because, while B is inner-to A, B is not strictly inner-to A.
|
|
|
|
Being stackless, they have an identical .stack_addr value, and differ
|
|
|
|
only by their unordered .code_addr and/or .special_addr values.
|
|
|
|
|
|
|
|
Because frame_id_inner is only used as a safety net (e.g.,
|
|
|
|
detect a corrupt stack) the lack of strictness is not a problem.
|
|
|
|
Code needing to determine an exact relationship between two frames
|
|
|
|
must instead use frame_id_eq and frame_id_unwind. For instance,
|
|
|
|
in the above, to determine that A stepped-into B, the equation
|
|
|
|
"A.id != B.id && A.id == id_unwind (B)" can be used. */
|
2002-12-04 01:05:54 +01:00
|
|
|
|
|
|
|
/* For convenience. All fields are zero. */
|
|
|
|
extern const struct frame_id null_frame_id;
|
|
|
|
|
2003-04-10 05:30:36 +02:00
|
|
|
/* Construct a frame ID. The first parameter is the frame's constant
|
|
|
|
stack address (typically the outer-bound), and the second the
|
2004-06-27 22:45:05 +02:00
|
|
|
frame's constant code address (typically the entry point).
|
|
|
|
The special identifier address is set to indicate a wild card. */
|
2003-04-10 05:30:36 +02:00
|
|
|
extern struct frame_id frame_id_build (CORE_ADDR stack_addr,
|
|
|
|
CORE_ADDR code_addr);
|
2002-12-04 01:05:54 +01:00
|
|
|
|
2003-10-17 18:32:17 +02:00
|
|
|
/* Construct a special frame ID. The first parameter is the frame's constant
|
|
|
|
stack address (typically the outer-bound), the second is the
|
2004-06-27 22:45:05 +02:00
|
|
|
frame's constant code address (typically the entry point),
|
|
|
|
and the third parameter is the frame's special identifier address. */
|
2003-10-17 18:32:17 +02:00
|
|
|
extern struct frame_id frame_id_build_special (CORE_ADDR stack_addr,
|
|
|
|
CORE_ADDR code_addr,
|
|
|
|
CORE_ADDR special_addr);
|
|
|
|
|
2004-06-27 22:45:05 +02:00
|
|
|
/* Construct a wild card frame ID. The parameter is the frame's constant
|
|
|
|
stack address (typically the outer-bound). The code address as well
|
|
|
|
as the special identifier address are set to indicate wild cards. */
|
|
|
|
extern struct frame_id frame_id_build_wild (CORE_ADDR stack_addr);
|
|
|
|
|
2002-12-04 01:05:54 +01:00
|
|
|
/* Returns non-zero when L is a valid frame (a valid frame has a
|
|
|
|
non-zero .base). */
|
|
|
|
extern int frame_id_p (struct frame_id l);
|
|
|
|
|
|
|
|
/* Returns non-zero when L and R identify the same frame, or, if
|
|
|
|
either L or R have a zero .func, then the same frame base. */
|
|
|
|
extern int frame_id_eq (struct frame_id l, struct frame_id r);
|
|
|
|
|
|
|
|
/* Returns non-zero when L is strictly inner-than R (they have
|
|
|
|
different frame .bases). Neither L, nor R can be `null'. See note
|
|
|
|
above about frameless functions. */
|
|
|
|
extern int frame_id_inner (struct frame_id l, struct frame_id r);
|
|
|
|
|
2003-05-05 20:33:11 +02:00
|
|
|
/* Write the internal representation of a frame ID on the specified
|
|
|
|
stream. */
|
|
|
|
extern void fprint_frame_id (struct ui_file *file, struct frame_id id);
|
|
|
|
|
2002-12-04 01:05:54 +01:00
|
|
|
|
2002-11-15 16:50:21 +01:00
|
|
|
/* For every stopped thread, GDB tracks two frames: current and
|
|
|
|
selected. Current frame is the inner most frame of the selected
|
2002-11-28 18:11:41 +01:00
|
|
|
thread. Selected frame is the one being examined by the the GDB
|
|
|
|
CLI (selected using `up', `down', ...). The frames are created
|
|
|
|
on-demand (via get_prev_frame()) and then held in a frame cache. */
|
|
|
|
/* FIXME: cagney/2002-11-28: Er, there is a lie here. If you do the
|
2004-04-07 22:38:26 +02:00
|
|
|
sequence: `thread 1; up; thread 2; thread 1' you lose thread 1's
|
2002-11-28 18:11:41 +01:00
|
|
|
selected frame. At present GDB only tracks the selected frame of
|
|
|
|
the current thread. But be warned, that might change. */
|
2002-11-15 16:50:21 +01:00
|
|
|
/* FIXME: cagney/2002-11-14: At any time, only one thread's selected
|
|
|
|
and current frame can be active. Switching threads causes gdb to
|
|
|
|
discard all that cached frame information. Ulgh! Instead, current
|
|
|
|
and selected frame should be bound to a thread. */
|
|
|
|
|
2002-11-28 18:11:41 +01:00
|
|
|
/* On demand, create the inner most frame using information found in
|
|
|
|
the inferior. If the inner most frame can't be created, throw an
|
|
|
|
error. */
|
2002-11-15 16:50:21 +01:00
|
|
|
extern struct frame_info *get_current_frame (void);
|
|
|
|
|
2002-11-28 18:11:41 +01:00
|
|
|
/* Invalidates the frame cache (this function should have been called
|
|
|
|
invalidate_cached_frames).
|
|
|
|
|
|
|
|
FIXME: cagney/2002-11-28: The only difference between
|
|
|
|
flush_cached_frames() and reinit_frame_cache() is that the latter
|
2004-04-07 22:38:26 +02:00
|
|
|
explicitly sets the selected frame back to the current frame -- there
|
2002-11-28 18:11:41 +01:00
|
|
|
isn't any real difference (except that one delays the selection of
|
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* stack.c (selected_frame, select_frame): Move from here ...
* frame.c (selected_frame, select_frame): ... to here. Include
"language.h".
* Makefile.in (frame.o): Update dependencies.
* frame.c (get_selected_frame): New function.
* frame.h (get_selected_frame): Declare.
(deprecated_selected_frame): Rename selected_frame.
* ada-lang.c, ada-tasks.c, breakpoint.c, corelow.c: Update.
* eval.c, f-valprint.c, findvar.c, frame.c, frame.h: Update.
* h8300-tdep.c, h8500-tdep.c, hppa-tdep.c, infcmd.c: Update.
* inflow.c, infrun.c, macroscope.c, mips-tdep.c: Update.
* mn10300-tdep.c, ocd.c, regcache.h, remote-e7000.c: Update.
* remote-mips.c, remote-rdp.c, sh-tdep.c, sparc-tdep.c: Update.
* stack.c, thread.c, tracepoint.c, valops.c, varobj.c: Update.
* z8k-tdep.c, cli/cli-cmds.c: Update.
Index: mi/ChangeLog
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* mi/mi-cmd-stack.c, mi/mi-main.c: Update to use
deprecated_selected_frame.
Index: tui/ChangeLog
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* tui/tui-hooks.c: Update to use deprecated_selected_frame.
* tui/tui.c, tui/tuiDisassem.c, tui/tuiRegs.c: Ditto.
* tui/tuiSource.c, tui/tuiSourceWin.c, tui/tuiWin.c: Ditto.
2002-11-29 20:15:16 +01:00
|
|
|
a new frame). Code can instead simply rely on get_selected_frame()
|
2004-04-07 22:38:26 +02:00
|
|
|
to reinit the selected frame as needed. As for invalidating the
|
|
|
|
cache, there should be two methods: one that reverts the thread's
|
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* stack.c (selected_frame, select_frame): Move from here ...
* frame.c (selected_frame, select_frame): ... to here. Include
"language.h".
* Makefile.in (frame.o): Update dependencies.
* frame.c (get_selected_frame): New function.
* frame.h (get_selected_frame): Declare.
(deprecated_selected_frame): Rename selected_frame.
* ada-lang.c, ada-tasks.c, breakpoint.c, corelow.c: Update.
* eval.c, f-valprint.c, findvar.c, frame.c, frame.h: Update.
* h8300-tdep.c, h8500-tdep.c, hppa-tdep.c, infcmd.c: Update.
* inflow.c, infrun.c, macroscope.c, mips-tdep.c: Update.
* mn10300-tdep.c, ocd.c, regcache.h, remote-e7000.c: Update.
* remote-mips.c, remote-rdp.c, sh-tdep.c, sparc-tdep.c: Update.
* stack.c, thread.c, tracepoint.c, valops.c, varobj.c: Update.
* z8k-tdep.c, cli/cli-cmds.c: Update.
Index: mi/ChangeLog
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* mi/mi-cmd-stack.c, mi/mi-main.c: Update to use
deprecated_selected_frame.
Index: tui/ChangeLog
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* tui/tui-hooks.c: Update to use deprecated_selected_frame.
* tui/tui.c, tui/tuiDisassem.c, tui/tuiRegs.c: Ditto.
* tui/tuiSource.c, tui/tuiSourceWin.c, tui/tuiWin.c: Ditto.
2002-11-29 20:15:16 +01:00
|
|
|
selected frame back to current frame (for when the inferior
|
|
|
|
resumes) and one that does not (for when the user modifies the
|
|
|
|
target invalidating the frame cache). */
|
2002-11-15 16:50:21 +01:00
|
|
|
extern void flush_cached_frames (void);
|
|
|
|
extern void reinit_frame_cache (void);
|
|
|
|
|
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* stack.c (selected_frame, select_frame): Move from here ...
* frame.c (selected_frame, select_frame): ... to here. Include
"language.h".
* Makefile.in (frame.o): Update dependencies.
* frame.c (get_selected_frame): New function.
* frame.h (get_selected_frame): Declare.
(deprecated_selected_frame): Rename selected_frame.
* ada-lang.c, ada-tasks.c, breakpoint.c, corelow.c: Update.
* eval.c, f-valprint.c, findvar.c, frame.c, frame.h: Update.
* h8300-tdep.c, h8500-tdep.c, hppa-tdep.c, infcmd.c: Update.
* inflow.c, infrun.c, macroscope.c, mips-tdep.c: Update.
* mn10300-tdep.c, ocd.c, regcache.h, remote-e7000.c: Update.
* remote-mips.c, remote-rdp.c, sh-tdep.c, sparc-tdep.c: Update.
* stack.c, thread.c, tracepoint.c, valops.c, varobj.c: Update.
* z8k-tdep.c, cli/cli-cmds.c: Update.
Index: mi/ChangeLog
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* mi/mi-cmd-stack.c, mi/mi-main.c: Update to use
deprecated_selected_frame.
Index: tui/ChangeLog
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* tui/tui-hooks.c: Update to use deprecated_selected_frame.
* tui/tui.c, tui/tuiDisassem.c, tui/tuiRegs.c: Ditto.
* tui/tuiSource.c, tui/tuiSourceWin.c, tui/tuiWin.c: Ditto.
2002-11-29 20:15:16 +01:00
|
|
|
/* On demand, create the selected frame and then return it. If the
|
|
|
|
selected frame can not be created, this function throws an error. */
|
|
|
|
/* FIXME: cagney/2002-11-28: At present, when there is no selected
|
|
|
|
frame, this function always returns the current (inner most) frame.
|
|
|
|
It should instead, when a thread has previously had its frame
|
|
|
|
selected (but not resumed) and the frame cache invalidated, find
|
|
|
|
and then return that thread's previously selected frame. */
|
|
|
|
extern struct frame_info *get_selected_frame (void);
|
|
|
|
|
2002-11-28 18:11:41 +01:00
|
|
|
/* Select a specific frame. NULL, apparently implies re-select the
|
|
|
|
inner most frame. */
|
|
|
|
extern void select_frame (struct frame_info *);
|
|
|
|
|
2002-11-15 16:50:21 +01:00
|
|
|
/* Given a FRAME, return the next (more inner, younger) or previous
|
|
|
|
(more outer, older) frame. */
|
|
|
|
extern struct frame_info *get_prev_frame (struct frame_info *);
|
|
|
|
extern struct frame_info *get_next_frame (struct frame_info *);
|
|
|
|
|
|
|
|
/* Given a frame's ID, relocate the frame. Returns NULL if the frame
|
|
|
|
is not found. */
|
|
|
|
extern struct frame_info *frame_find_by_id (struct frame_id id);
|
|
|
|
|
|
|
|
/* Base attributes of a frame: */
|
|
|
|
|
|
|
|
/* The frame's `resume' address. Where the program will resume in
|
2003-04-13 17:54:58 +02:00
|
|
|
this frame.
|
|
|
|
|
|
|
|
This replaced: frame->pc; */
|
2002-11-15 16:50:21 +01:00
|
|
|
extern CORE_ADDR get_frame_pc (struct frame_info *);
|
|
|
|
|
2004-04-07 22:38:26 +02:00
|
|
|
/* An address (not necessarily aligned to an instruction boundary)
|
2003-07-11 16:52:17 +02:00
|
|
|
that falls within THIS frame's code block.
|
|
|
|
|
|
|
|
When a function call is the last statement in a block, the return
|
|
|
|
address for the call may land at the start of the next block.
|
|
|
|
Similarly, if a no-return function call is the last statement in
|
|
|
|
the function, the return address may end up pointing beyond the
|
|
|
|
function, and possibly at the start of the next function.
|
|
|
|
|
|
|
|
These methods make an allowance for this. For call frames, this
|
|
|
|
function returns the frame's PC-1 which "should" be an address in
|
|
|
|
the frame's block. */
|
|
|
|
|
|
|
|
extern CORE_ADDR get_frame_address_in_block (struct frame_info *this_frame);
|
|
|
|
extern CORE_ADDR frame_unwind_address_in_block (struct frame_info *next_frame);
|
|
|
|
|
2003-06-09 03:02:07 +02:00
|
|
|
/* The frame's inner-most bound. AKA the stack-pointer. Confusingly
|
|
|
|
known as top-of-stack. */
|
|
|
|
|
|
|
|
extern CORE_ADDR get_frame_sp (struct frame_info *);
|
|
|
|
extern CORE_ADDR frame_sp_unwind (struct frame_info *);
|
|
|
|
|
|
|
|
|
2003-04-05 20:54:38 +02:00
|
|
|
/* Following on from the `resume' address. Return the entry point
|
|
|
|
address of the function containing that resume address, or zero if
|
|
|
|
that function isn't known. */
|
|
|
|
extern CORE_ADDR frame_func_unwind (struct frame_info *fi);
|
|
|
|
extern CORE_ADDR get_frame_func (struct frame_info *fi);
|
|
|
|
|
2002-11-29 02:52:02 +01:00
|
|
|
/* Closely related to the resume address, various symbol table
|
|
|
|
attributes that are determined by the PC. Note that for a normal
|
|
|
|
frame, the PC refers to the resume address after the return, and
|
|
|
|
not the call instruction. In such a case, the address is adjusted
|
2004-04-07 22:38:26 +02:00
|
|
|
so that it (approximately) identifies the call site (and not the
|
|
|
|
return site).
|
2002-11-29 02:52:02 +01:00
|
|
|
|
|
|
|
NOTE: cagney/2002-11-28: The frame cache could be used to cache the
|
|
|
|
computed value. Working on the assumption that the bottle-neck is
|
|
|
|
in the single step code, and that code causes the frame cache to be
|
|
|
|
constantly flushed, caching things in a frame is probably of little
|
|
|
|
benefit. As they say `show us the numbers'.
|
|
|
|
|
|
|
|
NOTE: cagney/2002-11-28: Plenty more where this one came from:
|
|
|
|
find_frame_block(), find_frame_partial_function(),
|
|
|
|
find_frame_symtab(), find_frame_function(). Each will need to be
|
|
|
|
carefully considered to determine if the real intent was for it to
|
|
|
|
apply to the PC or the adjusted PC. */
|
|
|
|
extern void find_frame_sal (struct frame_info *frame,
|
|
|
|
struct symtab_and_line *sal);
|
|
|
|
|
2003-04-01 21:11:01 +02:00
|
|
|
/* Return the frame base (what ever that is) (DEPRECATED).
|
|
|
|
|
|
|
|
Old code was trying to use this single method for two conflicting
|
|
|
|
purposes. Such code needs to be updated to use either of:
|
|
|
|
|
|
|
|
get_frame_id: A low level frame unique identifier, that consists of
|
|
|
|
both a stack and a function address, that can be used to uniquely
|
|
|
|
identify a frame. This value is determined by the frame's
|
|
|
|
low-level unwinder, the stack part [typically] being the
|
|
|
|
top-of-stack of the previous frame, and the function part being the
|
|
|
|
function's start address. Since the correct identification of a
|
|
|
|
frameless function requires both the a stack and function address,
|
|
|
|
the old get_frame_base method was not sufficient.
|
|
|
|
|
|
|
|
get_frame_base_address: get_frame_locals_address:
|
|
|
|
get_frame_args_address: A set of high-level debug-info dependant
|
|
|
|
addresses that fall within the frame. These addresses almost
|
|
|
|
certainly will not match the stack address part of a frame ID (as
|
2003-04-13 17:54:58 +02:00
|
|
|
returned by get_frame_base).
|
|
|
|
|
|
|
|
This replaced: frame->frame; */
|
2002-11-19 Andrew Cagney <ac131313@redhat.com>
* frame.h (FRAME_FP): Delete macro.
(get_frame_base): New function declaration.
* frame.c (get_frame_base): New function.
(get_frame_id): Use ->frame.
(frame_find_by_id): Rewrite to use get_frame_id.
* blockframe.c: Use get_frame_base instead of FRAME_FP.
* cris-tdep.c, d10v-tdep.c, findvar.c, h8500-tdep.c: Ditto.
* hppa-tdep.c, i386-tdep.c, infcmd.c, infrun.c: Ditto.
* m68hc11-tdep.c, m68k-tdep.c, mcore-tdep.c, mips-tdep.c: Ditto.
* mn10200-tdep.c, mn10300-tdep.c, rs6000-tdep.c: Ditto.
* sh-tdep.c, sparc-tdep.c, stack.c, tracepoint.c: Ditto.
* v850-tdep.c, valops.c, z8k-tdep.c: Ditto.
2002-11-24 20:48:13 +01:00
|
|
|
|
|
|
|
extern CORE_ADDR get_frame_base (struct frame_info *);
|
|
|
|
|
2002-11-15 16:50:21 +01:00
|
|
|
/* Return the per-frame unique identifer. Can be used to relocate a
|
2002-12-04 01:05:54 +01:00
|
|
|
frame after a frame cache flush (and other similar operations). If
|
2004-05-08 01:19:14 +02:00
|
|
|
FI is NULL, return the null_frame_id.
|
|
|
|
|
|
|
|
NOTE: kettenis/20040508: These functions return a structure. On
|
|
|
|
platforms where structures are returned in static storage (vax,
|
|
|
|
m68k), this may trigger compiler bugs in code like:
|
|
|
|
|
|
|
|
if (frame_id_eq (get_frame_id (l), get_frame_id (r)))
|
|
|
|
|
|
|
|
where the return value from the first get_frame_id (l) gets
|
|
|
|
overwritten by the second get_frame_id (r). Please avoid writing
|
|
|
|
code like this. Use code like:
|
|
|
|
|
|
|
|
struct frame_id id = get_frame_id (l);
|
|
|
|
if (frame_id_eq (id, get_frame_id (r)))
|
|
|
|
|
|
|
|
instead, since that avoids the bug. */
|
2002-12-04 01:05:54 +01:00
|
|
|
extern struct frame_id get_frame_id (struct frame_info *fi);
|
2004-03-31 21:40:28 +02:00
|
|
|
extern struct frame_id frame_unwind_id (struct frame_info *next_frame);
|
2002-11-15 16:50:21 +01:00
|
|
|
|
2003-04-01 21:11:01 +02:00
|
|
|
/* Assuming that a frame is `normal', return its base-address, or 0 if
|
|
|
|
the information isn't available. NOTE: This address is really only
|
|
|
|
meaningful to the frame's high-level debug info. */
|
|
|
|
extern CORE_ADDR get_frame_base_address (struct frame_info *);
|
|
|
|
|
2003-04-01 21:26:52 +02:00
|
|
|
/* Assuming that a frame is `normal', return the base-address of the
|
|
|
|
local variables, or 0 if the information isn't available. NOTE:
|
2003-04-01 21:11:01 +02:00
|
|
|
This address is really only meaningful to the frame's high-level
|
|
|
|
debug info. Typically, the argument and locals share a single
|
|
|
|
base-address. */
|
|
|
|
extern CORE_ADDR get_frame_locals_address (struct frame_info *);
|
|
|
|
|
2003-04-01 21:26:52 +02:00
|
|
|
/* Assuming that a frame is `normal', return the base-address of the
|
|
|
|
parameter list, or 0 if that information isn't available. NOTE:
|
|
|
|
This address is really only meaningful to the frame's high-level
|
|
|
|
debug info. Typically, the argument and locals share a single
|
2003-04-01 21:11:01 +02:00
|
|
|
base-address. */
|
|
|
|
extern CORE_ADDR get_frame_args_address (struct frame_info *);
|
|
|
|
|
2002-11-15 16:50:21 +01:00
|
|
|
/* The frame's level: 0 for innermost, 1 for its caller, ...; or -1
|
|
|
|
for an invalid frame). */
|
|
|
|
extern int frame_relative_level (struct frame_info *fi);
|
|
|
|
|
2002-11-18 23:19:33 +01:00
|
|
|
/* Return the frame's type. Some are real, some are signal
|
2004-02-12 01:17:53 +01:00
|
|
|
trampolines, and some are completely artificial (dummy). */
|
2002-11-18 23:19:33 +01:00
|
|
|
|
|
|
|
enum frame_type
|
|
|
|
{
|
|
|
|
/* A true stack frame, created by the target program during normal
|
|
|
|
execution. */
|
|
|
|
NORMAL_FRAME,
|
|
|
|
/* A fake frame, created by GDB when performing an inferior function
|
|
|
|
call. */
|
|
|
|
DUMMY_FRAME,
|
|
|
|
/* In a signal handler, various OSs handle this in various ways.
|
|
|
|
The main thing is that the frame may be far from normal. */
|
2004-05-01 21:35:22 +02:00
|
|
|
SIGTRAMP_FRAME,
|
|
|
|
/* Sentinel or registers frame. This frame obtains register values
|
|
|
|
direct from the inferior's registers. */
|
|
|
|
SENTINEL_FRAME
|
2002-11-18 23:19:33 +01:00
|
|
|
};
|
|
|
|
extern enum frame_type get_frame_type (struct frame_info *);
|
|
|
|
|
2002-11-15 16:50:21 +01:00
|
|
|
/* Unwind the stack frame so that the value of REGNUM, in the previous
|
|
|
|
(up, older) frame is returned. If VALUEP is NULL, don't
|
|
|
|
fetch/compute the value. Instead just return the location of the
|
|
|
|
value. */
|
|
|
|
extern void frame_register_unwind (struct frame_info *frame, int regnum,
|
|
|
|
int *optimizedp, enum lval_type *lvalp,
|
|
|
|
CORE_ADDR *addrp, int *realnump,
|
|
|
|
void *valuep);
|
|
|
|
|
2003-06-21 18:26:02 +02:00
|
|
|
/* Fetch a register from this, or unwind a register from the next
|
|
|
|
frame. Note that the get_frame methods are wrappers to
|
|
|
|
frame->next->unwind. They all [potentially] throw an error if the
|
|
|
|
fetch fails. */
|
2002-11-15 16:50:21 +01:00
|
|
|
|
2003-02-02 21:31:43 +01:00
|
|
|
extern void frame_unwind_register (struct frame_info *frame,
|
|
|
|
int regnum, void *buf);
|
2003-06-21 18:26:02 +02:00
|
|
|
extern void get_frame_register (struct frame_info *frame,
|
|
|
|
int regnum, void *buf);
|
|
|
|
|
|
|
|
extern LONGEST frame_unwind_register_signed (struct frame_info *frame,
|
|
|
|
int regnum);
|
|
|
|
extern LONGEST get_frame_register_signed (struct frame_info *frame,
|
|
|
|
int regnum);
|
|
|
|
extern ULONGEST frame_unwind_register_unsigned (struct frame_info *frame,
|
|
|
|
int regnum);
|
|
|
|
extern ULONGEST get_frame_register_unsigned (struct frame_info *frame,
|
|
|
|
int regnum);
|
|
|
|
|
2003-02-02 21:31:43 +01:00
|
|
|
|
2003-06-21 18:26:02 +02:00
|
|
|
/* Use frame_unwind_register_signed. */
|
2002-11-15 16:50:21 +01:00
|
|
|
extern void frame_unwind_unsigned_register (struct frame_info *frame,
|
|
|
|
int regnum, ULONGEST *val);
|
|
|
|
|
|
|
|
/* Get the value of the register that belongs to this FRAME. This
|
2004-09-08 06:56:20 +02:00
|
|
|
function is a wrapper to the call sequence ``frame_register_unwind
|
2002-11-15 16:50:21 +01:00
|
|
|
(get_next_frame (FRAME))''. As per frame_register_unwind(), if
|
|
|
|
VALUEP is NULL, the registers value is not fetched/computed. */
|
|
|
|
|
|
|
|
extern void frame_register (struct frame_info *frame, int regnum,
|
|
|
|
int *optimizedp, enum lval_type *lvalp,
|
|
|
|
CORE_ADDR *addrp, int *realnump,
|
|
|
|
void *valuep);
|
|
|
|
|
2003-06-14 Andrew Cagney <cagney@redhat.com>
Mark Kettenis <kettenis@gnu.org>
* gdbarch.sh (CONVERT_REGISTER_P): Add "type" parameter.
(REGISTER_TO_VALUE, VALUE_TO_REGISTER): Replace raw buffer
parameter with "frame".
* gdbarch.h, gdbarch.c: Re-generate.
* frame.h (put_frame_register): Declare.
* frame.c (put_frame_register): New function.
* arch-utils.c (legacy_convert_register_p): Add "type" parameter.
(legacy_register_to_value): Rewrite, use "frame" to get the
register value.
(legacy_value_to_register): Rewrite, use "frame" to find the
register's location before storing.
* arch-utils.h (legacy_convert_register_p): Update.
(legacy_register_to_value, legacy_value_to_register): Update.
* findvar.c (value_from_register): Rewrite, eliminate use of
REGISTER_CONVERT_TO_TYPE, pass "type" to CONVERT_REGISTER_P, pass
"frame" to REGISTER_TO_VALUE.
* valops.c (value_assign): Move the CONVERT_REGISTER code to the
lval_reg_frame_relative + lval_register branch of the switch. Do
not use REGISTER_CONVERT_FROM_TYPE. Use put_frame_register.
* i386-tdep.c (I386_EBX_REGNUM, I386_ECX_REGNUM, I386_ESI_REGNUM,
I386_EDI_REGNUM): New defines.
(i386_next_regnum, i386_convert_register_p,
i386_register_to_value, i386_value_to_register): New functions.
(i386_register_convertible, i386_register_convert_to_virtual,
i386_convert_to_raw): Remove functions.
(i386_gdbarch_init): Set convert_register_p, register_to_value and
value_to_register instead of register_convertible,
register_convert_to_virtual and register_convert_to_raw.
* mips-tdep.c (mips_convert_register_p): New function.
(mips_value_to_register): Replace mips_register_convert_from_type.
(mips_register_to_value): Replace mips_register_convert_to_type.
(mips_gdbarch_init): Set conver_register_p, value_to_register and
register_to_value.
* alpha-tdep.c (alpha_convert_register_p): Update.
(alpha_value_to_register): Update, store the register.
(alpha_register_to_value): Update, fetch the register.
2003-06-15 00:35:25 +02:00
|
|
|
/* The reverse. Store a register value relative to the specified
|
|
|
|
frame. Note: this call makes the frame's state undefined. The
|
|
|
|
register and frame caches must be flushed. */
|
|
|
|
extern void put_frame_register (struct frame_info *frame, int regnum,
|
|
|
|
const void *buf);
|
|
|
|
|
2002-11-15 16:50:21 +01:00
|
|
|
/* Map between a frame register number and its name. A frame register
|
|
|
|
space is a superset of the cooked register space --- it also
|
2003-02-02 19:53:22 +01:00
|
|
|
includes builtin registers. If NAMELEN is negative, use the NAME's
|
|
|
|
length when doing the comparison. */
|
2002-11-15 16:50:21 +01:00
|
|
|
|
2003-07-07 16:36:58 +02:00
|
|
|
extern int frame_map_name_to_regnum (struct frame_info *frame,
|
|
|
|
const char *name, int namelen);
|
|
|
|
extern const char *frame_map_regnum_to_name (struct frame_info *frame,
|
|
|
|
int regnum);
|
2002-11-15 16:50:21 +01:00
|
|
|
|
2002-11-15 23:16:25 +01:00
|
|
|
/* Unwind the PC. Strictly speaking return the resume address of the
|
|
|
|
calling frame. For GDB, `pc' is the resume address and not a
|
|
|
|
specific register. */
|
|
|
|
|
|
|
|
extern CORE_ADDR frame_pc_unwind (struct frame_info *frame);
|
|
|
|
|
2003-01-19 18:39:16 +01:00
|
|
|
/* Discard the specified frame. Restoring the registers to the state
|
|
|
|
of the caller. */
|
|
|
|
extern void frame_pop (struct frame_info *frame);
|
|
|
|
|
2003-06-03 20:53:37 +02:00
|
|
|
/* Return memory from the specified frame. A frame knows its thread /
|
|
|
|
LWP and hence can find its way down to a target. The assumption
|
|
|
|
here is that the current and previous frame share a common address
|
|
|
|
space.
|
|
|
|
|
|
|
|
If the memory read fails, these methods throw an error.
|
|
|
|
|
|
|
|
NOTE: cagney/2003-06-03: Should there be unwind versions of these
|
|
|
|
methods? That isn't clear. Can code, for instance, assume that
|
|
|
|
this and the previous frame's memory or architecture are identical?
|
|
|
|
If architecture / memory changes are always separated by special
|
|
|
|
adaptor frames this should be ok. */
|
|
|
|
|
|
|
|
extern void get_frame_memory (struct frame_info *this_frame, CORE_ADDR addr,
|
|
|
|
void *buf, int len);
|
|
|
|
extern LONGEST get_frame_memory_signed (struct frame_info *this_frame,
|
|
|
|
CORE_ADDR memaddr, int len);
|
|
|
|
extern ULONGEST get_frame_memory_unsigned (struct frame_info *this_frame,
|
|
|
|
CORE_ADDR memaddr, int len);
|
|
|
|
|
2004-04-02 21:44:25 +02:00
|
|
|
/* Same as above, but return non-zero when the entire memory read
|
|
|
|
succeeds, zero otherwize. */
|
|
|
|
extern int safe_frame_unwind_memory (struct frame_info *this_frame,
|
|
|
|
CORE_ADDR addr, void *buf, int len);
|
|
|
|
|
2003-06-03 20:53:37 +02:00
|
|
|
/* Return this frame's architecture. */
|
|
|
|
|
|
|
|
extern struct gdbarch *get_frame_arch (struct frame_info *this_frame);
|
|
|
|
|
|
|
|
|
2004-04-07 22:38:26 +02:00
|
|
|
/* Values for the source flag to be used in print_frame_info_base(). */
|
2000-01-18 01:55:13 +01:00
|
|
|
enum print_what
|
|
|
|
{
|
|
|
|
/* Print only the source line, like in stepi. */
|
|
|
|
SRC_LINE = -1,
|
|
|
|
/* Print only the location, i.e. level, address (sometimes)
|
|
|
|
function, args, file, line, line num. */
|
|
|
|
LOCATION,
|
|
|
|
/* Print both of the above. */
|
|
|
|
SRC_AND_LOC,
|
|
|
|
/* Print location only, but always include the address. */
|
|
|
|
LOC_AND_ADDRESS
|
|
|
|
};
|
|
|
|
|
2001-03-21 17:42:39 +01:00
|
|
|
/* Allocate additional space for appendices to a struct frame_info.
|
|
|
|
NOTE: Much of GDB's code works on the assumption that the allocated
|
|
|
|
saved_regs[] array is the size specified below. If you try to make
|
2004-04-07 22:38:26 +02:00
|
|
|
that array smaller, GDB will happily walk off its end. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2001-03-21 17:42:39 +01:00
|
|
|
#ifdef SIZEOF_FRAME_SAVED_REGS
|
|
|
|
#error "SIZEOF_FRAME_SAVED_REGS can not be re-defined"
|
1999-04-16 03:35:26 +02:00
|
|
|
#endif
|
2001-03-21 17:42:39 +01:00
|
|
|
#define SIZEOF_FRAME_SAVED_REGS \
|
|
|
|
(sizeof (CORE_ADDR) * (NUM_REGS+NUM_PSEUDO_REGS))
|
|
|
|
|
2003-01-09 19:53:21 +01:00
|
|
|
/* Allocate zero initialized memory from the frame cache obstack.
|
|
|
|
Appendices to the frame info (such as the unwind cache) should
|
|
|
|
allocate memory using this method. */
|
|
|
|
|
|
|
|
extern void *frame_obstack_zalloc (unsigned long size);
|
2003-01-21 20:32:42 +01:00
|
|
|
#define FRAME_OBSTACK_ZALLOC(TYPE) ((TYPE *) frame_obstack_zalloc (sizeof (TYPE)))
|
2003-04-25 23:20:58 +02:00
|
|
|
#define FRAME_OBSTACK_CALLOC(NUMBER,TYPE) ((TYPE *) frame_obstack_zalloc ((NUMBER) * sizeof (TYPE)))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-08-02 05:36:24 +02:00
|
|
|
/* Create a regcache, and copy the frame's registers into it. */
|
|
|
|
struct regcache *frame_save_as_regcache (struct frame_info *this_frame);
|
|
|
|
|
gdb/ChangeLog:
* stack.c (get_selected_block): Add new argument `addr_in_block',
used to return the exact code address we used to select the block,
not just the block.
* blockframe.c (get_frame_block, get_current_block): Same.
* frame.h (get_frame_block, get_current_block,
get_selected_block): Update declarations.
* linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
gdb/mi/ChangeLog:
* mi-cmd-stack.c (list_args_or_locals): Pass new arg to
get_frame_block. (See entry in gdb/ChangeLog.)
2002-04-06 00:04:43 +02:00
|
|
|
extern struct block *get_frame_block (struct frame_info *,
|
|
|
|
CORE_ADDR *addr_in_block);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2002-11-29 16:39:51 +01:00
|
|
|
/* Return the `struct block' that belongs to the selected thread's
|
|
|
|
selected frame. If the inferior has no state, return NULL.
|
|
|
|
|
|
|
|
NOTE: cagney/2002-11-29:
|
|
|
|
|
|
|
|
No state? Does the inferior have any execution state (a core file
|
|
|
|
does, an executable does not). At present the code tests
|
|
|
|
`target_has_stack' but I'm left wondering if it should test
|
|
|
|
`target_has_registers' or, even, a merged target_has_state.
|
|
|
|
|
|
|
|
Should it look at the most recently specified SAL? If the target
|
|
|
|
has no state, should this function try to extract a block from the
|
|
|
|
most recently selected SAL? That way `list foo' would give it some
|
2004-04-07 22:38:26 +02:00
|
|
|
sort of reference point. Then again, perhaps that would confuse
|
2002-11-29 16:39:51 +01:00
|
|
|
things.
|
|
|
|
|
|
|
|
Calls to this function can be broken down into two categories: Code
|
|
|
|
that uses the selected block as an additional, but optional, data
|
|
|
|
point; Code that uses the selected block as a prop, when it should
|
|
|
|
have the relevant frame/block/pc explicitly passed in.
|
|
|
|
|
|
|
|
The latter can be eliminated by correctly parameterizing the code,
|
|
|
|
the former though is more interesting. Per the "address" command,
|
2004-04-07 22:38:26 +02:00
|
|
|
it occurs in the CLI code and makes it possible for commands to
|
2002-11-29 16:39:51 +01:00
|
|
|
work, even when the inferior has no state. */
|
|
|
|
|
gdb/ChangeLog:
* stack.c (get_selected_block): Add new argument `addr_in_block',
used to return the exact code address we used to select the block,
not just the block.
* blockframe.c (get_frame_block, get_current_block): Same.
* frame.h (get_frame_block, get_current_block,
get_selected_block): Update declarations.
* linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
gdb/mi/ChangeLog:
* mi-cmd-stack.c (list_args_or_locals): Pass new arg to
get_frame_block. (See entry in gdb/ChangeLog.)
2002-04-06 00:04:43 +02:00
|
|
|
extern struct block *get_selected_block (CORE_ADDR *addr_in_block);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
extern struct symbol *get_frame_function (struct frame_info *);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
extern CORE_ADDR get_pc_function_start (CORE_ADDR);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
extern struct frame_info *find_relative_frame (struct frame_info *, int *);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-04-28 Andrew Cagney <cagney@redhat.com>
* stack.c (print_stack_frame_stub): Delete declaration.
(struct print_stack_frame_args, print_stack_frame)
(print_frame_info, print_frame): Replace "source" with print what.
Replace "print" with "print_level". Replace "args" with
"print_args".
* frame.h (show_and_print_stack_frame, print_stack_frame)
(print_frame_info): Update declarations.
* stack.c (select_and_print_frame, frame_command)
(current_frame_command, up_command, down_command): Update calls -
use get_selected_frame, pass "enum print_what" for source, do not
call frame_relative_level.
* mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Ditto.
* remote-rdp.c (remote_rdp_open): Ditto.
* remote-mips.c (common_open): Ditto.
* remote-e7000.c (e7000_start_remote): Ditto.
* ocd.c (ocd_start_remote): Ditto.
* mi/mi-main.c (mi_cmd_exec_return): Ditto.
* infrun.c (normal_stop): Ditto.
* inflow.c (kill_command): Ditto.
* infcmd.c (finish_command): Ditto.
* corelow.c (core_open): Ditto.
* tracepoint.c (finish_tfind_command): Ditto.
* thread.c (info_threads_command, info_threads_command)
(restore_current_thread, do_captured_thread_select): Ditto.
* ada-tasks.c (task_command): Ditto.
2004-04-28 18:36:25 +02:00
|
|
|
extern void show_and_print_stack_frame (struct frame_info *fi, int print_level,
|
|
|
|
enum print_what print_what);
|
1999-04-26 20:34:20 +02:00
|
|
|
|
2004-04-28 Andrew Cagney <cagney@redhat.com>
* stack.c (print_stack_frame_stub): Delete declaration.
(struct print_stack_frame_args, print_stack_frame)
(print_frame_info, print_frame): Replace "source" with print what.
Replace "print" with "print_level". Replace "args" with
"print_args".
* frame.h (show_and_print_stack_frame, print_stack_frame)
(print_frame_info): Update declarations.
* stack.c (select_and_print_frame, frame_command)
(current_frame_command, up_command, down_command): Update calls -
use get_selected_frame, pass "enum print_what" for source, do not
call frame_relative_level.
* mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Ditto.
* remote-rdp.c (remote_rdp_open): Ditto.
* remote-mips.c (common_open): Ditto.
* remote-e7000.c (e7000_start_remote): Ditto.
* ocd.c (ocd_start_remote): Ditto.
* mi/mi-main.c (mi_cmd_exec_return): Ditto.
* infrun.c (normal_stop): Ditto.
* inflow.c (kill_command): Ditto.
* infcmd.c (finish_command): Ditto.
* corelow.c (core_open): Ditto.
* tracepoint.c (finish_tfind_command): Ditto.
* thread.c (info_threads_command, info_threads_command)
(restore_current_thread, do_captured_thread_select): Ditto.
* ada-tasks.c (task_command): Ditto.
2004-04-28 18:36:25 +02:00
|
|
|
extern void print_stack_frame (struct frame_info *, int print_level,
|
|
|
|
enum print_what print_what);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
extern void show_stack_frame (struct frame_info *);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-04-28 Andrew Cagney <cagney@redhat.com>
* stack.c (print_stack_frame_stub): Delete declaration.
(struct print_stack_frame_args, print_stack_frame)
(print_frame_info, print_frame): Replace "source" with print what.
Replace "print" with "print_level". Replace "args" with
"print_args".
* frame.h (show_and_print_stack_frame, print_stack_frame)
(print_frame_info): Update declarations.
* stack.c (select_and_print_frame, frame_command)
(current_frame_command, up_command, down_command): Update calls -
use get_selected_frame, pass "enum print_what" for source, do not
call frame_relative_level.
* mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Ditto.
* remote-rdp.c (remote_rdp_open): Ditto.
* remote-mips.c (common_open): Ditto.
* remote-e7000.c (e7000_start_remote): Ditto.
* ocd.c (ocd_start_remote): Ditto.
* mi/mi-main.c (mi_cmd_exec_return): Ditto.
* infrun.c (normal_stop): Ditto.
* inflow.c (kill_command): Ditto.
* infcmd.c (finish_command): Ditto.
* corelow.c (core_open): Ditto.
* tracepoint.c (finish_tfind_command): Ditto.
* thread.c (info_threads_command, info_threads_command)
(restore_current_thread, do_captured_thread_select): Ditto.
* ada-tasks.c (task_command): Ditto.
2004-04-28 18:36:25 +02:00
|
|
|
extern void print_frame_info (struct frame_info *, int print_level,
|
|
|
|
enum print_what print_what, int args);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
extern struct frame_info *block_innermost_frame (struct block *);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-06-10 Andrew Cagney <cagney@gnu.org>
* gdbarch.sh (DEPRECATED_PC_IN_CALL_DUMMY): Delete.
* gdbarch.h, gdbarch.c: Re-generate.
* frame.h (deprecated_pc_in_call_dummy): Delete "sp" and "fp"
parameters.
* dummy-frame.c (deprecated_pc_in_call_dummy): Update.
* arm-tdep.c (arm_pc_is_thumb_dummy): Call
deprecated_pc_in_call_dummy instead of
DEPRECATED_PC_IN_CALL_DUMMY.
(arm_skip_prologue): Ditto.
* xstormy16-tdep.c (xstormy16_pop_frame, xstormy16_scan_prologue)
(xstormy16_frame_saved_pc, xstormy16_frame_chain): Ditto.
* v850-tdep.c (v850_find_callers_reg, v850_frame_chain)
(v850_pop_frame, v850_frame_saved_pc, v850_frame_init_saved_regs):
Ditto.
* sh64-tdep.c (sh64_frame_chain, sh64_get_saved_pr)
(sh64_init_extra_frame_info, sh64_get_saved_register)
(sh64_pop_frame): Ditto.
* mips-tdep.c (non_heuristic_proc_desc): Ditto.
* mcore-tdep.c (mcore_find_callers_reg, mcore_frame_saved_pc)
(mcore_pop_frame, mcore_init_extra_frame_info): Ditto.
* h8300-tdep.c (h8300_frame_chain, h8300_frame_saved_pc)
(h8300_pop_frame): Ditto.
* blockframe.c (legacy_inside_entry_func)
(legacy_frame_chain_valid): Ditto.
* frame.c (frame_type_from_pc, legacy_get_prev_frame): Update call
to deprecated_pc_in_call_dummy.
2004-06-10 15:22:07 +02:00
|
|
|
extern int deprecated_pc_in_call_dummy (CORE_ADDR pc);
|
2002-06-26 17:28:46 +02:00
|
|
|
|
2003-02-02 21:31:43 +01:00
|
|
|
/* FIXME: cagney/2003-02-02: Should be deprecated or replaced with a
|
2003-09-29 00:32:20 +02:00
|
|
|
function called get_frame_register_p(). This slightly weird (and
|
|
|
|
older) variant of get_frame_register() returns zero (indicating the
|
|
|
|
register is unavailable) if either: the register isn't cached; or
|
|
|
|
the register has been optimized out. Problem is, neither check is
|
|
|
|
exactly correct. A register can't be optimized out (it may not
|
2003-02-02 21:31:43 +01:00
|
|
|
have been saved as part of a function call); The fact that a
|
|
|
|
register isn't in the register cache doesn't mean that the register
|
|
|
|
isn't available (it could have been fetched from memory). */
|
|
|
|
|
2002-04-12 20:18:59 +02:00
|
|
|
extern int frame_register_read (struct frame_info *frame, int regnum,
|
|
|
|
void *buf);
|
|
|
|
|
2002-10-02 Elena Zannoni <ezannoni@redhat.com>
* inferior.h (registers_info, stepi_command, nexti_command,
continue_command, interrupt_target_command): Export from infcmd.c.
* frame.h (args_info, selected_frame_level_changed_hook,
return_command): Export from stack.c.
* v850ice.c (stepi_command, nexti_command, continue_command): use
prototypes from inferior.h.
* tracepoint.c (registers_info, args_info, locals_info): Use
prototypes from frame.h and inferior.h.
* Makefile.in (mi-main.o): Add dependency on frame.h.
2002-10-02 Elena Zannoni <ezannoni@redhat.com>
* mi-main.c (mi_cmd_exec_return): Don't use
return_command_wrapper, use return_command instead.
(mi_cmd_exec_interrupt): Don't use
interrupt_target_command_wrapper, use interrupt_target_command
instead.
(return_command_wrapper, interrupt_target_command_wrapper):
Delete.
Include frame.h.
2002-10-02 Elena Zannoni <ezannoni@redhat.com>
* tui-hooks.c (selected_frame_level_changed_hook): Use the one
exported from frame.h.
2002-10-02 23:33:59 +02:00
|
|
|
/* From stack.c. */
|
|
|
|
extern void args_info (char *, int);
|
|
|
|
|
|
|
|
extern void locals_info (char *, int);
|
|
|
|
|
2004-04-21 Andrew Cagney <cagney@redhat.com>
* annotate.h (deprecated_annotate_starting_hook)
(deprecated_annotate_stopped_hook)
(deprecated_annotate_exited_hook)
(deprecated_annotate_signal_hook)
(deprecated_annotate_signalled_hook): Deprecate.
* tracepoint.h (deprecated_create_tracepoint_hook)
(deprecated_delete_tracepoint_hook)
(deprecated_modify_tracepoint_hook)
(deprecated_trace_find_hook)
(deprecated_trace_start_stop_hook): Deprecate.
* target.h (deprecated_target_new_objfile_hook): Deprecate.
* remote.h (deprecated_target_resume_hook)
(deprecated_target_wait_loop_hook): Deprecate.
* gdbcore.h (deprecated_exec_file_display_hook)
(deprecated_file_changed_hook): Deprecate.
* frame.h (deprecated_selected_frame_level_changed_hook): Deprecate.
* defs.h (deprecated_modify_breakpoint_hook)
(deprecated_command_loop_hook, deprecated_show_load_progress)
(deprecated_print_frame_info_listing_hook)
(deprecated_query_hook, deprecated_warning_hook)
(deprecated_flush_hook, deprecated_create_breakpoint_hook)
(deprecated_delete_breakpoint_hook)
(deprecated_interactive_hook, deprecated_registers_changed_hook)
(deprecated_readline_begin_hook, deprecated_readline_hook)
(deprecated_readline_end_hook, deprecated_register_changed_hook)
(deprecated_memory_changed_hook, deprecated_init_ui_hook)
(deprecated_context_hook, deprecated_target_wait_hook)
(deprecated_attach_hook, deprecated_detach_hook)
(deprecated_call_command_hook, deprecated_set_hook)
(deprecated_error_hook, deprecated_error_begin_hook)
(deprecated_ui_load_progress_hook): Deprecate.
* valops.c, uw-thread.c, utils.c, tui/tui-io.c: Update.
* tui/tui-hooks.c, tracepoint.c, top.c, thread-db.c: Update.
* target.c, symfile.c, stack.c, sol-thread.c, rs6000-nat.c: Update.
* remote.c, remote-mips.c, regcache.c, mi/mi-interp.c: Update.
* main.c, interps.c, infcmd.c, hpux-thread.c, frame.c: Update.
* exec.c, dsrec.c, d10v-tdep.c, corefile.c, complaints.c: Update.
* cli/cli-script.c, cli/cli-setshow.c, breakpoint.c: Update.
* annotate.c, aix-thread.c: Update.
2004-04-22 01:52:21 +02:00
|
|
|
extern void (*deprecated_selected_frame_level_changed_hook) (int);
|
2002-10-02 Elena Zannoni <ezannoni@redhat.com>
* inferior.h (registers_info, stepi_command, nexti_command,
continue_command, interrupt_target_command): Export from infcmd.c.
* frame.h (args_info, selected_frame_level_changed_hook,
return_command): Export from stack.c.
* v850ice.c (stepi_command, nexti_command, continue_command): use
prototypes from inferior.h.
* tracepoint.c (registers_info, args_info, locals_info): Use
prototypes from frame.h and inferior.h.
* Makefile.in (mi-main.o): Add dependency on frame.h.
2002-10-02 Elena Zannoni <ezannoni@redhat.com>
* mi-main.c (mi_cmd_exec_return): Don't use
return_command_wrapper, use return_command instead.
(mi_cmd_exec_interrupt): Don't use
interrupt_target_command_wrapper, use interrupt_target_command
instead.
(return_command_wrapper, interrupt_target_command_wrapper):
Delete.
Include frame.h.
2002-10-02 Elena Zannoni <ezannoni@redhat.com>
* tui-hooks.c (selected_frame_level_changed_hook): Use the one
exported from frame.h.
2002-10-02 23:33:59 +02:00
|
|
|
|
|
|
|
extern void return_command (char *, int);
|
|
|
|
|
2002-11-28 18:11:41 +01:00
|
|
|
|
|
|
|
/* NOTE: cagney/2002-11-27:
|
|
|
|
|
|
|
|
You might think that the below global can simply be replaced by a
|
|
|
|
call to either get_selected_frame() or select_frame().
|
|
|
|
|
Index: mi/ChangeLog
2003-10-24 Andrew Cagney <cagney@redhat.com>
* tui-out.c: Fix "fortunatly"[sic].
Index: doc/ChangeLog
2003-10-24 Andrew Cagney <cagney@redhat.com>
* annotate.texinfo: Fix "fortunatly"[sic].
2003-10-24 Andrew Cagney <cagney@redhat.com>
* osabi.c (gdbarch_init_osabi): Fix typos, and "fortunatly"[sic].
* PROBLEMS, arch-utils.c, cli-out.c, command.h: Ditto.
* complaints.c, cris-tdep.c, disasm.c, dwarf2-frame.c: Ditto.
* frame.c, frame.h, infcall.c, infcmd.c, infrun.c: Ditto.
* kod.c, mips-tdep.c, regcache.c, regcache.h, remote.c: Ditto.
2003-10-24 19:37:04 +02:00
|
|
|
Unfortunately, it isn't that easy.
|
2002-11-28 18:11:41 +01:00
|
|
|
|
|
|
|
The relevant code needs to be audited to determine if it is
|
2004-04-07 22:38:26 +02:00
|
|
|
possible (or practical) to instead pass the applicable frame in as a
|
2002-11-28 18:11:41 +01:00
|
|
|
parameter. For instance, DEPRECATED_DO_REGISTERS_INFO() relied on
|
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* stack.c (selected_frame, select_frame): Move from here ...
* frame.c (selected_frame, select_frame): ... to here. Include
"language.h".
* Makefile.in (frame.o): Update dependencies.
* frame.c (get_selected_frame): New function.
* frame.h (get_selected_frame): Declare.
(deprecated_selected_frame): Rename selected_frame.
* ada-lang.c, ada-tasks.c, breakpoint.c, corelow.c: Update.
* eval.c, f-valprint.c, findvar.c, frame.c, frame.h: Update.
* h8300-tdep.c, h8500-tdep.c, hppa-tdep.c, infcmd.c: Update.
* inflow.c, infrun.c, macroscope.c, mips-tdep.c: Update.
* mn10300-tdep.c, ocd.c, regcache.h, remote-e7000.c: Update.
* remote-mips.c, remote-rdp.c, sh-tdep.c, sparc-tdep.c: Update.
* stack.c, thread.c, tracepoint.c, valops.c, varobj.c: Update.
* z8k-tdep.c, cli/cli-cmds.c: Update.
Index: mi/ChangeLog
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* mi/mi-cmd-stack.c, mi/mi-main.c: Update to use
deprecated_selected_frame.
Index: tui/ChangeLog
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* tui/tui-hooks.c: Update to use deprecated_selected_frame.
* tui/tui.c, tui/tuiDisassem.c, tui/tuiRegs.c: Ditto.
* tui/tuiSource.c, tui/tuiSourceWin.c, tui/tuiWin.c: Ditto.
2002-11-29 20:15:16 +01:00
|
|
|
the deprecated_selected_frame global, while its replacement,
|
2002-11-28 18:11:41 +01:00
|
|
|
PRINT_REGISTERS_INFO(), is parameterized with the selected frame.
|
2004-04-07 22:38:26 +02:00
|
|
|
The only real exceptions occur at the edge (in the CLI code) where
|
2002-11-28 18:11:41 +01:00
|
|
|
user commands need to pick up the selected frame before proceeding.
|
|
|
|
|
|
|
|
This is important. GDB is trying to stamp out the hack:
|
|
|
|
|
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* stack.c (selected_frame, select_frame): Move from here ...
* frame.c (selected_frame, select_frame): ... to here. Include
"language.h".
* Makefile.in (frame.o): Update dependencies.
* frame.c (get_selected_frame): New function.
* frame.h (get_selected_frame): Declare.
(deprecated_selected_frame): Rename selected_frame.
* ada-lang.c, ada-tasks.c, breakpoint.c, corelow.c: Update.
* eval.c, f-valprint.c, findvar.c, frame.c, frame.h: Update.
* h8300-tdep.c, h8500-tdep.c, hppa-tdep.c, infcmd.c: Update.
* inflow.c, infrun.c, macroscope.c, mips-tdep.c: Update.
* mn10300-tdep.c, ocd.c, regcache.h, remote-e7000.c: Update.
* remote-mips.c, remote-rdp.c, sh-tdep.c, sparc-tdep.c: Update.
* stack.c, thread.c, tracepoint.c, valops.c, varobj.c: Update.
* z8k-tdep.c, cli/cli-cmds.c: Update.
Index: mi/ChangeLog
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* mi/mi-cmd-stack.c, mi/mi-main.c: Update to use
deprecated_selected_frame.
Index: tui/ChangeLog
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* tui/tui-hooks.c: Update to use deprecated_selected_frame.
* tui/tui.c, tui/tuiDisassem.c, tui/tuiRegs.c: Ditto.
* tui/tuiSource.c, tui/tuiSourceWin.c, tui/tuiWin.c: Ditto.
2002-11-29 20:15:16 +01:00
|
|
|
saved_frame = deprecated_selected_frame;
|
|
|
|
deprecated_selected_frame = ...;
|
2002-11-28 18:11:41 +01:00
|
|
|
hack_using_global_selected_frame ();
|
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* stack.c (selected_frame, select_frame): Move from here ...
* frame.c (selected_frame, select_frame): ... to here. Include
"language.h".
* Makefile.in (frame.o): Update dependencies.
* frame.c (get_selected_frame): New function.
* frame.h (get_selected_frame): Declare.
(deprecated_selected_frame): Rename selected_frame.
* ada-lang.c, ada-tasks.c, breakpoint.c, corelow.c: Update.
* eval.c, f-valprint.c, findvar.c, frame.c, frame.h: Update.
* h8300-tdep.c, h8500-tdep.c, hppa-tdep.c, infcmd.c: Update.
* inflow.c, infrun.c, macroscope.c, mips-tdep.c: Update.
* mn10300-tdep.c, ocd.c, regcache.h, remote-e7000.c: Update.
* remote-mips.c, remote-rdp.c, sh-tdep.c, sparc-tdep.c: Update.
* stack.c, thread.c, tracepoint.c, valops.c, varobj.c: Update.
* z8k-tdep.c, cli/cli-cmds.c: Update.
Index: mi/ChangeLog
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* mi/mi-cmd-stack.c, mi/mi-main.c: Update to use
deprecated_selected_frame.
Index: tui/ChangeLog
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* tui/tui-hooks.c: Update to use deprecated_selected_frame.
* tui/tui.c, tui/tuiDisassem.c, tui/tuiRegs.c: Ditto.
* tui/tuiSource.c, tui/tuiSourceWin.c, tui/tuiWin.c: Ditto.
2002-11-29 20:15:16 +01:00
|
|
|
deprecated_selected_frame = saved_frame;
|
2002-11-28 18:11:41 +01:00
|
|
|
|
|
|
|
Take care! */
|
|
|
|
|
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* stack.c (selected_frame, select_frame): Move from here ...
* frame.c (selected_frame, select_frame): ... to here. Include
"language.h".
* Makefile.in (frame.o): Update dependencies.
* frame.c (get_selected_frame): New function.
* frame.h (get_selected_frame): Declare.
(deprecated_selected_frame): Rename selected_frame.
* ada-lang.c, ada-tasks.c, breakpoint.c, corelow.c: Update.
* eval.c, f-valprint.c, findvar.c, frame.c, frame.h: Update.
* h8300-tdep.c, h8500-tdep.c, hppa-tdep.c, infcmd.c: Update.
* inflow.c, infrun.c, macroscope.c, mips-tdep.c: Update.
* mn10300-tdep.c, ocd.c, regcache.h, remote-e7000.c: Update.
* remote-mips.c, remote-rdp.c, sh-tdep.c, sparc-tdep.c: Update.
* stack.c, thread.c, tracepoint.c, valops.c, varobj.c: Update.
* z8k-tdep.c, cli/cli-cmds.c: Update.
Index: mi/ChangeLog
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* mi/mi-cmd-stack.c, mi/mi-main.c: Update to use
deprecated_selected_frame.
Index: tui/ChangeLog
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* tui/tui-hooks.c: Update to use deprecated_selected_frame.
* tui/tui.c, tui/tuiDisassem.c, tui/tuiRegs.c: Ditto.
* tui/tuiSource.c, tui/tuiSourceWin.c, tui/tuiWin.c: Ditto.
2002-11-29 20:15:16 +01:00
|
|
|
extern struct frame_info *deprecated_selected_frame;
|
2002-11-28 18:11:41 +01:00
|
|
|
|
2003-09-08 20:56:03 +02:00
|
|
|
/* NOTE: drow/2003-09-06:
|
|
|
|
|
|
|
|
This function is "a step sideways" for uses of deprecated_selected_frame.
|
|
|
|
They should be fixed as above, but meanwhile, we needed a solution for
|
|
|
|
cases where functions are called with a NULL frame meaning either "the
|
|
|
|
program is not running" or "use the selected frame". Lazy building of
|
|
|
|
deprecated_selected_frame confuses the situation, because now
|
|
|
|
deprecated_selected_frame can be NULL even when the inferior is running.
|
|
|
|
|
|
|
|
This function calls get_selected_frame if the inferior should have a
|
|
|
|
frame, or returns NULL otherwise. */
|
|
|
|
|
|
|
|
extern struct frame_info *deprecated_safe_get_selected_frame (void);
|
2002-11-28 18:11:41 +01:00
|
|
|
|
2002-12-13 17:26:02 +01:00
|
|
|
/* Create a frame using the specified BASE and PC. */
|
2002-11-28 18:11:41 +01:00
|
|
|
|
2002-12-13 17:26:02 +01:00
|
|
|
extern struct frame_info *create_new_frame (CORE_ADDR base, CORE_ADDR pc);
|
2002-11-28 18:11:41 +01:00
|
|
|
|
2002-12-13 22:57:40 +01:00
|
|
|
/* FIXME: cagney/2002-12-06: Has the PC in the current frame changed?
|
|
|
|
"infrun.c", Thanks to DECR_PC_AFTER_BREAK, can change the PC after
|
2003-04-13 17:54:58 +02:00
|
|
|
the initial frame create. This puts things back in sync.
|
|
|
|
|
|
|
|
This replaced: frame->pc = ....; */
|
2002-12-18 19:03:42 +01:00
|
|
|
extern void deprecated_update_frame_pc_hack (struct frame_info *frame,
|
|
|
|
CORE_ADDR pc);
|
|
|
|
|
|
|
|
/* FIXME: cagney/2002-12-18: Has the frame's base changed? Or to be
|
2003-10-10 02:32:04 +02:00
|
|
|
more exact, was that initial guess at the frame's base as returned
|
2004-08-05 16:12:40 +02:00
|
|
|
by the deleted read_fp() wrong? If it was, fix it. This shouldn't
|
2003-04-28 Andrew Cagney <cagney@redhat.com>
* gdbarch.sh (DEPRECATED_TARGET_READ_FP): Replace TARGET_READ_FP.
(DEPRECATED_FP_REGNUM): Replace FP_REGNUM.
* gdbarch.h, gdbarch.c: Re-generate.
* infcall.c (call_function_by_hand): Use DEPRECATED_FP_REGNUM,
DEPRECATED_TARGET_READ_FP, or "sp" to create the dummy frame ID.
* inferior.h (deprecated_read_fp): Rename read_fp.
(generic_target_read_fp): Delete declaration.
* regcache.c (generic_target_read_fp): Delete function.
(deprecated_read_fp): Replace read_fp, use
DEPRECATED_TARGET_READ_FP or DEPRECATED_FP_REGNUM.
* d10v-tdep.c (d10v_read_fp): Delete function.
(d10v_gdbarch_init): Do not set deprecated_read_fp.
* sparc-tdep.c (sparc_gdbarch_init): Do not set
deprecated_target_read_fp to generic_target_read_fp.
* sh-tdep.c (sh_gdbarch_init): Ditto.
* rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
* m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
* frv-tdep.c (frv_gdbarch_init): Ditto.
* xstormy16-tdep.c (xstormy16_gdbarch_init): Set
deprecated_fp_regnum.
* x86-64-tdep.c (x86_64_init_abi): Ditto.
* vax-tdep.c (vax_gdbarch_init): Ditto.
* v850-tdep.c (v850_gdbarch_init): Ditto.
* sparc-tdep.c (sparc_gdbarch_init): Ditto.
* sh-tdep.c (sh_gdbarch_init): Ditto.
* s390-tdep.c (s390_gdbarch_init): Ditto.
* rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
* mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
* mcore-tdep.c (mcore_gdbarch_init): Ditto.
* m68k-tdep.c (m68k_gdbarch_init): Ditto.
* m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
* ia64-tdep.c (ia64_gdbarch_init): Ditto.
* i386-tdep.c (i386_gdbarch_init): Ditto.
* hppa-tdep.c (hppa_gdbarch_init): Ditto.
* h8300-tdep.c (h8300_gdbarch_init): Ditto.
* frv-tdep.c (frv_gdbarch_init): Ditto.
* cris-tdep.c (cris_gdbarch_init): Ditto.
* avr-tdep.c (avr_gdbarch_init): Ditto.
* arm-tdep.c (arm_gdbarch_init): Ditto.
* alpha-tdep.c (alpha_gdbarch_init): Ditto.
* x86-64-tdep.c (x86_64_init_abi): Set deprecated_target_read_fp.
* v850-tdep.c (v850_gdbarch_init): Ditto.
* sparc-tdep.c (sparc_gdbarch_init): Ditto.
* sh-tdep.c (sh_gdbarch_init): Ditto.
* s390-tdep.c (s390_gdbarch_init): Ditto.
* rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
* mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
* mips-tdep.c (mips_gdbarch_init): Ditto.
* m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
* ia64-tdep.c (ia64_gdbarch_init): Ditto.
* hppa-tdep.c (hppa_gdbarch_init): Ditto.
* frv-tdep.c (frv_gdbarch_init): Ditto.
* avr-tdep.c (avr_gdbarch_init): Ditto.
* arm-tdep.c (arm_gdbarch_init): Ditto.
* vax-tdep.c (vax_frame_init_saved_regs): Replace FP_REGNUM with
DEPRECATED_FP_REGNUM.
(vax_push_dummy_frame, vax_pop_frame): Ditto.
* std-regs.c (value_of_builtin_frame_fp_reg): Ditto.
* sparc-tdep.c (sparc_init_extra_frame_info): Ditto.
(sparc_push_dummy_frame, sparc64_read_fp): Ditto.
(sparc32_register_virtual_type): Ditto.
* sh-tdep.c (sh64_frame_chain): Ditto.
(sh64_get_saved_register, sh64_pop_frame): Ditto.
(sh_nofp_frame_init_saved_regs): Ditto.
(sh64_nofp_frame_init_saved_regs): Ditto.
(sh_fp_frame_init_saved_regs): Ditto.
* remote-mips.c (mips_wait, mips_fetch_registers): Ditto.
* remote-e7000.c (fetch_regs_from_dump): Ditto.
* procfs.c (procfs_fetch_registers): Ditto.
(procfs_store_registers): Ditto.
* ns32knbsd-nat.c (fetch_inferior_registers): Ditto.
(store_inferior_registers, fetch_core_registers): Ditto.
(fetch_kcore_registers, clear_regs): Ditto.
* ns32k-tdep.c (ns32k_frame_init_saved_regs): Ditto.
(ns32k_push_dummy_frame, ns32k_pop_frame): Ditto.
* nlm/i386.h (DEPRECATED_FP_REGNUM): Ditto.
* nlm/i386.c (do_status): Ditto.
* mipsv4-nat.c (supply_gregset): Ditto.
* mips-tdep.c: Ditto for comments.
* mips-nat.c (fetch_inferior_registers): Ditto.
(store_inferior_registers, fetch_core_registers): Ditto.
* m68k-tdep.c (m68k_push_dummy_frame): Ditto.
(m68k_pop_frame, m68k_frame_init_saved_regs): Ditto.
* i386-tdep.c (i386_frame_init_saved_regs): Ditto.
(i386_do_pop_frame, i386_register_type): Ditto.
* hppa-tdep.c (hppa_frame_chain): Ditto.
(hppa_push_dummy_frame, find_dummy_frame_regs): Ditto.
(hppa_pop_frame, hppa_read_fp): Ditto.
(skip_prologue_hard_way, hppa_frame_find_saved_regs): Ditto.
* cris-tdep.c (cris_examine, cris_pop_frame): Ditto.
* config/vax/nm-vax.h (REGISTER_U_ADDR): Ditto.
* config/sparc/tm-sparc.h (DEPRECATED_FP_REGNUM): Ditto.
* config/sparc/tm-sp64.h (DEPRECATED_FP_REGNUM): Ditto.
* config/s390/tm-s390.h (DEPRECATED_FP_REGNUM): Ditto.
* config/pa/tm-hppa64.h (DEPRECATED_FP_REGNUM): Ditto.
* config/ia64/tm-ia64.h (DEPRECATED_FP_REGNUM): Ditto.
* blockframe.c: Ditto for comments.
* arch-utils.h: Ditto for comments.
* arch-utils.c (legacy_virtual_frame_pointer): Ditto.
* alphanbsd-tdep.c (fetch_core_registers): Ditto.
* alphabsd-nat.c (fetch_inferior_registers): Ditto.
* alpha-tdep.h: Ditto for comments.
* alpha-tdep.c (alpha_cannot_fetch_register): Ditto.
(alpha_cannot_store_register): Ditto.
(alpha_push_dummy_frame): Ditto.
* alpha-nat.c (supply_gregset): Ditto.
* config/sparc/tm-sp64.h (DEPRECATED_TARGET_READ_FP): Update.
* config/pa/tm-hppa64.h (DEPRECATED_TARGET_READ_FP): Update.
* config/sparc/tm-sparc.h: Update comment.
* hppa-tdep.c (hppa_init_extra_frame_info): Use
deprecated_read_fp instead of TARGET_READ_FP.
(hppa_init_extra_frame_info, hppa_frame_chain): Ditto.
(hppa_push_dummy_frame, hppa_read_fp): Ditto.
* sparc-tdep.c (sparc_init_extra_frame_info): Use
deprecated_read_fp instead of read_fp.
* s390-tdep.c (s390_push_arguments): Ditto.
* ia64-tdep.c (ia64_gdbarch_init): Ditto.
* frame.h: Ditto in comments.
* frame.c (legacy_get_prev_frame): Ditto.
* dummy-frame.c (dummy_frame_this_id): Ditto.
* arm-tdep.c (arm_init_extra_frame_info): Ditto.
2003-04-28 Andrew Cagney <cagney@redhat.com>
* gdbint.texinfo (Target Architecture Definition): Replace
read_fp, TARGET_READ_FP and FP_REGNUM, with deprecated_read_fp,
DEPRECATED_TARGET_READ_FP and DEPRECATED_REGNUM.
2003-04-29 03:49:49 +02:00
|
|
|
be necessary since the code should be getting the frame's base
|
|
|
|
correct from the outset.
|
2003-04-13 17:54:58 +02:00
|
|
|
|
|
|
|
This replaced: frame->frame = ....; */
|
2002-12-18 19:03:42 +01:00
|
|
|
extern void deprecated_update_frame_base_hack (struct frame_info *frame,
|
|
|
|
CORE_ADDR base);
|
2002-12-13 22:57:40 +01:00
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
#endif /* !defined (FRAME_H) */
|