Files
binutils-gdb/gdb/testsuite/gdb.cp/ambiguous.cc
Bruno Larsen b6fc91c70a 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/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 a41ad3474c)
2021-12-11 11:47:53 +04:00

197 lines
2.2 KiB
C++

class empty { };
class A1 {
public:
int x;
int y;
};
class A2 {
public:
int x;
int y;
};
class A3 {
public:
int x;
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;
};
class L : public A1 {
public:
int z;
};
class LV : public virtual A1 {
public:
int z;
};
class M : public A2 {
public:
int w;
};
class N : public L, public M {
public:
int r;
};
class K : public A1 {
public:
int i;
};
class KV : public virtual A1 {
public:
int i;
};
class J : public K, public L {
public:
int j;
};
class JV : public KV, public LV {
public:
int jv;
};
class JVA1 : public KV, public LV, public A1 {
public:
int jva1;
};
class JVA2 : public KV, public LV, public A2 {
public:
int jva2;
};
class JVA1V : public KV, public LV, public virtual A1 {
public:
int jva1v;
};
class JE : public A1, public A4 {
public:
};
int main()
{
A1 a1;
A2 a2;
A3 a3;
X x;
L l;
M m;
N n;
K k;
J j;
JV jv;
JVA1 jva1;
JVA2 jva2;
JVA1V jva1v;
JE je;
int i;
i += k.i + m.w + a1.x + a2.x + a3.x + x.z + l.z + n.r + j.j;
/* Initialize all the fields. Keep the order the same as in the
.exp file. */
a1.x = 1;
a1.y = 2;
a2.x = 1;
a2.y = 2;
a3.x = 1;
a3.y = 2;
x.A1::x = 1;
x.A1::y = 2;
x.A2::x = 3;
x.A2::y = 4;
x.z = 5;
l.x = 1;
l.y = 2;
l.z = 3;
m.x = 1;
m.y = 2;
m.w = 3;
n.A1::x = 1;
n.A1::y = 2;
n.A2::x = 3;
n.A2::y = 4;
n.w = 5;
n.r = 6;
n.z = 7;
k.x = 1;
k.y = 2;
k.i = 3;
j.K::x = 1;
j.K::y = 2;
j.L::x = 3;
j.L::y = 4;
j.i = 5;
j.z = 6;
j.j = 7;
jv.x = 1;
jv.y = 2;
jv.i = 3;
jv.z = 4;
jv.jv = 5;
jva1.KV::x = 1;
jva1.KV::y = 2;
jva1.LV::x = 3;
jva1.LV::y = 4;
jva1.z = 5;
jva1.i = 6;
jva1.jva1 = 7;
jva2.KV::x = 1;
jva2.KV::y = 2;
jva2.LV::x = 3;
jva2.LV::y = 4;
jva2.A2::x = 5;
jva2.A2::y = 6;
jva2.z = 7;
jva2.i = 8;
jva2.jva2 = 9;
jva1v.x = 1;
jva1v.y = 2;
jva1v.z = 3;
jva1v.i = 4;
jva1v.jva1v = 5;
je.A1::x = 1;
return 0; /* set breakpoint here */
}