summaryrefslogtreecommitdiff
path: root/gdb/trad-frame.h
diff options
context:
space:
mode:
authorAndrew Burgess <andrew.burgess@embecosm.com>2018-08-17 08:54:26 +0100
committerAndrew Burgess <andrew.burgess@embecosm.com>2018-09-03 15:48:41 +0100
commit23e60e7a4ea772eabb6ae4788913e228763755cf (patch)
treead718250e5ee1563a221b542739735d73b48dab4 /gdb/trad-frame.h
parent20a4d0bd98969ddbfead7288e6027639dcbd9a21 (diff)
downloadbinutils-gdb-23e60e7a4ea772eabb6ae4788913e228763755cf.tar.gz
gdb: Extend the trad-frame API
Adds two new functions to the trad-frame API and update the internals of trad-frame to use the new functions. These functions will be used in later commits. gdb/ChangeLog: * trad-frame.h (trad_frame_set_realreg): Declare. (trad_frame_set_addr): Declare. * trad-frame.c (trad_frame_set_realreg): Define new function. (trad_frame_set_addr): Define new function. (trad_frame_set_reg_realreg): Use new function. (trad_frame_set_reg_addr): Use new function.
Diffstat (limited to 'gdb/trad-frame.h')
-rw-r--r--gdb/trad-frame.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/trad-frame.h b/gdb/trad-frame.h
index f7ec43cc80c..a11a2c29c9c 100644
--- a/gdb/trad-frame.h
+++ b/gdb/trad-frame.h
@@ -88,6 +88,14 @@ struct trad_frame_saved_reg
void trad_frame_set_value (struct trad_frame_saved_reg this_saved_regs[],
int regnum, LONGEST val);
+/* Encode REGNUM is in REALREG in the trad-frame. */
+void trad_frame_set_realreg (struct trad_frame_saved_reg this_saved_regs[],
+ int regnum, int realreg);
+
+/* Encode REGNUM is at address ADDR in the trad-frame. */
+void trad_frame_set_addr (struct trad_frame_saved_reg this_trad_cache[],
+ int regnum, CORE_ADDR addr);
+
/* Mark REGNUM as unknown. */
void trad_frame_set_unknown (struct trad_frame_saved_reg this_saved_regs[],
int regnum);