aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-08-01 14:34:39 +0000
committerAndrew Cagney <cagney@redhat.com>2004-08-01 14:34:39 +0000
commite66299b3ddd428d2b611c51326140234a72be604 (patch)
treeb3081258de2b327933cc0cb6b46fb88c7bd0814a /gdb
parentb6702b23360ddb41470fd527a6e2ef6ad457f6be (diff)
downloadbinutils-e66299b3ddd428d2b611c51326140234a72be604.zip
binutils-e66299b3ddd428d2b611c51326140234a72be604.tar.gz
binutils-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')
-rw-r--r--gdb/ChangeLog8
-rw-r--r--gdb/trad-frame.c21
-rw-r--r--gdb/trad-frame.h5
3 files changed, 34 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index f51436a..6126452 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,11 @@
+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.
+
2004-07-31 Andrew Cagney <cagney@gnu.org>
* trad-frame.c (trad_frame_get_prev_register): Rename
diff --git a/gdb/trad-frame.c b/gdb/trad-frame.c
index 58f6c1b..b9ee2e1 100644
--- a/gdb/trad-frame.c
+++ b/gdb/trad-frame.c
@@ -98,6 +98,14 @@ trad_frame_set_value (struct trad_frame_saved_reg this_saved_regs[],
}
void
+trad_frame_set_reg_realreg (struct trad_frame_cache *this_trad_cache,
+ int regnum, int realreg)
+{
+ this_trad_cache->prev_regs[regnum].realreg = realreg;
+ this_trad_cache->prev_regs[regnum].addr = -1;
+}
+
+void
trad_frame_set_reg_addr (struct trad_frame_cache *this_trad_cache,
int regnum, CORE_ADDR addr)
{
@@ -184,3 +192,16 @@ trad_frame_get_id (struct trad_frame_cache *this_trad_cache,
{
(*this_id) = this_trad_cache->this_id;
}
+
+void
+trad_frame_set_this_base (struct trad_frame_cache *this_trad_cache,
+ CORE_ADDR this_base)
+{
+ this_trad_cache->this_base = this_base;
+}
+
+CORE_ADDR
+trad_frame_get_this_base (struct trad_frame_cache *this_trad_cache)
+{
+ return this_trad_cache->this_base;
+}
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,