diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2000-11-27 10:55:32 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2000-11-27 10:55:32 +0000 |
commit | f98251686f1e33a6698e9d118d7f1c6a600c0c23 (patch) | |
tree | a663502c969fdc01fa746da34280a67ac26c0011 /gcc/cp | |
parent | 6b2adea9b7def69c83c89a2a957a68583a815728 (diff) | |
download | gcc-f98251686f1e33a6698e9d118d7f1c6a600c0c23.zip gcc-f98251686f1e33a6698e9d118d7f1c6a600c0c23.tar.gz gcc-f98251686f1e33a6698e9d118d7f1c6a600c0c23.tar.bz2 |
cp-tree.h (binfo_from_vbase): Return the virtual base's binfo.
cp:
* cp-tree.h (binfo_from_vbase): Return the virtual base's binfo.
* cvt.c (cp_convert_to_pointer): Add force parameter.
Allow conversions via virtual base if forced.
(convert_to_pointer_force): Adjust call to cp_convert_to_pointer.
(ocp_convert): Likewise.
* search.c (binfo_from_vbase): Return the virtual base's binfo.
* typeck.c (get_delta_difference): Adjust handling of virtual
bases.
testsuite:
* g++.old-deja/g++.other/ptrmem8.C: New test.
From-SVN: r37791
Diffstat (limited to 'gcc/cp')
-rw-r--r-- | gcc/cp/ChangeLog | 11 | ||||
-rw-r--r-- | gcc/cp/cp-tree.h | 2 | ||||
-rw-r--r-- | gcc/cp/cvt.c | 32 | ||||
-rw-r--r-- | gcc/cp/search.c | 9 | ||||
-rw-r--r-- | gcc/cp/typeck.c | 26 |
5 files changed, 55 insertions, 25 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 7b36db1..f2b1adc 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,14 @@ +2000-11-27 Nathan Sidwell <nathan@codesourcery.com> + + * cp-tree.h (binfo_from_vbase): Return the virtual base's binfo. + * cvt.c (cp_convert_to_pointer): Add force parameter. + Allow conversions via virtual base if forced. + (convert_to_pointer_force): Adjust call to cp_convert_to_pointer. + (ocp_convert): Likewise. + * search.c (binfo_from_vbase): Return the virtual base's binfo. + * typeck.c (get_delta_difference): Adjust handling of virtual + bases. + 2000-11-26 Mark Mitchell <mark@codesourcery.com> * tree.c (struct list_hash): Remove. diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index ed233a2..ab10f46 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -4265,7 +4265,7 @@ extern tree current_scope PARAMS ((void)); extern int at_function_scope_p PARAMS ((void)); extern tree lookup_conversions PARAMS ((tree)); extern tree binfo_for_vtable PARAMS ((tree)); -extern int binfo_from_vbase PARAMS ((tree)); +extern tree binfo_from_vbase PARAMS ((tree)); extern tree dfs_walk PARAMS ((tree, tree (*)(tree, void *), tree (*) (tree, void *), diff --git a/gcc/cp/cvt.c b/gcc/cp/cvt.c index 606f854..fe99c8f 100644 --- a/gcc/cp/cvt.c +++ b/gcc/cp/cvt.c @@ -35,7 +35,7 @@ Boston, MA 02111-1307, USA. */ #include "toplev.h" #include "decl.h" -static tree cp_convert_to_pointer PARAMS ((tree, tree)); +static tree cp_convert_to_pointer PARAMS ((tree, tree, int)); static tree convert_to_pointer_force PARAMS ((tree, tree)); static tree build_up_reference PARAMS ((tree, tree, int)); static void warn_ref_binding PARAMS ((tree, tree, tree)); @@ -67,11 +67,14 @@ static void warn_ref_binding PARAMS ((tree, tree, tree)); else if dealing with method pointers, delegate else convert blindly else if converting class, pass off to build_type_conversion - else try C-style pointer conversion */ + else try C-style pointer conversion. If FORCE is true then allow + conversions via virtual bases (these are permitted by reinterpret_cast, + but not static_cast). */ static tree -cp_convert_to_pointer (type, expr) +cp_convert_to_pointer (type, expr, force) tree type, expr; + int force; { register tree intype = TREE_TYPE (expr); register enum tree_code form; @@ -184,6 +187,7 @@ cp_convert_to_pointer (type, expr) tree b1; tree b2; tree binfo; + tree virt_binfo; enum tree_code code; b1 = TYPE_OFFSET_BASETYPE (TREE_TYPE (type)); @@ -201,11 +205,21 @@ cp_convert_to_pointer (type, expr) if (binfo == error_mark_node) return error_mark_node; - if (binfo_from_vbase (binfo)) + virt_binfo = binfo_from_vbase (binfo); + if (virt_binfo) { - cp_error ("conversion to `%T' from pointer to member of virtual base `%T'", - type, intype); - return error_mark_node; + if (force) + cp_warning ("pointer to member cast via virtual base `%T' of `%T' will only work for objects of dynamic type `%T'", + BINFO_TYPE (virt_binfo), + BINFO_TYPE (BINFO_INHERITANCE_CHAIN (virt_binfo)), + code == MINUS_EXPR ? b2 : b1); + else + { + cp_error ("pointer to member cast via virtual base `%T' of `%T'", + BINFO_TYPE (virt_binfo), + BINFO_TYPE (BINFO_INHERITANCE_CHAIN (virt_binfo))); + return error_mark_node; + } } if (TREE_CODE (expr) == PTRMEM_CST) @@ -334,7 +348,7 @@ convert_to_pointer_force (type, expr) } } - return cp_convert_to_pointer (type, expr); + return cp_convert_to_pointer (type, expr, 1); } /* We are passing something to a function which requires a reference. @@ -777,7 +791,7 @@ ocp_convert (type, expr, convtype, flags) } if (code == POINTER_TYPE || code == REFERENCE_TYPE || TYPE_PTRMEMFUNC_P (type)) - return fold (cp_convert_to_pointer (type, e)); + return fold (cp_convert_to_pointer (type, e, 0)); if (code == REAL_TYPE || code == COMPLEX_TYPE) { if (IS_AGGR_TYPE (TREE_TYPE (e))) diff --git a/gcc/cp/search.c b/gcc/cp/search.c index a7fdc86..ae1d648 100644 --- a/gcc/cp/search.c +++ b/gcc/cp/search.c @@ -3362,18 +3362,19 @@ binfo_for_vtable (var) return binfo; } -/* Returns 1 iff BINFO is from a direct or indirect virtual base. */ +/* Returns the binfo of the first direct or indirect virtual base from + which BINFO is derrived, or NULL if binfo is not via virtual. */ -int +tree binfo_from_vbase (binfo) tree binfo; { for (; binfo; binfo = BINFO_INHERITANCE_CHAIN (binfo)) { if (TREE_VIA_VIRTUAL (binfo)) - return 1; + return binfo; } - return 0; + return NULL_TREE; } /* Returns the BINFO (if any) for the virtual baseclass T of the class diff --git a/gcc/cp/typeck.c b/gcc/cp/typeck.c index d0ca2bb..39f8b54 100644 --- a/gcc/cp/typeck.c +++ b/gcc/cp/typeck.c @@ -5912,6 +5912,7 @@ get_delta_difference (from, to, force) { tree delta = integer_zero_node; tree binfo; + tree virt_binfo; if (to == from) return delta; @@ -5937,11 +5938,12 @@ get_delta_difference (from, to, force) binfo = get_binfo (to, from, 1); if (binfo == 0 || binfo == error_mark_node) return delta; - if (binfo_from_vbase (binfo)) - { - binfo = binfo_for_vbase (BINFO_TYPE (binfo), from); - cp_warning ("pointer to member cast to virtual base `%T' will only work if you are very careful", BINFO_TYPE (binfo)); - } + virt_binfo = binfo_from_vbase (binfo); + + if (virt_binfo) + cp_warning ("pointer to member cast via virtual base `%T' of `%T' will only work for objects of dynamic type `%T'", + BINFO_TYPE (virt_binfo), + BINFO_TYPE (BINFO_INHERITANCE_CHAIN (virt_binfo)), from); delta = BINFO_OFFSET (binfo); delta = cp_convert (ptrdiff_type_node, delta); @@ -5950,15 +5952,17 @@ get_delta_difference (from, to, force) delta); } - if (binfo_from_vbase (binfo)) + virt_binfo = binfo_from_vbase (binfo); + if (virt_binfo) { if (force) - { - cp_warning ("pointer to member cast from virtual base `%T' will only wokr if you are very careful", BINFO_TYPE (binfo)); - } + cp_warning ("pointer to member cast via virtual base `%T' of `%T' will only work for objects of dynamic type `%T'", + BINFO_TYPE (virt_binfo), + BINFO_TYPE (BINFO_INHERITANCE_CHAIN (virt_binfo)), to); else - cp_error ("pointer to member conversion from virtual base `%T'", - BINFO_TYPE (binfo)); + cp_error ("pointer to member conversion via virtual base `%T' of `%T'", + BINFO_TYPE (virt_binfo), + BINFO_TYPE (BINFO_INHERITANCE_CHAIN (virt_binfo))); } return BINFO_OFFSET (binfo); |