unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
From: Fredrik Tolf <fredrik@dolda2000.com>
To: Neil Jerram <neil@ossau.uklinux.net>
Cc: guile-user@gnu.org
Subject: Re: Guile and ucontext
Date: Sat, 23 May 2009 15:00:03 +0200	[thread overview]
Message-ID: <1243083603.4112.512.camel@pc7.dolda2000.com> (raw)
In-Reply-To: <874ovc16pz.fsf@arudy.ossau.uklinux.net>

On Sat, 2009-05-23 at 10:58 +0100, Neil Jerram wrote:
> Fredrik Tolf <fredrik@dolda2000.com> writes:
> 
> >> >>From what I can tell from Guile's threads.c, Guile will just record the
> >> > top and bottom of a single stack per pthread, and since I'm switching
> >> > stack pointer between the original stack at the top of the process to
> >> > heap-allocated stacks, it would try to mark data words from almost the
> >> > entire process space when GC'ing.
> >> 
> >> I'm afraid I don't understand this.  Are you changing the whole stack
> >> of an existing thread?
> >
> > Well, yes. It is hard for me to think of how I would switch contexts
> > without switching stacks as well. :)
> 
> Sure, I understand that.  But I was struggling to understand what you
> said about "try to mark data words from almost the entire process
> space when GC'ing".  Guile knows the top and bottom of every stack
> that is in Guile mode, and marks from top..bottom of each stack; never
> from the top of one stack to the bottom of another one.  So I don't
> see how it could arise that Guile would try to mark almost the entire
> process space.  Can you explain that further?

Oh, I see. I thought it was weird. :)

Well, unless I have grossly misunderstood what I read in threads.[ch],
Guile records the base and top of the stack per POSIX thread, and
doesn't ever change the base unless it is found at a higher address than
before. Thus, to take an example:

Say that I first run a function in Guile mode when the stack pointer is
somewhere in the ELF-loader allocated stack; say at 0xBEEFBABE. Guile
records that address as the stack base. Then I switch to some
heap-allocated stack and run some Guile code. Now, my stack pointer
might be at, say, 0x0F00FACE. The previously recorded base address won't
change, but that stack will be used as the top of the stack. When the
Guile's GC runs, it would, then, try to mark all words from the stack
top to the stack base: that is, from 0x0F00FACE to 0xBEEFBABE.

Almost the entire process space, in other words (and probably with lots
of unmapped space in it).

I hope that makes my point clearer.

Fredrik Tolf






  reply	other threads:[~2009-05-23 13:00 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-05-14  2:09 Guile and ucontext Fredrik Tolf
2009-05-16 12:07 ` Neil Jerram
2009-05-20 23:59   ` Fredrik Tolf
2009-05-23  9:58     ` Neil Jerram
2009-05-23 13:00       ` Fredrik Tolf [this message]
2009-05-23 15:30         ` Neil Jerram

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=1243083603.4112.512.camel@pc7.dolda2000.com \
    --to=fredrik@dolda2000.com \
    --cc=guile-user@gnu.org \
    --cc=neil@ossau.uklinux.net \
    /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).