unofficial mirror of guile-devel@gnu.org 
 help / color / mirror / Atom feed
From: Kevin Ryde <user42@zip.com.au>
To: guile-devel@gnu.org
Subject: Re: make-vtable
Date: Fri, 16 Feb 2007 11:07:34 +1100	[thread overview]
Message-ID: <87zm7fm0c9.fsf@zip.com.au> (raw)
In-Reply-To: <8764a3kdw8.fsf@laas.fr> (Ludovic Courtès's message of "Thu, 15 Feb 2007 09:45:27 +0100")

ludovic.courtes@laas.fr (Ludovic Courtès) writes:
>
> When creating stack
> objects with (roughly) `(make-struct stack-type)', VTABLE is _not_
> consulted at all.  The layout of stack objects is determined only by
> that specified in SCM_STACK_TYPE.

Yes.

> Thus, VTABLE is redundant.

Well, except for the creation (and continued existance) of
scm_stack_type.

> All this would be clearer if we had a `struct-vtable' type such that
> `(make-struct struct-vtable)' would yield a new vtable (just like `(make
> <class>)' yields a new GOOPS class).  Like `<class>', `struct-vtable'
> would terminate the "reflective tower" (i.e., its vtable is itself).

Yes, as long as you don't want any extra fields in the vtable (which
is true for scm_stack_type).  I thought of that for my make-vtable
func,

    (define make-vtable
      (let ((vtable-vtable #f))
        (lambda (fields tail-size . print)
          (or vtable-vtable
              (set! vtable-vtable (make-vtable-vtable "" 0)))
          (apply make-struct vtable-vtable tail-size
                 (make-struct-layout fields)
                 print))))

Then wondered if it was worth bothering with.  I guess if it's used by
stacks.c too then it should share.  (The name `struct-vtable' is taken
by a func, but some other global name ...)

> Actually, such a `struct-vtable' stealthily appears in
> `make-vtable-vtable', under the name of REQUIRED_VTABLE_FIELDS: We could
> really have a `struct-vtable' whose layout is REQUIRED_VTABLE_FIELDS and
> then `make(-vtable)+' could be simply implemented in terms of
> `make-struct' (just like `make-class' uses `make').

I think the problem is if you want extra fields in the vtables.  Maybe
a third level of table descriptor could do that (as opposed to
self-vtabling roots).  Though for now I'm only really looking at
describing it, not changing it.

> Perhaps a word saying the struct fields are laid out in a contiguous
> memory area, which makes interaction with C much easier (using C arrays
> or some such).

Yep.  I guess documenting SCM_STRUCT_DATA or whatever it is to get at
them will be necessary too, if we're really pretending it's useful in
C.

> While the rest looks good, I remain skeptical about this part.  And a
> manual that claims to be confusing does not inspire confidence.  ;-)

It's ok to admit it's potentially confusing, if that's then followed
by good explanation :-).


_______________________________________________
Guile-devel mailing list
Guile-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-devel


  reply	other threads:[~2007-02-16  0:07 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-02-12 21:13 make-vtable Kevin Ryde
2007-02-13  8:13 ` make-vtable Ludovic Courtès
2007-02-13 21:26   ` make-vtable Kevin Ryde
2007-02-14  8:01     ` make-vtable Ludovic Courtès
2007-02-14 20:51       ` make-vtable Kevin Ryde
2007-02-15  8:45         ` make-vtable Ludovic Courtès
2007-02-16  0:07           ` Kevin Ryde [this message]
2007-02-16  8:12             ` make-vtable Ludovic Courtès
2007-02-18 18:10       ` make-vtable Neil Jerram
2007-02-18 20:05         ` make-vtable Ludovic Courtès
2007-02-18 23:56           ` make-vtable Neil Jerram
2007-02-19  0:14             ` make-vtable Kevin Ryde
2007-02-19  0:39               ` make-vtable Neil Jerram
2007-02-19  8:39               ` make-vtable Ludovic Courtès
2007-03-06  0:27                 ` make-vtable Kevin Ryde
2007-03-06  8:32                   ` make-vtable Ludovic Courtès

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

  List information: https://www.gnu.org/software/guile/

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

  git send-email \
    --in-reply-to=87zm7fm0c9.fsf@zip.com.au \
    --to=user42@zip.com.au \
    --cc=guile-devel@gnu.org \
    /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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).