diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-08-01 14:34:39 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-08-01 14:34:39 +0000 |
commit | e66299b3ddd428d2b611c51326140234a72be604 (patch) | |
tree | b3081258de2b327933cc0cb6b46fb88c7bd0814a /gdb/trad-frame.h | |
parent | b6702b23360ddb41470fd527a6e2ef6ad457f6be (diff) | |
download | gdb-e66299b3ddd428d2b611c51326140234a72be604.zip gdb-e66299b3ddd428d2b611c51326140234a72be604.tar.gz gdb-e66299b3ddd428d2b611c51326140234a72be604.tar.bz2 |
2004-08-01 Andrew Cagney <cagney@gnu.org>
* trad-frame.c (trad_frame_get_this_base)
(trad_frame_set_this_base, trad_frame_set_reg_realreg): New
functions.
* trad-frame.h (trad_frame_set_this_base)
(trad_frame_get_this_base, trad_frame_set_reg_realreg): Declare.
Diffstat (limited to 'gdb/trad-frame.h')
-rw-r--r-- | gdb/trad-frame.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/trad-frame.h b/gdb/trad-frame.h index 95c7028..55a257f 100644 --- a/gdb/trad-frame.h +++ b/gdb/trad-frame.h @@ -39,7 +39,12 @@ void trad_frame_set_id (struct trad_frame_cache *this_trad_cache, struct frame_id this_id); void trad_frame_get_id (struct trad_frame_cache *this_trad_cache, struct frame_id *this_id); +void trad_frame_set_this_base (struct trad_frame_cache *this_trad_cache, + CORE_ADDR this_base); +CORE_ADDR trad_frame_get_this_base (struct trad_frame_cache *this_trad_cache); +void trad_frame_set_reg_realreg (struct trad_frame_cache *this_trad_cache, + int regnum, int realreg); void trad_frame_set_reg_unknown (struct trad_frame_cache *this_trad_cache, int regnum, CORE_ADDR addr); void trad_frame_set_reg_addr (struct trad_frame_cache *this_trad_cache, |