aboutsummaryrefslogtreecommitdiff
path: root/gdb/cp-abi.h
diff options
context:
space:
mode:
authorDaniel Jacobowitz <drow@false.org>2002-01-04 18:20:19 +0000
committerDaniel Jacobowitz <drow@false.org>2002-01-04 18:20:19 +0000
commit1514d34ee09f4a99b7f87f308c642a8df525255a (patch)
treefa06aad2b28c05567871a7a4c3febd83d623bd98 /gdb/cp-abi.h
parent7f8c9282581cbc3f7e13d8c5a6f20e086bf2ad7b (diff)
downloadgdb-1514d34ee09f4a99b7f87f308c642a8df525255a.zip
gdb-1514d34ee09f4a99b7f87f308c642a8df525255a.tar.gz
gdb-1514d34ee09f4a99b7f87f308c642a8df525255a.tar.bz2
2002-01-04 Daniel Jacobowitz <drow@mvista.com>
* cp-abi.c: Fix whitespace. (baseclass_offset): New wrapper function. * cp-abi.h (baseclass_offset): Add prototype. (struct cp_abi_ops): Add baseclass_offset pointer. * valops.c (vb_match): Move to... * gnu-v2-abi.c (vb_match): here. * valops.c (baseclass_offset): Move to... * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename. * gnu-v3-abi.c (gnuv3_baseclass_offset): New function. * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset. * gnu-v3-abi.c (init_gnuv3_ops): Likewise. * hpacc-abi.c (init_hpacc_ops): Likewise.
Diffstat (limited to 'gdb/cp-abi.h')
-rw-r--r--gdb/cp-abi.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/gdb/cp-abi.h b/gdb/cp-abi.h
index ae62478..7c1e952 100644
--- a/gdb/cp-abi.h
+++ b/gdb/cp-abi.h
@@ -132,7 +132,17 @@ extern struct value *value_virtual_fn_field (struct value **valuep,
extern struct type *value_rtti_type (struct value *value,
int *full, int *top, int *using_enc);
+/* Compute the offset of the baseclass which is
+ the INDEXth baseclass of class TYPE,
+ for value at VALADDR (in host) at ADDRESS (in target).
+ The result is the offset of the baseclass value relative
+ to (the address of)(ARG) + OFFSET.
+ -1 is returned on error. */
+
+extern int baseclass_offset (struct type *type, int index, char *valaddr,
+ CORE_ADDR address);
+
struct cp_abi_ops
{
const char *shortname;
@@ -148,6 +158,8 @@ struct cp_abi_ops
int j, struct type * type, int offset);
struct type *(*rtti_type) (struct value *v, int *full, int *top,
int *using_enc);
+ int (*baseclass_offset) (struct type *type, int index, char *valaddr,
+ CORE_ADDR address);
};