This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [RFA] Delayed physname computation
- From: Tom Tromey <tromey at redhat dot com>
- To: Keith Seitz <keiths at redhat dot com>
- Cc: gdb-patches at sourceware dot org
- Date: Fri, 04 Jun 2010 16:37:21 -0600
- Subject: Re: [RFA] Delayed physname computation
- References: <4BCE0D3C.7040201@redhat.com> <m3aastwz46.fsf@fleche.redhat.com> <4BD22E6A.9020309@redhat.com> <m3eii2njnx.fsf@fleche.redhat.com> <4BE9C9A0.2030605@redhat.com>
- Reply-to: tromey at redhat dot com
>>>>> "Keith" == Keith Seitz <keiths@redhat.com> writes:
Keith> If you put a printf in set_die_type, you'll see that this function is
Keith> called twice (with different type structs) for the same DIE.
This part seems quite weird to me.
But maybe the only real fix for it would be two passes over the DIEs, or
something equally horrible.
Keith> Since there is no way to detect/trigger this in gdb without the
Keith> delayed physname patch, there seems little point IMO in testing
Keith> specifically for this. However it would be trivial for me to write up
Keith> a testcase for this. Just say the word.
I think a test case for this would be good, just to prevent regressions
in the case where someone tries to remove code that looks weird to them.
Both of these patches are ok. Thanks, and sorry for the delay in
reviewing them.
Keith> + physname = (char *) dwarf2_physname ((char *) mi->name, mi->die, cu);
It would be nice to const-correct enough so that we could remove these
casts. I'm not asking you to do it though :-)
Tom