PR gdb/28480: Improve ambiguous member detection
authorBruno Larsen <blarsen@redhat.com>
Sat, 11 Dec 2021 07:47:53 +0000 (11:47 +0400)
committerJoel Brobecker <brobecker@adacore.com>
Sat, 11 Dec 2021 07:47:53 +0000 (11:47 +0400)
Basic ambiguity detection assumes that when 2 fields with the same name
have the same byte offset, it must be an unambiguous request. This is not
always correct. Consider the following code:

class empty { };

class A {
public:
  [[no_unique_address]] empty e;
};

class B {
public:
  int e;
};

class C: public A, public B { };

if we tried to use c.e in code, the compiler would warn of an ambiguity,
however, since A::e does not demand an unique address, it gets the same
address (and thus byte offset) of the members, making A::e and B::e have the
same address. however, "print c.e" would fail to report the ambiguity,
and would instead print it as an empty class (first path found).

The new code solves this by checking for other found_fields that have
different m_struct_path.back() (final class that the member was found
in), despite having the same byte offset.

The testcase gdb.cp/ambiguous.exp was also changed to test for this
behavior.

gdb/ChangeLog:

        PR gdb/28480
        * valops.c (struct_field_searcher::update_result): Improve
        ambiguous member detection.

gdb/testsuite/ChangeLog:

        PR gdb/28480

        Pushed by Joel Brobecker  <brobecker@adacore.com>
        * gdb.cp/ambiguous.cc: Add code to permit ambiguous member testing.
        * gdb.cp/ambiguous.exp: Add ambiguous member test.

(cherry picked from commit a41ad3474ceacba39e11c7478154c0e553784a01)

gdb/ChangeLog
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.cp/ambiguous.cc
gdb/testsuite/gdb.cp/ambiguous.exp
gdb/valops.c

index 10aa711eef5285c68954c5a28db2b17a3989ce70..f7d8a35888b7a7a4af8de5ebd9934147838ca219 100644 (file)
@@ -1,3 +1,11 @@
+2021-12-11  Bruno Larsen  <blarsen@redhat.com>
+
+       PR gdb/28480
+
+       Pushed by Joel Brobecker  <brobecker@adacore.com>
+       * valops.c (struct_field_searcher::update_result): Improve
+       ambiguous member detection.
+
 2021-11-03  Luis Machado  <luis.machado@linaro.org>
 
        PR gdb/28355
index 54cfd221abb06074e2bac370bd77e1572dad83ed..725f348db9f7e9dd9cb75cff32f57fd1b98e0bfe 100644 (file)
@@ -1,3 +1,11 @@
+2021-12-11  Bruno Larsen  <blarsen@redhat.com>
+
+       PR gdb/28480
+
+       Pushed by Joel Brobecker  <brobecker@adacore.com>
+       * gdb.cp/ambiguous.cc: Add code to permit ambiguous member testing.
+       * gdb.cp/ambiguous.exp: Add ambiguous member test.
+
 2021-10-22  Tom de Vries  <tdevries@suse.de>
 
        PR tui/28483
index a55686547f2222d97b7509a0e59e0434754972f8..af2198dcfbc0206d37563e75c1b00286017ad5f3 100644 (file)
@@ -1,3 +1,4 @@
+class empty { };
 
 class A1 {
 public:
@@ -17,6 +18,17 @@ public:
   int y;
 };
 
+#if !defined (__GNUC__) || __GNUC__ > 7
+# define NO_UNIQUE_ADDRESS [[no_unique_address]]
+#else
+# define NO_UNIQUE_ADDRESS
+#endif
+
+class A4 {
+public:
+    NO_UNIQUE_ADDRESS empty x;
+};
+
 class X : public A1, public A2 {
 public:
   int z;
@@ -77,6 +89,10 @@ public:
   int jva1v;
 };
 
+class JE : public A1, public A4 {
+public:
+};
+
 int main()
 {
   A1 a1;
@@ -92,6 +108,7 @@ int main()
   JVA1 jva1;
   JVA2 jva2;
   JVA1V jva1v;
+  JE je;
   
   int i;
 
@@ -173,5 +190,7 @@ int main()
   jva1v.i = 4;
   jva1v.jva1v = 5;
 
+  je.A1::x = 1;
+
   return 0; /* set breakpoint here */
 }
index 008898c58188fc13c4b97022855f6b7068b84745..1e63dc0c5dc699e3456c3344577a579c1b680cd5 100644 (file)
@@ -264,3 +264,13 @@ gdb_test "print (A1)(KV)jva1" " = \{x = 3, y = 4\}"
 # JVA1V is derived from A1; A1 is a virtual base indirectly
 # and also directly; must not report ambiguity when a JVA1V is cast to an A1.
 gdb_test "print (A1)jva1v" " = {x = 1, y = 2}"
+
+# C++20 introduced a way to have ambiguous fields with the same byte offset.
+# This class explicitly tests for that.
+# if this is tested with a compiler that can't handle [[no_unique_address]]
+# the code should still correctly identify the ambiguity because of
+# different byte offsets.
+test_ambiguous "je.x" "x" "JE" {
+    "'int A1::x' (JE -> A1)"
+    "'empty A4::x' (JE -> A4)"
+}
index bd547923496f4b39a3651b47679771eaf3feb4fc..3769ab9630a4c610d40fd263438a1ab0d9a7f3bf 100644 (file)
@@ -1969,6 +1969,34 @@ struct_field_searcher::update_result (struct value *v, LONGEST boffset)
             space.  */
          if (m_fields.empty () || m_last_boffset != boffset)
            m_fields.push_back ({m_struct_path, v});
+         else
+           {
+           /*Fields can occupy the same space and have the same name (be
+             ambiguous).  This can happen when fields in two different base
+             classes are marked [[no_unique_address]] and have the same name.
+             The C++ standard says that such fields can only occupy the same
+             space if they are of different type, but we don't rely on that in
+             the following code. */
+             bool ambiguous = false, insert = true;
+             for (const found_field &field: m_fields)
+               {
+                 if(field.path.back () != m_struct_path.back ())
+                   {
+                   /* Same boffset points to members of different classes.
+                      We have found an ambiguity and should record it.  */
+                     ambiguous = true;
+                   }
+                 else
+                   {
+                   /* We don't need to insert this value again, because a
+                      non-ambiguous path already leads to it.  */
+                     insert = false;
+                     break;
+                   }
+               }
+             if (ambiguous && insert)
+               m_fields.push_back ({m_struct_path, v});
+           }
        }
     }
 }
This page took 0.038293 seconds and 4 git commands to generate.