Mirror of the gdb mailing list
 help / color / mirror / Atom feed
From: Daniel Jacobowitz <drow@mvista.com>
To: Andrew Cagney <ac131313@ges.redhat.com>
Cc: David Carlton <carlton@math.stanford.edu>, gdb <gdb@sources.redhat.com>
Subject: Re: struct environment
Date: Tue, 17 Sep 2002 09:07:00 -0000	[thread overview]
Message-ID: <20020917160700.GA20451@nevyn.them.org> (raw)
In-Reply-To: <3D875149.9080502@ges.redhat.com>

On Tue, Sep 17, 2002 at 11:59:05AM -0400, Andrew Cagney wrote:
> >On Tue, Sep 17, 2002 at 03:47:36AM -0400, Andrew Cagney wrote:
> >
> >>Btw, try ``struct nametab''?  These are just tables for mapping a name 
> >>onto a symbol?
> >
> >
> >Hmm..
> >
> >
> >>Having also gone over the original thread, two things come to mind:
> >>
> >>- what effect will this have on GDB's foot print?  The original proposal 
> >>was to put these things everwhere (structs, unions, ...).  I don't think 
> >>that is necessary and would cause serious bloat.  Instead, initially, I 
> >>think these tables could be simple linear lists (that is what ``struct 
> >>block'' currently implements so it can't be any worse :-) (just the 
> >>global / final table is special :-).
> >
> >
> >Why do you think this will cause any bloat?  This is why David
> >suggested a model of block with a linear list implementation.
> 
> That is good news, the early discussion was describing a totally generic 
> implementation being applied to everything.  Can I assume that no one 
> has immediate plans for adding this to the type system?

Not sure what you mean.  I don't see any problem with the way David
described it - a dictionary which could be ordered (list) or unordered
(hash) depending on the context.  I wouldn't call that overengineered.

> >>- Am I correct to think that the objective is to create a directed 
> >>acyclic graph of nametabs and have lookups search through each in turn.
> >
> >
> >Well, sort of.  It won't be a DAG necessarily (I think that mutual
> >"using" statements are legal in C++; I remember a GCC bug involving
> >them was fixed not long ago), and it will be somewhat complicated
> >figuring out which ones to look up (namespace links are different than
> >block scope links).
> 
> Don't forget that GDB doesn't need to model the language.  Just the 
> namespace behavior at a given PC.  The effect of "using" would be to 
> just grow a nametab in someway.

This is legal C++:

namespace D {}

namespace C { 
  using namespace D;
  int x, y;
}

namespace D {
  using namespace C;
  int x, z;
}

If using just grew a nametab we'd get into a great deal of trouble.

> >>In terms of operations, I would concentrate on determing exactly GDB 
> >>needs (rather than you think it needs)   GDB is 15 years old so chance 
> >>has it the operations have been identified already.  I know of two 
> >>operations off hand:
> >>	print foo
> >>which gets turned into struct symbol *lookup("foo",``block'') and,
> >>	print foo<tab>
> >>which turns into ``const char **tabexpand("foo", ``block'')''.  Any 
> >>others?
> >
> >
> >At least iterate over all, search regexp.
> 
> Yes (iterate over would come from things like ``info locals'').  Regex 
> (I know it's used somewhere)?

search_symbols?  The plan is not to stop with blocks; the point is to
use the same interface for the global symbol tables also.

-- 
Daniel Jacobowitz
MontaVista Software                         Debian GNU/Linux Developer


  reply	other threads:[~2002-09-17 16:07 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-09-05 13:50 David Carlton
2002-09-06  8:06 ` Daniel Jacobowitz
2002-09-06 10:20   ` David Carlton
2002-09-06 10:57     ` Daniel Jacobowitz
2002-09-06 11:56       ` David Carlton
2002-09-06 12:34         ` Daniel Berlin
2002-09-06 12:41           ` Daniel Jacobowitz
2002-09-06 12:55             ` Daniel Berlin
2002-09-11 11:33         ` David Carlton
2002-09-11 11:36           ` Daniel Jacobowitz
2002-09-11 12:27             ` David Carlton
2002-09-06 14:43   ` David Carlton
2002-09-06 14:46     ` Daniel Jacobowitz
2002-09-06 14:57       ` mdebugread.c (was Re: struct environment) David Carlton
2002-09-06 15:35         ` Daniel Jacobowitz
2002-09-10 17:25   ` struct environment David Carlton
2002-09-10 17:31     ` Daniel Jacobowitz
2002-09-11 10:29       ` David Carlton
2002-09-11 10:55         ` Daniel Jacobowitz
2002-09-11 12:33         ` Daniel Berlin
2002-09-10 17:36     ` David Carlton
2002-09-16 22:03   ` Andrew Cagney
2002-09-06 15:00 ` David Carlton
2002-09-06 16:37   ` Tom Tromey
2002-09-06 17:19     ` David Carlton
2002-09-07 10:26       ` Per Bothner
2002-09-07 10:32         ` Daniel Jacobowitz
2002-09-09 11:18           ` David Carlton
2002-09-12 12:26 ` Andrew Cagney
2002-09-13  9:44   ` David Carlton
2002-09-17  0:48 ` Andrew Cagney
2002-09-17  6:41   ` Daniel Jacobowitz
2002-09-17  8:59     ` Andrew Cagney
2002-09-17  9:07       ` Daniel Jacobowitz [this message]
2002-09-17 10:54         ` Andrew Cagney
2002-09-17 11:02           ` Daniel Jacobowitz
2002-09-17 12:37             ` Andrew Cagney
2002-09-17 12:41               ` Daniel Jacobowitz
2002-09-18  8:13                 ` Andrew Cagney
2002-09-17 12:52             ` Daniel Berlin
2002-09-17 13:34               ` Daniel Jacobowitz
2002-09-17 21:51                 ` Daniel Berlin
2002-09-18  7:26                   ` Daniel Jacobowitz
2002-09-18  9:08                   ` David Carlton
2002-09-17 12:18     ` David Carlton
2002-09-17 10:29   ` David Carlton
2002-09-17 12:50     ` Daniel Berlin
2002-09-17 13:24       ` David Carlton
2002-09-18 22:26 ` Eli Zaretskii

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20020917160700.GA20451@nevyn.them.org \
    --to=drow@mvista.com \
    --cc=ac131313@ges.redhat.com \
    --cc=carlton@math.stanford.edu \
    --cc=gdb@sources.redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox