]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
c++: Fix overeager Woverloaded-virtual with conversion operators [PR109918]
authorSimon Martin <simon@nasilyan.com>
Fri, 11 Oct 2024 08:16:26 +0000 (10:16 +0200)
committerSimon Martin <simon@nasilyan.com>
Sat, 12 Oct 2024 07:49:48 +0000 (09:49 +0200)
We currently emit an incorrect -Woverloaded-virtual warning upon the
following test case

=== cut here ===
struct A {
  virtual operator int() { return 42; }
  virtual operator char() = 0;
};
struct B : public A {
  operator char() { return 'A'; }
};
=== cut here ===

The problem is that when iterating over ovl_range (fns), warn_hidden
gets confused by the conversion operator marker, concludes that
seen_non_override is true and therefore emits a warning for all
conversion operators in A that do not convert to char, even if
-Woverloaded-virtual is 1 (e.g. with -Wall, the case reported).

A second set of problems is highlighted when -Woverloaded-virtual is 2.

First, with the same test case, since base_fndecls contains all
conversion operators in A (except the one to char, that's been removed
when iterating over ovl_range (fns)), we emit a spurious warning for
the conversion operator to int, even though it's unrelated.

Second, in case there are several conversion operators with different
cv-qualifiers to the same type in A, we rightfully emit a warning,
however the note uses the location of the conversion operator marker
instead of the right one; location_of should go over conv_op_marker.

This patch fixes all these by explicitly keeping track of (1) base
methods that are overriden, as well as (2) base methods that are hidden
but not overriden (and by what), and warning about methods that are in
(2) but not (1). It also ignores non virtual base methods, per
"definition" of -Woverloaded-virtual.

PR c++/109918

gcc/cp/ChangeLog:

* class.cc (warn_hidden): Keep track of overloaded and of hidden
base methods. Mention the actual hiding function in the warning,
not the first overload.
* error.cc (location_of): Skip over conv_op_marker.

gcc/testsuite/ChangeLog:

* g++.dg/warn/Woverloaded-virt1.C: Check that no warning is
emitted for non virtual base methods.
* g++.dg/warn/Woverloaded-virt5.C: New test.
* g++.dg/warn/Woverloaded-virt6.C: New test.
* g++.dg/warn/Woverloaded-virt7.C: New test.
* g++.dg/warn/Woverloaded-virt8.C: New test.
* g++.dg/warn/Woverloaded-virt9.C: New test.

gcc/cp/class.cc
gcc/cp/error.cc
gcc/testsuite/g++.dg/warn/Woverloaded-virt1.C
gcc/testsuite/g++.dg/warn/Woverloaded-virt5.C [new file with mode: 0644]
gcc/testsuite/g++.dg/warn/Woverloaded-virt6.C [new file with mode: 0644]
gcc/testsuite/g++.dg/warn/Woverloaded-virt7.C [new file with mode: 0644]
gcc/testsuite/g++.dg/warn/Woverloaded-virt8.C [new file with mode: 0644]
gcc/testsuite/g++.dg/warn/Woverloaded-virt9.C [new file with mode: 0644]

index 646072d4f2029ab8f3a6df00c82b5ff622c07e6b..f754886a60ab63ea874768d7b387c3f7e2cecdf0 100644 (file)
@@ -3243,10 +3243,15 @@ warn_hidden (tree t)
          continue;
 
        tree name = OVL_NAME (fns);
+       size_t num_fns = 0; /* The number of fndecls in fns.  */
        auto_vec<tree, 20> base_fndecls;
        tree base_binfo;
        tree binfo;
        unsigned j;
+       hash_set<tree> overriden_base_fndecls;
+       /* base_fndecls that are hidden but not overriden. The "value"
+          contains the fndecl that hides the "key".  */
+       hash_map<tree, tree> hidden_base_fndecls;
 
        if (IDENTIFIER_CDTOR_P (name))
          continue;
@@ -3264,47 +3269,63 @@ warn_hidden (tree t)
        if (base_fndecls.is_empty ())
          continue;
 
-       /* Remove any overridden functions.  */
-       bool seen_non_override = false;
+       /* Find all the base_fndecls that are overridden, as well as those
+          that are hidden, in T.  */
        for (tree fndecl : ovl_range (fns))
          {
-           bool any_override = false;
+           fndecl = STRIP_TEMPLATE (fndecl);
            if (TREE_CODE (fndecl) == FUNCTION_DECL
-               && DECL_VINDEX (fndecl))
+               && fndecl != conv_op_marker)
              {
-               /* If the method from the base class has the same
-                  signature as the method from the derived class, it
-                  has been overridden.  Note that we can't move on
-                  after finding one match: fndecl might override
-                  multiple base fns.  */
+               num_fns++;
+               tree fndecl_vindex = DECL_VINDEX (fndecl);
+               /* If the method from the base class has the same DECL_VINDEX
+                  as the method from the derived, it has been overridden.
+                  Note that we can't move on after finding one match: fndecl
+                  might override multiple base fns.  */
                for (size_t k = 0; k < base_fndecls.length (); k++)
-                 if (base_fndecls[k]
-                     && same_signature_p (fndecl, base_fndecls[k]))
-                   {
-                     base_fndecls[k] = NULL_TREE;
-                     any_override = true;
-                   }
+                 {
+                   if (!base_fndecls[k] || !DECL_VINDEX (base_fndecls[k]))
+                     continue;
+                   tree base_fndecl_vindex = DECL_VINDEX (base_fndecls[k]);
+                   if (fndecl_vindex
+                       && !tree_int_cst_compare (fndecl_vindex,
+                                                 base_fndecl_vindex))
+                     overriden_base_fndecls.add (base_fndecls[k]);
+                   else if (IDENTIFIER_CONV_OP_P (name)
+                            && (DECL_NAME (fndecl)
+                                != DECL_NAME (base_fndecls[k])))
+                     /* If base_fndecl[k] and fndecl are conversion operators
+                        to different types, they're unrelated.  */
+                     ;
+                   else
+                     hidden_base_fndecls.put (base_fndecls[k], fndecl);
+                 }
              }
-           if (!any_override)
-             seen_non_override = true;
          }
 
-       if (!seen_non_override && warn_overloaded_virtual == 1)
-         /* All the derived fns override base virtuals.  */
-         return;
+       if (warn_overloaded_virtual == 1
+           && overriden_base_fndecls.elements () == num_fns)
+         /* All the fns override a base virtual.  */
+         continue;
 
-       /* Now give a warning for all base functions without overriders,
-          as they are hidden.  */
-       for (tree base_fndecl : base_fndecls)
-         if (base_fndecl)
-           {
-             auto_diagnostic_group d;
-             /* Here we know it is a hider, and no overrider exists.  */
-             if (warning_at (location_of (base_fndecl),
-                             OPT_Woverloaded_virtual_,
-                             "%qD was hidden", base_fndecl))
-               inform (location_of (fns), "  by %qD", fns);
-           }
+       /* Now give a warning for all hidden methods. Note that a method that
+          is both in hidden_base_fndecls and overriden_base_fndecls is not
+          hidden.  */
+       for (auto hidden_base_fndecl : hidden_base_fndecls)
+         {
+           tree hidden_fndecl = hidden_base_fndecl.first;
+           tree hider = hidden_base_fndecl.second;
+           if (!hidden_fndecl
+               || overriden_base_fndecls.contains (hidden_fndecl))
+             continue;
+           gcc_assert (hider);
+           auto_diagnostic_group d;
+           if (warning_at (location_of (hidden_fndecl),
+                           OPT_Woverloaded_virtual_,
+                           "%qD was hidden", hidden_fndecl))
+             inform (location_of (hider), "  by %qD", hider);
+         }
       }
 }
 
index 65f70c595cf880385f9eee65da00d23e6e5c4e1c..3d0dad4ee59091b3be4732580267f256fed17891 100644 (file)
@@ -3397,7 +3397,8 @@ location_of (tree t)
        return input_location;
     }
   else if (TREE_CODE (t) == OVERLOAD)
-    t = OVL_FIRST (t);
+    t = OVL_FIRST (t) != conv_op_marker ? OVL_FIRST (t)
+      : OVL_FIRST (OVL_CHAIN (t));
 
   if (DECL_P (t))
     return DECL_SOURCE_LOCATION (t);
index 92f8327b9d0573f44e51577384a387b7888d2f14..9091bfabc967aa0ea1d05813cedd4b0c4b72c02d 100644 (file)
@@ -5,10 +5,12 @@ class Foo
 {
 public:
     virtual void f(int);       // { dg-warning "hidden" }
+    void g(int);               // Not virtual, so no warning
 };
 
 class Bar : public Foo
 {
 public:
     virtual void f(short);     // { dg-message "by" }
+    virtual void g(short);
 };
diff --git a/gcc/testsuite/g++.dg/warn/Woverloaded-virt5.C b/gcc/testsuite/g++.dg/warn/Woverloaded-virt5.C
new file mode 100644 (file)
index 0000000..01cd562
--- /dev/null
@@ -0,0 +1,12 @@
+// PR c++/109918 - Exact PR testcase
+// { dg-do compile }
+// { dg-additional-options -Wall }
+
+struct A {
+  virtual operator int() { return 42; }
+  virtual operator char() = 0;
+};
+
+struct B : public A {
+  operator char() { return 'A'; }
+};
diff --git a/gcc/testsuite/g++.dg/warn/Woverloaded-virt6.C b/gcc/testsuite/g++.dg/warn/Woverloaded-virt6.C
new file mode 100644 (file)
index 0000000..c18049e
--- /dev/null
@@ -0,0 +1,12 @@
+// PR c++/109918 - PR testcase with -Woverloaded-virtual=2
+// { dg-do compile }
+// { dg-additional-options -Woverloaded-virtual=2 }
+
+struct A {
+  virtual operator int() { return 42; }
+  virtual operator char() = 0;
+};
+
+struct B : public A {
+  operator char() { return 'A'; }
+};
diff --git a/gcc/testsuite/g++.dg/warn/Woverloaded-virt7.C b/gcc/testsuite/g++.dg/warn/Woverloaded-virt7.C
new file mode 100644 (file)
index 0000000..be50c89
--- /dev/null
@@ -0,0 +1,25 @@
+// PR c++/109918 - Test different CV-quals
+// { dg-do compile }
+// { dg-additional-options -Woverloaded-virtual }
+
+struct A {
+  virtual operator char() { return 'a'; }
+  virtual operator char() const { return 'b'; } // { dg-warning "was hidden" }
+  virtual operator int() { return 42; }
+};
+
+struct B : public A {
+  operator char() { return 'A'; } // { dg-note "by" }
+  operator int() { return 43; }
+};
+
+struct AA {
+  virtual char func(char) { return 'a'; }
+  virtual char func(char) const { return 'b'; } // { dg-warning "was hidden" }
+  virtual int func(int) { return 42; }
+};
+
+struct BB : public AA {
+  char func(char) { return 'A'; } // { dg-note "by" }
+  int func(int) { return 43; }
+};
diff --git a/gcc/testsuite/g++.dg/warn/Woverloaded-virt8.C b/gcc/testsuite/g++.dg/warn/Woverloaded-virt8.C
new file mode 100644 (file)
index 0000000..51af2da
--- /dev/null
@@ -0,0 +1,15 @@
+// Identified when investigating PR c++/109918: no warning was emitted due to
+// an incorrect early return in warn_hidden.
+// { dg-additional-options -Wall }
+
+struct Foo
+{
+  virtual void f(int); // { dg-warning "hidden" }
+  virtual void g() {}
+};
+
+struct Bar : Foo
+{
+  virtual void f(short); // { dg-message "by" }
+  virtual void g() {}
+};
diff --git a/gcc/testsuite/g++.dg/warn/Woverloaded-virt9.C b/gcc/testsuite/g++.dg/warn/Woverloaded-virt9.C
new file mode 100644 (file)
index 0000000..6d315c6
--- /dev/null
@@ -0,0 +1,14 @@
+// PR c++/109918: Non virtual overloads in derived classes that don't override
+// anything shouldn't cause warnings, even at -Woverloaded-virtual=2
+// { dg-additional-options -Woverloaded-virtual=2 }
+
+struct Foo
+{
+  virtual void g() {}
+};
+
+struct Bar : Foo
+{
+  virtual void g() {}
+  void g(int) {}
+};