* NEWS: Mention pointer to member improvements.
* Makefile.in (gnu-v3-abi.o): Delete special rule.
(eval.o, gnu-v3-abi.o, ia64-tdep.o): Update.
* ada-valprint.c (ada_print_scalar): Update for new type codes.
* c-typeprint.c (c_print_type): Update for new type codes.
(c_type_print_varspec_prefix, c_type_print_varspec_suffix)
(c_type_print_base): Likewise.
(c_type_print_args): Rewrite.
* c-valprint.c (c_val_print): Update for new type codes. Remove
support for references to members. Treat methods like functions.
* cp-abi.c (cplus_print_method_ptr, cplus_method_ptr_size)
(cplus_make_method_ptr, cplus_method_ptr_to_value): New.
* cp-abi.h (cplus_print_method_ptr, cplus_method_ptr_size)
(cplus_make_method_ptr, cplus_method_ptr_to_value): New prototypes.
(struct cp_abi_ops): Add corresponding members.
* cp-valprint.c (cp_print_class_method): Delete.
(cp_find_class_member): New function.
(cp_print_class_member): Use it. Simplify support for bogus
member pointers.
* dwarf2read.c (quirk_gcc_member_function_pointer): Use
lookup_methodptr_type.
(read_tag_ptr_to_member_type): Likewise, and lookup_memberptr_type.
* eval.c (evaluate_subexp_standard): Implement EVAL_SKIP for
OP_SCOPE. Update call to value_aggregate_elt. Rewrite member
pointer support.
(evaluate_subexp_for_address): Handle OP_SCOPE explicitly. Handle
references returned by user defined operators.
* f-typeprint.c (f_print_type, f_type_print_varspec_prefix)
(f_type_print_varspec_suffix): Remove support for member pointers.
* gdbtypes.c (lookup_memberptr_type): Renamed from lookup_member_type
and adjusted.
(smash_to_memberptr_type): Likewise, from smash_to_member_type.
(lookup_methodptr_type): New.
(rank_one_type): Adjust for TYPE_CODE_MEMBERPTR.
(recursive_dump_type): Update for new types.
* gdbtypes.h (enum type_code): Replace TYPE_CODE_MEMBER with
TYPE_CODE_MEMBERPTR and TYPE_CODE_METHODPTR.
(lookup_memberptr_type, lookup_methodptr_type)
(smash_to_memberptr_type): New prototypes.
(smash_to_method_type): Formatting fix.
(lookup_member_type, smash_to_member_type): Delete prototypes.
* gnu-v3-abi.c (gnuv3_get_vtable, gnuv3_get_virtual_fn): New.
Do not rely on debug information for the vptr or the method's
enclosing type. Handle function descriptors for IA64.
(gnuv3_virtual_fn_field): Rewrite using the new functions.
(gnuv3_find_method_in, gnuv3_print_method_ptr)
(gnuv3_method_ptr_size, gnuv3_make_method_ptr)
(gnuv3_method_ptr_to_value): New.
(init_gnuv3_ops): Set new members of gnu_v3_abi_ops.
* hpread.c (hpread_type_lookup): Update for new types.
* infcall.c (value_arg_coerce): Likewise.
* m2-typeprint.c (m2_print_type): Remove explicit support
for member pointers.
* m2-valprint.c (m2_val_print): Likewise.
* p-typeprint.c (pascal_type_print_varspec_prefix)
(pascal_type_print_varspec_suffix, pascal_type_print_base): Likewise.
* p-valprint.c (pascal_val_print): Likewise.
(pascal_object_print_class_method, pascal_object_print_class_member):
Delete.
* p-lang.h (pascal_object_print_class_method)
(pascal_object_print_class_member): Delete prototypes.
* stabsread.c (read_type): Update for new types.
* typeprint.c (print_type_scalar): Likewise.
* valops.c (value_struct_elt_for_reference, value_namespace_elt)
(value_maybe_namespace_elt, value_aggregate_elt): Add want_address
argument. Construct a pointer to member if the address of a
function or data member is requested.
(value_cast_pointers): Don't modify the input value.
(value_cast): Adjust pointer to member handling for new types.
Allow null pointer to member constants. Don't modify the input
value.
(value_ind): Remove pointer to member check. Handle function
descriptors for function pointers.
(value_struct_elt, value_find_oload_method_list, check_field):
Remove pointer to member checks.
* value.c (unpack_long): Allow pointers to data members.
(value_from_longest): Allow member pointers.
* value.h (value_aggregate_elt): Add want_address.
* varobj.c (c_variable_editable): Remove check for members.
* gdbarch.sh: Add vtable_function_descriptors and vbit_in_delta.
* ia64-tdep.c (ia64_convert_from_func_ptr_addr): Handle descriptors
in virtual tables.
(ia64_gdbarch_init): Call set_gdbarch_vtable_function_descriptors.
* c-lang.h (cp_print_class_method): Delete prototype.
* arm-tdep.c (arm_gdbarch_init): Call set_gdbarch_vbit_in_delta.
* mips-tdep.c (mips_gdbarch_init): Likewise.
* gdbarch.c, gdbarch.h: Regenerated.
* gdb.cp/classes.exp (test_pointers_to_class_members): Update expected
output. Test the types of members and member pointers.
* gdb.cp/inherit.exp (test_print_mi_member_types): Remove KFAILs for
gdb/2092.
* gdb.cp/member-ptr.exp: Search for a comment instead of a
statement. Enable for GCC. Update expected output for some tests
and add new tests. Remove obsolete GCC KFAILs. Allow GCC's class
layout.
* gdb.cp/member-ptr.cc (Padding, Padding::vspacer, Base, Base::get_x)
(Base::vget_base, Left, Left::vget, Right, Right::vget, Diamond)
(Diamond::vget_base): New.
(main): Add new tests.
* gdb.cp/printmethod.exp: Update expected output for member functions.
* gdb.cp/virtfunc.exp (test_virtual_calls): Add a KFAIL for
print pEe->D::vg().
2007-01-03 19:05:45 +01:00
|
|
|
# Copyright 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004,
|
2011-01-01 16:34:07 +01:00
|
|
|
# 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-08-23 20:14:19 +02:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
1999-04-16 03:35:26 +02:00
|
|
|
# (at your option) any later version.
|
2007-08-23 20:14:19 +02:00
|
|
|
#
|
1999-04-16 03:35:26 +02:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2007-08-23 20:14:19 +02:00
|
|
|
#
|
1999-04-16 03:35:26 +02:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-08-23 20:14:19 +02:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
# This file was written by Fred Fish. (fnf@cygnus.com)
|
2004-01-01 03:30:59 +01:00
|
|
|
# And rewritten by Michael Chastain <mec.gnu@mindspring.com>.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-01-02 05:46:45 +01:00
|
|
|
set nl "\[\r\n\]+"
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
if $tracelevel then {
|
2004-01-01 03:30:59 +01:00
|
|
|
strace $tracelevel
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
1999-09-09 02:02:17 +02:00
|
|
|
if { [skip_cplus_tests] } { continue }
|
|
|
|
|
2004-08-10 00:47:50 +02:00
|
|
|
load_lib "cp-support.exp"
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
set testfile "virtfunc"
|
|
|
|
set srcfile ${testfile}.cc
|
|
|
|
set binfile ${objdir}/${subdir}/${testfile}
|
|
|
|
|
2003-01-20 16:40:07 +01:00
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {c++ debug}] != "" } {
|
2006-08-10 07:27:22 +02:00
|
|
|
untested virtfunc.exp
|
|
|
|
return -1
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
2004-01-02 05:46:45 +01:00
|
|
|
proc test_ptype_of_classes {} {
|
2004-01-01 03:30:59 +01:00
|
|
|
|
2004-01-02 05:46:45 +01:00
|
|
|
# class VA
|
2004-01-01 03:30:59 +01:00
|
|
|
|
2004-08-10 00:47:50 +02:00
|
|
|
cp_test_ptype_class \
|
|
|
|
"ptype VA" "" "class" "VA" \
|
|
|
|
{
|
|
|
|
{ field public "int va;" }
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-01-02 05:46:45 +01:00
|
|
|
# class VB
|
1999-12-07 04:56:43 +01:00
|
|
|
|
2004-08-10 00:47:50 +02:00
|
|
|
cp_test_ptype_class \
|
|
|
|
"ptype VB" "" "class" "VB" \
|
|
|
|
{
|
|
|
|
{ field public "int vb;" }
|
|
|
|
{ method public "int fvb();" }
|
|
|
|
{ method public "virtual int vvb();" }
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-01-01 03:30:59 +01:00
|
|
|
# class V
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-08-10 00:47:50 +02:00
|
|
|
cp_test_ptype_class \
|
|
|
|
"ptype V" "" "class" "V" \
|
|
|
|
{
|
|
|
|
{ base "public VA" }
|
|
|
|
{ base "public VB" }
|
|
|
|
{ field public "int w;" }
|
|
|
|
{ method public "int f();" }
|
|
|
|
{ method public "virtual int vv();" }
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-01-02 05:46:45 +01:00
|
|
|
# class A
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-08-10 00:47:50 +02:00
|
|
|
cp_test_ptype_class \
|
|
|
|
"ptype A" "" "class" "A" \
|
|
|
|
{
|
|
|
|
{ base "public virtual V" }
|
|
|
|
{ vbase "V" }
|
|
|
|
{ field private "int a;" }
|
|
|
|
{ method public "virtual int f();" }
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-01-02 05:46:45 +01:00
|
|
|
# class B
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-08-10 00:47:50 +02:00
|
|
|
cp_test_ptype_class \
|
|
|
|
"ptype B" "" "class" "B" \
|
|
|
|
{
|
|
|
|
{ base "public A" }
|
|
|
|
{ field private "int b;" }
|
|
|
|
{ method public "virtual int f();" }
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-01-02 05:46:45 +01:00
|
|
|
# class C
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-08-10 00:47:50 +02:00
|
|
|
cp_test_ptype_class \
|
|
|
|
"ptype C" "" "class" "C" \
|
|
|
|
{
|
|
|
|
{ base "public virtual V" }
|
|
|
|
{ vbase "V" }
|
|
|
|
{ field public "int c;" }
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-01-02 05:46:45 +01:00
|
|
|
# class AD
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-08-10 00:47:50 +02:00
|
|
|
cp_test_ptype_class \
|
|
|
|
"ptype AD" "" "class" "AD" \
|
|
|
|
{
|
|
|
|
{ method public "virtual int vg();" }
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-01-02 05:46:45 +01:00
|
|
|
# class D
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-08-10 00:47:50 +02:00
|
|
|
cp_test_ptype_class \
|
|
|
|
"ptype D" "" "class" "D" \
|
|
|
|
{
|
|
|
|
{ base "public AD" }
|
|
|
|
{ base "public virtual V" }
|
|
|
|
{ vbase "V" }
|
|
|
|
{ method public "static void s();" }
|
|
|
|
{ method public "virtual int vg();" }
|
|
|
|
{ method public "virtual int vd();" }
|
|
|
|
{ method public "int fd();" }
|
|
|
|
{ field public "int d;" }
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-01-02 05:46:45 +01:00
|
|
|
# class E
|
2004-01-01 03:30:59 +01:00
|
|
|
|
2004-08-10 00:47:50 +02:00
|
|
|
cp_test_ptype_class \
|
|
|
|
"ptype E" "" "class" "E" \
|
|
|
|
{
|
|
|
|
{ base "public B" }
|
|
|
|
{ base "public virtual V" }
|
|
|
|
{ base "public D" }
|
|
|
|
{ base "public C" }
|
|
|
|
{ vbase "V" }
|
|
|
|
{ method public "virtual int f();" }
|
|
|
|
{ method public "virtual int vg();" }
|
|
|
|
{ method public "virtual int vv();" }
|
|
|
|
{ field public "int e;" }
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-01-02 05:46:45 +01:00
|
|
|
# An instance of D
|
2004-01-01 03:30:59 +01:00
|
|
|
|
2004-08-10 00:47:50 +02:00
|
|
|
cp_test_ptype_class "ptype dd" "" "class" "D" ibid
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-01-02 05:46:45 +01:00
|
|
|
# An instance of D *
|
2004-01-01 03:30:59 +01:00
|
|
|
|
2004-08-10 00:47:50 +02:00
|
|
|
cp_test_ptype_class "ptype ppd" "" "class" "D" ibid "*"
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-01-02 05:46:45 +01:00
|
|
|
# An instance of AD *
|
|
|
|
# TODO: this should be named pADd, not pAd.
|
2004-01-01 03:30:59 +01:00
|
|
|
|
2004-08-10 00:47:50 +02:00
|
|
|
cp_test_ptype_class "ptype pAd" "" "class" "AD" ibid "*"
|
|
|
|
|
|
|
|
# Instances of these classes.
|
|
|
|
|
|
|
|
cp_test_ptype_class "ptype a" "" "class" "A" ibid
|
|
|
|
cp_test_ptype_class "ptype b" "" "class" "B" ibid
|
|
|
|
cp_test_ptype_class "ptype c" "" "class" "C" ibid
|
|
|
|
cp_test_ptype_class "ptype d" "" "class" "D" ibid
|
|
|
|
cp_test_ptype_class "ptype e" "" "class" "E" ibid
|
|
|
|
cp_test_ptype_class "ptype v" "" "class" "V" ibid
|
|
|
|
cp_test_ptype_class "ptype vb" "" "class" "VB" ibid
|
|
|
|
|
|
|
|
# Instances of pointers to these classes.
|
|
|
|
|
|
|
|
cp_test_ptype_class "ptype pAa" "" "class" "A" ibid "*"
|
|
|
|
cp_test_ptype_class "ptype pAe" "" "class" "A" ibid "*"
|
|
|
|
cp_test_ptype_class "ptype pBe" "" "class" "B" ibid "*"
|
|
|
|
cp_test_ptype_class "ptype pDd" "" "class" "D" ibid "*"
|
|
|
|
cp_test_ptype_class "ptype pDe" "" "class" "D" ibid "*"
|
|
|
|
cp_test_ptype_class "ptype pVa" "" "class" "V" ibid "*"
|
|
|
|
cp_test_ptype_class "ptype pVv" "" "class" "V" ibid "*"
|
|
|
|
cp_test_ptype_class "ptype pVe" "" "class" "V" ibid "*"
|
|
|
|
cp_test_ptype_class "ptype pVd" "" "class" "V" ibid "*"
|
|
|
|
cp_test_ptype_class "ptype pADe" "" "class" "AD" ibid "*"
|
|
|
|
cp_test_ptype_class "ptype pEe" "" "class" "E" ibid "*"
|
|
|
|
cp_test_ptype_class "ptype pVB" "" "class" "VB" ibid "*"
|
2004-01-02 05:46:45 +01:00
|
|
|
|
2004-01-01 03:30:59 +01:00
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2004-01-01 03:30:59 +01:00
|
|
|
# Call virtual functions.
|
|
|
|
|
|
|
|
proc test_virtual_calls {} {
|
|
|
|
global gdb_prompt
|
|
|
|
global nl
|
|
|
|
|
|
|
|
if [target_info exists gdb,cannot_call_functions] {
|
|
|
|
setup_xfail "*-*-*" 2416
|
|
|
|
fail "This target can not call functions"
|
|
|
|
return 0
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
2004-01-01 03:30:59 +01:00
|
|
|
gdb_test "print pAe->f()" "\\$\[0-9\]+ = 20"
|
|
|
|
gdb_test "print pAa->f()" "\\$\[0-9\]+ = 1"
|
|
|
|
gdb_test "print pDe->vg()" "\\$\[0-9\]+ = 202"
|
|
|
|
gdb_test "print pADe->vg()" "\\$\[0-9\]+ = 202"
|
|
|
|
gdb_test "print pDd->vg()" "\\$\[0-9\]+ = 101"
|
|
|
|
gdb_test "print pEe->vvb()" "\\$\[0-9\]+ = 411"
|
|
|
|
gdb_test "print pVB->vvb()" "\\$\[0-9\]+ = 407"
|
|
|
|
gdb_test "print pBe->vvb()" "\\$\[0-9\]+ = 411"
|
|
|
|
gdb_test "print pDe->vvb()" "\\$\[0-9\]+ = 411"
|
|
|
|
gdb_test "print pEe->vd()" "\\$\[0-9\]+ = 282"
|
|
|
|
gdb_test "print pEe->fvb()" "\\$\[0-9\]+ = 311"
|
|
|
|
|
|
|
|
# more recent results:
|
|
|
|
# wrong value "202"
|
|
|
|
# gcc 2.95.3 -gdwarf-2
|
|
|
|
# gcc 2.95.3 -gstabs+
|
|
|
|
# attempt to take addres of value not located in memory
|
|
|
|
# gcc 3.3.2 -gdwarf-2
|
|
|
|
# gcc 3.3.2 -gstabs+
|
|
|
|
#
|
|
|
|
# -- chastain 2003-12-31
|
|
|
|
|
|
|
|
gdb_test_multiple "print pEe->D::vg()" "print pEe->D::vg()" {
|
|
|
|
-re "\\$\[0-9]+ = 102$nl$gdb_prompt $" {
|
|
|
|
pass "print pEe->D::vg()"
|
|
|
|
}
|
* NEWS: Mention pointer to member improvements.
* Makefile.in (gnu-v3-abi.o): Delete special rule.
(eval.o, gnu-v3-abi.o, ia64-tdep.o): Update.
* ada-valprint.c (ada_print_scalar): Update for new type codes.
* c-typeprint.c (c_print_type): Update for new type codes.
(c_type_print_varspec_prefix, c_type_print_varspec_suffix)
(c_type_print_base): Likewise.
(c_type_print_args): Rewrite.
* c-valprint.c (c_val_print): Update for new type codes. Remove
support for references to members. Treat methods like functions.
* cp-abi.c (cplus_print_method_ptr, cplus_method_ptr_size)
(cplus_make_method_ptr, cplus_method_ptr_to_value): New.
* cp-abi.h (cplus_print_method_ptr, cplus_method_ptr_size)
(cplus_make_method_ptr, cplus_method_ptr_to_value): New prototypes.
(struct cp_abi_ops): Add corresponding members.
* cp-valprint.c (cp_print_class_method): Delete.
(cp_find_class_member): New function.
(cp_print_class_member): Use it. Simplify support for bogus
member pointers.
* dwarf2read.c (quirk_gcc_member_function_pointer): Use
lookup_methodptr_type.
(read_tag_ptr_to_member_type): Likewise, and lookup_memberptr_type.
* eval.c (evaluate_subexp_standard): Implement EVAL_SKIP for
OP_SCOPE. Update call to value_aggregate_elt. Rewrite member
pointer support.
(evaluate_subexp_for_address): Handle OP_SCOPE explicitly. Handle
references returned by user defined operators.
* f-typeprint.c (f_print_type, f_type_print_varspec_prefix)
(f_type_print_varspec_suffix): Remove support for member pointers.
* gdbtypes.c (lookup_memberptr_type): Renamed from lookup_member_type
and adjusted.
(smash_to_memberptr_type): Likewise, from smash_to_member_type.
(lookup_methodptr_type): New.
(rank_one_type): Adjust for TYPE_CODE_MEMBERPTR.
(recursive_dump_type): Update for new types.
* gdbtypes.h (enum type_code): Replace TYPE_CODE_MEMBER with
TYPE_CODE_MEMBERPTR and TYPE_CODE_METHODPTR.
(lookup_memberptr_type, lookup_methodptr_type)
(smash_to_memberptr_type): New prototypes.
(smash_to_method_type): Formatting fix.
(lookup_member_type, smash_to_member_type): Delete prototypes.
* gnu-v3-abi.c (gnuv3_get_vtable, gnuv3_get_virtual_fn): New.
Do not rely on debug information for the vptr or the method's
enclosing type. Handle function descriptors for IA64.
(gnuv3_virtual_fn_field): Rewrite using the new functions.
(gnuv3_find_method_in, gnuv3_print_method_ptr)
(gnuv3_method_ptr_size, gnuv3_make_method_ptr)
(gnuv3_method_ptr_to_value): New.
(init_gnuv3_ops): Set new members of gnu_v3_abi_ops.
* hpread.c (hpread_type_lookup): Update for new types.
* infcall.c (value_arg_coerce): Likewise.
* m2-typeprint.c (m2_print_type): Remove explicit support
for member pointers.
* m2-valprint.c (m2_val_print): Likewise.
* p-typeprint.c (pascal_type_print_varspec_prefix)
(pascal_type_print_varspec_suffix, pascal_type_print_base): Likewise.
* p-valprint.c (pascal_val_print): Likewise.
(pascal_object_print_class_method, pascal_object_print_class_member):
Delete.
* p-lang.h (pascal_object_print_class_method)
(pascal_object_print_class_member): Delete prototypes.
* stabsread.c (read_type): Update for new types.
* typeprint.c (print_type_scalar): Likewise.
* valops.c (value_struct_elt_for_reference, value_namespace_elt)
(value_maybe_namespace_elt, value_aggregate_elt): Add want_address
argument. Construct a pointer to member if the address of a
function or data member is requested.
(value_cast_pointers): Don't modify the input value.
(value_cast): Adjust pointer to member handling for new types.
Allow null pointer to member constants. Don't modify the input
value.
(value_ind): Remove pointer to member check. Handle function
descriptors for function pointers.
(value_struct_elt, value_find_oload_method_list, check_field):
Remove pointer to member checks.
* value.c (unpack_long): Allow pointers to data members.
(value_from_longest): Allow member pointers.
* value.h (value_aggregate_elt): Add want_address.
* varobj.c (c_variable_editable): Remove check for members.
* gdbarch.sh: Add vtable_function_descriptors and vbit_in_delta.
* ia64-tdep.c (ia64_convert_from_func_ptr_addr): Handle descriptors
in virtual tables.
(ia64_gdbarch_init): Call set_gdbarch_vtable_function_descriptors.
* c-lang.h (cp_print_class_method): Delete prototype.
* arm-tdep.c (arm_gdbarch_init): Call set_gdbarch_vbit_in_delta.
* mips-tdep.c (mips_gdbarch_init): Likewise.
* gdbarch.c, gdbarch.h: Regenerated.
* gdb.cp/classes.exp (test_pointers_to_class_members): Update expected
output. Test the types of members and member pointers.
* gdb.cp/inherit.exp (test_print_mi_member_types): Remove KFAILs for
gdb/2092.
* gdb.cp/member-ptr.exp: Search for a comment instead of a
statement. Enable for GCC. Update expected output for some tests
and add new tests. Remove obsolete GCC KFAILs. Allow GCC's class
layout.
* gdb.cp/member-ptr.cc (Padding, Padding::vspacer, Base, Base::get_x)
(Base::vget_base, Left, Left::vget, Right, Right::vget, Diamond)
(Diamond::vget_base): New.
(main): Add new tests.
* gdb.cp/printmethod.exp: Update expected output for member functions.
* gdb.cp/virtfunc.exp (test_virtual_calls): Add a KFAIL for
print pEe->D::vg().
2007-01-03 19:05:45 +01:00
|
|
|
-re "\\$\[0-9]+ = 202$nl$gdb_prompt $" {
|
|
|
|
# To get this result, we have called pEe->*(&D::vg) ().
|
|
|
|
# That's how GDB interprets this, but it's wrong; in fact
|
|
|
|
# the explicit D:: means to bypass virtual function lookup,
|
|
|
|
# and call D::vg as if it were non-virtual. We still have
|
|
|
|
# to e.g. adjust "this", though.
|
|
|
|
kfail "gdb/1064" "print pEe->D::vg()"
|
|
|
|
}
|
2004-01-01 03:30:59 +01:00
|
|
|
-re "Attempt to take address of value not located in memory.$nl$gdb_prompt $" {
|
|
|
|
kfail "gdb/1064" "print pEe->D::vg()"
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
proc do_tests {} {
|
2004-01-01 03:30:59 +01:00
|
|
|
global srcdir subdir binfile
|
|
|
|
global gdb_prompt
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
2004-01-01 03:30:59 +01:00
|
|
|
gdb_exit
|
|
|
|
gdb_start
|
|
|
|
gdb_reinitialize_dir $srcdir/$subdir
|
|
|
|
gdb_load $binfile
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2010-06-04 01:54:18 +02:00
|
|
|
gdb_test_no_output "set language c++" ""
|
|
|
|
gdb_test_no_output "set width 0" ""
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-11-13 23:28:54 +01:00
|
|
|
if ![runto_main] then {
|
|
|
|
perror "couldn't run to breakpoint"
|
|
|
|
return
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
test_ptype_of_classes
|
|
|
|
|
2004-01-01 03:30:59 +01:00
|
|
|
gdb_breakpoint test_calls
|
|
|
|
gdb_test "continue" ".*Breakpoint .* test_calls.*" ""
|
|
|
|
test_virtual_calls
|
2007-05-07 13:49:05 +02:00
|
|
|
|
|
|
|
gdb_test "next" ".*pAa->f.*" "next to pAa->f call"
|
|
|
|
gdb_test "next" ".*pDe->vg.*" "next to pDe->vg call"
|
|
|
|
gdb_test "step" ".*E::vg.*" "step through thunk into E::vg"
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
do_tests
|