public inbox for gdb@sourceware.org
 help / color / mirror / Atom feed
* Constructor names in the symbol table
@ 2004-09-17 20:05 Jim Blandy
  2004-09-17 22:55 ` Daniel Jacobowitz
  0 siblings, 1 reply; 3+ messages in thread
From: Jim Blandy @ 2004-09-17 20:05 UTC (permalink / raw)
  To: Daniel Jacobowitz, david.carlton; +Cc: gdb


Hey you C++ guys (and anyone else who's interested):

I've noticed that constructors get entered into the full symbol table
under their unprefixed name.  That is, the following code:

    struct S
    {
      int x;
      S(int);
    };


    S::S (int _x)
    {
      x = _x * 2;
    }


    int
    main ()
    {
      S s(3);
    }

as compiled by GCC 3.4 produces a LOC_TYPEDEF entry for S, and then
two LOC_BLOCK symbols for the in-charge and not-in-charge
constructors, whose names are S.

When I do something like set a breakpoint on S::S(int), I don't get a
match from the full symbol table; instead, I get a match on the
demangled names in the minimal symbol table.

Is this the way it's supposed to work?  I would have expected
something in dwarf2read to have consulted processing_current_prefix
and produced a qualified name for the full symbol.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2004-09-18  0:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-09-17 20:05 Constructor names in the symbol table Jim Blandy
2004-09-17 22:55 ` Daniel Jacobowitz
2004-09-18  0:12   ` David Carlton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).