2002-11-08 20:42:00 +01:00
|
|
|
/* Code dealing with dummy stack frames, for GDB, the GNU debugger.
|
|
|
|
|
2008-01-01 23:53:26 +01:00
|
|
|
Copyright (C) 2002, 2004, 2007, 2008 Free Software Foundation, Inc.
|
2002-11-08 20:42:00 +01:00
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
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
|
2007-08-23 20:08:50 +02:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2002-11-08 20:42:00 +01:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-23 20:08:50 +02:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
2002-11-08 20:42:00 +01:00
|
|
|
|
|
|
|
#if !defined (DUMMY_FRAME_H)
|
|
|
|
#define DUMMY_FRAME_H 1
|
|
|
|
|
2008-09-08 17:23:12 +02:00
|
|
|
#include "frame.h"
|
|
|
|
|
2002-11-08 20:42:00 +01:00
|
|
|
struct frame_info;
|
|
|
|
struct regcache;
|
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;
|
2002-11-08 20:42:00 +01:00
|
|
|
|
2004-08-02 19:39:53 +02:00
|
|
|
/* Push the information needed to identify, and unwind from, a dummy
|
|
|
|
frame onto the dummy frame stack. */
|
|
|
|
|
|
|
|
/* NOTE: cagney/2004-08-02: This interface will eventually need to be
|
|
|
|
parameterized with the caller's thread - that will allow per-thread
|
|
|
|
dummy-frame stacks and, hence, per-thread inferior function
|
|
|
|
calls. */
|
|
|
|
|
|
|
|
/* NOTE: cagney/2004-08-02: In the case of ABIs using push_dummy_code
|
|
|
|
containing more than one instruction, this interface many need to
|
|
|
|
be expanded so that it knowns the lower/upper extent of the dummy
|
|
|
|
frame's code. */
|
|
|
|
|
|
|
|
extern void dummy_frame_push (struct regcache *regcache,
|
|
|
|
const struct frame_id *dummy_id);
|
|
|
|
|
2008-08-26 19:40:25 +02:00
|
|
|
extern void dummy_frame_pop (struct frame_id dummy_id);
|
|
|
|
|
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
|
|
|
/* If the PC falls in a dummy frame, return a dummy frame
|
|
|
|
unwinder. */
|
2002-11-08 20:42:00 +01:00
|
|
|
|
2004-08-02 18:07:31 +02:00
|
|
|
extern const struct frame_unwind *const dummy_frame_unwind;
|
2002-12-13 17:40:25 +01:00
|
|
|
|
2002-11-08 20:42:00 +01:00
|
|
|
#endif /* !defined (DUMMY_FRAME_H) */
|