]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit
PR gdb/28480: Improve ambiguous member detection
authorBruno Larsen <blarsen@redhat.com>
Fri, 29 Oct 2021 20:56:28 +0000 (17:56 -0300)
committerBruno Larsen <blarsen@redhat.com>
Thu, 25 Nov 2021 12:56:03 +0000 (09:56 -0300)
commita41ad3474ceacba39e11c7478154c0e553784a01
treedb9de693ebbb1b1596b4df4a12d3f229f4d250b9
parent423e91d347cf6050ac17c7098cad6cbc15e5e50f
PR gdb/28480: Improve ambiguous member detection

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/testsuite/gdb.cp/ambiguous.cc
gdb/testsuite/gdb.cp/ambiguous.exp
gdb/valops.c