summaryrefslogtreecommitdiff
path: root/gdb/cp-abi.c
diff options
context:
space:
mode:
authorDaniel Jacobowitz <dan@debian.org>2002-01-04 18:20:19 +0000
committerDaniel Jacobowitz <dan@debian.org>2002-01-04 18:20:19 +0000
commitd1d92341e306e9cd03ea55f30d94ec7e77376654 (patch)
tree7757382b948fbdc6ca0f69f6273f0a57fee3b530 /gdb/cp-abi.c
parenta2d59c77282a07fb8822fb1630789c0ea7fb0e92 (diff)
downloadgdb-d1d92341e306e9cd03ea55f30d94ec7e77376654.tar.gz
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.c')
-rw-r--r--gdb/cp-abi.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/gdb/cp-abi.c b/gdb/cp-abi.c
index b9dac53df52..d4eb0a00d08 100644
--- a/gdb/cp-abi.c
+++ b/gdb/cp-abi.c
@@ -60,6 +60,15 @@ is_operator_name (const char *name)
return (*current_cp_abi.is_operator_name) (name);
}
+int
+baseclass_offset (struct type *type, int index, char *valaddr,
+ CORE_ADDR address)
+{
+ if (current_cp_abi.baseclass_offset == NULL)
+ error ("ABI doesn't define required function baseclass_offset");
+ return (*current_cp_abi.baseclass_offset) (type, index, valaddr, address);
+}
+
struct value *
value_virtual_fn_field (struct value **arg1p, struct fn_field * f, int j,
struct type * type, int offset)
@@ -68,6 +77,7 @@ value_virtual_fn_field (struct value **arg1p, struct fn_field * f, int j,
return NULL;
return (*current_cp_abi.virtual_fn_field) (arg1p, f, j, type, offset);
}
+
struct type *
value_rtti_type (struct value *v, int *full, int *top, int *using_enc)
{